diff --git a/docsrc/contents/smt.rst b/docsrc/contents/smt.rst index 88d8ef546..c9a8f924e 100644 --- a/docsrc/contents/smt.rst +++ b/docsrc/contents/smt.rst @@ -96,7 +96,7 @@ We can specify the inputs to perform a residual analysis with as follows: 3. We can also specify the GMPEs and intensity measures within a ``.toml`` file. The ``.toml`` file method is required for the use of GMPEs with user-specifiable input parameters. - The additional input parameters which are specifiable for certain GMPEs are available within their corresponding GSIM files (found in ``oq-engine.openquake.hazardlib.gsim``). or for ModifiableGMPE features in ``oq-engine.openquake.hazardlib.gsim.mgmpe.modifiable_gmpe``). + The additional input parameters which are specifiable for certain GMPEs are available within their corresponding GMPE ``.py`` files (found in ``oq-engine.openquake.hazardlib.gsim``). or for ModifiableGMPE features in ``oq-engine.openquake.hazardlib.gsim.mgmpe.modifiable_gmpe``). The ``.toml`` file for specifying GMPEs and intensity measures to consider within a residual analysis should be specified as follows: @@ -138,16 +138,6 @@ We can specify the inputs to perform a residual analysis with as follows: # a single residuals toml the results of the last variant of the GMPE # will overwrite the others (and only the results of the last variant # in the toml will be plotted too). This bug will be fixed. - - # Note that a bug exists for GMPEs which use the add_alias feature, meaning that the user - # must specify parameters that should be inherently used by specifiying the gsim class (to - # be fixed). Some examples of how to circumvent this bug are provided below - - [models.AbrahamsonEtAl2014] # Use instead of specifying AbrahamsonEtAl2014RegJPN - region = "JPN" - - [models.NGAEastUSGSGMPE] # Use instead of specifying NGAEastUSGSSeed1CCSP or 1CCSP gsim classes - gmpe_table = 'nga_east_1CCSP.hdf5' [imts] imt_list = ['PGA', 'SA(0.1)', 'SA(0.2)', 'SA(0.5)', 'SA(1.0)'] @@ -438,7 +428,9 @@ Comparing GMPEs 2. The tools within the Comparison module include Sammon's Maps, hierarchical clustering plots and matrix plots of Euclidean distance for the median (and 16th and 84th percentiles) of predicted ground-motion per GMPE per intensity measure. Plotting capabilities for response spectra and attenuation curves (trellis plots) are also provided in this module. - The inputs for these comparitive tools must be specified within a single ``.toml`` file as specified below. GMPE parameters can be specified as within the example ``.toml`` file provided above for us in residual analysis. In the ``.toml`` file we have specified the source parameters for earthquakes characteristic of Albania (compressional thrust faulting with magnitudes of interest w.r.t. seismic hazard in the range of Mw 5 to Mw 7), and we have specified some GMPEs which were found to perform well in the residual analysis against Albania ground-motion data. To plot a GMPE logic tree we must assign model weights using ``lt_weight_gmc1`` or '``lt_weight_gmc2`` in each GMPE depending on which GMC logic tree we wish to include the GMPE within (up to 4 GMC logic trees can currently be plotted within one analysis). To plot only the final logic tree and not the individual GMPEs comprising it, we use ``lt_weight_gmc1_plot_lt_only`` instead (depending on which GMC we wish to not plot the individual GMPEs for - see the .toml file below for an example of these potential configurations). + The inputs for these comparitive tools must be specified within a single ``.toml`` file as specified below. GMPE parameters can be specified as within the example ``.toml`` file provided above for us in residual analysis. In the ``.toml`` file we have specified the source parameters for earthquakes characteristic of Albania (compressional thrust faulting with magnitudes of interest w.r.t. seismic hazard in the range of Mw 5 to Mw 7), and we have specified some GMPEs which were found to perform well in the residual analysis against Albania ground-motion data. To plot a GMPE logic tree we must assign model weights using ``lt_weight_gmc1`` or '``lt_weight_gmc2`` in each GMPE depending on which GMC logic tree we wish to include the GMPE within (up to 4 GMC logic trees can currently be plotted within one analysis). To plot only the final logic tree and not the individual GMPEs comprising it, we use ``lt_weight_gmc1_plot_lt_only`` instead (depending on which GMC we wish to not plot the individual GMPEs for - see the ``.toml`` file below for an example of these potential configurations). + + NOTE: To specify a GMM argument which is a bool (i.e. ``True`` or ``False``), the user must specify the bool as all lowercase within the ``.toml`` file (i.e. ``true`` or ``false``). An example is provided immediately below for the ``CampbellBozorgnia2014`` GMPE. .. code-block:: ini @@ -494,39 +486,39 @@ Comparing GMPEs # Plot logic tree and individual GMPEs within first GMC logic tree config (gmc1) [models.BooreEtAl2020] - lt_weight_gmc1 = 0.30 + lt_weight_gmc1 = 0.30 [models.LanzanoEtAl2019_RJB_OMO] - lt_weight_gmc1 = 0.40 + lt_weight_gmc1 = 0.40 # Default ESHM20 logic tree branches considered in gmc1 [models.1-KothaEtAl2020ESHM20] - lt_weight_gmc1 = 0.000862 - sigma_mu_epsilon = 2.85697 - c3_epsilon = 1.72 + lt_weight_gmc1 = 0.000862 + sigma_mu_epsilon = 2.85697 + c3_epsilon = 1.72 [models.2-KothaEtAl2020ESHM20] - lt_weight_gmc1 = 0.067767 - sigma_mu_epsilon = 1.35563 - c3_epsilon = 0 + lt_weight_gmc1 = 0.067767 + sigma_mu_epsilon = 1.35563 + c3_epsilon = 0 [models.3-KothaEtAl2020ESHM20] - lt_weight_gmc1 = 0.162742 - sigma_mu_epsilon = 0 - c3_epsilon = 0 + lt_weight_gmc1 = 0.162742 + sigma_mu_epsilon = 0 + c3_epsilon = 0 [models.4-KothaEtAl2020ESHM20] - lt_weight_gmc1 = 0.067767 - sigma_mu_epsilon = -1.35563 - c3_epsilon = 0 + lt_weight_gmc1 = 0.067767 + sigma_mu_epsilon = -1.35563 + c3_epsilon = 0 [models.5-KothaEtAl2020ESHM20] - lt_weight_gmc1 = 0.000862 - sigma_mu_epsilon = -2.85697 - c3_epsilon = -1.72 + lt_weight_gmc1 = 0.000862 + sigma_mu_epsilon = -2.85697 + c3_epsilon = -1.72 # Plot logic tree only for a second GMC logic tree config (gmc2) [models.CauzziEtAl2014] - lt_weight_gmc2_plot_lt_only = 0.50 + lt_weight_gmc2_plot_lt_only = 0.50 [models.AkkarEtAlRjb2014] - lt_weight_gmc2_plot_lt_only = 0.50 + lt_weight_gmc2_plot_lt_only = 0.50 # Also specify a GMM to compute ratios of the attenuation against (GMM/baseline) [ratios_baseline_gmm.BooreEtAl2020] @@ -586,7 +578,7 @@ Comparing GMPEs > # Plot ratios of median attenuation curves for each GMM/median attenuation curves for baseline GMM > comp.plot_ratios(filename, output_directory) - Ratio plots for input parameters specified in toml file (note that here the baseline GMM is BooreEtAl2014): + Ratio plots for input parameters specified in toml file (note that here the baseline GMM is ``BooreEtAl2014``): .. image:: /contents/smt_images/RatioPlots.png 7. Sammon's Maps @@ -699,7 +691,15 @@ Comparing GMPEs [models.12-ModifiableGMPE] gmpe = 'BooreEtAl2014' site_term = 'NRCan15SiteTermLinear' # Use NRCan15 linear site term - + + [models.13-ModifiableGMPE] + gmpe = 'AtkinsonMacias2009' + basin_term = 'CB14BasinTerm' # Apply CB14 basin adjustment + + [models.14-ModifiableGMPE] + gmpe = 'KuehnEtAl2020SInter' + basin_term = 'M9BasinTerm' # Apply M9 basin adjustment + References ========== diff --git a/docsrc/contents/smt_images/Median_Clustering.png b/docsrc/contents/smt_images/Median_Clustering.png index 9afbf5259..bd577edf3 100644 Binary files a/docsrc/contents/smt_images/Median_Clustering.png and b/docsrc/contents/smt_images/Median_Clustering.png differ diff --git a/docsrc/contents/smt_images/Median_Euclidean.png b/docsrc/contents/smt_images/Median_Euclidean.png index 5189b6eed..6885bf9b5 100644 Binary files a/docsrc/contents/smt_images/Median_Euclidean.png and b/docsrc/contents/smt_images/Median_Euclidean.png differ diff --git a/docsrc/contents/smt_images/Median_SammonMaps.png b/docsrc/contents/smt_images/Median_SammonMaps.png index 5746a3e13..ef1be490a 100644 Binary files a/docsrc/contents/smt_images/Median_SammonMaps.png and b/docsrc/contents/smt_images/Median_SammonMaps.png differ diff --git a/docsrc/contents/smt_images/RatioPlots.png b/docsrc/contents/smt_images/RatioPlots.png index fa3afbde6..e5954fab3 100644 Binary files a/docsrc/contents/smt_images/RatioPlots.png and b/docsrc/contents/smt_images/RatioPlots.png differ diff --git a/docsrc/contents/smt_images/ResponseSpectra.png b/docsrc/contents/smt_images/ResponseSpectra.png index f13fe8415..fce1e97bb 100644 Binary files a/docsrc/contents/smt_images/ResponseSpectra.png and b/docsrc/contents/smt_images/ResponseSpectra.png differ diff --git a/docsrc/contents/smt_images/TrellisPlots.png b/docsrc/contents/smt_images/TrellisPlots.png index 30eb26e9b..0de7025d5 100644 Binary files a/docsrc/contents/smt_images/TrellisPlots.png and b/docsrc/contents/smt_images/TrellisPlots.png differ diff --git a/openquake/smt/comparison/compare_gmpes.py b/openquake/smt/comparison/compare_gmpes.py index 1d27c42ff..fb0ec326e 100644 --- a/openquake/smt/comparison/compare_gmpes.py +++ b/openquake/smt/comparison/compare_gmpes.py @@ -132,10 +132,6 @@ def get_gmpes(config_file): value = get_model(key, config['models']) gmpe_list.append(value.strip()) - # Check number of GMPEs matches number of GMPE labels - if len(gmpe_list) != len(gmpe_labels): - raise ValueError("Number of labels must match number of GMPEs.") - # Get the baseline GMPE used to compute ratios of GMPEs with if required if 'ratios_baseline_gmm' in config_file.keys(): if len(config_file['ratios_baseline_gmm']) > 1: @@ -311,6 +307,9 @@ def plot_cluster(filename, output_directory): """ config = Configurations(filename) + if len(config.gmpes_list) != len(config.gmpe_labels): + raise ValueError("Number of labels must match number of GMPEs.") + if len(config.gmpes_list) < 2: raise ValueError("Cannot perform clustering for a single GMPE.") @@ -344,6 +343,9 @@ def plot_sammons(filename, output_directory): plotting methods. """ config = Configurations(filename) + + if len(config.gmpes_list) != len(config.gmpe_labels): + raise ValueError("Number of labels must match number of GMPEs.") if len(config.gmpes_list) < 2: raise ValueError("Cannot perform Sammons Mapping for a single GMPE.") @@ -380,6 +382,9 @@ def plot_euclidean(filename, output_directory): """ config = Configurations(filename) + if len(config.gmpes_list) != len(config.gmpe_labels): + raise ValueError("Number of labels must match number of GMPEs.") + if len(config.gmpes_list) < 2: raise ValueError( "Cannot perform Euclidean dist matrix plotting for a single GMPE.") diff --git a/openquake/smt/comparison/utils_compare_gmpes.py b/openquake/smt/comparison/utils_compare_gmpes.py index cad677955..55715ab68 100644 --- a/openquake/smt/comparison/utils_compare_gmpes.py +++ b/openquake/smt/comparison/utils_compare_gmpes.py @@ -689,7 +689,7 @@ def get_colors(custom_color_flag, custom_color_list): colors = ['r', 'g', 'b', 'y', 'lime', 'dodgerblue', 'gold', '0.8', 'm', 'k', 'mediumseagreen', 'tab:orange', 'tab:purple', 'tab:brown', '0.5'] - if custom_color_flag == 'True': + if custom_color_flag is True: colors = custom_color_list return colors diff --git a/openquake/smt/comparison/utils_gmpes.py b/openquake/smt/comparison/utils_gmpes.py index 5801cab0c..e20ca3d94 100644 --- a/openquake/smt/comparison/utils_gmpes.py +++ b/openquake/smt/comparison/utils_gmpes.py @@ -305,7 +305,8 @@ def mgmpe_check(gmpe): """ Check if the GMPE should be modified using ModifiableGMPE. This function in effect parses the toml parameters for a GMPE into the equivalent parameters - required for ModifiableGMPE + required for ModifiableGMPE. If a ModifiableGMPE is not required, a valid + GSIM object with all specified kwargs is returned instead :param gmpe: gmpe: GMPE to be modified if required """ @@ -318,7 +319,8 @@ def mgmpe_check(gmpe): for idx, par in enumerate(params): if idx > 1: par = str(par) - if 'sigma_model' in par or 'site_term' in par: + if ('sigma_model' in par or 'site_term' in par or + 'basin_term' in par): idx_params.append(idx) if 'fix_total_sigma' in par: idx_params.append(idx) @@ -421,6 +423,14 @@ def mgmpe_check(gmpe): # NRCan15SiteTerm (linear) if 'NRCan15SiteTermLinear' in gmpe: kwargs['nrcan15_site_term'] = {'kind': 'linear'} + + # CB14 basin term + if 'CB14BasinTerm' in gmpe: + kwargs['cb14_basin_term'] = {} + + # M9 basin adjustment + if 'M9BasinTerm' in gmpe: + kwargs['m9_basin_term'] = {} gmm = mgmpe.ModifiableGMPE(**kwargs) @@ -435,9 +445,12 @@ def mgmpe_check(gmpe): idx_to_drop.append(idx_p) params = params.drop(idx_to_drop) gmpe_clean = params.iloc[0].strip() - for idx_p, par in enumerate(params): - if idx_p > 0: - gmpe_clean = gmpe_clean + '\n' + par + if len(params) > 1: + for idx_p, par in enumerate(params): + if idx_p > 0: + gmpe_clean = gmpe_clean + '\n' + par + else: # Ensures GSIM aliases work + gmpe_clean = gmpe_clean.replace('[','').replace(']','') gmm = valid.gsim(gmpe_clean) - + return gmm diff --git a/openquake/smt/demos/demo_comparison_analysis_inputs.toml b/openquake/smt/demos/demo_comparison_analysis_inputs.toml index bb3cdfe7c..d7959335c 100644 --- a/openquake/smt/demos/demo_comparison_analysis_inputs.toml +++ b/openquake/smt/demos/demo_comparison_analysis_inputs.toml @@ -39,7 +39,7 @@ non_trellis_or_spectra_depths = [[5, 20], [6, 20], [7, 20]] # [[mag, depth], [ma # Specify label for gmpes [gmpe_labels] -gmpes_label = ['B20', 'L19', 'K1', 'K2', 'K3', 'K4', 'K5', 'CA15', 'AK14'] +gmpes_label = ['B20', 'L19', 'K1', 'K2', 'K3', 'K4', 'K5', 'CB14', 'AK14'] # Specify gmpes @@ -77,9 +77,10 @@ sigma_mu_epsilon = -2.85697 c3_epsilon = -1.72 # Plot logic tree only for the second GMC logic tree config (gmc2) -[models.CauzziEtAl2014] +[models.CampbellBozorgnia2014] lt_weight_gmc2_plot_lt_only = 0.50 - +estimate_ztor=true + [models.AkkarEtAlRjb2014] lt_weight_gmc2_plot_lt_only = 0.50 @@ -87,5 +88,5 @@ lt_weight_gmc2_plot_lt_only = 0.50 [ratios_baseline_gmm.BooreEtAl2020] [custom_colors] -custom_colors_flag = 'False' # Set to "True" for custom colours in plots) +custom_colors_flag = false # Set to true for custom colours in plots) custom_colors_list = ['lime', 'dodgerblue', 'gold', '0.8'] \ No newline at end of file diff --git a/openquake/smt/tests/comparison/data/compare_gmpe_inputs.toml b/openquake/smt/tests/comparison/data/compare_gmpe_inputs.toml index 0c9ff3e6f..ad0c54288 100644 --- a/openquake/smt/tests/comparison/data/compare_gmpe_inputs.toml +++ b/openquake/smt/tests/comparison/data/compare_gmpe_inputs.toml @@ -57,5 +57,5 @@ lt_weight_gmc2_plot_lt_only = 0.5 [custom_colors] -custom_colors_flag = 'False' #By default set to "False" (set to "True" for custom colours) +custom_colors_flag = false # Set to true for custom colours custom_colors_list = ['lime','dodgerblue','gold','0.8'] \ No newline at end of file diff --git a/openquake/smt/tests/comparison/data/mgmpe_inputs.toml b/openquake/smt/tests/comparison/data/mgmpe_inputs.toml index 207790669..eb7d44b05 100644 --- a/openquake/smt/tests/comparison/data/mgmpe_inputs.toml +++ b/openquake/smt/tests/comparison/data/mgmpe_inputs.toml @@ -36,7 +36,7 @@ non_trellis_or_spectra_depths = [[5,20],[6,25],[7,30]] # [[mag,depth],[mag,depth # Specify label for gmpes [gmpe_labels] -gmpes_label = ['NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA'] +gmpes_label = ['NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA', 'NA'] [models.0-ModifiableGMPE] gmpe = 'YenierAtkinson2015BSSA' @@ -89,7 +89,15 @@ add_delta_sigma_to_total_sigma = 0.5 # Add a delta to the total GMPE sigma [models.12-ModifiableGMPE] gmpe = 'CampbellBozorgnia2014' set_total_sigma_as_tau_plus_delta = 0.5 # Set total sigma to square root of (tau**2 + delta**2) - + +[models.13-ModifiableGMPE] +gmpe = 'AtkinsonMacias2009' +basin_term = 'CB14BasinTerm' # Apply CB14 basin adjustment + +[models.14-ModifiableGMPE] +gmpe = 'KuehnEtAl2020SInter' +basin_term = 'M9BasinTerm' # Apply M9 basin adjustment + [models.NGAEastGMPE] gmpe_table = 'NGAEast_FRANKEL_J15.hdf5' # use a gmpe table @@ -103,5 +111,5 @@ sigma_model = 'al_atik_2015_sigma' # use Al Atik (2015) sigma model with_betw_ratio = 1.5 [custom_colors] -custom_colors_flag = 'False' # By default set to "False" (set to "True" for custom colours) +custom_colors_flag = false # Set to true for custom colours custom_colors_list = ['lime','dodgerblue','gold','0.8'] \ No newline at end of file diff --git a/openquake/smt/tests/comparison/data/target_medians_matrix.csv b/openquake/smt/tests/comparison/data/target_medians_matrix.csv index e37fd36e2..413ee13bf 100644 --- a/openquake/smt/tests/comparison/data/target_medians_matrix.csv +++ b/openquake/smt/tests/comparison/data/target_medians_matrix.csv @@ -1,16 +1,18 @@ 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999 -0.081307203,0.081138461,0.080636733,0.079815203,0.078694863,0.077303176,0.075672422,0.073837922,0.071836297,0.069703903,0.067475529,0.065183418,0.062856595,0.060520502,0.058196868,0.055903782,0.053655898,0.051464742,0.049339051,0.047285148,0.045320704,0.043475702,0.041742076,0.040095382,0.038511138,0.036989848,0.035531428,0.034135196,0.032799993,0.031524302,0.030306335,0.029144115,0.028035536,0.026978418,0.025970543,0.025009691,0.024093667,0.023220316,0.02238754,0.021593308,0.020835665,0.020112734,0.01942272,0.018763912,0.018134682,0.017533483,0.016958848,0.016535428,0.016235644,0.015944147,0.01566065,0.01538487,0.015116536,0.014855388,0.014601172,0.014353647,0.014112577,0.013877739,0.013648916,0.013425901,0.013208493,0.012996501,0.012789742,0.012588037,0.012391218,0.012199122,0.012011592,0.011828478,0.011649635,0.011474926,0.011304218,0.011137382,0.010974297,0.010814843,0.010658909,0.010506385,0.010357166,0.010211152,0.010068247,0.009928357,0.009791392,0.009657267,0.009525899,0.009397207,0.009271115,0.009147549,0.009026437,0.008907711,0.008791304,0.008677153,0.008565195,0.008455371,0.008347624,0.008241899,0.008138141,0.0080363,0.007936324,0.007838167,0.007741781,0.007647121,0.007554144,0.007462808,0.007373072,0.007284896,0.007198242,0.007113073,0.007029354,0.00694705,0.006866127,0.006786553,0.006708295,0.006631325,0.006555611,0.006481126,0.00640784,0.006335729,0.006264764,0.00619492,0.006126173,0.006058499,0.005991875,0.005926277,0.005861683,0.005798073,0.005735426,0.005673721,0.005612938,0.005553058,0.005494064,0.005435936,0.005378657,0.00532221,0.005266578,0.005211745,0.005157696,0.005104414,0.005051884,0.005000093,0.004949025,0.004898667,0.004849006,0.004800028,0.00475172,0.004704069,0.004657064,0.004610693,0.004564943,0.004519804,0.004475264,0.004431312,0.004387606,0.004343946,0.004300867,0.004258357,0.004216405,0.004175003,0.00413414,0.004093808,0.004053996,0.004014695,0.003975898,0.003937594,0.003899776,0.003862436,0.003825565,0.003789156,0.0037532,0.00371769,0.00368262,0.00364798,0.003613766,0.003579968,0.003546582,0.003513599,0.003481015,0.003448821,0.003417013,0.003385583,0.003354526,0.003323837,0.003293508,0.003263536,0.003233913,0.003204636,0.003175698,0.003147094,0.003118819,0.003090869,0.003063238,0.003035922,0.003008916,0.002982215,0.002955815,0.002929711,0.002903899,0.002878375,0.002853134,0.002828173,0.002803488,0.002779074,0.002754927,0.002731044,0.002707422,0.002684055,0.002660942,0.002638077,0.002615459,0.002593082,0.002570945,0.002549044,0.002527374,0.002505935,0.002484721,0.00246373,0.00244296,0.002422407,0.002402067,0.002381939,0.00236202,0.002342307,0.002322796,0.002303486,0.002284374,0.002265456,0.002246732,0.002228197,0.002209851,0.002191689,0.00217371,0.002155912,0.002138292,0.002120849,0.002103578,0.00208648,0.002069551,0.002052789,0.002036192,0.002019758,0.002003486,0.001987373,0.001971417,0.001955616,0.001939968,0.001924472,0.001909126,0.001893927,0.001878874,0.001863966,0.0018492,0.001834576,0.00182009,0.001805742,0.001791529,0.001777451,0.001763506,0.001749692,0.001736007,0.001722451,0.001709021,0.001695716,0.001682535,0.001669476,0.001656538,0.00164372,0.00163102,0.001618436,0.001605968,0.001593614,0.001581373,0.001569244,0.001557224,0.001545314,0.001533512,0.001521816,0.001510226,0.001498741,0.001487358,0.001476077,0.001464898,0.001453818,0.001442837,0.001431953,0.001421166,0.001410475,0.001399878,0.001389375,0.001378964,0.001368644,0.001358415,0.001348276,0.001338225,0.001328262,0.001318385,0.001308595,0.001298889,0.001289267,0.001279729,0.001270272,0.001260897,0.001251603,0.091493002,0.091304049,0.090742209,0.089822202,0.088567465,0.087008664,0.085181857,0.083126505,0.080883538,0.078493603,0.075995613,0.073425651,0.070816218,0.06819582,0.065588821,0.063015517,0.060492372,0.058032347,0.055645285,0.053338324,0.051135525,0.049066816,0.047122124,0.045282222,0.043512284,0.041810813,0.040178009,0.038613364,0.037115815,0.035683866,0.034315697,0.033009249,0.031762301,0.030572527,0.029437547,0.028354962,0.027322385,0.026337465,0.025397908,0.024501482,0.023646035,0.022829496,0.02204988,0.021305292,0.020593925,0.019914061,0.019264068,0.018761652,0.018423726,0.018095067,0.017775357,0.017464285,0.017161552,0.016866867,0.016579952,0.016300538,0.016028364,0.01576318,0.015504748,0.015252834,0.015007217,0.014767684,0.014534028,0.014306054,0.014083571,0.013866398,0.01365436,0.013447289,0.013245024,0.013047409,0.012854298,0.012665545,0.012481015,0.012300575,0.012124098,0.011951462,0.01178255,0.01161725,0.011455452,0.011297053,0.011141952,0.010990052,0.01084126,0.010695486,0.010552645,0.010412653,0.010275429,0.010140897,0.010008982,0.009879612,0.009752718,0.009628232,0.009506091,0.009386232,0.009268595,0.009153121,0.009039755,0.008928442,0.00881913,0.008711768,0.008606306,0.008502699,0.008400899,0.008300862,0.008202545,0.008105907,0.008010908,0.007917507,0.007825668,0.007735354,0.007646528,0.007559158,0.007473209,0.007388649,0.007305446,0.00722357,0.007142992,0.007063682,0.006985613,0.006908757,0.006833089,0.006758583,0.006685213,0.006612956,0.006541789,0.006471687,0.00640263,0.006334596,0.006267563,0.006201511,0.006136421,0.006072272,0.006009047,0.005946726,0.005885292,0.005824727,0.005765015,0.005706139,0.005648082,0.00559083,0.005534366,0.005478677,0.005423746,0.005369561,0.005316107,0.005263371,0.00521134,0.00516,0.00510934,0.005059346,0.005009772,0.004960101,0.004911087,0.004862718,0.004814983,0.004767871,0.00472137,0.004675471,0.004630162,0.004585433,0.004541275,0.004497678,0.004454631,0.004412126,0.004370153,0.004328704,0.00428777,0.004247342,0.004207412,0.004167972,0.004129013,0.004090528,0.004052509,0.004014949,0.003977841,0.003941176,0.003904948,0.003869151,0.003833777,0.003798819,0.003764272,0.003730129,0.003696383,0.003663029,0.00363006,0.003597471,0.003565256,0.003533409,0.003501925,0.003470798,0.003440024,0.003409596,0.003379509,0.00334976,0.003320342,0.003291251,0.003262482,0.003234031,0.003205892,0.003178062,0.003150536,0.00312331,0.003096379,0.00306974,0.003043388,0.003017319,0.00299153,0.002966015,0.002940773,0.002915798,0.002891088,0.002866639,0.002842446,0.002818507,0.002794818,0.002771376,0.002748178,0.00272522,0.002702499,0.002680012,0.002657756,0.002635728,0.002613925,0.002592343,0.002570981,0.002549835,0.002528902,0.00250818,0.002487667,0.002467358,0.002447252,0.002427347,0.002407639,0.002388126,0.002368806,0.002349677,0.002330735,0.002311979,0.002293406,0.002275014,0.002256802,0.002238766,0.002220904,0.002203215,0.002185696,0.002168345,0.002151161,0.00213414,0.002117282,0.002100585,0.002084046,0.002067663,0.002051435,0.00203536,0.002019436,0.002003661,0.001988034,0.001972552,0.001957215,0.001942021,0.001926967,0.001912052,0.001897275,0.001882634,0.001868128,0.001853755,0.001839513,0.001825401,0.001811418,0.001797561,0.001783831,0.001770224,0.001756741,0.001743379,0.001730137,0.001717014,0.001704009,0.00169112,0.001678345,0.001665685,0.001653137,0.0016407,0.001628373,0.001616155,0.001604045,0.001592042,0.001580143,0.001568349,0.001556659,0.00154507,0.001533582,0.001522194,0.001510905,0.001499714,0.001488619,0.00147762,0.001466716,0.001455906,0.001445189,0.001434563,0.102569431,0.10235867,0.101731968,0.100705689,0.099305898,0.097566701,0.095528208,0.093234335,0.090730641,0.088062393,0.085272946,0.082402523,0.079487374,0.076559313,0.073645555,0.07076879,0.067947442,0.065196032,0.062525608,0.059944203,0.057482871,0.055170906,0.052996608,0.050946042,0.048978168,0.047084121,0.045264474,0.04351898,0.041846737,0.040246331,0.038715952,0.037253501,0.035856669,0.034523009,0.033249994,0.032035054,0.030875623,0.029769157,0.028713163,0.02770521,0.026742944,0.025824095,0.024946482,0.024108018,0.02330671,0.022540659,0.021808059,0.021212851,0.020833333,0.020464135,0.020104905,0.019755304,0.019415002,0.019083681,0.018761031,0.018446756,0.018140569,0.017842194,0.017551365,0.017267826,0.01699133,0.016721641,0.01645853,0.01620178,0.015951179,0.015706525,0.015467624,0.015234289,0.015006341,0.014783607,0.014565922,0.014353126,0.014145065,0.013941594,0.01374257,0.013547857,0.013357325,0.013170846,0.012988301,0.012809572,0.012634548,0.012463119,0.012295183,0.012130638,0.011969388,0.011811341,0.011656405,0.011504496,0.011355529,0.011209424,0.011066102,0.010925491,0.010787516,0.010652108,0.0105192,0.010388727,0.010260625,0.010134833,0.010011294,0.009889949,0.009770745,0.009653627,0.009538545,0.009425447,0.009314287,0.009205018,0.009097593,0.00899197,0.008888106,0.00878596,0.008685491,0.008586662,0.008489434,0.008393771,0.008299638,0.008207001,0.008115826,0.008026081,0.007937735,0.007850757,0.007765117,0.007680788,0.00759774,0.007515948,0.007435383,0.007356022,0.007277838,0.007200807,0.007124907,0.007050113,0.006976404,0.006903758,0.006832153,0.006761569,0.006691986,0.006623383,0.006555743,0.006489047,0.006423276,0.006358412,0.006294439,0.00623134,0.006169098,0.006107697,0.006047122,0.005987357,0.005928388,0.005870201,0.00581278,0.005756113,0.0057001,0.005643786,0.005588214,0.005533371,0.005479245,0.005425823,0.005373092,0.00532104,0.005269655,0.005218927,0.005168843,0.005119393,0.005070566,0.005022351,0.004974738,0.004927717,0.004881278,0.004835411,0.004790107,0.004745358,0.004701152,0.004657483,0.004614341,0.004571718,0.004529605,0.004487994,0.004446878,0.004406248,0.004366098,0.004326418,0.004287203,0.004248445,0.004210137,0.004172271,0.004134842,0.004097843,0.004061267,0.004025107,0.003989358,0.003954014,0.003919068,0.003884514,0.003850347,0.003816561,0.003783151,0.003750111,0.003717435,0.003685119,0.003653157,0.003621545,0.003590277,0.003559348,0.003528754,0.003498489,0.00346855,0.003438932,0.00340963,0.003380641,0.003351958,0.00332358,0.0032955,0.003267716,0.003240223,0.003213018,0.003186096,0.003159453,0.003133087,0.003106992,0.003081167,0.003055606,0.003030308,0.003005267,0.002980481,0.002955947,0.002931661,0.00290762,0.002883821,0.002860261,0.002836937,0.002813845,0.002790984,0.002768349,0.002745938,0.002723749,0.002701778,0.002680023,0.002658481,0.002637149,0.002616026,0.002595107,0.002574392,0.002553877,0.002533559,0.002513437,0.002493509,0.002473771,0.002454222,0.002434859,0.00241568,0.002396683,0.002377865,0.002359225,0.002340761,0.00232247,0.00230435,0.0022864,0.002268618,0.002251,0.002233547,0.002216255,0.002199123,0.002182148,0.00216533,0.002148667,0.002132156,0.002115796,0.002099585,0.002083522,0.002067604,0.002051831,0.002036201,0.002020711,0.002005361,0.001990149,0.001975074,0.001960133,0.001945326,0.001930651,0.001916106,0.00190169,0.001887402,0.001873241,0.001859204,0.001845291,0.0018315,0.00181783,0.00180428,0.001790848,0.001777534,0.001764335,0.001751251,0.001738281,0.001725422,0.001712675,0.001700038,0.001687509,0.001675088,0.001662774,0.001650565,0.001638461,0.114557815,0.114323648,0.113627323,0.112486962,0.110931431,0.10899851,0.106732638,0.104182488,0.101398573,0.098431102,0.095328188,0.092134492,0.08889029,0.085630953,0.08238676,0.079182982,0.076040159,0.072974503,0.069998368,0.067120775,0.064383481,0.061811203,0.059390898,0.057110714,0.054933295,0.052834717,0.050816046,0.048877401,0.047018129,0.045236972,0.043532197,0.041901713,0.040343167,0.038854027,0.03743164,0.036073292,0.034776247,0.03353778,0.032355206,0.031225896,0.030147296,0.029116933,0.028132428,0.027191496,0.026291952,0.02543171,0.024608781,0.023903009,0.023478293,0.023065018,0.022662803,0.022271277,0.021890079,0.021518861,0.021157284,0.020805022,0.02046176,0.020127195,0.019801033,0.019482991,0.019172799,0.018870195,0.018574927,0.018286752,0.018005439,0.017730764,0.01746251,0.017200472,0.016944449,0.016694252,0.016449695,0.016210603,0.015976804,0.015748136,0.015524441,0.015305568,0.015091371,0.01488171,0.014676449,0.014475461,0.014278618,0.014085801,0.013896894,0.013711785,0.013530367,0.013352535,0.01317819,0.013007235,0.012839577,0.012675126,0.012513795,0.012355502,0.012200164,0.012047705,0.011898049,0.011751122,0.011606855,0.01146518,0.011326031,0.011189344,0.011055059,0.010923114,0.010793453,0.010666021,0.010540762,0.010417626,0.010296561,0.010177518,0.010060449,0.009945309,0.009832054,0.009720639,0.009611022,0.009503164,0.009397024,0.009292563,0.009189746,0.009088535,0.008988896,0.008890794,0.008794197,0.008699071,0.008605386,0.008513111,0.008422217,0.008332676,0.008244458,0.008157536,0.008071886,0.007987479,0.007904292,0.0078223,0.00774148,0.007661807,0.00758326,0.007505817,0.007429456,0.007354156,0.007279897,0.007206659,0.007134423,0.00706317,0.006992882,0.00692354,0.006855128,0.006787628,0.006721023,0.006655298,0.006590436,0.006526421,0.00646324,0.006399748,0.006336954,0.006274982,0.006213817,0.006153445,0.006093851,0.006035022,0.005976945,0.005919607,0.005862995,0.005807097,0.005751901,0.005697394,0.005643566,0.005590405,0.0055379,0.00548604,0.005434814,0.005384212,0.005334225,0.005284841,0.005236052,0.005187847,0.005140218,0.005093154,0.005046649,0.005000692,0.004955274,0.004910389,0.004866026,0.004822179,0.004778839,0.004735999,0.004693651,0.004651787,0.004610401,0.004569485,0.004529031,0.004489034,0.004449486,0.004410381,0.004371713,0.004333474,0.004295659,0.004258261,0.004221275,0.004184695,0.004148514,0.004112728,0.00407733,0.004042315,0.004007677,0.003973412,0.003939514,0.003905979,0.0038728,0.003839973,0.003807494,0.003775357,0.003743559,0.003712093,0.003680956,0.003650144,0.003619652,0.003589475,0.003559611,0.003530053,0.003500799,0.003471844,0.003443185,0.003414818,0.003386738,0.003358942,0.003331427,0.003304189,0.003277223,0.003250528,0.003224099,0.003197933,0.003172027,0.003146377,0.00312098,0.003095833,0.003070933,0.003046277,0.003021862,0.002997684,0.002973742,0.002950031,0.00292655,0.002903295,0.002880263,0.002857453,0.002834861,0.002812485,0.002790321,0.002768369,0.002746624,0.002725085,0.002703749,0.002682614,0.002661677,0.002640936,0.002620389,0.002600034,0.002579868,0.002559889,0.002540095,0.002520483,0.002501053,0.002481801,0.002462726,0.002443825,0.002425097,0.00240654,0.002388152,0.00236993,0.002351874,0.00233398,0.002316248,0.002298676,0.002281261,0.002264002,0.002246898,0.002229946,0.002213146,0.002196494,0.00217999,0.002163633,0.00214742,0.002131349,0.00211542,0.002099631,0.002083981,0.002068467,0.002053089,0.002037845,0.002022733,0.002007753,0.001992902,0.00197818,0.001963584,0.001949115,0.00193477,0.001920548,0.001906448,0.001892469,0.001878608,0.001864866,0.12747103,0.127211876,0.126441225,0.125179063,0.123457225,0.121317389,0.118808592,0.115984559,0.112901069,0.109613592,0.106175309,0.10263561,0.099039071,0.095424864,0.09182655,0.088272168,0.08478453,0.081381668,0.078077351,0.074882583,0.071851783,0.069002029,0.066319172,0.063790404,0.061390638,0.059076756,0.056847857,0.054704546,0.052646535,0.050672814,0.048781807,0.046971502,0.04523956,0.043583406,0.042000306,0.040487428,0.039041891,0.037660808,0.036341315,0.035080593,0.033875893,0.032724546,0.031623971,0.030571686,0.029565309,0.028602562,0.02768127,0.026843979,0.026370364,0.025909381,0.025460618,0.02502367,0.024598147,0.024183668,0.023779867,0.023386385,0.023002879,0.022629017,0.022264477,0.021908949,0.021562136,0.02122375,0.020893515,0.020571163,0.020256439,0.019949095,0.019648895,0.019355609,0.019069019,0.018788913,0.018515088,0.018247348,0.017985504,0.017729377,0.017478791,0.01723358,0.016993581,0.01675864,0.016528607,0.016303337,0.016082693,0.01586654,0.01565475,0.015447199,0.015243767,0.015044339,0.014848803,0.014657053,0.014468985,0.014284499,0.014103499,0.013925892,0.013751587,0.013580498,0.013412542,0.013247637,0.013085705,0.012926669,0.012770458,0.012617001,0.012466227,0.012318073,0.012172472,0.012029364,0.011888688,0.011750385,0.0116144,0.011480677,0.011349164,0.01121981,0.011092564,0.010967378,0.010844205,0.010723,0.010603719,0.010486319,0.010370759,0.010256997,0.010144995,0.010034715,0.009926119,0.009819173,0.00971384,0.009610087,0.009507881,0.009407189,0.009307981,0.009210226,0.009113894,0.009018958,0.008925387,0.008833156,0.008742238,0.008652607,0.008564238,0.008477105,0.008391186,0.008306457,0.008222895,0.008140478,0.008059185,0.007978994,0.007899885,0.007821837,0.007744832,0.00766885,0.007593872,0.007519881,0.007446859,0.007374787,0.00730365,0.007232448,0.007161732,0.007091938,0.00702305,0.006955051,0.006887926,0.006821661,0.006756239,0.006691647,0.006627871,0.006564896,0.006502709,0.006441296,0.006380646,0.006320744,0.00626158,0.006203139,0.006145412,0.006088385,0.006032048,0.005976389,0.005921399,0.005867065,0.005813377,0.005760326,0.005707901,0.005656092,0.00560489,0.005554285,0.005504269,0.005454832,0.005405964,0.005357659,0.005309906,0.005262698,0.005216026,0.005169883,0.00512426,0.00507915,0.005034546,0.004990439,0.004946823,0.00490369,0.004861033,0.004818847,0.004777122,0.004735854,0.004695036,0.004654661,0.004614722,0.004575215,0.004536132,0.004497468,0.004459218,0.004421374,0.004383932,0.004346887,0.004310232,0.004273962,0.004238073,0.004202559,0.004167414,0.004132635,0.004098216,0.004064152,0.004030439,0.003997072,0.003964046,0.003931357,0.003899001,0.003866973,0.003835269,0.003803885,0.003772817,0.00374206,0.00371161,0.003681465,0.003651619,0.00362207,0.003592813,0.003563844,0.003535161,0.003506759,0.003478635,0.003450785,0.003423207,0.003395897,0.003368851,0.003342066,0.00331554,0.003289269,0.003263249,0.003237479,0.003211954,0.003186673,0.003161631,0.003136827,0.003112257,0.003087918,0.003063809,0.003039926,0.003016266,0.002992827,0.002969606,0.002946602,0.00292381,0.00290123,0.002878858,0.002856692,0.002834729,0.002812968,0.002791407,0.002770041,0.002748871,0.002727893,0.002707105,0.002686505,0.002666092,0.002645862,0.002625814,0.002605946,0.002586256,0.002566742,0.002547402,0.002528234,0.002509236,0.002490406,0.002471743,0.002453245,0.00243491,0.002416736,0.002398721,0.002380865,0.002363164,0.002345617,0.002328224,0.002310981,0.002293888,0.002276943,0.002260145,0.002243491,0.002226981,0.002210612,0.002194384,0.002178295,0.002162343,0.002146527,0.002130846,0.002115299,0.099806083,0.099671456,0.09926991,0.098608342,0.097697913,0.096553565,0.095193417,0.093638053,0.091909783,0.090031902,0.088027994,0.085921315,0.08373427,0.081487997,0.079202062,0.076894256,0.07458048,0.072274712,0.069989039,0.067733736,0.065517373,0.063346958,0.06122808,0.059165065,0.057162714,0.055249918,0.053431616,0.051701644,0.050054333,0.04848313,0.046963952,0.045489992,0.044061687,0.042679122,0.041342083,0.040050112,0.038802544,0.037598551,0.036437174,0.035317353,0.034237948,0.033197767,0.032195578,0.031230129,0.030300156,0.029684028,0.029197376,0.028721572,0.02825641,0.027801674,0.027357141,0.026922584,0.026497775,0.026082482,0.025676474,0.025279521,0.024891394,0.024511867,0.024140717,0.023777724,0.023422672,0.023075349,0.022735548,0.022403067,0.022077708,0.021759277,0.021447587,0.021142455,0.020843702,0.020551155,0.020264646,0.019984012,0.019709093,0.019439736,0.019175792,0.018917114,0.018663563,0.018415003,0.018171301,0.017932329,0.017697963,0.017468083,0.017242572,0.017021317,0.016804208,0.01659114,0.01638201,0.016176718,0.015975168,0.015777266,0.015582921,0.015392045,0.015204553,0.015020363,0.014839394,0.014661569,0.014486812,0.01431505,0.014146212,0.01398023,0.013817036,0.013656566,0.013498758,0.013343549,0.013190881,0.013040696,0.012892938,0.012747553,0.012604489,0.012463694,0.012325117,0.012188712,0.012054431,0.011922227,0.011792058,0.011663878,0.011537647,0.011413324,0.011290868,0.011170242,0.011051406,0.010934325,0.010818963,0.010705286,0.010593258,0.010482848,0.010374022,0.010266751,0.010161003,0.010056749,0.009953959,0.009852606,0.009752662,0.0096541,0.009556894,0.009461018,0.009366448,0.009273159,0.009181127,0.00909033,0.009000745,0.008912349,0.008825121,0.008739041,0.008654087,0.00857024,0.008487479,0.008405787,0.008325144,0.008245532,0.008166605,0.00808742,0.008009253,0.007932087,0.007855905,0.00778069,0.007706425,0.007633095,0.007560683,0.007489175,0.007418554,0.007348807,0.007279919,0.007211875,0.007144662,0.007078267,0.007012676,0.006947876,0.006883854,0.006820598,0.006758096,0.006696336,0.006635306,0.006574995,0.006515391,0.006456484,0.006398263,0.006340717,0.006283836,0.006227609,0.006172028,0.006117081,0.00606276,0.006009055,0.005955958,0.005903458,0.005851547,0.005800217,0.005749458,0.005699263,0.005649624,0.005600532,0.00555198,0.005503959,0.005456463,0.005409483,0.005363013,0.005317045,0.005271572,0.005226588,0.005182085,0.005138056,0.005094496,0.005051398,0.005008755,0.004966562,0.004924811,0.004883498,0.004842616,0.004802159,0.004762122,0.0047225,0.004683286,0.004644475,0.004606062,0.004568041,0.004530409,0.004493158,0.004456286,0.004419786,0.004383653,0.004347884,0.004312473,0.004277416,0.004242709,0.004208346,0.004174324,0.004140639,0.004107285,0.00407426,0.004041558,0.004009176,0.00397711,0.003945356,0.00391391,0.003882768,0.003851927,0.003821383,0.003791133,0.003761172,0.003731498,0.003702106,0.003672995,0.003644159,0.003615596,0.003587303,0.003559277,0.003531514,0.003504011,0.003476765,0.003449774,0.003423034,0.003396542,0.003370296,0.003344292,0.003318528,0.003293002,0.003267709,0.003242649,0.003217817,0.003193212,0.003168832,0.003144672,0.003120731,0.003097007,0.003073497,0.003050199,0.00302711,0.003004228,0.002981551,0.002959076,0.002936802,0.002914725,0.002892845,0.002871158,0.002849663,0.002828358,0.00280724,0.002786307,0.002765558,0.002744991,0.002724604,0.002704394,0.00268436,0.0026645,0.002644812,0.002625294,0.002605945,0.002586762,0.002567745,0.002548891,0.002530198,0.002511665,0.002493291,0.002475073,0.00245701,0.002439101,0.002421343,0.002403736,0.002386277,0.110661484,0.110512619,0.110068602,0.109337055,0.108330306,0.107064865,0.105560747,0.103840698,0.101929365,0.099852488,0.097636128,0.095305982,0.092886811,0.090401978,0.08787311,0.085319874,0.082759849,0.080208495,0.07767918,0.07518327,0.072730249,0.070327876,0.067982342,0.065698442,0.063483656,0.06137133,0.059362653,0.057450922,0.055629964,0.053894089,0.052227207,0.050608464,0.049038172,0.047516637,0.046043819,0.04461939,0.04324278,0.041913225,0.040629799,0.039391452,0.038197036,0.037045332,0.035935065,0.034864932,0.033833606,0.033097264,0.032559476,0.032033472,0.031519041,0.031015962,0.030524005,0.030042936,0.029572513,0.029112493,0.028662634,0.028222689,0.027792417,0.027371576,0.026959927,0.026557233,0.026163264,0.025777791,0.025400591,0.025031445,0.024670138,0.024316462,0.023970212,0.02363119,0.023299202,0.02297406,0.02265558,0.022343583,0.022037897,0.021738354,0.02144479,0.021157046,0.020874969,0.020598409,0.020327222,0.020061267,0.019800408,0.019544512,0.019293453,0.019047106,0.01880535,0.018568069,0.01833515,0.018106483,0.017881962,0.017661484,0.017444949,0.01723226,0.017023323,0.016818047,0.016616344,0.016418128,0.016223316,0.016031828,0.015843584,0.015658509,0.015476529,0.015297574,0.015121572,0.014948458,0.014778164,0.014610629,0.014445789,0.014283585,0.014123959,0.013966854,0.013812215,0.013659988,0.013510122,0.013362565,0.013217269,0.013074185,0.012933268,0.012794471,0.012657752,0.012523065,0.012390372,0.012259629,0.012130799,0.012003841,0.01187872,0.011755398,0.01163384,0.01151401,0.011395876,0.011279404,0.011164563,0.01105132,0.010939645,0.010829509,0.010720882,0.010613736,0.010508044,0.010403779,0.010300914,0.010199423,0.010099282,0.010000465,0.00990295,0.009806713,0.00971173,0.009617981,0.009525442,0.009434094,0.009343914,0.009254883,0.00916698,0.009078487,0.008991047,0.008904723,0.008819497,0.008735348,0.008652259,0.008570212,0.008489189,0.008409174,0.008330148,0.008252097,0.008175004,0.008098852,0.008023628,0.007949315,0.007875899,0.007803366,0.007731702,0.007660891,0.007590922,0.007521781,0.007453455,0.00738593,0.007319195,0.007253238,0.007188045,0.007123607,0.00705991,0.006996945,0.006934699,0.006873162,0.006812323,0.006752172,0.006692699,0.006633893,0.006575745,0.006518246,0.006461385,0.006405153,0.006349542,0.006294541,0.006240144,0.00618634,0.006133122,0.006080481,0.006028409,0.005976898,0.00592594,0.005875528,0.005825654,0.00577631,0.005727489,0.005679184,0.005631388,0.005584094,0.005537295,0.005490984,0.005445156,0.005399802,0.005354918,0.005310497,0.005266533,0.005223019,0.00517995,0.00513732,0.005095123,0.005053353,0.005012006,0.004971075,0.004930556,0.004890442,0.004850729,0.004811412,0.004772486,0.004733945,0.004695785,0.004658001,0.004620589,0.004583543,0.004546859,0.004510533,0.004474561,0.004438937,0.004403658,0.00436872,0.004334117,0.004299847,0.004265906,0.004232288,0.004198991,0.004166011,0.004133343,0.004100984,0.004068931,0.004037179,0.004005726,0.003974567,0.003943699,0.00391312,0.003882825,0.003852811,0.003823075,0.003793614,0.003764424,0.003735503,0.003706847,0.003678454,0.00365032,0.003622442,0.003594818,0.003567445,0.00354032,0.003513439,0.003486802,0.003460404,0.003434242,0.003408316,0.003382621,0.003357155,0.003331916,0.003306901,0.003282109,0.003257535,0.003233179,0.003209037,0.003185107,0.003161388,0.003137877,0.003114571,0.003091468,0.003068567,0.003045864,0.003023359,0.003001048,0.002978931,0.002957004,0.002935266,0.002913714,0.002892348,0.002871165,0.002850162,0.002829339,0.002808693,0.002788223,0.002767926,0.002747801,0.002727846,0.00270806,0.00268844,0.122274881,0.122110827,0.121621504,0.120815304,0.119705802,0.118311177,0.116653472,0.11475773,0.112651097,0.110361916,0.107918889,0.105350318,0.102683475,0.099944094,0.097156001,0.09434086,0.091518045,0.088704591,0.085915233,0.083162501,0.080456857,0.077806858,0.075219337,0.07269959,0.070260223,0.067937166,0.065727224,0.063623153,0.061618276,0.05970643,0.057879855,0.056110687,0.054392391,0.05272556,0.051110389,0.049546734,0.048034171,0.04657204,0.045159489,0.043795511,0.04247898,0.041208673,0.039983298,0.038801517,0.037661956,0.036781733,0.03618968,0.03561035,0.035043535,0.034489013,0.033946552,0.033415909,0.032896836,0.032389082,0.031892391,0.031406507,0.030931174,0.030466135,0.030011139,0.029565933,0.029130272,0.02870391,0.028286608,0.027878132,0.027478252,0.027086742,0.026703381,0.026327957,0.025960258,0.025600081,0.025247228,0.024901504,0.024562722,0.024230699,0.023905257,0.023586224,0.023273432,0.022966718,0.022665924,0.022370898,0.02208149,0.021797556,0.021518956,0.021245554,0.020977219,0.020713824,0.020455243,0.020201358,0.019952051,0.019707209,0.019466724,0.019230488,0.018998398,0.018770356,0.018546262,0.018326024,0.018109549,0.01789675,0.01768754,0.017481835,0.017279555,0.01708062,0.016884955,0.016692485,0.016503137,0.016316843,0.016133533,0.015953141,0.015775604,0.015600859,0.015428845,0.015259503,0.015092776,0.014928608,0.014766944,0.014607733,0.014450921,0.01429646,0.014144302,0.013994397,0.013846701,0.013701168,0.013557756,0.01341642,0.013277121,0.013139816,0.013004468,0.012871038,0.012739488,0.012609782,0.012481884,0.012355761,0.012231377,0.012108701,0.011987699,0.011868342,0.011750597,0.011634436,0.01151983,0.011406749,0.011295166,0.011185054,0.011076387,0.010969139,0.010863284,0.010758798,0.010655657,0.010553837,0.010453316,0.01035407,0.010256079,0.010157976,0.010060476,0.009964217,0.009869176,0.009775334,0.00968267,0.009591163,0.009500795,0.009411547,0.0093234,0.009236335,0.009150336,0.009065384,0.008981463,0.008898555,0.008816645,0.008735716,0.008655753,0.008576741,0.008498664,0.008421508,0.008345258,0.0082699,0.00819542,0.008121805,0.008049042,0.007977117,0.007906018,0.007835732,0.007766247,0.00769755,0.007629631,0.007562477,0.007496077,0.007430421,0.007365496,0.007301293,0.007237801,0.007175009,0.007112908,0.007051487,0.006990737,0.006930648,0.006871211,0.006812417,0.006754256,0.00669672,0.006639799,0.006583487,0.006527773,0.00647265,0.006418109,0.006364143,0.006310744,0.006257904,0.006205616,0.006153871,0.006102664,0.006051986,0.00600183,0.005952191,0.00590306,0.005854431,0.005806298,0.005758653,0.005711492,0.005664807,0.005618592,0.005572841,0.005527549,0.005482709,0.005438316,0.005394363,0.005350846,0.005307759,0.005265097,0.005222854,0.005181024,0.005139604,0.005098587,0.005057969,0.005017745,0.00497791,0.004938459,0.004899388,0.004860692,0.004822366,0.004784406,0.004746808,0.004709567,0.004672679,0.00463614,0.004599946,0.004564092,0.004528575,0.00449339,0.004458534,0.004424003,0.004389793,0.004355901,0.004322322,0.004289053,0.004256091,0.004223431,0.004191071,0.004159008,0.004127237,0.004095755,0.00406456,0.004033647,0.004003015,0.003972659,0.003942576,0.003912764,0.00388322,0.00385394,0.003824921,0.003796162,0.003767658,0.003739407,0.003711407,0.003683654,0.003656146,0.003628881,0.003601855,0.003575066,0.003548511,0.003522189,0.003496096,0.00347023,0.003444589,0.00341917,0.003393971,0.00336899,0.003344224,0.003319671,0.003295329,0.003271195,0.003247268,0.003223545,0.003200025,0.003176704,0.003153582,0.003130655,0.003107923,0.003085383,0.003063032,0.00304087,0.003018894,0.134643294,0.134463109,0.133925671,0.133040187,0.131821559,0.130289739,0.128468918,0.126386582,0.124072526,0.121557861,0.118874088,0.116052276,0.113122362,0.110112596,0.107049137,0.103955773,0.100853777,0.09776186,0.094696208,0.091670587,0.088696494,0.085783336,0.08293863,0.080168204,0.07749314,0.074947924,0.072525611,0.070218415,0.068019149,0.065921174,0.063918352,0.061993958,0.060123095,0.058305946,0.056543012,0.0548344,0.053179889,0.051578978,0.050030936,0.048534843,0.047089631,0.045694108,0.044346994,0.043046938,0.041792546,0.040741891,0.040092625,0.039457009,0.038834844,0.038225912,0.037629981,0.03704681,0.036476145,0.035917728,0.035371298,0.034836586,0.034313328,0.033801255,0.033300102,0.032809603,0.032329498,0.031859527,0.031399437,0.030948977,0.030507902,0.03007597,0.029652945,0.029238599,0.028832704,0.028435043,0.0280454,0.027663567,0.027289341,0.026922524,0.026562925,0.026210355,0.025864634,0.025525585,0.025193036,0.024866822,0.024546779,0.024232752,0.023924588,0.023622139,0.023325261,0.023033816,0.022747668,0.022466687,0.022190744,0.021919717,0.021653486,0.021391935,0.02113495,0.020882423,0.020634247,0.02039032,0.02015054,0.019914811,0.019683039,0.019455132,0.019231001,0.01901056,0.018793725,0.018580414,0.018370549,0.018164052,0.017960848,0.017760866,0.017564035,0.017370285,0.017179551,0.016991767,0.01680687,0.016624799,0.016445494,0.016268898,0.016094953,0.015923605,0.0157548,0.015588486,0.015424613,0.01526313,0.015103991,0.014947147,0.014792554,0.014640167,0.014489942,0.014341838,0.014195813,0.014051827,0.013909841,0.013769817,0.013631718,0.013495507,0.013361149,0.013228609,0.013097854,0.012968851,0.012841568,0.012715973,0.012592036,0.012469727,0.012349017,0.012229878,0.012112281,0.011996199,0.011881606,0.011768476,0.011656783,0.011546503,0.011437612,0.011329284,0.011220912,0.011113913,0.011008265,0.010903945,0.01080093,0.010699197,0.010598727,0.010499497,0.010401487,0.010304677,0.010209047,0.010114579,0.010021253,0.00992905,0.009837953,0.009747945,0.009659006,0.009571122,0.009484275,0.009398448,0.009313627,0.009229795,0.009146937,0.009065037,0.008984082,0.008904057,0.008824948,0.008746741,0.008669422,0.008592977,0.008517395,0.008442662,0.008368766,0.008295694,0.008223435,0.008151975,0.008081305,0.008011411,0.007942284,0.007873913,0.007806285,0.007739391,0.007673221,0.007607764,0.00754301,0.00747895,0.007415573,0.00735287,0.007290833,0.007229451,0.007168715,0.007108618,0.00704915,0.006990303,0.006932068,0.006874438,0.006817403,0.006760957,0.006705091,0.006649797,0.006595069,0.006540898,0.006487277,0.0064342,0.006381659,0.006329647,0.006278158,0.006227184,0.006176719,0.006126757,0.006077291,0.006028315,0.005979823,0.005931808,0.005884265,0.005837188,0.005790571,0.005744408,0.005698693,0.005653422,0.005608589,0.005564188,0.005520214,0.005476662,0.005433527,0.005390803,0.005348486,0.005306572,0.005265054,0.005223929,0.005183192,0.005142837,0.005102862,0.00506326,0.005024029,0.004985162,0.004946657,0.00490851,0.004870715,0.004833268,0.004796167,0.004759406,0.004722983,0.004686892,0.004651131,0.004615696,0.004580582,0.004545787,0.004511306,0.004477136,0.004443275,0.004409717,0.004376461,0.004343502,0.004310837,0.004278463,0.004246377,0.004214576,0.004183056,0.004151815,0.00412085,0.004090157,0.004059733,0.004029576,0.003999683,0.003970051,0.003940677,0.003911559,0.003882693,0.003854077,0.003825709,0.003797585,0.003769704,0.003742062,0.003714657,0.003687488,0.00366055,0.003633842,0.003607362,0.003581106,0.003555074,0.003529262,0.003503668,0.00347829,0.003453126,0.003428174,0.003403431,0.003378895,0.148396642,0.148198548,0.147607692,0.146634189,0.145294411,0.143610278,0.141608367,0.139318878,0.136774545,0.13400955,0.131058504,0.127955545,0.124733568,0.121423618,0.118054439,0.114652178,0.111240216,0.107839121,0.104466691,0.101138062,0.097865882,0.094660502,0.091530195,0.088481378,0.085548568,0.082758324,0.080101599,0.077570036,0.075155913,0.072852084,0.070651934,0.068548763,0.066513785,0.064534374,0.062611423,0.06074537,0.058936267,0.057183836,0.055487524,0.053846548,0.052259938,0.050726576,0.049245221,0.047814543,0.046433145,0.045176186,0.044463926,0.04376627,0.043083035,0.042414015,0.041758984,0.041117704,0.040489923,0.039875379,0.039273805,0.038684929,0.038108474,0.037544163,0.036991718,0.036450863,0.035921322,0.035402823,0.034895096,0.034397877,0.033910902,0.033433917,0.032966669,0.032508911,0.032060402,0.031620907,0.031190195,0.030768042,0.030354228,0.02994854,0.029550771,0.029160718,0.028778185,0.028402979,0.028034916,0.027673814,0.027319497,0.026971796,0.026630544,0.02629558,0.025966748,0.025643897,0.025326878,0.025015549,0.024709771,0.024409408,0.024114331,0.023824412,0.023539528,0.023259559,0.022984388,0.022713904,0.022447995,0.022186556,0.021929484,0.021676677,0.021428039,0.021183475,0.020942892,0.020706202,0.020473316,0.020244152,0.020018626,0.01979666,0.019578174,0.019363095,0.019151348,0.018942863,0.01873757,0.018535401,0.01833629,0.018140175,0.017946992,0.017756681,0.017569183,0.017384441,0.017202399,0.017023003,0.016846199,0.016671935,0.016500163,0.016330832,0.016163894,0.015999304,0.015837016,0.015676986,0.015519169,0.015363526,0.015210013,0.015058592,0.014909223,0.014761869,0.014616491,0.014473054,0.014331522,0.014191861,0.014054037,0.013918017,0.013783768,0.01365126,0.013520461,0.013391342,0.013263873,0.013138026,0.013013772,0.012891084,0.012769935,0.012650278,0.012529675,0.012410596,0.012293016,0.012176907,0.012062247,0.01194901,0.011837173,0.011726712,0.011617605,0.01150983,0.011403365,0.011298188,0.011194278,0.011091616,0.010990181,0.010889954,0.010790915,0.010693046,0.010596328,0.010500743,0.010406274,0.010312903,0.010220614,0.01012939,0.010039214,0.00995007,0.009861944,0.009774819,0.009688681,0.009603514,0.009519305,0.009436039,0.009353703,0.009272282,0.009191763,0.009112134,0.00903338,0.008955491,0.008878452,0.008802253,0.00872688,0.008652323,0.00857857,0.00850561,0.00843343,0.008362022,0.008291373,0.008221474,0.008152313,0.008083882,0.008016169,0.007949165,0.007882861,0.007817247,0.007752314,0.007688053,0.007624454,0.007561509,0.007499209,0.007437546,0.007376511,0.007316096,0.007256294,0.007197095,0.007138492,0.007080479,0.007023046,0.006966186,0.006909893,0.006854159,0.006798976,0.006744339,0.00669024,0.006636672,0.006583629,0.006531104,0.00647909,0.006427582,0.006376574,0.006326058,0.006276029,0.006226482,0.00617741,0.006128807,0.006080668,0.006032987,0.005985759,0.005938978,0.005892639,0.005846737,0.005801267,0.005756223,0.0057116,0.005667394,0.0056236,0.005580213,0.005537227,0.005494639,0.005452444,0.005410637,0.005369214,0.005328171,0.005287503,0.005247205,0.005207275,0.005167707,0.005128497,0.005089642,0.005051137,0.005012979,0.004975164,0.004937687,0.004900545,0.004863735,0.004827253,0.004791095,0.004755257,0.004719737,0.00468453,0.004649633,0.004615044,0.004580758,0.004546772,0.004513083,0.004479688,0.004446584,0.004413768,0.004381236,0.004348986,0.004317014,0.004285318,0.004253895,0.004222742,0.004191856,0.004161234,0.004130873,0.004100772,0.004070926,0.004041334,0.004011993,0.0039829,0.003954053,0.003925449,0.003897086,0.003868962,0.003841073,0.003813417,0.003785993,0.164044581,0.163826135,0.163174572,0.16210104,0.160623581,0.158766354,0.156558647,0.154033744,0.151227719,0.148178244,0.144923466,0.141501008,0.137947126,0.134296038,0.130579431,0.126826127,0.123061903,0.119309438,0.115588358,0.111915358,0.108304392,0.104766881,0.101311958,0.097948359,0.094726146,0.09165898,0.088737153,0.085951688,0.083294279,0.08075723,0.078333407,0.076016188,0.073795075,0.071636973,0.069537209,0.067496653,0.065515719,0.063594431,0.061732486,0.059929299,0.058184057,0.056495758,0.054863246,0.053285244,0.051760382,0.050287221,0.049468091,0.048700518,0.04794839,0.047211519,0.046489695,0.045782686,0.045090247,0.044412119,0.043748033,0.043097713,0.042460876,0.041837237,0.041226509,0.040628403,0.040042631,0.039468907,0.038906948,0.038356472,0.037817202,0.037288865,0.036771193,0.036263923,0.035766795,0.035279558,0.034801963,0.034333769,0.033874739,0.033424644,0.032983259,0.032550364,0.032125748,0.031709201,0.031300522,0.030899515,0.030505988,0.030119757,0.029740639,0.029368459,0.029003048,0.028644239,0.028291871,0.027945788,0.027605838,0.027271872,0.026943749,0.026621329,0.026304475,0.025993058,0.02568695,0.025386026,0.025090166,0.024799253,0.024513174,0.024231818,0.023955078,0.02368285,0.023415033,0.023151527,0.022892238,0.022637072,0.022385939,0.022138751,0.021895422,0.02165587,0.021420013,0.021187773,0.020959072,0.020733838,0.020511997,0.020293478,0.020078214,0.019866136,0.01965718,0.019451284,0.019248384,0.01904842,0.018851335,0.018657071,0.018465573,0.018276786,0.018090657,0.017907136,0.017726171,0.017547714,0.017371717,0.017198134,0.017026919,0.016858027,0.016691417,0.016527044,0.016364869,0.016204851,0.016046951,0.01589113,0.015737351,0.015585578,0.015435775,0.015287907,0.01514194,0.01499784,0.014855576,0.014715115,0.014576426,0.01443948,0.014304245,0.014170694,0.014037099,0.013904134,0.013772835,0.013643176,0.013515128,0.013388665,0.01326376,0.013140387,0.013018522,0.012898139,0.012779214,0.012661725,0.012545646,0.012430957,0.012317634,0.012205656,0.012095002,0.011985651,0.011877582,0.011770775,0.011665211,0.011560871,0.011457735,0.011355786,0.011255005,0.011155374,0.011056877,0.010959495,0.010863213,0.010768014,0.010673881,0.0105808,0.010488755,0.01039773,0.01030771,0.010218682,0.01013063,0.010043541,0.009957402,0.009872197,0.009787914,0.009704541,0.009622064,0.00954047,0.009459748,0.009379885,0.009300869,0.009222689,0.009145333,0.00906879,0.008993048,0.008918098,0.008843927,0.008770526,0.008697885,0.008625993,0.00855484,0.008484416,0.008414712,0.008345719,0.008277426,0.008209826,0.008142908,0.008076664,0.008011085,0.007946163,0.00788189,0.007818256,0.007755254,0.007692876,0.007631114,0.00756996,0.007509407,0.007449447,0.007390072,0.007331276,0.007273051,0.00721539,0.007158286,0.007101733,0.007045724,0.006990251,0.006935309,0.006880892,0.006826992,0.006773604,0.006720721,0.006668338,0.006616448,0.006565046,0.006514126,0.006463683,0.00641371,0.006364202,0.006315153,0.00626656,0.006218415,0.006170714,0.006123452,0.006076624,0.006030225,0.005984249,0.005938693,0.005893551,0.005848819,0.005804491,0.005760565,0.005717034,0.005673895,0.005631143,0.005588773,0.005546783,0.005505167,0.005463921,0.005423042,0.005382525,0.005342366,0.005302561,0.005263108,0.005224,0.005185236,0.005146811,0.005108722,0.005070965,0.005033536,0.004996433,0.004959651,0.004923187,0.004887038,0.0048512,0.00481567,0.004780446,0.004745523,0.004710899,0.00467657,0.004642534,0.004608787,0.004575326,0.004542149,0.004509253,0.004476634,0.00444429,0.004412218,0.004380415,0.004348879,0.004317606,0.004286595,0.004255842,0.181223303,0.180982564,0.180264505,0.179081406,0.177453137,0.175406308,0.172973179,0.170190407,0.167097727,0.163736631,0.160149136,0.156376683,0.152459207,0.148434401,0.14433717,0.140199267,0.136049093,0.131911636,0.127808525,0.123758163,0.119775932,0.115874427,0.112063725,0.108360363,0.104824208,0.101456297,0.098246261,0.095184498,0.092262103,0.089470817,0.086802969,0.08425143,0.08180957,0.079461727,0.07717563,0.074950361,0.072786807,0.070685395,0.068646161,0.066668806,0.064752746,0.062897163,0.061101046,0.059363224,0.057682401,0.056057186,0.055010954,0.054167627,0.053340748,0.052530157,0.051735671,0.050957076,0.05019414,0.049446614,0.048714234,0.047996726,0.047293807,0.046605187,0.045930573,0.045269668,0.044622175,0.043987796,0.043366236,0.042757198,0.042160393,0.041575531,0.041002329,0.040440506,0.039889787,0.039349903,0.03882059,0.038301587,0.037792642,0.037293507,0.03680394,0.036323705,0.035852572,0.035390317,0.03493672,0.03449157,0.034054658,0.033625783,0.033204749,0.032791364,0.032385443,0.031986805,0.031595275,0.031210682,0.03083286,0.030461648,0.030096889,0.029738431,0.029386125,0.029039829,0.028699401,0.028364707,0.028035614,0.027711994,0.027393723,0.027080678,0.026772743,0.026469803,0.026171745,0.025878463,0.025589851,0.025305806,0.025026229,0.024751024,0.024480095,0.024213352,0.023950705,0.023692067,0.023437355,0.023186485,0.022939379,0.022695957,0.022456145,0.022219869,0.021987056,0.021757638,0.021531545,0.021308711,0.021089071,0.020872563,0.020659125,0.020448698,0.020241221,0.02003664,0.019834898,0.019635941,0.019439716,0.019246172,0.019055259,0.018866927,0.018681129,0.018497818,0.018316949,0.018138476,0.017962357,0.017788549,0.017617011,0.017447702,0.017280583,0.017115615,0.01695276,0.016791982,0.016633244,0.016476511,0.01632175,0.016168925,0.016018005,0.015868957,0.015721196,0.015572759,0.015426177,0.01528142,0.015138456,0.014997255,0.014857789,0.014720029,0.014583946,0.014449514,0.014316705,0.014185493,0.014055852,0.013927758,0.013801186,0.013676111,0.013552511,0.013430361,0.013309639,0.013190323,0.01307239,0.012955821,0.012840594,0.012726688,0.012614083,0.012502759,0.012392698,0.012283881,0.012176288,0.012069902,0.011964704,0.011860677,0.011757805,0.01165607,0.011555455,0.011455945,0.011357524,0.011260175,0.011163884,0.011068636,0.010974415,0.010881207,0.010788999,0.010697775,0.010607523,0.010518229,0.010429879,0.010342461,0.010255962,0.010170369,0.01008567,0.010001853,0.009918906,0.009836818,0.009755576,0.009675169,0.009595587,0.009516818,0.009438853,0.009361679,0.009285287,0.009209667,0.009134809,0.009060702,0.008987338,0.008914706,0.008842798,0.008771603,0.008701114,0.00863132,0.008562214,0.008493786,0.008426028,0.008358932,0.00829249,0.008226693,0.008161534,0.008097004,0.008033096,0.007969802,0.007907116,0.007845028,0.007783533,0.007722623,0.007662291,0.00760253,0.007543334,0.007484695,0.007426607,0.007369063,0.007312058,0.007255584,0.007199636,0.007144207,0.007089291,0.007034883,0.006980976,0.006927565,0.006874644,0.006822208,0.00677025,0.006718766,0.00666775,0.006617197,0.006567101,0.006517457,0.006468261,0.006419507,0.006371191,0.006323307,0.006275851,0.006228817,0.006182202,0.006136001,0.006090209,0.006044822,0.005999835,0.005955244,0.005911045,0.005867233,0.005823804,0.005780755,0.00573808,0.005695777,0.005653841,0.005612268,0.005571054,0.005530196,0.005489689,0.005449531,0.005409717,0.005370244,0.005331109,0.005292307,0.005253835,0.00521569,0.005177869,0.005140368,0.005103183,0.005066313,0.005029752,0.004993499,0.00495755,0.004921903,0.004886553,0.004851498,0.004816735,0.004782261,0.200064852,0.199799725,0.199008919,0.197705951,0.195912692,0.193658433,0.19097868,0.187913784,0.184507479,0.180805436,0.176853903,0.172698494,0.168383168,0.163949417,0.159435665,0.15487687,0.150304301,0.145745474,0.141224205,0.136760767,0.132372105,0.128072099,0.123871859,0.119805451,0.115930219,0.112237036,0.108714885,0.105353542,0.10214351,0.099075961,0.096142683,0.093336033,0.090648891,0.08807462,0.085593187,0.083174159,0.080818093,0.078525943,0.076298198,0.074134947,0.072035932,0.070000605,0.068028176,0.066117651,0.064267871,0.062477545,0.06115031,0.060225169,0.05931742,0.058426951,0.057553615,0.056697231,0.055857591,0.055034466,0.054227605,0.053436744,0.052661606,0.051901905,0.051157346,0.05042763,0.049712454,0.049011512,0.048324499,0.047651109,0.04699104,0.046343988,0.045709656,0.045087749,0.044477977,0.043880052,0.043293695,0.04271863,0.042154585,0.041601296,0.041058504,0.040525955,0.040003402,0.039490603,0.038987323,0.038493332,0.038008404,0.037532323,0.037064876,0.036605854,0.036155057,0.035712288,0.035277356,0.034850075,0.034430265,0.03401775,0.033612359,0.033213925,0.032822287,0.032437287,0.032058773,0.031686596,0.031320611,0.030960677,0.030606659,0.030258423,0.02991584,0.029578784,0.029247133,0.028920768,0.028599573,0.028283436,0.027972248,0.027665901,0.027364292,0.027067321,0.026774889,0.026486901,0.026203264,0.025923887,0.025648682,0.025377563,0.025110447,0.024847252,0.0245879,0.024332312,0.024080414,0.023832133,0.023587396,0.023346134,0.02310828,0.022873767,0.022642531,0.022414509,0.022189639,0.021967861,0.021749118,0.021533352,0.021320508,0.021110531,0.020903368,0.020698969,0.020497282,0.020298258,0.020101849,0.019908009,0.01971669,0.01952785,0.019341443,0.019157427,0.01897576,0.018796402,0.018619312,0.018444451,0.018271782,0.018101267,0.01793287,0.017766555,0.017602286,0.01743768,0.017274062,0.017112473,0.01695288,0.01679525,0.016639549,0.016485747,0.016333813,0.016183715,0.016035424,0.015888912,0.015744148,0.015601106,0.015459759,0.015320078,0.015182039,0.015045615,0.014910781,0.014777513,0.014645786,0.014515577,0.014386862,0.014259619,0.014133825,0.014009459,0.013886498,0.013764923,0.013644712,0.013525845,0.013408303,0.013292065,0.013177113,0.013063428,0.012950992,0.012839787,0.012729794,0.012620997,0.012513379,0.012406922,0.012301611,0.01219743,0.012094362,0.011992391,0.011891504,0.011791684,0.011692917,0.011595188,0.011498484,0.011402791,0.011308094,0.01121438,0.011121636,0.011029849,0.010939007,0.010849096,0.010760104,0.01067202,0.01058483,0.010498524,0.010413091,0.010328518,0.010244794,0.010161909,0.010079852,0.009998611,0.009918178,0.009838541,0.009759691,0.009681616,0.009604309,0.009527759,0.009451956,0.009376892,0.009302556,0.009228941,0.009156038,0.009083837,0.009012329,0.008941508,0.008871363,0.008801887,0.008733073,0.008664911,0.008597395,0.008530515,0.008464266,0.008398639,0.008333627,0.008269223,0.008205419,0.008142209,0.008079586,0.008017542,0.007956072,0.007895168,0.007834823,0.007775033,0.007715789,0.007657086,0.007598918,0.007541279,0.007484162,0.007427562,0.007371473,0.007315889,0.007260805,0.007206214,0.007152112,0.007098493,0.007045352,0.006992683,0.006940482,0.006888743,0.00683746,0.00678663,0.006736247,0.006686306,0.006636803,0.006587733,0.00653909,0.006490872,0.006443072,0.006395687,0.006348712,0.006302143,0.006255975,0.006210205,0.006164828,0.006119839,0.006075236,0.006031013,0.005987168,0.005943695,0.005900591,0.005857853,0.005815476,0.005773458,0.005731793,0.005690479,0.005649511,0.005608888,0.005568604,0.005528656,0.005489042,0.005449757,0.005410799,0.005372164,0.220706945,0.220415179,0.219544913,0.218111014,0.216137538,0.213656699,0.21070755,0.207334471,0.203585562,0.199511054,0.195161812,0.190588006,0.185837987,0.180957393,0.175988491,0.170969734,0.165935525,0.160916139,0.155937785,0.151022775,0.146189763,0.141454036,0.136828246,0.132378337,0.128137358,0.124092795,0.12023301,0.116547174,0.113025208,0.109657721,0.106435963,0.103351772,0.100397535,0.097566139,0.094850943,0.092230516,0.089673901,0.087181941,0.084755715,0.082395826,0.080102461,0.07787545,0.075714323,0.07361835,0.07158659,0.069617926,0.067946605,0.066933531,0.065938688,0.064962029,0.064003463,0.063062856,0.06214004,0.061234818,0.060346967,0.059476242,0.058622383,0.057785114,0.056964147,0.056159188,0.055369933,0.054596076,0.053837306,0.053093311,0.052363779,0.051648399,0.050946859,0.050258853,0.049584077,0.04892223,0.048273016,0.047636142,0.047011323,0.046398277,0.045796727,0.045206404,0.044627042,0.044058383,0.043500174,0.042952167,0.042414121,0.041885801,0.041366976,0.040857424,0.040356925,0.039865268,0.039382244,0.038907653,0.038441297,0.037982986,0.037532534,0.037089758,0.036654484,0.036226538,0.035805756,0.035391973,0.034985033,0.03458478,0.034191066,0.033803746,0.033422677,0.033047721,0.032678745,0.032315619,0.031958215,0.031606409,0.031260082,0.030919116,0.030583398,0.030252817,0.029927264,0.029606635,0.029290828,0.028979741,0.02867328,0.028371349,0.028073855,0.02778071,0.027491826,0.027207117,0.026926501,0.026649897,0.026377226,0.026108412,0.025843378,0.025582053,0.025324364,0.025070243,0.024819621,0.024572433,0.024328614,0.024088101,0.023850833,0.023616749,0.023385791,0.023157902,0.022933027,0.02271111,0.022492098,0.02227594,0.022062585,0.021851983,0.021644086,0.021438847,0.021236218,0.021036156,0.020838615,0.020643552,0.020450926,0.020260695,0.020072819,0.019887258,0.019703973,0.019522396,0.01933978,0.019159422,0.018981285,0.018805331,0.018631526,0.018459833,0.018290219,0.018122649,0.01795709,0.01779351,0.017631878,0.017472162,0.017314332,0.017158359,0.017004212,0.016851864,0.016701287,0.016552453,0.016405335,0.016259908,0.016116144,0.01597402,0.01583351,0.015694589,0.015557235,0.015421424,0.015287132,0.015154338,0.015023019,0.014893153,0.01476472,0.014637699,0.014512069,0.014387811,0.014264903,0.014143329,0.014023067,0.0139041,0.01378641,0.013669978,0.013554788,0.013440821,0.01332806,0.01321649,0.013106094,0.012996855,0.012888758,0.012781787,0.012675928,0.012571164,0.012467482,0.012364867,0.012263305,0.012162781,0.012063283,0.011964796,0.011867307,0.011770804,0.011675273,0.011580701,0.011487078,0.011394389,0.011302623,0.011211769,0.011121815,0.011032749,0.010944561,0.010857238,0.010770771,0.010685148,0.010600359,0.010516394,0.010433243,0.010350895,0.01026934,0.010188569,0.010108573,0.010029342,0.009950866,0.009873136,0.009796145,0.009719881,0.009644338,0.009569506,0.009495377,0.009421943,0.009349195,0.009277125,0.009205726,0.009134989,0.009064907,0.008995472,0.008926677,0.008858514,0.008790976,0.008724056,0.008657747,0.008592041,0.008526933,0.008462414,0.00839848,0.008335122,0.008272335,0.008210112,0.008148446,0.008087332,0.008026764,0.007966735,0.00790724,0.007848272,0.007789826,0.007731896,0.007674476,0.007617562,0.007561147,0.007505226,0.007449793,0.007394844,0.007340374,0.007286376,0.007232847,0.00717978,0.007127172,0.007075017,0.007023311,0.006972048,0.006921225,0.006870836,0.006820878,0.006771345,0.006722233,0.006673537,0.006625255,0.00657738,0.006529909,0.006482839,0.006436163,0.00638988,0.006343985,0.006298473,0.006253341,0.006208585,0.006164201,0.006120186,0.006076536,0.006033247,0.243290911,0.242970108,0.242013226,0.240436606,0.238266679,0.235538845,0.232296016,0.228586958,0.224464526,0.219983914,0.215201017,0.210170964,0.204946887,0.199578941,0.194113576,0.188593058,0.183055202,0.17753329,0.172056141,0.166648291,0.16133026,0.156118871,0.151039439,0.146180066,0.141545082,0.137121387,0.132896759,0.128859796,0.124999857,0.121307003,0.117771955,0.114386037,0.111141141,0.108029681,0.105044557,0.10217912,0.099414896,0.09671663,0.094084166,0.09151877,0.089021216,0.086591846,0.084230631,0.081937218,0.079710988,0.077551088,0.075463993,0.074357007,0.073268918,0.07219977,0.07114955,0.070118192,0.069105587,0.068111588,0.067136014,0.066178656,0.065239281,0.064317637,0.063413455,0.062526452,0.061656335,0.060802803,0.059965547,0.059144255,0.058338612,0.0575483,0.056773003,0.056012404,0.055266188,0.054534043,0.05381566,0.053110733,0.052418962,0.05174005,0.051073704,0.050419639,0.049777572,0.049147229,0.048528339,0.047920638,0.047323867,0.046737775,0.046162113,0.045596642,0.045041125,0.044495334,0.043959044,0.043432038,0.042914102,0.042405029,0.041904617,0.04141267,0.040928996,0.040453408,0.039985724,0.039525767,0.039073365,0.038628351,0.03819056,0.037759833,0.037336017,0.03691896,0.036508515,0.036104539,0.035706894,0.035315444,0.034930056,0.034550604,0.03417696,0.033809005,0.033446619,0.033089686,0.032738094,0.032391734,0.032050499,0.031714285,0.031382989,0.031056515,0.030734764,0.030417644,0.030105063,0.029796932,0.029493163,0.029193673,0.028898378,0.028607197,0.028320053,0.028036868,0.027757568,0.027482079,0.02721033,0.026942252,0.026677777,0.026416838,0.026159371,0.025905313,0.025654602,0.025407177,0.02516298,0.024921953,0.024684041,0.024449188,0.024217341,0.023988447,0.023762455,0.023539316,0.023318979,0.023101398,0.022886525,0.022674315,0.022464723,0.022257705,0.022053218,0.021851221,0.02164945,0.021448156,0.021249333,0.021052939,0.020858936,0.020667284,0.020477946,0.020290882,0.020106057,0.019923435,0.019742981,0.019564661,0.019388439,0.019214285,0.019042164,0.018872047,0.0187039,0.018537695,0.018373401,0.018210989,0.018050431,0.017891697,0.017734762,0.017579597,0.017426177,0.017274475,0.017124466,0.016976125,0.016829428,0.01668435,0.016540868,0.016398958,0.016258599,0.016119768,0.015982442,0.015846601,0.015712224,0.015579289,0.015447777,0.015317668,0.015188942,0.015061579,0.014935562,0.01481087,0.014687488,0.014565395,0.014444576,0.014325012,0.014206686,0.014089583,0.013973685,0.013858977,0.013745442,0.013633066,0.013521833,0.013411727,0.013302735,0.013194841,0.013088031,0.012982292,0.01287761,0.01277397,0.01267136,0.012569767,0.012469177,0.012369578,0.012270957,0.012173303,0.012076602,0.011980844,0.011886016,0.011792106,0.011699105,0.011606999,0.011515779,0.011425434,0.011335952,0.011247324,0.011159539,0.011072587,0.010986458,0.010901142,0.010816629,0.01073291,0.010649976,0.010567816,0.010486423,0.010405786,0.010325898,0.010246749,0.010168331,0.010090636,0.010013654,0.009937379,0.0098618,0.009786912,0.009712705,0.009639173,0.009566307,0.0094941,0.009422544,0.009351632,0.009281358,0.009211713,0.009142691,0.009074285,0.009006488,0.008939293,0.008872694,0.008806684,0.008741256,0.008676405,0.008612125,0.008548407,0.008485248,0.008422641,0.008360579,0.008299057,0.00823807,0.008177611,0.008117674,0.008058255,0.007999348,0.007940947,0.007883048,0.007825644,0.00776873,0.007712302,0.007656355,0.007600883,0.007545881,0.007491345,0.00743727,0.007383651,0.007330483,0.007277763,0.007225484,0.007173643,0.007122235,0.007071256,0.007020702,0.006970568,0.00692085,0.006871543,0.006822645,0.00677415,0.205742333,0.2055444,0.204953071,0.203975681,0.202624193,0.200914822,0.198867548,0.196505526,0.193854444,0.190941857,0.187796513,0.184447715,0.180924738,0.1772563,0.17347013,0.169592599,0.165648448,0.161660591,0.157649984,0.153635568,0.149634264,0.145661004,0.14172881,0.137848887,0.134030749,0.130282341,0.126610176,0.123043218,0.119620554,0.116335416,0.113180683,0.110149673,0.10723611,0.104434098,0.101738098,0.099142898,0.096643595,0.094235573,0.091914484,0.089676231,0.08751695,0.085432997,0.083425376,0.082354534,0.081293048,0.080241679,0.079201095,0.078171872,0.077154507,0.076149421,0.075156968,0.074177438,0.073211065,0.07225803,0.071318471,0.07039248,0.069480115,0.068581396,0.067696317,0.066824841,0.065966911,0.065122446,0.064291348,0.063473501,0.062668776,0.061877032,0.061098117,0.060331868,0.059578118,0.05883669,0.058107404,0.057390075,0.056684514,0.055990532,0.055307935,0.05463653,0.053976123,0.053326519,0.052687525,0.052058948,0.051440596,0.050832279,0.050233808,0.049644998,0.049065663,0.048495622,0.047934696,0.047382709,0.046839485,0.046304855,0.045778649,0.045260704,0.044750856,0.044248946,0.043754819,0.043268321,0.042789301,0.042317614,0.041853114,0.041395661,0.040945116,0.040501344,0.040064214,0.039633594,0.03920936,0.038791386,0.038379551,0.037973737,0.037573829,0.037179711,0.036791275,0.036408411,0.036031013,0.035658979,0.035292206,0.034930596,0.034574051,0.034222478,0.033875784,0.033533879,0.033196673,0.032864082,0.03253602,0.032212405,0.031893156,0.031578194,0.031267443,0.030960826,0.030658271,0.030359704,0.030065056,0.029774257,0.029487241,0.02920394,0.02892429,0.02864823,0.028375695,0.028106627,0.027840966,0.027578654,0.027319635,0.027063852,0.026811253,0.026561784,0.026315393,0.026072029,0.025831642,0.025594183,0.025359606,0.025127863,0.024898908,0.024672696,0.024449184,0.024228329,0.024006108,0.023785895,0.023568325,0.023353355,0.023140945,0.022931052,0.022723639,0.022518666,0.022316095,0.022115889,0.021918011,0.021722426,0.021529097,0.021337992,0.021149076,0.020962316,0.020777679,0.020595134,0.020414649,0.020236195,0.02005974,0.019885255,0.019712712,0.019542082,0.019373337,0.01920645,0.019041394,0.018878142,0.01871667,0.018556951,0.018398961,0.018242675,0.018088069,0.01793512,0.017783804,0.017634099,0.017485982,0.017339432,0.017194427,0.017050946,0.016908968,0.016768472,0.016629439,0.016491848,0.016355682,0.016220919,0.016087542,0.015955533,0.015824872,0.015695543,0.015567528,0.015440809,0.015315371,0.015191195,0.015068267,0.014946569,0.014826086,0.014706802,0.014588703,0.014471772,0.014355996,0.01424136,0.014127849,0.014015449,0.013904147,0.013793928,0.013684779,0.013576688,0.013469641,0.013363625,0.013258627,0.013154636,0.013051639,0.012949623,0.012848578,0.012748491,0.012649351,0.012551147,0.012453867,0.012357501,0.012262037,0.012167465,0.012073775,0.011980956,0.011888998,0.011797891,0.011707625,0.011618191,0.011529578,0.011441778,0.01135478,0.011268577,0.011183158,0.011098515,0.011014639,0.010931521,0.010849154,0.010767528,0.010686634,0.010606466,0.010527015,0.010448273,0.010370231,0.010292883,0.010216221,0.010140237,0.010064923,0.009990273,0.00991628,0.009842935,0.009770232,0.009698165,0.009626726,0.009555908,0.009485705,0.009416111,0.009347118,0.009278721,0.009210913,0.009143688,0.00907704,0.009010963,0.00894545,0.008880496,0.008816095,0.008752242,0.00868893,0.008626154,0.008563909,0.008502188,0.008440988,0.008380301,0.008320124,0.00826045,0.008201275,0.008142594,0.008084402,0.008026693,0.007969463,0.007912708,0.007856421,0.0078006,0.007745238,0.007690332,0.007635876,0.007581867,0.227577068,0.227357682,0.226702276,0.225619009,0.224121194,0.222226873,0.219958266,0.217341125,0.214404008,0.211177537,0.20769365,0.203984887,0.200083743,0.196022083,0.191830654,0.187538687,0.183173589,0.178760729,0.174323297,0.169882238,0.16545625,0.161061825,0.156713332,0.152423129,0.148201694,0.144057772,0.140002106,0.136091816,0.13233837,0.128733741,0.125270379,0.121941185,0.118739481,0.11565898,0.112693764,0.109838258,0.107087209,0.104435664,0.101878951,0.099412662,0.097032636,0.094734943,0.092515867,0.091199877,0.090055419,0.088920129,0.087794851,0.086680328,0.085577211,0.084486064,0.08340737,0.082341542,0.081288924,0.0802498,0.079224397,0.078212894,0.077215422,0.076232073,0.075262899,0.074307921,0.073367129,0.072440486,0.071527933,0.070629388,0.06974475,0.068873904,0.06801672,0.067173054,0.066342752,0.065525651,0.064721581,0.063930364,0.063151818,0.062385754,0.061631983,0.060890311,0.060160543,0.059442481,0.058735929,0.058040688,0.057356562,0.056683354,0.056020869,0.055368912,0.054727291,0.054095815,0.053474296,0.052862548,0.052260386,0.05166763,0.051084101,0.050509624,0.049944025,0.049387134,0.048838785,0.048298814,0.047767059,0.047243363,0.04672757,0.046219528,0.045719089,0.045226106,0.044740437,0.044261941,0.043790481,0.043325923,0.042868135,0.042416988,0.041972356,0.041534117,0.041102149,0.040676335,0.040256559,0.039842708,0.039434671,0.039032341,0.038635611,0.038244379,0.037858543,0.037478005,0.037102667,0.036732435,0.036367217,0.036006921,0.035651461,0.035300748,0.034954699,0.03461323,0.03427626,0.033943711,0.033615504,0.033291564,0.032971817,0.03265619,0.032344612,0.032037013,0.031733326,0.031433484,0.031137422,0.030845076,0.030556383,0.030271283,0.029989715,0.029711622,0.029436946,0.02916563,0.02889762,0.028632862,0.028371304,0.028112893,0.027857579,0.027605313,0.027356045,0.027109729,0.026865762,0.026620072,0.02637732,0.026137459,0.025900443,0.025666228,0.02543477,0.025206026,0.024979954,0.024756511,0.024535659,0.024317357,0.024101567,0.023888249,0.023677368,0.023468885,0.023262765,0.023058973,0.022857474,0.022658235,0.022461221,0.0222664,0.02207374,0.02188321,0.021694779,0.021508416,0.021324092,0.021141777,0.020961443,0.020783061,0.020606604,0.020432046,0.020259358,0.020088516,0.019919492,0.019752263,0.019586804,0.019423089,0.019261095,0.019100799,0.018942177,0.018785207,0.018629867,0.018476134,0.018323987,0.018173405,0.018024367,0.017876852,0.017730841,0.017586314,0.017443251,0.017301634,0.017161443,0.017022659,0.016885266,0.016749244,0.016614577,0.016481247,0.016349237,0.01621853,0.01608911,0.015960961,0.015834066,0.01570841,0.015583978,0.015460755,0.015338725,0.015217873,0.015098186,0.014979649,0.014862248,0.014745969,0.014630799,0.014516724,0.014403731,0.014291807,0.014180939,0.014071114,0.013962321,0.013854547,0.01374778,0.013642008,0.01353722,0.013433403,0.013330547,0.013228641,0.013127673,0.013027633,0.012928509,0.012830292,0.012732971,0.012636536,0.012540977,0.012446283,0.012352446,0.012259455,0.0121673,0.012075974,0.011985465,0.011895766,0.011806866,0.011718758,0.011631433,0.011544881,0.011459095,0.011374066,0.011289786,0.011206246,0.011123439,0.011041357,0.010959991,0.010879334,0.010799379,0.010720118,0.010641544,0.010563649,0.010486426,0.010409867,0.010333967,0.010258718,0.010184112,0.010110144,0.010036807,0.009964094,0.009891999,0.009820515,0.009749635,0.009679355,0.009609667,0.009540565,0.009472044,0.009404097,0.009336718,0.009269903,0.009203645,0.009137938,0.009072777,0.009008157,0.008944071,0.008880516,0.008817484,0.008754972,0.008692974,0.008631484,0.008570499,0.008510012,0.251607772,0.251364651,0.250638348,0.249437948,0.247778265,0.245679374,0.243165999,0.240266776,0.23701346,0.233440084,0.229582128,0.225475732,0.22115696,0.216661164,0.212022436,0.207273171,0.202443722,0.197562168,0.19265416,0.187742854,0.182848903,0.177990509,0.173183523,0.16844156,0.163776158,0.15919693,0.15474033,0.150460137,0.146348938,0.142398298,0.138600264,0.134947338,0.131432454,0.128048944,0.124790517,0.12165124,0.118625508,0.115708032,0.112893811,0.110178123,0.107556501,0.105024723,0.102578791,0.100931869,0.099686397,0.098464455,0.097252948,0.096051095,0.094859733,0.093679602,0.09251135,0.091355538,0.090212652,0.089083105,0.087967243,0.086865354,0.085777668,0.084704368,0.083645589,0.082601427,0.08157194,0.080557152,0.079557058,0.078571625,0.077600797,0.076644496,0.075702625,0.074775071,0.073861705,0.072962388,0.072076966,0.071205279,0.070347155,0.069502419,0.068670888,0.067852373,0.067046685,0.066253628,0.065473007,0.064704622,0.063948274,0.063203764,0.062470892,0.06174946,0.061039267,0.060340118,0.059651816,0.058974168,0.058306981,0.057650065,0.057003232,0.056366297,0.055739078,0.055121395,0.054513069,0.053913927,0.053323796,0.052742509,0.0521699,0.051605805,0.051050065,0.050502523,0.049963025,0.049431421,0.048907562,0.048391303,0.047882502,0.04738102,0.04688672,0.046399469,0.045919136,0.045445593,0.044978714,0.044518377,0.04406446,0.043616848,0.043175423,0.042740074,0.04231069,0.041887164,0.041469389,0.041057262,0.040650682,0.040249549,0.039853768,0.039463243,0.039077881,0.038697592,0.038322286,0.037951878,0.03758628,0.037225411,0.036869189,0.036517534,0.036170368,0.035827614,0.035489198,0.035155046,0.034825087,0.03449925,0.034177467,0.033859671,0.033545794,0.033235774,0.032929547,0.032627051,0.032328225,0.032033009,0.031741347,0.03145318,0.031168453,0.030887111,0.0306091,0.030334369,0.030062865,0.029792988,0.029522112,0.029254451,0.028989955,0.028728573,0.028470257,0.028214959,0.027962634,0.027713234,0.027466716,0.027223035,0.026982148,0.026744013,0.026508588,0.026275833,0.026045708,0.025818173,0.025593191,0.025370724,0.025150734,0.024933185,0.024718043,0.024505271,0.024294836,0.024086705,0.023880843,0.023677219,0.0234758,0.023276557,0.023079457,0.022884471,0.022691569,0.022500722,0.022311902,0.022125081,0.02194023,0.021757324,0.021576335,0.021397237,0.021220006,0.021044614,0.020871039,0.020699254,0.020529238,0.020360965,0.020194413,0.020029559,0.019866381,0.019704857,0.019544965,0.019386684,0.019229993,0.019074871,0.018921299,0.018769256,0.018618724,0.018469681,0.018322111,0.018175994,0.018031312,0.017888047,0.017746181,0.017605696,0.017466576,0.017328804,0.017192363,0.017057236,0.016923408,0.016790863,0.016659584,0.016529558,0.016400768,0.016273199,0.016146838,0.016021669,0.015897679,0.015774852,0.015653177,0.015532638,0.015413222,0.015294917,0.01517771,0.015061587,0.014946535,0.014832544,0.014719599,0.01460769,0.014496803,0.014386929,0.014278054,0.014170168,0.01406326,0.013957317,0.013852331,0.013748289,0.013645181,0.013542996,0.013441725,0.013341358,0.013241883,0.013143292,0.013045574,0.01294872,0.012852721,0.012757567,0.01266325,0.012569758,0.012477085,0.012385221,0.012294158,0.012203886,0.012114397,0.012025684,0.011937737,0.011850549,0.011764111,0.011678416,0.011593455,0.011509221,0.011425707,0.011342905,0.011260807,0.011179406,0.011098695,0.011018667,0.010939314,0.01086063,0.010782608,0.010705241,0.010628523,0.010552446,0.010477004,0.010402191,0.010328001,0.010254426,0.010181462,0.010109101,0.010037338,0.009966167,0.009895582,0.009825577,0.009756146,0.009687284,0.009618984,0.009551242,0.278018389,0.27774905,0.276944443,0.275614679,0.273776244,0.271451479,0.268667884,0.265457309,0.261855055,0.257898944,0.253628388,0.249083508,0.244304328,0.239330056,0.23419848,0.228945487,0.223604681,0.218207127,0.212781188,0.207352442,0.201943693,0.196575021,0.191263893,0.186025304,0.180871943,0.175821866,0.170952224,0.166273351,0.161775943,0.157451205,0.153290818,0.149286922,0.145432082,0.141719272,0.138141846,0.13469352,0.131368347,0.128160704,0.125065266,0.122076994,0.119191116,0.11640311,0.113708695,0.111653741,0.11028749,0.108949723,0.107639571,0.106349952,0.105069568,0.103799113,0.102539432,0.101291276,0.100055302,0.098832087,0.097622127,0.09642585,0.095243614,0.094075722,0.092922417,0.091783894,0.090660304,0.089551753,0.088458312,0.087380016,0.086316871,0.085268854,0.084235919,0.083217997,0.082215,0.08122682,0.080253338,0.079294418,0.078349913,0.077419667,0.076503513,0.075601279,0.074712785,0.073837846,0.072976271,0.072127868,0.071292442,0.070469793,0.069659723,0.068862032,0.068076518,0.067302982,0.066541223,0.065791042,0.06505224,0.064324622,0.063607991,0.062902156,0.062206925,0.061522109,0.060847522,0.060182979,0.0595283,0.058883307,0.058247822,0.057621673,0.05700469,0.056396705,0.055797555,0.055207076,0.054625112,0.054051506,0.053486104,0.052928759,0.052379321,0.051837648,0.051303597,0.050777031,0.050257813,0.04974581,0.049240893,0.048742932,0.048251803,0.047767384,0.047289554,0.046818196,0.046353194,0.045894436,0.045441812,0.044995213,0.044554533,0.04411967,0.04369052,0.043266986,0.042848969,0.042436375,0.04202911,0.041627083,0.041230204,0.040838386,0.040451543,0.040069592,0.039692449,0.039320035,0.038952271,0.038589079,0.038230383,0.037876111,0.037526189,0.037180546,0.036839112,0.03650182,0.036168602,0.035839393,0.035514129,0.035192747,0.034875186,0.034561384,0.034251283,0.033944825,0.033641953,0.033342612,0.033044609,0.032745885,0.032450679,0.032158938,0.031870607,0.031585633,0.031303965,0.031025553,0.030750346,0.030478296,0.030209355,0.029943476,0.029680614,0.029420723,0.029163759,0.028909679,0.02865844,0.028410001,0.02816432,0.027921357,0.027681073,0.027443429,0.027208387,0.02697591,0.026745961,0.026518504,0.026293504,0.026070926,0.025850736,0.025632901,0.025417388,0.025204164,0.024993199,0.02478446,0.024577917,0.024373541,0.024171301,0.023971169,0.023773116,0.023577114,0.023383136,0.023191155,0.023001144,0.022813076,0.022626927,0.022442671,0.022260283,0.022079738,0.021901013,0.021724085,0.021548929,0.021375523,0.021203845,0.021033872,0.020865583,0.020698956,0.020533971,0.020370606,0.020208842,0.020048658,0.019890034,0.019732951,0.019577391,0.019423333,0.019270761,0.019119655,0.018969997,0.01882177,0.018674957,0.018529541,0.018385504,0.01824283,0.018101502,0.017961506,0.017822824,0.017685441,0.017549342,0.017414512,0.017280935,0.017148598,0.017017485,0.016887582,0.016758876,0.016631352,0.016504997,0.016379798,0.01625574,0.016132812,0.016011,0.015890291,0.015770674,0.015652135,0.015534663,0.015418246,0.015302871,0.015188527,0.015075204,0.014962888,0.01485157,0.014741238,0.014631882,0.01452349,0.014416053,0.014309559,0.014203999,0.014099362,0.013995638,0.013892818,0.013790892,0.013689851,0.013589684,0.013490382,0.013391937,0.013294339,0.013197579,0.013101649,0.013006539,0.012912242,0.012818747,0.012726049,0.012634137,0.012543003,0.012452641,0.012363041,0.012274195,0.012186097,0.012098739,0.012012112,0.011926209,0.011841024,0.011756548,0.011672775,0.011589697,0.011507308,0.0114256,0.011344567,0.011264202,0.011184498,0.011105449,0.011027048,0.010949289,0.010872165,0.010795671,0.010719799,0.306989292,0.306691073,0.305800208,0.304327949,0.302292641,0.299719132,0.296638009,0.293084679,0.289098374,0.284721107,0.279996637,0.274969492,0.269684059,0.264183801,0.258510581,0.252704127,0.246801621,0.240837406,0.234842816,0.228846093,0.22287239,0.21694384,0.211079678,0.205296401,0.199607984,0.194084002,0.18877372,0.18366706,0.17875445,0.174026806,0.169475508,0.165092383,0.160869676,0.156800037,0.152876493,0.149092435,0.145441595,0.14191803,0.138516102,0.135230464,0.132056043,0.128988023,0.126021834,0.123464094,0.12196651,0.120499715,0.119062791,0.117654857,0.116275064,0.114915115,0.113564253,0.11222335,0.110893277,0.109574811,0.108268637,0.106975357,0.105695494,0.104429502,0.103177766,0.101940612,0.10071831,0.099511078,0.098319088,0.097142469,0.095981312,0.094835673,0.093705575,0.092591013,0.091491956,0.090408351,0.089340124,0.088287181,0.087249412,0.086226694,0.08521889,0.084225851,0.083247421,0.082283432,0.081333712,0.080398079,0.079476351,0.078568336,0.077673844,0.076792677,0.07592464,0.075069532,0.074227155,0.073397308,0.07257979,0.071774403,0.070980946,0.070199222,0.069429034,0.068670187,0.067922487,0.067185744,0.066459767,0.06574437,0.065039368,0.064344578,0.063659822,0.062984922,0.062319703,0.061663995,0.061017629,0.060380438,0.059752259,0.059132932,0.0585223,0.057920208,0.057326503,0.056741038,0.056163665,0.055594242,0.055032627,0.054478682,0.053932273,0.053393266,0.052861531,0.05233694,0.05181937,0.051308696,0.0508048,0.050307563,0.04981687,0.049332608,0.048854666,0.048382937,0.047917313,0.047457691,0.047003969,0.046556047,0.046113827,0.045677212,0.04524611,0.044820428,0.044400077,0.043984966,0.043575011,0.043170126,0.042770229,0.042375237,0.041985072,0.041599654,0.041218908,0.040842758,0.04047113,0.040103954,0.039741157,0.039382671,0.039028428,0.038678361,0.038332404,0.037990495,0.037652571,0.037318568,0.036988429,0.036660025,0.036330474,0.036004776,0.035682872,0.035364702,0.035050211,0.034739341,0.034432038,0.034128249,0.033827919,0.033530998,0.033237435,0.032947178,0.032660181,0.032376394,0.03209577,0.031818263,0.031543828,0.031272419,0.031003995,0.03073851,0.030475924,0.030216194,0.029959281,0.029705144,0.029453743,0.029205042,0.028959001,0.028715584,0.028474754,0.028236476,0.028000714,0.027767433,0.027536601,0.027308182,0.027082145,0.026858458,0.026637088,0.026418005,0.026201178,0.025986577,0.025774172,0.025563935,0.025355836,0.025149848,0.024945944,0.024744095,0.024544276,0.024346459,0.02415062,0.023956733,0.023764772,0.023574714,0.023386534,0.023200208,0.023015713,0.022833026,0.022652124,0.022472985,0.022295587,0.022119908,0.021945928,0.021773624,0.021602978,0.021433967,0.021266574,0.021100776,0.020936557,0.020773896,0.020612774,0.020453174,0.020295076,0.020138464,0.019983319,0.019829624,0.019677362,0.019526516,0.01937707,0.019229007,0.019082311,0.018936966,0.018792956,0.018650267,0.018508883,0.018368788,0.018229969,0.01809241,0.017956098,0.017821018,0.017687156,0.017554498,0.017423032,0.017292743,0.017163619,0.017035647,0.016908813,0.016783105,0.016658511,0.016535019,0.016412616,0.01629129,0.016171031,0.016051825,0.015933662,0.015816531,0.01570042,0.015585318,0.015471214,0.015358099,0.01524596,0.015134789,0.015024574,0.014915305,0.014806974,0.014699568,0.01459308,0.014487499,0.014382815,0.014279021,0.014176105,0.014074059,0.013972875,0.013872543,0.013773054,0.0136744,0.013576573,0.013479563,0.013383363,0.013287964,0.013193358,0.013099538,0.013006494,0.01291422,0.012822708,0.01273195,0.012641939,0.012552666,0.012464126,0.01237631,0.012289211,0.012202822,0.012117137,0.012032148 -0.09154924,0.091381813,0.090883738,0.090067369,0.088952418,0.087564748,0.085934887,0.084096403,0.08208431,0.079933609,0.077678056,0.075349213,0.072975777,0.070583185,0.068193439,0.065825126,0.063493569,0.061211074,0.058987235,0.056829256,0.054756455,0.052801542,0.050957181,0.049198359,0.047499604,0.04586199,0.044285969,0.04277134,0.041317382,0.039922962,0.038586636,0.037306721,0.03608137,0.03490862,0.03378644,0.032712766,0.031685529,0.030702679,0.0297622,0.028862126,0.028000549,0.027175624,0.02638558,0.025628713,0.024903398,0.024208081,0.023541282,0.022901596,0.022287683,0.021698276,0.021132172,0.02058823,0.02006537,0.019562571,0.019078866,0.018613337,0.018165121,0.017733398,0.017317392,0.016916371,0.01652964,0.016156544,0.015796461,0.015448803,0.015113013,0.014788563,0.014474954,0.014171713,0.013878389,0.013594558,0.013319815,0.013053777,0.012796081,0.012546381,0.012304348,0.012069671,0.011842053,0.011621213,0.011406881,0.011172695,0.010912859,0.010661122,0.010417164,0.010180679,0.009951375,0.009728974,0.009513213,0.009303838,0.009100609,0.008903295,0.008711679,0.008525549,0.008344706,0.008168959,0.007998124,0.007832026,0.007670499,0.007513382,0.007360522,0.007211771,0.00706699,0.006926043,0.006788801,0.00665514,0.006524941,0.00639809,0.006274478,0.006153999,0.006036553,0.005922042,0.005810374,0.005701458,0.005595209,0.005491543,0.005390381,0.005291646,0.005195265,0.005101165,0.00500928,0.004919542,0.004831888,0.004746257,0.00466259,0.00458083,0.004500922,0.004422812,0.00434645,0.004271786,0.004198773,0.004127365,0.004057517,0.003989185,0.00392233,0.003856909,0.003792886,0.003730221,0.003668879,0.003608825,0.003550025,0.003492445,0.003436054,0.003380821,0.003326717,0.003273712,0.003221779,0.00317089,0.003121018,0.003072139,0.003024228,0.002977261,0.002931214,0.002886065,0.002841793,0.002798375,0.002755792,0.002714023,0.002673049,0.00263285,0.00259341,0.00255471,0.002516732,0.00247946,0.002442878,0.00240697,0.00237172,0.002337114,0.002303136,0.002269773,0.002237011,0.002204836,0.002173236,0.002142198,0.002111709,0.002081757,0.002052331,0.00202342,0.001995011,0.001967096,0.001939661,0.001912699,0.001886198,0.001860149,0.001834543,0.00180937,0.001784621,0.001760287,0.00173636,0.001712832,0.001689694,0.001666939,0.001644558,0.001622544,0.00160089,0.001579589,0.001558633,0.001538016,0.001517731,0.001497771,0.001478131,0.001458803,0.001439782,0.001421062,0.001402638,0.001384502,0.00136665,0.001349077,0.001331777,0.001314746,0.001297977,0.001281466,0.001265208,0.001249199,0.001233434,0.001217908,0.001202618,0.001187558,0.001172724,0.001158113,0.001143721,0.001129543,0.001115575,0.001101814,0.001088256,0.001074898,0.001061736,0.001048766,0.001035985,0.00102339,0.001010978,0.000998745,0.000986688,0.000974804,0.000963091,0.000951545,0.000940163,0.000928943,0.000917882,0.000906977,0.000896225,0.000885625,0.000875173,0.000864867,0.000854704,0.000844682,0.000834799,0.000825053,0.000815441,0.000805961,0.000796611,0.000787388,0.000778291,0.000769318,0.000760467,0.000751735,0.000743121,0.000734623,0.000726238,0.000717966,0.000709805,0.000701752,0.000693806,0.000685965,0.000678228,0.000670593,0.000663059,0.000655623,0.000648285,0.000641042,0.000633894,0.000626839,0.000619875,0.000613001,0.000606216,0.000599518,0.000592906,0.000586379,0.000579936,0.000573574,0.000567294,0.000561093,0.000554971,0.000548926,0.000542958,0.000537065,0.000531245,0.000525499,0.000519824,0.00051422,0.000508686,0.000503221,0.000497823,0.000492493,0.000487228,0.000482028,0.000476891,0.000471818,0.000466807,0.000461857,0.000456968,0.000452137,0.11157166,0.111369513,0.110768154,0.109782499,0.108436345,0.106760914,0.104793044,0.102573242,0.10014374,0.097546745,0.094822954,0.092010409,0.089143692,0.086253451,0.083366193,0.080504314,0.077686276,0.074926916,0.072237802,0.069627631,0.067124518,0.064763771,0.062535337,0.060418421,0.058373813,0.056400407,0.054499053,0.052669792,0.050912008,0.049224569,0.047605938,0.046054274,0.044567513,0.043143434,0.041779717,0.040473987,0.039223848,0.038026915,0.036880833,0.035783297,0.034732063,0.033724958,0.032759884,0.031834829,0.03094786,0.030097133,0.029280885,0.02849744,0.0277452,0.02702265,0.026328349,0.025660932,0.025019105,0.024401639,0.023807374,0.023235208,0.0226841,0.022153063,0.021641163,0.021147515,0.020671284,0.020211676,0.01976794,0.019339365,0.018925278,0.01852504,0.018138046,0.017763723,0.017401525,0.017050937,0.016711469,0.016382656,0.016064055,0.015755247,0.015455833,0.015165434,0.014883689,0.014610254,0.014344804,0.014065292,0.013741983,0.013428657,0.01312492,0.012830397,0.012544733,0.012267588,0.011998638,0.011737573,0.011484099,0.011237934,0.010998809,0.010766467,0.010540662,0.01032116,0.010107736,0.009900175,0.009698273,0.009501831,0.009310662,0.009124585,0.008943426,0.008767021,0.00859521,0.008427841,0.008264767,0.008105848,0.007950948,0.007799939,0.007652696,0.007509099,0.007369034,0.007232389,0.00709906,0.006968942,0.006841939,0.006717955,0.006596899,0.006478683,0.006363223,0.006250437,0.006140246,0.006032576,0.005927352,0.005824505,0.005723966,0.005625669,0.005529553,0.005435554,0.005343615,0.005253678,0.005165688,0.005079592,0.004995338,0.004912877,0.00483216,0.004753142,0.004675777,0.004600021,0.004525832,0.00445317,0.004381995,0.004312268,0.004243953,0.004177014,0.004111416,0.004047125,0.003984109,0.003922336,0.003861775,0.003802396,0.003744171,0.003687071,0.003631069,0.003576139,0.003522256,0.003469393,0.003417528,0.003366637,0.003316696,0.003267684,0.00321958,0.003172362,0.003126009,0.003080503,0.003035824,0.002991954,0.002948873,0.002906566,0.002865013,0.002824199,0.002784108,0.002744722,0.002706029,0.002668011,0.002630654,0.002593945,0.002557869,0.002522414,0.002487564,0.002453309,0.002419636,0.002386531,0.002353984,0.002321983,0.002290517,0.002259574,0.002229144,0.002199216,0.002169781,0.002140828,0.002112348,0.002084331,0.002056768,0.00202965,0.002002968,0.001976714,0.001950879,0.001925454,0.001900433,0.001875807,0.001851569,0.001827711,0.001804226,0.001781106,0.001758345,0.001735937,0.001713874,0.00169215,0.001670758,0.001649693,0.001628948,0.001608518,0.001588397,0.001568578,0.001549057,0.001529828,0.001510886,0.001492226,0.001473842,0.00145573,0.001437884,0.001420301,0.001402975,0.001385902,0.001369077,0.001352496,0.001336155,0.001320049,0.001304175,0.001288529,0.001273106,0.001257903,0.001242916,0.001228141,0.001213575,0.001199213,0.001185054,0.001171093,0.001157327,0.001143752,0.001130366,0.001117166,0.001104148,0.001091309,0.001078646,0.001066157,0.001053839,0.001041688,0.001029702,0.001017879,0.001006216,0.00099471,0.000983359,0.00097216,0.00096111,0.000950209,0.000939452,0.000928838,0.000918365,0.00090803,0.000897831,0.000887766,0.000877833,0.000868031,0.000858356,0.000848807,0.000839382,0.000830079,0.000820896,0.000811832,0.000802884,0.000794052,0.000785332,0.000776723,0.000768225,0.000759834,0.00075155,0.000743371,0.000735295,0.00072732,0.000719446,0.000711671,0.000703993,0.000696411,0.000688923,0.000681529,0.000674226,0.000667014,0.000659891,0.000652855,0.000645906,0.000639043,0.000632263,0.000625566,0.000618951,0.000612417,0.000605962,0.000599585,0.000593285,0.000587062,0.136017376,0.135773098,0.135046411,0.133855356,0.132228711,0.130204221,0.127826414,0.12514423,0.122208679,0.119070719,0.115779465,0.112380811,0.108916464,0.105423371,0.101933484,0.098473789,0.095066538,0.091729607,0.088476941,0.08531903,0.082294904,0.079442098,0.076747875,0.074196481,0.071737961,0.069361983,0.067069967,0.06486232,0.062738634,0.06069784,0.058738355,0.056858199,0.055055098,0.053326566,0.051669972,0.0500826,0.048561692,0.047104486,0.045708241,0.044370266,0.043087929,0.041858676,0.040680034,0.039549624,0.03846516,0.037424451,0.036425405,0.035466024,0.034544406,0.03365874,0.032807306,0.03198847,0.03120068,0.030442466,0.029712433,0.029009258,0.028331688,0.027678538,0.027048681,0.026441052,0.025854642,0.025288494,0.024741702,0.024213406,0.023702792,0.023209088,0.02273156,0.022269515,0.021822293,0.021389268,0.020969845,0.02056346,0.020169577,0.019787687,0.019417304,0.019057967,0.018709238,0.018370699,0.018041954,0.017710651,0.017308329,0.016918307,0.016540106,0.016173268,0.015817357,0.015471957,0.015136673,0.014811125,0.014494951,0.014187808,0.013889364,0.013599306,0.013317332,0.013043153,0.012776495,0.012517093,0.012264696,0.012019061,0.011779957,0.011547161,0.011320462,0.011099655,0.010884545,0.010674944,0.010470671,0.010271555,0.010077428,0.009888131,0.009703511,0.009523421,0.009347718,0.009176267,0.009008936,0.008845599,0.008686136,0.008530428,0.008378364,0.008229835,0.008084736,0.007942967,0.00780443,0.007669032,0.007536683,0.007407296,0.007280786,0.007157072,0.007036076,0.006917722,0.006801938,0.006688652,0.006577796,0.006469305,0.006363114,0.006259162,0.00615739,0.006057738,0.005960153,0.005864579,0.005770965,0.00567926,0.005589414,0.005501381,0.005415113,0.005330568,0.0052477,0.00516647,0.005086835,0.005008757,0.004932197,0.004857119,0.004783486,0.004711264,0.004640418,0.004570916,0.004502726,0.004435817,0.004370159,0.004305722,0.004242479,0.004180402,0.004119463,0.004059637,0.004000899,0.003943224,0.003886587,0.003830966,0.003776339,0.003722682,0.003669975,0.003618196,0.003567326,0.003517344,0.003468232,0.00341997,0.003372541,0.003325926,0.003280108,0.003235071,0.003190798,0.003147273,0.00310448,0.003062405,0.003021031,0.002980346,0.002940334,0.002900983,0.002862278,0.002824207,0.002786756,0.002749914,0.002713669,0.002678007,0.002642919,0.002608392,0.002574416,0.002540979,0.002508072,0.002475683,0.002443804,0.002412424,0.002381534,0.002351124,0.002321185,0.002291709,0.002262686,0.002234108,0.002205968,0.002178255,0.002150964,0.002124086,0.002097612,0.002071537,0.002045853,0.002020552,0.001995628,0.001971073,0.001946882,0.001923047,0.001899563,0.001876423,0.00185362,0.00183115,0.001809006,0.001787182,0.001765674,0.001744474,0.001723579,0.001702982,0.001682679,0.001662664,0.001642933,0.001623481,0.001604303,0.001585395,0.001566751,0.001548368,0.00153024,0.001512365,0.001494737,0.001477352,0.001460207,0.001443298,0.00142662,0.00141017,0.001393944,0.001377938,0.00136215,0.001346575,0.001331209,0.001316051,0.001301095,0.00128634,0.001271781,0.001257416,0.001243242,0.001229255,0.001215453,0.001201833,0.001188392,0.001175127,0.001162035,0.001149114,0.001136361,0.001123773,0.001111349,0.001099085,0.001086979,0.001075028,0.001063231,0.001051584,0.001040087,0.001028735,0.001017528,0.001006463,0.000995538,0.00098475,0.000974098,0.000963581,0.000953194,0.000942938,0.00093281,0.000922807,0.000912929,0.000903174,0.000893538,0.000884022,0.000874623,0.000865339,0.00085617,0.000847112,0.000838165,0.000829327,0.000820596,0.000811971,0.000803451,0.000795033,0.000786717,0.000778501,0.000770384,0.000762364,0.16587652,0.165581039,0.164702046,0.163261401,0.161293971,0.158845473,0.155969819,0.152726234,0.149176422,0.14538199,0.141402284,0.137292729,0.133103666,0.128879668,0.124659267,0.120474992,0.116353655,0.112316794,0.108381209,0.104559559,0.100908505,0.097462841,0.094207059,0.091127005,0.088173629,0.085315409,0.082554565,0.079892063,0.077327838,0.074860995,0.072489976,0.07021271,0.068026735,0.065929304,0.063917465,0.061988139,0.06013817,0.058364379,0.056663593,0.055032679,0.053468565,0.051968256,0.050528848,0.049147535,0.047821616,0.046548498,0.045325699,0.044150845,0.043021671,0.04193602,0.040891837,0.03988717,0.038920162,0.037989051,0.037092164,0.036227914,0.035394796,0.034591382,0.033816318,0.033068322,0.032346176,0.031648726,0.030974878,0.030323595,0.029693891,0.029084833,0.028495534,0.027925154,0.027372893,0.026837993,0.026319733,0.025817428,0.025330428,0.024858114,0.024399896,0.023955215,0.023523537,0.023104354,0.022697184,0.022301565,0.021807584,0.021321975,0.020850939,0.020393918,0.019950377,0.019519809,0.019101727,0.018695669,0.01830119,0.01791787,0.017545303,0.017183103,0.016830901,0.016488343,0.016155091,0.015830822,0.015515225,0.015208003,0.014908872,0.014617559,0.014333802,0.014057351,0.013787965,0.013525413,0.013269473,0.013019931,0.012776585,0.012539237,0.012307697,0.012081785,0.011861326,0.011646151,0.0114361,0.011231016,0.011030749,0.010835155,0.010644096,0.010457436,0.010275048,0.010096807,0.009922592,0.009752288,0.009585783,0.009422969,0.009263743,0.009108004,0.008955655,0.008806602,0.008660755,0.008518026,0.008378331,0.008241589,0.008107719,0.007976646,0.007848296,0.007722597,0.007599479,0.007478877,0.007360725,0.00724496,0.007131521,0.00702035,0.006911389,0.006804582,0.006699877,0.006597221,0.006496563,0.006397856,0.00630105,0.006206101,0.006112963,0.006021594,0.00593195,0.005843991,0.005757678,0.005672972,0.005589835,0.005508231,0.005428125,0.005349482,0.005272269,0.005196454,0.005122004,0.00504889,0.004977081,0.004906548,0.004837264,0.0047692,0.004702329,0.004636627,0.004572066,0.004508624,0.004446275,0.004384997,0.004324766,0.004265561,0.004207359,0.00415014,0.004093883,0.004038568,0.003984176,0.003930687,0.003878084,0.003826347,0.00377546,0.003725404,0.003676165,0.003627724,0.003580066,0.003533176,0.003487038,0.003441638,0.00339696,0.003352991,0.003309718,0.003267126,0.003225202,0.003183934,0.003143309,0.003103315,0.003063939,0.003025171,0.002986998,0.002949409,0.002912394,0.002875942,0.002840043,0.002804685,0.00276986,0.002735557,0.002701767,0.002668481,0.002635689,0.002603383,0.002571554,0.002540193,0.002509292,0.002478842,0.002448837,0.002419267,0.002390125,0.002361405,0.002333097,0.002305196,0.002277694,0.002250584,0.00222386,0.002197515,0.002171542,0.002145935,0.002120688,0.002095795,0.002071249,0.002047046,0.002023179,0.001999642,0.001976431,0.001953539,0.001930962,0.001908694,0.00188673,0.001865065,0.001843695,0.001822614,0.001801818,0.001781303,0.001761063,0.001741094,0.001721392,0.001701953,0.001682773,0.001663847,0.001645171,0.001626742,0.001608556,0.001590608,0.001572895,0.001555414,0.00153816,0.001521131,0.001504323,0.001487732,0.001471355,0.001455189,0.00143923,0.001423476,0.001407923,0.001392569,0.00137741,0.001362443,0.001347665,0.001333075,0.001318668,0.001304442,0.001290395,0.001276524,0.001262825,0.001249298,0.001235938,0.001222744,0.001209714,0.001196844,0.001184133,0.001171579,0.001159178,0.001146929,0.00113483,0.001122878,0.001111071,0.001099408,0.001087886,0.001076503,0.001065258,0.001054148,0.001043171,0.001032326,0.001021611,0.001011023,0.001000562,0.000990225,0.202365035,0.202007214,0.200942801,0.199198345,0.196816178,0.193851788,0.190370576,0.18644435,0.182147875,0.177555745,0.172739772,0.167766966,0.16269815,0.157587143,0.152480429,0.147417233,0.142429862,0.137544257,0.132780639,0.128155592,0.12374928,0.119588646,0.115655259,0.111932388,0.108384855,0.104950116,0.101627664,0.098419279,0.095325444,0.092345591,0.089478304,0.086721502,0.084072584,0.081528567,0.079086185,0.076741979,0.074492374,0.072333731,0.070262402,0.068274759,0.066367231,0.064536321,0.062778629,0.061090856,0.059469822,0.057912463,0.056415841,0.054977142,0.053593674,0.052262869,0.05098228,0.049749574,0.048562535,0.047419052,0.046317122,0.045254843,0.044230406,0.043242096,0.042288286,0.04136743,0.040478063,0.039618793,0.0387883,0.037985332,0.037208699,0.036457271,0.035729978,0.0350258,0.034343771,0.033682972,0.033042528,0.032421609,0.031819426,0.031235227,0.030668296,0.030117954,0.029583551,0.029064471,0.028560125,0.028069952,0.027485962,0.026881192,0.026294391,0.025724876,0.025171994,0.024635123,0.02411367,0.023607065,0.023114767,0.022636258,0.022171042,0.021718646,0.021278616,0.020850519,0.02043394,0.020028482,0.019633762,0.019249418,0.018875098,0.018510467,0.018155204,0.017809001,0.017471561,0.0171426,0.016821844,0.016509032,0.016203912,0.015906242,0.015615788,0.015332326,0.015055642,0.014785528,0.014521785,0.01426422,0.014012648,0.013766892,0.013526779,0.013292145,0.013062829,0.012838678,0.012619543,0.012405282,0.012195757,0.011990833,0.011790382,0.011594281,0.011402408,0.011214649,0.01103089,0.010851025,0.010674947,0.010502555,0.010333753,0.010168444,0.010006537,0.009847945,0.009692579,0.009540359,0.009391202,0.009245031,0.009101771,0.008961348,0.008823691,0.008688732,0.008556403,0.008426641,0.008299382,0.008174565,0.008052132,0.007932025,0.007814189,0.00769857,0.007585115,0.007473774,0.007364496,0.007257234,0.007151942,0.007048574,0.006947086,0.006847435,0.00674958,0.00665348,0.006559095,0.006466389,0.006375322,0.00628586,0.006197966,0.006111607,0.006026749,0.00594336,0.005861408,0.005780862,0.005701693,0.00562387,0.005547366,0.005472153,0.005398203,0.005325491,0.005253991,0.005183678,0.005114527,0.005046514,0.004979618,0.004913814,0.00484908,0.004785396,0.004722741,0.004661093,0.004600433,0.004540741,0.004481999,0.004424187,0.004367288,0.004311284,0.004256158,0.004201892,0.00414847,0.004095877,0.004044095,0.003993111,0.003942909,0.003893474,0.003844792,0.003796849,0.003749631,0.003703125,0.003657318,0.003612196,0.003567748,0.003523961,0.003480824,0.003438323,0.003396449,0.003355189,0.003314534,0.003274471,0.003234991,0.003196083,0.003157737,0.003119944,0.003082693,0.003045975,0.003009782,0.002974104,0.002938931,0.002904257,0.002870071,0.002836365,0.002803132,0.002770364,0.002738052,0.00270619,0.002674768,0.002643781,0.002613221,0.00258308,0.002553353,0.002524031,0.002495109,0.00246658,0.002438437,0.002410675,0.002383286,0.002356266,0.002329608,0.002303306,0.002277354,0.002251748,0.002226481,0.002201548,0.002176944,0.002152664,0.002128702,0.002105054,0.002081715,0.00205868,0.002035944,0.002013503,0.001991351,0.001969485,0.001947901,0.001926593,0.001905559,0.001884792,0.001864291,0.001844049,0.001824065,0.001804333,0.00178485,0.001765612,0.001746616,0.001727858,0.001709335,0.001691042,0.001672977,0.001655136,0.001637517,0.001620115,0.001602928,0.001585952,0.001569184,0.001552622,0.001536263,0.001520103,0.00150414,0.00148837,0.001472792,0.001457402,0.001442198,0.001427176,0.001412336,0.001397673,0.001383186,0.001368871,0.001354728,0.001340752,0.001326943,0.001313297,0.001299812,0.001286486,0.183168223,0.182958083,0.182331153,0.181297753,0.179874591,0.178084057,0.175953325,0.173513319,0.170797612,0.167841337,0.164680154,0.161349332,0.157882972,0.154313376,0.150670588,0.146982069,0.143272526,0.139563836,0.135875083,0.132222655,0.128620399,0.125079809,0.121610242,0.118219128,0.114914817,0.111745811,0.108721483,0.105832802,0.103071441,0.100427469,0.097861147,0.095361482,0.092929684,0.090566388,0.088271744,0.086045491,0.083887022,0.081795445,0.079769637,0.077808286,0.075909935,0.074073014,0.072295869,0.070576787,0.068914016,0.067305788,0.065750328,0.064245866,0.062790653,0.061382965,0.060021108,0.058703427,0.057428308,0.056194181,0.054999523,0.053842859,0.052722761,0.051637853,0.050586805,0.049568337,0.048581218,0.047624263,0.046696332,0.045796333,0.044923214,0.044075968,0.043253628,0.042455267,0.041679996,0.040926962,0.040195349,0.039484372,0.038793282,0.038121359,0.037467913,0.036832285,0.03621384,0.035611971,0.035020925,0.034272022,0.033544435,0.032837403,0.032150198,0.03148212,0.030832501,0.030200698,0.029586095,0.028988103,0.028406154,0.027839706,0.027288236,0.026751244,0.02622825,0.025718791,0.025222424,0.024738723,0.024267279,0.023807698,0.023359602,0.022922627,0.022496422,0.022080652,0.021674992,0.02127913,0.020892767,0.020515612,0.020147388,0.019787826,0.019436668,0.019093665,0.018758575,0.018431169,0.018111222,0.017798518,0.01749285,0.017194017,0.016901826,0.016616089,0.016336625,0.01606326,0.015795826,0.01553416,0.015278103,0.015027504,0.014782216,0.014542096,0.014307007,0.014076815,0.013851391,0.013630611,0.013414353,0.013202501,0.012994942,0.012791565,0.012592265,0.012396938,0.012205485,0.012017808,0.011833814,0.011653412,0.011476513,0.011303033,0.011132888,0.010965997,0.010802282,0.010641668,0.01048408,0.010329447,0.010177699,0.01002877,0.009882593,0.009739105,0.009598243,0.009459948,0.009324161,0.009190826,0.009059886,0.008931288,0.00880498,0.008680912,0.008559032,0.008439294,0.00832165,0.008206055,0.008092465,0.007980835,0.007871124,0.007763292,0.007657297,0.007553101,0.007450667,0.007349957,0.007250935,0.007153566,0.007057816,0.006963652,0.006871041,0.006779952,0.006690353,0.006602214,0.006515507,0.006430202,0.006346271,0.006263687,0.006182424,0.006102455,0.006023754,0.005946299,0.005870063,0.005795023,0.005721157,0.005648442,0.005576855,0.005506375,0.005436982,0.005368655,0.005301373,0.005235118,0.005169869,0.005105608,0.005042318,0.004979979,0.004918575,0.004858088,0.004798502,0.004739801,0.004681968,0.004624987,0.004568844,0.004513523,0.00445901,0.004405291,0.004352351,0.004300176,0.004248754,0.004198071,0.004148114,0.00409887,0.004050328,0.004002474,0.003955299,0.003908788,0.003862932,0.00381772,0.003773139,0.00372918,0.003685833,0.003643086,0.00360093,0.003559355,0.003518352,0.003477911,0.003438022,0.003398677,0.003359866,0.003321581,0.003283814,0.003246556,0.003209799,0.003173534,0.003137754,0.003102451,0.003067618,0.003033246,0.00299933,0.00296586,0.002932831,0.002900235,0.002868066,0.002836318,0.002804982,0.002774054,0.002743526,0.002713393,0.002683648,0.002654286,0.0026253,0.002596686,0.002568437,0.002540547,0.002513012,0.002485826,0.002458983,0.002432479,0.002406309,0.002380467,0.002354949,0.00232975,0.002304865,0.002280289,0.002256018,0.002232048,0.002208374,0.002184992,0.002161897,0.002139086,0.002116554,0.002094297,0.002072312,0.002050594,0.002029139,0.002007945,0.001987006,0.00196632,0.001945883,0.001925691,0.001905742,0.00188603,0.001866554,0.00184731,0.001828295,0.001809505,0.001790937,0.001772589,0.001754457,0.001736538,0.001718829,0.001701328,0.001684032,0.001666938,0.184275294,0.184065173,0.183438314,0.182405083,0.180982251,0.179192293,0.177062472,0.174623798,0.171909921,0.16895603,0.165797821,0.162470572,0.159008366,0.155443466,0.151805853,0.148122912,0.144419258,0.140716674,0.137034142,0.133387952,0.129791856,0.126257262,0.122793446,0.119407769,0.116111737,0.11295579,0.109942871,0.107064093,0.104311259,0.101676801,0.099137176,0.096661189,0.094249738,0.091903738,0.089623602,0.087409315,0.085260501,0.083176479,0.081156324,0.079198906,0.077302936,0.075466994,0.073689567,0.07196907,0.07030387,0.068692302,0.067132689,0.06562335,0.064162615,0.062748832,0.061380373,0.060055644,0.058773084,0.057531173,0.056328431,0.055163423,0.054034759,0.052941094,0.05188113,0.050853612,0.049857333,0.04889113,0.047953884,0.047044519,0.046162001,0.045305336,0.04447357,0.043665788,0.042881111,0.042118696,0.041377733,0.040657448,0.039957097,0.039275965,0.038613369,0.037968653,0.037341187,0.036730367,0.036135615,0.035412192,0.034669535,0.033947638,0.033245771,0.032563235,0.031899362,0.031253506,0.030625053,0.030013409,0.029418007,0.028838302,0.028273771,0.02772391,0.027188238,0.026666289,0.02615762,0.0256618,0.025178419,0.02470708,0.024247403,0.023799021,0.023361582,0.022934748,0.02251819,0.022111595,0.021714661,0.021327095,0.020948617,0.020578956,0.02021785,0.019865049,0.019520309,0.019183397,0.018854087,0.018532161,0.018217408,0.017909627,0.017608619,0.017314197,0.017026178,0.016744385,0.016468646,0.016198798,0.01593468,0.015676138,0.015423024,0.015175192,0.014932503,0.014694822,0.014462018,0.014233964,0.014010538,0.013791621,0.013577098,0.013366858,0.013160792,0.012958796,0.012760768,0.01256661,0.012376226,0.012189525,0.012006416,0.011826812,0.011650629,0.011477784,0.011308198,0.011141794,0.010978497,0.010818233,0.010660933,0.010506527,0.010354948,0.010206131,0.010060014,0.009916534,0.009775633,0.009637252,0.009501335,0.009367827,0.009236674,0.009107825,0.008981229,0.008856837,0.008734601,0.008614474,0.008496411,0.008380368,0.008266302,0.008154171,0.008043933,0.00793555,0.007828982,0.007724192,0.007621143,0.007519798,0.007420124,0.007322085,0.007225649,0.007130783,0.007037455,0.006945635,0.006855293,0.006766398,0.006678923,0.006592839,0.006508119,0.006424737,0.006342666,0.006261882,0.006182358,0.006104071,0.006026997,0.005951114,0.005876398,0.005802828,0.005730381,0.005659037,0.005588776,0.005519577,0.00545142,0.005384286,0.005318157,0.005253013,0.005188838,0.005125613,0.005063322,0.005001946,0.004941471,0.00488188,0.004823157,0.004765287,0.004708254,0.004652044,0.004596643,0.004542036,0.00448821,0.00443515,0.004382844,0.004331279,0.004280442,0.00423032,0.004180901,0.004132174,0.004084127,0.004036747,0.003990025,0.003943949,0.003898507,0.003853691,0.003809488,0.00376589,0.003722886,0.003680466,0.003638621,0.003597341,0.003556617,0.003516441,0.003476803,0.003437695,0.003399108,0.003361034,0.003323465,0.003286392,0.003249809,0.003213706,0.003178077,0.003142914,0.003108209,0.003073957,0.003040149,0.003006779,0.002973839,0.002941324,0.002909227,0.002877541,0.002846261,0.002815379,0.00278489,0.002754789,0.002725068,0.002695723,0.002666747,0.002638136,0.002609883,0.002581984,0.002554434,0.002527226,0.002500356,0.002473819,0.002447611,0.002421725,0.002396159,0.002370906,0.002345963,0.002321324,0.002296987,0.002272945,0.002249196,0.002225734,0.002202556,0.002179658,0.002157035,0.002134684,0.002112601,0.002090782,0.002069224,0.002047922,0.002026874,0.002006075,0.001985523,0.001965213,0.001945143,0.001925308,0.001905707,0.001886335,0.00186719,0.001848268,0.001829567,0.001811083,0.001792814,0.001774756,0.185519012,0.185308522,0.184680585,0.183645643,0.182220587,0.180428046,0.178295455,0.175854003,0.17313751,0.170181317,0.167021244,0.163692662,0.160229711,0.156664675,0.153027528,0.14934562,0.145643508,0.141942901,0.138262699,0.1346191,0.131025767,0.127494017,0.12403304,0.120650122,0.117362558,0.114219576,0.111217972,0.108349004,0.105604604,0.102977323,0.100457414,0.098007099,0.095617747,0.093290574,0.091026274,0.088825098,0.086686916,0.084611278,0.08259747,0.080644558,0.07875143,0.076916834,0.075139406,0.073417698,0.071750203,0.07013537,0.068571625,0.067057383,0.065591058,0.064171076,0.06279588,0.061463939,0.06017375,0.058923846,0.057712793,0.056539199,0.055401714,0.054299026,0.053229869,0.052193016,0.051187288,0.050211542,0.049264682,0.04834565,0.047453427,0.046587037,0.045745539,0.044928029,0.044133639,0.043361537,0.042610922,0.041881026,0.041171112,0.040480473,0.03980843,0.039154331,0.038517552,0.037897493,0.037293578,0.036609093,0.035850721,0.03511332,0.034396162,0.033698548,0.033019807,0.032359295,0.031716393,0.03109051,0.030481075,0.029887541,0.029309384,0.028746097,0.028197198,0.027662218,0.027140711,0.026632246,0.026136409,0.0256528,0.025181037,0.024720751,0.024271587,0.023833204,0.023405271,0.022987472,0.022579502,0.022181067,0.021791882,0.021411675,0.021040183,0.02067715,0.020322332,0.019975492,0.019636402,0.019304842,0.018980599,0.018663468,0.01835325,0.018049754,0.017752794,0.017462192,0.017177775,0.016899375,0.01662683,0.016359985,0.016098688,0.015842793,0.015592158,0.015346645,0.015106123,0.014870462,0.014639538,0.014413231,0.014191423,0.013974001,0.013760856,0.013551881,0.013346972,0.013146031,0.01294896,0.012755664,0.012566053,0.012380037,0.012197531,0.012018452,0.011842717,0.01167025,0.011500972,0.01133481,0.011171691,0.011011546,0.010854307,0.010699906,0.01054828,0.010399366,0.010253104,0.010109434,0.009968298,0.00982964,0.009693407,0.009559544,0.009428001,0.009298727,0.009171673,0.009046792,0.008924036,0.008803362,0.008684724,0.008568081,0.00845339,0.00834061,0.008229703,0.008120629,0.00801335,0.00790783,0.007804033,0.007701925,0.00760147,0.007502636,0.007405391,0.007309702,0.007215539,0.007122872,0.007031672,0.006941909,0.006853555,0.006766584,0.006680969,0.006596683,0.006513702,0.006431999,0.006351552,0.006272335,0.006194327,0.006117504,0.006041844,0.005967326,0.005893928,0.00582163,0.005750411,0.005680252,0.005611134,0.005543037,0.005475943,0.005409834,0.005344693,0.005280501,0.005217243,0.005154901,0.005093459,0.005032902,0.004973213,0.004914379,0.004856383,0.004799211,0.00474285,0.004687285,0.004632502,0.004578488,0.00452523,0.004472715,0.004420931,0.004369865,0.004319505,0.00426984,0.004220857,0.004172545,0.004124894,0.004077892,0.004031529,0.003985794,0.003940677,0.003896168,0.003852257,0.003808934,0.00376619,0.003724015,0.003682401,0.003641338,0.003600818,0.003560832,0.003521372,0.003482428,0.003443994,0.003406062,0.003368622,0.003331668,0.003295193,0.003259188,0.003223646,0.003188561,0.003153925,0.003119732,0.003085974,0.003052646,0.00301974,0.00298725,0.002955171,0.002923495,0.002892217,0.00286133,0.00283083,0.002800709,0.002770964,0.002741587,0.002712574,0.00268392,0.002655618,0.002627665,0.002600054,0.002572781,0.002545841,0.002519229,0.002492941,0.002466971,0.002441316,0.00241597,0.00239093,0.002366191,0.002341748,0.002317598,0.002293737,0.002270159,0.002246863,0.002223842,0.002201094,0.002178615,0.002156401,0.002134449,0.002112754,0.002091313,0.002070123,0.002049181,0.002028482,0.002008024,0.001987803,0.001967817,0.001948061,0.001928533,0.00190923,0.001890149,0.186915787,0.186704486,0.186074156,0.185035353,0.183605154,0.18180642,0.179666858,0.177217939,0.174493763,0.171529931,0.16836249,0.165026997,0.161557733,0.157987077,0.154345054,0.150659026,0.146953529,0.143250225,0.139567945,0.135922809,0.132328388,0.12879591,0.125334474,0.121951276,0.118672395,0.115540872,0.1125492,0.109688769,0.106951632,0.104330448,0.101818425,0.099395345,0.097030348,0.094723999,0.092477298,0.09029078,0.088164581,0.086098499,0.084092047,0.082144504,0.08025495,0.078422312,0.076645388,0.074922879,0.073253413,0.071635562,0.070067864,0.068548836,0.067076985,0.06565082,0.06426886,0.062929643,0.061631728,0.060373703,0.059154188,0.057971834,0.056825333,0.055713412,0.054634836,0.053588412,0.052572984,0.051587439,0.050630698,0.049701726,0.048799523,0.047923126,0.047071611,0.046244085,0.045439694,0.044657615,0.043897056,0.043157257,0.04243749,0.041737054,0.041055274,0.040391506,0.039745128,0.039115545,0.038502184,0.037865935,0.037091185,0.036337627,0.035604531,0.034891198,0.034196958,0.033521164,0.032863198,0.032222466,0.031598396,0.03099044,0.03039807,0.029820779,0.029258081,0.028709507,0.028174607,0.027652947,0.027144112,0.026647699,0.026163323,0.025690612,0.025229209,0.02477877,0.024338962,0.023909466,0.023489974,0.023080188,0.022679823,0.022288603,0.021906262,0.021532542,0.021167196,0.020809985,0.020460678,0.020119052,0.019784892,0.01945799,0.019138146,0.018825165,0.01851886,0.01821905,0.017925559,0.017638217,0.017356862,0.017081334,0.01681148,0.016547151,0.016288203,0.016034498,0.015785901,0.015542281,0.015303511,0.015069469,0.014840036,0.014615098,0.014394542,0.014178261,0.013966149,0.013758105,0.01355403,0.013353829,0.013157407,0.012964676,0.012775547,0.012589935,0.012407759,0.012228937,0.012053392,0.011881047,0.011711831,0.01154567,0.011382496,0.011222241,0.011064839,0.010910226,0.010758341,0.010609123,0.010462513,0.010318453,0.010176889,0.010037766,0.009901031,0.009766634,0.009634523,0.00950465,0.009376969,0.009251432,0.009127994,0.009006613,0.008887245,0.008769848,0.008654382,0.008540807,0.008429085,0.008319178,0.008211049,0.008104664,0.007999985,0.007896981,0.007795617,0.007695861,0.007597681,0.007501047,0.007405929,0.007312296,0.007220121,0.007129375,0.00704003,0.006952061,0.00686544,0.006780143,0.006696145,0.00661342,0.006531946,0.006451699,0.006372656,0.006294795,0.006218094,0.006142533,0.006068089,0.005994744,0.005922477,0.005851268,0.005781099,0.005711951,0.005643806,0.005576646,0.005510453,0.005445211,0.005380903,0.005317513,0.005255024,0.005193422,0.005132689,0.005072813,0.005013778,0.004955569,0.004898173,0.004841575,0.004785763,0.004730723,0.004676441,0.004622906,0.004570105,0.004518026,0.004466657,0.004415985,0.004366,0.00431669,0.004268045,0.004220053,0.004172704,0.004125988,0.004079893,0.004034411,0.003989532,0.003945245,0.003901542,0.003858413,0.003815849,0.003773841,0.003732381,0.00369146,0.003651069,0.003611201,0.003571846,0.003532998,0.003494649,0.00345679,0.003419414,0.003382514,0.003346083,0.003310113,0.003274598,0.003239531,0.003204904,0.003170712,0.003136947,0.003103605,0.003070677,0.003038158,0.003006042,0.002974324,0.002942996,0.002912055,0.002881493,0.002851305,0.002821486,0.002792031,0.002762934,0.00273419,0.002705794,0.002677741,0.002650027,0.002622646,0.002595593,0.002568864,0.002542455,0.002516361,0.002490577,0.002465099,0.002439923,0.002415044,0.002390459,0.002366163,0.002342153,0.002318424,0.002294973,0.002271795,0.002248888,0.002226247,0.002203868,0.002181749,0.002159885,0.002138273,0.00211691,0.002095792,0.002074916,0.002054279,0.002033878,0.002013709,0.188484731,0.188272108,0.187637867,0.186592728,0.185154024,0.183344946,0.181193582,0.17873181,0.175994137,0.173016548,0.169835435,0.166486652,0.163004714,0.159422179,0.155769189,0.152073171,0.148358681,0.144647362,0.140957996,0.13730663,0.13370675,0.130169488,0.126703845,0.123316917,0.120047334,0.116925425,0.113941985,0.111088524,0.108357204,0.105740782,0.103232555,0.100825662,0.098487747,0.096204655,0.09397771,0.091807755,0.089695212,0.087640148,0.085642324,0.083701245,0.081816205,0.079986321,0.078210569,0.076487811,0.074816822,0.073196308,0.071624931,0.070101315,0.068624071,0.067191796,0.065803094,0.064456576,0.063150869,0.061884622,0.06065651,0.059465234,0.058309531,0.057188168,0.056099947,0.055043708,0.054018325,0.053022711,0.052055812,0.051116613,0.050204135,0.049317432,0.048455594,0.047617745,0.046803041,0.046010671,0.045239854,0.044489838,0.043759902,0.043049353,0.042357523,0.041683772,0.041027484,0.040388066,0.039764951,0.039157593,0.038395884,0.037625455,0.036875716,0.036145969,0.03543554,0.034743785,0.034070083,0.033413839,0.032774479,0.032151453,0.031544232,0.030952306,0.030375188,0.029812406,0.029263506,0.028728054,0.02820563,0.027695831,0.027198268,0.026712566,0.026238365,0.025775318,0.025323091,0.02488136,0.024449816,0.024028157,0.023616097,0.023213354,0.022819662,0.02243476,0.022058397,0.021690332,0.021330332,0.02097817,0.02063363,0.020296501,0.019966579,0.019643668,0.019327577,0.019018125,0.018715131,0.018418426,0.018127842,0.017843218,0.0175644,0.017291235,0.017023579,0.01676129,0.016504231,0.016252269,0.016005276,0.015763128,0.015525703,0.015292885,0.01506456,0.014840618,0.014620953,0.01440546,0.01419404,0.013986595,0.01378303,0.013583253,0.013387176,0.013194711,0.013005774,0.012820284,0.012638161,0.012459328,0.01228371,0.012111234,0.011941829,0.011775427,0.01161196,0.011451362,0.011293572,0.011138526,0.010986165,0.010836431,0.010689266,0.010544616,0.010402426,0.010262643,0.010125218,0.009990099,0.009857239,0.00972659,0.009598106,0.009471742,0.009347455,0.009225202,0.009104941,0.008986632,0.008870236,0.008755713,0.008643027,0.00853214,0.008423017,0.008315623,0.008209924,0.008105886,0.008003478,0.007902667,0.007803423,0.007705716,0.007609515,0.007514792,0.00742152,0.00732967,0.007239216,0.007150132,0.007062391,0.00697597,0.006890843,0.006806986,0.006724377,0.006642992,0.006562809,0.006483806,0.006405962,0.006329256,0.006253667,0.006179176,0.006105763,0.006033409,0.005962095,0.005891802,0.005822513,0.005754211,0.005686878,0.005620497,0.005555052,0.005490527,0.005426906,0.005364173,0.005302314,0.005241313,0.005181156,0.005121829,0.005063319,0.00500561,0.00494869,0.004892547,0.004837166,0.004782535,0.004728643,0.004675477,0.004623025,0.004571275,0.004520216,0.004469838,0.004420128,0.004371077,0.004322674,0.004274908,0.004227769,0.004181248,0.004135334,0.004090019,0.004045292,0.004001145,0.003957568,0.003914553,0.00387209,0.003830172,0.003788791,0.003747936,0.003707602,0.00366778,0.003628461,0.003589639,0.003551306,0.003513454,0.003476077,0.003439166,0.003402716,0.00336672,0.00333117,0.00329606,0.003261383,0.003227134,0.003193306,0.003159893,0.003126888,0.003094286,0.003062081,0.003030267,0.002998838,0.00296779,0.002937116,0.002906812,0.002876871,0.002847289,0.002818061,0.002789181,0.002760646,0.002732449,0.002704586,0.002677053,0.002649844,0.002622956,0.002596384,0.002570124,0.002544171,0.00251852,0.002493169,0.002468112,0.002443346,0.002418867,0.002394671,0.002370754,0.002347112,0.002323741,0.002300638,0.0022778,0.002255222,0.002232902,0.002210835,0.002189019,0.00216745,0.002146125,0.190247816,0.190033279,0.18939337,0.188339026,0.186887923,0.185063695,0.182894944,0.180414099,0.177656221,0.174657827,0.171455793,0.168086391,0.164584485,0.160982901,0.157311978,0.153599266,0.149869386,0.146143992,0.142441836,0.138778903,0.135168594,0.131621941,0.128147833,0.12475492,0.12149392,0.118379288,0.115401928,0.112553448,0.109826108,0.107212748,0.104706744,0.102301957,0.099988156,0.097731312,0.095526797,0.093375783,0.091279004,0.089236817,0.08724925,0.085316059,0.083436766,0.081610698,0.079837026,0.078114787,0.076442916,0.074820269,0.073245637,0.071717769,0.070235383,0.068797178,0.067401848,0.066048085,0.06473459,0.063460079,0.062223287,0.061022971,0.059857916,0.058726933,0.057628865,0.056562588,0.055527008,0.054521066,0.053543736,0.052594027,0.051670979,0.050773666,0.049901197,0.049052709,0.048227372,0.047424387,0.046642985,0.045882423,0.045141988,0.044420996,0.043718784,0.04303472,0.042368191,0.041718611,0.041085415,0.04046806,0.039769929,0.038981866,0.038214728,0.037467818,0.036740462,0.036032014,0.035341853,0.034669382,0.034014026,0.033375234,0.032752473,0.032145234,0.031553024,0.03097537,0.030411818,0.029861928,0.029325279,0.028801464,0.028290093,0.027790787,0.027303185,0.026826934,0.026361699,0.025907154,0.025462985,0.025028889,0.024604575,0.02418976,0.023784174,0.023387554,0.022999646,0.022620206,0.022248998,0.021885793,0.021530371,0.02118252,0.020842032,0.020508709,0.020182358,0.019862794,0.019549835,0.019243308,0.018943044,0.01864888,0.018360658,0.018078224,0.01780143,0.017530134,0.017264195,0.017003479,0.016747856,0.016497199,0.016251384,0.016010294,0.015773812,0.015541827,0.01531423,0.015090916,0.014871782,0.014656729,0.01444566,0.014238482,0.014035105,0.013835439,0.013639399,0.013446902,0.013257866,0.013072214,0.012889867,0.012710753,0.012534798,0.012361933,0.012192088,0.012025198,0.011861197,0.011700023,0.011541613,0.011385909,0.011232853,0.011082387,0.010934457,0.010789008,0.010645989,0.010505349,0.010367038,0.010231008,0.010097211,0.009965602,0.009836136,0.00970877,0.00958346,0.009460165,0.009338845,0.00921946,0.009101972,0.008986343,0.008872537,0.008760518,0.00865025,0.0085417,0.008434834,0.008329621,0.008226027,0.008124023,0.008023578,0.007924663,0.007827248,0.007731306,0.007636808,0.007543728,0.00745204,0.007361718,0.007272737,0.007185071,0.007098698,0.007013594,0.006929735,0.0068471,0.006765666,0.006685412,0.006606316,0.006528359,0.00645152,0.006375779,0.006301117,0.006227516,0.006154956,0.00608342,0.00601289,0.005943349,0.00587478,0.005807166,0.005740491,0.005674739,0.005609894,0.005545941,0.005482866,0.005420653,0.005359288,0.005298758,0.005239047,0.005180144,0.005122033,0.005064704,0.005008142,0.004952336,0.004897273,0.00484294,0.004789328,0.004736423,0.004684214,0.004632691,0.004581843,0.004531658,0.004482127,0.004433239,0.004384984,0.004337353,0.004290335,0.004243921,0.004198101,0.004152867,0.004108209,0.00406412,0.004020589,0.003977608,0.00393517,0.003893266,0.003851887,0.003811027,0.003770677,0.003730829,0.003691477,0.003652612,0.003614228,0.003576317,0.003538872,0.003501888,0.003465356,0.00342927,0.003393624,0.003358412,0.003323627,0.003289262,0.003255313,0.003221772,0.003188635,0.003155895,0.003123547,0.003091585,0.003060003,0.003028797,0.002997961,0.002967489,0.002937378,0.002907621,0.002878214,0.002849151,0.002820429,0.002792042,0.002763987,0.002736257,0.002708849,0.002681759,0.002654981,0.002628513,0.002602349,0.002576485,0.002550918,0.002525643,0.002500657,0.002475956,0.002451535,0.002427392,0.002403522,0.002379921,0.002356587,0.002333516,0.002310704,0.002288147,0.192230445,0.192013302,0.191365673,0.190298776,0.188830731,0.186985755,0.184793119,0.182285973,0.179500111,0.176472749,0.173241412,0.169842935,0.166312656,0.162683781,0.158986926,0.155249838,0.151497248,0.147750857,0.144029405,0.140348825,0.136722431,0.133161147,0.129673741,0.126275077,0.123020215,0.119910592,0.116937208,0.114091763,0.111366593,0.108754616,0.106249272,0.103844485,0.101534615,0.099305395,0.097126527,0.094997327,0.092918865,0.090891813,0.088916493,0.086992933,0.085120903,0.083299965,0.081529499,0.079808737,0.078136792,0.07651268,0.07493534,0.073403655,0.071916464,0.070472578,0.069070787,0.067709876,0.066388627,0.065105831,0.063860288,0.062650816,0.061476254,0.060335463,0.05922733,0.05815077,0.057104725,0.056088168,0.055100103,0.054139564,0.053205615,0.052297351,0.051413899,0.050554413,0.04971808,0.048904111,0.048111751,0.047340268,0.046588958,0.045857145,0.045144174,0.044449419,0.043772273,0.043112155,0.042468505,0.041840783,0.041220376,0.040413823,0.039628441,0.038863531,0.03811842,0.037392461,0.036685032,0.035995535,0.035323394,0.034668056,0.034028986,0.033405672,0.032797621,0.032204356,0.03162542,0.031060371,0.030508786,0.029970255,0.029444383,0.028930791,0.028429112,0.027938994,0.027460096,0.02699209,0.026534658,0.026087495,0.025650307,0.025222809,0.024804725,0.024395791,0.023995751,0.023604357,0.023221369,0.022846557,0.022479698,0.022120575,0.02176898,0.021424711,0.021087573,0.020757377,0.020433941,0.020117086,0.019806643,0.019502445,0.019204332,0.018912148,0.018625743,0.018344972,0.018069692,0.017799766,0.017535062,0.017275452,0.017020809,0.016771014,0.016525948,0.016285497,0.016049552,0.015818004,0.015590749,0.015367687,0.015148718,0.014933748,0.014722683,0.014515435,0.014311914,0.014112037,0.01391572,0.013722884,0.01353345,0.013347342,0.013164486,0.01298481,0.012808246,0.012634723,0.012464177,0.012296543,0.012131758,0.011969762,0.011810494,0.011653896,0.011499914,0.01134849,0.011199573,0.01105311,0.01090905,0.010767344,0.010627943,0.0104908,0.01035587,0.010223108,0.01009247,0.009963914,0.009837397,0.009712881,0.009590324,0.00946969,0.009350939,0.009234036,0.009118944,0.009005629,0.008894057,0.008784193,0.008676006,0.008569464,0.008464535,0.00836119,0.008259398,0.008159131,0.00806036,0.007963058,0.007867198,0.007772753,0.007679697,0.007588006,0.007497654,0.007408617,0.007320871,0.007234394,0.007149163,0.007065156,0.006982351,0.006900727,0.006820263,0.00674094,0.006662736,0.006585633,0.006509612,0.006434654,0.00636074,0.006287854,0.006215977,0.006145093,0.006075184,0.006006235,0.005938229,0.00587115,0.005804983,0.005739713,0.005675325,0.005611805,0.005549138,0.00548731,0.005426308,0.005366118,0.005306727,0.005248122,0.005190291,0.005133222,0.005076901,0.005021317,0.004966459,0.004912315,0.004858874,0.004806124,0.004754055,0.004702657,0.004651918,0.004601829,0.00455238,0.004503561,0.004455361,0.004407772,0.004360785,0.00431439,0.004268578,0.00422334,0.004178668,0.004134554,0.004090988,0.004047963,0.004005471,0.003963503,0.003922053,0.003881112,0.003840672,0.003800728,0.003761271,0.003722294,0.00368379,0.003645753,0.003608175,0.003571051,0.003534373,0.003498135,0.003462331,0.003426955,0.003392,0.003357461,0.003323332,0.003289607,0.00325628,0.003223346,0.0031908,0.003158635,0.003126846,0.003095429,0.003064379,0.003033689,0.003003356,0.002973374,0.002943739,0.002914445,0.002885489,0.002856865,0.002828569,0.002800597,0.002772944,0.002745606,0.002718579,0.002691859,0.002665441,0.002639322,0.002613497,0.002587963,0.002562716,0.002537751,0.002513067,0.002488657,0.00246452,0.002440652,0.194462288,0.194241725,0.193583959,0.192500569,0.191010247,0.18913795,0.186913811,0.184371907,0.18154897,0.178483126,0.175212732,0.171775363,0.168206979,0.164541283,0.160809276,0.15703897,0.153255265,0.149479941,0.145731751,0.142026579,0.138377652,0.134795772,0.131289569,0.127887062,0.124636199,0.121529593,0.118558329,0.115714183,0.112989563,0.11037745,0.107871345,0.105465223,0.103153495,0.100930967,0.09878079,0.096676852,0.094619778,0.092610582,0.090649908,0.088738081,0.08687515,0.085060929,0.083295033,0.08157691,0.079905868,0.078281103,0.076701719,0.075166746,0.073675159,0.072225891,0.070817844,0.069449903,0.068120943,0.066829834,0.065575454,0.064356687,0.063172432,0.062021604,0.060903141,0.059816001,0.058759167,0.057731649,0.056732481,0.055760726,0.054815475,0.053895848,0.053000989,0.052130074,0.051282305,0.05045691,0.049653144,0.048870289,0.048107652,0.047364565,0.046640382,0.045934484,0.045246271,0.044575167,0.043920616,0.043282084,0.042659056,0.041930365,0.041125763,0.040341889,0.039578069,0.038833657,0.038108031,0.03740059,0.036710757,0.036037977,0.035381715,0.034741455,0.034116702,0.033506978,0.032911821,0.032330789,0.031763454,0.031209403,0.03066824,0.030139581,0.029623058,0.029118314,0.028625005,0.0281428,0.02767138,0.027210434,0.026759666,0.026318788,0.025887521,0.025465597,0.025052757,0.024648751,0.024253335,0.023866277,0.02348735,0.023116335,0.02275302,0.022397201,0.02204868,0.021707264,0.021372769,0.021045016,0.020723829,0.020409041,0.020100489,0.019798014,0.019501464,0.01921069,0.018925549,0.018645901,0.01837161,0.018102547,0.017838584,0.017579596,0.017325466,0.017076076,0.016831314,0.016591071,0.01635524,0.016123718,0.015896405,0.015673204,0.01545402,0.01523876,0.015027337,0.014819663,0.014615654,0.014415227,0.014218303,0.014024804,0.013834655,0.013647783,0.013464115,0.013283583,0.013106119,0.012931656,0.012760131,0.012591481,0.012425646,0.012262566,0.012102183,0.011944442,0.011789287,0.011636666,0.011486525,0.011338815,0.011193485,0.011050489,0.010909778,0.010771307,0.010635032,0.010500908,0.010368893,0.010238945,0.010111025,0.009985092,0.009861107,0.009739035,0.009618836,0.009500476,0.00938392,0.009269132,0.009156081,0.009044733,0.008935055,0.008827018,0.00872059,0.008615742,0.008512445,0.008410669,0.008310389,0.008211575,0.008114202,0.008018243,0.007923674,0.007830468,0.007738603,0.007648054,0.007558798,0.007470812,0.007384074,0.007298562,0.007214255,0.007131131,0.007049171,0.006968354,0.006888661,0.006810072,0.006732569,0.006656134,0.006580748,0.006506393,0.006433053,0.006360711,0.006289349,0.006218952,0.006149504,0.006080988,0.006013391,0.005946696,0.00588089,0.005815957,0.005751883,0.005688655,0.00562626,0.005564683,0.005503912,0.005443934,0.005384736,0.005326306,0.005268633,0.005211703,0.005155506,0.00510003,0.005045265,0.004991198,0.004937819,0.004885117,0.004833083,0.004781706,0.004730976,0.004680883,0.004631418,0.004582571,0.004534332,0.004486693,0.004439645,0.004393179,0.004347286,0.004301958,0.004257186,0.004212963,0.00416928,0.004126129,0.004083502,0.004041393,0.003999793,0.003958695,0.003918092,0.003877976,0.003838342,0.003799181,0.003760487,0.003722254,0.003684475,0.003647143,0.003610252,0.003573797,0.00353777,0.003502166,0.00346698,0.003432204,0.003397835,0.003363865,0.003330289,0.003297103,0.0032643,0.003231875,0.003199824,0.003168141,0.003136822,0.00310586,0.003075252,0.003044993,0.003015077,0.002985501,0.00295626,0.002927349,0.002898765,0.002870501,0.002842556,0.002814923,0.0027876,0.002760582,0.002733864,0.002707444,0.002681317,0.00265548,0.002629928,0.002604658,0.196978216,0.196753265,0.196082492,0.194977933,0.193459006,0.191551607,0.189286961,0.186700321,0.183829613,0.180714113,0.177393241,0.17390551,0.170287677,0.166574091,0.162796242,0.158982499,0.155157986,0.151344604,0.147561135,0.14382342,0.140144589,0.136535311,0.13300437,0.129601494,0.126351706,0.123245398,0.120273723,0.117428519,0.11470225,0.112087948,0.109579161,0.107169908,0.104854638,0.102628194,0.100485776,0.098410843,0.096379077,0.094391244,0.09244834,0.090551016,0.088699627,0.086894268,0.085134814,0.083420952,0.08175221,0.080127984,0.078547559,0.077010134,0.075514835,0.074060733,0.072646855,0.071272199,0.069935742,0.06863645,0.067373281,0.066145197,0.064951165,0.063790162,0.062661181,0.061563231,0.06049534,0.059456557,0.058445955,0.057462629,0.056505699,0.055574311,0.054667633,0.053784863,0.052925221,0.052087952,0.051272326,0.05047764,0.049703211,0.048948382,0.048212517,0.047495004,0.046795252,0.046112691,0.04544677,0.04479696,0.044162749,0.043539082,0.042714214,0.041910338,0.041126784,0.040362904,0.039618075,0.038891697,0.038183192,0.037492001,0.03681759,0.036159439,0.035517051,0.034889946,0.03427766,0.033679747,0.033095776,0.032525333,0.031968018,0.031423443,0.030891237,0.030371041,0.029862507,0.0293653,0.028879098,0.028403589,0.02793847,0.027483452,0.027038253,0.026602601,0.026176233,0.025758896,0.025350345,0.024950343,0.024558659,0.024175072,0.023799368,0.023431339,0.023070783,0.022717506,0.022371319,0.022032041,0.021699495,0.021373509,0.021053918,0.020740561,0.020433282,0.02013193,0.019836359,0.019546428,0.019261998,0.018982936,0.018709113,0.018440403,0.018176683,0.017917836,0.017663747,0.017414304,0.017169399,0.016928926,0.016692783,0.016460872,0.016233094,0.016009358,0.01578957,0.015573644,0.015361492,0.01515303,0.014948178,0.014746855,0.014548985,0.014354493,0.014163305,0.01397535,0.01379056,0.013608866,0.013430203,0.013254507,0.013081717,0.01291177,0.012744608,0.012580174,0.012418411,0.012259264,0.012102681,0.01194861,0.011796999,0.011647799,0.011500962,0.011356441,0.01121419,0.011074164,0.010936321,0.010800616,0.010667009,0.010535458,0.010405925,0.010278371,0.010152757,0.010029047,0.009907205,0.009787195,0.009668984,0.009552538,0.009437823,0.009324808,0.009213462,0.009103753,0.008995652,0.00888913,0.008784158,0.008680708,0.008578752,0.008478264,0.008379218,0.008281588,0.008185349,0.008090477,0.007996947,0.007904736,0.007813821,0.00772418,0.00763579,0.00754863,0.00746268,0.007377918,0.007294324,0.007211878,0.007130561,0.007050354,0.006971239,0.006893197,0.00681621,0.006740261,0.006665332,0.006591408,0.006518471,0.006446505,0.006375495,0.006305425,0.00623628,0.006168045,0.006100705,0.006034246,0.005968654,0.005903916,0.005840017,0.005776944,0.005714686,0.005653228,0.005592558,0.005532664,0.005473534,0.005415157,0.00535752,0.005300612,0.005244423,0.00518894,0.005134154,0.005080053,0.005026629,0.004973869,0.004921765,0.004870306,0.004819483,0.004769286,0.004719707,0.004670735,0.004622362,0.00457458,0.00452738,0.004480752,0.004434689,0.004389183,0.004344225,0.004299808,0.004255924,0.004212564,0.004169723,0.004127391,0.004085563,0.004044231,0.004003387,0.003963026,0.003923139,0.003883721,0.003844766,0.003806265,0.003768214,0.003730606,0.003693435,0.003656694,0.003620379,0.003584483,0.003548999,0.003513924,0.003479251,0.003444974,0.003411089,0.00337759,0.003344472,0.003311729,0.003279357,0.003247351,0.003215706,0.003184416,0.003153479,0.003122887,0.003092638,0.003062727,0.003033149,0.003003899,0.002974975,0.00294637,0.002918082,0.002890105,0.002862437,0.002835073,0.002808009,0.002781241,0.199819675,0.199589174,0.19890195,0.197770616,0.196215505,0.194263701,0.191947805,0.189304553,0.186373371,0.183194984,0.179810148,0.176258557,0.172577968,0.16880354,0.164967389,0.16109833,0.15722178,0.153359797,0.149531209,0.145751816,0.142034638,0.138390184,0.134835025,0.13142994,0.128177393,0.125067823,0.122092427,0.119243085,0.116512298,0.113893131,0.111379164,0.108964446,0.106643452,0.104411048,0.102262458,0.100193234,0.098190342,0.096228392,0.094307323,0.092428147,0.090591553,0.088797948,0.087047496,0.085340151,0.083675684,0.082053716,0.08047374,0.078935141,0.077437216,0.075979192,0.074560238,0.073179481,0.071836015,0.07052891,0.069257221,0.068019996,0.066816279,0.065645121,0.064505576,0.06339671,0.062317603,0.061267352,0.06024507,0.059249891,0.058280969,0.057337479,0.056418618,0.055523607,0.054651687,0.053802125,0.052974208,0.052167246,0.051380572,0.050613541,0.049865528,0.049135931,0.048424166,0.04772967,0.047051902,0.046390335,0.045744465,0.045113803,0.044401503,0.043576531,0.042772157,0.041987732,0.041222635,0.040476264,0.039748041,0.039037406,0.038343822,0.03766677,0.037005748,0.036360275,0.035729884,0.035114127,0.03451257,0.033924796,0.0333504,0.032788995,0.032240203,0.031703663,0.031179024,0.030665948,0.030164109,0.029673191,0.029192889,0.028722909,0.028262966,0.027812786,0.027372102,0.026940657,0.026518203,0.026104498,0.025699311,0.025302417,0.024913596,0.024532639,0.024159342,0.023793506,0.02343494,0.02308346,0.022738884,0.022401039,0.022069758,0.021744875,0.021426232,0.021113677,0.020807059,0.020506235,0.020211064,0.01992141,0.019637141,0.019358129,0.01908425,0.018815383,0.01855141,0.018292219,0.018037697,0.017787738,0.017542238,0.017301095,0.017064209,0.016831487,0.016602833,0.016378158,0.016157374,0.015940394,0.015727136,0.015517518,0.015311461,0.015108888,0.014909725,0.014713899,0.014521339,0.014331976,0.014145742,0.013962572,0.013782403,0.013605171,0.013430818,0.013259282,0.013090508,0.012924438,0.012761019,0.012600196,0.012441919,0.012286135,0.012132796,0.011981853,0.011833259,0.011686969,0.011542937,0.01140112,0.011261475,0.01112396,0.010988534,0.010855158,0.010723793,0.010594401,0.010466945,0.010341388,0.010217696,0.010095834,0.009975767,0.009857464,0.009740891,0.009626018,0.009512813,0.009401246,0.009291288,0.009182909,0.009076083,0.008970781,0.008866975,0.008764641,0.008663752,0.008564282,0.008466207,0.008369503,0.008274147,0.008180114,0.008087382,0.00799593,0.007905734,0.007816775,0.007729031,0.007642481,0.007557106,0.007472886,0.007389802,0.007307835,0.007226967,0.007147179,0.007068454,0.006990775,0.006914124,0.006838484,0.006763841,0.006690177,0.006617476,0.006545724,0.006474905,0.006405005,0.006336009,0.006267902,0.006200671,0.006134302,0.006068782,0.006004097,0.005940235,0.005877182,0.005814927,0.005753456,0.005692759,0.005632823,0.005573637,0.00551519,0.005457469,0.005400465,0.005344167,0.005288563,0.005233644,0.0051794,0.005125821,0.005072896,0.005020616,0.004968971,0.004917953,0.004867553,0.00481776,0.004768567,0.004719965,0.004671945,0.004624499,0.004577618,0.004531295,0.004485522,0.004440291,0.004395594,0.004351423,0.004307772,0.004264633,0.004221998,0.004179861,0.004138215,0.004097054,0.004056369,0.004016155,0.003976405,0.003937114,0.003898274,0.003859879,0.003821924,0.003784402,0.003747308,0.003710635,0.003674379,0.003638533,0.003603092,0.003568051,0.003533404,0.003499146,0.003465271,0.003431776,0.003398655,0.003365902,0.003333513,0.003301484,0.003269809,0.003238485,0.003207505,0.003176867,0.003146565,0.003116595,0.003086954,0.003057635,0.003028637,0.002999954,0.002971582,0.16203131,0.161903083,0.161520056,0.160887139,0.160012325,0.15890642,0.15758269,0.156056446,0.154344594,0.152465165,0.150436861,0.148278627,0.146009262,0.143647086,0.141209664,0.138713589,0.136174324,0.133606096,0.131021835,0.128433161,0.125850397,0.12328261,0.120737671,0.118222333,0.115742312,0.113302377,0.110906435,0.10857318,0.106328205,0.104167258,0.10208588,0.100079912,0.098145475,0.096278945,0.09447693,0.092736257,0.091053954,0.089427231,0.087853471,0.086330213,0.084855146,0.08342609,0.082038629,0.080676606,0.079337916,0.078023132,0.076732682,0.075466871,0.074225887,0.073009822,0.071818678,0.070652378,0.06951078,0.068393681,0.067300828,0.066231927,0.065186644,0.064164616,0.063165454,0.062188748,0.061234071,0.060300985,0.05938904,0.05849778,0.057626744,0.056775471,0.055943498,0.055130363,0.054335609,0.05355878,0.052799429,0.052057113,0.051331395,0.050621846,0.049928047,0.049249584,0.048586054,0.047937062,0.047302223,0.046681158,0.046073503,0.045284688,0.044482729,0.043699297,0.042933883,0.042185989,0.041455133,0.040740847,0.040042675,0.039360175,0.038692919,0.038040491,0.037402486,0.036778512,0.036168191,0.035571152,0.03498704,0.034415506,0.033856215,0.033308841,0.032773067,0.032248587,0.031735105,0.031232331,0.030739986,0.030257799,0.029785508,0.029322857,0.028869599,0.028425495,0.027990311,0.027563822,0.027145809,0.026736061,0.02633437,0.025940536,0.025554367,0.025175672,0.02480427,0.024439983,0.024082639,0.02373207,0.023388113,0.023050612,0.022719412,0.022394365,0.022075326,0.021762154,0.021454714,0.021152872,0.020856498,0.020565469,0.020279661,0.019998956,0.019723239,0.019452398,0.019186323,0.018924909,0.018668052,0.018415652,0.018167611,0.017923834,0.017684228,0.017448702,0.01721717,0.016989546,0.016765746,0.016545689,0.016329297,0.016116492,0.015907199,0.015701346,0.015498861,0.015299674,0.015103718,0.014910927,0.014721237,0.014534585,0.014350909,0.014170151,0.013992251,0.013817154,0.013644803,0.013475145,0.013308127,0.013143697,0.012981805,0.012822402,0.01266544,0.012510873,0.012358654,0.012208739,0.012061085,0.011915648,0.011772388,0.011631263,0.011492235,0.011355263,0.011220311,0.01108734,0.010956316,0.010827202,0.010699964,0.010574567,0.01045098,0.010329169,0.010209102,0.01009075,0.009974081,0.009859065,0.009745674,0.00963388,0.009523654,0.009414969,0.009307799,0.009202117,0.009097899,0.008995118,0.008893751,0.008793774,0.008695163,0.008597895,0.008501948,0.008407299,0.008313927,0.008221811,0.008130931,0.008041265,0.007952794,0.007865498,0.007779358,0.007694356,0.007610473,0.007527691,0.007445993,0.00736536,0.007285777,0.007207226,0.007129691,0.007053156,0.006977605,0.006903024,0.006829396,0.006756707,0.006684942,0.006614088,0.006544129,0.006475053,0.006406846,0.006339495,0.006272986,0.006207306,0.006142444,0.006078387,0.006015123,0.00595264,0.005890927,0.005829971,0.005769762,0.005710288,0.00565154,0.005593505,0.005536175,0.005479538,0.005423584,0.005368304,0.005313687,0.005259725,0.005206407,0.005153725,0.005101669,0.005050231,0.004999401,0.004949172,0.004899534,0.00485048,0.004802,0.004754088,0.004706735,0.004659933,0.004613675,0.004567953,0.004522759,0.004478087,0.00443393,0.00439028,0.00434713,0.004304473,0.004262304,0.004220614,0.004179398,0.00413865,0.004098363,0.00405853,0.004019147,0.003980206,0.003941702,0.003903629,0.003865981,0.003828754,0.00379194,0.003755536,0.003719535,0.003683932,0.003648722,0.0036139,0.003579461,0.003545399,0.003511711,0.003478391,0.003445435,0.003412837,0.003380593,0.0033487,0.003317151,0.003285944,0.003255073,0.003224534,0.003194324,0.003164437,0.170817503,0.17068078,0.170272421,0.169597792,0.168665623,0.167487708,0.166078504,0.164454671,0.162634569,0.16063774,0.158484405,0.156194995,0.153789728,0.151288249,0.148709334,0.146070665,0.143388663,0.14067838,0.137953451,0.135226079,0.132507061,0.12980584,0.127130575,0.124488232,0.121884673,0.119324757,0.116814658,0.114389445,0.112056166,0.109809869,0.107645941,0.105560084,0.103548284,0.101606794,0.099732106,0.09792094,0.096170221,0.094477066,0.092838766,0.091252778,0.089716711,0.088228313,0.086785464,0.085386053,0.084016653,0.082669526,0.081345302,0.080044471,0.078767396,0.077514326,0.07628541,0.075080705,0.07390019,0.072743777,0.071611312,0.070502593,0.069417371,0.068355356,0.067316228,0.066299636,0.06530521,0.064332556,0.06338127,0.062450933,0.061541118,0.060651392,0.059781317,0.058930455,0.058098367,0.057284615,0.056488762,0.055710379,0.054949037,0.054204317,0.053475803,0.052763086,0.052065766,0.05138345,0.050715753,0.050062298,0.049422715,0.048759445,0.047908499,0.04707688,0.046264067,0.045469557,0.044692857,0.043933488,0.043190985,0.042464896,0.041754781,0.041060213,0.040380777,0.03971607,0.0390657,0.038429287,0.037806462,0.037196868,0.036600156,0.03601599,0.035444041,0.034883992,0.034335535,0.03379837,0.033272207,0.032756764,0.032251769,0.031756955,0.031272064,0.030796848,0.030331063,0.029874474,0.029426853,0.028987977,0.028557632,0.028135607,0.027721701,0.027315715,0.026917459,0.026526746,0.026143396,0.025767234,0.025398088,0.025035794,0.02468019,0.024331121,0.023988433,0.02365198,0.023321617,0.022997206,0.02267861,0.022365697,0.022058339,0.021756412,0.021459793,0.021168364,0.020882011,0.020600622,0.020324087,0.0200523,0.01978516,0.019522564,0.019264415,0.019010619,0.018761082,0.018515713,0.018274426,0.018037133,0.017803753,0.017574202,0.017348402,0.017126276,0.016907748,0.016692744,0.016481193,0.016273026,0.016068173,0.015866569,0.015668148,0.015472848,0.015280606,0.015091363,0.01490506,0.014721638,0.014541043,0.01436322,0.014188115,0.014015676,0.013845852,0.013678594,0.013513853,0.013351582,0.013191734,0.013034264,0.012879128,0.012726283,0.012575685,0.012427295,0.012281072,0.012136976,0.011994969,0.011855013,0.011717071,0.011581107,0.011447086,0.011314973,0.011184735,0.011056338,0.010929751,0.010804941,0.010681877,0.01056053,0.01044087,0.010322867,0.010206494,0.010091722,0.009978524,0.009866873,0.009756745,0.009648112,0.009540949,0.009435233,0.009330939,0.009228044,0.009126525,0.009026358,0.008927522,0.008829995,0.008733756,0.008638784,0.008545058,0.008452559,0.008361266,0.008271161,0.008182225,0.008094438,0.008007783,0.007922243,0.007837799,0.007754434,0.007672132,0.007590875,0.007510649,0.007431437,0.007353223,0.007275992,0.007199729,0.007124419,0.007050048,0.006976602,0.006904066,0.006832428,0.006761673,0.006691788,0.00662276,0.006554578,0.006487227,0.006420697,0.006354974,0.006290047,0.006225904,0.006162535,0.006099927,0.00603807,0.005976953,0.005916565,0.005856895,0.005797934,0.005739672,0.005682098,0.005625202,0.005568976,0.005513409,0.005458493,0.005404218,0.005350575,0.005297555,0.005245151,0.005193353,0.005142152,0.005091541,0.005041512,0.004992057,0.004943167,0.004894836,0.004847054,0.004799816,0.004753114,0.00470694,0.004661287,0.004616149,0.004571518,0.004527388,0.004483752,0.004440603,0.004397936,0.004355743,0.004314018,0.004272756,0.00423195,0.004191595,0.004151684,0.004112211,0.004073171,0.004034559,0.003996369,0.003958595,0.003921232,0.003884275,0.003847718,0.003811557,0.003775787,0.003740402,0.003705397,0.003670769,0.003636511,0.00360262,0.003569091,0.003535919,0.0035031,0.180382962,0.18023634,0.179798473,0.179075287,0.178076414,0.17681485,0.175306503,0.173569671,0.171624472,0.169492266,0.167195092,0.164755152,0.162194341,0.159533862,0.156793907,0.153993411,0.151149894,0.148279346,0.145396186,0.14251326,0.139641877,0.136791877,0.133971716,0.131188565,0.128448419,0.125756205,0.123132737,0.120609248,0.118181121,0.115843218,0.113590756,0.111419275,0.109324616,0.107302891,0.105350465,0.103463935,0.101640115,0.099876014,0.098168826,0.096515915,0.094914802,0.093363153,0.09185877,0.090399581,0.088983632,0.087605973,0.086251261,0.08491825,0.083607504,0.082319463,0.081054447,0.079812676,0.078594278,0.077399297,0.076227707,0.075079418,0.073954284,0.072852109,0.071772659,0.07071566,0.069680809,0.068667778,0.067676217,0.066705757,0.065756016,0.064826601,0.063917109,0.063027133,0.06215626,0.061304076,0.060470166,0.059654118,0.058855518,0.058073958,0.057309035,0.056560348,0.055827504,0.055110115,0.054407799,0.053720183,0.053046899,0.052387588,0.051647979,0.050764758,0.049901151,0.049056646,0.048230744,0.04742296,0.046632818,0.045859858,0.045103631,0.044363699,0.043639637,0.042931032,0.042237482,0.041558595,0.040893993,0.040243305,0.039606173,0.038982249,0.038371195,0.03777268,0.037186386,0.036612003,0.036049229,0.035497773,0.034957348,0.034427681,0.033908502,0.033399552,0.032900577,0.032411333,0.03193158,0.031461087,0.03099963,0.030546988,0.030102951,0.029667312,0.02923987,0.028820431,0.028408806,0.02800481,0.027608264,0.027218996,0.026836835,0.026461619,0.026093186,0.025731382,0.025376056,0.025027061,0.024684254,0.024347497,0.024016653,0.023691592,0.023372185,0.023058308,0.022749839,0.022446661,0.022148659,0.021855721,0.021567737,0.021284603,0.021006213,0.020732469,0.020463271,0.020198525,0.019938137,0.019682016,0.019430075,0.019182226,0.018938386,0.018698474,0.018462408,0.018230112,0.01800151,0.017776527,0.01755509,0.017337131,0.017122579,0.016911368,0.016703433,0.016498708,0.016297133,0.016098646,0.015903187,0.015710699,0.015521124,0.015334408,0.015150497,0.014969337,0.014790877,0.014615067,0.014441857,0.014271199,0.014103046,0.013937352,0.013774072,0.013613163,0.013454581,0.013298284,0.013144231,0.012992382,0.012842697,0.012695139,0.01254967,0.012406252,0.01226485,0.012125429,0.011987954,0.011852391,0.011718708,0.011586871,0.011456851,0.011328614,0.011202132,0.011077374,0.010954311,0.010832915,0.010713159,0.010595013,0.010478453,0.010363451,0.010249982,0.010138021,0.010027543,0.009918524,0.009810939,0.009704767,0.009599984,0.009496568,0.009394497,0.009293749,0.009194303,0.00909614,0.008999238,0.008903577,0.008809139,0.008715904,0.008623853,0.008532969,0.008443232,0.008354626,0.008267133,0.008180735,0.008095417,0.008011161,0.007927952,0.007845774,0.007764611,0.007684449,0.007605271,0.007527064,0.007449813,0.007373504,0.007298122,0.007223655,0.007150089,0.007077411,0.007005607,0.006934665,0.006864573,0.006795317,0.006726888,0.006659271,0.006592456,0.006526431,0.006461185,0.006396708,0.006332987,0.006270013,0.006207774,0.006146261,0.006085464,0.006025371,0.005965975,0.005907265,0.005849231,0.005791864,0.005735155,0.005679095,0.005623675,0.005568887,0.005514722,0.00546117,0.005408225,0.005355878,0.005304121,0.005252945,0.005202344,0.005152309,0.005102833,0.005053909,0.005005529,0.004957686,0.004910373,0.004863583,0.004817309,0.004771544,0.004726283,0.004681517,0.004637242,0.00459345,0.004550135,0.004507291,0.004464913,0.004422993,0.004381527,0.004340509,0.004299932,0.004259791,0.004220081,0.004180796,0.004141932,0.004103481,0.004065441,0.004027804,0.003990567,0.003953724,0.003917271,0.003881202,0.190845832,0.190687543,0.190214911,0.189434556,0.188357231,0.186997421,0.185372827,0.183503757,0.181412485,0.179122585,0.176658303,0.174043969,0.171303487,0.168459906,0.165535078,0.162549406,0.159521667,0.15646892,0.15340646,0.150347841,0.147304923,0.144287959,0.1413057,0.138365507,0.135473484,0.1326388,0.129903913,0.127273955,0.124743173,0.12230622,0.119958117,0.117694223,0.115510209,0.113402029,0.111365904,0.109398294,0.107495884,0.105655565,0.103874418,0.102149704,0.100478844,0.098859413,0.097289126,0.095765831,0.094287494,0.0928522,0.091458135,0.090097017,0.088756436,0.087436774,0.08613856,0.084862203,0.083608009,0.082376186,0.081166859,0.079980077,0.078815821,0.077674013,0.076554524,0.075457179,0.074381762,0.073328025,0.07229569,0.071284454,0.070293994,0.069323969,0.068374024,0.067443794,0.066532904,0.065640973,0.064767616,0.063912445,0.063075071,0.062255105,0.061452159,0.060665849,0.059895793,0.059141614,0.058402939,0.0576794,0.056970636,0.056276291,0.055596016,0.054795863,0.053877893,0.052979833,0.052101182,0.051241449,0.050400152,0.049576825,0.048771011,0.047982264,0.047210152,0.046454251,0.045714151,0.04498945,0.044279759,0.043584699,0.0429039,0.042237004,0.041583662,0.040943534,0.040316289,0.039701608,0.039099178,0.038508697,0.037929868,0.037362406,0.036806032,0.036260476,0.035725474,0.03520077,0.034686117,0.034181273,0.033686002,0.033200077,0.032723276,0.032255382,0.031796187,0.031345486,0.030903081,0.03046878,0.030042395,0.029623743,0.029212648,0.028808937,0.028412442,0.028023,0.027640452,0.027264644,0.026895425,0.02653265,0.026176175,0.025825863,0.025481578,0.025143189,0.024810568,0.024483591,0.024162136,0.023846086,0.023535324,0.02322974,0.022929223,0.022633669,0.022342972,0.022057031,0.02177575,0.02149903,0.02122678,0.020958907,0.020695322,0.02043594,0.020180674,0.019929443,0.019682167,0.019438766,0.019199164,0.018963286,0.01873106,0.018502413,0.018277277,0.018055584,0.017837266,0.017622261,0.017410503,0.017201933,0.016996489,0.016794112,0.016594745,0.016398332,0.016204818,0.01601415,0.015826274,0.015641139,0.015458696,0.015278896,0.01510169,0.014927031,0.014754875,0.014585176,0.01441789,0.014252974,0.014090388,0.013930089,0.013772037,0.013616194,0.01346252,0.013310979,0.013161533,0.013014146,0.012868784,0.012725411,0.012583995,0.0124445,0.012306897,0.012171152,0.012037234,0.011905113,0.01177476,0.011646145,0.011519238,0.011394014,0.011270443,0.011148499,0.011028155,0.010909386,0.010792166,0.01067647,0.010562275,0.010449555,0.010338288,0.010228451,0.01012002,0.010012975,0.009907292,0.009802952,0.009699933,0.009598214,0.009497776,0.009398599,0.009300663,0.009203949,0.00910844,0.009014116,0.00892096,0.008828953,0.00873808,0.008648322,0.008559663,0.008472087,0.008385578,0.00830012,0.008215697,0.008132294,0.008049896,0.007968489,0.007888058,0.007808589,0.007730068,0.007652481,0.007575815,0.007500057,0.007425194,0.007351213,0.007278101,0.007205846,0.007134436,0.00706386,0.006994105,0.00692516,0.006857013,0.006789655,0.006723072,0.006657256,0.006592195,0.006527879,0.006464297,0.00640144,0.006339298,0.006277861,0.00621712,0.006157065,0.006097686,0.006038975,0.005980923,0.005923521,0.00586676,0.005810632,0.005755128,0.005700241,0.005645961,0.005592281,0.005539194,0.005486691,0.005434764,0.005383407,0.005332611,0.00528237,0.005232676,0.005183523,0.005134903,0.005086809,0.005039235,0.004992175,0.00494562,0.004899566,0.004854006,0.004808934,0.004764343,0.004720227,0.00467658,0.004633398,0.004590673,0.0045484,0.004506573,0.004465187,0.004424237,0.004383717,0.004343621,0.004303945,0.202350726,0.202178512,0.201664402,0.200815895,0.199645157,0.198168549,0.196406017,0.194380387,0.192116606,0.18964099,0.186980488,0.184162027,0.181211937,0.178155477,0.175016471,0.171817033,0.168577402,0.165315847,0.162048649,0.158790132,0.15555274,0.152347148,0.149182387,0.146065983,0.143004118,0.140032922,0.137177659,0.134431852,0.131789491,0.129244983,0.126793128,0.124429076,0.122148304,0.119946591,0.117819987,0.115764798,0.113777565,0.111855044,0.10999419,0.108192143,0.106446216,0.104753879,0.10311275,0.101520584,0.099975263,0.098474788,0.097017272,0.095600928,0.094224067,0.092877718,0.091550781,0.090243788,0.088957253,0.087691582,0.086447082,0.085223971,0.084022385,0.082842392,0.081683994,0.080547137,0.079431717,0.078337588,0.077264565,0.076212428,0.075180932,0.074169805,0.073178755,0.072207473,0.071255635,0.070322907,0.069408944,0.068513393,0.0676359,0.066776104,0.065933643,0.065108154,0.064299274,0.063506645,0.062729906,0.061968704,0.061222687,0.060491508,0.059774824,0.0590723,0.05823352,0.057278146,0.056342983,0.055427541,0.054531337,0.053653901,0.05279477,0.051953496,0.051129638,0.050322768,0.049532466,0.048758325,0.047999946,0.047256941,0.046528933,0.045815552,0.045116441,0.04443125,0.043759639,0.043101277,0.042455842,0.041823021,0.041202508,0.040594007,0.039997228,0.039411892,0.038837725,0.038274461,0.03772184,0.037179613,0.036647534,0.036125364,0.035612874,0.035109836,0.034616032,0.034131249,0.033655279,0.03318792,0.032728977,0.032278257,0.031835576,0.031400751,0.030973607,0.030553973,0.030141681,0.02973657,0.02933848,0.028947259,0.028562755,0.028184824,0.027813322,0.027448112,0.027089059,0.026736031,0.026388899,0.026047541,0.025711833,0.025381658,0.0250569,0.024737446,0.024423187,0.024114017,0.02380983,0.023510525,0.023216003,0.022926168,0.022640925,0.022360182,0.022083849,0.02181184,0.021544067,0.021280449,0.021020904,0.020765352,0.020513716,0.02026592,0.02002189,0.019781554,0.019544843,0.019311686,0.019082016,0.018855769,0.01863288,0.018413285,0.018196925,0.017983739,0.017773669,0.017566657,0.017362648,0.017161587,0.016963421,0.016768097,0.016575565,0.016385773,0.016198675,0.016014221,0.015832366,0.015653062,0.015476267,0.015301935,0.015130024,0.014960493,0.014793299,0.014628404,0.014465767,0.01430535,0.014147115,0.013991026,0.013837047,0.013685141,0.013535275,0.013387414,0.013241525,0.013097576,0.012955534,0.012815368,0.012677048,0.012540544,0.012405826,0.012272865,0.012141633,0.012012102,0.011884246,0.011758037,0.011633449,0.011510457,0.011389035,0.011269159,0.011150805,0.011033948,0.010918567,0.010804637,0.010692136,0.010581044,0.010471337,0.010362994,0.010255996,0.010150321,0.01004595,0.009942863,0.009841041,0.009740464,0.009641115,0.009542974,0.009446025,0.009350249,0.009255629,0.009162148,0.00906979,0.008978538,0.008888376,0.008799289,0.00871126,0.008624275,0.008538318,0.008453375,0.008369432,0.008286473,0.008204486,0.008123457,0.008043371,0.007964216,0.007885979,0.007808646,0.007732206,0.007656646,0.007581953,0.007508116,0.007435124,0.007362963,0.007291623,0.007221093,0.007151362,0.007082419,0.007014253,0.006946854,0.006880211,0.006814314,0.006749154,0.006684721,0.006621004,0.006557994,0.006495682,0.006434059,0.006373116,0.006312843,0.006253233,0.006194275,0.006135963,0.006078287,0.006021239,0.005964811,0.005908995,0.005853784,0.005799168,0.005745142,0.005691697,0.005638826,0.005586521,0.005534776,0.005483583,0.005432936,0.005382827,0.00533325,0.005284198,0.005235665,0.005187644,0.005140128,0.005093113,0.00504659,0.005000555,0.004955001,0.004909922,0.004865313,0.004821168,0.00477748 -0.09154924,0.091381813,0.090883738,0.090067369,0.088952418,0.087564748,0.085934887,0.084096403,0.08208431,0.079933609,0.077678056,0.075349213,0.072975777,0.070583185,0.068193439,0.065825126,0.063493569,0.061211074,0.058987235,0.056829256,0.054756455,0.052801542,0.050957181,0.049198359,0.047499604,0.04586199,0.044285969,0.04277134,0.041317382,0.039922962,0.038586636,0.037306721,0.03608137,0.03490862,0.03378644,0.032712766,0.031685529,0.030702679,0.0297622,0.028862126,0.028000549,0.027175624,0.02638558,0.025628713,0.024903398,0.024208081,0.023541282,0.022901596,0.022287683,0.021698276,0.021132172,0.02058823,0.02006537,0.019562571,0.019078866,0.018613337,0.018165121,0.017733398,0.017317392,0.016916371,0.01652964,0.016156544,0.015796461,0.015448803,0.015113013,0.014788563,0.014474954,0.014171713,0.013878389,0.013594558,0.013319815,0.013053777,0.012796081,0.012546381,0.012304348,0.012069671,0.011842053,0.011621213,0.011406881,0.011172695,0.010912859,0.010661122,0.010417164,0.010180679,0.009951375,0.009728974,0.009513213,0.009303838,0.009100609,0.008903295,0.008711679,0.008525549,0.008344706,0.008168959,0.007998124,0.007832026,0.007670499,0.007513382,0.007360522,0.007211771,0.00706699,0.006926043,0.006788801,0.00665514,0.006524941,0.00639809,0.006274478,0.006153999,0.006036553,0.005922042,0.005810374,0.005701458,0.005595209,0.005491543,0.005390381,0.005291646,0.005195265,0.005101165,0.00500928,0.004919542,0.004831888,0.004746257,0.00466259,0.00458083,0.004500922,0.004422812,0.00434645,0.004271786,0.004198773,0.004127365,0.004057517,0.003989185,0.00392233,0.003856909,0.003792886,0.003730221,0.003668879,0.003608825,0.003550025,0.003492445,0.003436054,0.003380821,0.003326717,0.003273712,0.003221779,0.00317089,0.003121018,0.003072139,0.003024228,0.002977261,0.002931214,0.002886065,0.002841793,0.002798375,0.002755792,0.002714023,0.002673049,0.00263285,0.00259341,0.00255471,0.002516732,0.00247946,0.002442878,0.00240697,0.00237172,0.002337114,0.002303136,0.002269773,0.002237011,0.002204836,0.002173236,0.002142198,0.002111709,0.002081757,0.002052331,0.00202342,0.001995011,0.001967096,0.001939661,0.001912699,0.001886198,0.001860149,0.001834543,0.00180937,0.001784621,0.001760287,0.00173636,0.001712832,0.001689694,0.001666939,0.001644558,0.001622544,0.00160089,0.001579589,0.001558633,0.001538016,0.001517731,0.001497771,0.001478131,0.001458803,0.001439782,0.001421062,0.001402638,0.001384502,0.00136665,0.001349077,0.001331777,0.001314746,0.001297977,0.001281466,0.001265208,0.001249199,0.001233434,0.001217908,0.001202618,0.001187558,0.001172724,0.001158113,0.001143721,0.001129543,0.001115575,0.001101814,0.001088256,0.001074898,0.001061736,0.001048766,0.001035985,0.00102339,0.001010978,0.000998745,0.000986688,0.000974804,0.000963091,0.000951545,0.000940163,0.000928943,0.000917882,0.000906977,0.000896225,0.000885625,0.000875173,0.000864867,0.000854704,0.000844682,0.000834799,0.000825053,0.000815441,0.000805961,0.000796611,0.000787388,0.000778291,0.000769318,0.000760467,0.000751735,0.000743121,0.000734623,0.000726238,0.000717966,0.000709805,0.000701752,0.000693806,0.000685965,0.000678228,0.000670593,0.000663059,0.000655623,0.000648285,0.000641042,0.000633894,0.000626839,0.000619875,0.000613001,0.000606216,0.000599518,0.000592906,0.000586379,0.000579936,0.000573574,0.000567294,0.000561093,0.000554971,0.000548926,0.000542958,0.000537065,0.000531245,0.000525499,0.000519824,0.00051422,0.000508686,0.000503221,0.000497823,0.000492493,0.000487228,0.000482028,0.000476891,0.000471818,0.000466807,0.000461857,0.000456968,0.000452137,0.11157166,0.111369513,0.110768154,0.109782499,0.108436345,0.106760914,0.104793044,0.102573242,0.10014374,0.097546745,0.094822954,0.092010409,0.089143692,0.086253451,0.083366193,0.080504314,0.077686276,0.074926916,0.072237802,0.069627631,0.067124518,0.064763771,0.062535337,0.060418421,0.058373813,0.056400407,0.054499053,0.052669792,0.050912008,0.049224569,0.047605938,0.046054274,0.044567513,0.043143434,0.041779717,0.040473987,0.039223848,0.038026915,0.036880833,0.035783297,0.034732063,0.033724958,0.032759884,0.031834829,0.03094786,0.030097133,0.029280885,0.02849744,0.0277452,0.02702265,0.026328349,0.025660932,0.025019105,0.024401639,0.023807374,0.023235208,0.0226841,0.022153063,0.021641163,0.021147515,0.020671284,0.020211676,0.01976794,0.019339365,0.018925278,0.01852504,0.018138046,0.017763723,0.017401525,0.017050937,0.016711469,0.016382656,0.016064055,0.015755247,0.015455833,0.015165434,0.014883689,0.014610254,0.014344804,0.014065292,0.013741983,0.013428657,0.01312492,0.012830397,0.012544733,0.012267588,0.011998638,0.011737573,0.011484099,0.011237934,0.010998809,0.010766467,0.010540662,0.01032116,0.010107736,0.009900175,0.009698273,0.009501831,0.009310662,0.009124585,0.008943426,0.008767021,0.00859521,0.008427841,0.008264767,0.008105848,0.007950948,0.007799939,0.007652696,0.007509099,0.007369034,0.007232389,0.00709906,0.006968942,0.006841939,0.006717955,0.006596899,0.006478683,0.006363223,0.006250437,0.006140246,0.006032576,0.005927352,0.005824505,0.005723966,0.005625669,0.005529553,0.005435554,0.005343615,0.005253678,0.005165688,0.005079592,0.004995338,0.004912877,0.00483216,0.004753142,0.004675777,0.004600021,0.004525832,0.00445317,0.004381995,0.004312268,0.004243953,0.004177014,0.004111416,0.004047125,0.003984109,0.003922336,0.003861775,0.003802396,0.003744171,0.003687071,0.003631069,0.003576139,0.003522256,0.003469393,0.003417528,0.003366637,0.003316696,0.003267684,0.00321958,0.003172362,0.003126009,0.003080503,0.003035824,0.002991954,0.002948873,0.002906566,0.002865013,0.002824199,0.002784108,0.002744722,0.002706029,0.002668011,0.002630654,0.002593945,0.002557869,0.002522414,0.002487564,0.002453309,0.002419636,0.002386531,0.002353984,0.002321983,0.002290517,0.002259574,0.002229144,0.002199216,0.002169781,0.002140828,0.002112348,0.002084331,0.002056768,0.00202965,0.002002968,0.001976714,0.001950879,0.001925454,0.001900433,0.001875807,0.001851569,0.001827711,0.001804226,0.001781106,0.001758345,0.001735937,0.001713874,0.00169215,0.001670758,0.001649693,0.001628948,0.001608518,0.001588397,0.001568578,0.001549057,0.001529828,0.001510886,0.001492226,0.001473842,0.00145573,0.001437884,0.001420301,0.001402975,0.001385902,0.001369077,0.001352496,0.001336155,0.001320049,0.001304175,0.001288529,0.001273106,0.001257903,0.001242916,0.001228141,0.001213575,0.001199213,0.001185054,0.001171093,0.001157327,0.001143752,0.001130366,0.001117166,0.001104148,0.001091309,0.001078646,0.001066157,0.001053839,0.001041688,0.001029702,0.001017879,0.001006216,0.00099471,0.000983359,0.00097216,0.00096111,0.000950209,0.000939452,0.000928838,0.000918365,0.00090803,0.000897831,0.000887766,0.000877833,0.000868031,0.000858356,0.000848807,0.000839382,0.000830079,0.000820896,0.000811832,0.000802884,0.000794052,0.000785332,0.000776723,0.000768225,0.000759834,0.00075155,0.000743371,0.000735295,0.00072732,0.000719446,0.000711671,0.000703993,0.000696411,0.000688923,0.000681529,0.000674226,0.000667014,0.000659891,0.000652855,0.000645906,0.000639043,0.000632263,0.000625566,0.000618951,0.000612417,0.000605962,0.000599585,0.000593285,0.000587062,0.136017376,0.135773098,0.135046411,0.133855356,0.132228711,0.130204221,0.127826414,0.12514423,0.122208679,0.119070719,0.115779465,0.112380811,0.108916464,0.105423371,0.101933484,0.098473789,0.095066538,0.091729607,0.088476941,0.08531903,0.082294904,0.079442098,0.076747875,0.074196481,0.071737961,0.069361983,0.067069967,0.06486232,0.062738634,0.06069784,0.058738355,0.056858199,0.055055098,0.053326566,0.051669972,0.0500826,0.048561692,0.047104486,0.045708241,0.044370266,0.043087929,0.041858676,0.040680034,0.039549624,0.03846516,0.037424451,0.036425405,0.035466024,0.034544406,0.03365874,0.032807306,0.03198847,0.03120068,0.030442466,0.029712433,0.029009258,0.028331688,0.027678538,0.027048681,0.026441052,0.025854642,0.025288494,0.024741702,0.024213406,0.023702792,0.023209088,0.02273156,0.022269515,0.021822293,0.021389268,0.020969845,0.02056346,0.020169577,0.019787687,0.019417304,0.019057967,0.018709238,0.018370699,0.018041954,0.017710651,0.017308329,0.016918307,0.016540106,0.016173268,0.015817357,0.015471957,0.015136673,0.014811125,0.014494951,0.014187808,0.013889364,0.013599306,0.013317332,0.013043153,0.012776495,0.012517093,0.012264696,0.012019061,0.011779957,0.011547161,0.011320462,0.011099655,0.010884545,0.010674944,0.010470671,0.010271555,0.010077428,0.009888131,0.009703511,0.009523421,0.009347718,0.009176267,0.009008936,0.008845599,0.008686136,0.008530428,0.008378364,0.008229835,0.008084736,0.007942967,0.00780443,0.007669032,0.007536683,0.007407296,0.007280786,0.007157072,0.007036076,0.006917722,0.006801938,0.006688652,0.006577796,0.006469305,0.006363114,0.006259162,0.00615739,0.006057738,0.005960153,0.005864579,0.005770965,0.00567926,0.005589414,0.005501381,0.005415113,0.005330568,0.0052477,0.00516647,0.005086835,0.005008757,0.004932197,0.004857119,0.004783486,0.004711264,0.004640418,0.004570916,0.004502726,0.004435817,0.004370159,0.004305722,0.004242479,0.004180402,0.004119463,0.004059637,0.004000899,0.003943224,0.003886587,0.003830966,0.003776339,0.003722682,0.003669975,0.003618196,0.003567326,0.003517344,0.003468232,0.00341997,0.003372541,0.003325926,0.003280108,0.003235071,0.003190798,0.003147273,0.00310448,0.003062405,0.003021031,0.002980346,0.002940334,0.002900983,0.002862278,0.002824207,0.002786756,0.002749914,0.002713669,0.002678007,0.002642919,0.002608392,0.002574416,0.002540979,0.002508072,0.002475683,0.002443804,0.002412424,0.002381534,0.002351124,0.002321185,0.002291709,0.002262686,0.002234108,0.002205968,0.002178255,0.002150964,0.002124086,0.002097612,0.002071537,0.002045853,0.002020552,0.001995628,0.001971073,0.001946882,0.001923047,0.001899563,0.001876423,0.00185362,0.00183115,0.001809006,0.001787182,0.001765674,0.001744474,0.001723579,0.001702982,0.001682679,0.001662664,0.001642933,0.001623481,0.001604303,0.001585395,0.001566751,0.001548368,0.00153024,0.001512365,0.001494737,0.001477352,0.001460207,0.001443298,0.00142662,0.00141017,0.001393944,0.001377938,0.00136215,0.001346575,0.001331209,0.001316051,0.001301095,0.00128634,0.001271781,0.001257416,0.001243242,0.001229255,0.001215453,0.001201833,0.001188392,0.001175127,0.001162035,0.001149114,0.001136361,0.001123773,0.001111349,0.001099085,0.001086979,0.001075028,0.001063231,0.001051584,0.001040087,0.001028735,0.001017528,0.001006463,0.000995538,0.00098475,0.000974098,0.000963581,0.000953194,0.000942938,0.00093281,0.000922807,0.000912929,0.000903174,0.000893538,0.000884022,0.000874623,0.000865339,0.00085617,0.000847112,0.000838165,0.000829327,0.000820596,0.000811971,0.000803451,0.000795033,0.000786717,0.000778501,0.000770384,0.000762364,0.16587652,0.165581039,0.164702046,0.163261401,0.161293971,0.158845473,0.155969819,0.152726234,0.149176422,0.14538199,0.141402284,0.137292729,0.133103666,0.128879668,0.124659267,0.120474992,0.116353655,0.112316794,0.108381209,0.104559559,0.100908505,0.097462841,0.094207059,0.091127005,0.088173629,0.085315409,0.082554565,0.079892063,0.077327838,0.074860995,0.072489976,0.07021271,0.068026735,0.065929304,0.063917465,0.061988139,0.06013817,0.058364379,0.056663593,0.055032679,0.053468565,0.051968256,0.050528848,0.049147535,0.047821616,0.046548498,0.045325699,0.044150845,0.043021671,0.04193602,0.040891837,0.03988717,0.038920162,0.037989051,0.037092164,0.036227914,0.035394796,0.034591382,0.033816318,0.033068322,0.032346176,0.031648726,0.030974878,0.030323595,0.029693891,0.029084833,0.028495534,0.027925154,0.027372893,0.026837993,0.026319733,0.025817428,0.025330428,0.024858114,0.024399896,0.023955215,0.023523537,0.023104354,0.022697184,0.022301565,0.021807584,0.021321975,0.020850939,0.020393918,0.019950377,0.019519809,0.019101727,0.018695669,0.01830119,0.01791787,0.017545303,0.017183103,0.016830901,0.016488343,0.016155091,0.015830822,0.015515225,0.015208003,0.014908872,0.014617559,0.014333802,0.014057351,0.013787965,0.013525413,0.013269473,0.013019931,0.012776585,0.012539237,0.012307697,0.012081785,0.011861326,0.011646151,0.0114361,0.011231016,0.011030749,0.010835155,0.010644096,0.010457436,0.010275048,0.010096807,0.009922592,0.009752288,0.009585783,0.009422969,0.009263743,0.009108004,0.008955655,0.008806602,0.008660755,0.008518026,0.008378331,0.008241589,0.008107719,0.007976646,0.007848296,0.007722597,0.007599479,0.007478877,0.007360725,0.00724496,0.007131521,0.00702035,0.006911389,0.006804582,0.006699877,0.006597221,0.006496563,0.006397856,0.00630105,0.006206101,0.006112963,0.006021594,0.00593195,0.005843991,0.005757678,0.005672972,0.005589835,0.005508231,0.005428125,0.005349482,0.005272269,0.005196454,0.005122004,0.00504889,0.004977081,0.004906548,0.004837264,0.0047692,0.004702329,0.004636627,0.004572066,0.004508624,0.004446275,0.004384997,0.004324766,0.004265561,0.004207359,0.00415014,0.004093883,0.004038568,0.003984176,0.003930687,0.003878084,0.003826347,0.00377546,0.003725404,0.003676165,0.003627724,0.003580066,0.003533176,0.003487038,0.003441638,0.00339696,0.003352991,0.003309718,0.003267126,0.003225202,0.003183934,0.003143309,0.003103315,0.003063939,0.003025171,0.002986998,0.002949409,0.002912394,0.002875942,0.002840043,0.002804685,0.00276986,0.002735557,0.002701767,0.002668481,0.002635689,0.002603383,0.002571554,0.002540193,0.002509292,0.002478842,0.002448837,0.002419267,0.002390125,0.002361405,0.002333097,0.002305196,0.002277694,0.002250584,0.00222386,0.002197515,0.002171542,0.002145935,0.002120688,0.002095795,0.002071249,0.002047046,0.002023179,0.001999642,0.001976431,0.001953539,0.001930962,0.001908694,0.00188673,0.001865065,0.001843695,0.001822614,0.001801818,0.001781303,0.001761063,0.001741094,0.001721392,0.001701953,0.001682773,0.001663847,0.001645171,0.001626742,0.001608556,0.001590608,0.001572895,0.001555414,0.00153816,0.001521131,0.001504323,0.001487732,0.001471355,0.001455189,0.00143923,0.001423476,0.001407923,0.001392569,0.00137741,0.001362443,0.001347665,0.001333075,0.001318668,0.001304442,0.001290395,0.001276524,0.001262825,0.001249298,0.001235938,0.001222744,0.001209714,0.001196844,0.001184133,0.001171579,0.001159178,0.001146929,0.00113483,0.001122878,0.001111071,0.001099408,0.001087886,0.001076503,0.001065258,0.001054148,0.001043171,0.001032326,0.001021611,0.001011023,0.001000562,0.000990225,0.202365035,0.202007214,0.200942801,0.199198345,0.196816178,0.193851788,0.190370576,0.18644435,0.182147875,0.177555745,0.172739772,0.167766966,0.16269815,0.157587143,0.152480429,0.147417233,0.142429862,0.137544257,0.132780639,0.128155592,0.12374928,0.119588646,0.115655259,0.111932388,0.108384855,0.104950116,0.101627664,0.098419279,0.095325444,0.092345591,0.089478304,0.086721502,0.084072584,0.081528567,0.079086185,0.076741979,0.074492374,0.072333731,0.070262402,0.068274759,0.066367231,0.064536321,0.062778629,0.061090856,0.059469822,0.057912463,0.056415841,0.054977142,0.053593674,0.052262869,0.05098228,0.049749574,0.048562535,0.047419052,0.046317122,0.045254843,0.044230406,0.043242096,0.042288286,0.04136743,0.040478063,0.039618793,0.0387883,0.037985332,0.037208699,0.036457271,0.035729978,0.0350258,0.034343771,0.033682972,0.033042528,0.032421609,0.031819426,0.031235227,0.030668296,0.030117954,0.029583551,0.029064471,0.028560125,0.028069952,0.027485962,0.026881192,0.026294391,0.025724876,0.025171994,0.024635123,0.02411367,0.023607065,0.023114767,0.022636258,0.022171042,0.021718646,0.021278616,0.020850519,0.02043394,0.020028482,0.019633762,0.019249418,0.018875098,0.018510467,0.018155204,0.017809001,0.017471561,0.0171426,0.016821844,0.016509032,0.016203912,0.015906242,0.015615788,0.015332326,0.015055642,0.014785528,0.014521785,0.01426422,0.014012648,0.013766892,0.013526779,0.013292145,0.013062829,0.012838678,0.012619543,0.012405282,0.012195757,0.011990833,0.011790382,0.011594281,0.011402408,0.011214649,0.01103089,0.010851025,0.010674947,0.010502555,0.010333753,0.010168444,0.010006537,0.009847945,0.009692579,0.009540359,0.009391202,0.009245031,0.009101771,0.008961348,0.008823691,0.008688732,0.008556403,0.008426641,0.008299382,0.008174565,0.008052132,0.007932025,0.007814189,0.00769857,0.007585115,0.007473774,0.007364496,0.007257234,0.007151942,0.007048574,0.006947086,0.006847435,0.00674958,0.00665348,0.006559095,0.006466389,0.006375322,0.00628586,0.006197966,0.006111607,0.006026749,0.00594336,0.005861408,0.005780862,0.005701693,0.00562387,0.005547366,0.005472153,0.005398203,0.005325491,0.005253991,0.005183678,0.005114527,0.005046514,0.004979618,0.004913814,0.00484908,0.004785396,0.004722741,0.004661093,0.004600433,0.004540741,0.004481999,0.004424187,0.004367288,0.004311284,0.004256158,0.004201892,0.00414847,0.004095877,0.004044095,0.003993111,0.003942909,0.003893474,0.003844792,0.003796849,0.003749631,0.003703125,0.003657318,0.003612196,0.003567748,0.003523961,0.003480824,0.003438323,0.003396449,0.003355189,0.003314534,0.003274471,0.003234991,0.003196083,0.003157737,0.003119944,0.003082693,0.003045975,0.003009782,0.002974104,0.002938931,0.002904257,0.002870071,0.002836365,0.002803132,0.002770364,0.002738052,0.00270619,0.002674768,0.002643781,0.002613221,0.00258308,0.002553353,0.002524031,0.002495109,0.00246658,0.002438437,0.002410675,0.002383286,0.002356266,0.002329608,0.002303306,0.002277354,0.002251748,0.002226481,0.002201548,0.002176944,0.002152664,0.002128702,0.002105054,0.002081715,0.00205868,0.002035944,0.002013503,0.001991351,0.001969485,0.001947901,0.001926593,0.001905559,0.001884792,0.001864291,0.001844049,0.001824065,0.001804333,0.00178485,0.001765612,0.001746616,0.001727858,0.001709335,0.001691042,0.001672977,0.001655136,0.001637517,0.001620115,0.001602928,0.001585952,0.001569184,0.001552622,0.001536263,0.001520103,0.00150414,0.00148837,0.001472792,0.001457402,0.001442198,0.001427176,0.001412336,0.001397673,0.001383186,0.001368871,0.001354728,0.001340752,0.001326943,0.001313297,0.001299812,0.001286486,0.183168223,0.182958083,0.182331153,0.181297753,0.179874591,0.178084057,0.175953325,0.173513319,0.170797612,0.167841337,0.164680154,0.161349332,0.157882972,0.154313376,0.150670588,0.146982069,0.143272526,0.139563836,0.135875083,0.132222655,0.128620399,0.125079809,0.121610242,0.118219128,0.114914817,0.111745811,0.108721483,0.105832802,0.103071441,0.100427469,0.097861147,0.095361482,0.092929684,0.090566388,0.088271744,0.086045491,0.083887022,0.081795445,0.079769637,0.077808286,0.075909935,0.074073014,0.072295869,0.070576787,0.068914016,0.067305788,0.065750328,0.064245866,0.062790653,0.061382965,0.060021108,0.058703427,0.057428308,0.056194181,0.054999523,0.053842859,0.052722761,0.051637853,0.050586805,0.049568337,0.048581218,0.047624263,0.046696332,0.045796333,0.044923214,0.044075968,0.043253628,0.042455267,0.041679996,0.040926962,0.040195349,0.039484372,0.038793282,0.038121359,0.037467913,0.036832285,0.03621384,0.035611971,0.035020925,0.034272022,0.033544435,0.032837403,0.032150198,0.03148212,0.030832501,0.030200698,0.029586095,0.028988103,0.028406154,0.027839706,0.027288236,0.026751244,0.02622825,0.025718791,0.025222424,0.024738723,0.024267279,0.023807698,0.023359602,0.022922627,0.022496422,0.022080652,0.021674992,0.02127913,0.020892767,0.020515612,0.020147388,0.019787826,0.019436668,0.019093665,0.018758575,0.018431169,0.018111222,0.017798518,0.01749285,0.017194017,0.016901826,0.016616089,0.016336625,0.01606326,0.015795826,0.01553416,0.015278103,0.015027504,0.014782216,0.014542096,0.014307007,0.014076815,0.013851391,0.013630611,0.013414353,0.013202501,0.012994942,0.012791565,0.012592265,0.012396938,0.012205485,0.012017808,0.011833814,0.011653412,0.011476513,0.011303033,0.011132888,0.010965997,0.010802282,0.010641668,0.01048408,0.010329447,0.010177699,0.01002877,0.009882593,0.009739105,0.009598243,0.009459948,0.009324161,0.009190826,0.009059886,0.008931288,0.00880498,0.008680912,0.008559032,0.008439294,0.00832165,0.008206055,0.008092465,0.007980835,0.007871124,0.007763292,0.007657297,0.007553101,0.007450667,0.007349957,0.007250935,0.007153566,0.007057816,0.006963652,0.006871041,0.006779952,0.006690353,0.006602214,0.006515507,0.006430202,0.006346271,0.006263687,0.006182424,0.006102455,0.006023754,0.005946299,0.005870063,0.005795023,0.005721157,0.005648442,0.005576855,0.005506375,0.005436982,0.005368655,0.005301373,0.005235118,0.005169869,0.005105608,0.005042318,0.004979979,0.004918575,0.004858088,0.004798502,0.004739801,0.004681968,0.004624987,0.004568844,0.004513523,0.00445901,0.004405291,0.004352351,0.004300176,0.004248754,0.004198071,0.004148114,0.00409887,0.004050328,0.004002474,0.003955299,0.003908788,0.003862932,0.00381772,0.003773139,0.00372918,0.003685833,0.003643086,0.00360093,0.003559355,0.003518352,0.003477911,0.003438022,0.003398677,0.003359866,0.003321581,0.003283814,0.003246556,0.003209799,0.003173534,0.003137754,0.003102451,0.003067618,0.003033246,0.00299933,0.00296586,0.002932831,0.002900235,0.002868066,0.002836318,0.002804982,0.002774054,0.002743526,0.002713393,0.002683648,0.002654286,0.0026253,0.002596686,0.002568437,0.002540547,0.002513012,0.002485826,0.002458983,0.002432479,0.002406309,0.002380467,0.002354949,0.00232975,0.002304865,0.002280289,0.002256018,0.002232048,0.002208374,0.002184992,0.002161897,0.002139086,0.002116554,0.002094297,0.002072312,0.002050594,0.002029139,0.002007945,0.001987006,0.00196632,0.001945883,0.001925691,0.001905742,0.00188603,0.001866554,0.00184731,0.001828295,0.001809505,0.001790937,0.001772589,0.001754457,0.001736538,0.001718829,0.001701328,0.001684032,0.001666938,0.184275294,0.184065173,0.183438314,0.182405083,0.180982251,0.179192293,0.177062472,0.174623798,0.171909921,0.16895603,0.165797821,0.162470572,0.159008366,0.155443466,0.151805853,0.148122912,0.144419258,0.140716674,0.137034142,0.133387952,0.129791856,0.126257262,0.122793446,0.119407769,0.116111737,0.11295579,0.109942871,0.107064093,0.104311259,0.101676801,0.099137176,0.096661189,0.094249738,0.091903738,0.089623602,0.087409315,0.085260501,0.083176479,0.081156324,0.079198906,0.077302936,0.075466994,0.073689567,0.07196907,0.07030387,0.068692302,0.067132689,0.06562335,0.064162615,0.062748832,0.061380373,0.060055644,0.058773084,0.057531173,0.056328431,0.055163423,0.054034759,0.052941094,0.05188113,0.050853612,0.049857333,0.04889113,0.047953884,0.047044519,0.046162001,0.045305336,0.04447357,0.043665788,0.042881111,0.042118696,0.041377733,0.040657448,0.039957097,0.039275965,0.038613369,0.037968653,0.037341187,0.036730367,0.036135615,0.035412192,0.034669535,0.033947638,0.033245771,0.032563235,0.031899362,0.031253506,0.030625053,0.030013409,0.029418007,0.028838302,0.028273771,0.02772391,0.027188238,0.026666289,0.02615762,0.0256618,0.025178419,0.02470708,0.024247403,0.023799021,0.023361582,0.022934748,0.02251819,0.022111595,0.021714661,0.021327095,0.020948617,0.020578956,0.02021785,0.019865049,0.019520309,0.019183397,0.018854087,0.018532161,0.018217408,0.017909627,0.017608619,0.017314197,0.017026178,0.016744385,0.016468646,0.016198798,0.01593468,0.015676138,0.015423024,0.015175192,0.014932503,0.014694822,0.014462018,0.014233964,0.014010538,0.013791621,0.013577098,0.013366858,0.013160792,0.012958796,0.012760768,0.01256661,0.012376226,0.012189525,0.012006416,0.011826812,0.011650629,0.011477784,0.011308198,0.011141794,0.010978497,0.010818233,0.010660933,0.010506527,0.010354948,0.010206131,0.010060014,0.009916534,0.009775633,0.009637252,0.009501335,0.009367827,0.009236674,0.009107825,0.008981229,0.008856837,0.008734601,0.008614474,0.008496411,0.008380368,0.008266302,0.008154171,0.008043933,0.00793555,0.007828982,0.007724192,0.007621143,0.007519798,0.007420124,0.007322085,0.007225649,0.007130783,0.007037455,0.006945635,0.006855293,0.006766398,0.006678923,0.006592839,0.006508119,0.006424737,0.006342666,0.006261882,0.006182358,0.006104071,0.006026997,0.005951114,0.005876398,0.005802828,0.005730381,0.005659037,0.005588776,0.005519577,0.00545142,0.005384286,0.005318157,0.005253013,0.005188838,0.005125613,0.005063322,0.005001946,0.004941471,0.00488188,0.004823157,0.004765287,0.004708254,0.004652044,0.004596643,0.004542036,0.00448821,0.00443515,0.004382844,0.004331279,0.004280442,0.00423032,0.004180901,0.004132174,0.004084127,0.004036747,0.003990025,0.003943949,0.003898507,0.003853691,0.003809488,0.00376589,0.003722886,0.003680466,0.003638621,0.003597341,0.003556617,0.003516441,0.003476803,0.003437695,0.003399108,0.003361034,0.003323465,0.003286392,0.003249809,0.003213706,0.003178077,0.003142914,0.003108209,0.003073957,0.003040149,0.003006779,0.002973839,0.002941324,0.002909227,0.002877541,0.002846261,0.002815379,0.00278489,0.002754789,0.002725068,0.002695723,0.002666747,0.002638136,0.002609883,0.002581984,0.002554434,0.002527226,0.002500356,0.002473819,0.002447611,0.002421725,0.002396159,0.002370906,0.002345963,0.002321324,0.002296987,0.002272945,0.002249196,0.002225734,0.002202556,0.002179658,0.002157035,0.002134684,0.002112601,0.002090782,0.002069224,0.002047922,0.002026874,0.002006075,0.001985523,0.001965213,0.001945143,0.001925308,0.001905707,0.001886335,0.00186719,0.001848268,0.001829567,0.001811083,0.001792814,0.001774756,0.185519012,0.185308522,0.184680585,0.183645643,0.182220587,0.180428046,0.178295455,0.175854003,0.17313751,0.170181317,0.167021244,0.163692662,0.160229711,0.156664675,0.153027528,0.14934562,0.145643508,0.141942901,0.138262699,0.1346191,0.131025767,0.127494017,0.12403304,0.120650122,0.117362558,0.114219576,0.111217972,0.108349004,0.105604604,0.102977323,0.100457414,0.098007099,0.095617747,0.093290574,0.091026274,0.088825098,0.086686916,0.084611278,0.08259747,0.080644558,0.07875143,0.076916834,0.075139406,0.073417698,0.071750203,0.07013537,0.068571625,0.067057383,0.065591058,0.064171076,0.06279588,0.061463939,0.06017375,0.058923846,0.057712793,0.056539199,0.055401714,0.054299026,0.053229869,0.052193016,0.051187288,0.050211542,0.049264682,0.04834565,0.047453427,0.046587037,0.045745539,0.044928029,0.044133639,0.043361537,0.042610922,0.041881026,0.041171112,0.040480473,0.03980843,0.039154331,0.038517552,0.037897493,0.037293578,0.036609093,0.035850721,0.03511332,0.034396162,0.033698548,0.033019807,0.032359295,0.031716393,0.03109051,0.030481075,0.029887541,0.029309384,0.028746097,0.028197198,0.027662218,0.027140711,0.026632246,0.026136409,0.0256528,0.025181037,0.024720751,0.024271587,0.023833204,0.023405271,0.022987472,0.022579502,0.022181067,0.021791882,0.021411675,0.021040183,0.02067715,0.020322332,0.019975492,0.019636402,0.019304842,0.018980599,0.018663468,0.01835325,0.018049754,0.017752794,0.017462192,0.017177775,0.016899375,0.01662683,0.016359985,0.016098688,0.015842793,0.015592158,0.015346645,0.015106123,0.014870462,0.014639538,0.014413231,0.014191423,0.013974001,0.013760856,0.013551881,0.013346972,0.013146031,0.01294896,0.012755664,0.012566053,0.012380037,0.012197531,0.012018452,0.011842717,0.01167025,0.011500972,0.01133481,0.011171691,0.011011546,0.010854307,0.010699906,0.01054828,0.010399366,0.010253104,0.010109434,0.009968298,0.00982964,0.009693407,0.009559544,0.009428001,0.009298727,0.009171673,0.009046792,0.008924036,0.008803362,0.008684724,0.008568081,0.00845339,0.00834061,0.008229703,0.008120629,0.00801335,0.00790783,0.007804033,0.007701925,0.00760147,0.007502636,0.007405391,0.007309702,0.007215539,0.007122872,0.007031672,0.006941909,0.006853555,0.006766584,0.006680969,0.006596683,0.006513702,0.006431999,0.006351552,0.006272335,0.006194327,0.006117504,0.006041844,0.005967326,0.005893928,0.00582163,0.005750411,0.005680252,0.005611134,0.005543037,0.005475943,0.005409834,0.005344693,0.005280501,0.005217243,0.005154901,0.005093459,0.005032902,0.004973213,0.004914379,0.004856383,0.004799211,0.00474285,0.004687285,0.004632502,0.004578488,0.00452523,0.004472715,0.004420931,0.004369865,0.004319505,0.00426984,0.004220857,0.004172545,0.004124894,0.004077892,0.004031529,0.003985794,0.003940677,0.003896168,0.003852257,0.003808934,0.00376619,0.003724015,0.003682401,0.003641338,0.003600818,0.003560832,0.003521372,0.003482428,0.003443994,0.003406062,0.003368622,0.003331668,0.003295193,0.003259188,0.003223646,0.003188561,0.003153925,0.003119732,0.003085974,0.003052646,0.00301974,0.00298725,0.002955171,0.002923495,0.002892217,0.00286133,0.00283083,0.002800709,0.002770964,0.002741587,0.002712574,0.00268392,0.002655618,0.002627665,0.002600054,0.002572781,0.002545841,0.002519229,0.002492941,0.002466971,0.002441316,0.00241597,0.00239093,0.002366191,0.002341748,0.002317598,0.002293737,0.002270159,0.002246863,0.002223842,0.002201094,0.002178615,0.002156401,0.002134449,0.002112754,0.002091313,0.002070123,0.002049181,0.002028482,0.002008024,0.001987803,0.001967817,0.001948061,0.001928533,0.00190923,0.001890149,0.186915787,0.186704486,0.186074156,0.185035353,0.183605154,0.18180642,0.179666858,0.177217939,0.174493763,0.171529931,0.16836249,0.165026997,0.161557733,0.157987077,0.154345054,0.150659026,0.146953529,0.143250225,0.139567945,0.135922809,0.132328388,0.12879591,0.125334474,0.121951276,0.118672395,0.115540872,0.1125492,0.109688769,0.106951632,0.104330448,0.101818425,0.099395345,0.097030348,0.094723999,0.092477298,0.09029078,0.088164581,0.086098499,0.084092047,0.082144504,0.08025495,0.078422312,0.076645388,0.074922879,0.073253413,0.071635562,0.070067864,0.068548836,0.067076985,0.06565082,0.06426886,0.062929643,0.061631728,0.060373703,0.059154188,0.057971834,0.056825333,0.055713412,0.054634836,0.053588412,0.052572984,0.051587439,0.050630698,0.049701726,0.048799523,0.047923126,0.047071611,0.046244085,0.045439694,0.044657615,0.043897056,0.043157257,0.04243749,0.041737054,0.041055274,0.040391506,0.039745128,0.039115545,0.038502184,0.037865935,0.037091185,0.036337627,0.035604531,0.034891198,0.034196958,0.033521164,0.032863198,0.032222466,0.031598396,0.03099044,0.03039807,0.029820779,0.029258081,0.028709507,0.028174607,0.027652947,0.027144112,0.026647699,0.026163323,0.025690612,0.025229209,0.02477877,0.024338962,0.023909466,0.023489974,0.023080188,0.022679823,0.022288603,0.021906262,0.021532542,0.021167196,0.020809985,0.020460678,0.020119052,0.019784892,0.01945799,0.019138146,0.018825165,0.01851886,0.01821905,0.017925559,0.017638217,0.017356862,0.017081334,0.01681148,0.016547151,0.016288203,0.016034498,0.015785901,0.015542281,0.015303511,0.015069469,0.014840036,0.014615098,0.014394542,0.014178261,0.013966149,0.013758105,0.01355403,0.013353829,0.013157407,0.012964676,0.012775547,0.012589935,0.012407759,0.012228937,0.012053392,0.011881047,0.011711831,0.01154567,0.011382496,0.011222241,0.011064839,0.010910226,0.010758341,0.010609123,0.010462513,0.010318453,0.010176889,0.010037766,0.009901031,0.009766634,0.009634523,0.00950465,0.009376969,0.009251432,0.009127994,0.009006613,0.008887245,0.008769848,0.008654382,0.008540807,0.008429085,0.008319178,0.008211049,0.008104664,0.007999985,0.007896981,0.007795617,0.007695861,0.007597681,0.007501047,0.007405929,0.007312296,0.007220121,0.007129375,0.00704003,0.006952061,0.00686544,0.006780143,0.006696145,0.00661342,0.006531946,0.006451699,0.006372656,0.006294795,0.006218094,0.006142533,0.006068089,0.005994744,0.005922477,0.005851268,0.005781099,0.005711951,0.005643806,0.005576646,0.005510453,0.005445211,0.005380903,0.005317513,0.005255024,0.005193422,0.005132689,0.005072813,0.005013778,0.004955569,0.004898173,0.004841575,0.004785763,0.004730723,0.004676441,0.004622906,0.004570105,0.004518026,0.004466657,0.004415985,0.004366,0.00431669,0.004268045,0.004220053,0.004172704,0.004125988,0.004079893,0.004034411,0.003989532,0.003945245,0.003901542,0.003858413,0.003815849,0.003773841,0.003732381,0.00369146,0.003651069,0.003611201,0.003571846,0.003532998,0.003494649,0.00345679,0.003419414,0.003382514,0.003346083,0.003310113,0.003274598,0.003239531,0.003204904,0.003170712,0.003136947,0.003103605,0.003070677,0.003038158,0.003006042,0.002974324,0.002942996,0.002912055,0.002881493,0.002851305,0.002821486,0.002792031,0.002762934,0.00273419,0.002705794,0.002677741,0.002650027,0.002622646,0.002595593,0.002568864,0.002542455,0.002516361,0.002490577,0.002465099,0.002439923,0.002415044,0.002390459,0.002366163,0.002342153,0.002318424,0.002294973,0.002271795,0.002248888,0.002226247,0.002203868,0.002181749,0.002159885,0.002138273,0.00211691,0.002095792,0.002074916,0.002054279,0.002033878,0.002013709,0.188484731,0.188272108,0.187637867,0.186592728,0.185154024,0.183344946,0.181193582,0.17873181,0.175994137,0.173016548,0.169835435,0.166486652,0.163004714,0.159422179,0.155769189,0.152073171,0.148358681,0.144647362,0.140957996,0.13730663,0.13370675,0.130169488,0.126703845,0.123316917,0.120047334,0.116925425,0.113941985,0.111088524,0.108357204,0.105740782,0.103232555,0.100825662,0.098487747,0.096204655,0.09397771,0.091807755,0.089695212,0.087640148,0.085642324,0.083701245,0.081816205,0.079986321,0.078210569,0.076487811,0.074816822,0.073196308,0.071624931,0.070101315,0.068624071,0.067191796,0.065803094,0.064456576,0.063150869,0.061884622,0.06065651,0.059465234,0.058309531,0.057188168,0.056099947,0.055043708,0.054018325,0.053022711,0.052055812,0.051116613,0.050204135,0.049317432,0.048455594,0.047617745,0.046803041,0.046010671,0.045239854,0.044489838,0.043759902,0.043049353,0.042357523,0.041683772,0.041027484,0.040388066,0.039764951,0.039157593,0.038395884,0.037625455,0.036875716,0.036145969,0.03543554,0.034743785,0.034070083,0.033413839,0.032774479,0.032151453,0.031544232,0.030952306,0.030375188,0.029812406,0.029263506,0.028728054,0.02820563,0.027695831,0.027198268,0.026712566,0.026238365,0.025775318,0.025323091,0.02488136,0.024449816,0.024028157,0.023616097,0.023213354,0.022819662,0.02243476,0.022058397,0.021690332,0.021330332,0.02097817,0.02063363,0.020296501,0.019966579,0.019643668,0.019327577,0.019018125,0.018715131,0.018418426,0.018127842,0.017843218,0.0175644,0.017291235,0.017023579,0.01676129,0.016504231,0.016252269,0.016005276,0.015763128,0.015525703,0.015292885,0.01506456,0.014840618,0.014620953,0.01440546,0.01419404,0.013986595,0.01378303,0.013583253,0.013387176,0.013194711,0.013005774,0.012820284,0.012638161,0.012459328,0.01228371,0.012111234,0.011941829,0.011775427,0.01161196,0.011451362,0.011293572,0.011138526,0.010986165,0.010836431,0.010689266,0.010544616,0.010402426,0.010262643,0.010125218,0.009990099,0.009857239,0.00972659,0.009598106,0.009471742,0.009347455,0.009225202,0.009104941,0.008986632,0.008870236,0.008755713,0.008643027,0.00853214,0.008423017,0.008315623,0.008209924,0.008105886,0.008003478,0.007902667,0.007803423,0.007705716,0.007609515,0.007514792,0.00742152,0.00732967,0.007239216,0.007150132,0.007062391,0.00697597,0.006890843,0.006806986,0.006724377,0.006642992,0.006562809,0.006483806,0.006405962,0.006329256,0.006253667,0.006179176,0.006105763,0.006033409,0.005962095,0.005891802,0.005822513,0.005754211,0.005686878,0.005620497,0.005555052,0.005490527,0.005426906,0.005364173,0.005302314,0.005241313,0.005181156,0.005121829,0.005063319,0.00500561,0.00494869,0.004892547,0.004837166,0.004782535,0.004728643,0.004675477,0.004623025,0.004571275,0.004520216,0.004469838,0.004420128,0.004371077,0.004322674,0.004274908,0.004227769,0.004181248,0.004135334,0.004090019,0.004045292,0.004001145,0.003957568,0.003914553,0.00387209,0.003830172,0.003788791,0.003747936,0.003707602,0.00366778,0.003628461,0.003589639,0.003551306,0.003513454,0.003476077,0.003439166,0.003402716,0.00336672,0.00333117,0.00329606,0.003261383,0.003227134,0.003193306,0.003159893,0.003126888,0.003094286,0.003062081,0.003030267,0.002998838,0.00296779,0.002937116,0.002906812,0.002876871,0.002847289,0.002818061,0.002789181,0.002760646,0.002732449,0.002704586,0.002677053,0.002649844,0.002622956,0.002596384,0.002570124,0.002544171,0.00251852,0.002493169,0.002468112,0.002443346,0.002418867,0.002394671,0.002370754,0.002347112,0.002323741,0.002300638,0.0022778,0.002255222,0.002232902,0.002210835,0.002189019,0.00216745,0.002146125,0.190247816,0.190033279,0.18939337,0.188339026,0.186887923,0.185063695,0.182894944,0.180414099,0.177656221,0.174657827,0.171455793,0.168086391,0.164584485,0.160982901,0.157311978,0.153599266,0.149869386,0.146143992,0.142441836,0.138778903,0.135168594,0.131621941,0.128147833,0.12475492,0.12149392,0.118379288,0.115401928,0.112553448,0.109826108,0.107212748,0.104706744,0.102301957,0.099988156,0.097731312,0.095526797,0.093375783,0.091279004,0.089236817,0.08724925,0.085316059,0.083436766,0.081610698,0.079837026,0.078114787,0.076442916,0.074820269,0.073245637,0.071717769,0.070235383,0.068797178,0.067401848,0.066048085,0.06473459,0.063460079,0.062223287,0.061022971,0.059857916,0.058726933,0.057628865,0.056562588,0.055527008,0.054521066,0.053543736,0.052594027,0.051670979,0.050773666,0.049901197,0.049052709,0.048227372,0.047424387,0.046642985,0.045882423,0.045141988,0.044420996,0.043718784,0.04303472,0.042368191,0.041718611,0.041085415,0.04046806,0.039769929,0.038981866,0.038214728,0.037467818,0.036740462,0.036032014,0.035341853,0.034669382,0.034014026,0.033375234,0.032752473,0.032145234,0.031553024,0.03097537,0.030411818,0.029861928,0.029325279,0.028801464,0.028290093,0.027790787,0.027303185,0.026826934,0.026361699,0.025907154,0.025462985,0.025028889,0.024604575,0.02418976,0.023784174,0.023387554,0.022999646,0.022620206,0.022248998,0.021885793,0.021530371,0.02118252,0.020842032,0.020508709,0.020182358,0.019862794,0.019549835,0.019243308,0.018943044,0.01864888,0.018360658,0.018078224,0.01780143,0.017530134,0.017264195,0.017003479,0.016747856,0.016497199,0.016251384,0.016010294,0.015773812,0.015541827,0.01531423,0.015090916,0.014871782,0.014656729,0.01444566,0.014238482,0.014035105,0.013835439,0.013639399,0.013446902,0.013257866,0.013072214,0.012889867,0.012710753,0.012534798,0.012361933,0.012192088,0.012025198,0.011861197,0.011700023,0.011541613,0.011385909,0.011232853,0.011082387,0.010934457,0.010789008,0.010645989,0.010505349,0.010367038,0.010231008,0.010097211,0.009965602,0.009836136,0.00970877,0.00958346,0.009460165,0.009338845,0.00921946,0.009101972,0.008986343,0.008872537,0.008760518,0.00865025,0.0085417,0.008434834,0.008329621,0.008226027,0.008124023,0.008023578,0.007924663,0.007827248,0.007731306,0.007636808,0.007543728,0.00745204,0.007361718,0.007272737,0.007185071,0.007098698,0.007013594,0.006929735,0.0068471,0.006765666,0.006685412,0.006606316,0.006528359,0.00645152,0.006375779,0.006301117,0.006227516,0.006154956,0.00608342,0.00601289,0.005943349,0.00587478,0.005807166,0.005740491,0.005674739,0.005609894,0.005545941,0.005482866,0.005420653,0.005359288,0.005298758,0.005239047,0.005180144,0.005122033,0.005064704,0.005008142,0.004952336,0.004897273,0.00484294,0.004789328,0.004736423,0.004684214,0.004632691,0.004581843,0.004531658,0.004482127,0.004433239,0.004384984,0.004337353,0.004290335,0.004243921,0.004198101,0.004152867,0.004108209,0.00406412,0.004020589,0.003977608,0.00393517,0.003893266,0.003851887,0.003811027,0.003770677,0.003730829,0.003691477,0.003652612,0.003614228,0.003576317,0.003538872,0.003501888,0.003465356,0.00342927,0.003393624,0.003358412,0.003323627,0.003289262,0.003255313,0.003221772,0.003188635,0.003155895,0.003123547,0.003091585,0.003060003,0.003028797,0.002997961,0.002967489,0.002937378,0.002907621,0.002878214,0.002849151,0.002820429,0.002792042,0.002763987,0.002736257,0.002708849,0.002681759,0.002654981,0.002628513,0.002602349,0.002576485,0.002550918,0.002525643,0.002500657,0.002475956,0.002451535,0.002427392,0.002403522,0.002379921,0.002356587,0.002333516,0.002310704,0.002288147,0.192230445,0.192013302,0.191365673,0.190298776,0.188830731,0.186985755,0.184793119,0.182285973,0.179500111,0.176472749,0.173241412,0.169842935,0.166312656,0.162683781,0.158986926,0.155249838,0.151497248,0.147750857,0.144029405,0.140348825,0.136722431,0.133161147,0.129673741,0.126275077,0.123020215,0.119910592,0.116937208,0.114091763,0.111366593,0.108754616,0.106249272,0.103844485,0.101534615,0.099305395,0.097126527,0.094997327,0.092918865,0.090891813,0.088916493,0.086992933,0.085120903,0.083299965,0.081529499,0.079808737,0.078136792,0.07651268,0.07493534,0.073403655,0.071916464,0.070472578,0.069070787,0.067709876,0.066388627,0.065105831,0.063860288,0.062650816,0.061476254,0.060335463,0.05922733,0.05815077,0.057104725,0.056088168,0.055100103,0.054139564,0.053205615,0.052297351,0.051413899,0.050554413,0.04971808,0.048904111,0.048111751,0.047340268,0.046588958,0.045857145,0.045144174,0.044449419,0.043772273,0.043112155,0.042468505,0.041840783,0.041220376,0.040413823,0.039628441,0.038863531,0.03811842,0.037392461,0.036685032,0.035995535,0.035323394,0.034668056,0.034028986,0.033405672,0.032797621,0.032204356,0.03162542,0.031060371,0.030508786,0.029970255,0.029444383,0.028930791,0.028429112,0.027938994,0.027460096,0.02699209,0.026534658,0.026087495,0.025650307,0.025222809,0.024804725,0.024395791,0.023995751,0.023604357,0.023221369,0.022846557,0.022479698,0.022120575,0.02176898,0.021424711,0.021087573,0.020757377,0.020433941,0.020117086,0.019806643,0.019502445,0.019204332,0.018912148,0.018625743,0.018344972,0.018069692,0.017799766,0.017535062,0.017275452,0.017020809,0.016771014,0.016525948,0.016285497,0.016049552,0.015818004,0.015590749,0.015367687,0.015148718,0.014933748,0.014722683,0.014515435,0.014311914,0.014112037,0.01391572,0.013722884,0.01353345,0.013347342,0.013164486,0.01298481,0.012808246,0.012634723,0.012464177,0.012296543,0.012131758,0.011969762,0.011810494,0.011653896,0.011499914,0.01134849,0.011199573,0.01105311,0.01090905,0.010767344,0.010627943,0.0104908,0.01035587,0.010223108,0.01009247,0.009963914,0.009837397,0.009712881,0.009590324,0.00946969,0.009350939,0.009234036,0.009118944,0.009005629,0.008894057,0.008784193,0.008676006,0.008569464,0.008464535,0.00836119,0.008259398,0.008159131,0.00806036,0.007963058,0.007867198,0.007772753,0.007679697,0.007588006,0.007497654,0.007408617,0.007320871,0.007234394,0.007149163,0.007065156,0.006982351,0.006900727,0.006820263,0.00674094,0.006662736,0.006585633,0.006509612,0.006434654,0.00636074,0.006287854,0.006215977,0.006145093,0.006075184,0.006006235,0.005938229,0.00587115,0.005804983,0.005739713,0.005675325,0.005611805,0.005549138,0.00548731,0.005426308,0.005366118,0.005306727,0.005248122,0.005190291,0.005133222,0.005076901,0.005021317,0.004966459,0.004912315,0.004858874,0.004806124,0.004754055,0.004702657,0.004651918,0.004601829,0.00455238,0.004503561,0.004455361,0.004407772,0.004360785,0.00431439,0.004268578,0.00422334,0.004178668,0.004134554,0.004090988,0.004047963,0.004005471,0.003963503,0.003922053,0.003881112,0.003840672,0.003800728,0.003761271,0.003722294,0.00368379,0.003645753,0.003608175,0.003571051,0.003534373,0.003498135,0.003462331,0.003426955,0.003392,0.003357461,0.003323332,0.003289607,0.00325628,0.003223346,0.0031908,0.003158635,0.003126846,0.003095429,0.003064379,0.003033689,0.003003356,0.002973374,0.002943739,0.002914445,0.002885489,0.002856865,0.002828569,0.002800597,0.002772944,0.002745606,0.002718579,0.002691859,0.002665441,0.002639322,0.002613497,0.002587963,0.002562716,0.002537751,0.002513067,0.002488657,0.00246452,0.002440652,0.194462288,0.194241725,0.193583959,0.192500569,0.191010247,0.18913795,0.186913811,0.184371907,0.18154897,0.178483126,0.175212732,0.171775363,0.168206979,0.164541283,0.160809276,0.15703897,0.153255265,0.149479941,0.145731751,0.142026579,0.138377652,0.134795772,0.131289569,0.127887062,0.124636199,0.121529593,0.118558329,0.115714183,0.112989563,0.11037745,0.107871345,0.105465223,0.103153495,0.100930967,0.09878079,0.096676852,0.094619778,0.092610582,0.090649908,0.088738081,0.08687515,0.085060929,0.083295033,0.08157691,0.079905868,0.078281103,0.076701719,0.075166746,0.073675159,0.072225891,0.070817844,0.069449903,0.068120943,0.066829834,0.065575454,0.064356687,0.063172432,0.062021604,0.060903141,0.059816001,0.058759167,0.057731649,0.056732481,0.055760726,0.054815475,0.053895848,0.053000989,0.052130074,0.051282305,0.05045691,0.049653144,0.048870289,0.048107652,0.047364565,0.046640382,0.045934484,0.045246271,0.044575167,0.043920616,0.043282084,0.042659056,0.041930365,0.041125763,0.040341889,0.039578069,0.038833657,0.038108031,0.03740059,0.036710757,0.036037977,0.035381715,0.034741455,0.034116702,0.033506978,0.032911821,0.032330789,0.031763454,0.031209403,0.03066824,0.030139581,0.029623058,0.029118314,0.028625005,0.0281428,0.02767138,0.027210434,0.026759666,0.026318788,0.025887521,0.025465597,0.025052757,0.024648751,0.024253335,0.023866277,0.02348735,0.023116335,0.02275302,0.022397201,0.02204868,0.021707264,0.021372769,0.021045016,0.020723829,0.020409041,0.020100489,0.019798014,0.019501464,0.01921069,0.018925549,0.018645901,0.01837161,0.018102547,0.017838584,0.017579596,0.017325466,0.017076076,0.016831314,0.016591071,0.01635524,0.016123718,0.015896405,0.015673204,0.01545402,0.01523876,0.015027337,0.014819663,0.014615654,0.014415227,0.014218303,0.014024804,0.013834655,0.013647783,0.013464115,0.013283583,0.013106119,0.012931656,0.012760131,0.012591481,0.012425646,0.012262566,0.012102183,0.011944442,0.011789287,0.011636666,0.011486525,0.011338815,0.011193485,0.011050489,0.010909778,0.010771307,0.010635032,0.010500908,0.010368893,0.010238945,0.010111025,0.009985092,0.009861107,0.009739035,0.009618836,0.009500476,0.00938392,0.009269132,0.009156081,0.009044733,0.008935055,0.008827018,0.00872059,0.008615742,0.008512445,0.008410669,0.008310389,0.008211575,0.008114202,0.008018243,0.007923674,0.007830468,0.007738603,0.007648054,0.007558798,0.007470812,0.007384074,0.007298562,0.007214255,0.007131131,0.007049171,0.006968354,0.006888661,0.006810072,0.006732569,0.006656134,0.006580748,0.006506393,0.006433053,0.006360711,0.006289349,0.006218952,0.006149504,0.006080988,0.006013391,0.005946696,0.00588089,0.005815957,0.005751883,0.005688655,0.00562626,0.005564683,0.005503912,0.005443934,0.005384736,0.005326306,0.005268633,0.005211703,0.005155506,0.00510003,0.005045265,0.004991198,0.004937819,0.004885117,0.004833083,0.004781706,0.004730976,0.004680883,0.004631418,0.004582571,0.004534332,0.004486693,0.004439645,0.004393179,0.004347286,0.004301958,0.004257186,0.004212963,0.00416928,0.004126129,0.004083502,0.004041393,0.003999793,0.003958695,0.003918092,0.003877976,0.003838342,0.003799181,0.003760487,0.003722254,0.003684475,0.003647143,0.003610252,0.003573797,0.00353777,0.003502166,0.00346698,0.003432204,0.003397835,0.003363865,0.003330289,0.003297103,0.0032643,0.003231875,0.003199824,0.003168141,0.003136822,0.00310586,0.003075252,0.003044993,0.003015077,0.002985501,0.00295626,0.002927349,0.002898765,0.002870501,0.002842556,0.002814923,0.0027876,0.002760582,0.002733864,0.002707444,0.002681317,0.00265548,0.002629928,0.002604658,0.196978216,0.196753265,0.196082492,0.194977933,0.193459006,0.191551607,0.189286961,0.186700321,0.183829613,0.180714113,0.177393241,0.17390551,0.170287677,0.166574091,0.162796242,0.158982499,0.155157986,0.151344604,0.147561135,0.14382342,0.140144589,0.136535311,0.13300437,0.129601494,0.126351706,0.123245398,0.120273723,0.117428519,0.11470225,0.112087948,0.109579161,0.107169908,0.104854638,0.102628194,0.100485776,0.098410843,0.096379077,0.094391244,0.09244834,0.090551016,0.088699627,0.086894268,0.085134814,0.083420952,0.08175221,0.080127984,0.078547559,0.077010134,0.075514835,0.074060733,0.072646855,0.071272199,0.069935742,0.06863645,0.067373281,0.066145197,0.064951165,0.063790162,0.062661181,0.061563231,0.06049534,0.059456557,0.058445955,0.057462629,0.056505699,0.055574311,0.054667633,0.053784863,0.052925221,0.052087952,0.051272326,0.05047764,0.049703211,0.048948382,0.048212517,0.047495004,0.046795252,0.046112691,0.04544677,0.04479696,0.044162749,0.043539082,0.042714214,0.041910338,0.041126784,0.040362904,0.039618075,0.038891697,0.038183192,0.037492001,0.03681759,0.036159439,0.035517051,0.034889946,0.03427766,0.033679747,0.033095776,0.032525333,0.031968018,0.031423443,0.030891237,0.030371041,0.029862507,0.0293653,0.028879098,0.028403589,0.02793847,0.027483452,0.027038253,0.026602601,0.026176233,0.025758896,0.025350345,0.024950343,0.024558659,0.024175072,0.023799368,0.023431339,0.023070783,0.022717506,0.022371319,0.022032041,0.021699495,0.021373509,0.021053918,0.020740561,0.020433282,0.02013193,0.019836359,0.019546428,0.019261998,0.018982936,0.018709113,0.018440403,0.018176683,0.017917836,0.017663747,0.017414304,0.017169399,0.016928926,0.016692783,0.016460872,0.016233094,0.016009358,0.01578957,0.015573644,0.015361492,0.01515303,0.014948178,0.014746855,0.014548985,0.014354493,0.014163305,0.01397535,0.01379056,0.013608866,0.013430203,0.013254507,0.013081717,0.01291177,0.012744608,0.012580174,0.012418411,0.012259264,0.012102681,0.01194861,0.011796999,0.011647799,0.011500962,0.011356441,0.01121419,0.011074164,0.010936321,0.010800616,0.010667009,0.010535458,0.010405925,0.010278371,0.010152757,0.010029047,0.009907205,0.009787195,0.009668984,0.009552538,0.009437823,0.009324808,0.009213462,0.009103753,0.008995652,0.00888913,0.008784158,0.008680708,0.008578752,0.008478264,0.008379218,0.008281588,0.008185349,0.008090477,0.007996947,0.007904736,0.007813821,0.00772418,0.00763579,0.00754863,0.00746268,0.007377918,0.007294324,0.007211878,0.007130561,0.007050354,0.006971239,0.006893197,0.00681621,0.006740261,0.006665332,0.006591408,0.006518471,0.006446505,0.006375495,0.006305425,0.00623628,0.006168045,0.006100705,0.006034246,0.005968654,0.005903916,0.005840017,0.005776944,0.005714686,0.005653228,0.005592558,0.005532664,0.005473534,0.005415157,0.00535752,0.005300612,0.005244423,0.00518894,0.005134154,0.005080053,0.005026629,0.004973869,0.004921765,0.004870306,0.004819483,0.004769286,0.004719707,0.004670735,0.004622362,0.00457458,0.00452738,0.004480752,0.004434689,0.004389183,0.004344225,0.004299808,0.004255924,0.004212564,0.004169723,0.004127391,0.004085563,0.004044231,0.004003387,0.003963026,0.003923139,0.003883721,0.003844766,0.003806265,0.003768214,0.003730606,0.003693435,0.003656694,0.003620379,0.003584483,0.003548999,0.003513924,0.003479251,0.003444974,0.003411089,0.00337759,0.003344472,0.003311729,0.003279357,0.003247351,0.003215706,0.003184416,0.003153479,0.003122887,0.003092638,0.003062727,0.003033149,0.003003899,0.002974975,0.00294637,0.002918082,0.002890105,0.002862437,0.002835073,0.002808009,0.002781241,0.199819675,0.199589174,0.19890195,0.197770616,0.196215505,0.194263701,0.191947805,0.189304553,0.186373371,0.183194984,0.179810148,0.176258557,0.172577968,0.16880354,0.164967389,0.16109833,0.15722178,0.153359797,0.149531209,0.145751816,0.142034638,0.138390184,0.134835025,0.13142994,0.128177393,0.125067823,0.122092427,0.119243085,0.116512298,0.113893131,0.111379164,0.108964446,0.106643452,0.104411048,0.102262458,0.100193234,0.098190342,0.096228392,0.094307323,0.092428147,0.090591553,0.088797948,0.087047496,0.085340151,0.083675684,0.082053716,0.08047374,0.078935141,0.077437216,0.075979192,0.074560238,0.073179481,0.071836015,0.07052891,0.069257221,0.068019996,0.066816279,0.065645121,0.064505576,0.06339671,0.062317603,0.061267352,0.06024507,0.059249891,0.058280969,0.057337479,0.056418618,0.055523607,0.054651687,0.053802125,0.052974208,0.052167246,0.051380572,0.050613541,0.049865528,0.049135931,0.048424166,0.04772967,0.047051902,0.046390335,0.045744465,0.045113803,0.044401503,0.043576531,0.042772157,0.041987732,0.041222635,0.040476264,0.039748041,0.039037406,0.038343822,0.03766677,0.037005748,0.036360275,0.035729884,0.035114127,0.03451257,0.033924796,0.0333504,0.032788995,0.032240203,0.031703663,0.031179024,0.030665948,0.030164109,0.029673191,0.029192889,0.028722909,0.028262966,0.027812786,0.027372102,0.026940657,0.026518203,0.026104498,0.025699311,0.025302417,0.024913596,0.024532639,0.024159342,0.023793506,0.02343494,0.02308346,0.022738884,0.022401039,0.022069758,0.021744875,0.021426232,0.021113677,0.020807059,0.020506235,0.020211064,0.01992141,0.019637141,0.019358129,0.01908425,0.018815383,0.01855141,0.018292219,0.018037697,0.017787738,0.017542238,0.017301095,0.017064209,0.016831487,0.016602833,0.016378158,0.016157374,0.015940394,0.015727136,0.015517518,0.015311461,0.015108888,0.014909725,0.014713899,0.014521339,0.014331976,0.014145742,0.013962572,0.013782403,0.013605171,0.013430818,0.013259282,0.013090508,0.012924438,0.012761019,0.012600196,0.012441919,0.012286135,0.012132796,0.011981853,0.011833259,0.011686969,0.011542937,0.01140112,0.011261475,0.01112396,0.010988534,0.010855158,0.010723793,0.010594401,0.010466945,0.010341388,0.010217696,0.010095834,0.009975767,0.009857464,0.009740891,0.009626018,0.009512813,0.009401246,0.009291288,0.009182909,0.009076083,0.008970781,0.008866975,0.008764641,0.008663752,0.008564282,0.008466207,0.008369503,0.008274147,0.008180114,0.008087382,0.00799593,0.007905734,0.007816775,0.007729031,0.007642481,0.007557106,0.007472886,0.007389802,0.007307835,0.007226967,0.007147179,0.007068454,0.006990775,0.006914124,0.006838484,0.006763841,0.006690177,0.006617476,0.006545724,0.006474905,0.006405005,0.006336009,0.006267902,0.006200671,0.006134302,0.006068782,0.006004097,0.005940235,0.005877182,0.005814927,0.005753456,0.005692759,0.005632823,0.005573637,0.00551519,0.005457469,0.005400465,0.005344167,0.005288563,0.005233644,0.0051794,0.005125821,0.005072896,0.005020616,0.004968971,0.004917953,0.004867553,0.00481776,0.004768567,0.004719965,0.004671945,0.004624499,0.004577618,0.004531295,0.004485522,0.004440291,0.004395594,0.004351423,0.004307772,0.004264633,0.004221998,0.004179861,0.004138215,0.004097054,0.004056369,0.004016155,0.003976405,0.003937114,0.003898274,0.003859879,0.003821924,0.003784402,0.003747308,0.003710635,0.003674379,0.003638533,0.003603092,0.003568051,0.003533404,0.003499146,0.003465271,0.003431776,0.003398655,0.003365902,0.003333513,0.003301484,0.003269809,0.003238485,0.003207505,0.003176867,0.003146565,0.003116595,0.003086954,0.003057635,0.003028637,0.002999954,0.002971582,0.16203131,0.161903083,0.161520056,0.160887139,0.160012325,0.15890642,0.15758269,0.156056446,0.154344594,0.152465165,0.150436861,0.148278627,0.146009262,0.143647086,0.141209664,0.138713589,0.136174324,0.133606096,0.131021835,0.128433161,0.125850397,0.12328261,0.120737671,0.118222333,0.115742312,0.113302377,0.110906435,0.10857318,0.106328205,0.104167258,0.10208588,0.100079912,0.098145475,0.096278945,0.09447693,0.092736257,0.091053954,0.089427231,0.087853471,0.086330213,0.084855146,0.08342609,0.082038629,0.080676606,0.079337916,0.078023132,0.076732682,0.075466871,0.074225887,0.073009822,0.071818678,0.070652378,0.06951078,0.068393681,0.067300828,0.066231927,0.065186644,0.064164616,0.063165454,0.062188748,0.061234071,0.060300985,0.05938904,0.05849778,0.057626744,0.056775471,0.055943498,0.055130363,0.054335609,0.05355878,0.052799429,0.052057113,0.051331395,0.050621846,0.049928047,0.049249584,0.048586054,0.047937062,0.047302223,0.046681158,0.046073503,0.045284688,0.044482729,0.043699297,0.042933883,0.042185989,0.041455133,0.040740847,0.040042675,0.039360175,0.038692919,0.038040491,0.037402486,0.036778512,0.036168191,0.035571152,0.03498704,0.034415506,0.033856215,0.033308841,0.032773067,0.032248587,0.031735105,0.031232331,0.030739986,0.030257799,0.029785508,0.029322857,0.028869599,0.028425495,0.027990311,0.027563822,0.027145809,0.026736061,0.02633437,0.025940536,0.025554367,0.025175672,0.02480427,0.024439983,0.024082639,0.02373207,0.023388113,0.023050612,0.022719412,0.022394365,0.022075326,0.021762154,0.021454714,0.021152872,0.020856498,0.020565469,0.020279661,0.019998956,0.019723239,0.019452398,0.019186323,0.018924909,0.018668052,0.018415652,0.018167611,0.017923834,0.017684228,0.017448702,0.01721717,0.016989546,0.016765746,0.016545689,0.016329297,0.016116492,0.015907199,0.015701346,0.015498861,0.015299674,0.015103718,0.014910927,0.014721237,0.014534585,0.014350909,0.014170151,0.013992251,0.013817154,0.013644803,0.013475145,0.013308127,0.013143697,0.012981805,0.012822402,0.01266544,0.012510873,0.012358654,0.012208739,0.012061085,0.011915648,0.011772388,0.011631263,0.011492235,0.011355263,0.011220311,0.01108734,0.010956316,0.010827202,0.010699964,0.010574567,0.01045098,0.010329169,0.010209102,0.01009075,0.009974081,0.009859065,0.009745674,0.00963388,0.009523654,0.009414969,0.009307799,0.009202117,0.009097899,0.008995118,0.008893751,0.008793774,0.008695163,0.008597895,0.008501948,0.008407299,0.008313927,0.008221811,0.008130931,0.008041265,0.007952794,0.007865498,0.007779358,0.007694356,0.007610473,0.007527691,0.007445993,0.00736536,0.007285777,0.007207226,0.007129691,0.007053156,0.006977605,0.006903024,0.006829396,0.006756707,0.006684942,0.006614088,0.006544129,0.006475053,0.006406846,0.006339495,0.006272986,0.006207306,0.006142444,0.006078387,0.006015123,0.00595264,0.005890927,0.005829971,0.005769762,0.005710288,0.00565154,0.005593505,0.005536175,0.005479538,0.005423584,0.005368304,0.005313687,0.005259725,0.005206407,0.005153725,0.005101669,0.005050231,0.004999401,0.004949172,0.004899534,0.00485048,0.004802,0.004754088,0.004706735,0.004659933,0.004613675,0.004567953,0.004522759,0.004478087,0.00443393,0.00439028,0.00434713,0.004304473,0.004262304,0.004220614,0.004179398,0.00413865,0.004098363,0.00405853,0.004019147,0.003980206,0.003941702,0.003903629,0.003865981,0.003828754,0.00379194,0.003755536,0.003719535,0.003683932,0.003648722,0.0036139,0.003579461,0.003545399,0.003511711,0.003478391,0.003445435,0.003412837,0.003380593,0.0033487,0.003317151,0.003285944,0.003255073,0.003224534,0.003194324,0.003164437,0.170817503,0.17068078,0.170272421,0.169597792,0.168665623,0.167487708,0.166078504,0.164454671,0.162634569,0.16063774,0.158484405,0.156194995,0.153789728,0.151288249,0.148709334,0.146070665,0.143388663,0.14067838,0.137953451,0.135226079,0.132507061,0.12980584,0.127130575,0.124488232,0.121884673,0.119324757,0.116814658,0.114389445,0.112056166,0.109809869,0.107645941,0.105560084,0.103548284,0.101606794,0.099732106,0.09792094,0.096170221,0.094477066,0.092838766,0.091252778,0.089716711,0.088228313,0.086785464,0.085386053,0.084016653,0.082669526,0.081345302,0.080044471,0.078767396,0.077514326,0.07628541,0.075080705,0.07390019,0.072743777,0.071611312,0.070502593,0.069417371,0.068355356,0.067316228,0.066299636,0.06530521,0.064332556,0.06338127,0.062450933,0.061541118,0.060651392,0.059781317,0.058930455,0.058098367,0.057284615,0.056488762,0.055710379,0.054949037,0.054204317,0.053475803,0.052763086,0.052065766,0.05138345,0.050715753,0.050062298,0.049422715,0.048759445,0.047908499,0.04707688,0.046264067,0.045469557,0.044692857,0.043933488,0.043190985,0.042464896,0.041754781,0.041060213,0.040380777,0.03971607,0.0390657,0.038429287,0.037806462,0.037196868,0.036600156,0.03601599,0.035444041,0.034883992,0.034335535,0.03379837,0.033272207,0.032756764,0.032251769,0.031756955,0.031272064,0.030796848,0.030331063,0.029874474,0.029426853,0.028987977,0.028557632,0.028135607,0.027721701,0.027315715,0.026917459,0.026526746,0.026143396,0.025767234,0.025398088,0.025035794,0.02468019,0.024331121,0.023988433,0.02365198,0.023321617,0.022997206,0.02267861,0.022365697,0.022058339,0.021756412,0.021459793,0.021168364,0.020882011,0.020600622,0.020324087,0.0200523,0.01978516,0.019522564,0.019264415,0.019010619,0.018761082,0.018515713,0.018274426,0.018037133,0.017803753,0.017574202,0.017348402,0.017126276,0.016907748,0.016692744,0.016481193,0.016273026,0.016068173,0.015866569,0.015668148,0.015472848,0.015280606,0.015091363,0.01490506,0.014721638,0.014541043,0.01436322,0.014188115,0.014015676,0.013845852,0.013678594,0.013513853,0.013351582,0.013191734,0.013034264,0.012879128,0.012726283,0.012575685,0.012427295,0.012281072,0.012136976,0.011994969,0.011855013,0.011717071,0.011581107,0.011447086,0.011314973,0.011184735,0.011056338,0.010929751,0.010804941,0.010681877,0.01056053,0.01044087,0.010322867,0.010206494,0.010091722,0.009978524,0.009866873,0.009756745,0.009648112,0.009540949,0.009435233,0.009330939,0.009228044,0.009126525,0.009026358,0.008927522,0.008829995,0.008733756,0.008638784,0.008545058,0.008452559,0.008361266,0.008271161,0.008182225,0.008094438,0.008007783,0.007922243,0.007837799,0.007754434,0.007672132,0.007590875,0.007510649,0.007431437,0.007353223,0.007275992,0.007199729,0.007124419,0.007050048,0.006976602,0.006904066,0.006832428,0.006761673,0.006691788,0.00662276,0.006554578,0.006487227,0.006420697,0.006354974,0.006290047,0.006225904,0.006162535,0.006099927,0.00603807,0.005976953,0.005916565,0.005856895,0.005797934,0.005739672,0.005682098,0.005625202,0.005568976,0.005513409,0.005458493,0.005404218,0.005350575,0.005297555,0.005245151,0.005193353,0.005142152,0.005091541,0.005041512,0.004992057,0.004943167,0.004894836,0.004847054,0.004799816,0.004753114,0.00470694,0.004661287,0.004616149,0.004571518,0.004527388,0.004483752,0.004440603,0.004397936,0.004355743,0.004314018,0.004272756,0.00423195,0.004191595,0.004151684,0.004112211,0.004073171,0.004034559,0.003996369,0.003958595,0.003921232,0.003884275,0.003847718,0.003811557,0.003775787,0.003740402,0.003705397,0.003670769,0.003636511,0.00360262,0.003569091,0.003535919,0.0035031,0.180382962,0.18023634,0.179798473,0.179075287,0.178076414,0.17681485,0.175306503,0.173569671,0.171624472,0.169492266,0.167195092,0.164755152,0.162194341,0.159533862,0.156793907,0.153993411,0.151149894,0.148279346,0.145396186,0.14251326,0.139641877,0.136791877,0.133971716,0.131188565,0.128448419,0.125756205,0.123132737,0.120609248,0.118181121,0.115843218,0.113590756,0.111419275,0.109324616,0.107302891,0.105350465,0.103463935,0.101640115,0.099876014,0.098168826,0.096515915,0.094914802,0.093363153,0.09185877,0.090399581,0.088983632,0.087605973,0.086251261,0.08491825,0.083607504,0.082319463,0.081054447,0.079812676,0.078594278,0.077399297,0.076227707,0.075079418,0.073954284,0.072852109,0.071772659,0.07071566,0.069680809,0.068667778,0.067676217,0.066705757,0.065756016,0.064826601,0.063917109,0.063027133,0.06215626,0.061304076,0.060470166,0.059654118,0.058855518,0.058073958,0.057309035,0.056560348,0.055827504,0.055110115,0.054407799,0.053720183,0.053046899,0.052387588,0.051647979,0.050764758,0.049901151,0.049056646,0.048230744,0.04742296,0.046632818,0.045859858,0.045103631,0.044363699,0.043639637,0.042931032,0.042237482,0.041558595,0.040893993,0.040243305,0.039606173,0.038982249,0.038371195,0.03777268,0.037186386,0.036612003,0.036049229,0.035497773,0.034957348,0.034427681,0.033908502,0.033399552,0.032900577,0.032411333,0.03193158,0.031461087,0.03099963,0.030546988,0.030102951,0.029667312,0.02923987,0.028820431,0.028408806,0.02800481,0.027608264,0.027218996,0.026836835,0.026461619,0.026093186,0.025731382,0.025376056,0.025027061,0.024684254,0.024347497,0.024016653,0.023691592,0.023372185,0.023058308,0.022749839,0.022446661,0.022148659,0.021855721,0.021567737,0.021284603,0.021006213,0.020732469,0.020463271,0.020198525,0.019938137,0.019682016,0.019430075,0.019182226,0.018938386,0.018698474,0.018462408,0.018230112,0.01800151,0.017776527,0.01755509,0.017337131,0.017122579,0.016911368,0.016703433,0.016498708,0.016297133,0.016098646,0.015903187,0.015710699,0.015521124,0.015334408,0.015150497,0.014969337,0.014790877,0.014615067,0.014441857,0.014271199,0.014103046,0.013937352,0.013774072,0.013613163,0.013454581,0.013298284,0.013144231,0.012992382,0.012842697,0.012695139,0.01254967,0.012406252,0.01226485,0.012125429,0.011987954,0.011852391,0.011718708,0.011586871,0.011456851,0.011328614,0.011202132,0.011077374,0.010954311,0.010832915,0.010713159,0.010595013,0.010478453,0.010363451,0.010249982,0.010138021,0.010027543,0.009918524,0.009810939,0.009704767,0.009599984,0.009496568,0.009394497,0.009293749,0.009194303,0.00909614,0.008999238,0.008903577,0.008809139,0.008715904,0.008623853,0.008532969,0.008443232,0.008354626,0.008267133,0.008180735,0.008095417,0.008011161,0.007927952,0.007845774,0.007764611,0.007684449,0.007605271,0.007527064,0.007449813,0.007373504,0.007298122,0.007223655,0.007150089,0.007077411,0.007005607,0.006934665,0.006864573,0.006795317,0.006726888,0.006659271,0.006592456,0.006526431,0.006461185,0.006396708,0.006332987,0.006270013,0.006207774,0.006146261,0.006085464,0.006025371,0.005965975,0.005907265,0.005849231,0.005791864,0.005735155,0.005679095,0.005623675,0.005568887,0.005514722,0.00546117,0.005408225,0.005355878,0.005304121,0.005252945,0.005202344,0.005152309,0.005102833,0.005053909,0.005005529,0.004957686,0.004910373,0.004863583,0.004817309,0.004771544,0.004726283,0.004681517,0.004637242,0.00459345,0.004550135,0.004507291,0.004464913,0.004422993,0.004381527,0.004340509,0.004299932,0.004259791,0.004220081,0.004180796,0.004141932,0.004103481,0.004065441,0.004027804,0.003990567,0.003953724,0.003917271,0.003881202,0.190845832,0.190687543,0.190214911,0.189434556,0.188357231,0.186997421,0.185372827,0.183503757,0.181412485,0.179122585,0.176658303,0.174043969,0.171303487,0.168459906,0.165535078,0.162549406,0.159521667,0.15646892,0.15340646,0.150347841,0.147304923,0.144287959,0.1413057,0.138365507,0.135473484,0.1326388,0.129903913,0.127273955,0.124743173,0.12230622,0.119958117,0.117694223,0.115510209,0.113402029,0.111365904,0.109398294,0.107495884,0.105655565,0.103874418,0.102149704,0.100478844,0.098859413,0.097289126,0.095765831,0.094287494,0.0928522,0.091458135,0.090097017,0.088756436,0.087436774,0.08613856,0.084862203,0.083608009,0.082376186,0.081166859,0.079980077,0.078815821,0.077674013,0.076554524,0.075457179,0.074381762,0.073328025,0.07229569,0.071284454,0.070293994,0.069323969,0.068374024,0.067443794,0.066532904,0.065640973,0.064767616,0.063912445,0.063075071,0.062255105,0.061452159,0.060665849,0.059895793,0.059141614,0.058402939,0.0576794,0.056970636,0.056276291,0.055596016,0.054795863,0.053877893,0.052979833,0.052101182,0.051241449,0.050400152,0.049576825,0.048771011,0.047982264,0.047210152,0.046454251,0.045714151,0.04498945,0.044279759,0.043584699,0.0429039,0.042237004,0.041583662,0.040943534,0.040316289,0.039701608,0.039099178,0.038508697,0.037929868,0.037362406,0.036806032,0.036260476,0.035725474,0.03520077,0.034686117,0.034181273,0.033686002,0.033200077,0.032723276,0.032255382,0.031796187,0.031345486,0.030903081,0.03046878,0.030042395,0.029623743,0.029212648,0.028808937,0.028412442,0.028023,0.027640452,0.027264644,0.026895425,0.02653265,0.026176175,0.025825863,0.025481578,0.025143189,0.024810568,0.024483591,0.024162136,0.023846086,0.023535324,0.02322974,0.022929223,0.022633669,0.022342972,0.022057031,0.02177575,0.02149903,0.02122678,0.020958907,0.020695322,0.02043594,0.020180674,0.019929443,0.019682167,0.019438766,0.019199164,0.018963286,0.01873106,0.018502413,0.018277277,0.018055584,0.017837266,0.017622261,0.017410503,0.017201933,0.016996489,0.016794112,0.016594745,0.016398332,0.016204818,0.01601415,0.015826274,0.015641139,0.015458696,0.015278896,0.01510169,0.014927031,0.014754875,0.014585176,0.01441789,0.014252974,0.014090388,0.013930089,0.013772037,0.013616194,0.01346252,0.013310979,0.013161533,0.013014146,0.012868784,0.012725411,0.012583995,0.0124445,0.012306897,0.012171152,0.012037234,0.011905113,0.01177476,0.011646145,0.011519238,0.011394014,0.011270443,0.011148499,0.011028155,0.010909386,0.010792166,0.01067647,0.010562275,0.010449555,0.010338288,0.010228451,0.01012002,0.010012975,0.009907292,0.009802952,0.009699933,0.009598214,0.009497776,0.009398599,0.009300663,0.009203949,0.00910844,0.009014116,0.00892096,0.008828953,0.00873808,0.008648322,0.008559663,0.008472087,0.008385578,0.00830012,0.008215697,0.008132294,0.008049896,0.007968489,0.007888058,0.007808589,0.007730068,0.007652481,0.007575815,0.007500057,0.007425194,0.007351213,0.007278101,0.007205846,0.007134436,0.00706386,0.006994105,0.00692516,0.006857013,0.006789655,0.006723072,0.006657256,0.006592195,0.006527879,0.006464297,0.00640144,0.006339298,0.006277861,0.00621712,0.006157065,0.006097686,0.006038975,0.005980923,0.005923521,0.00586676,0.005810632,0.005755128,0.005700241,0.005645961,0.005592281,0.005539194,0.005486691,0.005434764,0.005383407,0.005332611,0.00528237,0.005232676,0.005183523,0.005134903,0.005086809,0.005039235,0.004992175,0.00494562,0.004899566,0.004854006,0.004808934,0.004764343,0.004720227,0.00467658,0.004633398,0.004590673,0.0045484,0.004506573,0.004465187,0.004424237,0.004383717,0.004343621,0.004303945,0.202350726,0.202178512,0.201664402,0.200815895,0.199645157,0.198168549,0.196406017,0.194380387,0.192116606,0.18964099,0.186980488,0.184162027,0.181211937,0.178155477,0.175016471,0.171817033,0.168577402,0.165315847,0.162048649,0.158790132,0.15555274,0.152347148,0.149182387,0.146065983,0.143004118,0.140032922,0.137177659,0.134431852,0.131789491,0.129244983,0.126793128,0.124429076,0.122148304,0.119946591,0.117819987,0.115764798,0.113777565,0.111855044,0.10999419,0.108192143,0.106446216,0.104753879,0.10311275,0.101520584,0.099975263,0.098474788,0.097017272,0.095600928,0.094224067,0.092877718,0.091550781,0.090243788,0.088957253,0.087691582,0.086447082,0.085223971,0.084022385,0.082842392,0.081683994,0.080547137,0.079431717,0.078337588,0.077264565,0.076212428,0.075180932,0.074169805,0.073178755,0.072207473,0.071255635,0.070322907,0.069408944,0.068513393,0.0676359,0.066776104,0.065933643,0.065108154,0.064299274,0.063506645,0.062729906,0.061968704,0.061222687,0.060491508,0.059774824,0.0590723,0.05823352,0.057278146,0.056342983,0.055427541,0.054531337,0.053653901,0.05279477,0.051953496,0.051129638,0.050322768,0.049532466,0.048758325,0.047999946,0.047256941,0.046528933,0.045815552,0.045116441,0.04443125,0.043759639,0.043101277,0.042455842,0.041823021,0.041202508,0.040594007,0.039997228,0.039411892,0.038837725,0.038274461,0.03772184,0.037179613,0.036647534,0.036125364,0.035612874,0.035109836,0.034616032,0.034131249,0.033655279,0.03318792,0.032728977,0.032278257,0.031835576,0.031400751,0.030973607,0.030553973,0.030141681,0.02973657,0.02933848,0.028947259,0.028562755,0.028184824,0.027813322,0.027448112,0.027089059,0.026736031,0.026388899,0.026047541,0.025711833,0.025381658,0.0250569,0.024737446,0.024423187,0.024114017,0.02380983,0.023510525,0.023216003,0.022926168,0.022640925,0.022360182,0.022083849,0.02181184,0.021544067,0.021280449,0.021020904,0.020765352,0.020513716,0.02026592,0.02002189,0.019781554,0.019544843,0.019311686,0.019082016,0.018855769,0.01863288,0.018413285,0.018196925,0.017983739,0.017773669,0.017566657,0.017362648,0.017161587,0.016963421,0.016768097,0.016575565,0.016385773,0.016198675,0.016014221,0.015832366,0.015653062,0.015476267,0.015301935,0.015130024,0.014960493,0.014793299,0.014628404,0.014465767,0.01430535,0.014147115,0.013991026,0.013837047,0.013685141,0.013535275,0.013387414,0.013241525,0.013097576,0.012955534,0.012815368,0.012677048,0.012540544,0.012405826,0.012272865,0.012141633,0.012012102,0.011884246,0.011758037,0.011633449,0.011510457,0.011389035,0.011269159,0.011150805,0.011033948,0.010918567,0.010804637,0.010692136,0.010581044,0.010471337,0.010362994,0.010255996,0.010150321,0.01004595,0.009942863,0.009841041,0.009740464,0.009641115,0.009542974,0.009446025,0.009350249,0.009255629,0.009162148,0.00906979,0.008978538,0.008888376,0.008799289,0.00871126,0.008624275,0.008538318,0.008453375,0.008369432,0.008286473,0.008204486,0.008123457,0.008043371,0.007964216,0.007885979,0.007808646,0.007732206,0.007656646,0.007581953,0.007508116,0.007435124,0.007362963,0.007291623,0.007221093,0.007151362,0.007082419,0.007014253,0.006946854,0.006880211,0.006814314,0.006749154,0.006684721,0.006621004,0.006557994,0.006495682,0.006434059,0.006373116,0.006312843,0.006253233,0.006194275,0.006135963,0.006078287,0.006021239,0.005964811,0.005908995,0.005853784,0.005799168,0.005745142,0.005691697,0.005638826,0.005586521,0.005534776,0.005483583,0.005432936,0.005382827,0.00533325,0.005284198,0.005235665,0.005187644,0.005140128,0.005093113,0.00504659,0.005000555,0.004955001,0.004909922,0.004865313,0.004821168,0.00477748 -0.157997971,0.157709692,0.156852087,0.155446389,0.153526478,0.151136814,0.148329879,0.145163397,0.141697586,0.137992654,0.134106685,0.130094003,0.126004019,0.12188054,0.11776148,0.113678878,0.109659165,0.105723581,0.101888693,0.09816696,0.09459174,0.091219505,0.088037657,0.085003093,0.0820719,0.079245954,0.076526064,0.073911909,0.071402269,0.068995213,0.066688266,0.064478549,0.062362889,0.060337916,0.05840014,0.056546011,0.054771972,0.053074495,0.051450111,0.049895433,0.048407177,0.046982167,0.045617347,0.044309787,0.043056683,0.041855357,0.040703259,0.039597965,0.038537167,0.037518678,0.036540423,0.035600437,0.034696855,0.033827916,0.03299195,0.032187378,0.031412706,0.03066652,0.029947482,0.029254328,0.02858586,0.027940945,0.027318511,0.026717542,0.026137076,0.025576203,0.025034061,0.024509831,0.024002739,0.023512048,0.023037062,0.022577119,0.02213159,0.021699878,0.021281418,0.020875669,0.02048212,0.020100284,0.019729696,0.019324775,0.018875496,0.018440216,0.01801838,0.01760946,0.017212951,0.016828375,0.016455274,0.016093213,0.015741774,0.015400562,0.015069198,0.014747318,0.014434577,0.014130645,0.013835206,0.013547957,0.013268609,0.012996885,0.012732521,0.012475262,0.012224865,0.011981097,0.011743736,0.011512566,0.011287382,0.011067987,0.010854192,0.010645815,0.010442681,0.010244623,0.01005148,0.009863096,0.009679324,0.009500018,0.009325043,0.009154265,0.008987556,0.008824794,0.008665859,0.008510639,0.008359023,0.008210906,0.008066184,0.00792476,0.007786538,0.007651428,0.007519339,0.007390188,0.007263892,0.00714037,0.007019547,0.006901347,0.0067857,0.006672534,0.006561785,0.006453386,0.006347274,0.00624339,0.006141674,0.006042069,0.005944521,0.005848976,0.005755383,0.005663691,0.005573852,0.005485819,0.005399547,0.005314991,0.00523211,0.00515086,0.005071204,0.0049931,0.004916512,0.004841402,0.004767736,0.004695478,0.004624595,0.004555055,0.004486825,0.004419875,0.004354175,0.004289697,0.004226411,0.004164291,0.00410331,0.004043441,0.003984661,0.003926943,0.003870265,0.003814603,0.003759935,0.003706239,0.003653493,0.003601677,0.00355077,0.003500752,0.003451606,0.00340331,0.003355849,0.003309203,0.003263356,0.003218291,0.003173991,0.003130441,0.003087624,0.003045526,0.003004132,0.002963427,0.002923397,0.002884029,0.00284531,0.002807225,0.002769762,0.00273291,0.002696655,0.002660986,0.002625892,0.00259136,0.002557381,0.002523943,0.002491035,0.002458648,0.002426772,0.002395396,0.002364512,0.002334109,0.002304178,0.002274712,0.0022457,0.002217135,0.002189008,0.002161311,0.002134036,0.002107175,0.002080721,0.002054666,0.002029002,0.002003724,0.001978823,0.001954293,0.001930128,0.00190632,0.001882864,0.001859752,0.00183698,0.001814541,0.001792429,0.001770638,0.001749163,0.001727998,0.001707139,0.001686579,0.001666313,0.001646337,0.001626645,0.001607233,0.001588096,0.001569229,0.001550627,0.001532287,0.001514203,0.001496372,0.00147879,0.001461451,0.001444352,0.00142749,0.001410859,0.001394458,0.00137828,0.001362324,0.001346586,0.001331061,0.001315746,0.001300639,0.001285735,0.001271032,0.001256526,0.001242215,0.001228094,0.001214161,0.001200414,0.001186848,0.001173462,0.001160252,0.001147216,0.001134351,0.001121655,0.001109124,0.001096756,0.00108455,0.001072501,0.001060608,0.001048869,0.001037281,0.001025841,0.001014549,0.0010034,0.000992394,0.000981528,0.0009708,0.000960207,0.000949749,0.000939423,0.000929226,0.000919158,0.000909215,0.000899397,0.000889702,0.000880127,0.000870671,0.000861332,0.000852109,0.000843,0.000834003,0.000825116,0.000816339,0.000807669,0.000799104,0.000790645,0.000782288,0.189975458,0.189632175,0.188610938,0.186937026,0.184650774,0.181805105,0.178462474,0.174691564,0.170564003,0.166151392,0.16152279,0.15674277,0.151870056,0.14695671,0.142047782,0.137181352,0.132388835,0.127695489,0.123121029,0.118680294,0.114421172,0.110403813,0.106611189,0.103007974,0.099527474,0.096167843,0.092930562,0.089815734,0.086822343,0.083948491,0.081191591,0.078548536,0.076015833,0.073589727,0.071266287,0.069041485,0.066911261,0.064871567,0.062918408,0.06104787,0.059256141,0.05753953,0.055894476,0.054317556,0.052805488,0.051355134,0.049963499,0.048627731,0.047345116,0.046113073,0.044929153,0.043791033,0.04269651,0.041643496,0.040630013,0.039654188,0.038714248,0.037808512,0.036935391,0.03609338,0.035281052,0.034497059,0.033740122,0.033009029,0.032302634,0.031619848,0.030959642,0.030321038,0.029703108,0.029104972,0.028525797,0.027964789,0.027421196,0.026894302,0.026383427,0.025887925,0.025407182,0.024940613,0.02448766,0.024010704,0.023459007,0.022924333,0.022406013,0.021903409,0.021415915,0.020942951,0.020483964,0.020038428,0.019605839,0.019185719,0.018777608,0.018381067,0.01799568,0.017621044,0.017256778,0.016902515,0.016557905,0.016222611,0.015896314,0.015578704,0.015269487,0.01496838,0.014675112,0.014389423,0.014111062,0.013839791,0.01357538,0.013317607,0.01306626,0.012821135,0.012582037,0.012348777,0.012121173,0.011899052,0.011682244,0.011470589,0.011263932,0.011062121,0.010865014,0.010672471,0.010484357,0.010300544,0.010120907,0.009945326,0.009773684,0.009605871,0.009441777,0.009281299,0.009124336,0.00897079,0.008820567,0.008673578,0.008529733,0.008388948,0.00825114,0.008116232,0.007984144,0.007854804,0.00772814,0.007604081,0.00748256,0.007363512,0.007246874,0.007132585,0.007020584,0.006910815,0.006803222,0.006697751,0.006594349,0.006492965,0.006393551,0.006296057,0.006200439,0.00610665,0.006014648,0.005924389,0.005835832,0.005748937,0.005663666,0.00557998,0.005497844,0.00541722,0.005338075,0.005260374,0.005184086,0.005109177,0.005035618,0.004963377,0.004892426,0.004822737,0.00475428,0.004687029,0.004620959,0.004556043,0.004492256,0.004429574,0.004367973,0.004307431,0.004247925,0.004189433,0.004131934,0.004075406,0.004019831,0.003965187,0.003911456,0.00385862,0.003806658,0.003755555,0.003705293,0.003655854,0.003607222,0.00355938,0.003512314,0.003466008,0.003420446,0.003375614,0.003331498,0.003288084,0.003245358,0.003203307,0.003161918,0.003121177,0.003081074,0.003041595,0.003002728,0.002964463,0.002926788,0.002889691,0.002853163,0.002817191,0.002781767,0.00274688,0.00271252,0.002678678,0.002645343,0.002612507,0.002580161,0.002548296,0.002516903,0.002485974,0.0024555,0.002425474,0.002395887,0.002366732,0.002338001,0.002309686,0.002281782,0.002254279,0.002227172,0.002200453,0.002174116,0.002148154,0.002122561,0.00209733,0.002072456,0.002047932,0.002023752,0.001999911,0.001976403,0.001953223,0.001930364,0.001907822,0.001885591,0.001863666,0.001842042,0.001820715,0.001799679,0.001778929,0.001758462,0.001738271,0.001718354,0.001698705,0.001679321,0.001660196,0.001641328,0.001622711,0.001604342,0.001586216,0.001568331,0.001550682,0.001533266,0.001516078,0.001499116,0.001482376,0.001465854,0.001449547,0.001433452,0.001417566,0.001401884,0.001386405,0.001371125,0.001356041,0.001341151,0.00132645,0.001311937,0.001297608,0.001283461,0.001269493,0.001255701,0.001242084,0.001228637,0.001215359,0.001202247,0.001189299,0.001176512,0.001163885,0.001151414,0.001139097,0.001126932,0.001114918,0.001103051,0.00109133,0.001079752,0.001068316,0.001057019,0.00104586,0.001034837,0.001023947,0.001013189,0.00100256,0.228486178,0.228077074,0.226860032,0.2248652,0.222140671,0.218749535,0.214766226,0.210272571,0.205353877,0.200095389,0.194579292,0.188882407,0.183074576,0.177217697,0.171365325,0.165562717,0.159847216,0.154248846,0.148791053,0.143491494,0.138415743,0.133626898,0.129103682,0.124819738,0.120691252,0.116700922,0.112851176,0.109142745,0.105574981,0.102146131,0.098853573,0.095694019,0.09266368,0.089758409,0.086973818,0.084305367,0.081748448,0.079298439,0.076950757,0.074700895,0.072544447,0.070477134,0.068494817,0.066593507,0.064769371,0.063018739,0.0613381,0.059724107,0.058173566,0.056683442,0.055250848,0.05387304,0.052547417,0.051271509,0.050042975,0.048859594,0.047719264,0.04661999,0.045559884,0.044537157,0.043550112,0.042597144,0.041676728,0.040787421,0.039927855,0.039096732,0.038292821,0.037514954,0.036762024,0.036032978,0.035326816,0.034642592,0.033979402,0.033336389,0.03271274,0.032107679,0.031520468,0.030950406,0.030396824,0.029838925,0.029161419,0.028504613,0.0278677,0.02724991,0.026650511,0.026068803,0.025504119,0.024955823,0.024423307,0.023905991,0.02340332,0.022914764,0.022439817,0.021977993,0.02152883,0.021091883,0.020666729,0.02025296,0.019850186,0.019458035,0.019076148,0.018704183,0.018341809,0.017988711,0.017644587,0.017309144,0.016982104,0.016663197,0.016352166,0.016048763,0.015752749,0.015463895,0.015181981,0.014906793,0.014638128,0.014375788,0.014119585,0.013869336,0.013624864,0.013386,0.013152581,0.012924449,0.012701452,0.012483443,0.012270281,0.012061829,0.011857955,0.011658532,0.011463437,0.01127255,0.011085757,0.010902947,0.010724013,0.01054885,0.010377358,0.01020944,0.010045002,0.009883953,0.009726205,0.009571672,0.009420273,0.009271926,0.009126556,0.008984085,0.008844443,0.008707557,0.008573361,0.008441787,0.008312771,0.00818625,0.008062165,0.007940457,0.007821068,0.007703943,0.007589029,0.007476273,0.007365624,0.007257034,0.007150454,0.007045839,0.006943142,0.006842321,0.006743331,0.006646133,0.006550686,0.006456949,0.006364886,0.006274459,0.006185632,0.00609837,0.006012638,0.005928404,0.005845634,0.005764298,0.005684364,0.005605803,0.005528586,0.005452683,0.005378068,0.005304714,0.005232593,0.005161681,0.005091953,0.005023383,0.004955949,0.004889628,0.004824396,0.004760232,0.004697113,0.004635021,0.004573933,0.00451383,0.004454692,0.0043965,0.004339237,0.004282882,0.00422742,0.004172833,0.004119103,0.004066215,0.004014152,0.003962899,0.003912439,0.003862759,0.003813843,0.003765678,0.003718248,0.003671541,0.003625543,0.003580241,0.003535623,0.003491674,0.003448384,0.003405741,0.003363732,0.003322347,0.003281573,0.003241401,0.003201819,0.003162817,0.003124385,0.003086512,0.003049188,0.003012405,0.002976153,0.002940421,0.002905203,0.002870487,0.002836267,0.002802532,0.002769276,0.00273649,0.002704165,0.002672295,0.002640871,0.002609886,0.002579333,0.002549203,0.002519491,0.00249019,0.002461292,0.002432791,0.00240468,0.002376953,0.002349604,0.002322627,0.002296015,0.002269763,0.002243864,0.002218314,0.002193106,0.002168236,0.002143697,0.002119484,0.002095593,0.002072018,0.002048754,0.002025797,0.002003141,0.001980783,0.001958716,0.001936937,0.001915441,0.001894225,0.001873283,0.001852611,0.001832206,0.001812063,0.001792178,0.001772547,0.001753167,0.001734034,0.001715144,0.001696493,0.001678078,0.001659895,0.001641941,0.001624212,0.001606706,0.001589418,0.001572346,0.001555487,0.001538837,0.001522393,0.001506152,0.001490112,0.001474269,0.001458621,0.001443165,0.001427898,0.001412817,0.001397919,0.001383203,0.001368666,0.001354304,0.001340116,0.001326098,0.00131225,0.001298567,0.001285049,0.274882251,0.274394258,0.272942555,0.270563159,0.267313522,0.263268983,0.2585184,0.25315941,0.24729376,0.241023065,0.234445244,0.227651779,0.220725794,0.21374093,0.206760873,0.199839425,0.193020963,0.186341169,0.1798279,0.173502181,0.1674579,0.161752792,0.156361309,0.151260136,0.146368129,0.141633137,0.137058897,0.132647063,0.12839758,0.124309017,0.120378842,0.116603671,0.112979468,0.109501719,0.106165573,0.102965958,0.099897679,0.096955491,0.094134164,0.091428527,0.088833511,0.08634417,0.083955706,0.081663484,0.079463041,0.07735009,0.075320526,0.073370425,0.07149604,0.069693801,0.06796031,0.066292335,0.064686803,0.063140797,0.061651548,0.060216428,0.058832944,0.057498731,0.056211548,0.054969268,0.053769876,0.052611458,0.051492202,0.050410389,0.049364385,0.048352645,0.047373697,0.046426148,0.045508673,0.044620015,0.043758979,0.042924428,0.042115285,0.041330521,0.040569161,0.039830275,0.039112979,0.038416431,0.037739828,0.037082406,0.036261512,0.035454509,0.034671705,0.033912172,0.033175026,0.032459422,0.031764556,0.031089657,0.030433992,0.029796859,0.029177587,0.028575536,0.027990091,0.027420667,0.026866703,0.02632766,0.025803024,0.025292303,0.024795023,0.024310733,0.023838997,0.0233794,0.022931541,0.022495037,0.02206952,0.021654637,0.021250047,0.020855424,0.020470455,0.020094838,0.019728282,0.019370509,0.01902125,0.018680246,0.018347249,0.018022019,0.017704324,0.017393943,0.017090662,0.016794272,0.016504575,0.016221379,0.015944498,0.015673753,0.015408971,0.015149985,0.014896635,0.014648764,0.014406222,0.014168865,0.013936551,0.013709144,0.013486514,0.013268533,0.013055079,0.012846032,0.012641278,0.012440705,0.012244205,0.012051675,0.011863012,0.011678118,0.0114969,0.011319264,0.011145122,0.010974386,0.010806974,0.010642804,0.010481797,0.010323876,0.010168967,0.010016999,0.0098679,0.009721603,0.009578042,0.009437154,0.009298875,0.009163145,0.009029905,0.008899099,0.008770671,0.008644567,0.008520734,0.008399121,0.008279679,0.00816236,0.008047116,0.007933902,0.007822673,0.007713386,0.007605999,0.00750047,0.007396761,0.007294832,0.007194645,0.007096163,0.00699935,0.006904171,0.006810593,0.006718581,0.006628104,0.00653913,0.006451627,0.006365567,0.006280919,0.006197655,0.006115747,0.006035168,0.005955891,0.005877891,0.005801143,0.00572562,0.0056513,0.005578159,0.005506175,0.005435323,0.005365584,0.005296934,0.005229355,0.005162824,0.005097323,0.005032831,0.00496933,0.004906801,0.004845226,0.004784587,0.004724867,0.004666048,0.004608116,0.004551052,0.004494841,0.004439468,0.004384917,0.004331174,0.004278225,0.004226054,0.004174648,0.004123994,0.004074077,0.004024886,0.003976407,0.003928628,0.003881537,0.003835121,0.003789369,0.00374427,0.003699812,0.003655984,0.003612776,0.003570177,0.003528176,0.003486764,0.00344593,0.003405665,0.00336596,0.003326804,0.003288189,0.003250106,0.003212547,0.003175501,0.003138962,0.00310292,0.003067368,0.003032298,0.002997701,0.002963571,0.002929899,0.002896679,0.002863902,0.002831563,0.002799654,0.002768168,0.002737098,0.002706439,0.002676183,0.002646324,0.002616857,0.002587774,0.00255907,0.002530739,0.002502776,0.002475174,0.002447929,0.002421034,0.002394484,0.002368275,0.0023424,0.002316856,0.002291636,0.002266736,0.002242152,0.002217878,0.002193909,0.002170242,0.002146872,0.002123795,0.002101005,0.0020785,0.002056274,0.002034324,0.002012645,0.001991234,0.001970087,0.0019492,0.001928569,0.001908191,0.001888061,0.001868177,0.001848535,0.001829131,0.001809962,0.001791025,0.001772316,0.001753832,0.00173557,0.001717527,0.0016997,0.001682086,0.001664681,0.001647484,0.33080202,0.330219303,0.328485851,0.325644793,0.321764901,0.316936331,0.311265365,0.304868719,0.297867946,0.290384359,0.28253478,0.274428268,0.266163852,0.257829198,0.249500076,0.241240455,0.233103071,0.225130302,0.217355226,0.209805002,0.202610628,0.195816271,0.189392003,0.183310651,0.177514882,0.171902604,0.166473059,0.161229222,0.156171951,0.151300383,0.146612267,0.14210426,0.137772171,0.133611172,0.129615976,0.125780976,0.122100365,0.118568235,0.115178654,0.111925725,0.108803636,0.105806697,0.102929368,0.10016628,0.097512248,0.094962282,0.092511591,0.090155586,0.087889877,0.085710277,0.08361279,0.081593613,0.079649124,0.077775883,0.075970616,0.074230216,0.072551732,0.070932362,0.069369447,0.067860462,0.066403012,0.064994825,0.063633741,0.062317715,0.0610448,0.059813153,0.058621019,0.057466735,0.056348718,0.055265464,0.054215547,0.053197606,0.05221035,0.051252549,0.050323034,0.049420691,0.048544459,0.047693328,0.046866335,0.046062562,0.045104924,0.04411318,0.043150874,0.042216888,0.041310155,0.040429656,0.039574417,0.038743511,0.03793605,0.037151185,0.036388106,0.035646037,0.034924237,0.034221995,0.033538631,0.032873495,0.032225963,0.031595438,0.030981346,0.030383139,0.02980029,0.029232294,0.028678665,0.028138937,0.027612664,0.027099416,0.02659878,0.026110359,0.025633772,0.025168652,0.024714645,0.024271413,0.023838629,0.023415977,0.023003154,0.022599869,0.02220584,0.021820796,0.021444475,0.021076626,0.020717006,0.020365378,0.020021519,0.019685208,0.019356234,0.019034395,0.018719494,0.018411339,0.018109748,0.017814543,0.017525552,0.017242609,0.016965553,0.01669423,0.016428489,0.016168184,0.015913174,0.015663324,0.015418501,0.015178577,0.014943429,0.014712936,0.014486982,0.014265454,0.014048242,0.013835241,0.013626348,0.013421464,0.01322049,0.013023334,0.012829903,0.01264011,0.012453869,0.012271096,0.012091711,0.011915633,0.011742788,0.0115731,0.011406497,0.01124291,0.011082269,0.010924509,0.010769564,0.010617373,0.010467874,0.010321007,0.010176716,0.010034942,0.009895633,0.009758734,0.009624194,0.009491961,0.009361988,0.009234225,0.009108627,0.008985147,0.008863741,0.008744367,0.008626982,0.008511544,0.008398015,0.008286355,0.008176525,0.008068489,0.007962211,0.007857656,0.007754788,0.007653574,0.007553982,0.00745598,0.007359535,0.007264619,0.007171201,0.007079251,0.006988742,0.006899646,0.006811936,0.006725585,0.006640568,0.006556859,0.006474433,0.006393268,0.006313338,0.006234621,0.006157095,0.006080737,0.006005527,0.005931442,0.005858463,0.005786569,0.00571574,0.005645959,0.005577204,0.00550946,0.005442706,0.005376926,0.005312102,0.005248218,0.005185256,0.005123202,0.005062038,0.00500175,0.004942323,0.00488374,0.004825989,0.004769054,0.004712922,0.004657579,0.004603012,0.004549207,0.004496152,0.004443835,0.004392241,0.004341361,0.004291181,0.004241691,0.004192879,0.004144733,0.004097243,0.004050398,0.004004188,0.003958601,0.003913629,0.003869262,0.003825488,0.0037823,0.003739687,0.003697641,0.003656152,0.003615212,0.003574812,0.003534943,0.003495598,0.003456767,0.003418443,0.003380618,0.003343285,0.003306435,0.003270062,0.003234157,0.003198715,0.003163727,0.003129186,0.003095087,0.003061422,0.003028185,0.002995369,0.002962968,0.002930976,0.002899387,0.002868194,0.002837392,0.002806975,0.002776937,0.002747273,0.002717978,0.002689045,0.00266047,0.002632247,0.002604371,0.002576838,0.002549642,0.002522778,0.002496242,0.002470029,0.002444134,0.002418553,0.002393281,0.002368315,0.002343648,0.002319279,0.002295201,0.002271412,0.002247906,0.002224681,0.002201732,0.002179055,0.002156647,0.002134503,0.002112621,0.295680099,0.295342048,0.294333499,0.292671016,0.290381412,0.287500629,0.28407229,0.280146045,0.275775805,0.271017993,0.265929896,0.260568182,0.254987657,0.249240251,0.243374278,0.237433917,0.231458927,0.225484533,0.219541474,0.213656163,0.207850931,0.20214433,0.196551472,0.191084376,0.185756548,0.18064625,0.175768676,0.171109333,0.16665486,0.162389296,0.158248575,0.154214993,0.150290532,0.146476248,0.142772412,0.139178631,0.135693954,0.132316968,0.129045886,0.125878616,0.122812829,0.119846012,0.116975515,0.114198593,0.111512437,0.108914206,0.10640105,0.10397013,0.101618632,0.099343784,0.097142864,0.095013209,0.092952223,0.09095738,0.089026229,0.087156393,0.085345576,0.083591559,0.081892202,0.080245443,0.078649297,0.077101856,0.075601283,0.074145816,0.072733761,0.071363494,0.070033456,0.068742152,0.067488147,0.066270068,0.065086595,0.063936466,0.062818469,0.061731444,0.060674278,0.059645905,0.058645302,0.057671491,0.056715164,0.05550338,0.054326045,0.053181931,0.052069862,0.050988712,0.049937398,0.048914886,0.047920181,0.04695233,0.046010418,0.045093569,0.044200939,0.04333172,0.042485136,0.041660442,0.04085692,0.040073884,0.03931067,0.038566645,0.037841196,0.037133736,0.036443698,0.03577054,0.035113738,0.034472787,0.033847203,0.033236517,0.032640281,0.03205806,0.031489437,0.030934008,0.030391386,0.029861195,0.029343076,0.028836678,0.028341667,0.027857717,0.027384516,0.02692176,0.026469158,0.026026428,0.025593296,0.025169499,0.024754783,0.024348902,0.023951617,0.023562697,0.023181921,0.022809073,0.022443944,0.022086332,0.021736042,0.021392884,0.021056676,0.020727239,0.020404402,0.020087998,0.019777865,0.019473848,0.019175793,0.018883554,0.018596989,0.018315957,0.018040326,0.017769964,0.017504746,0.017244548,0.016989251,0.016738739,0.0164929,0.016251624,0.016014805,0.015782341,0.01555413,0.015330076,0.015110084,0.014894062,0.01468192,0.014473571,0.01426893,0.014067916,0.013870448,0.013676448,0.01348584,0.01329855,0.013114507,0.01293364,0.012755881,0.012581164,0.012409424,0.012240598,0.012074624,0.011911444,0.011750998,0.011593231,0.011438085,0.011285508,0.011135447,0.010987851,0.010842669,0.010699853,0.010559355,0.010421129,0.010285128,0.010151311,0.010019632,0.009890049,0.009762523,0.009637012,0.009513478,0.009391882,0.009272186,0.009154355,0.009038353,0.008924144,0.008811695,0.008700973,0.008591945,0.008484579,0.008378844,0.008274711,0.008172149,0.008071129,0.007971624,0.007873604,0.007777045,0.007681918,0.007588197,0.007495859,0.007404877,0.007315227,0.007226887,0.007139832,0.007054039,0.006969487,0.006886154,0.006804019,0.00672306,0.006643257,0.00656459,0.00648704,0.006410587,0.006335213,0.006260899,0.006187628,0.006115381,0.006044141,0.005973891,0.005904615,0.005836297,0.00576892,0.005702468,0.005636928,0.005572283,0.005508518,0.005445621,0.005383575,0.005322368,0.005261985,0.005202414,0.005143642,0.005085655,0.005028441,0.004971988,0.004916283,0.004861315,0.004807072,0.004753542,0.004700715,0.00464858,0.004597125,0.00454634,0.004496214,0.004446738,0.004397902,0.004349695,0.004302107,0.004255131,0.004208755,0.004162971,0.00411777,0.004073144,0.004029083,0.003985579,0.003942623,0.003900208,0.003858326,0.003816968,0.003776127,0.003735795,0.003695964,0.003656628,0.003617779,0.003579409,0.003541513,0.003504082,0.003467111,0.003430593,0.00339452,0.003358887,0.003323687,0.003288915,0.003254564,0.003220628,0.0031871,0.003153977,0.003121251,0.003088917,0.00305697,0.003025403,0.002994213,0.002963393,0.002932939,0.002902845,0.002873107,0.002843718,0.002814676,0.002785974,0.002757609,0.002729575,0.002701869,0.297460996,0.297122988,0.296114589,0.294452433,0.292163441,0.289283685,0.285856932,0.28193297,0.27756583,0.272812028,0.267728903,0.262373139,0.256799511,0.251059884,0.245202471,0.239271326,0.233306061,0.227341744,0.221408952,0.215533939,0.209738882,0.204042191,0.19845885,0.193000763,0.187686524,0.18259752,0.177738575,0.173095428,0.168654926,0.16440492,0.160307481,0.156312315,0.152420896,0.148634733,0.144954518,0.141380255,0.137911362,0.134546769,0.131285006,0.128124274,0.125062513,0.122097454,0.119226675,0.116447636,0.113757718,0.11115425,0.108634538,0.106195885,0.103835608,0.101551049,0.099339596,0.09719868,0.095125793,0.093118489,0.091174387,0.089291177,0.087466621,0.085698553,0.083984882,0.082323588,0.080712727,0.079150424,0.077634877,0.07616435,0.074737177,0.073351756,0.07200655,0.070700083,0.069430936,0.068197751,0.066999223,0.065834101,0.064701185,0.063599323,0.062527413,0.061484394,0.060469251,0.059481011,0.058518738,0.057348247,0.056146593,0.054978487,0.053842753,0.052738264,0.051663938,0.050618738,0.049601667,0.048611771,0.047648133,0.046709873,0.045796146,0.04490614,0.044039075,0.043194203,0.042370804,0.041568185,0.040785683,0.040022657,0.039278492,0.038552597,0.037844402,0.03715336,0.036478942,0.035820641,0.035177967,0.034550449,0.033937634,0.033339083,0.032754375,0.032183104,0.031624876,0.031079314,0.030546052,0.030024739,0.029515035,0.02901661,0.02852915,0.028052346,0.027585904,0.027129538,0.026682973,0.02624594,0.025818182,0.02539945,0.024989501,0.024588104,0.024195032,0.023810065,0.023432994,0.023063612,0.022701722,0.022347131,0.021999653,0.021659109,0.021325322,0.020998125,0.020677352,0.020362844,0.020054448,0.019752013,0.019455394,0.01916445,0.018879045,0.018599046,0.018324324,0.018054754,0.017790215,0.017530587,0.017275758,0.017025616,0.016780051,0.016538961,0.016302241,0.016069793,0.01584152,0.015617329,0.015397128,0.015180828,0.014968343,0.014759589,0.014554483,0.014352947,0.014154903,0.013960275,0.01376899,0.013580976,0.013396163,0.013214485,0.013035874,0.012860267,0.012687599,0.012517812,0.012350843,0.012186637,0.012025135,0.011866283,0.011710027,0.011556314,0.011405093,0.011256314,0.011109929,0.010965889,0.010824148,0.010684662,0.010547385,0.010412274,0.010279288,0.010148385,0.010019525,0.009892669,0.009767778,0.009644815,0.009523744,0.009404528,0.009287133,0.009171525,0.00905767,0.008945536,0.00883509,0.008726302,0.008619142,0.008513578,0.008409584,0.008307129,0.008206186,0.008106727,0.008008727,0.007912159,0.007816998,0.007723218,0.007630795,0.007539706,0.007449926,0.007361433,0.007274205,0.00718822,0.007103455,0.007019891,0.006937506,0.006856281,0.006776195,0.006697229,0.006619364,0.006542582,0.006466865,0.006392194,0.006318552,0.006245922,0.006174288,0.006103632,0.006033939,0.005965193,0.005897378,0.005830479,0.005764482,0.005699371,0.005635133,0.005571753,0.005509218,0.005447514,0.005386627,0.005326546,0.005267256,0.005208747,0.005151004,0.005094017,0.005037773,0.004982261,0.004927469,0.004873387,0.004820004,0.004767307,0.004715288,0.004663936,0.00461324,0.00456319,0.004513778,0.004464992,0.004416824,0.004369264,0.004322304,0.004275933,0.004230144,0.004184928,0.004140276,0.00409618,0.004052632,0.004009623,0.003967147,0.003925194,0.003883757,0.00384283,0.003802404,0.003762472,0.003723027,0.003684062,0.00364557,0.003607545,0.003569979,0.003532867,0.003496201,0.003459976,0.003424185,0.003388823,0.003353882,0.003319357,0.003285243,0.003251533,0.003218223,0.003185305,0.003152776,0.00312063,0.003088861,0.003057464,0.003026434,0.002995766,0.002965456,0.002935497,0.002905886,0.002876618,0.299461638,0.29912305,0.298112955,0.296448111,0.294155629,0.29127183,0.287840755,0.283912476,0.279541299,0.274783981,0.26969806,0.264340366,0.258765764,0.253026155,0.247169737,0.241240504,0.235277976,0.229317101,0.223388322,0.217517744,0.211727397,0.206035547,0.20045704,0.195003654,0.189703319,0.184635465,0.179795004,0.17516791,0.170741236,0.166503026,0.162437608,0.158484078,0.154628534,0.150872964,0.147218518,0.143665625,0.1402141,0.136863242,0.133611923,0.130458659,0.127401677,0.124438975,0.121568373,0.118787552,0.116094095,0.113485517,0.11095929,0.108512869,0.106143709,0.103849279,0.101627078,0.099474644,0.097389559,0.095369462,0.093412049,0.091515079,0.089676377,0.087893833,0.086165407,0.084489126,0.082863085,0.081285449,0.079754448,0.078268378,0.0768256,0.075424536,0.074063671,0.072741548,0.071456769,0.070207989,0.068993918,0.067813318,0.066665,0.065547822,0.06446069,0.063402553,0.062372403,0.06136927,0.060392226,0.059284799,0.058057786,0.056864663,0.055704251,0.054575424,0.053477099,0.052408237,0.051367841,0.050354953,0.049368654,0.048408061,0.047472327,0.046560636,0.045672206,0.044806283,0.043962145,0.043139097,0.042336468,0.041553616,0.040789922,0.040044789,0.039317645,0.038607936,0.037915133,0.037238721,0.036578208,0.035933119,0.035302996,0.034687396,0.034085894,0.033498079,0.032923555,0.032361939,0.031812863,0.031275971,0.030750918,0.030237373,0.029735015,0.029243535,0.028762632,0.028292018,0.027831413,0.027380546,0.026939157,0.026506992,0.026083806,0.025669363,0.025263434,0.024865797,0.024476237,0.024094546,0.023720524,0.023353973,0.022994707,0.022642541,0.022297298,0.021958806,0.021626898,0.021301413,0.020982192,0.020669084,0.020361941,0.02006062,0.019764982,0.019474891,0.019190216,0.01891083,0.01863661,0.018367434,0.018103187,0.017843754,0.017589026,0.017338895,0.017093258,0.016852012,0.01661506,0.016382305,0.016153654,0.015929017,0.015708306,0.015491434,0.015278319,0.015068878,0.014863032,0.014660705,0.014461821,0.014266308,0.014074094,0.013885109,0.013699286,0.013516559,0.013336864,0.013160139,0.012986322,0.012815353,0.012647176,0.012481733,0.012318969,0.01215883,0.012001264,0.011846219,0.011693647,0.011543497,0.011395722,0.011250277,0.011107114,0.010966191,0.010827464,0.010690891,0.01055643,0.010424041,0.010293685,0.010165324,0.010038919,0.009914435,0.009791835,0.009671085,0.00955215,0.009434996,0.009319591,0.009205903,0.0090939,0.008983552,0.00887483,0.008767703,0.008662143,0.008558122,0.008455613,0.008354589,0.008255023,0.00815689,0.008060165,0.007964823,0.007870841,0.007778193,0.007686859,0.007596814,0.007508037,0.007420505,0.007334199,0.007249096,0.007165177,0.007082422,0.007000811,0.006920325,0.006840945,0.006762653,0.006685431,0.006609261,0.006534126,0.006460008,0.006386892,0.006314761,0.006243599,0.006173389,0.006104118,0.00603577,0.005968329,0.005901782,0.005836115,0.005771313,0.005707362,0.005644249,0.005581962,0.005520487,0.005459811,0.005399922,0.005340808,0.005282457,0.005224856,0.005167996,0.005111863,0.005056447,0.005001737,0.004947723,0.004894394,0.004841739,0.004789748,0.004738411,0.004687719,0.004637662,0.004588231,0.004539415,0.004491207,0.004443597,0.004396576,0.004350135,0.004304267,0.004258962,0.004214213,0.004170012,0.00412635,0.00408322,0.004040614,0.003998525,0.003956945,0.003915867,0.003875283,0.003835188,0.003795573,0.003756433,0.003717759,0.003679547,0.003641789,0.003604479,0.00356761,0.003531178,0.003495174,0.003459595,0.003424433,0.003389683,0.00335534,0.003321397,0.00328785,0.003254692,0.003221919,0.003189526,0.003157507,0.003125857,0.003094571,0.003063645,0.301708396,0.301368517,0.300354616,0.298683633,0.296382977,0.293489341,0.2900472,0.286107077,0.281723728,0.276954324,0.271856768,0.266488186,0.260903668,0.255155266,0.249291259,0.243355659,0.23738795,0.231423004,0.225491153,0.219618371,0.213826546,0.208133794,0.202554814,0.197101243,0.191815166,0.186766042,0.181941844,0.177328757,0.17291403,0.16868588,0.164633404,0.160724031,0.156908001,0.153186253,0.149560424,0.146031401,0.142599429,0.139264203,0.136024964,0.132880566,0.129829549,0.126870199,0.124000596,0.121218661,0.118522195,0.115908911,0.113376464,0.110922472,0.108544539,0.10624027,0.104007285,0.101843234,0.0997458,0.097712712,0.095741749,0.093830745,0.091977589,0.090180234,0.088436695,0.086745046,0.08510343,0.083510049,0.081963171,0.080461123,0.079002296,0.077585139,0.07620816,0.074869923,0.073569048,0.072304208,0.071074129,0.069877584,0.068713398,0.06758044,0.066477624,0.065403907,0.064358289,0.063339808,0.06234754,0.061318215,0.060064779,0.058845584,0.057659453,0.056505258,0.055381917,0.054288388,0.053223673,0.052186812,0.051176884,0.050193002,0.049234317,0.04830001,0.047389293,0.046501413,0.045635641,0.044791277,0.043967649,0.04316411,0.042380036,0.041614826,0.040867905,0.040138714,0.039426718,0.0387314,0.038052264,0.037388829,0.036740632,0.036107229,0.035488188,0.034883094,0.034291549,0.033713164,0.033147567,0.032594398,0.032053309,0.031523963,0.031006038,0.030499218,0.0300032,0.029517693,0.029042411,0.028577082,0.02812144,0.027675228,0.0272382,0.026810113,0.026390737,0.025979846,0.025577221,0.025182652,0.024795935,0.02441687,0.024045267,0.023680938,0.023323704,0.022973389,0.022629824,0.022292844,0.021962289,0.021638004,0.02131984,0.02100765,0.020701292,0.020400628,0.020105526,0.019815856,0.01953149,0.019252308,0.018978189,0.018709019,0.018444684,0.018185076,0.017930088,0.017679616,0.017433561,0.017191825,0.016954311,0.016720929,0.016491587,0.016266198,0.016044677,0.015826941,0.015612908,0.015402499,0.015195639,0.014992253,0.014792266,0.014595609,0.014402213,0.014212009,0.014024933,0.013840919,0.013659907,0.013481834,0.013306642,0.013134272,0.012964668,0.012797775,0.012633539,0.012471908,0.01231283,0.012156255,0.012002136,0.011850423,0.01170107,0.011554033,0.011409266,0.011266726,0.011126372,0.010988161,0.010852054,0.010718011,0.010585993,0.010455962,0.010327882,0.010201718,0.010077432,0.009954992,0.009834364,0.009715514,0.009598411,0.009483022,0.009369318,0.009257268,0.009146843,0.009038013,0.008930751,0.00882503,0.008720821,0.008618099,0.008516837,0.008417011,0.008318596,0.008221567,0.0081259,0.008031572,0.007938561,0.007846844,0.0077564,0.007667206,0.007579242,0.007492487,0.007406921,0.007322524,0.007239278,0.007157162,0.007076159,0.00699625,0.006917417,0.006839643,0.006762911,0.006687203,0.006612504,0.006538797,0.006466065,0.006394295,0.00632347,0.006253575,0.006184596,0.006116518,0.006049328,0.00598301,0.005917553,0.005852941,0.005789163,0.005726204,0.005664054,0.005602698,0.005542126,0.005482325,0.005423283,0.005364989,0.005307431,0.005250599,0.005194482,0.005139068,0.005084348,0.00503031,0.004976945,0.004924243,0.004872194,0.004820789,0.004770017,0.004719871,0.004670339,0.004621415,0.004573088,0.00452535,0.004478193,0.004431608,0.004385587,0.004340122,0.004295205,0.004250828,0.004206984,0.004163664,0.004120862,0.004078571,0.004036782,0.00399549,0.003954687,0.003914366,0.00387452,0.003835143,0.003796229,0.003757771,0.003719763,0.003682198,0.003645071,0.003608376,0.003572106,0.003536256,0.00350082,0.003465793,0.003431169,0.003396942,0.003363108,0.003329661,0.003296595,0.003263907,0.304231975,0.303889987,0.302869846,0.301188753,0.298874527,0.29596439,0.292503428,0.288542816,0.284137959,0.279346647,0.274227334,0.268837618,0.263232969,0.25746572,0.251584338,0.245632941,0.23965104,0.233673477,0.227730502,0.221847974,0.216047642,0.210347467,0.204761987,0.199302682,0.194031865,0.188998506,0.184187839,0.179586241,0.175181136,0.1709609,0.166914774,0.163031735,0.159259624,0.155575623,0.151981895,0.14847982,0.145070105,0.141752877,0.138527773,0.135394017,0.132350487,0.12939578,0.12652826,0.123746109,0.121047366,0.118429959,0.115891739,0.113430503,0.111044018,0.108730035,0.106486308,0.104310607,0.102200724,0.100154487,0.098169764,0.096244468,0.094376564,0.092564069,0.090805056,0.089097655,0.087440054,0.085830501,0.084267301,0.082748817,0.081273472,0.079839742,0.078446161,0.077091316,0.075773847,0.074492446,0.073245854,0.072032861,0.070852301,0.069703057,0.068584053,0.067494255,0.06643267,0.065398343,0.064390356,0.063407829,0.062175569,0.060929156,0.059716173,0.05853549,0.057386024,0.056266734,0.055176619,0.054114717,0.053080105,0.052071893,0.051089228,0.050131289,0.049197285,0.048286457,0.047398074,0.046531432,0.045685855,0.04486069,0.04405531,0.043269111,0.04250151,0.041751947,0.041019881,0.040304792,0.039606178,0.038923553,0.038256452,0.037604424,0.036967034,0.036343864,0.035734508,0.035138575,0.03455569,0.033985486,0.033427612,0.032881728,0.032347506,0.031824628,0.031312786,0.030811684,0.030321034,0.029840559,0.02936999,0.028909067,0.028457538,0.02801516,0.027581695,0.027156917,0.026740603,0.02633254,0.025932518,0.025540338,0.025155803,0.024778725,0.024408919,0.024046209,0.023690421,0.023341388,0.022998947,0.02266294,0.022333215,0.022009623,0.02169202,0.021380264,0.021074221,0.020773758,0.020478747,0.020189062,0.019904582,0.019625189,0.019350769,0.01908121,0.018816404,0.018556245,0.01830063,0.01804946,0.017802637,0.017560068,0.017321659,0.017087321,0.016856968,0.016630514,0.016407876,0.016188974,0.015973729,0.015762065,0.015553908,0.015349184,0.015147823,0.014949756,0.014754916,0.014563237,0.014374656,0.014189109,0.014006536,0.013826877,0.013650076,0.013476074,0.013304818,0.013136253,0.012970327,0.012806989,0.012646187,0.012487875,0.012332003,0.012178526,0.012027398,0.011878574,0.011732011,0.011587666,0.011445498,0.011305467,0.011167532,0.011031656,0.0108978,0.010765927,0.010636002,0.010507988,0.010381851,0.010257558,0.010135075,0.01001437,0.009895411,0.009778167,0.009662608,0.009548705,0.009436428,0.009325748,0.009216639,0.009109073,0.009003022,0.008898462,0.008795366,0.00869371,0.008593469,0.008494618,0.008397135,0.008300997,0.008206181,0.008112664,0.008020426,0.007929444,0.007839699,0.00775117,0.007663836,0.007577679,0.007492678,0.007408816,0.007326074,0.007244433,0.007163877,0.007084387,0.007005946,0.006928538,0.006852147,0.006776756,0.00670235,0.006628913,0.006556429,0.006484885,0.006414265,0.006344555,0.006275741,0.006207809,0.006140745,0.006074537,0.006009171,0.005944634,0.005880913,0.005817997,0.005755874,0.00569453,0.005633955,0.005574138,0.005515065,0.005456728,0.005399114,0.005342213,0.005286015,0.005230509,0.005175685,0.005121534,0.005068044,0.005015207,0.004963014,0.004911454,0.004860519,0.0048102,0.004760487,0.004711373,0.004662849,0.004614906,0.004567537,0.004520732,0.004474484,0.004428786,0.004383629,0.004339006,0.004294909,0.004251332,0.004208266,0.004165706,0.004123643,0.004082071,0.004040984,0.004000374,0.003960236,0.003920562,0.003881346,0.003842583,0.003804266,0.003766388,0.003728945,0.00369193,0.003655338,0.003619162,0.003583398,0.00354804,0.003513082,0.003478519,0.30706768,0.306722632,0.305693429,0.303997622,0.301663575,0.298729225,0.295240477,0.291249392,0.286812262,0.281987726,0.276835015,0.271412399,0.265775903,0.259978293,0.254068346,0.248090379,0.242084007,0.236084087,0.230120822,0.22421997,0.218403139,0.212688132,0.207089309,0.201620647,0.196363951,0.1913426,0.186542001,0.181948695,0.177550259,0.173335204,0.169292898,0.165413485,0.161680502,0.158039077,0.154481765,0.15101048,0.147626427,0.1443302,0.141121868,0.138001056,0.134967011,0.132018668,0.129154704,0.126373583,0.123673604,0.121052933,0.118509635,0.116041703,0.113647081,0.111323681,0.109069404,0.106882149,0.104759831,0.102700385,0.100701776,0.098762005,0.096879117,0.095051201,0.093276394,0.091552885,0.089878915,0.088252777,0.086672822,0.085137449,0.083645116,0.082194329,0.080783652,0.079411694,0.07807712,0.076778639,0.075515011,0.074285042,0.07308758,0.071921521,0.070785798,0.069679389,0.068601308,0.067550608,0.066526379,0.065527744,0.064398408,0.063123549,0.061882497,0.060674123,0.059497343,0.058351115,0.057234436,0.056146344,0.055085912,0.054052247,0.053044495,0.052061829,0.051103457,0.050168615,0.049256567,0.048366607,0.047498053,0.04665025,0.045822564,0.045014388,0.044225135,0.043454239,0.042701156,0.04196536,0.041246343,0.040543619,0.039856714,0.039185174,0.038528561,0.037886449,0.037258431,0.03664411,0.036043105,0.035455047,0.03487958,0.03431636,0.033765054,0.033225339,0.032696906,0.032179452,0.031672687,0.031176328,0.030690104,0.03021375,0.029747011,0.029289639,0.028841395,0.028402046,0.027971369,0.027549144,0.027135161,0.026729215,0.026331107,0.025940645,0.025557642,0.025181918,0.024813297,0.024451607,0.024096684,0.023748367,0.023406499,0.023070931,0.022741514,0.022418106,0.022100567,0.021788764,0.021482565,0.021181842,0.020886473,0.020596335,0.020311314,0.020031294,0.019756165,0.019485819,0.019220152,0.018959061,0.018702447,0.018450214,0.018202267,0.017958515,0.017718869,0.017483242,0.017251549,0.017023708,0.016799639,0.016579263,0.016362504,0.016149288,0.015939542,0.015733195,0.01553018,0.015330428,0.015133874,0.014940454,0.014750106,0.014562769,0.014378384,0.014196893,0.014018238,0.013842366,0.013669222,0.013498754,0.01333091,0.013165639,0.013002895,0.012842627,0.01268479,0.012529338,0.012376226,0.012225411,0.012076849,0.011930501,0.011786324,0.011644279,0.011504327,0.011366431,0.011230552,0.011096654,0.010964703,0.010834663,0.010706499,0.01058018,0.010455672,0.010332943,0.010211962,0.010092699,0.009975123,0.009859206,0.009744919,0.009632233,0.009521122,0.009411558,0.009303515,0.009196968,0.009091891,0.008988258,0.008886047,0.008785234,0.008685794,0.008587706,0.008490947,0.008395494,0.008301328,0.008208426,0.008116768,0.008026333,0.007937103,0.007849057,0.007762177,0.007676443,0.007591838,0.007508344,0.007425942,0.007344616,0.007264349,0.007185124,0.007106924,0.007029734,0.006953539,0.006878322,0.006804068,0.006730763,0.006658392,0.006586941,0.006516396,0.006446742,0.006377968,0.006310058,0.006243,0.006176782,0.00611139,0.006046812,0.005983037,0.005920053,0.005857846,0.005796407,0.005735724,0.005675786,0.005616581,0.005558099,0.005500331,0.005443264,0.005386889,0.005331197,0.005276177,0.00522182,0.005168115,0.005115055,0.005062629,0.00501083,0.004959647,0.004909072,0.004859096,0.004809712,0.004760911,0.004712685,0.004665025,0.004617924,0.004571375,0.004525369,0.004479899,0.004434958,0.004390538,0.004346632,0.004303234,0.004260336,0.004217932,0.004176015,0.004134578,0.004093616,0.00405312,0.004013086,0.003973507,0.003934377,0.003895691,0.003857441,0.003819623,0.00378223,0.003745258,0.0037087,0.310256311,0.309907093,0.308865536,0.30714964,0.304788487,0.301820938,0.298293977,0.294260818,0.289778925,0.284908064,0.279708497,0.274239403,0.268557564,0.262716352,0.256764994,0.250748116,0.244705512,0.238672112,0.232678101,0.22674915,0.220906731,0.215168468,0.209548528,0.204070905,0.198824401,0.193811414,0.189017505,0.184429361,0.180034687,0.175822115,0.171781118,0.16790194,0.164175527,0.160578899,0.157063198,0.15362734,0.150273072,0.147001496,0.143813151,0.140708101,0.137685996,0.134746143,0.131887559,0.129109024,0.126409119,0.123786272,0.121238786,0.11876487,0.116362661,0.114030252,0.111765703,0.109567061,0.107432371,0.105359687,0.103347084,0.101392659,0.099494546,0.097650911,0.095859964,0.094119959,0.092429194,0.090786016,0.089188819,0.087636048,0.086126197,0.084657808,0.083229472,0.081839829,0.080487566,0.079171415,0.077890155,0.076642609,0.075427642,0.074244162,0.073091115,0.071967489,0.070872309,0.069804635,0.068763563,0.067748224,0.066744688,0.065440008,0.064169526,0.062932114,0.061726688,0.060552205,0.059407662,0.058292093,0.05720457,0.056144198,0.055110119,0.054101503,0.053117554,0.052157505,0.051220617,0.050306177,0.049413502,0.048541929,0.047690822,0.046859569,0.046047578,0.045254278,0.044479121,0.043721575,0.042981129,0.04225729,0.041549581,0.040857543,0.040180732,0.039518719,0.03887109,0.038237446,0.0376174,0.037010578,0.036416621,0.035835179,0.035265915,0.034708503,0.034162628,0.033627983,0.033104274,0.032591215,0.032088529,0.031595948,0.031113213,0.030640073,0.030176283,0.029721609,0.029275822,0.0288387,0.028410028,0.027989599,0.027577209,0.027172665,0.026775775,0.026386355,0.026004226,0.025629215,0.025261153,0.024899876,0.024545226,0.024197048,0.023855192,0.023519514,0.02318987,0.022866124,0.022548142,0.022235793,0.021928953,0.021627497,0.021331306,0.021040264,0.020754258,0.020473178,0.020196917,0.01992537,0.019658437,0.019396017,0.019138016,0.018884339,0.018634896,0.018389597,0.018148355,0.017911088,0.017677711,0.017448146,0.017222314,0.017000139,0.016781546,0.016566465,0.016354823,0.016146552,0.015941584,0.015739856,0.015541301,0.015345859,0.015153468,0.014964069,0.014777604,0.014594016,0.01441325,0.014235251,0.014059969,0.013887349,0.013717344,0.013549903,0.013384978,0.013222522,0.01306249,0.012904837,0.012749519,0.012596494,0.012445718,0.012297153,0.012150756,0.012006491,0.011864317,0.011724198,0.011586097,0.011449978,0.011315807,0.011183549,0.01105317,0.010924638,0.01079792,0.010672985,0.010549803,0.010428342,0.010308574,0.01019047,0.010074002,0.009959141,0.00984586,0.009734134,0.009623936,0.009515239,0.009408021,0.009302255,0.009197918,0.009094987,0.008993438,0.008893249,0.008794397,0.008696861,0.00860062,0.008505653,0.008411939,0.008319458,0.008228191,0.008138118,0.00804922,0.007961479,0.007874877,0.007789396,0.007705017,0.007621725,0.007539502,0.007458331,0.007378196,0.007299082,0.007220973,0.007143853,0.007067708,0.006992521,0.00691828,0.00684497,0.006772576,0.006701085,0.006630483,0.006560758,0.006491896,0.006423884,0.006356709,0.006290361,0.006224825,0.006160091,0.006096146,0.00603298,0.005970581,0.005908937,0.005848038,0.005787873,0.005728432,0.005669704,0.005611679,0.005554347,0.005497699,0.005441723,0.005386412,0.005331756,0.005277745,0.00522437,0.005171623,0.005119495,0.005067977,0.005017061,0.004966738,0.004917001,0.00486784,0.00481925,0.00477122,0.004723745,0.004676816,0.004630425,0.004584567,0.004539233,0.004494416,0.00445011,0.004406307,0.004363002,0.004320186,0.004277855,0.004236001,0.004194617,0.004153699,0.004113239,0.004073232,0.004033672,0.003994552,0.003955868,0.31384552,0.313490826,0.312433037,0.310690732,0.308293909,0.305282616,0.301705216,0.297616409,0.293075166,0.288142704,0.282880626,0.277349291,0.27160648,0.265706364,0.259698784,0.253628792,0.247536453,0.241456824,0.235420106,0.229451897,0.223573522,0.217802415,0.212152518,0.206669025,0.201429281,0.19642146,0.191631262,0.187045496,0.182651983,0.178439457,0.174397487,0.170516405,0.166787233,0.163201632,0.159732454,0.156337589,0.153018064,0.149775533,0.146611053,0.143525165,0.140517966,0.137589172,0.134738179,0.131964111,0.129265868,0.126642165,0.12409157,0.12161253,0.119203404,0.116862479,0.114587997,0.112378167,0.110231181,0.108145226,0.106118497,0.104149201,0.102235567,0.100375853,0.098568348,0.096811376,0.0951033,0.093442526,0.091827502,0.090256717,0.088728708,0.087242055,0.085795384,0.084387364,0.08301671,0.081682178,0.080382569,0.079116725,0.077883528,0.0766819,0.075510803,0.074369236,0.073256233,0.072170864,0.071112235,0.070079482,0.069071774,0.067893125,0.066591645,0.065323644,0.064088039,0.062883786,0.061709881,0.060565357,0.059449283,0.058360763,0.057298934,0.056262965,0.055252055,0.054265433,0.053302355,0.052362107,0.051443998,0.050547363,0.049671561,0.048815974,0.047980005,0.047163079,0.046364642,0.045584159,0.044821112,0.044075004,0.043345352,0.042631693,0.041933578,0.041250572,0.040582258,0.03992823,0.039288097,0.038661481,0.038048016,0.03744735,0.036859139,0.036283054,0.035718775,0.03516599,0.034624402,0.034093719,0.033573661,0.033063956,0.032564339,0.032074556,0.03159436,0.031123509,0.030661773,0.030208925,0.029764747,0.029329028,0.028901562,0.028482148,0.028070595,0.027666714,0.027270322,0.026881244,0.026499307,0.026124344,0.025756193,0.025394697,0.025039703,0.024691063,0.024348631,0.024012269,0.023681838,0.023357206,0.023038245,0.022724829,0.022416836,0.022114146,0.021816645,0.02152422,0.021236762,0.020954163,0.02067632,0.020403132,0.020134501,0.019870331,0.019610528,0.019355002,0.019103663,0.018856426,0.018613207,0.018373922,0.018138493,0.017906841,0.01767889,0.017454567,0.017233798,0.017016513,0.016802643,0.016592121,0.016384882,0.016180862,0.015979997,0.015782227,0.015587493,0.015395737,0.015206901,0.01502093,0.01483777,0.014657369,0.014479674,0.014304635,0.014132203,0.013962329,0.013794967,0.01363007,0.013467593,0.013307493,0.013149726,0.01299425,0.012841024,0.012690008,0.012541162,0.012394448,0.012249828,0.012107266,0.011966724,0.011828169,0.011691565,0.011556879,0.011424077,0.011293127,0.011163997,0.011036656,0.010911075,0.010787222,0.010665069,0.010544588,0.010425749,0.010308527,0.010192893,0.010078822,0.009966288,0.009855266,0.00974573,0.009637657,0.009531022,0.009425803,0.009321976,0.009219519,0.009118411,0.009018628,0.008920152,0.00882296,0.008727032,0.008632348,0.00853889,0.008446637,0.00835557,0.008265672,0.008176924,0.008089309,0.008002808,0.007917405,0.007833083,0.007749826,0.007667617,0.00758644,0.00750628,0.007427121,0.007348949,0.007271748,0.007195505,0.007120204,0.007045832,0.006972375,0.00689982,0.006828153,0.006757361,0.006687432,0.006618353,0.006550111,0.006482695,0.006416092,0.006350291,0.00628528,0.006221048,0.006157584,0.006094877,0.006032915,0.00597169,0.005911189,0.005851404,0.005792323,0.005733938,0.005676237,0.005619213,0.005562855,0.005507154,0.005452101,0.005397687,0.005343903,0.005290742,0.005238193,0.005186249,0.005134902,0.005084143,0.005033965,0.00498436,0.00493532,0.004886837,0.004838904,0.004791513,0.004744658,0.004698332,0.004652526,0.004607235,0.004562452,0.004518169,0.004474381,0.00443108,0.004388261,0.004345917,0.004304043,0.004262631,0.004221676,0.3178913,0.317529577,0.316450951,0.314674737,0.31223209,0.309164568,0.305522282,0.301361818,0.296744055,0.291732059,0.286389134,0.280777146,0.274955151,0.268978354,0.262897385,0.256757865,0.25060022,0.2444597,0.238366552,0.232346305,0.226420131,0.220605244,0.214915838,0.209432094,0.204194415,0.199187394,0.194396842,0.189809669,0.185413784,0.181198005,0.177151979,0.173266104,0.16953147,0.165939793,0.162483368,0.159135537,0.155857083,0.152649259,0.149513688,0.146451437,0.143463093,0.140548828,0.137708453,0.134941479,0.132247159,0.129624531,0.127072456,0.124589652,0.122174722,0.119826175,0.117542455,0.115321953,0.113163028,0.111064017,0.10902325,0.107039056,0.105109777,0.103233768,0.101409409,0.099635105,0.097909294,0.096230445,0.094597065,0.093007698,0.091460929,0.089955379,0.088489713,0.087062636,0.08567289,0.084319262,0.083000577,0.081715697,0.080463524,0.079243,0.078053098,0.076892833,0.075761251,0.074657432,0.073580491,0.072529571,0.07150385,0.07049515,0.069160988,0.067860731,0.066593296,0.065357639,0.064152757,0.06297768,0.061831477,0.060713248,0.059622129,0.058557284,0.05751791,0.056503232,0.055512502,0.054545001,0.053600033,0.052676929,0.051775044,0.050893753,0.050032456,0.049190573,0.048367544,0.047562828,0.046775903,0.046006266,0.04525343,0.044516926,0.043796298,0.043091109,0.042400934,0.041725364,0.041064002,0.040416465,0.039782383,0.039161396,0.038553159,0.037957336,0.037373601,0.036801641,0.036241151,0.035691836,0.035153411,0.0346256,0.034108134,0.033600753,0.033103207,0.03261525,0.032136648,0.031667169,0.031206593,0.030754702,0.030311288,0.029876148,0.029449084,0.029029905,0.028618426,0.028214465,0.027817848,0.027428405,0.027045969,0.026670382,0.026301485,0.025939128,0.025583164,0.025233448,0.024889842,0.02455221,0.02422042,0.023894343,0.023573855,0.023258835,0.022949164,0.022644727,0.022345412,0.02205111,0.021761715,0.021477124,0.021197235,0.020921951,0.020651175,0.020384816,0.020122781,0.019864983,0.019611335,0.019361753,0.019116155,0.018874461,0.018636594,0.018402476,0.018172034,0.017945195,0.017721889,0.017502047,0.017285601,0.017072486,0.016862637,0.016655993,0.016452491,0.016252072,0.016054678,0.015860252,0.015668738,0.015480082,0.015294231,0.015111132,0.014930736,0.014752991,0.014577851,0.014405268,0.014235194,0.014067586,0.013902398,0.013739588,0.013579112,0.01342093,0.013265001,0.013111286,0.012959744,0.01281034,0.012663034,0.012517792,0.012374576,0.012233353,0.012094089,0.011956749,0.011821302,0.011687714,0.011555955,0.011425994,0.011297801,0.011171347,0.011046602,0.010923538,0.010802127,0.010682343,0.010564158,0.010447547,0.010332483,0.010218943,0.0101069,0.009996332,0.009887214,0.009779524,0.009673238,0.009568334,0.009464791,0.009362586,0.0092617,0.009162111,0.009063798,0.008966744,0.008870926,0.008776328,0.008682929,0.008590712,0.008499657,0.008409749,0.008320969,0.0082333,0.008146725,0.008061228,0.007976792,0.007893403,0.007811043,0.007729699,0.007649354,0.007569994,0.007491605,0.007414173,0.007337682,0.00726212,0.007187473,0.007113728,0.007040871,0.006968891,0.006897773,0.006827507,0.006758079,0.006689478,0.006621692,0.00655471,0.006488519,0.00642311,0.00635847,0.00629459,0.006231458,0.006169065,0.006107399,0.006046451,0.005986211,0.005926669,0.005867815,0.005809641,0.005752136,0.005695292,0.0056391,0.00558355,0.005528634,0.005474344,0.005420672,0.005367607,0.005315144,0.005263273,0.005211987,0.005161278,0.005111139,0.005061561,0.005012537,0.004964061,0.004916125,0.004868721,0.004821844,0.004775485,0.004729639,0.004684298,0.004639456,0.004595107,0.004551245,0.004507862,0.322460189,0.322089573,0.320984587,0.319165468,0.316664842,0.313526166,0.309801758,0.305550578,0.300835913,0.295723149,0.290277732,0.284563422,0.278640879,0.272566608,0.266392239,0.260164113,0.253923124,0.247704775,0.241539388,0.235452424,0.229464879,0.223593712,0.217865663,0.212378725,0.20713695,0.20212501,0.197328786,0.192735256,0.188332389,0.184109058,0.180054961,0.176160543,0.172416937,0.1688159,0.165349762,0.162011379,0.15877975,0.155613927,0.152513828,0.149481098,0.146516865,0.1436218,0.140796182,0.138039949,0.135352748,0.13273398,0.130182837,0.12769834,0.125279367,0.122924681,0.120632951,0.118402779,0.11623271,0.114121252,0.112066889,0.110068092,0.108123326,0.106231062,0.104389782,0.102597985,0.100854191,0.099156945,0.097504823,0.095896428,0.0943304,0.092805411,0.091320169,0.089873417,0.088463936,0.087090541,0.085752087,0.084447462,0.08317559,0.081935431,0.080725979,0.079546262,0.078395341,0.077272308,0.076176288,0.075106435,0.074061934,0.073041996,0.071889994,0.07055572,0.069254709,0.067985917,0.066748342,0.065541015,0.064363001,0.0632134,0.062091345,0.060995998,0.059926551,0.058882227,0.057862275,0.056865968,0.05589261,0.054941525,0.054012063,0.053103595,0.052215515,0.051347239,0.050498199,0.049667852,0.04885567,0.048061143,0.047283779,0.046523104,0.045778657,0.045049995,0.044336688,0.043638321,0.042954492,0.042284813,0.041628908,0.040986414,0.040356978,0.03974026,0.03913593,0.038543669,0.037963167,0.037394125,0.036836253,0.036289269,0.035752902,0.035226886,0.034710966,0.034204893,0.033708427,0.033221333,0.032743387,0.032274366,0.031814059,0.031362258,0.030918763,0.030483377,0.030055911,0.029636182,0.02922401,0.028819222,0.028421648,0.028031126,0.027647495,0.027270601,0.026900293,0.026536423,0.026178851,0.025827436,0.025482045,0.025142546,0.024808811,0.024480716,0.02415814,0.023840965,0.023529077,0.023222364,0.022920717,0.02262403,0.0223322,0.022045126,0.021762711,0.021484858,0.021211475,0.020942472,0.020677758,0.02041725,0.020160861,0.01990851,0.019660117,0.019415604,0.019174895,0.018937915,0.018704592,0.018474854,0.018248634,0.018025863,0.017806475,0.017590406,0.017377593,0.017167975,0.016961492,0.016758085,0.016557697,0.016360272,0.016165756,0.015974094,0.015785236,0.015599129,0.015415723,0.015234971,0.015056825,0.014881237,0.014708162,0.014537555,0.014369373,0.014203573,0.014040114,0.013878954,0.013720053,0.013563372,0.013408874,0.013256519,0.013106272,0.012958097,0.012811958,0.012667821,0.012525652,0.012385418,0.012247087,0.012110626,0.011976006,0.011843195,0.011712163,0.011582882,0.011455322,0.011329456,0.011205255,0.011082694,0.010961745,0.010842383,0.010724582,0.010608318,0.010493565,0.0103803,0.0102685,0.01015814,0.0100492,0.009941655,0.009835486,0.00973067,0.009627186,0.009525014,0.009424134,0.009324525,0.009226169,0.009129047,0.009033139,0.008938427,0.008844893,0.00875252,0.00866129,0.008571187,0.008482192,0.00839429,0.008307465,0.0082217,0.008136981,0.008053291,0.007970616,0.007888942,0.007808252,0.007728534,0.007649773,0.007571955,0.007495067,0.007419096,0.007344028,0.00726985,0.007196551,0.007124117,0.007052536,0.006981797,0.006911887,0.006842795,0.006774509,0.006707019,0.006640313,0.006574381,0.006509211,0.006444793,0.006381117,0.006318173,0.006255951,0.006194441,0.006133633,0.006073517,0.006014086,0.005955328,0.005897236,0.0058398,0.005783011,0.005726861,0.005671342,0.005616444,0.005562161,0.005508483,0.005455403,0.005402912,0.005351004,0.005299671,0.005248904,0.005198698,0.005149043,0.005099934,0.005051364,0.005003324,0.004955809,0.004908812,0.004862327,0.004816346,0.26166603,0.261459611,0.260843016,0.259824131,0.258415799,0.256635382,0.254504199,0.252046855,0.249290518,0.246264172,0.242997884,0.239522111,0.235867084,0.232062269,0.228135923,0.224114745,0.22002362,0.21588545,0.211721061,0.207549166,0.203386401,0.199247378,0.195144795,0.191089544,0.187090853,0.183156425,0.17929258,0.175529482,0.17190844,0.16842263,0.16506489,0.161828543,0.158707355,0.155695502,0.152787538,0.149978362,0.147263195,0.144637554,0.14209723,0.139638269,0.137256951,0.134949775,0.132709619,0.130510407,0.128348748,0.126225571,0.124141574,0.122097255,0.120092927,0.11812874,0.116204705,0.114320704,0.112476513,0.110671809,0.108906192,0.107179188,0.105490265,0.103838841,0.102224291,0.10064596,0.099103161,0.097595189,0.096121322,0.094680828,0.093272966,0.091896992,0.090552163,0.089237735,0.087952972,0.086697143,0.085469525,0.084269404,0.083096079,0.081948858,0.080827065,0.079730035,0.078657117,0.077607674,0.076581086,0.075576744,0.074594057,0.073318363,0.072021363,0.07075428,0.069516292,0.068306598,0.067124422,0.065969008,0.064839621,0.063735551,0.062656106,0.061600614,0.060568424,0.059558906,0.058571444,0.057605446,0.056660335,0.055735551,0.054830552,0.053944812,0.05307782,0.052229084,0.051398121,0.050584469,0.049787674,0.049007301,0.048242925,0.047494133,0.046760528,0.046041722,0.045337339,0.044647016,0.043970397,0.043307142,0.042656917,0.042019398,0.041394273,0.040781237,0.040179995,0.03959026,0.039011754,0.038444207,0.037887355,0.037340945,0.036804727,0.036278463,0.035761917,0.035254864,0.034757081,0.034268355,0.033788478,0.033317245,0.032854461,0.032399933,0.031953476,0.031514908,0.031084052,0.030660737,0.030244797,0.029836068,0.029434393,0.029039618,0.028651593,0.028270172,0.027895213,0.027526579,0.027164134,0.026807747,0.026457291,0.02611264,0.025773675,0.025440276,0.025112329,0.024789721,0.024472342,0.024160087,0.02385285,0.023550531,0.023253031,0.022960253,0.022672102,0.022388488,0.02210932,0.021834512,0.021563976,0.021297632,0.021035396,0.020777189,0.020522935,0.020272558,0.020025982,0.019783138,0.019543953,0.019308358,0.019076288,0.018847675,0.018622456,0.018400568,0.018181949,0.01796654,0.017754281,0.017545116,0.017338989,0.017135844,0.016935628,0.016738289,0.016543775,0.016352036,0.016163023,0.015976688,0.015792984,0.015611865,0.015433287,0.015257204,0.015083575,0.014912356,0.014743506,0.014576986,0.014412755,0.014250774,0.014091006,0.013933413,0.01377796,0.013624609,0.013473327,0.013324079,0.013176831,0.013031551,0.012888206,0.012746765,0.012607196,0.01246947,0.012333556,0.012199426,0.012067051,0.011936402,0.011807453,0.011680176,0.011554545,0.011430534,0.011308117,0.011187269,0.011067967,0.010950186,0.010833902,0.010719092,0.010605734,0.010493805,0.010383284,0.010274148,0.010166378,0.010059952,0.009954849,0.009851051,0.009748537,0.009647288,0.009547286,0.009448512,0.009350947,0.009254574,0.009159376,0.009065334,0.008972432,0.008880654,0.008789983,0.008700404,0.008611899,0.008524454,0.008438054,0.008352683,0.008268327,0.008184972,0.008102603,0.008021206,0.007940768,0.007861274,0.007782713,0.00770507,0.007628333,0.007552489,0.007477526,0.007403432,0.007330195,0.007257802,0.007186243,0.007115505,0.007045578,0.006976451,0.006908113,0.006840552,0.006773759,0.006707723,0.006642435,0.006577883,0.006514059,0.006450952,0.006388552,0.006326852,0.006265841,0.006205509,0.00614585,0.006086852,0.006028508,0.00597081,0.005913748,0.005857315,0.005801502,0.005746302,0.005691706,0.005637706,0.005584296,0.005531467,0.005479212,0.005427524,0.005376395,0.005325819,0.005275788,0.005226296,0.005177335,0.005128899,0.275807815,0.275587784,0.274930598,0.273844876,0.272344641,0.270448835,0.268180682,0.265566949,0.262637133,0.259422636,0.255955956,0.252269932,0.248397067,0.244368947,0.240215772,0.235965984,0.231646001,0.227280054,0.222890091,0.218495764,0.214114467,0.209761418,0.205449775,0.201190773,0.196993875,0.19286693,0.188819909,0.184909382,0.181146752,0.177524068,0.174033926,0.170669422,0.167424112,0.164291975,0.16126738,0.158345055,0.155520059,0.152787757,0.1501438,0.147584097,0.145104806,0.142702305,0.140373185,0.138114053,0.135903241,0.133728263,0.131590144,0.129489678,0.127427459,0.125403895,0.12341923,0.121473565,0.119566871,0.117699009,0.11586974,0.11407874,0.112325612,0.110609894,0.108931072,0.107288587,0.105681842,0.104110209,0.102573036,0.101069651,0.099599369,0.098161493,0.09675532,0.095380145,0.094035261,0.092719963,0.091433552,0.090175332,0.088944617,0.087740728,0.086562998,0.085410768,0.084283394,0.083180243,0.082100692,0.081044136,0.08000998,0.07893749,0.077561486,0.07621668,0.074902237,0.073617343,0.072361205,0.071133053,0.069932136,0.068757726,0.067609115,0.066485613,0.065386552,0.064311281,0.063259171,0.062229608,0.061221998,0.060235762,0.05927034,0.058325188,0.057399778,0.056493598,0.055606149,0.05473695,0.053885532,0.053051439,0.052234232,0.051433481,0.050648771,0.049879699,0.049125873,0.048386913,0.04766245,0.046952127,0.046255594,0.045572516,0.044902563,0.044245418,0.043600771,0.042968322,0.04234778,0.04173886,0.041141289,0.040554797,0.039979127,0.039414023,0.038859243,0.038314545,0.0377797,0.03725448,0.036738667,0.036232048,0.035734415,0.035245566,0.034765305,0.03429344,0.033829787,0.033374165,0.032926396,0.032486311,0.032053742,0.031628527,0.031210507,0.03079953,0.030395444,0.029998104,0.029607368,0.029223097,0.028845155,0.028473412,0.028107739,0.027748011,0.027394106,0.027045905,0.026703293,0.026366156,0.026034384,0.02570787,0.025386509,0.025070198,0.024758838,0.024452331,0.024150583,0.0238535,0.023560992,0.023272971,0.022989349,0.022710044,0.022434973,0.022164054,0.021897211,0.021634365,0.021375443,0.02112037,0.020869076,0.020621491,0.020377545,0.020137173,0.019900309,0.019666889,0.019436851,0.019210134,0.018986678,0.018766425,0.018549317,0.0183353,0.018124317,0.017916317,0.017711246,0.017509053,0.017309688,0.017113103,0.016919249,0.01672808,0.016539548,0.01635361,0.016170221,0.015989338,0.015810919,0.015634923,0.015461308,0.015290035,0.015121066,0.014954361,0.014789885,0.014627599,0.014467469,0.014309459,0.014153534,0.013999661,0.013847807,0.01369794,0.013550026,0.013404036,0.013259939,0.013117704,0.012977303,0.012838705,0.012701884,0.012566811,0.01243346,0.012301802,0.012171813,0.012043466,0.011916736,0.011791598,0.011668028,0.011546003,0.011425498,0.011306491,0.011188959,0.01107288,0.010958232,0.010844994,0.010733145,0.010622664,0.010513531,0.010405726,0.01029923,0.010194024,0.010090088,0.009987404,0.009885954,0.00978572,0.009686685,0.009588831,0.009492141,0.009396599,0.009302188,0.009208893,0.009116697,0.009025585,0.008935542,0.008846552,0.008758601,0.008671674,0.008585758,0.008500838,0.008416899,0.00833393,0.008251916,0.008170844,0.008090701,0.008011475,0.007933154,0.007855724,0.007779174,0.007703491,0.007628665,0.007554684,0.007481536,0.00740921,0.007337695,0.007266981,0.007197057,0.007127912,0.007059536,0.006991919,0.006925052,0.006858923,0.006793524,0.006728845,0.006664877,0.006601611,0.006539036,0.006477146,0.006415929,0.006355379,0.006295487,0.006236243,0.006177641,0.006119671,0.006062326,0.006005597,0.005949478,0.00589396,0.005839035,0.005784697,0.005730938,0.005677751,0.291199298,0.290963408,0.290258949,0.289095435,0.287488332,0.285458508,0.283031511,0.280236727,0.277106467,0.273675045,0.26997787,0.266050616,0.261928472,0.257645522,0.253234226,0.248725042,0.244146145,0.239523268,0.234879617,0.230235875,0.225610258,0.221018621,0.216474596,0.211989749,0.207573756,0.203234579,0.199005786,0.194937759,0.191023098,0.187253557,0.183621459,0.180119648,0.176741443,0.173480602,0.170331289,0.16728804,0.164345733,0.161499567,0.158745033,0.156077893,0.153494165,0.150990097,0.148562156,0.146207013,0.143921523,0.14169771,0.139510813,0.137358828,0.135242671,0.133163056,0.131120507,0.129115385,0.1271479,0.125218131,0.12332604,0.121471487,0.119654242,0.117873994,0.116130368,0.114422929,0.112751192,0.11111463,0.109512682,0.107944757,0.106410242,0.104908505,0.1034389,0.102000773,0.100593459,0.099216294,0.09786861,0.096549741,0.095259027,0.093995808,0.092759435,0.091549264,0.090364662,0.089205003,0.088069674,0.086958072,0.085869606,0.084803696,0.083607931,0.082179926,0.080783577,0.07941806,0.078082572,0.07677633,0.07549857,0.07424855,0.073025545,0.071828852,0.070657786,0.06951168,0.068389887,0.067291777,0.066216736,0.065164171,0.064133503,0.063124171,0.062135627,0.061167343,0.060218803,0.059289507,0.058378969,0.057486717,0.056612293,0.055755251,0.05491516,0.054091599,0.05328416,0.052492448,0.051716077,0.050954674,0.050207875,0.049475328,0.04875669,0.048051629,0.04735982,0.046680948,0.04601471,0.045360807,0.044718951,0.044088862,0.043470266,0.042862898,0.042266501,0.041680824,0.041105623,0.04054066,0.039985705,0.039440534,0.038904928,0.038378675,0.037861567,0.037353404,0.03685399,0.036363133,0.035880649,0.035406357,0.03494008,0.034481648,0.034030892,0.033587651,0.033151766,0.032723083,0.032301452,0.031886725,0.03147876,0.031077417,0.030682561,0.03029406,0.029911784,0.029535607,0.029165407,0.028801065,0.028442462,0.028089486,0.027742025,0.02739997,0.027063216,0.026731659,0.026405199,0.026083737,0.025767176,0.025455424,0.025148387,0.024845978,0.024548107,0.024254691,0.023965645,0.023680887,0.023400339,0.023123922,0.02285156,0.022583179,0.022318706,0.02205807,0.021801202,0.021548032,0.021298496,0.021052528,0.020810065,0.020571043,0.020335404,0.020103086,0.019874031,0.019648184,0.019425487,0.019205887,0.018989329,0.018775763,0.018565136,0.018357398,0.0181525,0.017950394,0.017751034,0.017554372,0.017360365,0.017168967,0.016980135,0.016793828,0.016610002,0.016428618,0.016249636,0.016073016,0.01589872,0.015726711,0.015556951,0.015389405,0.015224037,0.015060812,0.014899696,0.014740657,0.01458366,0.014428674,0.014275668,0.014124611,0.013975471,0.01382822,0.013682829,0.013539268,0.013397509,0.013257526,0.01311929,0.012982776,0.012847956,0.012714807,0.012583302,0.012453417,0.012325128,0.01219841,0.012073241,0.011949597,0.011827457,0.011706797,0.011587597,0.011469834,0.011353488,0.011238539,0.011124966,0.011012749,0.010901868,0.010792305,0.010684041,0.010577056,0.010471334,0.010366855,0.010263603,0.01016156,0.010060709,0.009961034,0.009862517,0.009765143,0.009668896,0.009573761,0.009479721,0.009386762,0.009294869,0.009204027,0.009114223,0.009025441,0.008937668,0.008850891,0.008765095,0.008680268,0.008596397,0.008513468,0.00843147,0.008350389,0.008270214,0.008190932,0.008112532,0.008035003,0.007958332,0.007882508,0.00780752,0.007733358,0.007660011,0.007587468,0.007515718,0.007444751,0.007374558,0.007305128,0.007236452,0.00716852,0.007101322,0.007034849,0.006969091,0.006904041,0.006839688,0.006776025,0.006713041,0.00665073,0.006589082,0.006528089,0.006467743,0.006408036,0.00634896,0.006290507,0.30802948,0.307774903,0.307014758,0.305759671,0.304026902,0.301839703,0.299226488,0.296219864,0.292855593,0.289171533,0.285206623,0.280999948,0.276589911,0.272013553,0.267305996,0.262500042,0.257625888,0.252710974,0.247779914,0.242854524,0.237953904,0.233094571,0.228290629,0.223553956,0.218894398,0.214326754,0.209919472,0.205680866,0.201601712,0.19767343,0.193888032,0.190238071,0.186716599,0.183317124,0.180033576,0.176860273,0.173791892,0.170823439,0.167950229,0.165167857,0.162472184,0.159859312,0.15732557,0.154867497,0.152481828,0.150165482,0.147915543,0.145718655,0.143554793,0.141424581,0.139328876,0.137268345,0.135243485,0.133254641,0.131302017,0.129385697,0.127505657,0.125661777,0.123853851,0.122081602,0.120344687,0.11864271,0.116975225,0.115341749,0.113741763,0.112174721,0.110640053,0.109137173,0.10766548,0.10622436,0.104813196,0.103431364,0.102078238,0.100753193,0.099455606,0.098184858,0.096940334,0.095721428,0.094527539,0.093358076,0.092212456,0.091090107,0.089990467,0.088697004,0.087213029,0.085761182,0.084340654,0.082950653,0.081590409,0.080259167,0.078956193,0.077680769,0.076432198,0.075209799,0.074012909,0.072840883,0.071693094,0.07056893,0.069467796,0.068389115,0.067332323,0.066296873,0.065282234,0.064287887,0.063313331,0.062358076,0.061421646,0.060503581,0.05960343,0.058720757,0.057855138,0.057006161,0.056173423,0.055356537,0.054555123,0.053768812,0.052997247,0.052240079,0.051496971,0.050767593,0.050051625,0.049348756,0.048658683,0.047981114,0.04731576,0.046662344,0.046020595,0.045390249,0.044771051,0.044162751,0.043565105,0.042977879,0.042400841,0.041833768,0.041276443,0.040728653,0.040190191,0.039660857,0.039140454,0.038628792,0.038125685,0.037630952,0.037144416,0.036665906,0.036195254,0.035732297,0.035276876,0.034828835,0.034388024,0.033954295,0.033527504,0.033107511,0.032694179,0.032287375,0.031886969,0.031492833,0.031104845,0.030722882,0.030346828,0.029976566,0.029611985,0.029252975,0.028899429,0.028551241,0.02820831,0.027870536,0.027537822,0.027210073,0.026887194,0.026569096,0.02625569,0.025946889,0.025642609,0.025342765,0.025047278,0.024756067,0.024469056,0.02418617,0.023907333,0.023632473,0.02336152,0.023094404,0.022831058,0.022571414,0.022315409,0.022062979,0.021814062,0.021568596,0.021326523,0.021087783,0.020852321,0.02062008,0.020391005,0.020165043,0.019942142,0.01972225,0.019505316,0.019291293,0.01908013,0.018871782,0.018666201,0.018463342,0.018263162,0.018065615,0.01787066,0.017678255,0.017488358,0.017300929,0.01711593,0.01693332,0.016753062,0.01657512,0.016399456,0.016226034,0.01605482,0.01588578,0.015718878,0.015554083,0.015391362,0.015230682,0.015072013,0.014915324,0.014760585,0.014607765,0.014456837,0.014307771,0.014160539,0.014015115,0.01387147,0.01372958,0.013589417,0.013450955,0.013314171,0.013179039,0.013045535,0.012913636,0.012783317,0.012654557,0.012527332,0.012401621,0.012277401,0.012154651,0.012033351,0.011913479,0.011795016,0.011677941,0.011562234,0.011447878,0.011334852,0.011223138,0.011112717,0.011003573,0.010895686,0.01078904,0.010683618,0.010579402,0.010476376,0.010374524,0.01027383,0.010174279,0.010075853,0.00997854,0.009882322,0.009787187,0.009693118,0.009600103,0.009508126,0.009417175,0.009327235,0.009238293,0.009150336,0.00906335,0.008977325,0.008892245,0.0088081,0.008724877,0.008642565,0.00856115,0.008480623,0.00840097,0.008322182,0.008244247,0.008167154,0.008090892,0.008015451,0.00794082,0.007866989,0.007793949,0.007721688,0.007650197,0.007579467,0.007509488,0.007440251,0.007371746,0.007303964,0.007236897,0.007170535,0.00710487,0.007039893,0.006975596,0.326529638,0.326252759,0.325426189,0.324061958,0.322179587,0.319805329,0.316971193,0.313713812,0.310073232,0.306091693,0.301812466,0.29727879,0.292532955,0.28761554,0.282564822,0.277416348,0.272202654,0.266953122,0.261693941,0.256448165,0.251235829,0.24607413,0.240977621,0.235958441,0.23102657,0.226240236,0.221640182,0.217216029,0.212958135,0.208857538,0.204905891,0.201095418,0.197418863,0.193869449,0.190440842,0.187127111,0.183922703,0.180822409,0.177821341,0.174914909,0.172098794,0.169368933,0.166721501,0.16415289,0.161659699,0.159238714,0.156886902,0.154601392,0.15237947,0.150206665,0.148065072,0.145955553,0.143878943,0.141835903,0.139826933,0.137852388,0.135912496,0.134007368,0.132137014,0.130301352,0.128500218,0.126733381,0.125000546,0.123301364,0.121635442,0.120002345,0.118401606,0.11683273,0.115295197,0.113788471,0.112311997,0.110865213,0.109447545,0.108058415,0.106697241,0.105363441,0.104056431,0.102775631,0.101520467,0.100290366,0.099084763,0.0979031,0.096744826,0.0956094,0.094253709,0.092709507,0.09119791,0.089718127,0.088269382,0.086850918,0.085461992,0.084101881,0.082769877,0.081465288,0.080187441,0.078935679,0.077709361,0.076507861,0.075330571,0.074176898,0.073046263,0.071938105,0.070851875,0.06978704,0.068743081,0.067719493,0.066715785,0.065731477,0.064766104,0.063819214,0.062890366,0.061979132,0.061085093,0.060207845,0.059346993,0.058502153,0.057672951,0.056859025,0.05606002,0.055275592,0.054505407,0.05374914,0.053006472,0.052277097,0.051560713,0.05085703,0.050165762,0.049486632,0.048819373,0.04816372,0.04751942,0.046886223,0.046263887,0.045652177,0.045050864,0.044459723,0.043878537,0.043307093,0.042745186,0.042192613,0.041649178,0.041114691,0.040588964,0.040071816,0.039563069,0.039062552,0.038570096,0.038085536,0.037608713,0.03713947,0.036677655,0.036223119,0.035775718,0.035335309,0.034901756,0.034474923,0.034054679,0.033640895,0.033233447,0.032832211,0.032437069,0.032047904,0.031664602,0.031287052,0.030915145,0.030548776,0.030187839,0.029832235,0.029481864,0.02913663,0.028796437,0.028461194,0.028130811,0.027805198,0.027484269,0.027167941,0.02685613,0.026548757,0.026245741,0.025947005,0.025652475,0.025362076,0.025075735,0.024793383,0.024514949,0.024240366,0.023969568,0.023702489,0.023439066,0.023179237,0.022922941,0.022670118,0.022420709,0.022174658,0.021931909,0.021692405,0.021456094,0.021222924,0.020992841,0.020765796,0.020541739,0.020320621,0.020102395,0.019887014,0.019674433,0.019464606,0.019257489,0.01905304,0.018851215,0.018651975,0.018455277,0.018261082,0.018069351,0.017880045,0.017693128,0.017508561,0.017326309,0.017146336,0.016968607,0.016793088,0.016619745,0.016448546,0.016279458,0.016112448,0.015947487,0.015784544,0.015623587,0.015464589,0.015307519,0.01515235,0.014999053,0.014847601,0.014697966,0.014550124,0.014404046,0.014259709,0.014117086,0.013976154,0.013836887,0.013699262,0.013563256,0.013428846,0.013296008,0.013164721,0.013034963,0.012906713,0.012779949,0.01265465,0.012530797,0.012408369,0.012287346,0.012167709,0.01204944,0.011932518,0.011816926,0.011702646,0.01158966,0.011477949,0.011367498,0.011258289,0.011150305,0.01104353,0.010937948,0.010833543,0.010730298,0.0106282,0.010527232,0.010427379,0.010328628,0.010230963,0.010134371,0.010038836,0.009944347,0.009850888,0.009758447,0.00966701,0.009576565,0.009487099,0.009398599,0.009311052,0.009224448,0.009138773,0.009054016,0.008970166,0.00888721,0.008805138,0.008723938,0.0086436,0.008564113,0.008485466,0.008407649,0.008330651,0.008254462,0.008179072,0.008104472,0.008030652,0.007957602,0.007885312,0.007813774,0.007742978 -0.129529579,0.129295153,0.128597796,0.127454874,0.125894067,0.123951641,0.12167032,0.119096987,0.116280424,0.113269277,0.110110355,0.106847323,0.103519814,0.100162899,0.096806891,0.093477389,0.090195515,0.086978265,0.083838937,0.080787579,0.077851541,0.075077453,0.072455379,0.069950172,0.067525813,0.065184038,0.062925735,0.060750899,0.058658797,0.056648124,0.054717134,0.052863742,0.051085617,0.049380258,0.047745049,0.046177317,0.044674364,0.043233501,0.041852073,0.040527478,0.039257179,0.038038716,0.036869716,0.035747891,0.034671047,0.033637083,0.032643989,0.03168985,0.030772838,0.029891215,0.029043326,0.028227599,0.027442542,0.026686738,0.02595884,0.025257572,0.024581724,0.023930146,0.023301749,0.022695499,0.022110416,0.021545569,0.021000076,0.020473099,0.019963843,0.019471552,0.01899551,0.018535036,0.018089482,0.017658233,0.017240705,0.01683634,0.01644461,0.016065011,0.015697064,0.015340311,0.014994318,0.014658669,0.01433297,0.014016844,0.01370993,0.013411886,0.013122384,0.01284111,0.012567766,0.012302066,0.012043737,0.011792518,0.011548157,0.011310417,0.011079068,0.01085389,0.010634674,0.010421218,0.010213329,0.010010822,0.00981352,0.009621251,0.009433853,0.009251169,0.009073046,0.008899342,0.008729915,0.008564634,0.008403368,0.008245994,0.008092392,0.007942449,0.007796054,0.0076531,0.007513485,0.007377111,0.007243882,0.007113707,0.006986497,0.006862167,0.006740636,0.006621823,0.006505652,0.006392049,0.006280943,0.006172265,0.006065948,0.005961927,0.005860142,0.005760531,0.005663036,0.0055676,0.005474171,0.005382694,0.00529312,0.005205398,0.00511948,0.005035321,0.004952876,0.004872101,0.004792955,0.004715395,0.004639384,0.004564882,0.004491853,0.00442026,0.004350068,0.004281243,0.004213753,0.004147566,0.00408265,0.004018976,0.003956513,0.003895234,0.003835112,0.003776118,0.003718228,0.003661415,0.003605656,0.003550926,0.003497201,0.003444461,0.003392681,0.003341842,0.003291921,0.003242899,0.003194756,0.003147473,0.003101031,0.003055412,0.003010598,0.002966571,0.002923316,0.002880815,0.002839053,0.002798014,0.002757683,0.002718045,0.002679086,0.002640792,0.002603148,0.002566142,0.002529761,0.002493991,0.002458821,0.002424238,0.002390231,0.002356788,0.002323897,0.002291549,0.002259731,0.002228435,0.002197648,0.002167363,0.002137568,0.002108254,0.002079412,0.002051033,0.002023108,0.001995629,0.001968586,0.001941972,0.001915778,0.001889997,0.001864621,0.001839643,0.001815054,0.001790848,0.001767018,0.001743556,0.001720457,0.001697712,0.001675317,0.001653265,0.001631548,0.001610162,0.001589101,0.001568358,0.001547928,0.001527806,0.001507985,0.001488461,0.001469229,0.001450282,0.001431617,0.001413229,0.001395112,0.001377262,0.001359674,0.001342344,0.001325267,0.001308439,0.001291856,0.001275514,0.001259408,0.001243535,0.001227891,0.001212471,0.001197272,0.001182291,0.001167523,0.001152966,0.001138615,0.001124468,0.00111052,0.001096769,0.001083212,0.001069845,0.001056665,0.00104367,0.001030856,0.00101822,0.001005759,0.000993471,0.000981353,0.000969402,0.000957616,0.000945991,0.000934526,0.000923217,0.000912063,0.000901061,0.000890208,0.000879503,0.000868942,0.000858525,0.000848247,0.000838108,0.000828105,0.000818236,0.000808499,0.000798892,0.000789413,0.00078006,0.000770832,0.000761725,0.000752739,0.000743871,0.000735121,0.000726485,0.000717963,0.000709552,0.000701251,0.000693059,0.000684973,0.000676993,0.000669116,0.000661341,0.000653667,0.000646091,0.000638614,0.000631232,0.000623946,0.000616753,0.000609652,0.000602641,0.000595721,0.000588888,0.000582142,0.000575482,0.000568906,0.000562413,0.000556003,0.000549673,0.140824579,0.140572653,0.139823234,0.138594972,0.13691759,0.134830025,0.132378136,0.129612233,0.126584654,0.123347577,0.119951195,0.116442327,0.112863457,0.109252184,0.105641001,0.10205736,0.098523917,0.095058916,0.091676642,0.08838791,0.085228209,0.082242475,0.079418542,0.076730564,0.074129092,0.071612942,0.069183462,0.066841005,0.064585116,0.062414696,0.060328139,0.058323451,0.056398348,0.054550339,0.05277679,0.051074982,0.049442154,0.047875539,0.046372391,0.044930008,0.043545747,0.042217038,0.040941392,0.039716407,0.038539774,0.037409277,0.036322792,0.035278291,0.034273838,0.033307586,0.032377779,0.031482743,0.030620887,0.0297907,0.028990745,0.028219658,0.027476143,0.026758971,0.026066973,0.025399041,0.024754123,0.024131219,0.02352938,0.022947706,0.02238534,0.021841469,0.021315321,0.02080616,0.020313288,0.019836042,0.019373788,0.018925926,0.018491884,0.018071115,0.017663102,0.017267349,0.016883385,0.01651076,0.016149045,0.015797831,0.015456728,0.015125363,0.014803379,0.014490436,0.01418621,0.013890388,0.013602674,0.013322783,0.013050443,0.012785392,0.012527382,0.012276173,0.012031536,0.01179325,0.011561105,0.0113349,0.011114439,0.010899536,0.010690014,0.010485699,0.010286427,0.01009204,0.009902384,0.009717314,0.009536688,0.00936037,0.009188231,0.009020143,0.008855987,0.008695645,0.008539005,0.008385959,0.008236402,0.008090234,0.007947357,0.007807678,0.007671107,0.007537556,0.007406941,0.007279181,0.007154197,0.007031913,0.006912255,0.006795154,0.006680539,0.006568346,0.006458509,0.006350967,0.006245659,0.006142529,0.006041518,0.005942573,0.005845641,0.005750672,0.005657614,0.005566421,0.005477046,0.005389443,0.005303569,0.005219383,0.005136841,0.005055905,0.004976536,0.004898697,0.00482235,0.00474746,0.004673994,0.004601917,0.004531197,0.004461803,0.004393704,0.00432687,0.004261272,0.004196883,0.004133674,0.00407162,0.004010694,0.003950871,0.003892127,0.003834438,0.003777781,0.003722133,0.003667472,0.003613777,0.003561027,0.003509201,0.003458281,0.003408246,0.003359079,0.00331076,0.003263272,0.003216598,0.003170721,0.003125624,0.003081291,0.003037706,0.002994855,0.002952722,0.002911292,0.002870553,0.002830489,0.002791087,0.002752334,0.002714218,0.002676725,0.002639843,0.002603561,0.002567867,0.002532749,0.002498196,0.002464197,0.002430742,0.00239782,0.002365421,0.002333535,0.002302153,0.002271265,0.002240861,0.002210933,0.002181471,0.002152468,0.002123915,0.002095802,0.002068123,0.00204087,0.002014034,0.001987608,0.001961584,0.001935956,0.001910716,0.001885858,0.001861373,0.001837257,0.001813502,0.001790102,0.001767051,0.001744342,0.001721969,0.001699928,0.001678211,0.001656814,0.00163573,0.001614955,0.001594483,0.001574309,0.001554428,0.001534834,0.001515524,0.001496492,0.001477733,0.001459244,0.001441019,0.001423054,0.001405345,0.001387887,0.001370676,0.001353709,0.001336981,0.001320489,0.001304227,0.001288194,0.001272385,0.001256796,0.001241423,0.001226265,0.001211316,0.001196573,0.001182034,0.001167695,0.001153553,0.001139604,0.001125847,0.001112276,0.001098891,0.001085687,0.001072662,0.001059814,0.001047138,0.001034634,0.001022298,0.001010127,0.000998119,0.000986271,0.000974582,0.000963048,0.000951667,0.000940438,0.000929356,0.000918422,0.000907631,0.000896982,0.000886473,0.000876102,0.000865866,0.000855764,0.000845794,0.000835954,0.000826241,0.000816654,0.000807191,0.000797851,0.00078863,0.000779529,0.000770544,0.000761675,0.000752919,0.000744275,0.000735742,0.000727317,0.000718999,0.000710786,0.000702678,0.000694673,0.000686768,0.000678963,0.000671256,0.000663647,0.000656132,0.000648712,0.000641385,0.15304565,0.152774865,0.151969346,0.150649143,0.148846209,0.146602387,0.143966948,0.140993923,0.137739503,0.134259682,0.130608309,0.126835591,0.122987077,0.119103066,0.115218382,0.111362446,0.10755954,0.103829228,0.100186838,0.096643983,0.093244553,0.090031184,0.086990152,0.084104283,0.081317508,0.078618387,0.07600881,0.073489566,0.071060543,0.068720905,0.066469241,0.06430369,0.062222053,0.060221881,0.058300547,0.056455311,0.054683368,0.052981887,0.051348044,0.049779046,0.048272152,0.046824688,0.045434054,0.044097736,0.042813312,0.041578449,0.040390912,0.039248559,0.038149343,0.037091309,0.036072593,0.035091419,0.034146095,0.033235012,0.03235664,0.031509522,0.030692276,0.029903586,0.029142205,0.028406944,0.027696676,0.027010329,0.026346884,0.025705375,0.025084881,0.024484527,0.023903481,0.023340953,0.022796189,0.022268473,0.021757125,0.021261494,0.020780962,0.02031494,0.019862867,0.019424208,0.018998451,0.018585112,0.018183723,0.017793843,0.017415048,0.017046933,0.016689111,0.016341214,0.016002887,0.015673793,0.015353608,0.015042023,0.014738742,0.01444348,0.014155967,0.01387594,0.01360315,0.013337358,0.013078334,0.012825856,0.012579714,0.012339704,0.012105631,0.011877306,0.01165455,0.01143719,0.011225057,0.011017993,0.010815842,0.010618457,0.010425694,0.010237415,0.010053487,0.009873784,0.009698181,0.00952656,0.009358806,0.009194809,0.009034462,0.008877663,0.008724311,0.008574312,0.008427572,0.008284002,0.008143516,0.008006031,0.007871464,0.007739739,0.00761078,0.007484514,0.00736087,0.007239779,0.007121177,0.007004998,0.00689118,0.006779664,0.006670391,0.006563304,0.00645835,0.006355475,0.006254628,0.006155759,0.006058819,0.005963762,0.005870542,0.005779116,0.005689439,0.005601472,0.005515173,0.005430503,0.005347424,0.005265899,0.005185893,0.005107369,0.005030295,0.004954638,0.004880364,0.004807444,0.004735846,0.004665542,0.004596502,0.004528699,0.004462105,0.004396694,0.004332441,0.004269319,0.004207306,0.004146376,0.004086508,0.004027677,0.003969863,0.003913044,0.0038572,0.003802309,0.003748352,0.003695309,0.003643163,0.003591894,0.003541485,0.003491918,0.003443176,0.003395242,0.003348101,0.003301736,0.003256133,0.003211275,0.003167148,0.003123739,0.003081032,0.003039015,0.002997673,0.002956994,0.002916965,0.002877574,0.002838808,0.002800656,0.002763105,0.002726145,0.002689765,0.002653953,0.002618699,0.002583992,0.002549823,0.002516182,0.002483058,0.002450443,0.002418327,0.002386701,0.002355556,0.002324884,0.002294675,0.002264922,0.002235617,0.002206751,0.002178317,0.002150307,0.002122714,0.00209553,0.002068748,0.002042362,0.002016363,0.001990746,0.001965505,0.001940631,0.00191612,0.001891965,0.00186816,0.001844699,0.001821576,0.001798785,0.001776322,0.001754179,0.001732353,0.001710837,0.001689627,0.001668718,0.001648104,0.00162778,0.001607743,0.001587987,0.001568507,0.0015493,0.00153036,0.001511683,0.001493266,0.001475103,0.001457192,0.001439527,0.001422105,0.001404922,0.001387975,0.001371258,0.00135477,0.001338506,0.001322463,0.001306636,0.001291024,0.001275623,0.001260428,0.001245438,0.001230649,0.001216057,0.00120166,0.001187455,0.001173439,0.001159609,0.001145962,0.001132495,0.001119206,0.001106092,0.00109315,0.001080378,0.001067773,0.001055333,0.001043055,0.001030937,0.001018976,0.00100717,0.000995517,0.000984015,0.000972661,0.000961453,0.000950389,0.000939467,0.000928685,0.00091804,0.000907532,0.000897157,0.000886914,0.000876802,0.000866817,0.000856958,0.000847224,0.000837613,0.000828123,0.000818752,0.000809498,0.000800361,0.000791337,0.000782426,0.000773626,0.000764936,0.000756354,0.000747878,0.166259825,0.165968687,0.165102631,0.163683244,0.161744914,0.159332665,0.156499487,0.153303469,0.149804983,0.146064166,0.142138812,0.138082785,0.133944923,0.129768418,0.125590581,0.121442924,0.117351457,0.113337129,0.109416365,0.105601636,0.101949653,0.098495756,0.095225098,0.092124159,0.089144115,0.086253502,0.083454857,0.080749495,0.078137734,0.075619072,0.073192353,0.070855908,0.068607669,0.066445268,0.064366122,0.062367498,0.06044657,0.058600464,0.056826295,0.055121192,0.053482328,0.05190693,0.050392297,0.048935807,0.047534925,0.046187207,0.044890306,0.043641966,0.042440029,0.041282429,0.040167195,0.039092444,0.038056382,0.0370573,0.036093568,0.035163638,0.034266035,0.033399355,0.032562266,0.031753498,0.030971844,0.030216157,0.029485345,0.02877837,0.028094245,0.02743203,0.026790832,0.026169799,0.025568121,0.024985027,0.024419782,0.023871687,0.023340075,0.022824308,0.022323783,0.021837919,0.021366165,0.020907995,0.020462905,0.020030416,0.019610069,0.019201425,0.018804065,0.018417589,0.018041613,0.017675769,0.017319708,0.016973092,0.016635599,0.016306922,0.015986763,0.015674839,0.015370878,0.01507462,0.014785813,0.014504218,0.014229603,0.013961747,0.013700436,0.013445465,0.013196639,0.012953767,0.012716666,0.012485163,0.012259088,0.012038278,0.011822577,0.011611835,0.011405906,0.01120465,0.011007932,0.010815622,0.010627595,0.010443729,0.010263907,0.010088017,0.009915949,0.009747599,0.009582865,0.009421647,0.009263853,0.009109389,0.008958167,0.008810101,0.008665108,0.008523108,0.008384023,0.008247778,0.008114299,0.007983517,0.007855363,0.00772977,0.007606675,0.007486016,0.007367731,0.007251763,0.007138055,0.007026552,0.0069172,0.006809949,0.006704747,0.006601546,0.006500298,0.006400959,0.006303482,0.006207825,0.006113945,0.006021802,0.005931356,0.005842568,0.005755401,0.005669817,0.005585783,0.005503262,0.005422222,0.00534263,0.005264453,0.005187662,0.005112225,0.005038114,0.0049653,0.004893754,0.004823451,0.004754364,0.004686466,0.004619733,0.004554141,0.004489666,0.004426284,0.004363973,0.004302711,0.004242476,0.004183248,0.004125006,0.00406773,0.004011401,0.003955999,0.003901507,0.003847906,0.003795179,0.003743308,0.003692276,0.003642068,0.003592667,0.003544058,0.003496225,0.003449153,0.003402828,0.003357235,0.003312362,0.003268193,0.003224716,0.003181918,0.003139786,0.003098308,0.003057471,0.003017265,0.002977676,0.002938694,0.002900308,0.002862507,0.00282528,0.002788617,0.002752508,0.002716942,0.002681911,0.002647404,0.002613413,0.002579927,0.002546939,0.00251444,0.00248242,0.002450872,0.002419787,0.002389158,0.002358976,0.002329234,0.002299924,0.002271039,0.002242571,0.002214514,0.00218686,0.002159604,0.002132737,0.002106253,0.002080147,0.002054412,0.002029041,0.002004029,0.001979369,0.001955056,0.001931085,0.001907449,0.001884143,0.001861162,0.0018385,0.001816152,0.001794114,0.00177238,0.001750945,0.001729805,0.001708955,0.00168839,0.001668106,0.001648097,0.001628361,0.001608893,0.001589688,0.001570742,0.001552052,0.001533613,0.001515421,0.001497473,0.001479765,0.001462293,0.001445053,0.001428043,0.001411257,0.001394694,0.00137835,0.00136222,0.001346303,0.001330595,0.001315092,0.001299792,0.001284692,0.001269788,0.001255078,0.001240559,0.001226228,0.001212082,0.001198118,0.001184334,0.001170728,0.001157295,0.001144035,0.001130945,0.001118021,0.001105262,0.001092665,0.001080228,0.001067949,0.001055824,0.001043853,0.001032033,0.001020362,0.001008837,0.000997456,0.000986218,0.000975121,0.000964162,0.000953339,0.000942651,0.000932096,0.000921671,0.000911376,0.000901207,0.000891164,0.000881245,0.000871448,0.180537229,0.180224088,0.179292601,0.177766041,0.175681478,0.173087421,0.17004094,0.166604553,0.162843197,0.158821505,0.154601552,0.150241146,0.145792664,0.141302397,0.136810311,0.132350141,0.127949718,0.123631454,0.119412916,0.115308646,0.11139,0.107681584,0.104167753,0.100834335,0.09765053,0.094560663,0.091564583,0.088664245,0.085860487,0.083153229,0.080541648,0.07802433,0.075599397,0.073264613,0.071017479,0.068855307,0.066775282,0.064774512,0.062850072,0.060999034,0.059218496,0.057505602,0.055857557,0.054271637,0.052745205,0.051275708,0.049860687,0.048497777,0.047184707,0.045919304,0.044699486,0.043523263,0.042388737,0.041294095,0.04023761,0.039217635,0.038232602,0.037281015,0.036361454,0.035472564,0.034613057,0.033781705,0.03297734,0.032198852,0.031445181,0.030715321,0.030008311,0.029323239,0.028659233,0.028015463,0.027391141,0.026785511,0.026197855,0.025627487,0.025073755,0.024536033,0.024013726,0.023506264,0.023013105,0.022533729,0.02206764,0.021614363,0.021173444,0.020744449,0.020326963,0.019920587,0.01952494,0.019139658,0.018764391,0.018398803,0.018042573,0.017695392,0.017356965,0.017027008,0.016705249,0.016391424,0.016085284,0.015786586,0.015495098,0.015210596,0.014932867,0.014661702,0.014396904,0.014138281,0.013885649,0.01363883,0.013397653,0.013161954,0.012931573,0.012706358,0.01248616,0.012270837,0.012060253,0.011854273,0.011652771,0.011455622,0.011262706,0.01107391,0.01088912,0.01070823,0.010531134,0.010357733,0.010187928,0.010021626,0.009858735,0.009699168,0.009542837,0.009389662,0.009239561,0.009092457,0.008948275,0.008806941,0.008668386,0.00853254,0.008399338,0.008268714,0.008140607,0.008014956,0.007891702,0.007770787,0.007652157,0.007535758,0.007421537,0.007309444,0.007199429,0.007091445,0.006985445,0.006881384,0.006779217,0.006678903,0.006580399,0.006483666,0.006388663,0.006295353,0.006203698,0.006113662,0.00602521,0.005938308,0.005852923,0.005769021,0.005686571,0.005605542,0.005525905,0.00544763,0.005370688,0.005295051,0.005220694,0.005147588,0.005075709,0.005005032,0.004935531,0.004867183,0.004799965,0.004733855,0.004668829,0.004604866,0.004541946,0.004480047,0.00441915,0.004359235,0.004300282,0.004242274,0.004185191,0.004129017,0.004073733,0.004019323,0.003965769,0.003913057,0.003861169,0.003810091,0.003759807,0.003710302,0.003661562,0.003613573,0.00356632,0.003519792,0.003473973,0.003428851,0.003384414,0.003340649,0.003297544,0.003255088,0.003213268,0.003172073,0.003131492,0.003091514,0.003052129,0.003013326,0.002975095,0.002937427,0.00290031,0.002863736,0.002827695,0.002792178,0.002757176,0.002722681,0.002688683,0.002655174,0.002622146,0.002589591,0.002557501,0.002525867,0.002494683,0.002463941,0.002433633,0.002403753,0.002374293,0.002345246,0.002316606,0.002288365,0.002260518,0.002233058,0.002205979,0.002179274,0.002152938,0.002126964,0.002101347,0.002076081,0.00205116,0.00202658,0.002002334,0.001978417,0.001954824,0.001931551,0.001908591,0.001885941,0.001863594,0.001841548,0.001819796,0.001798335,0.001777159,0.001756265,0.001735648,0.001715304,0.001695229,0.001675418,0.001655868,0.001636575,0.001617535,0.001598743,0.001580197,0.001561893,0.001543826,0.001525994,0.001508393,0.00149102,0.00147387,0.001456942,0.001440231,0.001423735,0.001407449,0.001391372,0.0013755,0.00135983,0.00134436,0.001329086,0.001314005,0.001299115,0.001284412,0.001269896,0.001255561,0.001241407,0.00122743,0.001213628,0.001199998,0.001186539,0.001173247,0.00116012,0.001147156,0.001134353,0.001121707,0.001109219,0.001096884,0.0010847,0.001072667,0.001060781,0.001049041,0.001037444,0.001025989,0.001014673,0.156726346,0.156550236,0.156024773,0.155158435,0.153964944,0.152462688,0.150673989,0.148624244,0.146341033,0.143853226,0.141190139,0.138380788,0.135453255,0.13243418,0.129348382,0.126218605,0.123065365,0.119906901,0.116759194,0.113636043,0.110549194,0.107508481,0.104522001,0.10159628,0.098738722,0.095991669,0.093363848,0.090848035,0.088437566,0.086124319,0.083873939,0.08167706,0.079534999,0.077448589,0.075418245,0.073444027,0.071525692,0.069662746,0.067854485,0.066100035,0.064398382,0.062748403,0.061148891,0.059598575,0.058096137,0.056640231,0.055229492,0.053862551,0.05253804,0.051254602,0.050010899,0.048805611,0.047637446,0.04650514,0.045407462,0.044343212,0.043311226,0.042310373,0.04133956,0.040397729,0.039483857,0.038596958,0.037736078,0.036900301,0.036088742,0.035300549,0.034534903,0.033791016,0.033068128,0.03236551,0.031682462,0.031018307,0.030372399,0.029744113,0.029132852,0.02853804,0.027959123,0.027395569,0.026846869,0.02631253,0.025792079,0.025285064,0.024791047,0.024309609,0.023840345,0.023382867,0.022936801,0.022501788,0.022077481,0.021663548,0.021259667,0.02086553,0.020480839,0.020105308,0.019738661,0.019380631,0.019030963,0.018689408,0.018355729,0.018029696,0.017711087,0.017399689,0.017095294,0.016797703,0.016506725,0.016222173,0.015943869,0.015671638,0.015405313,0.015144733,0.014889742,0.014640187,0.014395923,0.014156808,0.013922707,0.013693485,0.013469016,0.013249175,0.013033842,0.012822902,0.012616241,0.01241375,0.012215325,0.012020862,0.011830263,0.011643431,0.011460273,0.011280699,0.011104621,0.010931954,0.010762616,0.010596526,0.010433606,0.010273782,0.010116981,0.00996313,0.00981216,0.009664006,0.009518601,0.009375883,0.009235789,0.00909826,0.008963238,0.008830666,0.008700488,0.008572653,0.008447107,0.0083238,0.008202683,0.008083708,0.007966828,0.007851998,0.007739173,0.007628311,0.007519369,0.007412307,0.007307084,0.007203663,0.007102006,0.007002075,0.006903835,0.00680725,0.006712288,0.006618914,0.006527096,0.006436802,0.006348002,0.006260666,0.006174764,0.006090267,0.006007149,0.005925381,0.005844936,0.00576579,0.005687916,0.00561129,0.005535887,0.005461685,0.00538866,0.005316789,0.00524605,0.005176422,0.005107885,0.005040416,0.004973997,0.004908608,0.00484423,0.004780843,0.00471843,0.004656972,0.004596453,0.004536854,0.00447816,0.004420353,0.004363419,0.00430734,0.004252102,0.00419769,0.004144089,0.004091285,0.004039263,0.00398801,0.003937512,0.003887757,0.00383873,0.003790421,0.003742815,0.003695901,0.003649667,0.003604102,0.003559194,0.003514931,0.003471304,0.0034283,0.00338591,0.003344124,0.00330293,0.00326232,0.003222284,0.003182811,0.003143894,0.003105522,0.003067686,0.003030379,0.00299359,0.002957313,0.002921537,0.002886257,0.002851462,0.002817146,0.002783302,0.00274992,0.002716994,0.002684517,0.002652482,0.002620881,0.002589708,0.002558956,0.002528618,0.002498688,0.00246916,0.002440027,0.002411284,0.002382923,0.00235494,0.002327328,0.002300082,0.002273196,0.002246665,0.002220483,0.002194646,0.002169146,0.002143981,0.002119144,0.002094631,0.002070437,0.002046556,0.002022986,0.00199972,0.001976754,0.001954084,0.001931705,0.001909614,0.001887805,0.001866276,0.001845021,0.001824037,0.001803319,0.001782865,0.001762669,0.001742729,0.001723041,0.0017036,0.001684404,0.001665449,0.001646732,0.001628248,0.001609996,0.001591971,0.00157417,0.001556591,0.00153923,0.001522083,0.001505149,0.001488423,0.001471904,0.001455587,0.001439471,0.001423553,0.00140783,0.001392298,0.001376956,0.001361801,0.001346831,0.001332042,0.001317432,0.001302999,0.001288741,0.001274655,0.001260738,0.172217166,0.172025538,0.171453781,0.170511143,0.169212588,0.167578164,0.165632197,0.163402356,0.160918674,0.158212568,0.155315927,0.152260293,0.149076177,0.145792503,0.142436207,0.139031954,0.135601986,0.132166065,0.128741499,0.12534323,0.12198397,0.118674365,0.115423176,0.112237467,0.109128311,0.106143782,0.103287375,0.10055138,0.097928682,0.095412705,0.092981505,0.090605587,0.088286087,0.086024178,0.083820566,0.081675555,0.079589104,0.077560882,0.075590319,0.073676641,0.07181891,0.070016057,0.068266908,0.066570206,0.064924638,0.063328844,0.061781438,0.06028102,0.058826182,0.057415524,0.056047656,0.054721203,0.053434817,0.052187172,0.050976975,0.049802963,0.048663905,0.047558607,0.04648591,0.045444691,0.044433862,0.043452372,0.042499206,0.041573384,0.040673961,0.039800024,0.038950696,0.03812513,0.037322512,0.036542057,0.035783011,0.035044648,0.034326268,0.0336272,0.032946797,0.032284437,0.031639523,0.031011477,0.030399749,0.029803804,0.029223131,0.028657238,0.02810565,0.027567911,0.027043583,0.026532242,0.026033483,0.025546914,0.025072157,0.02460885,0.024156644,0.0237152,0.023284196,0.022863317,0.022452262,0.022050741,0.021658473,0.021275189,0.020900626,0.020534534,0.02017667,0.019826799,0.019484696,0.019150142,0.018822925,0.018502842,0.018189697,0.017883298,0.017583463,0.017290013,0.017002776,0.016721587,0.016446284,0.016176712,0.01591272,0.015654162,0.015400899,0.015152792,0.01490971,0.014671525,0.014438112,0.014209352,0.013985127,0.013765326,0.013549837,0.013338556,0.013131379,0.012928207,0.012728942,0.01253349,0.012341761,0.012153665,0.011969117,0.011788032,0.011610331,0.011435934,0.011264765,0.011096749,0.010931814,0.01076989,0.010610908,0.010454803,0.010301509,0.010150965,0.010003108,0.009857879,0.009715222,0.009575078,0.009437395,0.009302118,0.009169195,0.009038577,0.008910213,0.008784056,0.00866006,0.008538178,0.008418367,0.008300584,0.008184786,0.008070932,0.007958982,0.007848898,0.007740641,0.007634175,0.007529463,0.00742647,0.007325161,0.007225504,0.007127464,0.007031011,0.006936114,0.00684274,0.006750862,0.00666045,0.006571475,0.00648391,0.006397728,0.006312902,0.006229407,0.006147218,0.006066309,0.005986657,0.005908238,0.00583103,0.005755009,0.005680155,0.005606444,0.005533857,0.005462373,0.005391971,0.005322633,0.005254338,0.005187068,0.005120805,0.005055531,0.004991228,0.004927878,0.004865466,0.004803974,0.004743386,0.004683687,0.004624861,0.004566893,0.004509767,0.00445347,0.004397987,0.004343304,0.004289408,0.004236286,0.004183923,0.004132307,0.004081426,0.004031267,0.003981819,0.003933068,0.003885005,0.003837617,0.003790893,0.003744822,0.003699394,0.003654597,0.003610423,0.003566859,0.003523898,0.003481528,0.003439741,0.003398527,0.003357876,0.003317781,0.003278231,0.003239218,0.003200735,0.003162771,0.00312532,0.003088374,0.003051923,0.003015961,0.00298048,0.002945472,0.002910931,0.002876848,0.002843217,0.002810031,0.002777284,0.002744967,0.002713076,0.002681603,0.002650541,0.002619886,0.002589631,0.002559769,0.002530295,0.002501202,0.002472487,0.002444141,0.002416161,0.002388541,0.002361275,0.002334359,0.002307787,0.002281553,0.002255654,0.002230084,0.002204838,0.002179912,0.002155302,0.002131001,0.002107007,0.002083314,0.002059919,0.002036817,0.002014004,0.001991475,0.001969227,0.001947256,0.001925558,0.001904129,0.001882965,0.001862062,0.001841417,0.001821026,0.001800886,0.001780993,0.001761344,0.001741935,0.001722763,0.001703825,0.001685117,0.001666636,0.00164838,0.001630344,0.001612527,0.001594925,0.001577535,0.001560355,0.001543381,0.00152661,0.001510041,0.001493669,0.001477493,0.189300213,0.189091435,0.188468522,0.187441586,0.186026989,0.184246644,0.182127127,0.179698652,0.176993994,0.174047416,0.170893669,0.167567106,0.164100924,0.160526575,0.156873321,0.153167943,0.149434569,0.145694622,0.141966854,0.138267443,0.134610144,0.131006473,0.1274659,0.123996062,0.120615013,0.117373999,0.114270556,0.111296462,0.108444126,0.10570653,0.103074189,0.10050814,0.097999668,0.095550364,0.09316129,0.090833053,0.088565869,0.086359623,0.084213919,0.082128123,0.08010141,0.078132793,0.076221159,0.074365292,0.072563899,0.070815628,0.069119086,0.067472855,0.065875499,0.064325581,0.062821669,0.061362342,0.059946196,0.05857185,0.057237951,0.055943174,0.054686225,0.053465846,0.052280812,0.051129934,0.050012059,0.048926072,0.047870891,0.046845473,0.045848809,0.044879926,0.043937883,0.043021774,0.042130727,0.0412639,0.040420481,0.03959969,0.038800774,0.03802301,0.0372657,0.036528173,0.035809783,0.035109909,0.034427952,0.033763335,0.033115505,0.032483926,0.031868086,0.031267489,0.030681659,0.030110137,0.02955248,0.029008263,0.028477075,0.027958522,0.027452221,0.026957807,0.026474925,0.026003234,0.025542405,0.025092119,0.024652072,0.024221967,0.02380152,0.023390454,0.022988505,0.022595416,0.022210939,0.021834834,0.021466871,0.021106826,0.020754483,0.020409633,0.020072074,0.019741611,0.019418055,0.019101224,0.018790941,0.018487034,0.018189339,0.017897694,0.017611945,0.01733194,0.017057535,0.016788588,0.016524963,0.016266526,0.01601315,0.01576471,0.015521084,0.015282156,0.015047812,0.014817941,0.014592437,0.014371195,0.014154116,0.013941099,0.013732052,0.01352688,0.013325495,0.01312781,0.012933738,0.012743199,0.012556112,0.012372398,0.012191984,0.012014794,0.011840758,0.011669805,0.011501868,0.011336881,0.01117478,0.011015502,0.010858987,0.010705175,0.010554009,0.010405432,0.01025939,0.01011583,0.0099747,0.009835948,0.009699526,0.009565386,0.009433481,0.009303765,0.009176194,0.009050724,0.008927313,0.00880592,0.008686503,0.008569025,0.008453447,0.00833973,0.008227839,0.008117739,0.008009393,0.007902768,0.007797831,0.00769455,0.007592892,0.007492827,0.007394325,0.007297356,0.007201891,0.007107902,0.007015362,0.006924243,0.00683452,0.006746165,0.006659156,0.006573466,0.006489071,0.006405949,0.006324075,0.006243429,0.006163987,0.006085727,0.00600863,0.005932674,0.005857839,0.005784106,0.005711454,0.005639865,0.005569321,0.005499803,0.005431294,0.005363776,0.005297232,0.005231646,0.005167,0.00510328,0.005040468,0.004978551,0.004917513,0.004857339,0.004798015,0.004739526,0.004681859,0.004624999,0.004568935,0.004513652,0.004459138,0.00440538,0.004352366,0.004300083,0.00424852,0.004197666,0.004147509,0.004098037,0.004049239,0.004001106,0.003953626,0.003906789,0.003860584,0.003815003,0.003770034,0.003725669,0.003681898,0.003638711,0.003596101,0.003554056,0.00351257,0.003471633,0.003431236,0.003391373,0.003352034,0.003313211,0.003274896,0.003237083,0.003199763,0.003162928,0.003126573,0.003090688,0.003055268,0.003020305,0.002985793,0.002951724,0.002918093,0.002884892,0.002852116,0.002819759,0.002787813,0.002756273,0.002725134,0.002694389,0.002664032,0.002634058,0.002604462,0.002575238,0.00254638,0.002517884,0.002489744,0.002461955,0.002434512,0.00240741,0.002380645,0.002354211,0.002328104,0.002302319,0.002276852,0.002251699,0.002226854,0.002202314,0.002178074,0.002154131,0.00213048,0.002107116,0.002084037,0.002061238,0.002038715,0.002016465,0.001994483,0.001972767,0.001951312,0.001930114,0.001909172,0.00188848,0.001868036,0.001847836,0.001827877,0.001808156,0.001788669,0.001769414,0.001750387,0.001731585,0.208157344,0.207929542,0.207249888,0.206129476,0.204586249,0.202644228,0.200332531,0.197684239,0.194735212,0.191522906,0.188085279,0.184459815,0.180682705,0.176788202,0.172808144,0.168771635,0.164704877,0.160631107,0.156570648,0.152541016,0.148557091,0.14463132,0.140773932,0.136993165,0.133318573,0.129799166,0.126427489,0.123194768,0.120092903,0.117114403,0.114252328,0.111484314,0.10877556,0.106127045,0.103540269,0.101016214,0.09855542,0.096158044,0.093823918,0.0915526,0.089343417,0.087195505,0.085107845,0.083079291,0.081108599,0.079194446,0.077335452,0.075530199,0.073777239,0.072075112,0.070422353,0.068817502,0.067259111,0.065745748,0.064276005,0.0628485,0.061461879,0.06011482,0.058806035,0.057534271,0.05629831,0.055096969,0.053929103,0.052793603,0.051689394,0.05061544,0.049570738,0.04855432,0.04756525,0.046602629,0.045665585,0.044753281,0.043864908,0.042999688,0.042156871,0.041335732,0.040535575,0.03975573,0.038995549,0.03825441,0.037531713,0.036826879,0.036139352,0.035468596,0.034814093,0.034175345,0.033551872,0.032943212,0.032348918,0.03176856,0.031201723,0.030648008,0.030107029,0.029578414,0.029061803,0.028556851,0.028063223,0.027580596,0.027108658,0.02664711,0.026195659,0.025754026,0.025321939,0.024899136,0.024485363,0.024080376,0.023683938,0.02329582,0.0229158,0.022543664,0.022179205,0.021822222,0.021472521,0.021129913,0.020794217,0.020465255,0.020142859,0.019826861,0.019517101,0.019213424,0.01891568,0.018623721,0.018337407,0.0180566,0.017781166,0.017510977,0.017245906,0.016985832,0.016730636,0.016480204,0.016234425,0.015993189,0.015756392,0.015523931,0.015295708,0.015071625,0.01485159,0.014635509,0.014423296,0.014214864,0.014010128,0.013809007,0.013611423,0.013417297,0.013226554,0.013039122,0.012854928,0.012673905,0.012495983,0.012321098,0.012149185,0.011980182,0.011814029,0.011650665,0.011490033,0.011332077,0.011176743,0.011023976,0.010873724,0.010725937,0.010580564,0.010437559,0.010296873,0.01015846,0.010022275,0.009888275,0.009756417,0.009626659,0.00949896,0.009373281,0.009249582,0.009127825,0.009007974,0.008889992,0.008773845,0.008659496,0.008546913,0.008436062,0.008326912,0.00821943,0.008113586,0.00800935,0.007906692,0.007805583,0.007705996,0.007607902,0.007511275,0.007416089,0.007322317,0.007229935,0.007138917,0.007049239,0.006960879,0.006873812,0.006788016,0.00670347,0.00662015,0.006538036,0.006457107,0.006377343,0.006298724,0.00622123,0.006144842,0.006069541,0.005995309,0.005922128,0.005849981,0.005778849,0.005708716,0.005639566,0.005571381,0.005504147,0.005437848,0.005372467,0.005307991,0.005244405,0.005181693,0.005119842,0.005058838,0.004998667,0.004939316,0.004880772,0.004823022,0.004766053,0.004709853,0.00465441,0.004599712,0.004545746,0.004492503,0.00443997,0.004388136,0.00433699,0.004286522,0.004236722,0.004187579,0.004139082,0.004091223,0.004043991,0.003997377,0.003951371,0.003905964,0.003861148,0.003816913,0.00377325,0.003730151,0.003687608,0.003645612,0.003604155,0.003563229,0.003522826,0.003482939,0.00344356,0.003404682,0.003366296,0.003328397,0.003290976,0.003254028,0.003217544,0.003181519,0.003145946,0.003110818,0.003076129,0.003041873,0.003008043,0.002974633,0.002941638,0.002909051,0.002876867,0.00284508,0.002813685,0.002782675,0.002752046,0.002721792,0.002691909,0.00266239,0.002633231,0.002604426,0.002575972,0.002547862,0.002520093,0.00249266,0.002465557,0.002438781,0.002412327,0.002386191,0.002360368,0.002334854,0.002309645,0.002284737,0.002260126,0.002235807,0.002211777,0.002188032,0.002164568,0.002141381,0.002118469,0.002095826,0.002073449,0.002051336,0.002029482,0.228995715,0.22874672,0.228003868,0.226779369,0.225092971,0.222971095,0.220445749,0.217553268,0.214333002,0.210826013,0.207073868,0.203117565,0.198996642,0.194748473,0.190407751,0.186006153,0.181572155,0.177130985,0.172704674,0.168312189,0.163969623,0.159690416,0.155485601,0.151364054,0.14737333,0.143551422,0.139888189,0.136374266,0.133001004,0.129760402,0.126645045,0.123647244,0.120727343,0.117868079,0.115071478,0.112338984,0.10967154,0.107069646,0.10453343,0.102062698,0.099656983,0.097315593,0.095037645,0.092822102,0.090667801,0.08857348,0.0865378,0.084559361,0.082636727,0.08076843,0.078952989,0.077188918,0.075474734,0.073808966,0.072190157,0.070616875,0.06908771,0.067601283,0.066156244,0.064751278,0.063385104,0.062056473,0.060764176,0.059507037,0.058283919,0.057093718,0.055935367,0.054807836,0.053710125,0.052641272,0.051600347,0.050586451,0.049598718,0.048636311,0.047698424,0.046784278,0.045893125,0.04502424,0.044176926,0.043350511,0.042544346,0.041757807,0.040990291,0.040241217,0.039510025,0.038796175,0.038099146,0.037418436,0.036753559,0.036104049,0.035469455,0.034849341,0.034243288,0.03365089,0.033071756,0.032505508,0.031951781,0.031410224,0.030880495,0.030362267,0.02985522,0.02935905,0.028873458,0.028398158,0.027932872,0.027477332,0.027031279,0.026594462,0.026166637,0.025747569,0.025337032,0.024934804,0.024540673,0.024154431,0.023775879,0.023404822,0.023041073,0.022684449,0.022334775,0.021991878,0.021655593,0.021325758,0.021002218,0.020684822,0.020373421,0.020067874,0.019768041,0.019473789,0.019184986,0.018901507,0.018623227,0.018350027,0.018081791,0.017818406,0.017559762,0.017305751,0.017056271,0.01681122,0.016570501,0.016334017,0.016101675,0.015873386,0.015649061,0.015428615,0.015211964,0.014999026,0.014789724,0.01458398,0.014381719,0.014182868,0.013987356,0.013795114,0.013606073,0.013420169,0.013237336,0.013057513,0.012880638,0.012706652,0.012535497,0.012367116,0.012201454,0.012038457,0.011878073,0.01172025,0.011564938,0.011412088,0.011261653,0.011113586,0.010967841,0.010824374,0.010683142,0.010544102,0.010407213,0.010272435,0.010139727,0.010009051,0.00988037,0.009753647,0.009628845,0.009505929,0.009384866,0.00926562,0.009148159,0.009032451,0.008918465,0.008806169,0.008695533,0.008586528,0.008479125,0.008373296,0.008269012,0.008166247,0.008064975,0.007965169,0.007866804,0.007769855,0.007674298,0.007580108,0.007487263,0.00739574,0.007305516,0.007216569,0.007128877,0.007042421,0.006957178,0.006873129,0.006790254,0.006708534,0.006627949,0.006548481,0.006470111,0.006392821,0.006316595,0.006241414,0.006167261,0.006094121,0.006021977,0.005950812,0.005880612,0.00581136,0.005743043,0.005675644,0.00560915,0.005543546,0.005478818,0.005414952,0.005351936,0.005289756,0.005228399,0.005167851,0.005108102,0.005049138,0.004990947,0.004933518,0.004876839,0.004820899,0.004765686,0.004711189,0.004657398,0.004604302,0.00455189,0.004500153,0.00444908,0.004398661,0.004348887,0.004299748,0.004251236,0.004203339,0.00415605,0.00410936,0.00406326,0.004017741,0.003972795,0.003928413,0.003884588,0.003841311,0.003798575,0.003756371,0.003714693,0.003673532,0.003632881,0.003592734,0.003553082,0.003513919,0.003475238,0.003437032,0.003399295,0.00336202,0.0033252,0.003288829,0.003252901,0.00321741,0.003182349,0.003147714,0.003113497,0.003079693,0.003046297,0.003013302,0.002980704,0.002948497,0.002916675,0.002885234,0.002854168,0.002823473,0.002793142,0.002763172,0.002733557,0.002704293,0.002675375,0.002646798,0.002618558,0.00259065,0.00256307,0.002535814,0.002508877,0.002482255,0.002455944,0.002429939,0.002404238,0.002378835,0.252051859,0.251779142,0.250965563,0.249624618,0.247778127,0.245455267,0.242691355,0.239526443,0.236003863,0.232168774,0.228066828,0.223742991,0.219240564,0.214600411,0.209860408,0.205055082,0.20021542,0.195368832,0.190539212,0.185747099,0.181009888,0.176342082,0.171755563,0.167262073,0.162929529,0.158778343,0.154797672,0.150977511,0.147308617,0.143782434,0.140391037,0.13712707,0.133977514,0.130896671,0.127878632,0.124925407,0.122038431,0.119218637,0.116466527,0.113782225,0.111165541,0.108616009,0.106132939,0.103715449,0.101362502,0.099072932,0.096845475,0.094678785,0.092571458,0.090522044,0.088529067,0.086591032,0.084706437,0.082873783,0.08109158,0.07935835,0.077672639,0.076033016,0.074438076,0.072886446,0.071376782,0.069907778,0.068478158,0.067086683,0.065732151,0.064413394,0.06312928,0.061878713,0.060660632,0.059474009,0.058317853,0.057191203,0.056093131,0.055022743,0.053979173,0.052961586,0.051969176,0.051001165,0.050056802,0.049135362,0.048236146,0.047358479,0.046501711,0.045665214,0.04484838,0.044050626,0.043271387,0.042510119,0.041766294,0.041039407,0.040328966,0.0396345,0.038955551,0.038291678,0.037642455,0.03700747,0.036386327,0.03577864,0.035184039,0.034602164,0.034032669,0.033475218,0.032929487,0.032395162,0.031871939,0.031359525,0.030857636,0.030365997,0.02988434,0.02941241,0.028949955,0.028496735,0.028052514,0.027617067,0.027190173,0.026771619,0.026361199,0.025958711,0.025563963,0.025176765,0.024796935,0.024424296,0.024058676,0.023699907,0.023347827,0.02300228,0.022663112,0.022330175,0.022003324,0.021682421,0.021367329,0.021057915,0.020754051,0.020455613,0.020162478,0.019874528,0.01959165,0.01931373,0.019040661,0.018772336,0.018508653,0.018249512,0.017994814,0.017744466,0.017498374,0.017256448,0.017018602,0.016784749,0.016554806,0.016328693,0.016106329,0.015887639,0.015672547,0.01546098,0.015252867,0.015048138,0.014846724,0.014648561,0.014453583,0.014261728,0.014072933,0.01388714,0.013704289,0.013524323,0.013347187,0.013172825,0.013001186,0.012832216,0.012665865,0.012502084,0.012340824,0.012182038,0.012025679,0.011871703,0.011720066,0.011570723,0.011423634,0.011278756,0.01113605,0.010995476,0.010856995,0.01072057,0.010586164,0.010453741,0.010323266,0.010194703,0.01006802,0.009943183,0.009820159,0.009698918,0.009579428,0.009461658,0.00934558,0.009231164,0.009118381,0.009007203,0.008897604,0.008789557,0.008683034,0.008578011,0.008474463,0.008372364,0.008271691,0.008172419,0.008074526,0.00797799,0.007882787,0.007788895,0.007696294,0.007604963,0.00751488,0.007426025,0.00733838,0.007251924,0.007166638,0.007082503,0.006999502,0.006917617,0.006836829,0.006757121,0.006678476,0.006600879,0.006524311,0.006448758,0.006374204,0.006300632,0.006228029,0.006156378,0.006085666,0.006015878,0.005947,0.005879017,0.005811918,0.005745687,0.005680312,0.005615781,0.00555208,0.005489197,0.00542712,0.005365837,0.005305336,0.005245605,0.005186634,0.00512841,0.005070924,0.005014163,0.004958119,0.004902779,0.004848134,0.004794174,0.004740889,0.00468827,0.004636306,0.004584988,0.004534307,0.004484254,0.00443482,0.004385996,0.004337774,0.004290145,0.0042431,0.004196632,0.004150732,0.004105392,0.004060605,0.004016363,0.003972658,0.003929483,0.003886831,0.003844694,0.003803065,0.003761937,0.003721303,0.003681157,0.003641492,0.003602301,0.003563578,0.003525317,0.003487511,0.003450154,0.00341324,0.003376763,0.003340718,0.003305098,0.003269898,0.003235112,0.003200734,0.003166761,0.003133184,0.003100001,0.003067205,0.003034792,0.003002755,0.002971091,0.002939795,0.002908861,0.002878286,0.002848063,0.00281819,0.00278866,0.277596918,0.277297509,0.276404356,0.274932452,0.272906017,0.270357418,0.267325793,0.263855481,0.259994383,0.255792349,0.251299692,0.246565883,0.241638473,0.236562257,0.23137867,0.22612541,0.220836244,0.215540976,0.210265536,0.205032163,0.199859649,0.194763628,0.189756872,0.18486116,0.180156803,0.175647347,0.1713212,0.167167664,0.163176852,0.159339614,0.155647467,0.152092538,0.148667511,0.14535213,0.142101949,0.138916371,0.13579744,0.132746624,0.129764893,0.126852783,0.124010455,0.121237747,0.118534227,0.115899229,0.113331896,0.110831209,0.108396021,0.106025078,0.103717044,0.10147052,0.099284058,0.097156181,0.095085388,0.093070172,0.091109021,0.089200432,0.087342914,0.085534996,0.083775225,0.082062179,0.080394458,0.078770699,0.077189568,0.075649764,0.074150022,0.072689112,0.071265837,0.069879037,0.068527586,0.067210396,0.065926408,0.0646746,0.063453984,0.062263602,0.061102528,0.059969869,0.058864759,0.057786364,0.056733877,0.055706517,0.054703534,0.053724198,0.052767809,0.051833688,0.050921181,0.050029654,0.049158498,0.048307121,0.047474956,0.04666145,0.045866073,0.045088311,0.044327668,0.043583664,0.042855836,0.042143735,0.04144693,0.040765,0.040097542,0.039444164,0.038804488,0.038178146,0.037564785,0.036964062,0.036375645,0.035799213,0.035234454,0.034681069,0.034138764,0.033607258,0.033086276,0.032575555,0.032074836,0.031583871,0.031102419,0.030630244,0.030167122,0.02971283,0.029267156,0.028829892,0.028400838,0.027979798,0.027566582,0.027161008,0.026762896,0.026372072,0.025988369,0.025611623,0.025241675,0.024878369,0.024521557,0.024171092,0.023826832,0.023488639,0.023156379,0.022829921,0.022509138,0.022193907,0.021884107,0.021579622,0.021280336,0.020986141,0.020696926,0.020412588,0.020133023,0.019858133,0.019587819,0.019321987,0.019060544,0.018803402,0.018550471,0.018301667,0.018056905,0.017816106,0.017579189,0.017346077,0.017116695,0.016890969,0.016668827,0.016450199,0.016235017,0.016023215,0.015814725,0.015609486,0.015407435,0.015208512,0.015012656,0.014819811,0.014629919,0.014442925,0.014258776,0.014077418,0.0138988,0.013722871,0.013549583,0.013378887,0.013210736,0.013045084,0.012881885,0.012721097,0.012562675,0.012406578,0.012252764,0.012101192,0.011951825,0.011804622,0.011659546,0.01151656,0.011375628,0.011236714,0.011099784,0.010964803,0.010831738,0.010700557,0.010571228,0.010443719,0.010317999,0.01019404,0.01007181,0.009951282,0.009832427,0.009715218,0.009599627,0.009485628,0.009373194,0.009262301,0.009152922,0.009045035,0.008938613,0.008833635,0.008730076,0.008627914,0.008527127,0.008427693,0.00832959,0.008232797,0.008137294,0.00804306,0.007950076,0.007858323,0.00776778,0.007678429,0.007590252,0.007503231,0.007417347,0.007332584,0.007248925,0.007166352,0.007084849,0.007004399,0.006924988,0.006846599,0.006769217,0.006692827,0.006617413,0.006542963,0.00646946,0.006396892,0.006325244,0.006254503,0.006184655,0.006115688,0.006047588,0.005980343,0.005913941,0.005848369,0.005783615,0.005719668,0.005656516,0.005594147,0.00553255,0.005471715,0.005411629,0.005352284,0.005293668,0.005235771,0.005178583,0.005122093,0.005066293,0.005011172,0.004956721,0.004902931,0.004849792,0.004797295,0.004745432,0.004694194,0.004643571,0.004593557,0.004544142,0.004495318,0.004447077,0.004399411,0.004352313,0.004305775,0.004259788,0.004214346,0.004169442,0.004125067,0.004081216,0.00403788,0.003995054,0.00395273,0.003910902,0.003869563,0.003828706,0.003788326,0.003748415,0.003708969,0.00366998,0.003631443,0.003593351,0.0035557,0.003518483,0.003481694,0.003445329,0.003409381,0.003373845,0.003338716,0.003303989,0.003269658,0.305943253,0.305613624,0.304630408,0.303010348,0.300780476,0.297976884,0.294643167,0.290828643,0.286586509,0.281972028,0.277040866,0.271847647,0.266444756,0.260881431,0.255203113,0.249451041,0.243662063,0.23786862,0.232098863,0.22637687,0.220722931,0.21515387,0.209683389,0.204355843,0.199247646,0.194348933,0.189647305,0.18513132,0.180790398,0.176614746,0.172595286,0.168723589,0.164991819,0.161392684,0.15789984,0.154471491,0.151109104,0.14781481,0.144590164,0.14143622,0.138353592,0.135342513,0.132402892,0.129534355,0.126736294,0.1240079,0.121348199,0.11875608,0.116230322,0.113769613,0.111372575,0.109037776,0.106763748,0.104548997,0.102392017,0.100291296,0.098245324,0.096252602,0.094311645,0.09242099,0.090579194,0.088784842,0.087036548,0.085332957,0.083672744,0.082054619,0.080477325,0.078939639,0.077440374,0.075978376,0.074552525,0.073161735,0.071804955,0.070481165,0.069189378,0.067928639,0.066698023,0.065496636,0.064323614,0.063178119,0.062059342,0.060966503,0.059898844,0.058855635,0.05783617,0.056839766,0.055865764,0.054913525,0.053982433,0.053071892,0.052181326,0.051310178,0.05045791,0.049624,0.048807945,0.048009258,0.047227469,0.04646212,0.045712772,0.044978998,0.044260385,0.043556533,0.042867057,0.04219158,0.041529741,0.040881188,0.040245582,0.039622593,0.039011901,0.038413198,0.037826184,0.037250567,0.036686067,0.03613241,0.035589331,0.035056573,0.034533887,0.034021031,0.03351777,0.033023877,0.032539131,0.032063315,0.031596223,0.031137652,0.030687405,0.03024529,0.029811123,0.029384723,0.028965914,0.028554526,0.028150393,0.027753354,0.027363252,0.026979936,0.026603255,0.026233067,0.025869231,0.025511609,0.02516007,0.024814483,0.024474722,0.024140665,0.023812191,0.023489185,0.023171533,0.022859123,0.02255185,0.022249606,0.02195229,0.021659802,0.021372045,0.021088923,0.020810345,0.02053622,0.020266459,0.020000977,0.01973969,0.019482516,0.019229375,0.01898019,0.018734883,0.018493382,0.018255612,0.018021504,0.017790988,0.017563997,0.017340464,0.017120324,0.016903516,0.016689977,0.016479647,0.016272467,0.01606838,0.015867329,0.01566926,0.015474118,0.01528185,0.015092407,0.014905736,0.014721789,0.014540518,0.014361876,0.014185816,0.014012293,0.013841264,0.013672684,0.013506512,0.013342706,0.013181226,0.013022031,0.012865083,0.012710345,0.012557777,0.012407345,0.012259012,0.012112742,0.011968503,0.011826259,0.011685978,0.011547628,0.011411177,0.011276594,0.011143848,0.01101291,0.01088375,0.010756339,0.01063065,0.010506654,0.010384326,0.010263637,0.010144562,0.010027076,0.009911154,0.00979677,0.009683901,0.009572523,0.009462613,0.009354148,0.009247106,0.009141464,0.009037202,0.008934298,0.00883273,0.00873248,0.008633526,0.00853585,0.008439431,0.008344252,0.008250292,0.008157535,0.008065961,0.007975554,0.007886296,0.00779817,0.00771116,0.007625248,0.007540419,0.007456656,0.007373945,0.00729227,0.007211616,0.007131968,0.007053311,0.006975632,0.006898916,0.006823149,0.006748318,0.00667441,0.00660141,0.006529307,0.006458088,0.00638774,0.006318251,0.006249609,0.006181802,0.006114818,0.006048646,0.005983275,0.005918693,0.005854889,0.005791853,0.005729574,0.005668042,0.005607247,0.005547178,0.005487825,0.005429179,0.00537123,0.005313969,0.005257386,0.005201472,0.005146218,0.005091616,0.005037656,0.00498433,0.00493163,0.004879546,0.004828072,0.004777199,0.004726918,0.004677222,0.004628104,0.004579556,0.004531569,0.004484138,0.004437254,0.004390911,0.004345101,0.004299818,0.004255054,0.004210804,0.004167059,0.004123815,0.004081064,0.0040388,0.003997016,0.003955707,0.003914867,0.00387449,0.003834569,0.337452458,0.337088387,0.336002548,0.334213759,0.331752378,0.328658898,0.324982161,0.320777331,0.316103796,0.311023119,0.305597169,0.299886502,0.293949044,0.287839086,0.281606593,0.275296775,0.268949909,0.262601342,0.256281648,0.250016891,0.243828953,0.23773591,0.231752956,0.225965338,0.220417396,0.215094726,0.209984056,0.205073133,0.200350627,0.19580605,0.191429676,0.187212473,0.183146045,0.179222577,0.175434782,0.171754414,0.168138999,0.164590375,0.161110825,0.157702048,0.154365232,0.151101118,0.147910057,0.144792065,0.141746868,0.138773946,0.13587257,0.133041836,0.130280696,0.12758798,0.124962426,0.122402691,0.119907376,0.117475038,0.115104202,0.112793375,0.110541053,0.108345732,0.10620591,0.104120099,0.102086828,0.100104643,0.098172115,0.096287843,0.094450451,0.092658595,0.090910963,0.089206274,0.087543281,0.085920769,0.084337557,0.082792498,0.081284479,0.079812416,0.078375262,0.076972,0.075601645,0.074263241,0.072955865,0.07167862,0.070430641,0.069211087,0.068019148,0.066854038,0.065714997,0.064601288,0.063512201,0.062447048,0.061405162,0.060385899,0.059388635,0.058412769,0.057457715,0.056522909,0.055607806,0.054711875,0.053834606,0.052975503,0.052134085,0.051309889,0.050502466,0.049711378,0.048936206,0.04817654,0.047431984,0.046702155,0.045986681,0.045285202,0.04459737,0.043922844,0.043261298,0.042612413,0.04197588,0.041351399,0.040738681,0.040137443,0.039547411,0.038968321,0.038399913,0.037841939,0.037294154,0.036756323,0.036228215,0.03570961,0.035200289,0.034700042,0.034208665,0.033725959,0.033251731,0.032785792,0.03232796,0.031878057,0.031435909,0.03100135,0.030574213,0.030154341,0.029741578,0.029335773,0.028936778,0.028544451,0.028158651,0.027779243,0.027406094,0.027039076,0.026678062,0.02632293,0.025973561,0.025629837,0.025291645,0.024958876,0.024631419,0.024309171,0.023992028,0.02367989,0.023372659,0.02307024,0.02277254,0.022479466,0.022190932,0.021906849,0.021627134,0.021351703,0.021080476,0.020813374,0.02055032,0.020291238,0.020036055,0.019784699,0.019537099,0.019293188,0.019052897,0.018816162,0.018582917,0.0183531,0.01812665,0.017903507,0.017683612,0.017466907,0.017253337,0.017042845,0.016835379,0.016630886,0.016429313,0.016230612,0.016034731,0.015841623,0.015651241,0.015463538,0.015278468,0.015095988,0.014916053,0.01473862,0.014563649,0.014391098,0.014220927,0.014053097,0.013887568,0.013724304,0.013563267,0.013404421,0.013247731,0.01309316,0.012940676,0.012790245,0.012641834,0.01249541,0.012350942,0.012208399,0.012067751,0.011928967,0.011792018,0.011656877,0.011523513,0.0113919,0.011262011,0.011133819,0.011007298,0.010882422,0.010759165,0.010637504,0.010517414,0.010398871,0.010281852,0.010166333,0.010052292,0.009939708,0.009828557,0.009718819,0.009610473,0.009503498,0.009397874,0.009293581,0.009190599,0.00908891,0.008988493,0.008889332,0.008791407,0.0086947,0.008599195,0.008504873,0.008411717,0.008319711,0.008228839,0.008139084,0.008050431,0.007962863,0.007876365,0.007790923,0.007706521,0.007623144,0.007540779,0.007459412,0.007379027,0.007299612,0.007221154,0.007143638,0.007067052,0.006991384,0.006916619,0.006842747,0.006769755,0.006697631,0.006626363,0.006555939,0.006486349,0.00641758,0.006349621,0.006282463,0.006216093,0.006150502,0.006085679,0.006021614,0.005958297,0.005895717,0.005833865,0.005772732,0.005712307,0.005652583,0.005593548,0.005535195,0.005477514,0.005420497,0.005364135,0.005308419,0.005253342,0.005198894,0.005145068,0.005091855,0.005039248,0.00498724,0.004935821,0.004884986,0.004834725,0.004785033,0.004735902,0.004687324,0.004639292,0.004591801,0.004544842,0.00449841,0.372545692,0.372142064,0.3709384,0.368956004,0.366229219,0.362803795,0.358734822,0.354084403,0.348919238,0.343308296,0.337320692,0.331023876,0.32448216,0.317755625,0.310899371,0.30396308,0.296990849,0.290021233,0.283087448,0.276217689,0.269435527,0.262760331,0.256223007,0.249936798,0.243908517,0.23812272,0.232565175,0.227222738,0.22208326,0.217135489,0.212368991,0.207774075,0.203341734,0.199063578,0.194931787,0.190939064,0.187061354,0.183250236,0.1795061,0.175831446,0.172228181,0.168697687,0.165240887,0.161858299,0.158550092,0.155316133,0.15215603,0.149069169,0.146054748,0.14311181,0.140239267,0.137435924,0.1347005,0.132031648,0.129427966,0.126888016,0.124410331,0.12199343,0.119635823,0.117336021,0.115092539,0.112903907,0.110768667,0.108685384,0.106652645,0.104669062,0.102733275,0.100843954,0.098999797,0.097199535,0.09544193,0.093725776,0.092049899,0.090413159,0.088814445,0.087252682,0.085726821,0.084235849,0.082778781,0.081354662,0.079962567,0.078601597,0.077270885,0.075969587,0.074696888,0.073451998,0.07223415,0.071042605,0.069876644,0.068735572,0.067618715,0.066525424,0.065455065,0.064407028,0.06338072,0.062375569,0.06139102,0.060426533,0.059481589,0.058555681,0.057648322,0.056759037,0.055887366,0.055032865,0.054195102,0.053373658,0.052568128,0.051778118,0.051003247,0.050243144,0.049497451,0.048765819,0.048047911,0.047343398,0.046651962,0.045973293,0.045307092,0.044653067,0.044010935,0.043380421,0.042761259,0.042153188,0.041555956,0.040969318,0.040393036,0.039826879,0.03927062,0.038724041,0.03818693,0.037659078,0.037140284,0.036630351,0.03612909,0.035636314,0.035151841,0.034675497,0.034207109,0.033746511,0.033293539,0.032848035,0.032409846,0.031978819,0.03155481,0.031137674,0.030727272,0.03032347,0.029926133,0.029535134,0.029150346,0.028771646,0.028398915,0.028032035,0.027670893,0.027315376,0.026965377,0.02662079,0.02628151,0.025947437,0.025618471,0.025294517,0.02497548,0.024661268,0.024351792,0.024046963,0.023746695,0.023450906,0.023159512,0.022872434,0.022589593,0.022310912,0.022036318,0.021765736,0.021499095,0.021236325,0.020977357,0.020722124,0.020470562,0.020222604,0.01997819,0.019737256,0.019499744,0.019265594,0.019034748,0.018807151,0.018582746,0.01836148,0.018143299,0.017928152,0.017715988,0.017506757,0.01730041,0.0170969,0.016896179,0.016698202,0.016502924,0.0163103,0.016120287,0.015932843,0.015747927,0.015565498,0.015385515,0.015207939,0.015032733,0.014859859,0.014689279,0.014520957,0.014354858,0.014190947,0.01402919,0.013869553,0.013712003,0.013556509,0.013403037,0.013251557,0.013102039,0.012954453,0.012808769,0.012664958,0.012522991,0.012382842,0.012244482,0.012107885,0.011973024,0.011839874,0.011708409,0.011578603,0.011450434,0.011323875,0.011198904,0.011075498,0.010953633,0.010833287,0.010714437,0.010597063,0.010481143,0.010366656,0.010253581,0.010141898,0.010031587,0.009922629,0.009815004,0.009708693,0.009603679,0.009499941,0.009397463,0.009296227,0.009196216,0.009097412,0.008999798,0.008903358,0.008808076,0.008713935,0.00862092,0.008529016,0.008438207,0.008348478,0.008259814,0.008172202,0.008085625,0.008000072,0.007915527,0.007831977,0.007749408,0.007667809,0.007587164,0.007507462,0.007428691,0.007350837,0.007273889,0.007197834,0.00712266,0.007048357,0.006974913,0.006902315,0.006830554,0.006759618,0.006689497,0.006620179,0.006551655,0.006483914,0.006416946,0.00635074,0.006285288,0.00622058,0.006156605,0.006093355,0.006030819,0.00596899,0.005907858,0.005847415,0.005787651,0.005728557,0.005670126,0.005612349,0.005555218,0.005498725,0.005442861,0.005387619,0.005332991,0.005278969,0.333115923,0.332866317,0.33212055,0.330887676,0.329182443,0.327024805,0.324439282,0.32145421,0.318100921,0.314412903,0.310424966,0.306172464,0.301690588,0.297013758,0.292175109,0.287206093,0.282136174,0.276992628,0.271800423,0.266582173,0.261358148,0.256146343,0.250962571,0.245820589,0.240732239,0.2357076,0.23075514,0.225914203,0.221239141,0.216722617,0.21235675,0.208134173,0.204047997,0.200091767,0.196259435,0.192545323,0.188944097,0.185450742,0.182060536,0.178769034,0.17557204,0.172465597,0.169440797,0.166462922,0.163527706,0.160636728,0.157791276,0.154992368,0.152240785,0.149537094,0.146881666,0.144274704,0.141716259,0.139206247,0.136744464,0.134330607,0.13196428,0.129645008,0.127372252,0.125145414,0.122963848,0.120826867,0.118733752,0.116683756,0.114676111,0.112710031,0.110784721,0.108899375,0.107053184,0.105245337,0.103475024,0.101741438,0.100043778,0.098381248,0.096753064,0.095158449,0.093596637,0.092066875,0.090568422,0.08910055,0.087662544,0.086253703,0.084873342,0.083520787,0.082195383,0.080896485,0.079623465,0.07837571,0.077152621,0.075953613,0.074778115,0.073625571,0.072495438,0.071387186,0.070300301,0.06923428,0.068188632,0.067162882,0.066156564,0.065169226,0.064200428,0.063249739,0.062316743,0.061401032,0.06050221,0.059619892,0.058753701,0.057903273,0.05706825,0.056248288,0.055443047,0.054652199,0.053875425,0.053112412,0.052362857,0.051626465,0.050902948,0.050192025,0.049493423,0.048806877,0.048132127,0.047468921,0.046817013,0.046176162,0.045546136,0.044926707,0.044317653,0.043718758,0.04312981,0.042550606,0.041980943,0.041420626,0.040869466,0.040327276,0.039793875,0.039269086,0.038752737,0.038244659,0.037744688,0.037252665,0.036768431,0.036291836,0.03582273,0.035360967,0.034906405,0.034458906,0.034018335,0.033584558,0.033157448,0.032736877,0.032322722,0.031914864,0.031513184,0.031117567,0.030727901,0.030344077,0.029965986,0.029593524,0.029226588,0.028865078,0.028508896,0.028157945,0.027812133,0.027471367,0.027135556,0.026804615,0.026478456,0.026156995,0.025840151,0.025527842,0.02521999,0.024916518,0.024617349,0.024322411,0.024031631,0.023744937,0.02346226,0.023183533,0.022908688,0.022637661,0.022370388,0.022106805,0.021846852,0.021590469,0.021337596,0.021088175,0.020842151,0.020599468,0.020360072,0.020123908,0.019890925,0.019661072,0.019434299,0.019210555,0.018989793,0.018771966,0.018557027,0.01834493,0.018135631,0.017929086,0.017725252,0.017524086,0.017325547,0.017129595,0.016936189,0.016745291,0.016556861,0.016370863,0.016187258,0.016006012,0.015827087,0.01565045,0.015476065,0.015303898,0.015133917,0.014966089,0.014800382,0.014636765,0.014475205,0.014315674,0.014158142,0.014002578,0.013848955,0.013697243,0.013547416,0.013399445,0.013253304,0.013108967,0.012966408,0.012825601,0.01268652,0.012549143,0.012413443,0.012279398,0.012146984,0.012016178,0.011886957,0.0117593,0.011633183,0.011508587,0.011385489,0.011263868,0.011143705,0.011024978,0.010907669,0.010791758,0.010677225,0.010564052,0.01045222,0.010341711,0.010232507,0.010124589,0.010017942,0.009912547,0.009808388,0.009705448,0.00960371,0.00950316,0.00940378,0.009305555,0.009208471,0.009112511,0.009017661,0.008923907,0.008831233,0.008739627,0.008649072,0.008559557,0.008471067,0.00838359,0.008297111,0.008211618,0.008127098,0.008043539,0.007960928,0.007879253,0.007798502,0.007718663,0.007639725,0.007561676,0.007484505,0.0074082,0.007332751,0.007258146,0.007184376,0.007111429,0.007039296,0.006967965,0.006897428,0.006827673,0.006758692,0.006690475,0.006623011,0.006556293,0.006490309,0.006425053,0.006360514,0.006296683,0.006233553,0.006171113,0.36949152,0.369213293,0.368382094,0.367008246,0.365108552,0.362705725,0.359827643,0.356506472,0.352777714,0.348679239,0.344250324,0.339530763,0.334560067,0.329376774,0.324017881,0.318518398,0.31291103,0.307225954,0.301490707,0.295730148,0.289966488,0.284219374,0.278506007,0.272841299,0.267238032,0.261707037,0.256262198,0.250980695,0.245879563,0.240949709,0.236182651,0.231570458,0.227105715,0.222781473,0.218591221,0.214528844,0.210588601,0.20676509,0.203053227,0.199448223,0.19594556,0.192540975,0.18923044,0.186009892,0.182849046,0.179730445,0.176655885,0.173626855,0.170644567,0.167709978,0.164823818,0.161986615,0.15919871,0.156460283,0.153771367,0.151131869,0.148541581,0.146000195,0.143507318,0.141062479,0.138665145,0.136314724,0.13401058,0.131752035,0.129538379,0.127368875,0.125242764,0.123159271,0.121117608,0.119116979,0.117156582,0.115235613,0.113353269,0.111508747,0.109701252,0.107929993,0.106194187,0.10449306,0.102825848,0.101191798,0.099590168,0.098020231,0.096481268,0.094972579,0.093493473,0.092043274,0.090621321,0.089226967,0.087859578,0.086518534,0.08520323,0.083913075,0.082647491,0.081405914,0.080187793,0.078992592,0.077819787,0.076668865,0.07553933,0.074430694,0.073342485,0.072274239,0.071225508,0.070195851,0.069184842,0.068192063,0.067217109,0.066259584,0.065319102,0.064395287,0.063487772,0.062596203,0.061720229,0.060859514,0.060013726,0.059182544,0.058365654,0.057562751,0.056773536,0.05599772,0.055235019,0.054485158,0.053747868,0.053022886,0.052309957,0.051608832,0.050919267,0.050241026,0.049573877,0.048917594,0.048271959,0.047636756,0.047011776,0.046396814,0.045791672,0.045196154,0.044610072,0.044033239,0.043465475,0.042906603,0.042356451,0.041814851,0.041281637,0.040756651,0.040239734,0.039730733,0.0392295,0.038735888,0.038249753,0.037770957,0.037299364,0.036834839,0.036377253,0.035926478,0.035482389,0.035044866,0.034613789,0.034189041,0.03377051,0.033358082,0.032951651,0.032551108,0.03215635,0.031767275,0.031383784,0.031005777,0.030633161,0.030265841,0.029903726,0.029546726,0.029194753,0.028847722,0.028505548,0.02816815,0.027835446,0.027507357,0.027183806,0.026864717,0.026550015,0.026239629,0.025933486,0.025631518,0.025333654,0.025039829,0.024749976,0.02446403,0.02418193,0.023903612,0.023629015,0.023358081,0.023090751,0.022826967,0.022566674,0.022309815,0.022056338,0.021806188,0.021559315,0.021315666,0.021075192,0.020837843,0.020603572,0.02037233,0.020144073,0.019918752,0.019696325,0.019476747,0.019259975,0.019045966,0.018834679,0.018626074,0.018420109,0.018216746,0.018015945,0.017817669,0.017621881,0.017428543,0.017237621,0.017049077,0.016862879,0.01667899,0.016497378,0.016318011,0.016140854,0.015965878,0.015793049,0.015622338,0.015453714,0.015287147,0.015122609,0.01496007,0.014799502,0.014640878,0.014484169,0.01432935,0.014176393,0.014025274,0.013875965,0.013728443,0.013582682,0.013438657,0.013296346,0.013155725,0.01301677,0.012879458,0.012743768,0.012609676,0.012477162,0.012346205,0.012216782,0.012088873,0.011962459,0.011837519,0.011714033,0.011591981,0.011471346,0.011352107,0.011234247,0.011117747,0.011002589,0.010888756,0.01077623,0.010664994,0.010555031,0.010446324,0.010338858,0.010232616,0.010127582,0.010023741,0.009921077,0.009819575,0.00971922,0.009619997,0.009521892,0.009424891,0.009328979,0.009234143,0.009140369,0.009047644,0.008955954,0.008865286,0.008775627,0.008686966,0.008599288,0.008512582,0.008426836,0.008342038,0.008258175,0.008175237,0.008093212,0.008012088,0.007931855,0.007852501,0.007774016,0.007696389,0.007619609,0.007543666,0.00746855,0.007394251,0.007320759,0.007248063,0.410277991,0.409966439,0.409035791,0.407497924,0.405372156,0.402684568,0.399467126,0.395756641,0.391593661,0.387021327,0.382084267,0.376827564,0.371295844,0.36553249,0.359579008,0.35347454,0.347255512,0.340955414,0.334604687,0.3282307,0.321857811,0.315507471,0.309198382,0.302946677,0.296766116,0.290668297,0.284701246,0.278937672,0.273369117,0.267985778,0.262778507,0.257738756,0.252858527,0.248130331,0.243547146,0.23910238,0.234789841,0.230603706,0.226538494,0.222589037,0.218750466,0.215018183,0.211387843,0.207855339,0.204416786,0.20106093,0.197750938,0.194484126,0.19126224,0.188086729,0.184958778,0.181879324,0.178849089,0.175868597,0.172938193,0.170058064,0.167228257,0.164448692,0.16171918,0.159039433,0.156409077,0.153827665,0.151294684,0.148809566,0.146371695,0.143980415,0.141635036,0.139334841,0.137079091,0.134867026,0.132697876,0.130570859,0.128485188,0.126440071,0.124434716,0.122468331,0.120540128,0.118649325,0.116795144,0.114976818,0.113193585,0.111444696,0.109729411,0.108047003,0.106396755,0.104777963,0.103189937,0.101631998,0.100103481,0.098603735,0.097132121,0.095688016,0.094270807,0.092879898,0.091514702,0.090174651,0.088859185,0.087567759,0.086299841,0.085054911,0.083832461,0.082631997,0.081453035,0.080295104,0.079157743,0.078040504,0.076942948,0.075864649,0.07480519,0.073764165,0.072741178,0.071735842,0.070747781,0.069776626,0.068822021,0.067883614,0.066961065,0.066054041,0.06516222,0.064285283,0.063422923,0.062574839,0.061740737,0.06092033,0.060113341,0.059319495,0.058538528,0.057770179,0.057014196,0.056270331,0.055538343,0.054817997,0.054109063,0.053411317,0.05272454,0.052048519,0.051383043,0.05072791,0.050082921,0.049447881,0.048822601,0.048206894,0.04760058,0.047003482,0.046415426,0.045836244,0.04526577,0.044703844,0.044150307,0.043605004,0.043067787,0.042538506,0.042017018,0.041503181,0.040996859,0.040497916,0.04000622,0.039521642,0.039044057,0.03857334,0.038109371,0.037652032,0.037201206,0.036756782,0.036318647,0.035886694,0.035460816,0.035040909,0.034626872,0.034218604,0.033816009,0.03341899,0.033027454,0.032641309,0.032260465,0.031884835,0.031514331,0.031148869,0.030788367,0.030432744,0.030081919,0.029735815,0.029394355,0.029057464,0.02872507,0.028397099,0.028073481,0.027754147,0.027439029,0.02712806,0.026821175,0.026518309,0.026219401,0.025924387,0.025633209,0.025345805,0.025062118,0.024782091,0.024505667,0.024232791,0.02396341,0.02369747,0.023434919,0.023175705,0.02291978,0.022667092,0.022417594,0.022171239,0.021927979,0.021687768,0.021450562,0.021216316,0.020984987,0.020756531,0.020530908,0.020308075,0.020087993,0.019870621,0.01965592,0.019443852,0.019234379,0.019027463,0.018823069,0.018621161,0.018421702,0.018224659,0.018029997,0.017837683,0.017647683,0.017459966,0.017274499,0.017091252,0.016910193,0.016731291,0.016554518,0.016379844,0.016207239,0.016036676,0.015868127,0.015701563,0.015536959,0.015374287,0.015213521,0.015054636,0.014897605,0.014742406,0.014589011,0.014437398,0.014287543,0.014139422,0.013993012,0.013848291,0.013705236,0.013563825,0.013424037,0.01328585,0.013149243,0.013014196,0.012880688,0.0127487,0.012618211,0.012489201,0.012361653,0.012235547,0.012110864,0.011987587,0.011865696,0.011745175,0.011626006,0.011508172,0.011391656,0.01127644,0.011162509,0.011049847,0.010938437,0.010828263,0.01071931,0.010611564,0.010505008,0.010399627,0.010295408,0.010192336,0.010090396,0.009989575,0.009889858,0.009791232,0.009693684,0.009597201,0.009501768,0.009407374,0.009314006,0.009221651,0.009130297,0.009039931,0.008950543,0.008862119,0.008774648,0.008688119,0.008602521,0.008517842,0.449106988,0.448761639,0.447730182,0.446026216,0.443671838,0.440696841,0.437137669,0.433036204,0.428438454,0.423393229,0.417950858,0.412162006,0.406076635,0.399743127,0.393207581,0.386513284,0.379700345,0.372805469,0.365861868,0.358899257,0.351943949,0.345018999,0.338144397,0.331337286,0.324612197,0.317991137,0.311574813,0.305377587,0.299388267,0.293596422,0.287992316,0.282566854,0.277311528,0.272218369,0.267279907,0.262489132,0.257839456,0.253324686,0.24893899,0.244676875,0.240533158,0.236502951,0.232581631,0.228764832,0.225048418,0.221428476,0.217901294,0.214446654,0.21103355,0.207663314,0.204337665,0.201058043,0.197825629,0.194641375,0.191506019,0.188420109,0.185384023,0.182397985,0.17946208,0.176576271,0.173740412,0.170954262,0.168217493,0.165529704,0.16289043,0.160299148,0.157755287,0.155258236,0.152807347,0.150401944,0.148041327,0.145724776,0.143451556,0.141220921,0.139032114,0.136884376,0.134776943,0.132709051,0.130679938,0.128688845,0.126735016,0.124817704,0.122936169,0.121089676,0.119277503,0.117498936,0.115753273,0.11403982,0.112357899,0.110706841,0.109085988,0.107494697,0.105932336,0.104398286,0.102891941,0.101412706,0.099959999,0.098533253,0.097131909,0.095755425,0.094403267,0.093074915,0.091769862,0.09048761,0.089227675,0.087989582,0.086772868,0.085577083,0.084401783,0.083246539,0.082110929,0.080994544,0.079896982,0.078817852,0.077756772,0.076713369,0.075687279,0.074678148,0.073685628,0.072709381,0.071749076,0.070804392,0.069875014,0.068960634,0.068060952,0.067175676,0.066304519,0.065447203,0.064603455,0.063773009,0.062955605,0.062150989,0.061358914,0.060579136,0.059811421,0.059055536,0.058311257,0.057578363,0.056856637,0.056145871,0.055445858,0.054756397,0.054077293,0.053408352,0.052749387,0.052100215,0.051460656,0.050830535,0.050209681,0.049597925,0.048995105,0.048401058,0.04781563,0.047238665,0.046670014,0.04610953,0.045557069,0.045012491,0.044475657,0.043946434,0.043424689,0.042910294,0.042403121,0.041903047,0.041409951,0.040923715,0.040444222,0.039971358,0.039505013,0.039045076,0.038591441,0.038144003,0.03770266,0.037267311,0.036837858,0.036414203,0.035996252,0.035583914,0.035177095,0.034775708,0.034379665,0.033988881,0.033603271,0.033222753,0.032847246,0.03247667,0.032110949,0.031750007,0.031393767,0.031042157,0.030695105,0.03035254,0.030014393,0.029680596,0.029351082,0.029025786,0.028704643,0.02838759,0.028074566,0.02776551,0.027460361,0.027159061,0.026861553,0.02656778,0.026277686,0.025991217,0.02570832,0.025428942,0.025153031,0.024880536,0.024611408,0.024345598,0.024083057,0.023823738,0.023567594,0.023314581,0.023064653,0.022817765,0.022573875,0.022332941,0.022094919,0.021859769,0.02162745,0.021397923,0.021171148,0.020947087,0.020725702,0.020506956,0.020290812,0.020077234,0.019866187,0.019657636,0.019451546,0.019247885,0.019046618,0.018847713,0.018651138,0.018456862,0.018264852,0.01807508,0.017887515,0.017702126,0.017518886,0.017337764,0.017158734,0.016981767,0.016806835,0.016633913,0.016462973,0.01629399,0.016126936,0.015961789,0.015798521,0.01563711,0.01547753,0.015319759,0.015163771,0.015009546,0.014857059,0.014706288,0.014557211,0.014409808,0.014264055,0.014119933,0.01397742,0.013836496,0.013697141,0.013559334,0.013423058,0.013288291,0.013155016,0.013023213,0.012892864,0.012763951,0.012636456,0.012510361,0.012385649,0.012262303,0.012140306,0.012019641,0.011900292,0.011782243,0.011665477,0.01154998,0.011435735,0.011322727,0.011210941,0.011100363,0.010990977,0.010882769,0.010775725,0.010669832,0.010565074,0.010461439,0.010358912,0.010257481,0.010157133,0.010057855,0.009959633,0.009862455,0.484722901,0.484343593,0.483210913,0.481340381,0.478757193,0.47549526,0.471595973,0.467106768,0.462079594,0.456569365,0.450632484,0.444325491,0.437703887,0.430821168,0.423728047,0.416471903,0.409096399,0.401641279,0.394142294,0.386631249,0.379136135,0.371681319,0.364287788,0.356973409,0.349753245,0.342713804,0.335917341,0.329351219,0.323003675,0.316863751,0.310921219,0.305166526,0.299590739,0.294185489,0.288942935,0.283855717,0.278916923,0.27412005,0.26945898,0.264927948,0.260521517,0.256234556,0.252062219,0.24799992,0.244043325,0.240188325,0.236431029,0.232767744,0.229194966,0.225690144,0.222224866,0.218800873,0.215419887,0.212083365,0.208792514,0.205548325,0.20235158,0.199202881,0.196102664,0.193051214,0.190048683,0.187095102,0.184190395,0.181334391,0.178526833,0.175767392,0.173055672,0.170391218,0.167773528,0.165202056,0.16267622,0.160195404,0.15775897,0.155366256,0.153016581,0.150709254,0.148443569,0.146218816,0.144034278,0.141889235,0.139782967,0.137714755,0.135683882,0.133689636,0.131731309,0.129808202,0.12791962,0.126064879,0.124243301,0.122454221,0.120696981,0.118970934,0.117275444,0.115609886,0.113973645,0.11236612,0.110786718,0.109234859,0.107709975,0.106211509,0.104738914,0.103291658,0.101869216,0.100471076,0.099096738,0.097745712,0.096417519,0.095111689,0.093827765,0.0925653,0.091323854,0.090103001,0.088902323,0.08772141,0.086559863,0.085417293,0.084293319,0.083187567,0.082099674,0.081029285,0.079976053,0.078939638,0.077919709,0.076915942,0.075928021,0.074955637,0.073998488,0.073056279,0.072128722,0.071215536,0.070316444,0.069431179,0.068559477,0.067701081,0.066855742,0.066023213,0.065203254,0.064395631,0.063600116,0.062816483,0.062044515,0.061283996,0.060534718,0.059796475,0.059069069,0.058352301,0.057645982,0.056949924,0.056263943,0.05558786,0.054921499,0.05426469,0.053617263,0.052979055,0.052349904,0.051729654,0.05111815,0.05051524,0.049920778,0.049334619,0.04875662,0.048186644,0.047624555,0.047070219,0.046523506,0.045984289,0.045452442,0.044927843,0.044410373,0.043899913,0.043396348,0.042899565,0.042409454,0.041925907,0.041448816,0.040978077,0.04051359,0.040055252,0.039602966,0.039156636,0.038716168,0.038281468,0.037852445,0.037429011,0.037011079,0.036598561,0.036191375,0.035789438,0.035392668,0.035000986,0.034614314,0.034232576,0.033855697,0.033483601,0.033116219,0.032753477,0.032395306,0.032041639,0.031692406,0.031347544,0.031006985,0.030670668,0.030338529,0.030010507,0.029686541,0.029366572,0.029050541,0.028738393,0.028430069,0.028125516,0.027824678,0.027527503,0.027233938,0.02694393,0.026657431,0.026374389,0.026094756,0.025818484,0.025545525,0.025275833,0.025009362,0.024746067,0.024485905,0.02422883,0.023974802,0.023723777,0.023475714,0.023230572,0.022988313,0.022748895,0.02251228,0.022278431,0.02204731,0.021818879,0.021593103,0.021369946,0.021149372,0.020931348,0.020715838,0.02050281,0.020292231,0.020084068,0.019878289,0.019674862,0.019473757,0.019274944,0.019078391,0.01888407,0.018691952,0.018502008,0.018314209,0.018128528,0.017944938,0.017763411,0.017583922,0.017406443,0.017230949,0.017057416,0.016885817,0.016716128,0.016548325,0.016382385,0.016218282,0.016055996,0.015895502,0.015736777,0.015579801,0.015424551,0.015271005,0.015119142,0.014968942,0.014820383,0.014673446,0.01452811,0.014384356,0.014242164,0.014101515,0.01396239,0.01382477,0.013688638,0.013553974,0.013420762,0.013288983,0.01315862,0.013029657,0.012902075,0.012775859,0.012650992,0.012527457,0.01240524,0.012284324,0.012164693,0.012046333,0.011929228,0.011813364,0.011698725,0.011585297,0.011473066,0.011362017,0.011252138 -0.10177324,0.101589049,0.101041126,0.100143115,0.098916767,0.097390575,0.095598109,0.093576204,0.091363191,0.088997289,0.086515279,0.083951468,0.081336997,0.078699421,0.076062557,0.07344652,0.070867905,0.068340066,0.06587345,0.063475955,0.061169068,0.058989428,0.056929226,0.054960849,0.053055996,0.05121603,0.049441649,0.047732849,0.046089054,0.044509241,0.042992034,0.041535797,0.040138699,0.038798774,0.037513967,0.036282178,0.035101286,0.033969179,0.032883772,0.031843018,0.030844926,0.029887563,0.028969063,0.028087629,0.027241537,0.026429136,0.025648849,0.024899168,0.024178658,0.023485954,0.022819756,0.022178828,0.021561998,0.020968151,0.020396231,0.019845235,0.019314212,0.018802258,0.018308517,0.017832178,0.01737247,0.016928661,0.01650006,0.016086006,0.015685876,0.015299077,0.014925044,0.014563242,0.014213164,0.013874326,0.013546268,0.013228553,0.012920765,0.012622509,0.012333407,0.012053101,0.011781249,0.011517526,0.011261619,0.011013234,0.010772088,0.01053791,0.010310444,0.010089444,0.009874674,0.009665909,0.009462936,0.009265549,0.009073552,0.008886756,0.008704982,0.008528056,0.008355815,0.0081881,0.008024759,0.007865646,0.007710623,0.007559555,0.007412313,0.007268775,0.007128822,0.00699234,0.006859219,0.006729355,0.006602646,0.006478995,0.006358308,0.006240496,0.006125471,0.00601315,0.005903453,0.005796301,0.005691621,0.005589341,0.00548939,0.005391703,0.005296214,0.005202861,0.005111584,0.005022324,0.004935027,0.004849637,0.004766102,0.004684372,0.004604397,0.004526131,0.004449528,0.004374543,0.004301134,0.00422926,0.00415888,0.004089955,0.004022449,0.003956324,0.003891546,0.00382808,0.003765893,0.003704954,0.00364523,0.003586693,0.003529313,0.003473061,0.00341791,0.003363834,0.003310806,0.003258802,0.003207797,0.003157767,0.003108689,0.003060541,0.003013302,0.00296695,0.002921465,0.002876826,0.002833015,0.002790013,0.002747801,0.002706362,0.002665678,0.002625733,0.002586509,0.002547992,0.002510166,0.002473014,0.002436524,0.002400681,0.00236547,0.002330877,0.002296891,0.002263498,0.002230685,0.00219844,0.002166751,0.002135607,0.002104996,0.002074908,0.002045331,0.002016254,0.001987669,0.001959564,0.001931931,0.001904758,0.001878039,0.001851762,0.001825919,0.001800503,0.001775503,0.001750913,0.001726724,0.001702928,0.001679517,0.001656485,0.001633824,0.001611526,0.001589585,0.001567994,0.001546746,0.001525835,0.001505254,0.001484998,0.00146506,0.001445434,0.001426114,0.001407095,0.001388371,0.001369937,0.001351787,0.001333917,0.001316321,0.001298994,0.001281931,0.001265128,0.001248579,0.001232281,0.001216229,0.001200419,0.001184846,0.001169505,0.001154394,0.001139508,0.001124842,0.001110394,0.001096159,0.001082134,0.001068315,0.001054699,0.001041281,0.001028059,0.00101503,0.00100219,0.000989535,0.000977063,0.000964771,0.000952656,0.000940714,0.000928943,0.00091734,0.000905902,0.000894626,0.00088351,0.000872551,0.000861747,0.000851095,0.000840593,0.000830237,0.000820026,0.000809958,0.00080003,0.000790239,0.000780584,0.000771063,0.000761673,0.000752412,0.000743279,0.00073427,0.000725385,0.000716621,0.000707976,0.000699449,0.000691038,0.00068274,0.000674555,0.00066648,0.000658513,0.000650654,0.0006429,0.000635249,0.000627701,0.000620253,0.000612905,0.000605653,0.000598498,0.000591438,0.00058447,0.000577595,0.00057081,0.000564114,0.000557505,0.000550983,0.000544546,0.000538193,0.000531923,0.000525734,0.000519625,0.000513595,0.000507643,0.000501768,0.000495968,0.000490243,0.000484592,0.000479012,0.000473504,0.000468066,0.000462698,0.000457397,0.000452164,0.000446998,0.000441896,0.000436859,0.000431886,0.110647883,0.110449942,0.109861113,0.108896049,0.107578106,0.105937877,0.104011392,0.101838183,0.099459371,0.096915953,0.094247367,0.091490399,0.088678431,0.085841001,0.083003644,0.080187926,0.077411649,0.074689148,0.072031647,0.069447644,0.066965021,0.064619087,0.062400283,0.060288301,0.058244286,0.056267311,0.054358434,0.052517932,0.050745448,0.049040118,0.04740068,0.045825568,0.044312988,0.042860981,0.041467478,0.040130343,0.038847407,0.037616495,0.03643545,0.035302149,0.034214515,0.03317053,0.032168236,0.031205748,0.030281251,0.029393003,0.028539336,0.027718657,0.026929444,0.026170246,0.025439683,0.024736441,0.024059269,0.023406979,0.022778443,0.022172589,0.021588398,0.021024906,0.020481193,0.019956389,0.019449668,0.018960243,0.01848737,0.01803034,0.017588481,0.017161154,0.016747752,0.016347697,0.015960441,0.015585461,0.015222262,0.014870371,0.014529337,0.014198734,0.013878152,0.013567203,0.013265517,0.01297274,0.012688535,0.012412582,0.012144572,0.011884214,0.011631226,0.011385343,0.011146308,0.010913876,0.010687815,0.010467901,0.010253919,0.010045665,0.009842943,0.009645565,0.009453349,0.009266125,0.009083726,0.008905993,0.008732773,0.008563921,0.008399296,0.008238764,0.008082193,0.00792946,0.007780445,0.007635033,0.007493112,0.007354577,0.007219324,0.007087255,0.006958275,0.006832292,0.006709218,0.006588968,0.006471459,0.006356612,0.006244352,0.006134605,0.006027299,0.005922366,0.00581974,0.005719357,0.005621155,0.005525074,0.005431058,0.005339049,0.005248995,0.005160843,0.005074543,0.004990045,0.004907304,0.004826272,0.004746907,0.004669165,0.004593004,0.004518385,0.004445268,0.004373616,0.004303393,0.004234562,0.00416709,0.004100943,0.004036089,0.003972497,0.003910136,0.003848976,0.003788989,0.003730147,0.003672424,0.003615792,0.003560226,0.003505702,0.003452196,0.003399684,0.003348143,0.003297551,0.003247887,0.00319913,0.00315126,0.003104256,0.0030581,0.003012773,0.002968256,0.002924533,0.002881585,0.002839396,0.002797949,0.00275723,0.002717221,0.002677908,0.002639276,0.002601312,0.002564,0.002527327,0.002491281,0.002455847,0.002421014,0.002386769,0.0023531,0.002319996,0.002287444,0.002255434,0.002223955,0.002192997,0.002162548,0.0021326,0.002103141,0.002074163,0.002045655,0.00201761,0.001990017,0.001962868,0.001936155,0.001909869,0.001884001,0.001858545,0.001833492,0.001808834,0.001784565,0.001760676,0.001737161,0.001714013,0.001691225,0.00166879,0.001646702,0.001624954,0.001603541,0.001582455,0.001561692,0.001541245,0.001521108,0.001501277,0.001481745,0.001462508,0.001443559,0.001424895,0.001406509,0.001388397,0.001370554,0.001352976,0.001335657,0.001318594,0.001301782,0.001285216,0.001268893,0.001252808,0.001236957,0.001221336,0.001205941,0.001190769,0.001175815,0.001161076,0.001146549,0.001132229,0.001118114,0.001104199,0.001090482,0.00107696,0.001063629,0.001050485,0.001037527,0.00102475,0.001012152,0.000999731,0.000987482,0.000975404,0.000963494,0.000951748,0.000940165,0.000928741,0.000917475,0.000906363,0.000895403,0.000884594,0.000873931,0.000863414,0.00085304,0.000842806,0.000832711,0.000822752,0.000812927,0.000803234,0.000793671,0.000784236,0.000774928,0.000765743,0.000756681,0.000747739,0.000738915,0.000730209,0.000721617,0.000713138,0.000704772,0.000696515,0.000688366,0.000680324,0.000672386,0.000664553,0.000656821,0.000649189,0.000641657,0.000634222,0.000626883,0.000619638,0.000612487,0.000605428,0.000598459,0.000591579,0.000584788,0.000578083,0.000571463,0.000564928,0.000558475,0.000552104,0.000545814,0.000539603,0.000533471,0.000527416,0.000521437,0.000515533,0.000509702,0.000503945,0.120250154,0.120037394,0.119404486,0.118367184,0.116950593,0.11518759,0.113116887,0.11078094,0.108223895,0.10548975,0.102620814,0.099656536,0.096632704,0.09358098,0.090528729,0.087499065,0.084511067,0.081580108,0.07871823,0.075934558,0.073263578,0.070738787,0.068349405,0.066081936,0.063892328,0.06177159,0.059721208,0.057741802,0.055833284,0.053994997,0.052225832,0.050524328,0.048888756,0.047317192,0.045807573,0.044357745,0.042965504,0.041628626,0.040344892,0.039112108,0.03792812,0.036790826,0.035698185,0.034648221,0.033639031,0.032668781,0.031735717,0.030838154,0.029974484,0.029143171,0.028342752,0.027571829,0.026829075,0.026113224,0.025423074,0.024757482,0.02411536,0.023495675,0.022897447,0.022319742,0.021761674,0.021222401,0.020701123,0.02019708,0.019709549,0.019237842,0.018781306,0.01833932,0.017911291,0.017496658,0.017094884,0.016705459,0.016327899,0.015961739,0.015606538,0.015261877,0.014927355,0.014602588,0.014287211,0.013980877,0.013683252,0.013394019,0.013112873,0.012839525,0.012573697,0.012315123,0.012063549,0.011818733,0.01158044,0.011348449,0.011122545,0.010902524,0.010688189,0.010479353,0.010275834,0.010077459,0.009884061,0.009695482,0.009511567,0.009332169,0.009157147,0.008986363,0.008819688,0.008656995,0.008498162,0.008343073,0.008191616,0.008043683,0.007899168,0.007757973,0.007619999,0.007485154,0.007353347,0.007224493,0.007098506,0.006975306,0.006854816,0.006736959,0.006621664,0.006508859,0.006398477,0.006290453,0.006184722,0.006081224,0.005979899,0.005880689,0.005783541,0.005688398,0.00559521,0.005503927,0.005414499,0.005326879,0.005241021,0.005156882,0.005074418,0.004993588,0.004914351,0.004836667,0.004760501,0.004685813,0.004612569,0.004540734,0.004470274,0.004401156,0.00433335,0.004266824,0.004201547,0.004137492,0.00407463,0.004012933,0.003952375,0.00389293,0.003834572,0.003777277,0.003721022,0.003665783,0.003611537,0.003558263,0.00350594,0.003454546,0.003404061,0.003354465,0.00330574,0.003257867,0.003210827,0.003164604,0.003119178,0.003074535,0.003030657,0.002987528,0.002945133,0.002903457,0.002862485,0.002822203,0.002782595,0.00274365,0.002705352,0.00266769,0.002630651,0.002594221,0.00255839,0.002523145,0.002488474,0.002454366,0.002420811,0.002387797,0.002355315,0.002323353,0.002291901,0.002260951,0.002230492,0.002200515,0.002171011,0.002141971,0.002113387,0.002085249,0.002057549,0.00203028,0.002003433,0.001977,0.001950975,0.001925348,0.001900114,0.001875265,0.001850794,0.001826694,0.001802959,0.001779582,0.001756556,0.001733876,0.001711535,0.001689527,0.001667847,0.001646488,0.001625445,0.001604713,0.001584285,0.001564158,0.001544325,0.001524782,0.001505523,0.001486544,0.00146784,0.001449406,0.001431238,0.001413331,0.001395681,0.001378284,0.001361134,0.001344229,0.001327564,0.001311135,0.001294939,0.00127897,0.001263227,0.001247704,0.001232398,0.001217307,0.001202426,0.001187751,0.00117328,0.00115901,0.001144936,0.001131057,0.001117368,0.001103867,0.001090551,0.001077417,0.001064462,0.001051683,0.001039078,0.001026643,0.001014376,0.001002275,0.000990337,0.000978558,0.000966938,0.000955473,0.000944162,0.000933001,0.000921988,0.000911121,0.000900399,0.000889818,0.000879376,0.000869072,0.000858904,0.000848869,0.000838965,0.00082919,0.000819543,0.000810022,0.000800624,0.000791348,0.000782192,0.000773155,0.000764234,0.000755427,0.000746734,0.000738153,0.000729681,0.000721318,0.000713061,0.000704909,0.000696861,0.000688915,0.00068107,0.000673324,0.000665676,0.000658125,0.000650668,0.000643305,0.000636034,0.000628855,0.000621765,0.000614763,0.000607849,0.000601021,0.000594278,0.000587618,0.13063272,0.130403968,0.129723496,0.128608263,0.12708529,0.125189951,0.122963883,0.120452725,0.117703916,0.114764702,0.111680495,0.108493617,0.10524244,0.1019609,0.098678314,0.095419441,0.092204716,0.089050602,0.085970001,0.082972714,0.080103299,0.077389522,0.074819719,0.072383268,0.070041805,0.067770609,0.065571673,0.063446032,0.061393934,0.059414985,0.057508277,0.055672499,0.053906025,0.052206996,0.050573381,0.049003034,0.047493734,0.046043222,0.044649232,0.043309508,0.042021829,0.040784017,0.039593948,0.038449562,0.037348869,0.036289949,0.035270955,0.034290116,0.033345737,0.032436194,0.031559939,0.030715492,0.029901443,0.02911645,0.028359232,0.027628573,0.026923313,0.026242351,0.025584638,0.024949177,0.02433502,0.023741266,0.023167057,0.022611576,0.02207405,0.021553738,0.021049939,0.020561985,0.020089238,0.019631093,0.019186972,0.018756326,0.01833863,0.017933385,0.017540115,0.017158365,0.016787701,0.01642771,0.016077997,0.015738184,0.015407911,0.015086834,0.014774623,0.014470963,0.014175553,0.013888105,0.013608342,0.013336001,0.013070828,0.012812581,0.012561028,0.012315945,0.012077119,0.011844344,0.011617425,0.011396171,0.011180402,0.010969944,0.010764628,0.010564294,0.010368788,0.010177959,0.009991666,0.009809771,0.00963214,0.009458647,0.009289168,0.009123585,0.008961783,0.008803653,0.008649089,0.008497989,0.008350253,0.008205787,0.008064498,0.007926299,0.007791103,0.007658828,0.007529394,0.007402723,0.007278742,0.007157377,0.00703856,0.006922222,0.006808299,0.006696728,0.006587447,0.006480397,0.006375521,0.006272764,0.006172071,0.006073391,0.005976673,0.005881869,0.005788932,0.005697814,0.005608472,0.005520862,0.005434943,0.005350674,0.005268015,0.005186929,0.005107377,0.005029325,0.004952736,0.004877576,0.004803814,0.004731416,0.004660351,0.004590589,0.0045221,0.004454857,0.004388829,0.004323992,0.004260317,0.004197781,0.004136356,0.00407602,0.004016748,0.003958518,0.003901307,0.003845093,0.003789855,0.003735571,0.003682223,0.00362979,0.003578254,0.003527594,0.003477794,0.003428836,0.003380701,0.003333374,0.003286837,0.003241076,0.003196073,0.003151815,0.003108285,0.00306547,0.003023355,0.002981926,0.00294117,0.002901074,0.002861625,0.00282281,0.002784617,0.002747034,0.002710049,0.00267365,0.002637828,0.00260257,0.002567866,0.002533705,0.002500078,0.002466975,0.002434385,0.002402299,0.002370708,0.002339603,0.002308974,0.002278813,0.002249113,0.002219863,0.002191056,0.002162685,0.00213474,0.002107216,0.002080103,0.002053396,0.002027086,0.002001167,0.001975631,0.001950473,0.001925685,0.001901261,0.001877195,0.001853481,0.001830112,0.001807083,0.001784387,0.00176202,0.001739975,0.001718247,0.001696831,0.001675722,0.001654913,0.001634401,0.001614181,0.001594246,0.001574594,0.001555219,0.001536116,0.001517281,0.00149871,0.001480398,0.001462341,0.001444536,0.001426977,0.001409661,0.001392584,0.001375743,0.001359133,0.00134275,0.001326592,0.001310654,0.001294934,0.001279427,0.00126413,0.001249041,0.001234155,0.001219469,0.001204982,0.001190688,0.001176586,0.001162672,0.001148944,0.001135399,0.001122033,0.001108845,0.001095831,0.001082989,0.001070316,0.00105781,0.001045467,0.001033287,0.001021265,0.001009401,0.000997691,0.000986133,0.000974725,0.000963465,0.00095235,0.000941378,0.000930548,0.000919857,0.000909304,0.000898885,0.000888599,0.000878445,0.00086842,0.000858523,0.000848751,0.000839102,0.000829576,0.000820171,0.000810883,0.000801713,0.000792657,0.000783716,0.000774886,0.000766166,0.000757556,0.000749052,0.000740654,0.000732361,0.00072417,0.000716081,0.000708092,0.000700201,0.000692407,0.000684709,0.14185068,0.14160464,0.140872758,0.139673318,0.138035447,0.13599726,0.133603596,0.130903578,0.127948226,0.124788326,0.121472648,0.118046615,0.114551379,0.111023312,0.107493816,0.103989397,0.100531921,0.097139,0.093824434,0.09059965,0.087520714,0.084606959,0.081846091,0.079226977,0.076725417,0.074297664,0.071943601,0.069664764,0.067461811,0.06533468,0.063282723,0.061304831,0.059399526,0.057565053,0.055799448,0.054100598,0.052466293,0.05089426,0.049382199,0.047927812,0.046528819,0.045182973,0.04388808,0.042642001,0.041442661,0.040288056,0.039176254,0.038105396,0.037073699,0.036079453,0.035121024,0.034196849,0.033305436,0.032445361,0.031615265,0.030813856,0.030039901,0.029292226,0.028569714,0.027871301,0.027195973,0.026542768,0.025910767,0.025299098,0.024706928,0.024133466,0.023577959,0.023039688,0.022517968,0.02201215,0.02152161,0.021045758,0.020584029,0.020135883,0.019700807,0.019278311,0.018867927,0.018469208,0.018081726,0.017705073,0.01733886,0.016982714,0.016636278,0.01629921,0.015971185,0.01565189,0.015341025,0.015038303,0.01474345,0.014456202,0.014176307,0.013903522,0.013637616,0.013378364,0.013125553,0.012878976,0.012638437,0.012403746,0.01217472,0.011951183,0.011732967,0.011519909,0.011311853,0.01110865,0.010910153,0.010716224,0.010526728,0.010341535,0.010160522,0.009983567,0.009810554,0.009641372,0.009475913,0.009314072,0.009155748,0.009000846,0.008849269,0.008700929,0.008555737,0.008413609,0.008274462,0.008138219,0.008004801,0.007874135,0.007746149,0.007620775,0.007497944,0.007377591,0.007259655,0.007144073,0.007030787,0.006919739,0.006810875,0.006704139,0.00659948,0.006496847,0.006396191,0.006297465,0.006200623,0.006105619,0.006012409,0.005920953,0.005831208,0.005743135,0.005656695,0.00557185,0.005488564,0.005406802,0.005326528,0.00524771,0.005170314,0.005094309,0.005019664,0.004946348,0.004874334,0.004803592,0.004734094,0.004665814,0.004598725,0.004532802,0.00446802,0.004404355,0.004341782,0.00428028,0.004219826,0.004160398,0.004101974,0.004044534,0.003988057,0.003932525,0.003877917,0.003824215,0.003771401,0.003719457,0.003668365,0.003618109,0.003568672,0.003520037,0.003472189,0.003425113,0.003378793,0.003333215,0.003288365,0.003244228,0.00320079,0.003158039,0.003115962,0.003074545,0.003033776,0.002993643,0.002954134,0.002915237,0.002876941,0.002839236,0.002802109,0.00276555,0.00272955,0.002694097,0.002659183,0.002624796,0.002590928,0.002557569,0.00252471,0.002492343,0.002460458,0.002429047,0.002398102,0.002367614,0.002337575,0.002307978,0.002278815,0.002250078,0.00222176,0.002193854,0.002166353,0.002139249,0.002112536,0.002086208,0.002060258,0.002034679,0.002009465,0.00198461,0.001960108,0.001935954,0.00191214,0.001888663,0.001865516,0.001842693,0.00182019,0.001798001,0.001776122,0.001754546,0.001733269,0.001712287,0.001691594,0.001671186,0.001651058,0.001631206,0.001611626,0.001592313,0.001573262,0.00155447,0.001535933,0.001517647,0.001499607,0.00148181,0.001464253,0.00144693,0.00142984,0.001412977,0.001396339,0.001379922,0.001363723,0.001347739,0.001331965,0.0013164,0.001301039,0.00128588,0.00127092,0.001256156,0.001241584,0.001227202,0.001213007,0.001198996,0.001185166,0.001171516,0.001158041,0.00114474,0.00113161,0.001118649,0.001105853,0.001093221,0.00108075,0.001068438,0.001056283,0.001044282,0.001032432,0.001020733,0.001009181,0.000997775,0.000986512,0.000975391,0.000964409,0.000953565,0.000942856,0.000932281,0.000921837,0.000911523,0.000901337,0.000891277,0.000881342,0.000871529,0.000861837,0.000852265,0.00084281,0.000833471,0.000824246,0.000815135,0.000806134,0.000797243,0.123142129,0.123003757,0.122590893,0.121910199,0.120972456,0.119792112,0.118386705,0.116776191,0.114982241,0.113027535,0.110935109,0.108727762,0.106427557,0.104055427,0.101630872,0.099171761,0.096694215,0.094212565,0.091739367,0.089285463,0.086860081,0.08447095,0.082124429,0.079825649,0.077580425,0.075422026,0.073357309,0.071380599,0.069486659,0.067669108,0.065900952,0.064174832,0.062491785,0.060852463,0.059257193,0.057706021,0.056198758,0.054735015,0.053314238,0.051935742,0.050598728,0.049302317,0.048045557,0.046827452,0.045646965,0.044503038,0.043394601,0.042320576,0.041279888,0.040271473,0.039294278,0.038347265,0.037429422,0.036539753,0.035677292,0.034841095,0.034030249,0.033243865,0.032481083,0.031741073,0.031023031,0.030326181,0.029649776,0.028993094,0.02835544,0.027736146,0.027134567,0.026550084,0.025982101,0.025430044,0.024893363,0.024371527,0.023864027,0.023370375,0.022890098,0.022422746,0.021967882,0.02152509,0.021093968,0.02067413,0.020265205,0.019866836,0.01947868,0.019100407,0.018731699,0.018372252,0.018021772,0.017679976,0.017346592,0.017021359,0.016704024,0.016394345,0.016092088,0.015797028,0.015508948,0.015227639,0.014952899,0.014684535,0.014422359,0.01416619,0.013915854,0.013671184,0.013432016,0.013198195,0.01296957,0.012745993,0.012527325,0.01231343,0.012104175,0.011899433,0.011699083,0.011503004,0.011311082,0.011123207,0.010939269,0.010759167,0.010582798,0.010410066,0.010240876,0.010075137,0.00991276,0.009753661,0.009597755,0.009444963,0.009295207,0.00914841,0.0090045,0.008863406,0.008725059,0.008589393,0.008456341,0.008325842,0.008197834,0.008072258,0.007949056,0.007828173,0.007709555,0.007593148,0.007478901,0.007366765,0.007256691,0.007148633,0.007042544,0.00693838,0.006836098,0.006735656,0.006637013,0.006540129,0.006444966,0.006351485,0.006259651,0.006169427,0.006080779,0.005993673,0.005908075,0.005823955,0.005741281,0.005660021,0.005580148,0.00550163,0.005424442,0.005348554,0.00527394,0.005200575,0.005128432,0.005057487,0.004987716,0.004919095,0.0048516,0.00478521,0.004719903,0.004655656,0.00459245,0.004530263,0.004469077,0.004408871,0.004349626,0.004291324,0.004233947,0.004177477,0.004121896,0.004067189,0.004013338,0.003960327,0.003908141,0.003856764,0.00380618,0.003756377,0.003707338,0.003659049,0.003611498,0.003564671,0.003518554,0.003473135,0.0034284,0.003384339,0.003340937,0.003298185,0.00325607,0.003214581,0.003173707,0.003133436,0.00309376,0.003054666,0.003016145,0.002978188,0.002940783,0.002903922,0.002867596,0.002831794,0.002796509,0.002761732,0.002727453,0.002693664,0.002660358,0.002627526,0.002595159,0.002563252,0.002531794,0.00250078,0.002470202,0.002440053,0.002410325,0.002381012,0.002352107,0.002323603,0.002295494,0.002267773,0.002240435,0.002213472,0.00218688,0.002160651,0.002134781,0.002109263,0.002084093,0.002059264,0.00203477,0.002010608,0.001986771,0.001963255,0.001940054,0.001917164,0.00189458,0.001872297,0.00185031,0.001828615,0.001807207,0.001786083,0.001765237,0.001744666,0.001724364,0.001704329,0.001684556,0.001665042,0.001645782,0.001626772,0.001608009,0.001589489,0.001571208,0.001553164,0.001535352,0.001517768,0.001500411,0.001483276,0.00146636,0.001449659,0.001433172,0.001416894,0.001400822,0.001384954,0.001369287,0.001353818,0.001338543,0.00132346,0.001308567,0.001293861,0.001279338,0.001264997,0.001250834,0.001236848,0.001223036,0.001209395,0.001195922,0.001182617,0.001169475,0.001156496,0.001143676,0.001131013,0.001118506,0.001106152,0.001093949,0.001081894,0.001069987,0.001058224,0.001046604,0.001035125,0.001023785,0.001012582,0.001001514,0.00099058,0.135313487,0.135162922,0.134713685,0.133973041,0.132952747,0.131668557,0.130139583,0.128387566,0.126436101,0.124309875,0.122033942,0.119633087,0.117131282,0.114551252,0.111914162,0.109239392,0.106544417,0.103844765,0.101154035,0.098483966,0.095844548,0.093244144,0.090689638,0.088186581,0.085743673,0.083398686,0.081154366,0.079004656,0.076943965,0.074967125,0.073056897,0.071190104,0.06936764,0.067590426,0.065859016,0.06417365,0.062534296,0.060940693,0.059392394,0.057888789,0.056429144,0.055012616,0.053638284,0.052305162,0.051012215,0.049758377,0.048542559,0.047363658,0.046220572,0.045112198,0.044037444,0.042995231,0.041984499,0.041004207,0.040053338,0.039130899,0.038235925,0.037367477,0.036524644,0.035706543,0.03491232,0.03414115,0.033392234,0.032664802,0.031958112,0.031271448,0.030604118,0.029955459,0.029324831,0.028711617,0.028115223,0.027535081,0.026970639,0.026421372,0.025886769,0.025366344,0.024859625,0.024366161,0.023885517,0.023417275,0.022961032,0.022516401,0.02208301,0.021660501,0.021248529,0.020846762,0.020454879,0.020072575,0.019699552,0.019335525,0.01898022,0.018633372,0.018294725,0.017964035,0.017641063,0.017325582,0.017017372,0.01671622,0.016421921,0.016134277,0.015853098,0.0155782,0.015309404,0.01504654,0.014789441,0.014537948,0.014291905,0.014051163,0.013815578,0.01358501,0.013359324,0.01313839,0.01292208,0.012710273,0.012502851,0.012299699,0.012100706,0.011905765,0.011714772,0.011527627,0.011344231,0.011164491,0.010988314,0.010815613,0.010646301,0.010480294,0.010317512,0.010157877,0.010001311,0.009847742,0.009697098,0.009549308,0.009404306,0.009262025,0.009122403,0.008985377,0.008850887,0.008718874,0.008589282,0.008462056,0.008337142,0.008214488,0.008094043,0.007975758,0.007859585,0.007745477,0.007633388,0.007523276,0.007415096,0.007308807,0.007204368,0.007101739,0.007000882,0.006901758,0.006804333,0.006708569,0.006614431,0.006521887,0.006430903,0.006341446,0.006253486,0.006166991,0.006081933,0.00599828,0.005916007,0.005835084,0.005755484,0.005677182,0.005600151,0.005524366,0.005449804,0.005376439,0.005304249,0.00523321,0.005163302,0.005094501,0.005026786,0.004960137,0.004894534,0.004829957,0.004766386,0.004703802,0.004642187,0.004581524,0.004521793,0.004462979,0.004405063,0.004348031,0.004291864,0.004236549,0.004182068,0.004128408,0.004075554,0.00402349,0.003972203,0.003921679,0.003871905,0.003822866,0.003774551,0.003726946,0.00368004,0.003633819,0.003588273,0.003543388,0.003499155,0.003455561,0.003412596,0.003370249,0.00332851,0.003287368,0.003246813,0.003206835,0.003167424,0.003128572,0.003090268,0.003052504,0.00301527,0.002978559,0.00294236,0.002906666,0.002871469,0.002836761,0.002802532,0.002768777,0.002735487,0.002702654,0.002670271,0.002638331,0.002606828,0.002575753,0.0025451,0.002514863,0.002485035,0.002455609,0.002426579,0.002397939,0.002369684,0.002341806,0.0023143,0.00228716,0.002260381,0.002233956,0.002207882,0.002182151,0.00215676,0.002131702,0.002106973,0.002082568,0.002058482,0.00203471,0.002011247,0.001988089,0.00196523,0.001942668,0.001920397,0.001898413,0.001876711,0.001855288,0.001834139,0.001813261,0.001792649,0.001772299,0.001752209,0.001732373,0.001712788,0.001693451,0.001674358,0.001655506,0.00163689,0.001618508,0.001600356,0.001582432,0.001564731,0.00154725,0.001529987,0.001512939,0.001496101,0.001479472,0.001463049,0.001446828,0.001430806,0.001414982,0.001399352,0.001383913,0.001368663,0.001353599,0.001338719,0.00132402,0.0013095,0.001295156,0.001280985,0.001266986,0.001253156,0.001239492,0.001225993,0.001212656,0.001199479,0.00118646,0.001173597,0.001160888,0.148735882,0.148571842,0.14808241,0.147275532,0.146164062,0.14476522,0.143099885,0.141191798,0.13906671,0.136751541,0.134273597,0.131659869,0.12893644,0.126128023,0.12325761,0.120346241,0.117412876,0.114474346,0.111545385,0.108638705,0.105765114,0.102933657,0.100151778,0.097425477,0.094768939,0.092222427,0.089784008,0.08744722,0.085206099,0.083055131,0.080986863,0.078970681,0.076999739,0.075075286,0.073198156,0.071368827,0.069587469,0.06785399,0.066168079,0.06452924,0.062936822,0.061390052,0.059888054,0.058429872,0.057014492,0.055640851,0.054307854,0.053014386,0.05175932,0.050541528,0.049359883,0.048213269,0.047100582,0.04602074,0.044972676,0.043955351,0.042967748,0.042008879,0.041077781,0.040173519,0.039295189,0.038441913,0.037612843,0.036807158,0.036024065,0.035262799,0.034522622,0.033802823,0.033102714,0.032421636,0.031758949,0.031114042,0.030486322,0.029875222,0.029280192,0.028700707,0.028136258,0.027586357,0.027050534,0.026528335,0.026019325,0.025523085,0.025039211,0.024567313,0.024107018,0.023657965,0.023219806,0.022792206,0.022374845,0.02196741,0.021569603,0.021181134,0.020801727,0.020431113,0.020069032,0.019715237,0.019369485,0.019031546,0.018701194,0.018378214,0.018062397,0.017753541,0.017451452,0.017155941,0.016866827,0.016583935,0.016307093,0.01603614,0.015770915,0.015511266,0.015257044,0.015008105,0.014764311,0.014525527,0.014291623,0.014062474,0.013837956,0.013617953,0.013402349,0.013191034,0.012983899,0.012780842,0.012581761,0.012386558,0.012195137,0.012007408,0.011823281,0.011642668,0.011465486,0.011291654,0.011121091,0.010953721,0.010789469,0.010628263,0.010470032,0.010314707,0.010162223,0.010012513,0.009865516,0.00972117,0.009579416,0.009440195,0.009303452,0.009169132,0.009037182,0.008907549,0.008780184,0.008655037,0.008532061,0.008411209,0.008292436,0.008175697,0.00806095,0.007948152,0.007837264,0.007728245,0.007621056,0.007515661,0.007412021,0.007310101,0.007209867,0.007111283,0.007014317,0.006918937,0.00682511,0.006732806,0.006641994,0.006552645,0.006464731,0.006378223,0.006293094,0.006209318,0.006126867,0.006045718,0.005965844,0.005887221,0.005809827,0.005733637,0.005658629,0.00558478,0.00551207,0.005440477,0.00536998,0.005300559,0.005232194,0.005164866,0.005098556,0.005033245,0.004968916,0.004905551,0.004843132,0.004781643,0.004721067,0.004661387,0.004602588,0.004544654,0.004487571,0.004431323,0.004375895,0.004321274,0.004267445,0.004214395,0.004162111,0.004110579,0.004059786,0.00400972,0.003960368,0.003911719,0.00386376,0.003816481,0.003769869,0.003723913,0.003678603,0.003633928,0.003589877,0.003546441,0.003503608,0.00346137,0.003419716,0.003378637,0.003338123,0.003298166,0.003258757,0.003219886,0.003181545,0.003143726,0.00310642,0.00306962,0.003033316,0.002997502,0.00296217,0.002927312,0.00289292,0.002858988,0.002825508,0.002792473,0.002759876,0.002727711,0.002695972,0.00266465,0.002633741,0.002603237,0.002573133,0.002543422,0.002514099,0.002485158,0.002456593,0.002428398,0.002400568,0.002373097,0.00234598,0.002319212,0.002292787,0.002266701,0.002240949,0.002215525,0.002190424,0.002165643,0.002141177,0.00211702,0.002093168,0.002069617,0.002046363,0.002023401,0.002000727,0.001978337,0.001956227,0.001934393,0.001912831,0.001891537,0.001870507,0.001849737,0.001829225,0.001808965,0.001788955,0.001769192,0.001749671,0.00173039,0.001711344,0.001692531,0.001673948,0.001655591,0.001637458,0.001619544,0.001601847,0.001584365,0.001567094,0.001550031,0.001533173,0.001516518,0.001500064,0.001483806,0.001467743,0.001451871,0.001436189,0.001420694,0.001405383,0.001390254,0.001375304,0.001360531,0.163552199,0.163373211,0.162839198,0.161958874,0.160746338,0.159220465,0.157404131,0.155323331,0.153006238,0.150482283,0.147781291,0.144932712,0.141964982,0.138905016,0.135777827,0.132606285,0.129410975,0.126210156,0.123019795,0.119853655,0.116723429,0.113638895,0.110608089,0.107637487,0.104750307,0.101985059,0.099335884,0.096795889,0.09435871,0.09201846,0.089769686,0.087594818,0.085466511,0.083385536,0.081353068,0.079369883,0.077436401,0.075552749,0.073718793,0.071934186,0.070198399,0.068510754,0.06687045,0.065276586,0.063728185,0.062224207,0.06076357,0.059345156,0.057967831,0.056630445,0.055331849,0.054070894,0.052846444,0.051657373,0.050502576,0.049380964,0.048291476,0.047233073,0.046204742,0.045205499,0.044234386,0.043290476,0.042372867,0.041480688,0.040613096,0.039769275,0.038948437,0.038149823,0.037372697,0.036616351,0.035880102,0.035163292,0.034465285,0.03378547,0.033123256,0.032478075,0.031849381,0.031236645,0.03063936,0.030057036,0.029489203,0.028935405,0.028395205,0.027868182,0.02735393,0.026852057,0.026362185,0.025883952,0.025417007,0.024961011,0.02451564,0.024080578,0.023655523,0.023240182,0.022834274,0.022437526,0.022049675,0.021670468,0.02129966,0.020937015,0.020582304,0.020235306,0.019895809,0.019563607,0.0192385,0.018920296,0.018608809,0.018303858,0.018005271,0.017712879,0.017426518,0.017146032,0.016871266,0.016602074,0.016338313,0.016079844,0.015826532,0.015578248,0.015334865,0.015096262,0.01486232,0.014632924,0.014407963,0.014187328,0.013970916,0.013758624,0.013550354,0.013346011,0.0131455,0.012948732,0.012755619,0.012566077,0.012380022,0.012197375,0.012018056,0.011841991,0.011669106,0.011499329,0.01133259,0.011168821,0.011007958,0.010849934,0.010694689,0.010542162,0.010392292,0.010245024,0.010100301,0.009958068,0.009818272,0.009680863,0.009545788,0.009413,0.009282451,0.009154094,0.009027883,0.008903775,0.008781726,0.008661695,0.00854364,0.008427522,0.008313301,0.008200939,0.0080904,0.007981647,0.007874645,0.007769359,0.007665756,0.007563804,0.007463469,0.007364721,0.007267528,0.007171863,0.007077694,0.006984994,0.006893735,0.00680389,0.006715431,0.006628334,0.006542573,0.006458123,0.00637496,0.00629306,0.006212401,0.006132958,0.006054711,0.005977638,0.005901716,0.005826927,0.005753249,0.005680663,0.005609149,0.005538688,0.005469262,0.005400852,0.005333441,0.005267012,0.005201546,0.005137028,0.005073441,0.00501077,0.004948997,0.004888109,0.00482809,0.004768925,0.0047106,0.004653101,0.004596413,0.004540524,0.00448542,0.004431087,0.004377514,0.004324687,0.004272595,0.004221224,0.004170565,0.004120604,0.00407133,0.004022733,0.003974801,0.003927524,0.003880891,0.003834892,0.003789517,0.003744756,0.003700599,0.003657036,0.003614059,0.003571658,0.003529824,0.003488548,0.003447821,0.003407635,0.003367982,0.003328853,0.00329024,0.003252136,0.003214532,0.003177422,0.003140796,0.003104649,0.003068972,0.003033759,0.002999003,0.002964696,0.002930833,0.002897406,0.002864409,0.002831836,0.00279968,0.002767935,0.002736595,0.002705654,0.002675107,0.002644947,0.002615169,0.002585767,0.002556736,0.002528071,0.002499765,0.002471815,0.002444214,0.002416959,0.002390043,0.002363462,0.002337212,0.002311287,0.002285683,0.002260396,0.00223542,0.002210752,0.002186388,0.002162322,0.002138551,0.002115071,0.002091878,0.002068967,0.002046335,0.002023978,0.002001892,0.001980073,0.001958518,0.001937224,0.001916185,0.0018954,0.001874864,0.001854575,0.001834528,0.001814721,0.001795151,0.001775813,0.001756705,0.001737825,0.001719168,0.001700732,0.001682514,0.001664511,0.00164672,0.001629139,0.001611764,0.001594593,0.179925205,0.179729566,0.179145896,0.17818379,0.176858763,0.175191575,0.173207374,0.170934711,0.168404502,0.16564901,0.162700896,0.159592372,0.156354505,0.153016657,0.14960609,0.146147692,0.142663836,0.139174345,0.13569653,0.132245292,0.128833275,0.125471041,0.122167258,0.1189289,0.115793331,0.112790403,0.109912148,0.107151209,0.104500789,0.101954601,0.099506821,0.097151406,0.094857198,0.092610634,0.090413304,0.088266345,0.086170495,0.08412615,0.082133409,0.080192119,0.078301915,0.076462251,0.074672435,0.072931652,0.071238987,0.069593449,0.067993985,0.066439498,0.064928857,0.063460909,0.062034491,0.060648435,0.059301577,0.057992759,0.056720838,0.055484687,0.054283201,0.053115294,0.051979906,0.050876005,0.049802581,0.048758657,0.047743281,0.046755529,0.045794508,0.04485935,0.043949217,0.043063299,0.042200813,0.041361,0.04054313,0.039746497,0.038970421,0.038214244,0.037477333,0.036759076,0.036058884,0.035376189,0.034710442,0.034061116,0.033427701,0.032809706,0.032206657,0.031618099,0.031043591,0.030482709,0.029935043,0.029400199,0.028877796,0.028367467,0.027868858,0.027381625,0.026905441,0.026439985,0.025984951,0.025540042,0.025104971,0.024679461,0.024263246,0.023856067,0.023457673,0.023067825,0.022686288,0.022312838,0.021947256,0.021589332,0.021238862,0.020895648,0.0205595,0.020230233,0.019907668,0.019591632,0.019281957,0.018978482,0.018681048,0.018389503,0.0181037,0.017823496,0.017548752,0.017279333,0.017015108,0.016755953,0.016501743,0.01625236,0.016007688,0.015767615,0.015532032,0.015300834,0.015073918,0.014851184,0.014632536,0.014417879,0.014207122,0.014000176,0.013796956,0.013597376,0.013401356,0.013208816,0.013019679,0.01283387,0.012651316,0.012471946,0.012295691,0.012122483,0.011952257,0.011784949,0.011620498,0.011458842,0.011299922,0.011143682,0.010990066,0.010839018,0.010690486,0.010544418,0.010400764,0.010259475,0.010120502,0.009983798,0.009849319,0.00971702,0.009586857,0.009458788,0.009332772,0.009208768,0.009086737,0.008966641,0.008848442,0.008732103,0.008617589,0.008504865,0.008393897,0.008284652,0.008177096,0.008071199,0.007966928,0.007864255,0.007763148,0.00766358,0.007565521,0.007468945,0.007373823,0.00728013,0.007187839,0.007096926,0.007007365,0.006919133,0.006832205,0.006746558,0.00666217,0.006579018,0.006497081,0.006416337,0.006336766,0.006258347,0.00618106,0.006104886,0.006029805,0.005955799,0.00588285,0.005810938,0.005740048,0.005670161,0.005601261,0.005533331,0.005466354,0.005400316,0.0053352,0.005270991,0.005207674,0.005145235,0.005083658,0.005022931,0.004963039,0.004903968,0.004845705,0.004788238,0.004731553,0.004675638,0.004620481,0.004566069,0.004512391,0.004459435,0.004407189,0.004355643,0.004304785,0.004254605,0.004205093,0.004156237,0.004108027,0.004060455,0.004013509,0.00396718,0.003921459,0.003876336,0.003831802,0.003787849,0.003744467,0.003701648,0.003659384,0.003617665,0.003576485,0.003535834,0.003495705,0.003456091,0.003416983,0.003378374,0.003340257,0.003302624,0.003265468,0.003228783,0.003192561,0.003156796,0.003121482,0.00308661,0.003052176,0.003018173,0.002984594,0.002951435,0.002918687,0.002886346,0.002854407,0.002822862,0.002791707,0.002760936,0.002730544,0.002700525,0.002670875,0.002641587,0.002612657,0.00258408,0.002555851,0.002527965,0.002500417,0.002473204,0.002446319,0.002419759,0.002393519,0.002367595,0.002341982,0.002316676,0.002291674,0.00226697,0.002242561,0.002218443,0.002194612,0.002171064,0.002147795,0.002124802,0.00210208,0.002079627,0.002057438,0.002035511,0.002013841,0.001992425,0.00197126,0.001950343,0.00192967,0.001909238,0.001889044,0.001869085,0.198040746,0.197826469,0.197187228,0.196133629,0.194682814,0.19285771,0.190686064,0.188199348,0.185431607,0.182418322,0.179195365,0.175798065,0.172260443,0.168614609,0.164890321,0.161114707,0.157312116,0.153504082,0.149709381,0.14594415,0.142222055,0.138554493,0.134950799,0.131420201,0.128016059,0.124754413,0.121626742,0.118625187,0.115742484,0.112971913,0.110307244,0.107742698,0.105268047,0.102847384,0.100476068,0.098155677,0.095887338,0.093671786,0.091509414,0.08940032,0.087344354,0.08534115,0.083390167,0.08149071,0.079641966,0.077843018,0.076092873,0.074390474,0.072734717,0.071124463,0.069558553,0.068035811,0.066555058,0.065115116,0.063714812,0.062352989,0.061028502,0.059740227,0.05848706,0.057267922,0.056081758,0.05492754,0.053804267,0.052710965,0.05164669,0.050610524,0.049601577,0.048618989,0.047661925,0.046729579,0.04582117,0.044935945,0.044073175,0.043232155,0.042412208,0.041612675,0.040832924,0.040072344,0.039330344,0.038606356,0.037899829,0.037210234,0.036537059,0.035879811,0.035238013,0.034611206,0.033998947,0.033400807,0.032816374,0.032245248,0.031687045,0.031141393,0.030607933,0.030086318,0.029576214,0.029077298,0.028589257,0.028111789,0.027644602,0.027187415,0.026739954,0.026301957,0.025873168,0.025453341,0.025042238,0.024639627,0.024245286,0.023858997,0.023480553,0.023109751,0.022746393,0.022390292,0.022041261,0.021699124,0.021363707,0.021034844,0.02071237,0.02039613,0.020085971,0.019781744,0.019483306,0.019190518,0.018903245,0.018621355,0.018344721,0.01807322,0.017806731,0.017545137,0.017288326,0.017036188,0.016788615,0.016545505,0.016306754,0.016072267,0.015841947,0.015615701,0.015393439,0.015175074,0.014960519,0.014749693,0.014542513,0.014338902,0.014138783,0.01394208,0.013748722,0.013558638,0.013371759,0.013188017,0.013007348,0.012829687,0.012654973,0.012483145,0.012314144,0.012147913,0.011984395,0.011823537,0.011665283,0.011509584,0.011356387,0.011205643,0.011057305,0.010911324,0.010767655,0.010626254,0.010487075,0.010350077,0.010215217,0.010082455,0.009951751,0.009823066,0.009696362,0.009571601,0.009448748,0.009327767,0.009208623,0.009091283,0.008975712,0.00886188,0.008749754,0.008639302,0.008530496,0.008423305,0.008317701,0.008213654,0.008111137,0.008010124,0.007910587,0.007812501,0.007715839,0.007620578,0.007526693,0.00743416,0.007342956,0.007253057,0.007164442,0.007077088,0.006990975,0.00690608,0.006822384,0.006739866,0.006658506,0.006578286,0.006499185,0.006421186,0.006344271,0.00626842,0.006193618,0.006119846,0.006047088,0.005975328,0.005904548,0.005834734,0.00576587,0.00569794,0.00563093,0.005564824,0.005499609,0.00543527,0.005371794,0.005309166,0.005247374,0.005186405,0.005126245,0.005066881,0.005008303,0.004950497,0.004893451,0.004837154,0.004781595,0.004726761,0.004672642,0.004619228,0.004566507,0.004514468,0.004463103,0.004412399,0.004362349,0.004312941,0.004264166,0.004216015,0.004168478,0.004121547,0.004075212,0.004029465,0.003984297,0.0039397,0.003895665,0.003852183,0.003809248,0.003766851,0.003724985,0.003683641,0.003642812,0.00360249,0.00356267,0.003523342,0.003484501,0.00344614,0.003408251,0.003370828,0.003333864,0.003297354,0.003261289,0.003225665,0.003190476,0.003155714,0.003121374,0.003087451,0.003053939,0.003020831,0.002988122,0.002955807,0.002923881,0.002892338,0.002861172,0.002830379,0.002799954,0.002769892,0.002740187,0.002710835,0.002681831,0.002653171,0.00262485,0.002596863,0.002569205,0.002541874,0.002514863,0.002488169,0.002461788,0.002435715,0.002409947,0.002384479,0.002359308,0.002334429,0.002309839,0.002285534,0.00226151,0.002237764,0.002214292,0.00219109,0.218111864,0.217876614,0.217174851,0.216018355,0.214426156,0.212423686,0.210041694,0.207315021,0.204281301,0.200979703,0.197449758,0.193730337,0.189858801,0.185870345,0.181797526,0.177669965,0.173514192,0.169353624,0.165208635,0.161096699,0.157032582,0.153028565,0.149094685,0.145248054,0.141551774,0.13800863,0.134609514,0.131346021,0.128210384,0.125195411,0.122294438,0.11950128,0.116810187,0.114205245,0.111651531,0.109148578,0.106697988,0.104300919,0.10195813,0.099670044,0.097436786,0.09525823,0.093134036,0.09106368,0.08904649,0.087081664,0.085168302,0.083305418,0.081491963,0.079726837,0.078008903,0.076336999,0.074709948,0.073126563,0.071585659,0.070086053,0.068626576,0.067206068,0.065823391,0.064477426,0.063167074,0.061891264,0.060648946,0.059439101,0.058260732,0.057112873,0.055994586,0.054904957,0.053843104,0.052808168,0.05179932,0.050815757,0.049856702,0.048921401,0.048009129,0.047119182,0.046250882,0.045403572,0.044576617,0.043769406,0.042981348,0.04221187,0.041460422,0.040726469,0.040009499,0.039309014,0.038624534,0.037955595,0.037301751,0.036662568,0.036037629,0.03542653,0.034828882,0.034244308,0.033672442,0.033112935,0.032565445,0.032029643,0.031505212,0.030991843,0.03048924,0.029997115,0.029515188,0.029043192,0.028580864,0.028127953,0.027684214,0.027249411,0.026823314,0.026405702,0.02599636,0.025595079,0.025201657,0.024815899,0.024437615,0.024066621,0.023702738,0.023345795,0.022995622,0.022652058,0.022314944,0.021984127,0.021659458,0.021340792,0.021027989,0.020720914,0.020419433,0.020123418,0.019832744,0.01954729,0.019266938,0.018991572,0.018721082,0.018455359,0.018194298,0.017937795,0.017685751,0.01743807,0.017194656,0.016955417,0.016720264,0.01648911,0.01626187,0.016038462,0.015818804,0.015602818,0.015390429,0.015181561,0.014976142,0.014774101,0.01457537,0.014379881,0.014187569,0.013998369,0.01381222,0.013629061,0.013448832,0.013271476,0.013096936,0.012925157,0.012756085,0.012589669,0.012425856,0.012264597,0.012105842,0.011949545,0.011795658,0.011644137,0.011494936,0.011348012,0.011203324,0.011060828,0.010920486,0.010782256,0.010646101,0.010511983,0.010379864,0.010249709,0.010121481,0.009995147,0.009870673,0.009748025,0.009627171,0.00950808,0.009390719,0.00927506,0.009161072,0.009048726,0.008937993,0.008828847,0.008721259,0.008615202,0.008510651,0.008407581,0.008305965,0.008205779,0.008106999,0.008009603,0.007913565,0.007818865,0.007725479,0.007633385,0.007542564,0.007452993,0.007364653,0.007277522,0.007191582,0.007106813,0.007023196,0.006940713,0.006859345,0.006779075,0.006699885,0.006621758,0.006544678,0.006468626,0.006393588,0.006319547,0.006246489,0.006174396,0.006103255,0.006033051,0.005963769,0.005895396,0.005827916,0.005761316,0.005695584,0.005630705,0.005566667,0.005503457,0.005441062,0.005379471,0.00531867,0.00525865,0.005199396,0.005140899,0.005083147,0.005026129,0.004969835,0.004914252,0.004859372,0.004805183,0.004751676,0.004698841,0.004646668,0.004595147,0.004544269,0.004494025,0.004444405,0.004395401,0.004347004,0.004299204,0.004251995,0.004205366,0.004159311,0.00411382,0.004068886,0.004024502,0.003980659,0.00393735,0.003894567,0.003852303,0.003810551,0.003769303,0.003728554,0.003688295,0.00364852,0.003609223,0.003570397,0.003532036,0.003494132,0.00345668,0.003419675,0.003383109,0.003346976,0.003311272,0.00327599,0.003241124,0.00320667,0.00317262,0.003138971,0.003105717,0.003072851,0.003040371,0.003008269,0.002976542,0.002945184,0.00291419,0.002883556,0.002853276,0.002823347,0.002793764,0.002764522,0.002735617,0.002707044,0.002678799,0.002650878,0.002623277,0.002595991,0.002569017,0.240383984,0.24012499,0.239352464,0.238079559,0.236327517,0.234124694,0.231505345,0.22850822,0.225175114,0.221549451,0.217674967,0.213594579,0.209349451,0.204978268,0.200516732,0.195997246,0.191448763,0.186896773,0.182363392,0.177867541,0.17342516,0.16904947,0.164751234,0.160565305,0.156551722,0.152702733,0.149008597,0.145460323,0.142049598,0.138768729,0.135610582,0.132568534,0.129636429,0.126808538,0.12406416,0.121370457,0.118728582,0.116140208,0.113606557,0.111128459,0.108706394,0.106340546,0.104030843,0.101776993,0.099578516,0.097434778,0.095345014,0.093308349,0.091323824,0.08939041,0.087507023,0.085672538,0.083885802,0.082145641,0.080450871,0.078800304,0.077192754,0.075627044,0.074102007,0.072616492,0.071169367,0.069759519,0.068385859,0.067047323,0.06574287,0.064471486,0.063232184,0.062024002,0.060846008,0.059697295,0.058576984,0.05748422,0.056418179,0.055378058,0.054363082,0.053372502,0.052405589,0.051461643,0.050539982,0.04963995,0.048760912,0.047902252,0.047063377,0.046243713,0.045442705,0.044659816,0.043894529,0.043146341,0.042414769,0.041699344,0.040999614,0.04031514,0.039645501,0.038990286,0.0383491,0.03772156,0.037107297,0.036505952,0.035917178,0.035340641,0.034776017,0.034222991,0.033681259,0.033150527,0.032630511,0.032120934,0.031621529,0.031132037,0.030652208,0.030181799,0.029720573,0.029268303,0.028824767,0.02838975,0.027963045,0.02754445,0.027133768,0.02673081,0.026335391,0.025947332,0.02556646,0.025192605,0.024825604,0.024465298,0.024111532,0.023764157,0.023423025,0.023087996,0.022758932,0.022435699,0.022118166,0.021806207,0.021499698,0.021198521,0.020902558,0.020611696,0.020325824,0.020044836,0.019768626,0.019497094,0.019230139,0.018967665,0.018709579,0.018455788,0.018206204,0.01796074,0.01771931,0.017481833,0.017248228,0.017018416,0.016792321,0.016569868,0.016350985,0.016135601,0.015923646,0.015715053,0.015509756,0.015307691,0.015108795,0.014913006,0.014720265,0.014530514,0.014343695,0.014159753,0.013978633,0.013800283,0.01362465,0.013451684,0.013281334,0.013113554,0.012948294,0.01278551,0.012625156,0.012467187,0.012311561,0.012158235,0.012007168,0.01185832,0.01171165,0.01156712,0.011424693,0.011284331,0.011145998,0.011009659,0.010875279,0.010742823,0.010612259,0.010483555,0.010356677,0.010231596,0.01010828,0.009986699,0.009866825,0.009748628,0.009632081,0.009517155,0.009403824,0.009292061,0.00918184,0.009073137,0.008965925,0.008860181,0.008755881,0.008653001,0.008551518,0.008451409,0.008352653,0.008255228,0.008159113,0.008064286,0.007970728,0.007878417,0.007787335,0.007697462,0.007608779,0.007521268,0.00743491,0.007349688,0.007265583,0.007182579,0.007100659,0.007019805,0.006940002,0.006861234,0.006783485,0.006706739,0.006630982,0.006556198,0.006482373,0.006409492,0.006337541,0.006266507,0.006196376,0.006127134,0.006058768,0.005991266,0.005924615,0.005858801,0.005793814,0.005729641,0.00566627,0.005603689,0.005541888,0.005480854,0.005420577,0.005361046,0.00530225,0.005244179,0.005186822,0.00513017,0.005074212,0.005018939,0.00496434,0.004910407,0.00485713,0.0048045,0.004752508,0.004701144,0.004650401,0.00460027,0.004550742,0.004501808,0.004453462,0.004405694,0.004358497,0.004311862,0.004265783,0.004220252,0.004175261,0.004130803,0.004086871,0.004043457,0.004000555,0.003958158,0.003916259,0.003874852,0.003833929,0.003793485,0.003753513,0.003714007,0.00367496,0.003636368,0.003598222,0.003560519,0.003523251,0.003486414,0.003450002,0.003414008,0.003378428,0.003343257,0.003308489,0.003274118,0.00324014,0.00320655,0.003173343,0.003140513,0.003108056,0.003075967,0.003044242,0.003012875,0.265141217,0.264855161,0.264002002,0.262596525,0.260662583,0.258231991,0.255343126,0.252039332,0.248367269,0.244375308,0.240112062,0.235625109,0.230959963,0.226159282,0.221262323,0.216304609,0.211317785,0.206329625,0.201364152,0.196441843,0.191579892,0.1867925,0.182091608,0.177544195,0.173185097,0.169002999,0.164987473,0.16112889,0.15741835,0.153847611,0.150409031,0.147095514,0.143900464,0.140817739,0.137841615,0.134949897,0.132109213,0.129321009,0.126587077,0.123908752,0.121286968,0.118722307,0.116215045,0.113765194,0.111372539,0.109036672,0.106757019,0.104532871,0.102363404,0.100247699,0.098184763,0.096173543,0.094212938,0.092301816,0.090439016,0.088623366,0.086853685,0.085128789,0.0834475,0.081808649,0.080211079,0.078653648,0.077135233,0.075654733,0.074211068,0.072803182,0.071430042,0.070090644,0.068784006,0.067509176,0.066265224,0.065051249,0.063866376,0.062709756,0.061580563,0.060478,0.059401293,0.05834969,0.057322465,0.056318916,0.05533836,0.05438014,0.053443617,0.052528173,0.051633212,0.050758155,0.049902444,0.049065538,0.048246913,0.047446063,0.046662499,0.045895747,0.045145347,0.044410857,0.043691847,0.042987902,0.042298619,0.041623609,0.040962496,0.040314913,0.039680509,0.03905894,0.038449876,0.037852995,0.037267987,0.03669455,0.036132392,0.03558123,0.03504079,0.034510806,0.03399102,0.033481181,0.032981048,0.032490385,0.032008964,0.031536562,0.031072966,0.030617966,0.030171361,0.029732952,0.02930255,0.028879968,0.028465026,0.02805755,0.02765737,0.027264319,0.026878237,0.026498968,0.02612636,0.025760265,0.02540054,0.025047045,0.024699643,0.024358203,0.024022596,0.023692697,0.023368383,0.023049536,0.02273604,0.022427783,0.022124654,0.021826548,0.02153336,0.021244988,0.020961335,0.020682302,0.020407798,0.020137729,0.019872007,0.019610545,0.019353258,0.019100063,0.018850879,0.018605628,0.018364232,0.018126617,0.01789271,0.017662438,0.017435732,0.017212525,0.016992748,0.016776338,0.016563231,0.016353365,0.01614668,0.015943115,0.015742615,0.01554512,0.015350578,0.015158933,0.014970133,0.014784127,0.014600863,0.014420293,0.014242368,0.014067041,0.013894267,0.013723999,0.013556193,0.013390807,0.013227798,0.013067124,0.012908746,0.012752623,0.012598717,0.01244699,0.012297404,0.012149923,0.012004511,0.011861133,0.011719756,0.011580345,0.011442867,0.011307292,0.011173586,0.011041719,0.010911661,0.010783382,0.010656853,0.010532045,0.010408931,0.010287483,0.010167674,0.010049478,0.009932869,0.009817822,0.009704312,0.009592314,0.009481804,0.00937276,0.009265157,0.009158974,0.009054189,0.008950779,0.008848723,0.008748001,0.008648591,0.008550474,0.00845363,0.008358039,0.008263683,0.008170542,0.008078598,0.007987833,0.00789823,0.00780977,0.007722438,0.007636215,0.007551086,0.007467034,0.007384044,0.007302099,0.007221185,0.007141286,0.007062388,0.006984475,0.006907534,0.00683155,0.00675651,0.0066824,0.006609206,0.006536916,0.006465517,0.006394995,0.006325338,0.006256535,0.006188573,0.006121439,0.006055123,0.005989613,0.005924898,0.005860966,0.005797807,0.00573541,0.005673764,0.005612858,0.005552684,0.00549323,0.005434487,0.005376444,0.005319093,0.005262424,0.005206428,0.005151095,0.005096417,0.005042384,0.004988988,0.004936221,0.004884073,0.004832538,0.004781605,0.004731268,0.004681519,0.004632349,0.004583751,0.004535718,0.004488242,0.004441315,0.004394931,0.004349082,0.004303761,0.004258962,0.004214677,0.004170901,0.004127625,0.004084845,0.004042553,0.004000743,0.00395941,0.003918546,0.003878145,0.003838203,0.003798713,0.003759669,0.003721066,0.003682897,0.003645158,0.003607844,0.003570947,0.003534465,0.292714472,0.292397336,0.2914516,0.289894003,0.287751529,0.285060124,0.281863075,0.278209174,0.27415083,0.269742232,0.265037687,0.260090188,0.254950269,0.249665134,0.244278077,0.238828134,0.233349953,0.227873826,0.222425852,0.217028184,0.211699342,0.206454546,0.201318077,0.196378913,0.191642406,0.187096423,0.18272978,0.178532152,0.17449399,0.170606456,0.16686135,0.163251059,0.159768505,0.156407097,0.15316069,0.150023551,0.146976778,0.143982329,0.141040507,0.138153279,0.135322142,0.132548183,0.129832125,0.127174378,0.124575072,0.122034105,0.119551167,0.117125775,0.114757302,0.112444994,0.110187995,0.107985369,0.105836107,0.103739152,0.101693402,0.099697727,0.097750974,0.095851981,0.093999576,0.092192588,0.090429852,0.088710212,0.087032524,0.085395659,0.083798507,0.082239977,0.080719002,0.079234535,0.077785555,0.076371063,0.074990088,0.073641681,0.072324921,0.071038911,0.069782779,0.068555678,0.067356788,0.06618531,0.065040471,0.06392152,0.062827731,0.061758398,0.060712838,0.05969039,0.058690412,0.057712284,0.056755404,0.05581919,0.054903077,0.054006521,0.053128991,0.052269976,0.051428979,0.050605522,0.049799137,0.049009376,0.048235801,0.04747799,0.046735534,0.046008035,0.04529511,0.044596386,0.043911502,0.043240108,0.042581866,0.041936446,0.041303529,0.040682807,0.040073979,0.039476756,0.038890854,0.038316001,0.03775193,0.037198384,0.036655113,0.036121873,0.035598429,0.035084553,0.03458002,0.034084617,0.033598132,0.033120362,0.032651108,0.032190178,0.031737386,0.031292547,0.030855487,0.030426033,0.030004016,0.029589275,0.029181651,0.02878099,0.028387142,0.027999961,0.027619304,0.027245033,0.026877014,0.026515116,0.026159209,0.025809171,0.025464879,0.025126215,0.024793065,0.024465315,0.024142857,0.023825583,0.02351339,0.023206177,0.022903843,0.022606293,0.022313433,0.02202517,0.021741416,0.021462081,0.021187082,0.020916335,0.020649758,0.020387272,0.020128799,0.019874263,0.019623591,0.019376711,0.019133551,0.018894042,0.018658118,0.018425712,0.018196759,0.017971198,0.017748966,0.017530003,0.01731425,0.01710165,0.016892146,0.016685684,0.016482209,0.016281669,0.016084013,0.015889189,0.015697149,0.015507844,0.015321227,0.015137252,0.014955874,0.014777047,0.014600729,0.014426877,0.014255449,0.014086405,0.013919705,0.013755309,0.01359318,0.013433279,0.013275569,0.013120016,0.012966583,0.012815236,0.01266594,0.012518663,0.012373371,0.012230034,0.012088619,0.011949095,0.011811433,0.011675603,0.011541576,0.011409323,0.011278817,0.01115003,0.011022935,0.010897506,0.010773717,0.010651542,0.010530958,0.010411938,0.01029446,0.010178499,0.010064033,0.009951038,0.009839493,0.009729376,0.009620664,0.009513338,0.009407376,0.009302758,0.009199464,0.009097474,0.008996769,0.00889733,0.008799139,0.008702177,0.008606426,0.008511868,0.008418486,0.008326264,0.008235184,0.00814523,0.008056385,0.007968634,0.007881961,0.007796351,0.007711789,0.007628259,0.007545748,0.00746424,0.007383721,0.007304179,0.007225598,0.007147966,0.00707127,0.006995495,0.006920631,0.006846663,0.00677358,0.00670137,0.00663002,0.006559518,0.006489854,0.006421016,0.006352991,0.006285771,0.006219342,0.006153696,0.006088821,0.006024707,0.005961343,0.005898721,0.005836829,0.005775658,0.005715198,0.005655441,0.005596376,0.005537995,0.005480288,0.005423248,0.005366864,0.005311129,0.005256033,0.005201569,0.005147729,0.005094504,0.005041886,0.004989867,0.004938441,0.004887598,0.004837332,0.004787636,0.004738501,0.004689921,0.004641889,0.004594397,0.00454744,0.004501009,0.004455099,0.004409703,0.004364814,0.004320427,0.004276534,0.004233129,0.004190207,0.004147762,0.26173394,0.26153782,0.26095186,0.259983174,0.258643348,0.256948061,0.254916578,0.252571165,0.249936438,0.24703871,0.243905331,0.240564079,0.237042605,0.233367952,0.229566157,0.22566193,0.221678422,0.217637065,0.213557476,0.209457421,0.20535283,0.201257841,0.197184877,0.193144748,0.189146759,0.185198829,0.18130761,0.177504017,0.173830754,0.170282057,0.166851732,0.163533993,0.160323426,0.15721496,0.154203842,0.151285611,0.148456076,0.145711297,0.143047564,0.140461384,0.13794946,0.135508684,0.133132055,0.130792295,0.128486054,0.126214572,0.12397886,0.121779718,0.11961776,0.117493431,0.115407023,0.113358696,0.111348489,0.109376337,0.107442079,0.105545477,0.10368622,0.101863935,0.100078198,0.098328539,0.096614452,0.094935396,0.093290805,0.091680094,0.090102659,0.088557882,0.087045138,0.085563795,0.084113216,0.082692765,0.081301805,0.079939701,0.078605825,0.077299552,0.076020265,0.074767353,0.073540215,0.072338259,0.071160903,0.070007575,0.068877713,0.067770767,0.066686197,0.065623476,0.064582086,0.063561524,0.062561294,0.061580915,0.060619917,0.059677839,0.058754233,0.057848663,0.056960701,0.056089932,0.055235951,0.054398363,0.053576782,0.052770836,0.051980158,0.051204392,0.050443193,0.049696224,0.048963155,0.048243668,0.047537451,0.046844201,0.046163622,0.045495429,0.04483934,0.044195083,0.043562394,0.042941014,0.042330691,0.041731181,0.041142245,0.040563651,0.039995173,0.039436591,0.03888769,0.038348261,0.0378181,0.037297009,0.036784796,0.03628127,0.03578625,0.035299556,0.034821013,0.034350453,0.033887708,0.033432619,0.032985026,0.032544778,0.032111723,0.031685717,0.031266616,0.030854282,0.030448579,0.030049375,0.029656541,0.029269951,0.028889482,0.028515014,0.02814643,0.027783617,0.027426461,0.027074855,0.026728692,0.026387867,0.02605228,0.025721832,0.025396425,0.025075964,0.024760359,0.024449517,0.024143351,0.023841775,0.023544703,0.023252055,0.022963748,0.022679704,0.022399847,0.0221241,0.02185239,0.021584645,0.021320794,0.021060769,0.020804501,0.020551925,0.020302976,0.02005759,0.019815707,0.019577264,0.019342203,0.019110466,0.018881995,0.018656736,0.018434633,0.018215633,0.017999684,0.017786734,0.017576733,0.017369633,0.017165384,0.01696394,0.016765254,0.016569281,0.016375976,0.016185297,0.015997199,0.015811642,0.015628584,0.015447985,0.015269806,0.015094008,0.014920552,0.014749402,0.014580521,0.014413874,0.014249425,0.014087139,0.013926984,0.013768925,0.01361293,0.013458967,0.013307006,0.013157014,0.013008962,0.012862821,0.01271856,0.012576152,0.012435568,0.012296782,0.012159765,0.012024491,0.011890935,0.01175907,0.011628872,0.011500315,0.011373376,0.01124803,0.011124254,0.011002026,0.010881321,0.010762119,0.010644398,0.010528135,0.010413311,0.010299903,0.010187892,0.010077258,0.00996798,0.009860041,0.00975342,0.009648099,0.009544059,0.009441283,0.009339752,0.00923945,0.009140358,0.009042461,0.008945741,0.008850182,0.008755768,0.008662483,0.008570312,0.008479238,0.008389248,0.008300327,0.008212459,0.00812563,0.008039827,0.007955034,0.00787124,0.00778843,0.00770659,0.007625709,0.007545772,0.007466768,0.007388684,0.007311508,0.007235227,0.00715983,0.007085305,0.007011641,0.006938826,0.006866849,0.0067957,0.006725366,0.006655839,0.006587106,0.006519158,0.006451985,0.006385577,0.006319923,0.006255015,0.006190842,0.006127394,0.006064664,0.006002641,0.005941317,0.005880682,0.005820729,0.005761447,0.005702829,0.005644867,0.005587552,0.005530875,0.00547483,0.005419408,0.005364601,0.005310401,0.005256802,0.005203795,0.005151373,0.005099529,0.005048256,0.004997546,0.004947394,0.004897791,0.004848732,0.290314765,0.290096159,0.289443074,0.288363622,0.286871005,0.28498307,0.28272172,0.280112228,0.27718249,0.273962259,0.270482397,0.266774171,0.262868624,0.258796037,0.254585478,0.250264456,0.245858666,0.241391821,0.236885555,0.232359402,0.227830812,0.223315222,0.218826148,0.214375306,0.209972739,0.205626958,0.20134887,0.197199118,0.193191085,0.189317629,0.185572083,0.181948217,0.178440205,0.175042586,0.171750245,0.168558378,0.165462472,0.162458285,0.159541821,0.156709318,0.153957226,0.151282194,0.14868106,0.146150629,0.143667108,0.141216778,0.138801052,0.136421101,0.134077874,0.131772125,0.129504429,0.127275197,0.125084701,0.122933079,0.12082036,0.118746469,0.116711242,0.114714439,0.11275575,0.110834805,0.108951185,0.107104426,0.105294027,0.103519456,0.101780155,0.100075545,0.098405029,0.096767999,0.095163835,0.093591912,0.0920516,0.090542268,0.089063283,0.087614016,0.086193841,0.084802138,0.08343829,0.08210169,0.080791738,0.079507841,0.078249418,0.077015895,0.075806711,0.074621312,0.073459157,0.072319715,0.071202467,0.070106903,0.069032525,0.067978848,0.066945395,0.065931702,0.064937314,0.063961789,0.063004695,0.062065608,0.061144118,0.060239823,0.059352331,0.05848126,0.057626238,0.056786902,0.055962899,0.055153883,0.054359519,0.053579478,0.052813443,0.052061102,0.051322151,0.050596297,0.04988325,0.049182731,0.048494466,0.04781819,0.047153642,0.04650057,0.045858728,0.045227875,0.044607778,0.043998209,0.043398944,0.042809767,0.042230468,0.041660839,0.041100681,0.040549797,0.040007996,0.039475092,0.038950903,0.038435253,0.037927968,0.03742888,0.036937824,0.03645464,0.035979171,0.035511264,0.035050771,0.034597545,0.034151445,0.033712331,0.033280069,0.032854526,0.032435572,0.032023083,0.031616934,0.031217005,0.030823179,0.03043534,0.030053378,0.029677181,0.029306643,0.028941659,0.028582127,0.028227947,0.02787902,0.027535252,0.027196548,0.026862818,0.026533972,0.026209922,0.025890583,0.025575871,0.025265704,0.024960002,0.024658687,0.024361682,0.024068912,0.023780303,0.023495784,0.023215284,0.022938735,0.022666067,0.022397217,0.022132118,0.021870707,0.021612923,0.021358704,0.021107992,0.020860726,0.020616851,0.020376311,0.02013905,0.019905014,0.019674151,0.019446409,0.019221738,0.019000088,0.018781409,0.018565655,0.018352778,0.018142733,0.017935474,0.017730958,0.017529141,0.01732998,0.017133434,0.016939461,0.016748023,0.016559079,0.016372591,0.016188521,0.016006831,0.015827486,0.015650448,0.015475684,0.015303158,0.015132837,0.014964688,0.014798677,0.014634772,0.014472943,0.014313157,0.014155385,0.013999597,0.013845764,0.013693856,0.013543845,0.013395704,0.013249405,0.013104921,0.012962226,0.012821294,0.0126821,0.012544618,0.012408824,0.012274694,0.012142204,0.01201133,0.01188205,0.011754341,0.01162818,0.011503547,0.011380419,0.011258775,0.011138595,0.011019858,0.010902544,0.010786634,0.010672107,0.010558945,0.010447129,0.010336641,0.010227462,0.010119574,0.01001296,0.009907603,0.009803485,0.009700589,0.0095989,0.009498401,0.009399075,0.009300908,0.009203883,0.009107985,0.0090132,0.008919513,0.008826908,0.008735372,0.008644891,0.008555451,0.008467038,0.008379638,0.008293238,0.008207826,0.008123389,0.008039913,0.007957386,0.007875796,0.007795132,0.00771538,0.00763653,0.007558569,0.007481487,0.007405272,0.007329912,0.007255398,0.007181719,0.007108863,0.007036821,0.006965582,0.006895136,0.006825473,0.006756583,0.006688457,0.006621085,0.006554458,0.006488566,0.006423401,0.006358952,0.006295212,0.006232172,0.006169822,0.006108155,0.006047163,0.005986836,0.005927166,0.005868147,0.005809769,0.005752025,0.005694907,0.322361278,0.322116488,0.321385265,0.32017694,0.318506694,0.316395018,0.313867027,0.310951646,0.307680733,0.304088185,0.300209067,0.296078801,0.291732449,0.287204099,0.282526363,0.277729995,0.272843616,0.26789354,0.262903682,0.25789555,0.25288828,0.247898728,0.242941586,0.238029532,0.233173377,0.228382233,0.223693836,0.219165314,0.21479002,0.210560254,0.206468827,0.202509022,0.198674557,0.194959546,0.191358472,0.187866156,0.184477732,0.181188626,0.177994531,0.174891386,0.171875366,0.168942858,0.166090448,0.163314909,0.160613189,0.157976445,0.155375737,0.152808956,0.150277474,0.14778243,0.145324754,0.142905183,0.140524285,0.138182469,0.135880009,0.13361705,0.13139363,0.129209687,0.12706507,0.124959554,0.122892846,0.120864594,0.118874394,0.116921802,0.115006331,0.113127469,0.111284671,0.109477375,0.107705,0.105966949,0.104262617,0.102591389,0.100952648,0.09934577,0.097770134,0.096225117,0.094710101,0.09322447,0.091767613,0.090338928,0.088937817,0.087563689,0.086215966,0.084894074,0.08359745,0.082325543,0.081077808,0.079853713,0.078652735,0.077474363,0.076318095,0.075183441,0.07406992,0.072977062,0.071904409,0.070851511,0.069817931,0.068803239,0.067807018,0.066828858,0.065868362,0.064925141,0.063998813,0.06308901,0.062195369,0.061317539,0.060455173,0.059607939,0.058775507,0.057957559,0.057153783,0.056363876,0.055587542,0.054824492,0.054074445,0.053337125,0.052612265,0.051899604,0.051198887,0.050509865,0.049832297,0.049165945,0.048510579,0.047865974,0.047231911,0.046608175,0.045994557,0.045390855,0.044796868,0.044212403,0.043637269,0.043071283,0.042514264,0.041966035,0.041426425,0.040895265,0.040372391,0.039857644,0.039350867,0.038851907,0.038360615,0.037876845,0.037400456,0.036931307,0.036469263,0.036014192,0.035565962,0.035124449,0.034689527,0.034261075,0.033838975,0.033423112,0.033013371,0.032609642,0.032211818,0.031819791,0.031433458,0.031052719,0.030677473,0.030307624,0.029943077,0.029583739,0.029229519,0.028880328,0.02853608,0.028196688,0.02786207,0.027532143,0.027206828,0.026886046,0.026569721,0.026257778,0.025950142,0.025646743,0.025347508,0.02505237,0.02476126,0.024474112,0.02419086,0.023911442,0.023635793,0.023363854,0.023095565,0.022830865,0.022569698,0.022312006,0.022057735,0.02180683,0.021559237,0.021314904,0.02107378,0.020835814,0.020600958,0.020369161,0.020140378,0.019914561,0.019691664,0.019471643,0.019254452,0.01904005,0.018828394,0.018619441,0.01841315,0.018209483,0.018008398,0.017809858,0.017613824,0.017420259,0.017229126,0.017040389,0.016854013,0.016669962,0.016488204,0.016308703,0.016131428,0.015956345,0.015783423,0.015612631,0.015443937,0.015277312,0.015112726,0.01495015,0.014789554,0.014630912,0.014474194,0.014319375,0.014166426,0.014015322,0.013866037,0.013718545,0.013572821,0.013428841,0.01328658,0.013146015,0.013007121,0.012869877,0.012734259,0.012600245,0.012467814,0.012336942,0.01220761,0.012079797,0.011953481,0.011828642,0.011705261,0.011583319,0.011462795,0.01134367,0.011225927,0.011109546,0.01099451,0.0108808,0.0107684,0.010657291,0.010547458,0.010438882,0.010331548,0.01022544,0.010120541,0.010016836,0.009914308,0.009812944,0.009712727,0.009613644,0.009515679,0.009418818,0.009323047,0.009228352,0.009134719,0.009042135,0.008950587,0.00886006,0.008770543,0.008682022,0.008594486,0.008507921,0.008422315,0.008337657,0.008253934,0.008171136,0.008089249,0.008008264,0.007928168,0.007848952,0.007770603,0.007693111,0.007616466,0.007540658,0.007465675,0.007391508,0.007318147,0.007245583,0.007173805,0.007102803,0.007032569,0.006963093,0.006894366,0.006826379,0.006759123,0.00669259,0.352869776,0.352598431,0.351788,0.35044917,0.348599301,0.346261804,0.343465312,0.340242732,0.336630214,0.332666109,0.32838996,0.323841576,0.319060213,0.314083886,0.308948814,0.303689009,0.298335985,0.292918583,0.287462896,0.281992273,0.276527388,0.271086356,0.265684883,0.260336439,0.25505244,0.249850179,0.244808782,0.239939533,0.235233639,0.230682903,0.226279677,0.222016814,0.217887629,0.213885861,0.210005641,0.206241461,0.202588144,0.199040825,0.195594921,0.192246116,0.188990339,0.185823747,0.18274271,0.179743796,0.176823757,0.173979516,0.171208159,0.168493799,0.165812075,0.163164033,0.160551023,0.157974177,0.155434423,0.152932509,0.150469015,0.148044371,0.145658876,0.143312703,0.14100592,0.138738498,0.136510324,0.134321206,0.132170887,0.130059053,0.127985338,0.125949331,0.123950583,0.121988614,0.120062915,0.118172956,0.116318186,0.114498038,0.112711937,0.110959295,0.109239518,0.10755201,0.105896169,0.104271397,0.102677094,0.101112664,0.099577513,0.098071054,0.096592704,0.095141888,0.093718038,0.092320593,0.090949,0.089602716,0.088281207,0.086983946,0.085710419,0.084460119,0.08323255,0.082027225,0.080843668,0.079681412,0.078539999,0.077418984,0.076317929,0.075236405,0.074173995,0.073130291,0.072104892,0.071097408,0.070107459,0.069134671,0.068178682,0.067239136,0.066315687,0.065407995,0.06451573,0.06363857,0.0627762,0.061928312,0.061094606,0.06027479,0.059468577,0.058675688,0.05789585,0.057128799,0.056374274,0.055632023,0.054901797,0.054183355,0.053476462,0.052780888,0.052096408,0.051422803,0.050759858,0.050107364,0.049465118,0.04883292,0.048210575,0.047597893,0.046994688,0.046400779,0.045815988,0.045240142,0.044673072,0.044114613,0.043564603,0.043022884,0.042489301,0.041963705,0.041445947,0.040935883,0.040433373,0.039938278,0.039450464,0.038969799,0.038496154,0.038029403,0.037569423,0.037116094,0.036669297,0.036228916,0.03579484,0.035366957,0.034945159,0.034529341,0.034119399,0.033715231,0.033316738,0.032923823,0.03253639,0.032154348,0.031777603,0.031406067,0.031039653,0.030678274,0.030321846,0.029970288,0.029623519,0.029281459,0.028944031,0.028611159,0.02828277,0.027958789,0.027639146,0.027323771,0.027012594,0.026705549,0.02640257,0.026103591,0.02580855,0.025517384,0.025230032,0.024946434,0.024666531,0.024390266,0.024117582,0.023848424,0.023582737,0.023320468,0.023061564,0.022805975,0.022553648,0.022304535,0.022058588,0.021815758,0.021575998,0.021339262,0.021105506,0.020874684,0.020646753,0.020421671,0.020199394,0.019979883,0.019763096,0.019548993,0.019337535,0.019128684,0.018922402,0.018718651,0.018517396,0.018318599,0.018122227,0.017928244,0.017736616,0.01754731,0.017360293,0.017175533,0.016992996,0.016812654,0.016634474,0.016458426,0.01628448,0.016112608,0.015942781,0.01577497,0.015609147,0.015445285,0.015283358,0.015123338,0.0149652,0.014808917,0.014654465,0.01450182,0.014350956,0.014201849,0.014054476,0.013908813,0.013764839,0.013622529,0.013481862,0.013342817,0.013205371,0.013069503,0.012935193,0.01280242,0.012671164,0.012541405,0.012413124,0.012286301,0.012160917,0.012036953,0.011914392,0.011793214,0.011673403,0.01155494,0.011437809,0.011321992,0.011207472,0.011094233,0.010982258,0.010871532,0.010762039,0.010653763,0.010546688,0.0104408,0.010336084,0.010232524,0.010130107,0.010028818,0.009928644,0.009829569,0.009731581,0.009634667,0.009538812,0.009444004,0.00935023,0.009257477,0.009165732,0.009074984,0.00898522,0.008896428,0.008808597,0.008721714,0.008635768,0.008550747,0.008466641,0.008383439,0.00830113,0.008219702,0.008139145,0.00805945,0.007980605,0.0079026,0.007825426,0.007749072,0.380853708,0.38055568,0.379665717,0.378196013,0.376166366,0.373603419,0.370539693,0.36701246,0.363062538,0.358733073,0.354068381,0.349112885,0.343910197,0.338502346,0.33292918,0.327227924,0.321432885,0.315575291,0.309683231,0.303781696,0.297892677,0.292035322,0.286226119,0.280479107,0.274806121,0.269275132,0.263935054,0.258775957,0.253788602,0.248964376,0.244295243,0.239773699,0.235392723,0.231145741,0.227026592,0.223029492,0.219149011,0.215380039,0.21171777,0.208157673,0.204695478,0.201327151,0.198048886,0.19485708,0.191748327,0.188719398,0.185767237,0.182888941,0.180081759,0.17732797,0.174605252,0.171914971,0.169258483,0.166636929,0.164051261,0.161502255,0.158990527,0.156516549,0.154080665,0.151683097,0.149323965,0.147003294,0.144721025,0.142477021,0.140271083,0.138102951,0.135972313,0.133878814,0.131822058,0.129801616,0.12781703,0.125867818,0.123953477,0.122073487,0.120227314,0.118414414,0.116634233,0.114886213,0.11316979,0.111484399,0.109829474,0.10820445,0.106608764,0.105041857,0.103503171,0.101992158,0.100508273,0.099050976,0.097619737,0.096214031,0.094833342,0.093477162,0.092144991,0.090836339,0.089550721,0.088287665,0.087046707,0.085827389,0.084629266,0.0834519,0.082294861,0.081157731,0.080040098,0.07894156,0.077861723,0.076800202,0.075756622,0.074730613,0.073721816,0.072729878,0.071754457,0.070795215,0.069851825,0.068923965,0.068011321,0.067113588,0.066230465,0.06536166,0.064506887,0.063665867,0.062838327,0.062024001,0.061222628,0.060433954,0.059657731,0.058893715,0.058141669,0.057401362,0.056672567,0.055955064,0.055248635,0.054553069,0.05386816,0.053193707,0.052529511,0.051875381,0.051231128,0.050596567,0.049971519,0.049355808,0.048749261,0.048151711,0.047562993,0.046982945,0.046411411,0.045848237,0.045293272,0.044746369,0.044207383,0.043676175,0.043152606,0.042636542,0.042127849,0.0416264,0.041132068,0.040644728,0.04016426,0.039690546,0.039223469,0.038762915,0.038308773,0.037860935,0.037419293,0.036983743,0.036554183,0.036130513,0.035712633,0.035300448,0.034893864,0.034492788,0.03409713,0.033706801,0.033321714,0.032941784,0.032566927,0.032197061,0.031832106,0.031471984,0.031116616,0.030765929,0.030419846,0.030078296,0.029741207,0.029408509,0.029080133,0.028756012,0.02843608,0.028120272,0.027808525,0.027500775,0.027196961,0.026897024,0.026600904,0.026308544,0.026019886,0.025734875,0.025453455,0.025175573,0.024901176,0.024630213,0.024362631,0.024098382,0.023837416,0.023579684,0.023325139,0.023073735,0.022825425,0.022580166,0.022337912,0.02209862,0.021862247,0.021628752,0.021398094,0.021170231,0.020945124,0.020722734,0.020503023,0.020285951,0.020071484,0.019859583,0.019650213,0.019443339,0.019238925,0.019036938,0.018837344,0.01864011,0.018445204,0.018252593,0.018062246,0.017874132,0.01768822,0.017504482,0.017322886,0.017143405,0.01696601,0.016790672,0.016617364,0.016446059,0.01627673,0.016109351,0.015943896,0.015780339,0.015618655,0.01545882,0.015300809,0.015144599,0.014990164,0.014837484,0.014686534,0.014537292,0.014389736,0.014243844,0.014099594,0.013956966,0.013815938,0.013676491,0.013538603,0.013402255,0.013267427,0.013134101,0.013002256,0.012871874,0.012742936,0.012615425,0.012489323,0.012364611,0.012241272,0.01211929,0.011998647,0.011879326,0.011761311,0.011644587,0.011529136,0.011414944,0.011301994,0.011190272,0.011079762,0.010970449,0.01086232,0.010755358,0.010649551,0.010544884,0.010441344,0.010338916,0.010237587,0.010137345,0.010038175,0.009940065,0.009843002,0.009746974,0.009651969,0.009557973,0.009464976,0.009372965,0.009281929,0.009191855,0.009102733,0.009014552,0.008927299,0.008840965 -0.103743846,0.103743846,0.103360641,0.100974072,0.096727568,0.091163237,0.084859872,0.07831303,0.071882734,0.065794674,0.060167634,0.055046321,0.050429339,0.046289502,0.042587182,0.039278447,0.03631968,0.033669985,0.031292252,0.029153472,0.027224635,0.025480429,0.023898862,0.022460858,0.02114988,0.019951584,0.018853511,0.017844821,0.01691606,0.016058967,0.015266304,0.014531711,0.013849588,0.01321499,0.01262354,0.01207135,0.011554964,0.011071297,0.010617591,0.010191374,0.009790426,0.009412749,0.009056539,0.008720167,0.008402155,0.008101163,0.007815973,0.007545474,0.007288654,0.007044586,0.006812423,0.006591387,0.006380765,0.006179898,0.005988182,0.00580506,0.005630015,0.00546257,0.005302284,0.005148747,0.00500158,0.004860429,0.004724965,0.004594883,0.004469896,0.004349738,0.004234159,0.004122929,0.004015827,0.00391265,0.003813206,0.003717315,0.003624808,0.003535527,0.003449322,0.003366052,0.003285584,0.003207793,0.003132561,0.003059777,0.002989334,0.002921133,0.00285508,0.002791085,0.002729063,0.002668934,0.002610622,0.002554054,0.002499161,0.002445879,0.002394144,0.002343899,0.002295085,0.00224765,0.002201543,0.002156715,0.002113118,0.00207071,0.002029447,0.001989289,0.001950198,0.001912136,0.001875067,0.001838959,0.001803778,0.001769494,0.001736077,0.001703498,0.001671729,0.001640746,0.001610522,0.001581033,0.001552257,0.00152417,0.001496752,0.001469982,0.00144384,0.001418307,0.001393365,0.001368996,0.001345183,0.001321909,0.00129916,0.00127692,0.001255174,0.001233908,0.001213108,0.001192762,0.001172857,0.00115338,0.00113432,0.001115665,0.001097405,0.001079528,0.001062025,0.001044885,0.001028099,0.001011657,0.000995551,0.000979772,0.000964311,0.00094916,0.000934312,0.000919758,0.000905492,0.000891506,0.000877793,0.000864347,0.00085116,0.000838227,0.000825541,0.000813097,0.000800889,0.00078891,0.000777156,0.000765622,0.000754301,0.00074319,0.000732283,0.000721576,0.000711064,0.000700742,0.000690607,0.000680654,0.000670878,0.000661277,0.000651846,0.000642582,0.00063348,0.000624537,0.000615751,0.000607116,0.000598631,0.000590291,0.000582095,0.000574038,0.000566118,0.000558331,0.000550676,0.00054315,0.000535749,0.000528471,0.000521314,0.000514276,0.000507352,0.000500543,0.000493844,0.000487255,0.000480772,0.000474394,0.000468118,0.000461943,0.000455866,0.000449886,0.000444001,0.000438209,0.000432507,0.000426896,0.000421372,0.000415933,0.00041058,0.000405309,0.000400119,0.000395009,0.000389977,0.000385022,0.000380142,0.000375336,0.000370603,0.000365941,0.000361349,0.000356826,0.00035237,0.00034798,0.000343656,0.000339395,0.000335197,0.000331061,0.000326985,0.000322969,0.000319011,0.00031511,0.000311266,0.000307477,0.000303743,0.000300063,0.000296435,0.000292858,0.000289333,0.000285857,0.000282431,0.000279053,0.000275722,0.000272438,0.0002692,0.000266007,0.000262858,0.000259753,0.000256691,0.000253671,0.000250693,0.000247756,0.000244858,0.000242001,0.000239182,0.000236401,0.000233658,0.000230952,0.000228283,0.000225649,0.000223051,0.000220488,0.000217958,0.000215463,0.000213,0.00021057,0.000208172,0.000205806,0.000203471,0.000201166,0.000198892,0.000196647,0.000194432,0.000192245,0.000190087,0.000187956,0.000185854,0.000183778,0.000181729,0.000179706,0.000177709,0.000175737,0.000173791,0.000171869,0.000169972,0.000168098,0.000166249,0.000164422,0.000162619,0.000160838,0.00015908,0.000157343,0.000155628,0.000153935,0.000152262,0.000150611,0.000148979,0.000147368,0.000145777,0.000144205,0.000142652,0.000141119,0.000139604,0.000138108,0.000136629,0.000135169,0.000133727,0.000132302,0.000130894,0.000129503,0.118003029,0.118003029,0.117790031,0.115530178,0.111107699,0.105098245,0.098148003,0.090829838,0.083572447,0.076653042,0.07022417,0.064349807,0.059037533,0.054262502,0.049983506,0.04615294,0.042722575,0.039646639,0.036883275,0.034395043,0.032148907,0.030115955,0.028271003,0.026592167,0.025060445,0.02365933,0.022374471,0.021193367,0.020105108,0.01910015,0.018170127,0.017307682,0.016506334,0.015760355,0.015064672,0.01441478,0.013806668,0.013236756,0.012701842,0.012199054,0.011725813,0.011279794,0.0108589,0.010461234,0.010085077,0.009728867,0.009391186,0.009070739,0.008766345,0.008476923,0.008201485,0.007939123,0.007689002,0.007450355,0.007222475,0.007004711,0.006796457,0.006597157,0.006406295,0.006223389,0.006047996,0.005879701,0.005718119,0.005562892,0.005413683,0.005270181,0.005132093,0.004999146,0.004871084,0.004747667,0.004628669,0.00451388,0.004403099,0.004296142,0.00419283,0.004093,0.003996494,0.003903166,0.003812875,0.00372549,0.003640888,0.00355895,0.003479565,0.003402627,0.003328037,0.003255699,0.003185523,0.003117425,0.003051322,0.002987137,0.002924796,0.002864231,0.002805374,0.002748161,0.002692532,0.00263843,0.002585799,0.002534587,0.002484743,0.002436219,0.00238897,0.002342952,0.002298123,0.002254442,0.002211871,0.002170374,0.002129914,0.002090458,0.002051974,0.00201443,0.001977796,0.001942045,0.001907147,0.001873077,0.001839809,0.001807319,0.001775583,0.001744578,0.001714283,0.001684676,0.001655738,0.001627449,0.00159979,0.001572743,0.00154629,0.001520415,0.001495102,0.001470335,0.001446098,0.001422378,0.001399159,0.001376429,0.001354174,0.001332382,0.00131104,0.001290137,0.00126966,0.001249599,0.001229943,0.001210682,0.001191805,0.001173303,0.001155167,0.001137386,0.001119953,0.001102858,0.001086094,0.001069652,0.001053524,0.001037703,0.001022182,0.001006953,0.000992009,0.000977344,0.000962951,0.000948823,0.000934955,0.000921341,0.000907975,0.00089485,0.000881962,0.000869305,0.000856875,0.000844665,0.000832671,0.000820889,0.000809313,0.00079794,0.000786764,0.000775781,0.000764988,0.00075438,0.000743954,0.000733704,0.000723629,0.000713723,0.000703984,0.000694408,0.000684992,0.000675732,0.000666625,0.000657667,0.000648857,0.000640191,0.000631666,0.000623279,0.000615028,0.00060691,0.000598921,0.00059106,0.000583325,0.000575712,0.000568219,0.000560844,0.000553585,0.000546439,0.000539405,0.000532479,0.000525661,0.000518948,0.000512338,0.000505829,0.000499419,0.000493107,0.000486891,0.000480768,0.000474737,0.000468797,0.000462946,0.000457182,0.000451504,0.00044591,0.000440398,0.000434967,0.000429616,0.000424344,0.000419148,0.000414028,0.000408982,0.000404009,0.000399107,0.000394276,0.000389514,0.00038482,0.000380193,0.000375631,0.000371134,0.000366701,0.00036233,0.00035802,0.000353771,0.000349581,0.000345449,0.000341375,0.000337356,0.000333394,0.000329486,0.000325631,0.00032183,0.00031808,0.000314381,0.000310733,0.000307134,0.000303584,0.000300081,0.000296626,0.000293217,0.000289853,0.000286535,0.00028326,0.000280029,0.000276841,0.000273695,0.00027059,0.000267527,0.000264503,0.000261519,0.000258574,0.000255667,0.000252798,0.000249967,0.000247172,0.000244413,0.000241689,0.000239,0.000236346,0.000233726,0.000231139,0.000228586,0.000226064,0.000223575,0.000221117,0.00021869,0.000216293,0.000213927,0.00021159,0.000209283,0.000207004,0.000204754,0.000202532,0.000200337,0.00019817,0.000196029,0.000193915,0.000191826,0.000189764,0.000187726,0.000185714,0.000183726,0.000181762,0.000179822,0.000177906,0.000176013,0.000174143,0.000172295,0.00017047,0.000168666,0.000166884,0.000165124,0.000163384,0.135043305,0.135043305,0.13497386,0.132949517,0.128401655,0.121933812,0.114265804,0.106061765,0.097835144,0.089928865,0.082539837,0.075758292,0.069604853,0.064059019,0.059078676,0.05461242,0.050606836,0.047010504,0.04377596,0.040860485,0.038226211,0.035839884,0.033672462,0.031698658,0.029896473,0.028246776,0.02673291,0.025340352,0.024056416,0.022869998,0.021771352,0.020751909,0.019804109,0.01892127,0.018097473,0.017327453,0.016606526,0.015930506,0.01529565,0.014698596,0.014136326,0.013606119,0.013105516,0.012632295,0.012184441,0.011760123,0.011357676,0.01097558,0.010612449,0.010267014,0.009938112,0.009624678,0.009325729,0.009040364,0.008767751,0.008507121,0.008257764,0.008019024,0.007790292,0.007571002,0.00736063,0.007158687,0.006964719,0.006778302,0.006599042,0.006426568,0.006260535,0.006100621,0.005946523,0.005797956,0.005654655,0.00551637,0.005382864,0.005253918,0.005129322,0.005008881,0.004892409,0.004779731,0.004670682,0.004565107,0.004462857,0.004363794,0.004267784,0.004174704,0.004084432,0.003996858,0.003911874,0.003829379,0.003749274,0.00367147,0.003595878,0.003522415,0.003451001,0.003381562,0.003314024,0.00324832,0.003184383,0.003122151,0.003061564,0.003002565,0.002945099,0.002889113,0.002834558,0.002781386,0.00272955,0.002679007,0.002629714,0.002581632,0.00253472,0.002488942,0.002444262,0.002400646,0.002358061,0.002316475,0.002275857,0.002236178,0.00219741,0.002159526,0.0021225,0.002086306,0.00205092,0.002016319,0.00198248,0.001949382,0.001917004,0.001885325,0.001854327,0.001823989,0.001794295,0.001765226,0.001736766,0.001708897,0.001681606,0.001654875,0.001628691,0.001603039,0.001577905,0.001553275,0.001529138,0.00150548,0.001482289,0.001459554,0.001437262,0.001415404,0.001393968,0.001372944,0.001352322,0.001332092,0.001312244,0.00129277,0.001273661,0.001254908,0.001236502,0.001218436,0.001200702,0.001183291,0.001166197,0.001149412,0.001132929,0.001116741,0.001100842,0.001085226,0.001069885,0.001054814,0.001040007,0.001025458,0.001011161,0.000997112,0.000983304,0.000969733,0.000956393,0.000943279,0.000930388,0.000917713,0.000905251,0.000892997,0.000880946,0.000869096,0.00085744,0.000845977,0.0008347,0.000823608,0.000812696,0.00080196,0.000791397,0.000781003,0.000770776,0.000760712,0.000750807,0.000741059,0.000731464,0.00072202,0.000712724,0.000703572,0.000694562,0.000685692,0.000676959,0.000668359,0.000659892,0.000651553,0.000643341,0.000635254,0.000627289,0.000619443,0.000611715,0.000604103,0.000596604,0.000589217,0.000581938,0.000574768,0.000567702,0.00056074,0.00055388,0.00054712,0.000540458,0.000533893,0.000527422,0.000521045,0.000514759,0.000508562,0.000502455,0.000496434,0.000490498,0.000484646,0.000478877,0.000473189,0.00046758,0.00046205,0.000456597,0.00045122,0.000445917,0.000440688,0.00043553,0.000430444,0.000425427,0.000420479,0.000415598,0.000410784,0.000406034,0.000401349,0.000396728,0.000392168,0.00038767,0.000383231,0.000378852,0.000374532,0.000370268,0.000366062,0.00036191,0.000357814,0.000353771,0.000349782,0.000345844,0.000341958,0.000338123,0.000334337,0.000330601,0.000326912,0.000323272,0.000319678,0.00031613,0.000312628,0.000309171,0.000305757,0.000302388,0.00029906,0.000295775,0.000292532,0.000289329,0.000286167,0.000283044,0.000279961,0.000276916,0.000273909,0.00027094,0.000268007,0.000265111,0.00026225,0.000259425,0.000256635,0.000253879,0.000251156,0.000248467,0.000245811,0.000243188,0.000240596,0.000238035,0.000235506,0.000233007,0.000230539,0.0002281,0.000225691,0.00022331,0.000220958,0.000218634,0.000216338,0.000214069,0.000211827,0.000209612,0.000207423,0.155489854,0.155489854,0.155489766,0.153870836,0.149298062,0.142390108,0.133944073,0.12473122,0.115370356,0.106289404,0.097744656,0.089862838,0.082683831,0.076194762,0.07035394,0.065106301,0.060392712,0.05615521,0.052339702,0.048897134,0.045783793,0.042961146,0.040395441,0.038057218,0.03592081,0.033963855,0.032166863,0.030512824,0.028986865,0.027575956,0.026268657,0.025054898,0.023925794,0.022873488,0.021891012,0.020972171,0.020111446,0.019303907,0.018545141,0.017831186,0.01715848,0.016523811,0.01592428,0.015357262,0.014820374,0.014311456,0.013828537,0.013369822,0.01293367,0.01251858,0.012123177,0.011746197,0.011386478,0.011042952,0.010714632,0.010400609,0.010100038,0.009812143,0.009536199,0.009271537,0.009017532,0.008773606,0.008539218,0.008313864,0.008097075,0.007888412,0.007687464,0.007493847,0.0073072,0.007127185,0.006953486,0.006785804,0.006623859,0.006467387,0.006316141,0.006169885,0.006028399,0.005891474,0.005758914,0.005630531,0.005506151,0.005385606,0.005268737,0.005155396,0.005045441,0.004938735,0.004835152,0.00473457,0.004636872,0.00454195,0.004449697,0.004360015,0.004272809,0.004187987,0.004105463,0.004025156,0.003946985,0.003870877,0.003796758,0.003724561,0.00365422,0.003585672,0.003518856,0.003453715,0.003390194,0.003328239,0.003267801,0.00320883,0.00315128,0.003095105,0.003040264,0.002986714,0.002934415,0.00288333,0.002833422,0.002784655,0.002736995,0.002690411,0.002644869,0.00260034,0.002556794,0.002514204,0.002472542,0.002431782,0.002391898,0.002352867,0.002314664,0.002277268,0.002240655,0.002204806,0.002169698,0.002135314,0.002101632,0.002068636,0.002036307,0.002004627,0.001973581,0.001943151,0.001913322,0.00188408,0.001855408,0.001827294,0.001799722,0.001772681,0.001746156,0.001720135,0.001694607,0.001669558,0.001644979,0.001620856,0.001597181,0.001573942,0.001551129,0.001528732,0.001506742,0.00148515,0.001463945,0.00144312,0.001422666,0.001402574,0.001382837,0.001363446,0.001344394,0.001325674,0.001307278,0.001289199,0.001271431,0.001253966,0.001236799,0.001219922,0.001203331,0.001187018,0.001170977,0.001155204,0.001139693,0.001124438,0.001109434,0.001094676,0.001080158,0.001065877,0.001051827,0.001038003,0.001024402,0.001011018,0.000997847,0.000984886,0.000972129,0.000959574,0.000947216,0.000935051,0.000923076,0.000911286,0.000899679,0.000888251,0.000876999,0.000865919,0.000855008,0.000844262,0.00083368,0.000823257,0.000812991,0.000802879,0.000792918,0.000783105,0.000773438,0.000763914,0.00075453,0.000745285,0.000736174,0.000727197,0.000718351,0.000709633,0.000701041,0.000692573,0.000684226,0.000676,0.00066789,0.000659897,0.000652016,0.000644248,0.000636589,0.000629038,0.000621593,0.000614252,0.000607013,0.000599876,0.000592837,0.000585896,0.00057905,0.000572298,0.00056564,0.000559072,0.000552594,0.000546204,0.0005399,0.000533683,0.000527548,0.000521497,0.000515527,0.000509636,0.000503825,0.000498091,0.000492432,0.000486849,0.00048134,0.000475904,0.000470538,0.000465244,0.000460018,0.000454861,0.000449771,0.000444747,0.000439788,0.000434893,0.000430062,0.000425292,0.000420584,0.000415936,0.000411348,0.000406818,0.000402345,0.00039793,0.00039357,0.000389265,0.000385015,0.000380818,0.000376673,0.000372581,0.000368539,0.000364548,0.000360607,0.000356714,0.00035287,0.000349073,0.000345323,0.00034162,0.000337961,0.000334348,0.000330779,0.000327253,0.00032377,0.000320329,0.000316931,0.000313573,0.000310256,0.000306979,0.000303741,0.000300542,0.000297382,0.000294259,0.000291174,0.000288125,0.000285113,0.000282136,0.000279195,0.000276288,0.000273416,0.000270577,0.000267772,0.000265,0.180127551,0.180127551,0.180127551,0.179054776,0.174619167,0.167333292,0.158069651,0.147722607,0.137041127,0.126563223,0.11662506,0.10740439,0.098969523,0.091320328,0.084417899,0.078204127,0.072613758,0.067581348,0.063044974,0.058947977,0.055239556,0.051874726,0.048813952,0.046022642,0.043470594,0.041131456,0.03898223,0.037002824,0.035175652,0.033485298,0.031918218,0.030462482,0.029107559,0.027844132,0.026663933,0.025559611,0.024524614,0.023553085,0.02263978,0.021779991,0.020969483,0.020204437,0.019481402,0.018797254,0.018149159,0.017534542,0.016951057,0.016396564,0.015869109,0.015366902,0.014888301,0.014431801,0.013996015,0.013579667,0.013181581,0.012800667,0.012435922,0.012086413,0.011751277,0.011429712,0.011120973,0.010824365,0.010539244,0.010265006,0.010001089,0.009746967,0.009502148,0.009266171,0.009038605,0.008819045,0.00860711,0.008402442,0.008204706,0.008013585,0.007828781,0.007650012,0.007477014,0.007309535,0.007147339,0.006990203,0.006837913,0.006690271,0.006547084,0.006408175,0.00627337,0.006142508,0.006015435,0.005892004,0.005772076,0.005655518,0.005542204,0.005432014,0.005324832,0.00522055,0.005119064,0.005020273,0.004924083,0.004830403,0.004739146,0.004650229,0.004563573,0.004479102,0.004396743,0.004316426,0.004238084,0.004161654,0.004087074,0.004014284,0.00394323,0.003873855,0.003806109,0.003739941,0.003675302,0.003612146,0.00355043,0.00349011,0.003431144,0.003373493,0.003317119,0.003261985,0.003208056,0.003155297,0.003103674,0.003053157,0.003003715,0.002955318,0.002907937,0.002861545,0.002816114,0.00277162,0.002728037,0.002685342,0.00264351,0.00260252,0.002562349,0.002522977,0.002484383,0.002446547,0.002409451,0.002373075,0.002337402,0.002302415,0.002268096,0.002234429,0.002201399,0.002168989,0.002137186,0.002105975,0.002075341,0.002045271,0.002015752,0.001986772,0.001958317,0.001930375,0.001902935,0.001875986,0.001849516,0.001823514,0.001797971,0.001772875,0.001748217,0.001723988,0.001700178,0.001676777,0.001653778,0.00163117,0.001608947,0.0015871,0.00156562,0.0015445,0.001523733,0.001503311,0.001483227,0.001463474,0.001444045,0.001424934,0.001406134,0.001387639,0.001369442,0.001351538,0.00133392,0.001316584,0.001299523,0.001282733,0.001266207,0.001249941,0.001233929,0.001218168,0.001202651,0.001187374,0.001172333,0.001157523,0.001142939,0.001128578,0.001114436,0.001100507,0.001086789,0.001073277,0.001059968,0.001046858,0.001033943,0.001021219,0.001008684,0.000996333,0.000984164,0.000972172,0.000960356,0.000948712,0.000937237,0.000925927,0.000914781,0.000903794,0.000892965,0.00088229,0.000871768,0.000861394,0.000851168,0.000841085,0.000831144,0.000821343,0.000811678,0.000802148,0.000792751,0.000783484,0.000774344,0.000765331,0.000756441,0.000747674,0.000739026,0.000730495,0.000722081,0.00071378,0.000705592,0.000697514,0.000689544,0.000681681,0.000673924,0.000666269,0.000658717,0.000651264,0.00064391,0.000636653,0.000629492,0.000622424,0.000615449,0.000608565,0.000601771,0.000595065,0.000588446,0.000581912,0.000575463,0.000569097,0.000562812,0.000556608,0.000550483,0.000544436,0.000538466,0.000532572,0.000526752,0.000521006,0.000515332,0.00050973,0.000504197,0.000498734,0.000493339,0.000488011,0.00048275,0.000477554,0.000472422,0.000467353,0.000462347,0.000457402,0.000452518,0.000447694,0.000442928,0.000438221,0.000433571,0.000428978,0.00042444,0.000419957,0.000415528,0.000411152,0.000406829,0.000402558,0.000398337,0.000394168,0.000390048,0.000385977,0.000381954,0.000377979,0.000374051,0.000370169,0.000366333,0.000362542,0.000358796,0.000355094,0.000351435,0.000347818,0.000344244,0.000340711,0.132336739,0.132336739,0.132336739,0.132186583,0.131007593,0.128728945,0.125491314,0.121477163,0.116886014,0.111912577,0.106731128,0.101486941,0.096293733,0.091235277,0.086369336,0.081732484,0.077344879,0.073214505,0.069340679,0.065716812,0.062332508,0.059175106,0.056230781,0.053485314,0.05092461,0.048535035,0.046303621,0.044218182,0.042267363,0.040440652,0.038728362,0.037121592,0.035612184,0.034192671,0.032856228,0.031596616,0.030408133,0.02928557,0.028224162,0.027219553,0.026267753,0.025365107,0.024508265,0.02369415,0.022919938,0.02218303,0.021481033,0.020811743,0.020173125,0.019563301,0.018980535,0.018423218,0.017889861,0.017379082,0.0168896,0.01642022,0.015969836,0.015537412,0.015121987,0.014722662,0.014338599,0.013969011,0.013613167,0.013270377,0.012939999,0.012621427,0.012314094,0.012017468,0.011731046,0.011454357,0.011186957,0.010928426,0.01067837,0.010436415,0.010202209,0.00997542,0.009755733,0.009542849,0.009336486,0.009136377,0.008942268,0.008753918,0.008571099,0.008393594,0.008221197,0.008053711,0.007890949,0.007732735,0.007578898,0.007429278,0.00728372,0.007142079,0.007004213,0.00686999,0.006739281,0.006611964,0.006487923,0.006367046,0.006249227,0.006134362,0.006022354,0.00591311,0.005806538,0.005702554,0.005601073,0.005502017,0.00540531,0.005310878,0.005218651,0.00512856,0.005040543,0.004954535,0.004870476,0.00478831,0.004707979,0.004629431,0.004552614,0.004477478,0.004403974,0.004332058,0.004261684,0.004192809,0.004125392,0.004059392,0.003994771,0.003931492,0.003869518,0.003808814,0.003749348,0.003691086,0.003633996,0.003578049,0.003523215,0.003469465,0.003416772,0.003365109,0.003314449,0.003264769,0.003216044,0.00316825,0.003121364,0.003075364,0.003030229,0.002985939,0.002942472,0.00289981,0.002857932,0.002816822,0.002776461,0.002736832,0.002697917,0.002659701,0.002622167,0.002585301,0.002549086,0.002513509,0.002478555,0.00244421,0.002410462,0.002377296,0.002344701,0.002312663,0.002281172,0.002250214,0.00221978,0.002189857,0.002160435,0.002131503,0.002103051,0.002075069,0.002047548,0.002020478,0.001993849,0.001967653,0.001941882,0.001916525,0.001891575,0.001867024,0.001842865,0.001819088,0.001795687,0.001772654,0.001749983,0.001727665,0.001705695,0.001684065,0.00166277,0.001641801,0.001621155,0.001600823,0.001580801,0.001561083,0.001541662,0.001522534,0.001503693,0.001485134,0.001466851,0.001448839,0.001431094,0.001413611,0.001396384,0.00137941,0.001362684,0.001346201,0.001329957,0.001313948,0.001298169,0.001282618,0.001267289,0.001252178,0.001237283,0.001222599,0.001208123,0.00119385,0.001179779,0.001165904,0.001152223,0.001138733,0.00112543,0.001112311,0.001099374,0.001086614,0.00107403,0.001061618,0.001049375,0.001037299,0.001025386,0.001013635,0.001002042,0.000990606,0.000979323,0.000968191,0.000957207,0.00094637,0.000935677,0.000925125,0.000914713,0.000904437,0.000894297,0.00088429,0.000874413,0.000864665,0.000855044,0.000845548,0.000836175,0.000826922,0.000817789,0.000808773,0.000799872,0.000791086,0.000782411,0.000773847,0.000765391,0.000757043,0.000748799,0.00074066,0.000732623,0.000724687,0.00071685,0.000709111,0.000701468,0.000693921,0.000686467,0.000679105,0.000671834,0.000664653,0.000657559,0.000650553,0.000643633,0.000636797,0.000630045,0.000623374,0.000616785,0.000610275,0.000603844,0.00059749,0.000591213,0.000585012,0.000578884,0.00057283,0.000566848,0.000560938,0.000555098,0.000549327,0.000543624,0.000537989,0.00053242,0.000526917,0.000521478,0.000516103,0.000510791,0.000505542,0.000500353,0.000495225,0.000490156,0.000485146,0.000480194,0.0004753,0.000470461,0.000465679,0.156791401,0.156791401,0.156791401,0.156762345,0.155795417,0.153518249,0.150073034,0.145658289,0.140500748,0.134828771,0.128852033,0.122749254,0.116663306,0.110701774,0.104940791,0.099430344,0.094199822,0.089263089,0.08462277,0.08027369,0.07620551,0.072404694,0.068855937,0.065543163,0.062450217,0.05956132,0.056861354,0.054336037,0.051972004,0.049756837,0.047679061,0.045728107,0.043894269,0.042168652,0.040543108,0.039010181,0.037563053,0.036195484,0.034901765,0.033676669,0.032515408,0.031413594,0.030367198,0.029372522,0.028426166,0.027525003,0.026666152,0.025846956,0.025064963,0.024317909,0.023603699,0.022920391,0.022266189,0.021639423,0.021038545,0.020462114,0.019908788,0.01937732,0.018866544,0.018375373,0.017902792,0.017447851,0.017009661,0.01658739,0.016180257,0.01578753,0.01540852,0.015042582,0.014689106,0.014347521,0.014017286,0.013697895,0.013388866,0.013089747,0.012800109,0.012519549,0.012247684,0.01198415,0.011728605,0.011480724,0.011240197,0.011006731,0.010780049,0.010559887,0.010345992,0.010138127,0.009936062,0.009739583,0.009548482,0.009362563,0.009181638,0.009005528,0.008834062,0.008667078,0.008504418,0.008345934,0.008191484,0.008040931,0.007894144,0.007750999,0.007611375,0.007475157,0.007342237,0.007212508,0.007085868,0.006962221,0.006841474,0.006723536,0.006608321,0.006495747,0.006385734,0.006278205,0.006173087,0.006070308,0.005969801,0.005871499,0.00577534,0.005681261,0.005589205,0.005499113,0.005410933,0.00532461,0.005240094,0.005157335,0.005076286,0.004996901,0.004919136,0.004842947,0.004768293,0.004695135,0.004623432,0.004553149,0.004484248,0.004416694,0.004350454,0.004285494,0.004221783,0.004159289,0.004097983,0.004037836,0.003978819,0.003920905,0.003864068,0.003808282,0.003753523,0.003699765,0.003646987,0.003595164,0.003544275,0.003494298,0.003445213,0.003396999,0.003349637,0.003303107,0.003257391,0.00321247,0.003168328,0.003124948,0.003082311,0.003040403,0.002999208,0.00295871,0.002918895,0.002879747,0.002841254,0.0028034,0.002766173,0.00272956,0.002693548,0.002658124,0.002623277,0.002588994,0.002555265,0.002522078,0.002489422,0.002457287,0.002425662,0.002394537,0.002363902,0.002333748,0.002304065,0.002274845,0.002246077,0.002217754,0.002189867,0.002162408,0.002135368,0.002108739,0.002082515,0.002056686,0.002031247,0.002006189,0.001981505,0.001957189,0.001933234,0.001909634,0.001886381,0.00186347,0.001840894,0.001818648,0.001796725,0.00177512,0.001753827,0.00173284,0.001712155,0.001691766,0.001671667,0.001651854,0.001632322,0.001613065,0.00159408,0.001575361,0.001556904,0.001538704,0.001520758,0.00150306,0.001485608,0.001468395,0.001451419,0.001434676,0.001418162,0.001401872,0.001385804,0.001369954,0.001354317,0.001338891,0.001323673,0.001308658,0.001293844,0.001279227,0.001264804,0.001250572,0.001236528,0.00122267,0.001208993,0.001195496,0.001182175,0.001169028,0.001156052,0.001143244,0.001130602,0.001118123,0.001105805,0.001093645,0.001081641,0.00106979,0.00105809,0.001046539,0.001035134,0.001023874,0.001012756,0.001001778,0.000990938,0.000980234,0.000969663,0.000959225,0.000948916,0.000938736,0.000928681,0.000918751,0.000908943,0.000899256,0.000889688,0.000880238,0.000870902,0.000861681,0.000852572,0.000843573,0.000834684,0.000825902,0.000817226,0.000808655,0.000800186,0.000791819,0.000783553,0.000775385,0.000767314,0.000759339,0.000751459,0.000743673,0.000735978,0.000728374,0.00072086,0.000713434,0.000706095,0.000698842,0.000691674,0.000684589,0.000677587,0.000670666,0.000663826,0.000657064,0.000650381,0.000643775,0.000637244,0.000630789,0.000624408,0.0006181,0.000611864,0.000605699,0.186901654,0.186901654,0.186901654,0.186901654,0.186293764,0.184136089,0.180551145,0.17575011,0.169988063,0.163532003,0.156634576,0.149516699,0.142359149,0.135301261,0.12844424,0.121856836,0.115581712,0.109641531,0.104044222,0.098787288,0.093861164,0.08925176,0.084942314,0.080914725,0.07715048,0.073631276,0.070339422,0.067258096,0.064371471,0.061664789,0.059124362,0.056737552,0.054492728,0.052379206,0.050387189,0.048507698,0.046732511,0.045054096,0.043465558,0.041960576,0.040533356,0.039178585,0.037891383,0.036667267,0.035502113,0.034392127,0.033333811,0.032323939,0.031359532,0.030437838,0.029556309,0.028712585,0.02790448,0.027129962,0.026387145,0.025674275,0.024989718,0.024331953,0.023699561,0.023091215,0.022505677,0.02194179,0.021398468,0.020874695,0.020369518,0.019882044,0.019411431,0.018956889,0.018517677,0.018093092,0.017682477,0.01728521,0.016900703,0.016528402,0.016167784,0.015818352,0.01547964,0.015151202,0.014832618,0.014523489,0.014223438,0.013932104,0.013649148,0.013374244,0.013107085,0.012847377,0.012594841,0.012349211,0.012110235,0.011877669,0.011651284,0.01143086,0.011216186,0.011007063,0.010803298,0.010604708,0.010411118,0.01022236,0.010038272,0.009858702,0.009683502,0.00951253,0.009345651,0.009182735,0.009023656,0.008868296,0.008716539,0.008568274,0.008423395,0.008281801,0.008143392,0.008008074,0.007875756,0.007746351,0.007619775,0.007495945,0.007374784,0.007256215,0.007140168,0.00702657,0.006915355,0.006806456,0.006699812,0.006595361,0.006493043,0.006392803,0.006294586,0.006198337,0.006104006,0.006011544,0.005920902,0.005832033,0.005744893,0.005659438,0.005575625,0.005493415,0.005412768,0.005333644,0.005256008,0.005179823,0.005105053,0.005031666,0.004959628,0.004888908,0.004819474,0.004751297,0.004684347,0.004618597,0.004554017,0.004490583,0.004428268,0.004367047,0.004306895,0.004247789,0.004189705,0.004132621,0.004076515,0.004021366,0.003967153,0.003913856,0.003861455,0.003809931,0.003759267,0.003709443,0.003660441,0.003612246,0.00356484,0.003518206,0.00347233,0.003427195,0.003382787,0.003339091,0.003296092,0.003253777,0.003212131,0.003171142,0.003130797,0.003091083,0.003051988,0.0030135,0.002975606,0.002938296,0.002901559,0.002865383,0.002829757,0.002794672,0.002760117,0.002726083,0.002692559,0.002659536,0.002627005,0.002594956,0.002563382,0.002532273,0.00250162,0.002471416,0.002441653,0.002412322,0.002383416,0.002354927,0.002326848,0.002299171,0.00227189,0.002244998,0.002218488,0.002192353,0.002166586,0.002141182,0.002116134,0.002091436,0.002067082,0.002043066,0.002019383,0.001996027,0.001972992,0.001950273,0.001927865,0.001905763,0.001883961,0.001862455,0.001841239,0.00182031,0.001799662,0.001779291,0.001759192,0.001739361,0.001719793,0.001700485,0.001681432,0.001662631,0.001644076,0.001625765,0.001607693,0.001589857,0.001572254,0.001554878,0.001537727,0.001520798,0.001504086,0.001487589,0.001471304,0.001455226,0.001439354,0.001423683,0.001408211,0.001392934,0.001377851,0.001362957,0.00134825,0.001333728,0.001319386,0.001305224,0.001291238,0.001277426,0.001263784,0.001250311,0.001237004,0.001223861,0.001210879,0.001198056,0.001185389,0.001172877,0.001160517,0.001148307,0.001136244,0.001124328,0.001112555,0.001100923,0.001089432,0.001078077,0.001066859,0.001055774,0.001044821,0.001033999,0.001023304,0.001012736,0.001002293,0.000991973,0.000981774,0.000971695,0.000961734,0.000951889,0.000942159,0.000932542,0.000923037,0.000913643,0.000904356,0.000895178,0.000886105,0.000877136,0.000868271,0.000859507,0.000850843,0.000842278,0.000833811,0.000825441,0.000817165,0.000808983,0.000800894,0.000792896,0.190033992,0.190033992,0.190033992,0.190033992,0.189837474,0.18826431,0.185211088,0.18086143,0.175454431,0.169252682,0.162513775,0.155469732,0.148315456,0.141204985,0.134253221,0.127540772,0.121120052,0.115021424,0.109258707,0.10383378,0.098740247,0.093966239,0.089496502,0.085313911,0.08140053,0.077738353,0.074309786,0.071097958,0.068086906,0.065261666,0.06260831,0.060113936,0.057766643,0.055555472,0.053470357,0.051502061,0.049642112,0.047882743,0.046216832,0.04463785,0.043139806,0.041717199,0.040364977,0.039078497,0.037853484,0.036686002,0.035572423,0.034509399,0.033493837,0.032522878,0.031593875,0.030704376,0.029852106,0.029034954,0.028250957,0.027498291,0.026775256,0.026080266,0.025411844,0.02476861,0.024149272,0.023552625,0.022977537,0.022422949,0.021887867,0.021371358,0.020872547,0.020390607,0.019924764,0.019474287,0.019038488,0.018616716,0.018208359,0.017812838,0.017429605,0.017058142,0.01669796,0.016348594,0.016009604,0.015680573,0.015361106,0.015050826,0.014749376,0.014456417,0.014171625,0.013894695,0.013625333,0.01336326,0.013108211,0.012859933,0.012618183,0.012382732,0.012153358,0.011929852,0.011712012,0.011499645,0.011292567,0.011090603,0.010893583,0.010701345,0.010513735,0.010330604,0.010151809,0.009977215,0.009806688,0.009640104,0.009477341,0.009318283,0.009162818,0.009010838,0.00886224,0.008716925,0.008574796,0.008435761,0.008299731,0.008166621,0.008036348,0.007908833,0.007783997,0.007661769,0.007542075,0.007424848,0.00731002,0.007197527,0.007087306,0.006979299,0.006873447,0.006769693,0.006667984,0.006568266,0.00647049,0.006374606,0.006280566,0.006188324,0.006097836,0.006009058,0.005921949,0.005836468,0.005752575,0.005670233,0.005589405,0.005510054,0.005432145,0.005355646,0.005280523,0.005206744,0.005134279,0.005063097,0.004993169,0.004924468,0.004856965,0.004790634,0.004725448,0.004661383,0.004598414,0.004536517,0.004475668,0.004415846,0.004357028,0.004299193,0.004242319,0.004186387,0.004131377,0.00407727,0.004024046,0.003971689,0.003920179,0.003869499,0.003819633,0.003770565,0.003722277,0.003674755,0.003627983,0.003581947,0.003536631,0.003492022,0.003448106,0.00340487,0.003362299,0.003320383,0.003279107,0.00323846,0.003198429,0.003159004,0.003120172,0.003081923,0.003044246,0.003007129,0.002970564,0.002934539,0.002899045,0.002864072,0.00282961,0.002795651,0.002762185,0.002729203,0.002696697,0.002664659,0.002633079,0.002601951,0.002571265,0.002541015,0.002511193,0.002481791,0.002452801,0.002424218,0.002396034,0.002368242,0.002340835,0.002313807,0.002287152,0.002260863,0.002234934,0.002209359,0.002184133,0.002159249,0.002134702,0.002110486,0.002086596,0.002063027,0.002039773,0.002016829,0.00199419,0.001971852,0.001949809,0.001928057,0.001906591,0.001885406,0.001864499,0.001843865,0.001823499,0.001803397,0.001783555,0.00176397,0.001744637,0.001725552,0.001706711,0.001688111,0.001669748,0.001651619,0.001633719,0.001616046,0.001598595,0.001581364,0.00156435,0.001547548,0.001530956,0.001514572,0.00149839,0.00148241,0.001466627,0.001451039,0.001435643,0.001420436,0.001405415,0.001390578,0.001375922,0.001361445,0.001347143,0.001333015,0.001319057,0.001305268,0.001291645,0.001278185,0.001264887,0.001251748,0.001238766,0.001225938,0.001213263,0.001200738,0.001188361,0.001176131,0.001164044,0.0011521,0.001140296,0.00112863,0.001117101,0.001105706,0.001094443,0.001083312,0.001072309,0.001061434,0.001050685,0.001040059,0.001029556,0.001019173,0.00100891,0.000998763,0.000988733,0.000978817,0.000969014,0.000959322,0.00094974,0.000940266,0.000930899,0.000921638,0.000912481,0.000903427,0.000894474,0.000885622,0.193218826,0.193218826,0.193218826,0.193218826,0.193214134,0.19230259,0.189867695,0.186058552,0.181091562,0.175219667,0.16870223,0.161781214,0.154666068,0.147526959,0.140494391,0.133662835,0.127096321,0.120834523,0.114898469,0.10929546,0.104023062,0.099072225,0.094429637,0.090079454,0.086004534,0.082187313,0.078610381,0.075256877,0.072110725,0.069156765,0.066380824,0.063769725,0.061311274,0.058994218,0.0568082,0.054743697,0.052791964,0.050944973,0.049195357,0.047536354,0.045961754,0.044465853,0.043043408,0.041689598,0.040399981,0.039170467,0.037997283,0.036876947,0.035806241,0.034782188,0.033802032,0.03286322,0.031963383,0.031100319,0.030271984,0.029476474,0.028712017,0.027976961,0.027269762,0.026588981,0.025933271,0.025301371,0.024692101,0.024104356,0.023537095,0.022989346,0.022460192,0.021948771,0.021454272,0.020975932,0.02051303,0.020064886,0.01963086,0.019210345,0.018802769,0.018407589,0.018024292,0.017652393,0.01729143,0.016940966,0.016600587,0.016269898,0.015948526,0.015636114,0.015332323,0.015036833,0.014749335,0.014469538,0.014197162,0.013931941,0.013673623,0.013421964,0.013176733,0.01293771,0.012704682,0.012477447,0.012255812,0.012039592,0.011828609,0.011622692,0.011421679,0.011225414,0.011033747,0.010846533,0.010663634,0.010484918,0.010310257,0.010139529,0.009972616,0.009809403,0.009649784,0.009493651,0.009340905,0.009191447,0.009045185,0.008902027,0.008761887,0.008624681,0.008490327,0.008358747,0.008229866,0.008103612,0.007979912,0.007858701,0.007739911,0.00762348,0.007509346,0.00739745,0.007287734,0.007180143,0.007074623,0.006971123,0.006869591,0.006769978,0.006672239,0.006576326,0.006482196,0.006389806,0.006299113,0.006210078,0.006122661,0.006036825,0.005952531,0.005869745,0.005788432,0.005708558,0.005630089,0.005552995,0.005477245,0.005402808,0.005329654,0.005257757,0.005187087,0.005117619,0.005049326,0.004982182,0.004916164,0.004851246,0.004787406,0.004724621,0.004662868,0.004602127,0.004542375,0.004483593,0.004425761,0.004368859,0.004312868,0.00425777,0.004203546,0.00415018,0.004097654,0.004045952,0.003995056,0.003944952,0.003895624,0.003847057,0.003799236,0.003752147,0.003705775,0.003660107,0.00361513,0.00357083,0.003527195,0.003484213,0.003441871,0.003400157,0.00335906,0.003318568,0.00327867,0.003239356,0.003200615,0.003162436,0.00312481,0.003087726,0.003051175,0.003015147,0.002979633,0.002944625,0.002910112,0.002876087,0.002842541,0.002809466,0.002776854,0.002744696,0.002712985,0.002681713,0.002650873,0.002620458,0.00259046,0.002560872,0.002531688,0.0025029,0.002474503,0.00244649,0.002418853,0.002391588,0.002364689,0.002338148,0.002311961,0.002286121,0.002260624,0.002235463,0.002210633,0.002186129,0.002161946,0.002138079,0.002114522,0.002091271,0.002068321,0.002045667,0.002023305,0.00200123,0.001979438,0.001957924,0.001936685,0.001915715,0.001895011,0.001874569,0.001854384,0.001834454,0.001814773,0.001795339,0.001776148,0.001757195,0.001738478,0.001719993,0.001701737,0.001683705,0.001665896,0.001648305,0.001630929,0.001613766,0.001596812,0.001580064,0.00156352,0.001547175,0.001531028,0.001515076,0.001499316,0.001483744,0.001468359,0.001453158,0.001438138,0.001423296,0.001408631,0.001394139,0.001379818,0.001365667,0.001351682,0.001337861,0.001324202,0.001310702,0.001297361,0.001284174,0.001271141,0.001258259,0.001245526,0.00123294,0.0012205,0.001208202,0.001196046,0.001184028,0.001172149,0.001160405,0.001148795,0.001137317,0.001125969,0.001114749,0.001103657,0.00109269,0.001081846,0.001071124,0.001060523,0.001050041,0.001039675,0.001029426,0.00101929,0.001009268,0.000999356,0.000989555,0.196457036,0.196457036,0.196457036,0.196457036,0.196457036,0.196164796,0.194441712,0.191274267,0.186847939,0.18139887,0.175183207,0.16845032,0.161423794,0.154291017,0.147200033,0.140261438,0.133553102,0.127125999,0.121010043,0.115219298,0.109756342,0.104615737,0.099786699,0.095255087,0.091004856,0.087019082,0.083280682,0.079772887,0.076479554,0.073385352,0.070475864,0.067737631,0.06515815,0.062725851,0.06043006,0.058260943,0.056209454,0.05426728,0.052426781,0.050680936,0.049023297,0.047447931,0.045949386,0.044522641,0.043163071,0.041866415,0.040628741,0.039446416,0.038316085,0.037234641,0.036199209,0.035207123,0.034255908,0.033343267,0.032467062,0.031625306,0.030816145,0.030037852,0.029288815,0.028567528,0.027872581,0.027202658,0.026556522,0.025933017,0.025331055,0.024749617,0.024187742,0.023644531,0.023119132,0.022610745,0.022118617,0.021642036,0.021180328,0.02073286,0.02029903,0.01987827,0.019470043,0.019073837,0.018689171,0.018315585,0.017952644,0.017599935,0.017257064,0.016923659,0.016599363,0.016283838,0.015976762,0.015677828,0.015386743,0.015103227,0.014827014,0.014557848,0.014295488,0.014039699,0.013790259,0.013546957,0.013309587,0.013077956,0.012851876,0.012631168,0.012415661,0.012205189,0.011999596,0.011798728,0.011602442,0.011410596,0.011223056,0.011039694,0.010860385,0.010685008,0.01051345,0.0103456,0.01018135,0.010020598,0.009863246,0.009709197,0.00955836,0.009410645,0.009265968,0.009124246,0.008985399,0.008849349,0.008716023,0.008585349,0.008457257,0.00833168,0.008208553,0.008087814,0.007969401,0.007853256,0.007739322,0.007627544,0.007517868,0.007410243,0.00730462,0.007200948,0.007099182,0.006999275,0.006901184,0.006804865,0.006710278,0.006617381,0.006526136,0.006436505,0.00634845,0.006261936,0.006176928,0.006093392,0.006011296,0.005930607,0.005851294,0.005773328,0.005696678,0.005621317,0.005547216,0.005474349,0.005402689,0.005332211,0.00526289,0.005194701,0.005127621,0.005061628,0.004996698,0.004932809,0.004869942,0.004808074,0.004747186,0.004687258,0.004628271,0.004570206,0.004513045,0.004456771,0.004401365,0.004346811,0.004293093,0.004240194,0.004188099,0.004136791,0.004086258,0.004036483,0.003987452,0.003939152,0.003891569,0.003844689,0.0037985,0.003752989,0.003708143,0.003663951,0.0036204,0.003577479,0.003535176,0.003493481,0.003452383,0.003411871,0.003371934,0.003332563,0.003293748,0.003255479,0.003217746,0.00318054,0.003143853,0.003107675,0.003071997,0.003036812,0.00300211,0.002967884,0.002934125,0.002900825,0.002867978,0.002835576,0.00280361,0.002772074,0.002740962,0.002710265,0.002679977,0.002650092,0.002620602,0.002591503,0.002562786,0.002534447,0.002506479,0.002478876,0.002451633,0.002424744,0.002398202,0.002372004,0.002346143,0.002320614,0.002295412,0.002270532,0.00224597,0.002221719,0.002197775,0.002174135,0.002150792,0.002127743,0.002104983,0.002082508,0.002060313,0.002038394,0.002016748,0.00199537,0.001974256,0.001953402,0.001932804,0.001912459,0.001892364,0.001872513,0.001852904,0.001833534,0.001814398,0.001795493,0.001776817,0.001758366,0.001740136,0.001722124,0.001704328,0.001686744,0.00166937,0.001652202,0.001635237,0.001618473,0.001601906,0.001585535,0.001569356,0.001553367,0.001537564,0.001521946,0.00150651,0.001491254,0.001476174,0.001461269,0.001446537,0.001431974,0.001417578,0.001403348,0.001389281,0.001375375,0.001361628,0.001348037,0.001334601,0.001321317,0.001308184,0.001295199,0.001282361,0.001269667,0.001257116,0.001244706,0.001232435,0.001220301,0.001208302,0.001196437,0.001184704,0.001173101,0.001161627,0.001150279,0.001139057,0.001127958,0.001116982,0.001106126,0.199749516,0.199749516,0.199749516,0.199749516,0.199749516,0.19974372,0.198832022,0.196420445,0.192653846,0.187742178,0.18193099,0.175472507,0.168602686,0.161526547,0.154411486,0.147386714,0.140546588,0.133955866,0.127655497,0.12166808,0.116002608,0.110658331,0.105627801,0.100899173,0.096457919,0.092288058,0.088373027,0.084696281,0.081241691,0.077993796,0.074937954,0.072060417,0.069348361,0.066789879,0.064373951,0.062090404,0.059929861,0.057883691,0.055943951,0.054103336,0.052355126,0.050693139,0.049111683,0.047605519,0.046169817,0.044800123,0.043492327,0.042242631,0.041047525,0.039903758,0.038808321,0.037758424,0.036751474,0.035785067,0.034856964,0.033965081,0.033107478,0.032282344,0.03148799,0.030722837,0.029985408,0.02927432,0.02858828,0.027926072,0.027286557,0.026668665,0.026071389,0.025493783,0.024934955,0.024394066,0.023870324,0.023362981,0.022871332,0.022394709,0.021932482,0.021484054,0.02104886,0.020626363,0.020216056,0.019817457,0.019430109,0.019053577,0.018687447,0.018331327,0.017984844,0.01764764,0.017319377,0.016999732,0.016688397,0.016385076,0.016089491,0.015801371,0.015520462,0.015246519,0.014979306,0.0147186,0.014464186,0.01421586,0.013973423,0.013736687,0.013505471,0.013279602,0.013058913,0.012843243,0.01263244,0.012426356,0.012224849,0.012027782,0.011835025,0.011646451,0.011461938,0.01128137,0.011104634,0.010931621,0.010762227,0.010596351,0.010433896,0.010274768,0.010118876,0.009966134,0.009816455,0.009669761,0.00952597,0.009385008,0.009246801,0.009111278,0.00897837,0.00884801,0.008720135,0.008594682,0.008471591,0.008350803,0.008232261,0.008115912,0.008001702,0.00788958,0.007779495,0.007671399,0.007565246,0.007460991,0.007358588,0.007257995,0.00715917,0.007062074,0.006966666,0.00687291,0.006780767,0.006690202,0.006601181,0.006513668,0.006427632,0.006343039,0.006259859,0.006178062,0.006097618,0.006018498,0.005940674,0.00586412,0.005788807,0.005714712,0.005641808,0.005570071,0.005499478,0.005430005,0.005361629,0.005294328,0.005228082,0.005162868,0.005098667,0.005035458,0.004973223,0.004911942,0.004851596,0.004792168,0.00473364,0.004675995,0.004619215,0.004563286,0.00450819,0.004453912,0.004400437,0.00434775,0.004295836,0.004244682,0.004194272,0.004144594,0.004095635,0.004047381,0.003999819,0.003952939,0.003906726,0.003861169,0.003816258,0.00377198,0.003728324,0.00368528,0.003642836,0.003600983,0.003559711,0.003519009,0.003478867,0.003439277,0.003400228,0.003361713,0.00332372,0.003286243,0.003249272,0.003212799,0.003176816,0.003141315,0.003106287,0.003071725,0.003037622,0.00300397,0.002970761,0.002937989,0.002905647,0.002873727,0.002842223,0.002811129,0.002780438,0.002750143,0.002720238,0.002690718,0.002661576,0.002632806,0.002604403,0.002576361,0.002548674,0.002521338,0.002494346,0.002467693,0.002441374,0.002415385,0.00238972,0.002364374,0.002339343,0.002314622,0.002290206,0.002266091,0.002242272,0.002218745,0.002195506,0.00217255,0.002149874,0.002127473,0.002105343,0.00208348,0.002061881,0.002040542,0.002019458,0.001998627,0.001978045,0.001957708,0.001937613,0.001917756,0.001898134,0.001878743,0.001859582,0.001840645,0.00182193,0.001803435,0.001785155,0.001767089,0.001749233,0.001731583,0.001714139,0.001696896,0.001679851,0.001663003,0.001646348,0.001629884,0.001613609,0.001597519,0.001581613,0.001565887,0.00155034,0.001534969,0.001519771,0.001504745,0.001489888,0.001475198,0.001460673,0.001446311,0.001432109,0.001418065,0.001404177,0.001390444,0.001376864,0.001363433,0.001350151,0.001337015,0.001324024,0.001311176,0.001298469,0.001285901,0.00127347,0.001261175,0.001249013,0.001236984,0.203097175,0.203097175,0.203097175,0.203097175,0.203097175,0.203097175,0.202904471,0.201374873,0.198407168,0.194173305,0.188897779,0.182828207,0.176208922,0.169261659,0.162174452,0.155097692,0.148145307,0.141398923,0.134913308,0.128721961,0.122842195,0.117279443,0.112030726,0.107087341,0.102436889,0.098064764,0.093955229,0.090092162,0.086459576,0.083041953,0.079824462,0.076793079,0.073934652,0.071236912,0.068688468,0.066278774,0.063998088,0.061837424,0.059788502,0.057843694,0.055995978,0.054238888,0.052566467,0.050973225,0.0494541,0.048004425,0.046619885,0.045296498,0.044030578,0.042818714,0.041657745,0.04054474,0.039476977,0.038451929,0.037467243,0.036520731,0.035610353,0.034734205,0.033890511,0.033077611,0.032293953,0.031538084,0.03080864,0.030104347,0.029424004,0.028766486,0.028130734,0.027515753,0.026920605,0.026344406,0.025786323,0.025245569,0.024721401,0.024213117,0.023720053,0.023241581,0.022777106,0.022326063,0.021887918,0.021462163,0.021048316,0.020645919,0.020254537,0.019873757,0.019503183,0.019142442,0.018791174,0.018449041,0.018115716,0.01779089,0.017474267,0.017165564,0.01686451,0.016570847,0.016284328,0.016004717,0.015731787,0.01546532,0.015205111,0.014950958,0.014702671,0.014460066,0.014222969,0.013991209,0.013764624,0.013543059,0.013326363,0.013114392,0.012907008,0.012704078,0.012505472,0.012311067,0.012120744,0.011934388,0.011751889,0.011573139,0.011398036,0.01122648,0.011058377,0.010893632,0.010732157,0.010573865,0.010418674,0.010266502,0.010117272,0.009970909,0.009827338,0.009686491,0.009548299,0.009412695,0.009279616,0.009149,0.009020787,0.008894919,0.008771339,0.008649994,0.008530829,0.008413794,0.008298839,0.008185915,0.008074976,0.007965977,0.007858872,0.00775362,0.007650178,0.007548506,0.007448564,0.007350316,0.007253722,0.007158748,0.007065358,0.006973518,0.006883194,0.006794355,0.00670697,0.006621006,0.006536435,0.006453228,0.006371357,0.006290793,0.006211511,0.006133484,0.006056686,0.005981093,0.005906682,0.005833427,0.005761307,0.005690299,0.005620381,0.005551532,0.005483731,0.005416958,0.005351193,0.005286417,0.005222611,0.005159757,0.005097837,0.005036833,0.004976728,0.004917506,0.00485915,0.004801644,0.004744973,0.004689121,0.004634075,0.004579818,0.004526337,0.004473618,0.004421648,0.004370413,0.0043199,0.004270097,0.004220991,0.00417257,0.004124822,0.004077735,0.004031299,0.003985502,0.003940332,0.00389578,0.003851836,0.003808487,0.003765726,0.003723542,0.003681925,0.003640865,0.003600355,0.003560384,0.003520945,0.003482027,0.003443623,0.003405725,0.003368324,0.003331412,0.003294981,0.003259025,0.003223534,0.003188503,0.003153923,0.003119787,0.003086089,0.003052822,0.003019979,0.002987554,0.002955539,0.002923929,0.002892718,0.002861899,0.002831467,0.002801415,0.002771738,0.00274243,0.002713486,0.0026849,0.002656667,0.002628782,0.002601239,0.002574033,0.00254716,0.002520615,0.002494392,0.002468487,0.002442896,0.002417613,0.002392635,0.002367958,0.002343575,0.002319485,0.002295681,0.002272161,0.00224892,0.002225955,0.002203261,0.002180834,0.002158671,0.002136769,0.002115123,0.00209373,0.002072586,0.002051688,0.002031033,0.002010617,0.001990438,0.001970491,0.001950773,0.001931282,0.001912015,0.001892968,0.001874138,0.001855523,0.00183712,0.001818925,0.001800936,0.001783151,0.001765566,0.001748179,0.001730987,0.001713988,0.00169718,0.001680559,0.001664123,0.00164787,0.001631798,0.001615904,0.001600185,0.00158464,0.001569267,0.001554062,0.001539025,0.001524152,0.001509442,0.001494893,0.001480502,0.001466268,0.001452188,0.001438261,0.001424485,0.001410858,0.001397378,0.001384043,0.206500938,0.206500938,0.206500938,0.206500938,0.206500938,0.206500938,0.206500938,0.205960104,0.203942906,0.200550168,0.19597153,0.190438601,0.184196567,0.177480383,0.170498531,0.16342462,0.156395362,0.149512849,0.142849139,0.136451691,0.130348696,0.124553817,0.119070135,0.113893286,0.109013889,0.10441936,0.100095238,0.096026139,0.092196425,0.088590655,0.085193884,0.081991847,0.078971071,0.076118916,0.073423597,0.070874161,0.068460465,0.06617313,0.064003497,0.061943578,0.059986011,0.058124007,0.056351308,0.054662143,0.053051188,0.051513527,0.050044622,0.048640276,0.047296606,0.046010018,0.044777181,0.043595004,0.042460618,0.041371358,0.040324743,0.039318466,0.038350374,0.03741846,0.036520852,0.035655797,0.034821658,0.034016902,0.033240092,0.032489881,0.031765004,0.031064274,0.030386574,0.029730852,0.02909612,0.028481445,0.027885948,0.027308797,0.026749211,0.026206446,0.025679804,0.025168619,0.024672265,0.024190146,0.023721696,0.023266381,0.022823691,0.022393143,0.021974277,0.021566656,0.021169864,0.020783505,0.020407201,0.020040593,0.019683336,0.019335104,0.018995584,0.018664476,0.018341495,0.018026367,0.017718833,0.017418641,0.017125552,0.016839337,0.016559777,0.016286659,0.016019782,0.015758953,0.015503985,0.015254699,0.015010924,0.014772494,0.01453925,0.014311041,0.01408772,0.013869144,0.013655179,0.013445692,0.013240559,0.013039656,0.012842868,0.01265008,0.012461184,0.012276074,0.01209465,0.011916812,0.011742466,0.011571521,0.011403888,0.011239482,0.01107822,0.010920022,0.010764811,0.010612512,0.010463052,0.010316362,0.010172374,0.010031021,0.009892241,0.00975597,0.009622151,0.009490724,0.009361634,0.009234825,0.009110245,0.008987843,0.008867568,0.008749372,0.008633209,0.008519033,0.008406798,0.008296463,0.008187986,0.008081325,0.007976441,0.007873296,0.007771852,0.007672073,0.007573924,0.007477371,0.007382378,0.007288915,0.00719695,0.00710645,0.007017387,0.006929732,0.006843454,0.006758527,0.006674924,0.006592618,0.006511584,0.006431795,0.006353229,0.00627586,0.006199666,0.006124624,0.006050712,0.005977907,0.00590619,0.00583554,0.005765935,0.005697357,0.005629787,0.005563206,0.005497595,0.005432937,0.005369214,0.005306409,0.005244506,0.005183488,0.00512334,0.005064045,0.005005589,0.004947956,0.004891133,0.004835105,0.004779858,0.004725378,0.004671653,0.004618669,0.004566413,0.004514874,0.004464038,0.004413894,0.00436443,0.004315634,0.004267497,0.004220006,0.00417315,0.00412692,0.004081305,0.004036295,0.00399188,0.00394805,0.003904795,0.003862108,0.003819978,0.003778396,0.003737354,0.003696843,0.003656854,0.00361738,0.003578413,0.003539944,0.003501965,0.003464469,0.003427449,0.003390897,0.003354806,0.003319169,0.003283978,0.003249228,0.003214911,0.003181021,0.003147552,0.003114496,0.003081849,0.003049603,0.003017753,0.002986293,0.002955218,0.002924521,0.002894197,0.00286424,0.002834646,0.002805409,0.002776523,0.002747984,0.002719787,0.002691927,0.002664398,0.002637197,0.002610318,0.002583757,0.00255751,0.002531572,0.002505939,0.002480606,0.002455569,0.002430825,0.002406368,0.002382196,0.002358304,0.002334688,0.002311345,0.002288271,0.002265461,0.002242914,0.002220624,0.002198589,0.002176805,0.002155268,0.002133976,0.002112925,0.002092111,0.002071533,0.002051186,0.002031067,0.002011175,0.001991504,0.001972053,0.001952819,0.001933799,0.00191499,0.001896389,0.001877994,0.001859802,0.00184181,0.001824016,0.001806417,0.001789011,0.001771795,0.001754767,0.001737925,0.001721266,0.001704787,0.001688487,0.001672363,0.001656414,0.001640636,0.001625028,0.001609587,0.001594312,0.001579201,0.001564251,0.00154946,0.209961747,0.209961747,0.209961747,0.209961747,0.209961747,0.209961747,0.209961747,0.209953436,0.209039371,0.206667379,0.202975722,0.19816412,0.192466204,0.186122486,0.17935882,0.172372508,0.165325796,0.158345097,0.151523891,0.144927485,0.138598332,0.132561121,0.126827211,0.121398297,0.116269309,0.111430637,0.106869788,0.102572604,0.098524131,0.094709226,0.091112971,0.087720943,0.084519382,0.081495289,0.078636468,0.075931538,0.073369918,0.070941794,0.068638089,0.066450411,0.064371012,0.06239274,0.060508996,0.058713689,0.057001196,0.055366323,0.053804271,0.052310601,0.050881207,0.049512285,0.048200309,0.046942009,0.045734348,0.044574503,0.04345985,0.042387944,0.041356508,0.040363415,0.039406683,0.038484458,0.037595006,0.036736703,0.03590803,0.035107558,0.034333951,0.033585949,0.032862372,0.032162106,0.031484105,0.03082738,0.030191002,0.029574092,0.028975819,0.0283954,0.027832093,0.027285195,0.026754041,0.026238002,0.025736479,0.025248906,0.024774743,0.024313478,0.023864626,0.023427724,0.02300233,0.022588026,0.022184411,0.021791105,0.021407744,0.02103398,0.020669483,0.020313937,0.019967038,0.019628497,0.019298038,0.018975396,0.018660316,0.018352557,0.018051885,0.017758076,0.017470917,0.017190202,0.016915734,0.016647323,0.016384787,0.016127951,0.015876647,0.015630713,0.015389994,0.015154338,0.014923603,0.014697649,0.014476343,0.014259554,0.014047159,0.013839038,0.013635075,0.013435158,0.013239179,0.013047035,0.012858624,0.01267385,0.012492618,0.012314838,0.012140421,0.011969284,0.011801343,0.01163652,0.011474737,0.01131592,0.011159996,0.011006896,0.010856552,0.010708899,0.010563871,0.010421409,0.010281452,0.010143942,0.010008823,0.00987604,0.009745539,0.009617271,0.009491183,0.009367228,0.009245359,0.009125529,0.009007695,0.008891812,0.008777839,0.008665735,0.008555459,0.008446973,0.00834024,0.008235222,0.008131884,0.008030191,0.007930109,0.007831606,0.007734648,0.007639206,0.007545248,0.007452744,0.007361666,0.007271986,0.007183675,0.007096708,0.007011057,0.006926698,0.006843605,0.006761755,0.006681124,0.006601687,0.006523424,0.006446312,0.006370329,0.006295454,0.006221667,0.006148948,0.006077277,0.006006636,0.005937005,0.005868366,0.005800701,0.005733994,0.005668226,0.005603382,0.005539444,0.005476398,0.005414227,0.005352916,0.005292451,0.005232816,0.005173998,0.005115982,0.005058755,0.005002304,0.004946615,0.004891675,0.004837473,0.004783995,0.00473123,0.004679166,0.004627792,0.004577095,0.004527065,0.004477692,0.004428964,0.004380871,0.004333404,0.004286551,0.004240303,0.004194651,0.004149584,0.004105095,0.004061173,0.004017811,0.003974998,0.003932727,0.003890989,0.003849777,0.003809081,0.003768895,0.003729209,0.003690018,0.003651312,0.003613086,0.003575331,0.003538041,0.003501208,0.003464826,0.003428889,0.003393389,0.00335832,0.003323676,0.003289451,0.003255638,0.003222232,0.003189226,0.003156615,0.003124393,0.003092555,0.003061095,0.003030008,0.002999288,0.00296893,0.002938929,0.00290928,0.002879979,0.002851019,0.002822397,0.002794108,0.002766147,0.00273851,0.002711192,0.002684188,0.002657495,0.002631108,0.002605023,0.002579236,0.002553743,0.00252854,0.002503623,0.002478988,0.002454632,0.00243055,0.002406739,0.002383195,0.002359915,0.002336896,0.002314134,0.002291625,0.002269366,0.002247354,0.002225586,0.002204059,0.002182769,0.002161713,0.002140889,0.002120293,0.002099922,0.002079774,0.002059846,0.002040135,0.002020637,0.002001351,0.001982274,0.001963403,0.001944735,0.001926269,0.001908,0.001889928,0.001872049,0.001854362,0.001836863,0.00181955,0.001802421,0.001785474,0.001768707,0.001752117,0.001735703,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213420645,0.212253568,0.209662321,0.205794863,0.200854976,0.195075029,0.188690241,0.18191883,0.174949688,0.167937048,0.161000398,0.154227667,0.147679993,0.141396895,0.135401141,0.129702956,0.124303487,0.119197531,0.114375618,0.10982558,0.105533686,0.101485463,0.097666264,0.094061662,0.090657703,0.087441067,0.08439916,0.081520157,0.078793008,0.07620743,0.07375388,0.071423514,0.069208152,0.067100232,0.065092764,0.063179293,0.061353855,0.059610935,0.057945438,0.056352648,0.0548282,0.053368051,0.051968453,0.050625929,0.049337248,0.048099409,0.046909622,0.045765286,0.04466398,0.043603443,0.042581567,0.041596381,0.040646041,0.039728822,0.038843107,0.03798738,0.037160219,0.036360287,0.035586328,0.03483716,0.034111671,0.03340881,0.032727591,0.032067079,0.031426393,0.030804699,0.030201211,0.029615183,0.029045907,0.028492716,0.027954973,0.027432078,0.026923457,0.026428568,0.025946894,0.025477943,0.025021248,0.024576364,0.024142866,0.023720349,0.023308427,0.022906732,0.022514912,0.022132631,0.021759568,0.021395415,0.02103988,0.020692679,0.020353545,0.020022219,0.019698453,0.019382011,0.019072665,0.018770196,0.018474396,0.018185062,0.017902001,0.017625027,0.017353962,0.017088634,0.016828876,0.01657453,0.016325443,0.016081467,0.015842458,0.015608281,0.015378803,0.015153896,0.014933437,0.014717307,0.014505392,0.01429758,0.014093766,0.013893844,0.013697717,0.013505286,0.013316458,0.013131143,0.012949254,0.012770706,0.012595417,0.012423307,0.012254301,0.012088322,0.0119253,0.011765164,0.011607846,0.011453281,0.011301405,0.011152155,0.011005473,0.010861299,0.010719578,0.010580254,0.010443273,0.010308585,0.010176138,0.010045883,0.009917774,0.009791764,0.009667808,0.009545861,0.009425883,0.00930783,0.009191664,0.009077344,0.008964833,0.008854094,0.008745089,0.008637785,0.008532146,0.00842814,0.008325734,0.008224895,0.008125593,0.008027799,0.007931481,0.007836613,0.007743165,0.007651111,0.007560423,0.007471076,0.007383045,0.007296305,0.007210831,0.0071266,0.007043589,0.006961776,0.006881138,0.006801655,0.006723304,0.006646066,0.00656992,0.006494848,0.00642083,0.006347847,0.00627588,0.006204913,0.006134928,0.006065907,0.005997834,0.005930693,0.005864467,0.005799141,0.005734699,0.005671127,0.00560841,0.005546533,0.005485483,0.005425245,0.005365807,0.005307155,0.005249276,0.005192157,0.005135786,0.005080151,0.005025241,0.004971042,0.004917544,0.004864736,0.004812607,0.004761146,0.004710342,0.004660185,0.004610665,0.004561772,0.004513496,0.004465828,0.004418758,0.004372277,0.004326376,0.004281046,0.004236279,0.004192065,0.004148397,0.004105267,0.004062666,0.004020586,0.00397902,0.00393796,0.003897398,0.003857328,0.003817742,0.003778632,0.003739992,0.003701816,0.003664096,0.003626825,0.003589998,0.003553608,0.003517649,0.003482114,0.003446998,0.003412294,0.003377997,0.003344101,0.0033106,0.00327749,0.003244764,0.003212416,0.003180443,0.003148839,0.003117598,0.003086715,0.003056186,0.003026006,0.002996171,0.002966674,0.002937513,0.002908682,0.002880176,0.002851992,0.002824126,0.002796572,0.002769327,0.002742387,0.002715747,0.002689404,0.002663354,0.002637593,0.002612117,0.002586923,0.002562006,0.002537363,0.002512991,0.002488886,0.002465045,0.002441464,0.00241814,0.00239507,0.00237225,0.002349677,0.002327348,0.002305261,0.002283411,0.002261796,0.002240414,0.00221926,0.002198333,0.002177629,0.002157145,0.00213688,0.00211683,0.002096992,0.002077364,0.002057944,0.002038728,0.002019715,0.002000901,0.001982285,0.001963864,0.001945635,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.216961917,0.215694943,0.213028267,0.209111878,0.204148583,0.198367364,0.19199858,0.185255074,0.178320619,0.171345059,0.16444444,0.157704207,0.151183872,0.14492203,0.138941052,0.133251155,0.127853737,0.122744001,0.117912982,0.113349052,0.109039024,0.104968954,0.101124691,0.097492267,0.094058145,0.090809378,0.087733707,0.084819602,0.082056274,0.079433669,0.076942441,0.074573923,0.072320084,0.070173492,0.068127272,0.066175064,0.064310988,0.062529602,0.060825868,0.059195125,0.057633049,0.056135636,0.054699167,0.053320189,0.051995495,0.050722098,0.049497222,0.048318275,0.047182845,0.046088675,0.045033661,0.044015833,0.043033347,0.042084477,0.041167604,0.040281209,0.039423865,0.038594231,0.037791046,0.037013122,0.036259341,0.035528647,0.034820044,0.034132594,0.033465406,0.032817642,0.032188506,0.031577246,0.030983147,0.030405534,0.029843764,0.029297228,0.028765347,0.028247571,0.027743376,0.027252263,0.026773758,0.026307409,0.025852785,0.025409474,0.024977085,0.024555243,0.024143589,0.023741781,0.023349494,0.022966412,0.022592237,0.022226683,0.021869473,0.021520345,0.021179046,0.020845334,0.020518976,0.020199748,0.019887438,0.019581837,0.019282749,0.018989983,0.018703356,0.018422691,0.018147819,0.017878577,0.017614806,0.017356356,0.017103081,0.016854838,0.016611492,0.016372913,0.016138973,0.01590955,0.015684526,0.015463787,0.015247223,0.015034727,0.014826196,0.01462153,0.014420634,0.014223414,0.014029779,0.013839643,0.01365292,0.013469529,0.013289389,0.013112425,0.012938562,0.012767726,0.012599849,0.012434861,0.012272698,0.012113294,0.011956587,0.011802518,0.011651027,0.011502057,0.011355554,0.011211463,0.011069731,0.010930309,0.010793147,0.010658196,0.010525411,0.010394744,0.010266153,0.010139595,0.010015026,0.009892407,0.009771697,0.009652859,0.009535853,0.009420645,0.009307197,0.009195475,0.009085445,0.008977074,0.008870329,0.00876518,0.008661594,0.008559543,0.008458997,0.008359928,0.008262307,0.008166108,0.008071304,0.00797787,0.007885779,0.007795007,0.00770553,0.007617325,0.007530368,0.007444637,0.007360111,0.007276767,0.007194584,0.007113543,0.007033623,0.006954804,0.006877067,0.006800394,0.006724765,0.006650165,0.006576573,0.006503974,0.006432351,0.006361687,0.006291966,0.006223172,0.00615529,0.006088305,0.006022201,0.005956965,0.005892583,0.005829039,0.005766322,0.005704417,0.005643311,0.005582991,0.005523446,0.005464662,0.005406627,0.005349331,0.00529276,0.005236905,0.005181753,0.005127293,0.005073516,0.00502041,0.004967965,0.004916172,0.004865019,0.004814498,0.004764599,0.004715312,0.004666628,0.004618539,0.004571035,0.004524108,0.004477749,0.00443195,0.004386702,0.004341998,0.004297829,0.004254188,0.004211067,0.004168459,0.004126356,0.004084751,0.004043636,0.004003006,0.003962852,0.003923169,0.003883949,0.003845186,0.003806874,0.003769006,0.003731576,0.003694579,0.003658007,0.003621855,0.003586118,0.003550789,0.003515864,0.003481336,0.0034472,0.003413451,0.003380084,0.003347093,0.003314474,0.00328222,0.003250329,0.003218794,0.003187611,0.003156776,0.003126283,0.003096128,0.003066307,0.003036816,0.003007649,0.002978804,0.002950275,0.002922058,0.00289415,0.002866547,0.002839244,0.002812238,0.002785525,0.002759101,0.002732963,0.002707106,0.002681528,0.002656225,0.002631193,0.002606429,0.002581929,0.002557691,0.002533711,0.002509986,0.002486512,0.002463287,0.002440307,0.00241757,0.002395072,0.002372811,0.002350783,0.002328986,0.002307417,0.002286074,0.002264952,0.002244051,0.002223366,0.002202896,0.002182638,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.220617442,0.21941323,0.216822121,0.21298869,0.208110136,0.20241039,0.196115788,0.189436365,0.182554256,0.175618657,0.168745714,0.162021491,0.155506433,0.149240232,0.14324641,0.137536315,0.132112407,0.126970869,0.122103611,0.117499778,0.113146865,0.109031514,0.105140083,0.101459038,0.097975212,0.094675975,0.091549335,0.088583985,0.08576933,0.083095472,0.080553201,0.078133957,0.075829804,0.073633383,0.071537882,0.06953699,0.067624866,0.0657961,0.064045679,0.062368957,0.060761626,0.059219687,0.057739426,0.056317394,0.054950379,0.053635393,0.052369653,0.051150562,0.049975698,0.048842797,0.047749743,0.046694555,0.045675381,0.04469048,0.043738223,0.042817079,0.041925608,0.041062458,0.040226354,0.039416097,0.038630556,0.037868663,0.037129413,0.036411852,0.035715081,0.035038248,0.034380547,0.033741215,0.033119527,0.032514796,0.031926369,0.031353628,0.030795983,0.030252875,0.02972377,0.029208161,0.028705564,0.028215518,0.027737585,0.027271343,0.026816394,0.026372354,0.025938858,0.025515556,0.025102113,0.02469821,0.02430354,0.023917809,0.023540735,0.02317205,0.022811493,0.022458818,0.022113784,0.021776163,0.021445735,0.021122289,0.02080562,0.020495534,0.020191842,0.019894362,0.019602921,0.019317349,0.019037486,0.018763174,0.018494264,0.018230609,0.017972071,0.017718512,0.017469804,0.017225819,0.016986436,0.016751537,0.016521008,0.016294739,0.016072624,0.015854559,0.015640445,0.015430186,0.015223687,0.015020859,0.014821614,0.014625866,0.014433534,0.014244538,0.0140588,0.013876245,0.013696801,0.013520397,0.013346964,0.013176436,0.013008747,0.012843836,0.012681642,0.012522104,0.012365166,0.012210771,0.012058866,0.011909396,0.011762312,0.011617562,0.011475098,0.011334872,0.01119684,0.011060954,0.010927173,0.010795453,0.010665753,0.010538032,0.010412251,0.010288372,0.010166358,0.010046171,0.009927777,0.009811141,0.009696228,0.009583007,0.009471445,0.00936151,0.009253172,0.009146401,0.009041169,0.008937445,0.008835204,0.008734417,0.008635058,0.008537101,0.008440521,0.008345293,0.008251393,0.008158798,0.008067484,0.007977428,0.00788861,0.007801006,0.007714597,0.007629361,0.007545279,0.00746233,0.007380496,0.007299756,0.007220094,0.007141491,0.007063929,0.00698739,0.006911859,0.006837317,0.00676375,0.00669114,0.006619473,0.006548734,0.006478906,0.006409976,0.006341929,0.00627475,0.006208428,0.006142946,0.006078294,0.006014456,0.005951422,0.005889177,0.005827711,0.00576701,0.005707063,0.00564786,0.005589387,0.005531634,0.005474591,0.005418246,0.005362589,0.005307609,0.005253298,0.005199644,0.005146637,0.005094269,0.00504253,0.004991411,0.004940902,0.004890995,0.004841681,0.004792951,0.004744797,0.004697211,0.004650185,0.00460371,0.004557779,0.004512385,0.004467518,0.004423173,0.004379341,0.004336016,0.004293191,0.004250858,0.00420901,0.004167642,0.004126746,0.004086316,0.004046346,0.004006829,0.003967759,0.00392913,0.003890936,0.003853172,0.003815831,0.003778908,0.003742397,0.003706292,0.003670589,0.003635283,0.003600366,0.003565836,0.003531686,0.003497912,0.003464508,0.00343147,0.003398794,0.003366474,0.003334505,0.003302884,0.003271606,0.003240666,0.003210061,0.003179785,0.003149835,0.003120206,0.003090895,0.003061898,0.00303321,0.003004828,0.002976747,0.002948965,0.002921477,0.00289428,0.00286737,0.002840743,0.002814396,0.002788326,0.00276253,0.002737003,0.002711743,0.002686746,0.002662009,0.002637529,0.002613304,0.002589329,0.002565601,0.002542119,0.002518878,0.002495877,0.002473112,0.00245058,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224373229,0.223405017,0.221051664,0.217444369,0.212769571,0.20724402,0.201090535,0.194518727,0.187712537,0.180824314,0.173973979,0.167251478,0.160720926,0.154425302,0.148390975,0.142631692,0.137151906,0.13194943,0.127017498,0.122346326,0.117924264,0.113738639,0.109776354,0.106024307,0.10246967,0.099100084,0.095903762,0.092869562,0.089987008,0.087246297,0.084638285,0.082154463,0.079786924,0.07752833,0.075371877,0.073311257,0.071340621,0.06945455,0.067648015,0.065916354,0.064255238,0.062660645,0.061128841,0.059656349,0.058239934,0.056876585,0.05556349,0.05429803,0.053077757,0.051900381,0.050763764,0.049665901,0.048604914,0.047579042,0.046586632,0.045626132,0.044696081,0.043795105,0.042921911,0.04207528,0.041254061,0.04045717,0.039683581,0.038932325,0.038202486,0.037493196,0.036803634,0.036133019,0.035480614,0.034845718,0.034227663,0.033625818,0.03303958,0.032468377,0.031911664,0.031368921,0.030839655,0.030323391,0.029819682,0.029328096,0.028848223,0.028379671,0.027922065,0.027475045,0.027038269,0.026611408,0.026194147,0.025786184,0.02538723,0.024997006,0.024615248,0.024241699,0.023876114,0.023518256,0.0231679,0.022824826,0.022488826,0.022159698,0.021837247,0.021521286,0.021211635,0.020908121,0.020610577,0.02031884,0.020032756,0.019752173,0.019476948,0.01920694,0.018942014,0.018682039,0.018426889,0.018176443,0.017930582,0.017689192,0.017452163,0.017219388,0.016990764,0.01676619,0.016545569,0.016328808,0.016115816,0.015906504,0.015700786,0.015498581,0.015299807,0.015104386,0.014912243,0.014723304,0.014537498,0.014354755,0.014175008,0.013998192,0.013824243,0.0136531,0.013484702,0.013318991,0.013155911,0.012995406,0.012837422,0.012681907,0.01252881,0.012378083,0.012229676,0.012083543,0.011939638,0.011797916,0.011658335,0.011520852,0.011385425,0.011252015,0.011120583,0.01099109,0.010863499,0.010737774,0.01061388,0.010491781,0.010371445,0.010252838,0.010135929,0.010020685,0.009907077,0.009795074,0.009684647,0.009575769,0.00946841,0.009362544,0.009258145,0.009155185,0.00905364,0.008953486,0.008854697,0.00875725,0.008661122,0.00856629,0.008472732,0.008380426,0.008289351,0.008199487,0.008110812,0.008023307,0.007936953,0.00785173,0.00776762,0.007684604,0.007602665,0.007521784,0.007441946,0.007363133,0.007285328,0.007208515,0.007132679,0.007057804,0.006983875,0.006910877,0.006838796,0.006767616,0.006697324,0.006627907,0.00655935,0.006491641,0.006424767,0.006358714,0.006293471,0.006229024,0.006165363,0.006102476,0.006040349,0.005978974,0.005918337,0.005858429,0.005799239,0.005740755,0.005682968,0.005625868,0.005569444,0.005513687,0.005458587,0.005404135,0.005350321,0.005297136,0.005244572,0.005192619,0.005141269,0.005090514,0.005040345,0.004990753,0.004941731,0.004893271,0.004845366,0.004798006,0.004751186,0.004704897,0.004659132,0.004613885,0.004569147,0.004524913,0.004481175,0.004437927,0.004395162,0.004352873,0.004311055,0.004269701,0.004228804,0.004188359,0.004148361,0.004108802,0.004069677,0.004030981,0.003992708,0.003954852,0.003917408,0.003880371,0.003843736,0.003807497,0.003771648,0.003736187,0.003701106,0.003666402,0.003632069,0.003598104,0.003564501,0.003531255,0.003498363,0.00346582,0.003433621,0.003401762,0.00337024,0.003339049,0.003308186,0.003277646,0.003247427,0.003217523,0.003187931,0.003158647,0.003129667,0.003100988,0.003072606,0.003044518,0.003016719,0.002989207,0.002961978,0.002935028,0.002908354,0.002881954,0.002855823,0.002829959,0.002804358,0.002779017,0.002753933,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.227603848,0.225672062,0.222458129,0.218130711,0.212895545,0.206971152,0.200568344,0.19387603,0.187053603,0.180228758,0.173499025,0.166935389,0.160586751,0.154484408,0.148646106,0.143079485,0.137784856,0.132757392,0.127988794,0.123468544,0.11918482,0.115125161,0.111276928,0.107627634,0.104165155,0.100877866,0.097754728,0.094785326,0.091959884,0.089269258,0.086704923,0.084258942,0.081923936,0.079693054,0.077559937,0.075518681,0.07356381,0.071690238,0.069893247,0.068168449,0.066511771,0.064919419,0.063387868,0.061913831,0.060494245,0.059126253,0.057807189,0.056534561,0.055306037,0.054119438,0.05297272,0.051863967,0.050791384,0.049753282,0.048748076,0.047774274,0.046830472,0.045915347,0.045027653,0.044166212,0.043329914,0.04251771,0.041728606,0.040961663,0.040215993,0.039490752,0.038785141,0.038098403,0.037429817,0.0367787,0.036144401,0.035526302,0.034923816,0.03433638,0.033763462,0.033204553,0.032659165,0.032126837,0.031607126,0.031099608,0.030603879,0.030119553,0.029646261,0.029183647,0.028731372,0.028289113,0.027856556,0.027433404,0.02701937,0.026614178,0.026217565,0.025829276,0.025449068,0.025076707,0.024711966,0.024354628,0.024004486,0.023661337,0.023324988,0.022995253,0.022671951,0.022354909,0.022043959,0.021738941,0.021439698,0.02114608,0.020857942,0.020575143,0.020297548,0.020025026,0.019757449,0.019494696,0.019236647,0.018983188,0.018734208,0.018489599,0.018249256,0.01801308,0.017780972,0.017552838,0.017328585,0.017108124,0.016891369,0.016678236,0.016468643,0.016262512,0.016059766,0.015860331,0.015664133,0.015471103,0.015281173,0.015094275,0.014910346,0.014729323,0.014551145,0.014375752,0.014203087,0.014033093,0.013865716,0.013700903,0.013538602,0.013378762,0.013221334,0.01306627,0.012913525,0.012763051,0.012614805,0.012468744,0.012324826,0.012183009,0.012043254,0.011905521,0.011769773,0.011635972,0.011504082,0.011374067,0.011245894,0.011119528,0.010994936,0.010872086,0.010750946,0.010631487,0.010513678,0.01039749,0.010282893,0.010169861,0.010058365,0.00994838,0.009839878,0.009732834,0.009627224,0.009523023,0.009420206,0.009318751,0.009218634,0.009119833,0.009022327,0.008926093,0.008831111,0.00873736,0.00864482,0.008553471,0.008463294,0.00837427,0.00828638,0.008199606,0.008113931,0.008029337,0.007945807,0.007863324,0.007781872,0.007701434,0.007621996,0.00754354,0.007466054,0.00738952,0.007313925,0.007239255,0.007165495,0.007092632,0.007020652,0.006949542,0.006879289,0.006809881,0.006741303,0.006673546,0.006606596,0.006540441,0.00647507,0.006410472,0.006346634,0.006283548,0.0062212,0.006159582,0.006098682,0.00603849,0.005978996,0.005920191,0.005862064,0.005804606,0.005747808,0.005691661,0.005636154,0.005581281,0.005527031,0.005473396,0.005420368,0.005367939,0.0053161,0.005264843,0.00521416,0.005164044,0.005114487,0.005065482,0.00501702,0.004969096,0.004921701,0.004874829,0.004828472,0.004782625,0.00473728,0.00469243,0.00464807,0.004604193,0.004560792,0.004517862,0.004475395,0.004433388,0.004391832,0.004350724,0.004310056,0.004269824,0.004230021,0.004190643,0.004151684,0.004113139,0.004075002,0.004037268,0.003999933,0.003962991,0.003926438,0.003890269,0.003854478,0.003819062,0.003784016,0.003749334,0.003715014,0.003681049,0.003647437,0.003614172,0.00358125,0.003548668,0.003516421,0.003484506,0.003452917,0.003421652,0.003390706,0.003360076,0.003329757,0.003299747,0.003270041,0.003240636,0.003211529,0.003182715,0.003154192,0.003125956,0.003098004 -0.103743846,0.103743846,0.103360641,0.100974072,0.096727568,0.091163237,0.084859872,0.07831303,0.071882734,0.065794674,0.060167634,0.055046321,0.050429339,0.046289502,0.042587182,0.039278447,0.03631968,0.033669985,0.031292252,0.029153472,0.027224635,0.025480429,0.023898862,0.022460858,0.02114988,0.019951584,0.018853511,0.017844821,0.01691606,0.016058967,0.015266304,0.014531711,0.013849588,0.01321499,0.01262354,0.01207135,0.011554964,0.011071297,0.010617591,0.010191374,0.009790426,0.009412749,0.009056539,0.008720167,0.008402155,0.008101163,0.007815973,0.007545474,0.007288654,0.007044586,0.006812423,0.006591387,0.006380765,0.006179898,0.005988182,0.00580506,0.005630015,0.00546257,0.005302284,0.005148747,0.00500158,0.004860429,0.004724965,0.004594883,0.004469896,0.004349738,0.004234159,0.004122929,0.004015827,0.00391265,0.003813206,0.003717315,0.003624808,0.003535527,0.003449322,0.003366052,0.003285584,0.003207793,0.003132561,0.003059777,0.002989334,0.002921133,0.00285508,0.002791085,0.002729063,0.002668934,0.002610622,0.002554054,0.002499161,0.002445879,0.002394144,0.002343899,0.002295085,0.00224765,0.002201543,0.002156715,0.002113118,0.00207071,0.002029447,0.001989289,0.001950198,0.001912136,0.001875067,0.001838959,0.001803778,0.001769494,0.001736077,0.001703498,0.001671729,0.001640746,0.001610522,0.001581033,0.001552257,0.00152417,0.001496752,0.001469982,0.00144384,0.001418307,0.001393365,0.001368996,0.001345183,0.001321909,0.00129916,0.00127692,0.001255174,0.001233908,0.001213108,0.001192762,0.001172857,0.00115338,0.00113432,0.001115665,0.001097405,0.001079528,0.001062025,0.001044885,0.001028099,0.001011657,0.000995551,0.000979772,0.000964311,0.00094916,0.000934312,0.000919758,0.000905492,0.000891506,0.000877793,0.000864347,0.00085116,0.000838227,0.000825541,0.000813097,0.000800889,0.00078891,0.000777156,0.000765622,0.000754301,0.00074319,0.000732283,0.000721576,0.000711064,0.000700742,0.000690607,0.000680654,0.000670878,0.000661277,0.000651846,0.000642582,0.00063348,0.000624537,0.000615751,0.000607116,0.000598631,0.000590291,0.000582095,0.000574038,0.000566118,0.000558331,0.000550676,0.00054315,0.000535749,0.000528471,0.000521314,0.000514276,0.000507352,0.000500543,0.000493844,0.000487255,0.000480772,0.000474394,0.000468118,0.000461943,0.000455866,0.000449886,0.000444001,0.000438209,0.000432507,0.000426896,0.000421372,0.000415933,0.00041058,0.000405309,0.000400119,0.000395009,0.000389977,0.000385022,0.000380142,0.000375336,0.000370603,0.000365941,0.000361349,0.000356826,0.00035237,0.00034798,0.000343656,0.000339395,0.000335197,0.000331061,0.000326985,0.000322969,0.000319011,0.00031511,0.000311266,0.000307477,0.000303743,0.000300063,0.000296435,0.000292858,0.000289333,0.000285857,0.000282431,0.000279053,0.000275722,0.000272438,0.0002692,0.000266007,0.000262858,0.000259753,0.000256691,0.000253671,0.000250693,0.000247756,0.000244858,0.000242001,0.000239182,0.000236401,0.000233658,0.000230952,0.000228283,0.000225649,0.000223051,0.000220488,0.000217958,0.000215463,0.000213,0.00021057,0.000208172,0.000205806,0.000203471,0.000201166,0.000198892,0.000196647,0.000194432,0.000192245,0.000190087,0.000187956,0.000185854,0.000183778,0.000181729,0.000179706,0.000177709,0.000175737,0.000173791,0.000171869,0.000169972,0.000168098,0.000166249,0.000164422,0.000162619,0.000160838,0.00015908,0.000157343,0.000155628,0.000153935,0.000152262,0.000150611,0.000148979,0.000147368,0.000145777,0.000144205,0.000142652,0.000141119,0.000139604,0.000138108,0.000136629,0.000135169,0.000133727,0.000132302,0.000130894,0.000129503,0.118003029,0.118003029,0.117790031,0.115530178,0.111107699,0.105098245,0.098148003,0.090829838,0.083572447,0.076653042,0.07022417,0.064349807,0.059037533,0.054262502,0.049983506,0.04615294,0.042722575,0.039646639,0.036883275,0.034395043,0.032148907,0.030115955,0.028271003,0.026592167,0.025060445,0.02365933,0.022374471,0.021193367,0.020105108,0.01910015,0.018170127,0.017307682,0.016506334,0.015760355,0.015064672,0.01441478,0.013806668,0.013236756,0.012701842,0.012199054,0.011725813,0.011279794,0.0108589,0.010461234,0.010085077,0.009728867,0.009391186,0.009070739,0.008766345,0.008476923,0.008201485,0.007939123,0.007689002,0.007450355,0.007222475,0.007004711,0.006796457,0.006597157,0.006406295,0.006223389,0.006047996,0.005879701,0.005718119,0.005562892,0.005413683,0.005270181,0.005132093,0.004999146,0.004871084,0.004747667,0.004628669,0.00451388,0.004403099,0.004296142,0.00419283,0.004093,0.003996494,0.003903166,0.003812875,0.00372549,0.003640888,0.00355895,0.003479565,0.003402627,0.003328037,0.003255699,0.003185523,0.003117425,0.003051322,0.002987137,0.002924796,0.002864231,0.002805374,0.002748161,0.002692532,0.00263843,0.002585799,0.002534587,0.002484743,0.002436219,0.00238897,0.002342952,0.002298123,0.002254442,0.002211871,0.002170374,0.002129914,0.002090458,0.002051974,0.00201443,0.001977796,0.001942045,0.001907147,0.001873077,0.001839809,0.001807319,0.001775583,0.001744578,0.001714283,0.001684676,0.001655738,0.001627449,0.00159979,0.001572743,0.00154629,0.001520415,0.001495102,0.001470335,0.001446098,0.001422378,0.001399159,0.001376429,0.001354174,0.001332382,0.00131104,0.001290137,0.00126966,0.001249599,0.001229943,0.001210682,0.001191805,0.001173303,0.001155167,0.001137386,0.001119953,0.001102858,0.001086094,0.001069652,0.001053524,0.001037703,0.001022182,0.001006953,0.000992009,0.000977344,0.000962951,0.000948823,0.000934955,0.000921341,0.000907975,0.00089485,0.000881962,0.000869305,0.000856875,0.000844665,0.000832671,0.000820889,0.000809313,0.00079794,0.000786764,0.000775781,0.000764988,0.00075438,0.000743954,0.000733704,0.000723629,0.000713723,0.000703984,0.000694408,0.000684992,0.000675732,0.000666625,0.000657667,0.000648857,0.000640191,0.000631666,0.000623279,0.000615028,0.00060691,0.000598921,0.00059106,0.000583325,0.000575712,0.000568219,0.000560844,0.000553585,0.000546439,0.000539405,0.000532479,0.000525661,0.000518948,0.000512338,0.000505829,0.000499419,0.000493107,0.000486891,0.000480768,0.000474737,0.000468797,0.000462946,0.000457182,0.000451504,0.00044591,0.000440398,0.000434967,0.000429616,0.000424344,0.000419148,0.000414028,0.000408982,0.000404009,0.000399107,0.000394276,0.000389514,0.00038482,0.000380193,0.000375631,0.000371134,0.000366701,0.00036233,0.00035802,0.000353771,0.000349581,0.000345449,0.000341375,0.000337356,0.000333394,0.000329486,0.000325631,0.00032183,0.00031808,0.000314381,0.000310733,0.000307134,0.000303584,0.000300081,0.000296626,0.000293217,0.000289853,0.000286535,0.00028326,0.000280029,0.000276841,0.000273695,0.00027059,0.000267527,0.000264503,0.000261519,0.000258574,0.000255667,0.000252798,0.000249967,0.000247172,0.000244413,0.000241689,0.000239,0.000236346,0.000233726,0.000231139,0.000228586,0.000226064,0.000223575,0.000221117,0.00021869,0.000216293,0.000213927,0.00021159,0.000209283,0.000207004,0.000204754,0.000202532,0.000200337,0.00019817,0.000196029,0.000193915,0.000191826,0.000189764,0.000187726,0.000185714,0.000183726,0.000181762,0.000179822,0.000177906,0.000176013,0.000174143,0.000172295,0.00017047,0.000168666,0.000166884,0.000165124,0.000163384,0.135043305,0.135043305,0.13497386,0.132949517,0.128401655,0.121933812,0.114265804,0.106061765,0.097835144,0.089928865,0.082539837,0.075758292,0.069604853,0.064059019,0.059078676,0.05461242,0.050606836,0.047010504,0.04377596,0.040860485,0.038226211,0.035839884,0.033672462,0.031698658,0.029896473,0.028246776,0.02673291,0.025340352,0.024056416,0.022869998,0.021771352,0.020751909,0.019804109,0.01892127,0.018097473,0.017327453,0.016606526,0.015930506,0.01529565,0.014698596,0.014136326,0.013606119,0.013105516,0.012632295,0.012184441,0.011760123,0.011357676,0.01097558,0.010612449,0.010267014,0.009938112,0.009624678,0.009325729,0.009040364,0.008767751,0.008507121,0.008257764,0.008019024,0.007790292,0.007571002,0.00736063,0.007158687,0.006964719,0.006778302,0.006599042,0.006426568,0.006260535,0.006100621,0.005946523,0.005797956,0.005654655,0.00551637,0.005382864,0.005253918,0.005129322,0.005008881,0.004892409,0.004779731,0.004670682,0.004565107,0.004462857,0.004363794,0.004267784,0.004174704,0.004084432,0.003996858,0.003911874,0.003829379,0.003749274,0.00367147,0.003595878,0.003522415,0.003451001,0.003381562,0.003314024,0.00324832,0.003184383,0.003122151,0.003061564,0.003002565,0.002945099,0.002889113,0.002834558,0.002781386,0.00272955,0.002679007,0.002629714,0.002581632,0.00253472,0.002488942,0.002444262,0.002400646,0.002358061,0.002316475,0.002275857,0.002236178,0.00219741,0.002159526,0.0021225,0.002086306,0.00205092,0.002016319,0.00198248,0.001949382,0.001917004,0.001885325,0.001854327,0.001823989,0.001794295,0.001765226,0.001736766,0.001708897,0.001681606,0.001654875,0.001628691,0.001603039,0.001577905,0.001553275,0.001529138,0.00150548,0.001482289,0.001459554,0.001437262,0.001415404,0.001393968,0.001372944,0.001352322,0.001332092,0.001312244,0.00129277,0.001273661,0.001254908,0.001236502,0.001218436,0.001200702,0.001183291,0.001166197,0.001149412,0.001132929,0.001116741,0.001100842,0.001085226,0.001069885,0.001054814,0.001040007,0.001025458,0.001011161,0.000997112,0.000983304,0.000969733,0.000956393,0.000943279,0.000930388,0.000917713,0.000905251,0.000892997,0.000880946,0.000869096,0.00085744,0.000845977,0.0008347,0.000823608,0.000812696,0.00080196,0.000791397,0.000781003,0.000770776,0.000760712,0.000750807,0.000741059,0.000731464,0.00072202,0.000712724,0.000703572,0.000694562,0.000685692,0.000676959,0.000668359,0.000659892,0.000651553,0.000643341,0.000635254,0.000627289,0.000619443,0.000611715,0.000604103,0.000596604,0.000589217,0.000581938,0.000574768,0.000567702,0.00056074,0.00055388,0.00054712,0.000540458,0.000533893,0.000527422,0.000521045,0.000514759,0.000508562,0.000502455,0.000496434,0.000490498,0.000484646,0.000478877,0.000473189,0.00046758,0.00046205,0.000456597,0.00045122,0.000445917,0.000440688,0.00043553,0.000430444,0.000425427,0.000420479,0.000415598,0.000410784,0.000406034,0.000401349,0.000396728,0.000392168,0.00038767,0.000383231,0.000378852,0.000374532,0.000370268,0.000366062,0.00036191,0.000357814,0.000353771,0.000349782,0.000345844,0.000341958,0.000338123,0.000334337,0.000330601,0.000326912,0.000323272,0.000319678,0.00031613,0.000312628,0.000309171,0.000305757,0.000302388,0.00029906,0.000295775,0.000292532,0.000289329,0.000286167,0.000283044,0.000279961,0.000276916,0.000273909,0.00027094,0.000268007,0.000265111,0.00026225,0.000259425,0.000256635,0.000253879,0.000251156,0.000248467,0.000245811,0.000243188,0.000240596,0.000238035,0.000235506,0.000233007,0.000230539,0.0002281,0.000225691,0.00022331,0.000220958,0.000218634,0.000216338,0.000214069,0.000211827,0.000209612,0.000207423,0.155489854,0.155489854,0.155489766,0.153870836,0.149298062,0.142390108,0.133944073,0.12473122,0.115370356,0.106289404,0.097744656,0.089862838,0.082683831,0.076194762,0.07035394,0.065106301,0.060392712,0.05615521,0.052339702,0.048897134,0.045783793,0.042961146,0.040395441,0.038057218,0.03592081,0.033963855,0.032166863,0.030512824,0.028986865,0.027575956,0.026268657,0.025054898,0.023925794,0.022873488,0.021891012,0.020972171,0.020111446,0.019303907,0.018545141,0.017831186,0.01715848,0.016523811,0.01592428,0.015357262,0.014820374,0.014311456,0.013828537,0.013369822,0.01293367,0.01251858,0.012123177,0.011746197,0.011386478,0.011042952,0.010714632,0.010400609,0.010100038,0.009812143,0.009536199,0.009271537,0.009017532,0.008773606,0.008539218,0.008313864,0.008097075,0.007888412,0.007687464,0.007493847,0.0073072,0.007127185,0.006953486,0.006785804,0.006623859,0.006467387,0.006316141,0.006169885,0.006028399,0.005891474,0.005758914,0.005630531,0.005506151,0.005385606,0.005268737,0.005155396,0.005045441,0.004938735,0.004835152,0.00473457,0.004636872,0.00454195,0.004449697,0.004360015,0.004272809,0.004187987,0.004105463,0.004025156,0.003946985,0.003870877,0.003796758,0.003724561,0.00365422,0.003585672,0.003518856,0.003453715,0.003390194,0.003328239,0.003267801,0.00320883,0.00315128,0.003095105,0.003040264,0.002986714,0.002934415,0.00288333,0.002833422,0.002784655,0.002736995,0.002690411,0.002644869,0.00260034,0.002556794,0.002514204,0.002472542,0.002431782,0.002391898,0.002352867,0.002314664,0.002277268,0.002240655,0.002204806,0.002169698,0.002135314,0.002101632,0.002068636,0.002036307,0.002004627,0.001973581,0.001943151,0.001913322,0.00188408,0.001855408,0.001827294,0.001799722,0.001772681,0.001746156,0.001720135,0.001694607,0.001669558,0.001644979,0.001620856,0.001597181,0.001573942,0.001551129,0.001528732,0.001506742,0.00148515,0.001463945,0.00144312,0.001422666,0.001402574,0.001382837,0.001363446,0.001344394,0.001325674,0.001307278,0.001289199,0.001271431,0.001253966,0.001236799,0.001219922,0.001203331,0.001187018,0.001170977,0.001155204,0.001139693,0.001124438,0.001109434,0.001094676,0.001080158,0.001065877,0.001051827,0.001038003,0.001024402,0.001011018,0.000997847,0.000984886,0.000972129,0.000959574,0.000947216,0.000935051,0.000923076,0.000911286,0.000899679,0.000888251,0.000876999,0.000865919,0.000855008,0.000844262,0.00083368,0.000823257,0.000812991,0.000802879,0.000792918,0.000783105,0.000773438,0.000763914,0.00075453,0.000745285,0.000736174,0.000727197,0.000718351,0.000709633,0.000701041,0.000692573,0.000684226,0.000676,0.00066789,0.000659897,0.000652016,0.000644248,0.000636589,0.000629038,0.000621593,0.000614252,0.000607013,0.000599876,0.000592837,0.000585896,0.00057905,0.000572298,0.00056564,0.000559072,0.000552594,0.000546204,0.0005399,0.000533683,0.000527548,0.000521497,0.000515527,0.000509636,0.000503825,0.000498091,0.000492432,0.000486849,0.00048134,0.000475904,0.000470538,0.000465244,0.000460018,0.000454861,0.000449771,0.000444747,0.000439788,0.000434893,0.000430062,0.000425292,0.000420584,0.000415936,0.000411348,0.000406818,0.000402345,0.00039793,0.00039357,0.000389265,0.000385015,0.000380818,0.000376673,0.000372581,0.000368539,0.000364548,0.000360607,0.000356714,0.00035287,0.000349073,0.000345323,0.00034162,0.000337961,0.000334348,0.000330779,0.000327253,0.00032377,0.000320329,0.000316931,0.000313573,0.000310256,0.000306979,0.000303741,0.000300542,0.000297382,0.000294259,0.000291174,0.000288125,0.000285113,0.000282136,0.000279195,0.000276288,0.000273416,0.000270577,0.000267772,0.000265,0.180127551,0.180127551,0.180127551,0.179054776,0.174619167,0.167333292,0.158069651,0.147722607,0.137041127,0.126563223,0.11662506,0.10740439,0.098969523,0.091320328,0.084417899,0.078204127,0.072613758,0.067581348,0.063044974,0.058947977,0.055239556,0.051874726,0.048813952,0.046022642,0.043470594,0.041131456,0.03898223,0.037002824,0.035175652,0.033485298,0.031918218,0.030462482,0.029107559,0.027844132,0.026663933,0.025559611,0.024524614,0.023553085,0.02263978,0.021779991,0.020969483,0.020204437,0.019481402,0.018797254,0.018149159,0.017534542,0.016951057,0.016396564,0.015869109,0.015366902,0.014888301,0.014431801,0.013996015,0.013579667,0.013181581,0.012800667,0.012435922,0.012086413,0.011751277,0.011429712,0.011120973,0.010824365,0.010539244,0.010265006,0.010001089,0.009746967,0.009502148,0.009266171,0.009038605,0.008819045,0.00860711,0.008402442,0.008204706,0.008013585,0.007828781,0.007650012,0.007477014,0.007309535,0.007147339,0.006990203,0.006837913,0.006690271,0.006547084,0.006408175,0.00627337,0.006142508,0.006015435,0.005892004,0.005772076,0.005655518,0.005542204,0.005432014,0.005324832,0.00522055,0.005119064,0.005020273,0.004924083,0.004830403,0.004739146,0.004650229,0.004563573,0.004479102,0.004396743,0.004316426,0.004238084,0.004161654,0.004087074,0.004014284,0.00394323,0.003873855,0.003806109,0.003739941,0.003675302,0.003612146,0.00355043,0.00349011,0.003431144,0.003373493,0.003317119,0.003261985,0.003208056,0.003155297,0.003103674,0.003053157,0.003003715,0.002955318,0.002907937,0.002861545,0.002816114,0.00277162,0.002728037,0.002685342,0.00264351,0.00260252,0.002562349,0.002522977,0.002484383,0.002446547,0.002409451,0.002373075,0.002337402,0.002302415,0.002268096,0.002234429,0.002201399,0.002168989,0.002137186,0.002105975,0.002075341,0.002045271,0.002015752,0.001986772,0.001958317,0.001930375,0.001902935,0.001875986,0.001849516,0.001823514,0.001797971,0.001772875,0.001748217,0.001723988,0.001700178,0.001676777,0.001653778,0.00163117,0.001608947,0.0015871,0.00156562,0.0015445,0.001523733,0.001503311,0.001483227,0.001463474,0.001444045,0.001424934,0.001406134,0.001387639,0.001369442,0.001351538,0.00133392,0.001316584,0.001299523,0.001282733,0.001266207,0.001249941,0.001233929,0.001218168,0.001202651,0.001187374,0.001172333,0.001157523,0.001142939,0.001128578,0.001114436,0.001100507,0.001086789,0.001073277,0.001059968,0.001046858,0.001033943,0.001021219,0.001008684,0.000996333,0.000984164,0.000972172,0.000960356,0.000948712,0.000937237,0.000925927,0.000914781,0.000903794,0.000892965,0.00088229,0.000871768,0.000861394,0.000851168,0.000841085,0.000831144,0.000821343,0.000811678,0.000802148,0.000792751,0.000783484,0.000774344,0.000765331,0.000756441,0.000747674,0.000739026,0.000730495,0.000722081,0.00071378,0.000705592,0.000697514,0.000689544,0.000681681,0.000673924,0.000666269,0.000658717,0.000651264,0.00064391,0.000636653,0.000629492,0.000622424,0.000615449,0.000608565,0.000601771,0.000595065,0.000588446,0.000581912,0.000575463,0.000569097,0.000562812,0.000556608,0.000550483,0.000544436,0.000538466,0.000532572,0.000526752,0.000521006,0.000515332,0.00050973,0.000504197,0.000498734,0.000493339,0.000488011,0.00048275,0.000477554,0.000472422,0.000467353,0.000462347,0.000457402,0.000452518,0.000447694,0.000442928,0.000438221,0.000433571,0.000428978,0.00042444,0.000419957,0.000415528,0.000411152,0.000406829,0.000402558,0.000398337,0.000394168,0.000390048,0.000385977,0.000381954,0.000377979,0.000374051,0.000370169,0.000366333,0.000362542,0.000358796,0.000355094,0.000351435,0.000347818,0.000344244,0.000340711,0.132336739,0.132336739,0.132336739,0.132186583,0.131007593,0.128728945,0.125491314,0.121477163,0.116886014,0.111912577,0.106731128,0.101486941,0.096293733,0.091235277,0.086369336,0.081732484,0.077344879,0.073214505,0.069340679,0.065716812,0.062332508,0.059175106,0.056230781,0.053485314,0.05092461,0.048535035,0.046303621,0.044218182,0.042267363,0.040440652,0.038728362,0.037121592,0.035612184,0.034192671,0.032856228,0.031596616,0.030408133,0.02928557,0.028224162,0.027219553,0.026267753,0.025365107,0.024508265,0.02369415,0.022919938,0.02218303,0.021481033,0.020811743,0.020173125,0.019563301,0.018980535,0.018423218,0.017889861,0.017379082,0.0168896,0.01642022,0.015969836,0.015537412,0.015121987,0.014722662,0.014338599,0.013969011,0.013613167,0.013270377,0.012939999,0.012621427,0.012314094,0.012017468,0.011731046,0.011454357,0.011186957,0.010928426,0.01067837,0.010436415,0.010202209,0.00997542,0.009755733,0.009542849,0.009336486,0.009136377,0.008942268,0.008753918,0.008571099,0.008393594,0.008221197,0.008053711,0.007890949,0.007732735,0.007578898,0.007429278,0.00728372,0.007142079,0.007004213,0.00686999,0.006739281,0.006611964,0.006487923,0.006367046,0.006249227,0.006134362,0.006022354,0.00591311,0.005806538,0.005702554,0.005601073,0.005502017,0.00540531,0.005310878,0.005218651,0.00512856,0.005040543,0.004954535,0.004870476,0.00478831,0.004707979,0.004629431,0.004552614,0.004477478,0.004403974,0.004332058,0.004261684,0.004192809,0.004125392,0.004059392,0.003994771,0.003931492,0.003869518,0.003808814,0.003749348,0.003691086,0.003633996,0.003578049,0.003523215,0.003469465,0.003416772,0.003365109,0.003314449,0.003264769,0.003216044,0.00316825,0.003121364,0.003075364,0.003030229,0.002985939,0.002942472,0.00289981,0.002857932,0.002816822,0.002776461,0.002736832,0.002697917,0.002659701,0.002622167,0.002585301,0.002549086,0.002513509,0.002478555,0.00244421,0.002410462,0.002377296,0.002344701,0.002312663,0.002281172,0.002250214,0.00221978,0.002189857,0.002160435,0.002131503,0.002103051,0.002075069,0.002047548,0.002020478,0.001993849,0.001967653,0.001941882,0.001916525,0.001891575,0.001867024,0.001842865,0.001819088,0.001795687,0.001772654,0.001749983,0.001727665,0.001705695,0.001684065,0.00166277,0.001641801,0.001621155,0.001600823,0.001580801,0.001561083,0.001541662,0.001522534,0.001503693,0.001485134,0.001466851,0.001448839,0.001431094,0.001413611,0.001396384,0.00137941,0.001362684,0.001346201,0.001329957,0.001313948,0.001298169,0.001282618,0.001267289,0.001252178,0.001237283,0.001222599,0.001208123,0.00119385,0.001179779,0.001165904,0.001152223,0.001138733,0.00112543,0.001112311,0.001099374,0.001086614,0.00107403,0.001061618,0.001049375,0.001037299,0.001025386,0.001013635,0.001002042,0.000990606,0.000979323,0.000968191,0.000957207,0.00094637,0.000935677,0.000925125,0.000914713,0.000904437,0.000894297,0.00088429,0.000874413,0.000864665,0.000855044,0.000845548,0.000836175,0.000826922,0.000817789,0.000808773,0.000799872,0.000791086,0.000782411,0.000773847,0.000765391,0.000757043,0.000748799,0.00074066,0.000732623,0.000724687,0.00071685,0.000709111,0.000701468,0.000693921,0.000686467,0.000679105,0.000671834,0.000664653,0.000657559,0.000650553,0.000643633,0.000636797,0.000630045,0.000623374,0.000616785,0.000610275,0.000603844,0.00059749,0.000591213,0.000585012,0.000578884,0.00057283,0.000566848,0.000560938,0.000555098,0.000549327,0.000543624,0.000537989,0.00053242,0.000526917,0.000521478,0.000516103,0.000510791,0.000505542,0.000500353,0.000495225,0.000490156,0.000485146,0.000480194,0.0004753,0.000470461,0.000465679,0.156791401,0.156791401,0.156791401,0.156762345,0.155795417,0.153518249,0.150073034,0.145658289,0.140500748,0.134828771,0.128852033,0.122749254,0.116663306,0.110701774,0.104940791,0.099430344,0.094199822,0.089263089,0.08462277,0.08027369,0.07620551,0.072404694,0.068855937,0.065543163,0.062450217,0.05956132,0.056861354,0.054336037,0.051972004,0.049756837,0.047679061,0.045728107,0.043894269,0.042168652,0.040543108,0.039010181,0.037563053,0.036195484,0.034901765,0.033676669,0.032515408,0.031413594,0.030367198,0.029372522,0.028426166,0.027525003,0.026666152,0.025846956,0.025064963,0.024317909,0.023603699,0.022920391,0.022266189,0.021639423,0.021038545,0.020462114,0.019908788,0.01937732,0.018866544,0.018375373,0.017902792,0.017447851,0.017009661,0.01658739,0.016180257,0.01578753,0.01540852,0.015042582,0.014689106,0.014347521,0.014017286,0.013697895,0.013388866,0.013089747,0.012800109,0.012519549,0.012247684,0.01198415,0.011728605,0.011480724,0.011240197,0.011006731,0.010780049,0.010559887,0.010345992,0.010138127,0.009936062,0.009739583,0.009548482,0.009362563,0.009181638,0.009005528,0.008834062,0.008667078,0.008504418,0.008345934,0.008191484,0.008040931,0.007894144,0.007750999,0.007611375,0.007475157,0.007342237,0.007212508,0.007085868,0.006962221,0.006841474,0.006723536,0.006608321,0.006495747,0.006385734,0.006278205,0.006173087,0.006070308,0.005969801,0.005871499,0.00577534,0.005681261,0.005589205,0.005499113,0.005410933,0.00532461,0.005240094,0.005157335,0.005076286,0.004996901,0.004919136,0.004842947,0.004768293,0.004695135,0.004623432,0.004553149,0.004484248,0.004416694,0.004350454,0.004285494,0.004221783,0.004159289,0.004097983,0.004037836,0.003978819,0.003920905,0.003864068,0.003808282,0.003753523,0.003699765,0.003646987,0.003595164,0.003544275,0.003494298,0.003445213,0.003396999,0.003349637,0.003303107,0.003257391,0.00321247,0.003168328,0.003124948,0.003082311,0.003040403,0.002999208,0.00295871,0.002918895,0.002879747,0.002841254,0.0028034,0.002766173,0.00272956,0.002693548,0.002658124,0.002623277,0.002588994,0.002555265,0.002522078,0.002489422,0.002457287,0.002425662,0.002394537,0.002363902,0.002333748,0.002304065,0.002274845,0.002246077,0.002217754,0.002189867,0.002162408,0.002135368,0.002108739,0.002082515,0.002056686,0.002031247,0.002006189,0.001981505,0.001957189,0.001933234,0.001909634,0.001886381,0.00186347,0.001840894,0.001818648,0.001796725,0.00177512,0.001753827,0.00173284,0.001712155,0.001691766,0.001671667,0.001651854,0.001632322,0.001613065,0.00159408,0.001575361,0.001556904,0.001538704,0.001520758,0.00150306,0.001485608,0.001468395,0.001451419,0.001434676,0.001418162,0.001401872,0.001385804,0.001369954,0.001354317,0.001338891,0.001323673,0.001308658,0.001293844,0.001279227,0.001264804,0.001250572,0.001236528,0.00122267,0.001208993,0.001195496,0.001182175,0.001169028,0.001156052,0.001143244,0.001130602,0.001118123,0.001105805,0.001093645,0.001081641,0.00106979,0.00105809,0.001046539,0.001035134,0.001023874,0.001012756,0.001001778,0.000990938,0.000980234,0.000969663,0.000959225,0.000948916,0.000938736,0.000928681,0.000918751,0.000908943,0.000899256,0.000889688,0.000880238,0.000870902,0.000861681,0.000852572,0.000843573,0.000834684,0.000825902,0.000817226,0.000808655,0.000800186,0.000791819,0.000783553,0.000775385,0.000767314,0.000759339,0.000751459,0.000743673,0.000735978,0.000728374,0.00072086,0.000713434,0.000706095,0.000698842,0.000691674,0.000684589,0.000677587,0.000670666,0.000663826,0.000657064,0.000650381,0.000643775,0.000637244,0.000630789,0.000624408,0.0006181,0.000611864,0.000605699,0.186901654,0.186901654,0.186901654,0.186901654,0.186293764,0.184136089,0.180551145,0.17575011,0.169988063,0.163532003,0.156634576,0.149516699,0.142359149,0.135301261,0.12844424,0.121856836,0.115581712,0.109641531,0.104044222,0.098787288,0.093861164,0.08925176,0.084942314,0.080914725,0.07715048,0.073631276,0.070339422,0.067258096,0.064371471,0.061664789,0.059124362,0.056737552,0.054492728,0.052379206,0.050387189,0.048507698,0.046732511,0.045054096,0.043465558,0.041960576,0.040533356,0.039178585,0.037891383,0.036667267,0.035502113,0.034392127,0.033333811,0.032323939,0.031359532,0.030437838,0.029556309,0.028712585,0.02790448,0.027129962,0.026387145,0.025674275,0.024989718,0.024331953,0.023699561,0.023091215,0.022505677,0.02194179,0.021398468,0.020874695,0.020369518,0.019882044,0.019411431,0.018956889,0.018517677,0.018093092,0.017682477,0.01728521,0.016900703,0.016528402,0.016167784,0.015818352,0.01547964,0.015151202,0.014832618,0.014523489,0.014223438,0.013932104,0.013649148,0.013374244,0.013107085,0.012847377,0.012594841,0.012349211,0.012110235,0.011877669,0.011651284,0.01143086,0.011216186,0.011007063,0.010803298,0.010604708,0.010411118,0.01022236,0.010038272,0.009858702,0.009683502,0.00951253,0.009345651,0.009182735,0.009023656,0.008868296,0.008716539,0.008568274,0.008423395,0.008281801,0.008143392,0.008008074,0.007875756,0.007746351,0.007619775,0.007495945,0.007374784,0.007256215,0.007140168,0.00702657,0.006915355,0.006806456,0.006699812,0.006595361,0.006493043,0.006392803,0.006294586,0.006198337,0.006104006,0.006011544,0.005920902,0.005832033,0.005744893,0.005659438,0.005575625,0.005493415,0.005412768,0.005333644,0.005256008,0.005179823,0.005105053,0.005031666,0.004959628,0.004888908,0.004819474,0.004751297,0.004684347,0.004618597,0.004554017,0.004490583,0.004428268,0.004367047,0.004306895,0.004247789,0.004189705,0.004132621,0.004076515,0.004021366,0.003967153,0.003913856,0.003861455,0.003809931,0.003759267,0.003709443,0.003660441,0.003612246,0.00356484,0.003518206,0.00347233,0.003427195,0.003382787,0.003339091,0.003296092,0.003253777,0.003212131,0.003171142,0.003130797,0.003091083,0.003051988,0.0030135,0.002975606,0.002938296,0.002901559,0.002865383,0.002829757,0.002794672,0.002760117,0.002726083,0.002692559,0.002659536,0.002627005,0.002594956,0.002563382,0.002532273,0.00250162,0.002471416,0.002441653,0.002412322,0.002383416,0.002354927,0.002326848,0.002299171,0.00227189,0.002244998,0.002218488,0.002192353,0.002166586,0.002141182,0.002116134,0.002091436,0.002067082,0.002043066,0.002019383,0.001996027,0.001972992,0.001950273,0.001927865,0.001905763,0.001883961,0.001862455,0.001841239,0.00182031,0.001799662,0.001779291,0.001759192,0.001739361,0.001719793,0.001700485,0.001681432,0.001662631,0.001644076,0.001625765,0.001607693,0.001589857,0.001572254,0.001554878,0.001537727,0.001520798,0.001504086,0.001487589,0.001471304,0.001455226,0.001439354,0.001423683,0.001408211,0.001392934,0.001377851,0.001362957,0.00134825,0.001333728,0.001319386,0.001305224,0.001291238,0.001277426,0.001263784,0.001250311,0.001237004,0.001223861,0.001210879,0.001198056,0.001185389,0.001172877,0.001160517,0.001148307,0.001136244,0.001124328,0.001112555,0.001100923,0.001089432,0.001078077,0.001066859,0.001055774,0.001044821,0.001033999,0.001023304,0.001012736,0.001002293,0.000991973,0.000981774,0.000971695,0.000961734,0.000951889,0.000942159,0.000932542,0.000923037,0.000913643,0.000904356,0.000895178,0.000886105,0.000877136,0.000868271,0.000859507,0.000850843,0.000842278,0.000833811,0.000825441,0.000817165,0.000808983,0.000800894,0.000792896,0.190033992,0.190033992,0.190033992,0.190033992,0.189837474,0.18826431,0.185211088,0.18086143,0.175454431,0.169252682,0.162513775,0.155469732,0.148315456,0.141204985,0.134253221,0.127540772,0.121120052,0.115021424,0.109258707,0.10383378,0.098740247,0.093966239,0.089496502,0.085313911,0.08140053,0.077738353,0.074309786,0.071097958,0.068086906,0.065261666,0.06260831,0.060113936,0.057766643,0.055555472,0.053470357,0.051502061,0.049642112,0.047882743,0.046216832,0.04463785,0.043139806,0.041717199,0.040364977,0.039078497,0.037853484,0.036686002,0.035572423,0.034509399,0.033493837,0.032522878,0.031593875,0.030704376,0.029852106,0.029034954,0.028250957,0.027498291,0.026775256,0.026080266,0.025411844,0.02476861,0.024149272,0.023552625,0.022977537,0.022422949,0.021887867,0.021371358,0.020872547,0.020390607,0.019924764,0.019474287,0.019038488,0.018616716,0.018208359,0.017812838,0.017429605,0.017058142,0.01669796,0.016348594,0.016009604,0.015680573,0.015361106,0.015050826,0.014749376,0.014456417,0.014171625,0.013894695,0.013625333,0.01336326,0.013108211,0.012859933,0.012618183,0.012382732,0.012153358,0.011929852,0.011712012,0.011499645,0.011292567,0.011090603,0.010893583,0.010701345,0.010513735,0.010330604,0.010151809,0.009977215,0.009806688,0.009640104,0.009477341,0.009318283,0.009162818,0.009010838,0.00886224,0.008716925,0.008574796,0.008435761,0.008299731,0.008166621,0.008036348,0.007908833,0.007783997,0.007661769,0.007542075,0.007424848,0.00731002,0.007197527,0.007087306,0.006979299,0.006873447,0.006769693,0.006667984,0.006568266,0.00647049,0.006374606,0.006280566,0.006188324,0.006097836,0.006009058,0.005921949,0.005836468,0.005752575,0.005670233,0.005589405,0.005510054,0.005432145,0.005355646,0.005280523,0.005206744,0.005134279,0.005063097,0.004993169,0.004924468,0.004856965,0.004790634,0.004725448,0.004661383,0.004598414,0.004536517,0.004475668,0.004415846,0.004357028,0.004299193,0.004242319,0.004186387,0.004131377,0.00407727,0.004024046,0.003971689,0.003920179,0.003869499,0.003819633,0.003770565,0.003722277,0.003674755,0.003627983,0.003581947,0.003536631,0.003492022,0.003448106,0.00340487,0.003362299,0.003320383,0.003279107,0.00323846,0.003198429,0.003159004,0.003120172,0.003081923,0.003044246,0.003007129,0.002970564,0.002934539,0.002899045,0.002864072,0.00282961,0.002795651,0.002762185,0.002729203,0.002696697,0.002664659,0.002633079,0.002601951,0.002571265,0.002541015,0.002511193,0.002481791,0.002452801,0.002424218,0.002396034,0.002368242,0.002340835,0.002313807,0.002287152,0.002260863,0.002234934,0.002209359,0.002184133,0.002159249,0.002134702,0.002110486,0.002086596,0.002063027,0.002039773,0.002016829,0.00199419,0.001971852,0.001949809,0.001928057,0.001906591,0.001885406,0.001864499,0.001843865,0.001823499,0.001803397,0.001783555,0.00176397,0.001744637,0.001725552,0.001706711,0.001688111,0.001669748,0.001651619,0.001633719,0.001616046,0.001598595,0.001581364,0.00156435,0.001547548,0.001530956,0.001514572,0.00149839,0.00148241,0.001466627,0.001451039,0.001435643,0.001420436,0.001405415,0.001390578,0.001375922,0.001361445,0.001347143,0.001333015,0.001319057,0.001305268,0.001291645,0.001278185,0.001264887,0.001251748,0.001238766,0.001225938,0.001213263,0.001200738,0.001188361,0.001176131,0.001164044,0.0011521,0.001140296,0.00112863,0.001117101,0.001105706,0.001094443,0.001083312,0.001072309,0.001061434,0.001050685,0.001040059,0.001029556,0.001019173,0.00100891,0.000998763,0.000988733,0.000978817,0.000969014,0.000959322,0.00094974,0.000940266,0.000930899,0.000921638,0.000912481,0.000903427,0.000894474,0.000885622,0.193218826,0.193218826,0.193218826,0.193218826,0.193214134,0.19230259,0.189867695,0.186058552,0.181091562,0.175219667,0.16870223,0.161781214,0.154666068,0.147526959,0.140494391,0.133662835,0.127096321,0.120834523,0.114898469,0.10929546,0.104023062,0.099072225,0.094429637,0.090079454,0.086004534,0.082187313,0.078610381,0.075256877,0.072110725,0.069156765,0.066380824,0.063769725,0.061311274,0.058994218,0.0568082,0.054743697,0.052791964,0.050944973,0.049195357,0.047536354,0.045961754,0.044465853,0.043043408,0.041689598,0.040399981,0.039170467,0.037997283,0.036876947,0.035806241,0.034782188,0.033802032,0.03286322,0.031963383,0.031100319,0.030271984,0.029476474,0.028712017,0.027976961,0.027269762,0.026588981,0.025933271,0.025301371,0.024692101,0.024104356,0.023537095,0.022989346,0.022460192,0.021948771,0.021454272,0.020975932,0.02051303,0.020064886,0.01963086,0.019210345,0.018802769,0.018407589,0.018024292,0.017652393,0.01729143,0.016940966,0.016600587,0.016269898,0.015948526,0.015636114,0.015332323,0.015036833,0.014749335,0.014469538,0.014197162,0.013931941,0.013673623,0.013421964,0.013176733,0.01293771,0.012704682,0.012477447,0.012255812,0.012039592,0.011828609,0.011622692,0.011421679,0.011225414,0.011033747,0.010846533,0.010663634,0.010484918,0.010310257,0.010139529,0.009972616,0.009809403,0.009649784,0.009493651,0.009340905,0.009191447,0.009045185,0.008902027,0.008761887,0.008624681,0.008490327,0.008358747,0.008229866,0.008103612,0.007979912,0.007858701,0.007739911,0.00762348,0.007509346,0.00739745,0.007287734,0.007180143,0.007074623,0.006971123,0.006869591,0.006769978,0.006672239,0.006576326,0.006482196,0.006389806,0.006299113,0.006210078,0.006122661,0.006036825,0.005952531,0.005869745,0.005788432,0.005708558,0.005630089,0.005552995,0.005477245,0.005402808,0.005329654,0.005257757,0.005187087,0.005117619,0.005049326,0.004982182,0.004916164,0.004851246,0.004787406,0.004724621,0.004662868,0.004602127,0.004542375,0.004483593,0.004425761,0.004368859,0.004312868,0.00425777,0.004203546,0.00415018,0.004097654,0.004045952,0.003995056,0.003944952,0.003895624,0.003847057,0.003799236,0.003752147,0.003705775,0.003660107,0.00361513,0.00357083,0.003527195,0.003484213,0.003441871,0.003400157,0.00335906,0.003318568,0.00327867,0.003239356,0.003200615,0.003162436,0.00312481,0.003087726,0.003051175,0.003015147,0.002979633,0.002944625,0.002910112,0.002876087,0.002842541,0.002809466,0.002776854,0.002744696,0.002712985,0.002681713,0.002650873,0.002620458,0.00259046,0.002560872,0.002531688,0.0025029,0.002474503,0.00244649,0.002418853,0.002391588,0.002364689,0.002338148,0.002311961,0.002286121,0.002260624,0.002235463,0.002210633,0.002186129,0.002161946,0.002138079,0.002114522,0.002091271,0.002068321,0.002045667,0.002023305,0.00200123,0.001979438,0.001957924,0.001936685,0.001915715,0.001895011,0.001874569,0.001854384,0.001834454,0.001814773,0.001795339,0.001776148,0.001757195,0.001738478,0.001719993,0.001701737,0.001683705,0.001665896,0.001648305,0.001630929,0.001613766,0.001596812,0.001580064,0.00156352,0.001547175,0.001531028,0.001515076,0.001499316,0.001483744,0.001468359,0.001453158,0.001438138,0.001423296,0.001408631,0.001394139,0.001379818,0.001365667,0.001351682,0.001337861,0.001324202,0.001310702,0.001297361,0.001284174,0.001271141,0.001258259,0.001245526,0.00123294,0.0012205,0.001208202,0.001196046,0.001184028,0.001172149,0.001160405,0.001148795,0.001137317,0.001125969,0.001114749,0.001103657,0.00109269,0.001081846,0.001071124,0.001060523,0.001050041,0.001039675,0.001029426,0.00101929,0.001009268,0.000999356,0.000989555,0.196457036,0.196457036,0.196457036,0.196457036,0.196457036,0.196164796,0.194441712,0.191274267,0.186847939,0.18139887,0.175183207,0.16845032,0.161423794,0.154291017,0.147200033,0.140261438,0.133553102,0.127125999,0.121010043,0.115219298,0.109756342,0.104615737,0.099786699,0.095255087,0.091004856,0.087019082,0.083280682,0.079772887,0.076479554,0.073385352,0.070475864,0.067737631,0.06515815,0.062725851,0.06043006,0.058260943,0.056209454,0.05426728,0.052426781,0.050680936,0.049023297,0.047447931,0.045949386,0.044522641,0.043163071,0.041866415,0.040628741,0.039446416,0.038316085,0.037234641,0.036199209,0.035207123,0.034255908,0.033343267,0.032467062,0.031625306,0.030816145,0.030037852,0.029288815,0.028567528,0.027872581,0.027202658,0.026556522,0.025933017,0.025331055,0.024749617,0.024187742,0.023644531,0.023119132,0.022610745,0.022118617,0.021642036,0.021180328,0.02073286,0.02029903,0.01987827,0.019470043,0.019073837,0.018689171,0.018315585,0.017952644,0.017599935,0.017257064,0.016923659,0.016599363,0.016283838,0.015976762,0.015677828,0.015386743,0.015103227,0.014827014,0.014557848,0.014295488,0.014039699,0.013790259,0.013546957,0.013309587,0.013077956,0.012851876,0.012631168,0.012415661,0.012205189,0.011999596,0.011798728,0.011602442,0.011410596,0.011223056,0.011039694,0.010860385,0.010685008,0.01051345,0.0103456,0.01018135,0.010020598,0.009863246,0.009709197,0.00955836,0.009410645,0.009265968,0.009124246,0.008985399,0.008849349,0.008716023,0.008585349,0.008457257,0.00833168,0.008208553,0.008087814,0.007969401,0.007853256,0.007739322,0.007627544,0.007517868,0.007410243,0.00730462,0.007200948,0.007099182,0.006999275,0.006901184,0.006804865,0.006710278,0.006617381,0.006526136,0.006436505,0.00634845,0.006261936,0.006176928,0.006093392,0.006011296,0.005930607,0.005851294,0.005773328,0.005696678,0.005621317,0.005547216,0.005474349,0.005402689,0.005332211,0.00526289,0.005194701,0.005127621,0.005061628,0.004996698,0.004932809,0.004869942,0.004808074,0.004747186,0.004687258,0.004628271,0.004570206,0.004513045,0.004456771,0.004401365,0.004346811,0.004293093,0.004240194,0.004188099,0.004136791,0.004086258,0.004036483,0.003987452,0.003939152,0.003891569,0.003844689,0.0037985,0.003752989,0.003708143,0.003663951,0.0036204,0.003577479,0.003535176,0.003493481,0.003452383,0.003411871,0.003371934,0.003332563,0.003293748,0.003255479,0.003217746,0.00318054,0.003143853,0.003107675,0.003071997,0.003036812,0.00300211,0.002967884,0.002934125,0.002900825,0.002867978,0.002835576,0.00280361,0.002772074,0.002740962,0.002710265,0.002679977,0.002650092,0.002620602,0.002591503,0.002562786,0.002534447,0.002506479,0.002478876,0.002451633,0.002424744,0.002398202,0.002372004,0.002346143,0.002320614,0.002295412,0.002270532,0.00224597,0.002221719,0.002197775,0.002174135,0.002150792,0.002127743,0.002104983,0.002082508,0.002060313,0.002038394,0.002016748,0.00199537,0.001974256,0.001953402,0.001932804,0.001912459,0.001892364,0.001872513,0.001852904,0.001833534,0.001814398,0.001795493,0.001776817,0.001758366,0.001740136,0.001722124,0.001704328,0.001686744,0.00166937,0.001652202,0.001635237,0.001618473,0.001601906,0.001585535,0.001569356,0.001553367,0.001537564,0.001521946,0.00150651,0.001491254,0.001476174,0.001461269,0.001446537,0.001431974,0.001417578,0.001403348,0.001389281,0.001375375,0.001361628,0.001348037,0.001334601,0.001321317,0.001308184,0.001295199,0.001282361,0.001269667,0.001257116,0.001244706,0.001232435,0.001220301,0.001208302,0.001196437,0.001184704,0.001173101,0.001161627,0.001150279,0.001139057,0.001127958,0.001116982,0.001106126,0.199749516,0.199749516,0.199749516,0.199749516,0.199749516,0.19974372,0.198832022,0.196420445,0.192653846,0.187742178,0.18193099,0.175472507,0.168602686,0.161526547,0.154411486,0.147386714,0.140546588,0.133955866,0.127655497,0.12166808,0.116002608,0.110658331,0.105627801,0.100899173,0.096457919,0.092288058,0.088373027,0.084696281,0.081241691,0.077993796,0.074937954,0.072060417,0.069348361,0.066789879,0.064373951,0.062090404,0.059929861,0.057883691,0.055943951,0.054103336,0.052355126,0.050693139,0.049111683,0.047605519,0.046169817,0.044800123,0.043492327,0.042242631,0.041047525,0.039903758,0.038808321,0.037758424,0.036751474,0.035785067,0.034856964,0.033965081,0.033107478,0.032282344,0.03148799,0.030722837,0.029985408,0.02927432,0.02858828,0.027926072,0.027286557,0.026668665,0.026071389,0.025493783,0.024934955,0.024394066,0.023870324,0.023362981,0.022871332,0.022394709,0.021932482,0.021484054,0.02104886,0.020626363,0.020216056,0.019817457,0.019430109,0.019053577,0.018687447,0.018331327,0.017984844,0.01764764,0.017319377,0.016999732,0.016688397,0.016385076,0.016089491,0.015801371,0.015520462,0.015246519,0.014979306,0.0147186,0.014464186,0.01421586,0.013973423,0.013736687,0.013505471,0.013279602,0.013058913,0.012843243,0.01263244,0.012426356,0.012224849,0.012027782,0.011835025,0.011646451,0.011461938,0.01128137,0.011104634,0.010931621,0.010762227,0.010596351,0.010433896,0.010274768,0.010118876,0.009966134,0.009816455,0.009669761,0.00952597,0.009385008,0.009246801,0.009111278,0.00897837,0.00884801,0.008720135,0.008594682,0.008471591,0.008350803,0.008232261,0.008115912,0.008001702,0.00788958,0.007779495,0.007671399,0.007565246,0.007460991,0.007358588,0.007257995,0.00715917,0.007062074,0.006966666,0.00687291,0.006780767,0.006690202,0.006601181,0.006513668,0.006427632,0.006343039,0.006259859,0.006178062,0.006097618,0.006018498,0.005940674,0.00586412,0.005788807,0.005714712,0.005641808,0.005570071,0.005499478,0.005430005,0.005361629,0.005294328,0.005228082,0.005162868,0.005098667,0.005035458,0.004973223,0.004911942,0.004851596,0.004792168,0.00473364,0.004675995,0.004619215,0.004563286,0.00450819,0.004453912,0.004400437,0.00434775,0.004295836,0.004244682,0.004194272,0.004144594,0.004095635,0.004047381,0.003999819,0.003952939,0.003906726,0.003861169,0.003816258,0.00377198,0.003728324,0.00368528,0.003642836,0.003600983,0.003559711,0.003519009,0.003478867,0.003439277,0.003400228,0.003361713,0.00332372,0.003286243,0.003249272,0.003212799,0.003176816,0.003141315,0.003106287,0.003071725,0.003037622,0.00300397,0.002970761,0.002937989,0.002905647,0.002873727,0.002842223,0.002811129,0.002780438,0.002750143,0.002720238,0.002690718,0.002661576,0.002632806,0.002604403,0.002576361,0.002548674,0.002521338,0.002494346,0.002467693,0.002441374,0.002415385,0.00238972,0.002364374,0.002339343,0.002314622,0.002290206,0.002266091,0.002242272,0.002218745,0.002195506,0.00217255,0.002149874,0.002127473,0.002105343,0.00208348,0.002061881,0.002040542,0.002019458,0.001998627,0.001978045,0.001957708,0.001937613,0.001917756,0.001898134,0.001878743,0.001859582,0.001840645,0.00182193,0.001803435,0.001785155,0.001767089,0.001749233,0.001731583,0.001714139,0.001696896,0.001679851,0.001663003,0.001646348,0.001629884,0.001613609,0.001597519,0.001581613,0.001565887,0.00155034,0.001534969,0.001519771,0.001504745,0.001489888,0.001475198,0.001460673,0.001446311,0.001432109,0.001418065,0.001404177,0.001390444,0.001376864,0.001363433,0.001350151,0.001337015,0.001324024,0.001311176,0.001298469,0.001285901,0.00127347,0.001261175,0.001249013,0.001236984,0.203097175,0.203097175,0.203097175,0.203097175,0.203097175,0.203097175,0.202904471,0.201374873,0.198407168,0.194173305,0.188897779,0.182828207,0.176208922,0.169261659,0.162174452,0.155097692,0.148145307,0.141398923,0.134913308,0.128721961,0.122842195,0.117279443,0.112030726,0.107087341,0.102436889,0.098064764,0.093955229,0.090092162,0.086459576,0.083041953,0.079824462,0.076793079,0.073934652,0.071236912,0.068688468,0.066278774,0.063998088,0.061837424,0.059788502,0.057843694,0.055995978,0.054238888,0.052566467,0.050973225,0.0494541,0.048004425,0.046619885,0.045296498,0.044030578,0.042818714,0.041657745,0.04054474,0.039476977,0.038451929,0.037467243,0.036520731,0.035610353,0.034734205,0.033890511,0.033077611,0.032293953,0.031538084,0.03080864,0.030104347,0.029424004,0.028766486,0.028130734,0.027515753,0.026920605,0.026344406,0.025786323,0.025245569,0.024721401,0.024213117,0.023720053,0.023241581,0.022777106,0.022326063,0.021887918,0.021462163,0.021048316,0.020645919,0.020254537,0.019873757,0.019503183,0.019142442,0.018791174,0.018449041,0.018115716,0.01779089,0.017474267,0.017165564,0.01686451,0.016570847,0.016284328,0.016004717,0.015731787,0.01546532,0.015205111,0.014950958,0.014702671,0.014460066,0.014222969,0.013991209,0.013764624,0.013543059,0.013326363,0.013114392,0.012907008,0.012704078,0.012505472,0.012311067,0.012120744,0.011934388,0.011751889,0.011573139,0.011398036,0.01122648,0.011058377,0.010893632,0.010732157,0.010573865,0.010418674,0.010266502,0.010117272,0.009970909,0.009827338,0.009686491,0.009548299,0.009412695,0.009279616,0.009149,0.009020787,0.008894919,0.008771339,0.008649994,0.008530829,0.008413794,0.008298839,0.008185915,0.008074976,0.007965977,0.007858872,0.00775362,0.007650178,0.007548506,0.007448564,0.007350316,0.007253722,0.007158748,0.007065358,0.006973518,0.006883194,0.006794355,0.00670697,0.006621006,0.006536435,0.006453228,0.006371357,0.006290793,0.006211511,0.006133484,0.006056686,0.005981093,0.005906682,0.005833427,0.005761307,0.005690299,0.005620381,0.005551532,0.005483731,0.005416958,0.005351193,0.005286417,0.005222611,0.005159757,0.005097837,0.005036833,0.004976728,0.004917506,0.00485915,0.004801644,0.004744973,0.004689121,0.004634075,0.004579818,0.004526337,0.004473618,0.004421648,0.004370413,0.0043199,0.004270097,0.004220991,0.00417257,0.004124822,0.004077735,0.004031299,0.003985502,0.003940332,0.00389578,0.003851836,0.003808487,0.003765726,0.003723542,0.003681925,0.003640865,0.003600355,0.003560384,0.003520945,0.003482027,0.003443623,0.003405725,0.003368324,0.003331412,0.003294981,0.003259025,0.003223534,0.003188503,0.003153923,0.003119787,0.003086089,0.003052822,0.003019979,0.002987554,0.002955539,0.002923929,0.002892718,0.002861899,0.002831467,0.002801415,0.002771738,0.00274243,0.002713486,0.0026849,0.002656667,0.002628782,0.002601239,0.002574033,0.00254716,0.002520615,0.002494392,0.002468487,0.002442896,0.002417613,0.002392635,0.002367958,0.002343575,0.002319485,0.002295681,0.002272161,0.00224892,0.002225955,0.002203261,0.002180834,0.002158671,0.002136769,0.002115123,0.00209373,0.002072586,0.002051688,0.002031033,0.002010617,0.001990438,0.001970491,0.001950773,0.001931282,0.001912015,0.001892968,0.001874138,0.001855523,0.00183712,0.001818925,0.001800936,0.001783151,0.001765566,0.001748179,0.001730987,0.001713988,0.00169718,0.001680559,0.001664123,0.00164787,0.001631798,0.001615904,0.001600185,0.00158464,0.001569267,0.001554062,0.001539025,0.001524152,0.001509442,0.001494893,0.001480502,0.001466268,0.001452188,0.001438261,0.001424485,0.001410858,0.001397378,0.001384043,0.206500938,0.206500938,0.206500938,0.206500938,0.206500938,0.206500938,0.206500938,0.205960104,0.203942906,0.200550168,0.19597153,0.190438601,0.184196567,0.177480383,0.170498531,0.16342462,0.156395362,0.149512849,0.142849139,0.136451691,0.130348696,0.124553817,0.119070135,0.113893286,0.109013889,0.10441936,0.100095238,0.096026139,0.092196425,0.088590655,0.085193884,0.081991847,0.078971071,0.076118916,0.073423597,0.070874161,0.068460465,0.06617313,0.064003497,0.061943578,0.059986011,0.058124007,0.056351308,0.054662143,0.053051188,0.051513527,0.050044622,0.048640276,0.047296606,0.046010018,0.044777181,0.043595004,0.042460618,0.041371358,0.040324743,0.039318466,0.038350374,0.03741846,0.036520852,0.035655797,0.034821658,0.034016902,0.033240092,0.032489881,0.031765004,0.031064274,0.030386574,0.029730852,0.02909612,0.028481445,0.027885948,0.027308797,0.026749211,0.026206446,0.025679804,0.025168619,0.024672265,0.024190146,0.023721696,0.023266381,0.022823691,0.022393143,0.021974277,0.021566656,0.021169864,0.020783505,0.020407201,0.020040593,0.019683336,0.019335104,0.018995584,0.018664476,0.018341495,0.018026367,0.017718833,0.017418641,0.017125552,0.016839337,0.016559777,0.016286659,0.016019782,0.015758953,0.015503985,0.015254699,0.015010924,0.014772494,0.01453925,0.014311041,0.01408772,0.013869144,0.013655179,0.013445692,0.013240559,0.013039656,0.012842868,0.01265008,0.012461184,0.012276074,0.01209465,0.011916812,0.011742466,0.011571521,0.011403888,0.011239482,0.01107822,0.010920022,0.010764811,0.010612512,0.010463052,0.010316362,0.010172374,0.010031021,0.009892241,0.00975597,0.009622151,0.009490724,0.009361634,0.009234825,0.009110245,0.008987843,0.008867568,0.008749372,0.008633209,0.008519033,0.008406798,0.008296463,0.008187986,0.008081325,0.007976441,0.007873296,0.007771852,0.007672073,0.007573924,0.007477371,0.007382378,0.007288915,0.00719695,0.00710645,0.007017387,0.006929732,0.006843454,0.006758527,0.006674924,0.006592618,0.006511584,0.006431795,0.006353229,0.00627586,0.006199666,0.006124624,0.006050712,0.005977907,0.00590619,0.00583554,0.005765935,0.005697357,0.005629787,0.005563206,0.005497595,0.005432937,0.005369214,0.005306409,0.005244506,0.005183488,0.00512334,0.005064045,0.005005589,0.004947956,0.004891133,0.004835105,0.004779858,0.004725378,0.004671653,0.004618669,0.004566413,0.004514874,0.004464038,0.004413894,0.00436443,0.004315634,0.004267497,0.004220006,0.00417315,0.00412692,0.004081305,0.004036295,0.00399188,0.00394805,0.003904795,0.003862108,0.003819978,0.003778396,0.003737354,0.003696843,0.003656854,0.00361738,0.003578413,0.003539944,0.003501965,0.003464469,0.003427449,0.003390897,0.003354806,0.003319169,0.003283978,0.003249228,0.003214911,0.003181021,0.003147552,0.003114496,0.003081849,0.003049603,0.003017753,0.002986293,0.002955218,0.002924521,0.002894197,0.00286424,0.002834646,0.002805409,0.002776523,0.002747984,0.002719787,0.002691927,0.002664398,0.002637197,0.002610318,0.002583757,0.00255751,0.002531572,0.002505939,0.002480606,0.002455569,0.002430825,0.002406368,0.002382196,0.002358304,0.002334688,0.002311345,0.002288271,0.002265461,0.002242914,0.002220624,0.002198589,0.002176805,0.002155268,0.002133976,0.002112925,0.002092111,0.002071533,0.002051186,0.002031067,0.002011175,0.001991504,0.001972053,0.001952819,0.001933799,0.00191499,0.001896389,0.001877994,0.001859802,0.00184181,0.001824016,0.001806417,0.001789011,0.001771795,0.001754767,0.001737925,0.001721266,0.001704787,0.001688487,0.001672363,0.001656414,0.001640636,0.001625028,0.001609587,0.001594312,0.001579201,0.001564251,0.00154946,0.209961747,0.209961747,0.209961747,0.209961747,0.209961747,0.209961747,0.209961747,0.209953436,0.209039371,0.206667379,0.202975722,0.19816412,0.192466204,0.186122486,0.17935882,0.172372508,0.165325796,0.158345097,0.151523891,0.144927485,0.138598332,0.132561121,0.126827211,0.121398297,0.116269309,0.111430637,0.106869788,0.102572604,0.098524131,0.094709226,0.091112971,0.087720943,0.084519382,0.081495289,0.078636468,0.075931538,0.073369918,0.070941794,0.068638089,0.066450411,0.064371012,0.06239274,0.060508996,0.058713689,0.057001196,0.055366323,0.053804271,0.052310601,0.050881207,0.049512285,0.048200309,0.046942009,0.045734348,0.044574503,0.04345985,0.042387944,0.041356508,0.040363415,0.039406683,0.038484458,0.037595006,0.036736703,0.03590803,0.035107558,0.034333951,0.033585949,0.032862372,0.032162106,0.031484105,0.03082738,0.030191002,0.029574092,0.028975819,0.0283954,0.027832093,0.027285195,0.026754041,0.026238002,0.025736479,0.025248906,0.024774743,0.024313478,0.023864626,0.023427724,0.02300233,0.022588026,0.022184411,0.021791105,0.021407744,0.02103398,0.020669483,0.020313937,0.019967038,0.019628497,0.019298038,0.018975396,0.018660316,0.018352557,0.018051885,0.017758076,0.017470917,0.017190202,0.016915734,0.016647323,0.016384787,0.016127951,0.015876647,0.015630713,0.015389994,0.015154338,0.014923603,0.014697649,0.014476343,0.014259554,0.014047159,0.013839038,0.013635075,0.013435158,0.013239179,0.013047035,0.012858624,0.01267385,0.012492618,0.012314838,0.012140421,0.011969284,0.011801343,0.01163652,0.011474737,0.01131592,0.011159996,0.011006896,0.010856552,0.010708899,0.010563871,0.010421409,0.010281452,0.010143942,0.010008823,0.00987604,0.009745539,0.009617271,0.009491183,0.009367228,0.009245359,0.009125529,0.009007695,0.008891812,0.008777839,0.008665735,0.008555459,0.008446973,0.00834024,0.008235222,0.008131884,0.008030191,0.007930109,0.007831606,0.007734648,0.007639206,0.007545248,0.007452744,0.007361666,0.007271986,0.007183675,0.007096708,0.007011057,0.006926698,0.006843605,0.006761755,0.006681124,0.006601687,0.006523424,0.006446312,0.006370329,0.006295454,0.006221667,0.006148948,0.006077277,0.006006636,0.005937005,0.005868366,0.005800701,0.005733994,0.005668226,0.005603382,0.005539444,0.005476398,0.005414227,0.005352916,0.005292451,0.005232816,0.005173998,0.005115982,0.005058755,0.005002304,0.004946615,0.004891675,0.004837473,0.004783995,0.00473123,0.004679166,0.004627792,0.004577095,0.004527065,0.004477692,0.004428964,0.004380871,0.004333404,0.004286551,0.004240303,0.004194651,0.004149584,0.004105095,0.004061173,0.004017811,0.003974998,0.003932727,0.003890989,0.003849777,0.003809081,0.003768895,0.003729209,0.003690018,0.003651312,0.003613086,0.003575331,0.003538041,0.003501208,0.003464826,0.003428889,0.003393389,0.00335832,0.003323676,0.003289451,0.003255638,0.003222232,0.003189226,0.003156615,0.003124393,0.003092555,0.003061095,0.003030008,0.002999288,0.00296893,0.002938929,0.00290928,0.002879979,0.002851019,0.002822397,0.002794108,0.002766147,0.00273851,0.002711192,0.002684188,0.002657495,0.002631108,0.002605023,0.002579236,0.002553743,0.00252854,0.002503623,0.002478988,0.002454632,0.00243055,0.002406739,0.002383195,0.002359915,0.002336896,0.002314134,0.002291625,0.002269366,0.002247354,0.002225586,0.002204059,0.002182769,0.002161713,0.002140889,0.002120293,0.002099922,0.002079774,0.002059846,0.002040135,0.002020637,0.002001351,0.001982274,0.001963403,0.001944735,0.001926269,0.001908,0.001889928,0.001872049,0.001854362,0.001836863,0.00181955,0.001802421,0.001785474,0.001768707,0.001752117,0.001735703,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213480556,0.213420645,0.212253568,0.209662321,0.205794863,0.200854976,0.195075029,0.188690241,0.18191883,0.174949688,0.167937048,0.161000398,0.154227667,0.147679993,0.141396895,0.135401141,0.129702956,0.124303487,0.119197531,0.114375618,0.10982558,0.105533686,0.101485463,0.097666264,0.094061662,0.090657703,0.087441067,0.08439916,0.081520157,0.078793008,0.07620743,0.07375388,0.071423514,0.069208152,0.067100232,0.065092764,0.063179293,0.061353855,0.059610935,0.057945438,0.056352648,0.0548282,0.053368051,0.051968453,0.050625929,0.049337248,0.048099409,0.046909622,0.045765286,0.04466398,0.043603443,0.042581567,0.041596381,0.040646041,0.039728822,0.038843107,0.03798738,0.037160219,0.036360287,0.035586328,0.03483716,0.034111671,0.03340881,0.032727591,0.032067079,0.031426393,0.030804699,0.030201211,0.029615183,0.029045907,0.028492716,0.027954973,0.027432078,0.026923457,0.026428568,0.025946894,0.025477943,0.025021248,0.024576364,0.024142866,0.023720349,0.023308427,0.022906732,0.022514912,0.022132631,0.021759568,0.021395415,0.02103988,0.020692679,0.020353545,0.020022219,0.019698453,0.019382011,0.019072665,0.018770196,0.018474396,0.018185062,0.017902001,0.017625027,0.017353962,0.017088634,0.016828876,0.01657453,0.016325443,0.016081467,0.015842458,0.015608281,0.015378803,0.015153896,0.014933437,0.014717307,0.014505392,0.01429758,0.014093766,0.013893844,0.013697717,0.013505286,0.013316458,0.013131143,0.012949254,0.012770706,0.012595417,0.012423307,0.012254301,0.012088322,0.0119253,0.011765164,0.011607846,0.011453281,0.011301405,0.011152155,0.011005473,0.010861299,0.010719578,0.010580254,0.010443273,0.010308585,0.010176138,0.010045883,0.009917774,0.009791764,0.009667808,0.009545861,0.009425883,0.00930783,0.009191664,0.009077344,0.008964833,0.008854094,0.008745089,0.008637785,0.008532146,0.00842814,0.008325734,0.008224895,0.008125593,0.008027799,0.007931481,0.007836613,0.007743165,0.007651111,0.007560423,0.007471076,0.007383045,0.007296305,0.007210831,0.0071266,0.007043589,0.006961776,0.006881138,0.006801655,0.006723304,0.006646066,0.00656992,0.006494848,0.00642083,0.006347847,0.00627588,0.006204913,0.006134928,0.006065907,0.005997834,0.005930693,0.005864467,0.005799141,0.005734699,0.005671127,0.00560841,0.005546533,0.005485483,0.005425245,0.005365807,0.005307155,0.005249276,0.005192157,0.005135786,0.005080151,0.005025241,0.004971042,0.004917544,0.004864736,0.004812607,0.004761146,0.004710342,0.004660185,0.004610665,0.004561772,0.004513496,0.004465828,0.004418758,0.004372277,0.004326376,0.004281046,0.004236279,0.004192065,0.004148397,0.004105267,0.004062666,0.004020586,0.00397902,0.00393796,0.003897398,0.003857328,0.003817742,0.003778632,0.003739992,0.003701816,0.003664096,0.003626825,0.003589998,0.003553608,0.003517649,0.003482114,0.003446998,0.003412294,0.003377997,0.003344101,0.0033106,0.00327749,0.003244764,0.003212416,0.003180443,0.003148839,0.003117598,0.003086715,0.003056186,0.003026006,0.002996171,0.002966674,0.002937513,0.002908682,0.002880176,0.002851992,0.002824126,0.002796572,0.002769327,0.002742387,0.002715747,0.002689404,0.002663354,0.002637593,0.002612117,0.002586923,0.002562006,0.002537363,0.002512991,0.002488886,0.002465045,0.002441464,0.00241814,0.00239507,0.00237225,0.002349677,0.002327348,0.002305261,0.002283411,0.002261796,0.002240414,0.00221926,0.002198333,0.002177629,0.002157145,0.00213688,0.00211683,0.002096992,0.002077364,0.002057944,0.002038728,0.002019715,0.002000901,0.001982285,0.001963864,0.001945635,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.217058337,0.216961917,0.215694943,0.213028267,0.209111878,0.204148583,0.198367364,0.19199858,0.185255074,0.178320619,0.171345059,0.16444444,0.157704207,0.151183872,0.14492203,0.138941052,0.133251155,0.127853737,0.122744001,0.117912982,0.113349052,0.109039024,0.104968954,0.101124691,0.097492267,0.094058145,0.090809378,0.087733707,0.084819602,0.082056274,0.079433669,0.076942441,0.074573923,0.072320084,0.070173492,0.068127272,0.066175064,0.064310988,0.062529602,0.060825868,0.059195125,0.057633049,0.056135636,0.054699167,0.053320189,0.051995495,0.050722098,0.049497222,0.048318275,0.047182845,0.046088675,0.045033661,0.044015833,0.043033347,0.042084477,0.041167604,0.040281209,0.039423865,0.038594231,0.037791046,0.037013122,0.036259341,0.035528647,0.034820044,0.034132594,0.033465406,0.032817642,0.032188506,0.031577246,0.030983147,0.030405534,0.029843764,0.029297228,0.028765347,0.028247571,0.027743376,0.027252263,0.026773758,0.026307409,0.025852785,0.025409474,0.024977085,0.024555243,0.024143589,0.023741781,0.023349494,0.022966412,0.022592237,0.022226683,0.021869473,0.021520345,0.021179046,0.020845334,0.020518976,0.020199748,0.019887438,0.019581837,0.019282749,0.018989983,0.018703356,0.018422691,0.018147819,0.017878577,0.017614806,0.017356356,0.017103081,0.016854838,0.016611492,0.016372913,0.016138973,0.01590955,0.015684526,0.015463787,0.015247223,0.015034727,0.014826196,0.01462153,0.014420634,0.014223414,0.014029779,0.013839643,0.01365292,0.013469529,0.013289389,0.013112425,0.012938562,0.012767726,0.012599849,0.012434861,0.012272698,0.012113294,0.011956587,0.011802518,0.011651027,0.011502057,0.011355554,0.011211463,0.011069731,0.010930309,0.010793147,0.010658196,0.010525411,0.010394744,0.010266153,0.010139595,0.010015026,0.009892407,0.009771697,0.009652859,0.009535853,0.009420645,0.009307197,0.009195475,0.009085445,0.008977074,0.008870329,0.00876518,0.008661594,0.008559543,0.008458997,0.008359928,0.008262307,0.008166108,0.008071304,0.00797787,0.007885779,0.007795007,0.00770553,0.007617325,0.007530368,0.007444637,0.007360111,0.007276767,0.007194584,0.007113543,0.007033623,0.006954804,0.006877067,0.006800394,0.006724765,0.006650165,0.006576573,0.006503974,0.006432351,0.006361687,0.006291966,0.006223172,0.00615529,0.006088305,0.006022201,0.005956965,0.005892583,0.005829039,0.005766322,0.005704417,0.005643311,0.005582991,0.005523446,0.005464662,0.005406627,0.005349331,0.00529276,0.005236905,0.005181753,0.005127293,0.005073516,0.00502041,0.004967965,0.004916172,0.004865019,0.004814498,0.004764599,0.004715312,0.004666628,0.004618539,0.004571035,0.004524108,0.004477749,0.00443195,0.004386702,0.004341998,0.004297829,0.004254188,0.004211067,0.004168459,0.004126356,0.004084751,0.004043636,0.004003006,0.003962852,0.003923169,0.003883949,0.003845186,0.003806874,0.003769006,0.003731576,0.003694579,0.003658007,0.003621855,0.003586118,0.003550789,0.003515864,0.003481336,0.0034472,0.003413451,0.003380084,0.003347093,0.003314474,0.00328222,0.003250329,0.003218794,0.003187611,0.003156776,0.003126283,0.003096128,0.003066307,0.003036816,0.003007649,0.002978804,0.002950275,0.002922058,0.00289415,0.002866547,0.002839244,0.002812238,0.002785525,0.002759101,0.002732963,0.002707106,0.002681528,0.002656225,0.002631193,0.002606429,0.002581929,0.002557691,0.002533711,0.002509986,0.002486512,0.002463287,0.002440307,0.00241757,0.002395072,0.002372811,0.002350783,0.002328986,0.002307417,0.002286074,0.002264952,0.002244051,0.002223366,0.002202896,0.002182638,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.22069608,0.220617442,0.21941323,0.216822121,0.21298869,0.208110136,0.20241039,0.196115788,0.189436365,0.182554256,0.175618657,0.168745714,0.162021491,0.155506433,0.149240232,0.14324641,0.137536315,0.132112407,0.126970869,0.122103611,0.117499778,0.113146865,0.109031514,0.105140083,0.101459038,0.097975212,0.094675975,0.091549335,0.088583985,0.08576933,0.083095472,0.080553201,0.078133957,0.075829804,0.073633383,0.071537882,0.06953699,0.067624866,0.0657961,0.064045679,0.062368957,0.060761626,0.059219687,0.057739426,0.056317394,0.054950379,0.053635393,0.052369653,0.051150562,0.049975698,0.048842797,0.047749743,0.046694555,0.045675381,0.04469048,0.043738223,0.042817079,0.041925608,0.041062458,0.040226354,0.039416097,0.038630556,0.037868663,0.037129413,0.036411852,0.035715081,0.035038248,0.034380547,0.033741215,0.033119527,0.032514796,0.031926369,0.031353628,0.030795983,0.030252875,0.02972377,0.029208161,0.028705564,0.028215518,0.027737585,0.027271343,0.026816394,0.026372354,0.025938858,0.025515556,0.025102113,0.02469821,0.02430354,0.023917809,0.023540735,0.02317205,0.022811493,0.022458818,0.022113784,0.021776163,0.021445735,0.021122289,0.02080562,0.020495534,0.020191842,0.019894362,0.019602921,0.019317349,0.019037486,0.018763174,0.018494264,0.018230609,0.017972071,0.017718512,0.017469804,0.017225819,0.016986436,0.016751537,0.016521008,0.016294739,0.016072624,0.015854559,0.015640445,0.015430186,0.015223687,0.015020859,0.014821614,0.014625866,0.014433534,0.014244538,0.0140588,0.013876245,0.013696801,0.013520397,0.013346964,0.013176436,0.013008747,0.012843836,0.012681642,0.012522104,0.012365166,0.012210771,0.012058866,0.011909396,0.011762312,0.011617562,0.011475098,0.011334872,0.01119684,0.011060954,0.010927173,0.010795453,0.010665753,0.010538032,0.010412251,0.010288372,0.010166358,0.010046171,0.009927777,0.009811141,0.009696228,0.009583007,0.009471445,0.00936151,0.009253172,0.009146401,0.009041169,0.008937445,0.008835204,0.008734417,0.008635058,0.008537101,0.008440521,0.008345293,0.008251393,0.008158798,0.008067484,0.007977428,0.00788861,0.007801006,0.007714597,0.007629361,0.007545279,0.00746233,0.007380496,0.007299756,0.007220094,0.007141491,0.007063929,0.00698739,0.006911859,0.006837317,0.00676375,0.00669114,0.006619473,0.006548734,0.006478906,0.006409976,0.006341929,0.00627475,0.006208428,0.006142946,0.006078294,0.006014456,0.005951422,0.005889177,0.005827711,0.00576701,0.005707063,0.00564786,0.005589387,0.005531634,0.005474591,0.005418246,0.005362589,0.005307609,0.005253298,0.005199644,0.005146637,0.005094269,0.00504253,0.004991411,0.004940902,0.004890995,0.004841681,0.004792951,0.004744797,0.004697211,0.004650185,0.00460371,0.004557779,0.004512385,0.004467518,0.004423173,0.004379341,0.004336016,0.004293191,0.004250858,0.00420901,0.004167642,0.004126746,0.004086316,0.004046346,0.004006829,0.003967759,0.00392913,0.003890936,0.003853172,0.003815831,0.003778908,0.003742397,0.003706292,0.003670589,0.003635283,0.003600366,0.003565836,0.003531686,0.003497912,0.003464508,0.00343147,0.003398794,0.003366474,0.003334505,0.003302884,0.003271606,0.003240666,0.003210061,0.003179785,0.003149835,0.003120206,0.003090895,0.003061898,0.00303321,0.003004828,0.002976747,0.002948965,0.002921477,0.00289428,0.00286737,0.002840743,0.002814396,0.002788326,0.00276253,0.002737003,0.002711743,0.002686746,0.002662009,0.002637529,0.002613304,0.002589329,0.002565601,0.002542119,0.002518878,0.002495877,0.002473112,0.00245058,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224394789,0.224373229,0.223405017,0.221051664,0.217444369,0.212769571,0.20724402,0.201090535,0.194518727,0.187712537,0.180824314,0.173973979,0.167251478,0.160720926,0.154425302,0.148390975,0.142631692,0.137151906,0.13194943,0.127017498,0.122346326,0.117924264,0.113738639,0.109776354,0.106024307,0.10246967,0.099100084,0.095903762,0.092869562,0.089987008,0.087246297,0.084638285,0.082154463,0.079786924,0.07752833,0.075371877,0.073311257,0.071340621,0.06945455,0.067648015,0.065916354,0.064255238,0.062660645,0.061128841,0.059656349,0.058239934,0.056876585,0.05556349,0.05429803,0.053077757,0.051900381,0.050763764,0.049665901,0.048604914,0.047579042,0.046586632,0.045626132,0.044696081,0.043795105,0.042921911,0.04207528,0.041254061,0.04045717,0.039683581,0.038932325,0.038202486,0.037493196,0.036803634,0.036133019,0.035480614,0.034845718,0.034227663,0.033625818,0.03303958,0.032468377,0.031911664,0.031368921,0.030839655,0.030323391,0.029819682,0.029328096,0.028848223,0.028379671,0.027922065,0.027475045,0.027038269,0.026611408,0.026194147,0.025786184,0.02538723,0.024997006,0.024615248,0.024241699,0.023876114,0.023518256,0.0231679,0.022824826,0.022488826,0.022159698,0.021837247,0.021521286,0.021211635,0.020908121,0.020610577,0.02031884,0.020032756,0.019752173,0.019476948,0.01920694,0.018942014,0.018682039,0.018426889,0.018176443,0.017930582,0.017689192,0.017452163,0.017219388,0.016990764,0.01676619,0.016545569,0.016328808,0.016115816,0.015906504,0.015700786,0.015498581,0.015299807,0.015104386,0.014912243,0.014723304,0.014537498,0.014354755,0.014175008,0.013998192,0.013824243,0.0136531,0.013484702,0.013318991,0.013155911,0.012995406,0.012837422,0.012681907,0.01252881,0.012378083,0.012229676,0.012083543,0.011939638,0.011797916,0.011658335,0.011520852,0.011385425,0.011252015,0.011120583,0.01099109,0.010863499,0.010737774,0.01061388,0.010491781,0.010371445,0.010252838,0.010135929,0.010020685,0.009907077,0.009795074,0.009684647,0.009575769,0.00946841,0.009362544,0.009258145,0.009155185,0.00905364,0.008953486,0.008854697,0.00875725,0.008661122,0.00856629,0.008472732,0.008380426,0.008289351,0.008199487,0.008110812,0.008023307,0.007936953,0.00785173,0.00776762,0.007684604,0.007602665,0.007521784,0.007441946,0.007363133,0.007285328,0.007208515,0.007132679,0.007057804,0.006983875,0.006910877,0.006838796,0.006767616,0.006697324,0.006627907,0.00655935,0.006491641,0.006424767,0.006358714,0.006293471,0.006229024,0.006165363,0.006102476,0.006040349,0.005978974,0.005918337,0.005858429,0.005799239,0.005740755,0.005682968,0.005625868,0.005569444,0.005513687,0.005458587,0.005404135,0.005350321,0.005297136,0.005244572,0.005192619,0.005141269,0.005090514,0.005040345,0.004990753,0.004941731,0.004893271,0.004845366,0.004798006,0.004751186,0.004704897,0.004659132,0.004613885,0.004569147,0.004524913,0.004481175,0.004437927,0.004395162,0.004352873,0.004311055,0.004269701,0.004228804,0.004188359,0.004148361,0.004108802,0.004069677,0.004030981,0.003992708,0.003954852,0.003917408,0.003880371,0.003843736,0.003807497,0.003771648,0.003736187,0.003701106,0.003666402,0.003632069,0.003598104,0.003564501,0.003531255,0.003498363,0.00346582,0.003433621,0.003401762,0.00337024,0.003339049,0.003308186,0.003277646,0.003247427,0.003217523,0.003187931,0.003158647,0.003129667,0.003100988,0.003072606,0.003044518,0.003016719,0.002989207,0.002961978,0.002935028,0.002908354,0.002881954,0.002855823,0.002829959,0.002804358,0.002779017,0.002753933,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.228155485,0.227603848,0.225672062,0.222458129,0.218130711,0.212895545,0.206971152,0.200568344,0.19387603,0.187053603,0.180228758,0.173499025,0.166935389,0.160586751,0.154484408,0.148646106,0.143079485,0.137784856,0.132757392,0.127988794,0.123468544,0.11918482,0.115125161,0.111276928,0.107627634,0.104165155,0.100877866,0.097754728,0.094785326,0.091959884,0.089269258,0.086704923,0.084258942,0.081923936,0.079693054,0.077559937,0.075518681,0.07356381,0.071690238,0.069893247,0.068168449,0.066511771,0.064919419,0.063387868,0.061913831,0.060494245,0.059126253,0.057807189,0.056534561,0.055306037,0.054119438,0.05297272,0.051863967,0.050791384,0.049753282,0.048748076,0.047774274,0.046830472,0.045915347,0.045027653,0.044166212,0.043329914,0.04251771,0.041728606,0.040961663,0.040215993,0.039490752,0.038785141,0.038098403,0.037429817,0.0367787,0.036144401,0.035526302,0.034923816,0.03433638,0.033763462,0.033204553,0.032659165,0.032126837,0.031607126,0.031099608,0.030603879,0.030119553,0.029646261,0.029183647,0.028731372,0.028289113,0.027856556,0.027433404,0.02701937,0.026614178,0.026217565,0.025829276,0.025449068,0.025076707,0.024711966,0.024354628,0.024004486,0.023661337,0.023324988,0.022995253,0.022671951,0.022354909,0.022043959,0.021738941,0.021439698,0.02114608,0.020857942,0.020575143,0.020297548,0.020025026,0.019757449,0.019494696,0.019236647,0.018983188,0.018734208,0.018489599,0.018249256,0.01801308,0.017780972,0.017552838,0.017328585,0.017108124,0.016891369,0.016678236,0.016468643,0.016262512,0.016059766,0.015860331,0.015664133,0.015471103,0.015281173,0.015094275,0.014910346,0.014729323,0.014551145,0.014375752,0.014203087,0.014033093,0.013865716,0.013700903,0.013538602,0.013378762,0.013221334,0.01306627,0.012913525,0.012763051,0.012614805,0.012468744,0.012324826,0.012183009,0.012043254,0.011905521,0.011769773,0.011635972,0.011504082,0.011374067,0.011245894,0.011119528,0.010994936,0.010872086,0.010750946,0.010631487,0.010513678,0.01039749,0.010282893,0.010169861,0.010058365,0.00994838,0.009839878,0.009732834,0.009627224,0.009523023,0.009420206,0.009318751,0.009218634,0.009119833,0.009022327,0.008926093,0.008831111,0.00873736,0.00864482,0.008553471,0.008463294,0.00837427,0.00828638,0.008199606,0.008113931,0.008029337,0.007945807,0.007863324,0.007781872,0.007701434,0.007621996,0.00754354,0.007466054,0.00738952,0.007313925,0.007239255,0.007165495,0.007092632,0.007020652,0.006949542,0.006879289,0.006809881,0.006741303,0.006673546,0.006606596,0.006540441,0.00647507,0.006410472,0.006346634,0.006283548,0.0062212,0.006159582,0.006098682,0.00603849,0.005978996,0.005920191,0.005862064,0.005804606,0.005747808,0.005691661,0.005636154,0.005581281,0.005527031,0.005473396,0.005420368,0.005367939,0.0053161,0.005264843,0.00521416,0.005164044,0.005114487,0.005065482,0.00501702,0.004969096,0.004921701,0.004874829,0.004828472,0.004782625,0.00473728,0.00469243,0.00464807,0.004604193,0.004560792,0.004517862,0.004475395,0.004433388,0.004391832,0.004350724,0.004310056,0.004269824,0.004230021,0.004190643,0.004151684,0.004113139,0.004075002,0.004037268,0.003999933,0.003962991,0.003926438,0.003890269,0.003854478,0.003819062,0.003784016,0.003749334,0.003715014,0.003681049,0.003647437,0.003614172,0.00358125,0.003548668,0.003516421,0.003484506,0.003452917,0.003421652,0.003390706,0.003360076,0.003329757,0.003299747,0.003270041,0.003240636,0.003211529,0.003182715,0.003154192,0.003125956,0.003098004 -0.149348811,0.149348811,0.148031398,0.140277729,0.128106845,0.114563045,0.101605694,0.090075309,0.080148944,0.071712,0.064557368,0.058471768,0.053266464,0.048784261,0.044897584,0.041503921,0.038521039,0.035882804,0.033535769,0.031436476,0.029549352,0.027845078,0.02629933,0.02489179,0.023605378,0.022425651,0.021340323,0.020338885,0.019412303,0.018552769,0.017753509,0.017008615,0.016312912,0.015661857,0.015051436,0.014478098,0.013938688,0.013430395,0.012950703,0.01249736,0.012068339,0.011661814,0.011276136,0.010909808,0.010561474,0.010229901,0.009913961,0.009612626,0.009324956,0.009050088,0.008787228,0.008535646,0.008294671,0.008063682,0.007842104,0.007629407,0.007425098,0.007228718,0.007039844,0.00685808,0.006683055,0.006514427,0.006351873,0.006195094,0.006043807,0.005897749,0.005756672,0.005620344,0.005488547,0.005361075,0.005237735,0.005118345,0.005002732,0.004890735,0.004782199,0.004676981,0.004574943,0.004475955,0.004379895,0.004286645,0.004196095,0.004108139,0.004022679,0.003939619,0.003858869,0.003780343,0.00370396,0.003629641,0.003557312,0.003486902,0.003418343,0.003351572,0.003286526,0.003223146,0.003161376,0.003101162,0.003042452,0.002985197,0.00292935,0.002874864,0.002821697,0.002769807,0.002719153,0.002669697,0.002621403,0.002574234,0.002528157,0.002483138,0.002439146,0.002396152,0.002354124,0.002313037,0.002272861,0.002233572,0.002195143,0.002157551,0.002120773,0.002084785,0.002049567,0.002015096,0.001981353,0.001948317,0.001915971,0.001884296,0.001853274,0.001822888,0.001793121,0.001763957,0.001735382,0.001707379,0.001679935,0.001653035,0.001626666,0.001600815,0.001575468,0.001550614,0.001526241,0.001502336,0.001478888,0.001455888,0.001433323,0.001411184,0.00138946,0.001368143,0.001347222,0.001326688,0.001306533,0.001286748,0.001267324,0.001248254,0.001229528,0.001211141,0.001193083,0.001175348,0.00115793,0.001140819,0.001124011,0.001107499,0.001091276,0.001075335,0.001059672,0.00104428,0.001029153,0.001014286,0.000999674,0.00098531,0.00097119,0.00095731,0.000943663,0.000930246,0.000917053,0.00090408,0.000891323,0.000878776,0.000866437,0.000854301,0.000842364,0.000830622,0.000819071,0.000807708,0.000796528,0.000785528,0.000774706,0.000764056,0.000753577,0.000743265,0.000733116,0.000723127,0.000713297,0.00070362,0.000694096,0.00068472,0.000675491,0.000666404,0.000657459,0.000648652,0.00063998,0.000631442,0.000623034,0.000614755,0.000606602,0.000598573,0.000590665,0.000582877,0.000575207,0.000567651,0.000560209,0.000552878,0.000545656,0.000538542,0.000531533,0.000524628,0.000517825,0.000511122,0.000504518,0.00049801,0.000491597,0.000485278,0.000479051,0.000472914,0.000466866,0.000460905,0.00045503,0.00044924,0.000443532,0.000437906,0.000432361,0.000426895,0.000421506,0.000416194,0.000410957,0.000405793,0.000400703,0.000395684,0.000390736,0.000385857,0.000381046,0.000376302,0.000371624,0.000367011,0.000362462,0.000357976,0.000353551,0.000349188,0.000344885,0.00034064,0.000336454,0.000332325,0.000328252,0.000324235,0.000320272,0.000316363,0.000312507,0.000308703,0.000304951,0.000301249,0.000297596,0.000293993,0.000290438,0.00028693,0.000283469,0.000280054,0.000276685,0.00027336,0.00027008,0.000266842,0.000263648,0.000260495,0.000257385,0.000254314,0.000251285,0.000248294,0.000245343,0.000242431,0.000239556,0.000236719,0.000233919,0.000231154,0.000228426,0.000225733,0.000223075,0.000220451,0.00021786,0.000215303,0.000212779,0.000210287,0.000207827,0.000205399,0.000203001,0.000200634,0.000198297,0.000195989,0.000193711,0.000191462,0.000189241,0.000187048,0.000184883,0.000182745,0.000180634,0.000178549,0.176462984,0.176462984,0.175697716,0.167939168,0.15439918,0.138699806,0.123365639,0.109568166,0.097617932,0.087426394,0.078767053,0.071393007,0.06508096,0.059642956,0.054925594,0.050805211,0.047182425,0.043977226,0.041124909,0.038572844,0.036277943,0.034204693,0.032323626,0.030610128,0.029043511,0.027606278,0.026283547,0.025062588,0.023932457,0.022883698,0.021908101,0.02099851,0.020148658,0.019353036,0.018606782,0.017905594,0.017245646,0.016623531,0.0160362,0.015480921,0.014955238,0.014456935,0.01398401,0.013534651,0.01310721,0.01270019,0.012312224,0.011942063,0.011588565,0.011250682,0.01092745,0.010617983,0.010321464,0.010037139,0.00976431,0.00950233,0.009250601,0.009008566,0.008775708,0.008551545,0.008335629,0.00812754,0.007926887,0.007733304,0.007546447,0.007365996,0.007191649,0.007023123,0.006860151,0.006702484,0.006549884,0.006402131,0.006259014,0.006120334,0.005985906,0.005855552,0.005729105,0.005606405,0.005487303,0.005371657,0.005259331,0.005150196,0.005044131,0.00494102,0.004840752,0.004743222,0.00464833,0.004555981,0.004466084,0.004378552,0.004293301,0.004210254,0.004129335,0.004050471,0.003973592,0.003898634,0.003825532,0.003754227,0.003684659,0.003616773,0.003550516,0.003485837,0.003422686,0.003361015,0.003300781,0.003241938,0.003184445,0.003128262,0.00307335,0.003019672,0.002967191,0.002915874,0.002865686,0.002816596,0.002768572,0.002721586,0.002675607,0.002630608,0.002586563,0.002543446,0.002501231,0.002459894,0.002419412,0.002379763,0.002340924,0.002302875,0.002265595,0.002229064,0.002193264,0.002158176,0.002123781,0.002090063,0.002057005,0.002024591,0.001992804,0.00196163,0.001931053,0.00190106,0.001871636,0.001842768,0.001814443,0.001786647,0.001759369,0.001732597,0.001706319,0.001680523,0.001655199,0.001630336,0.001605924,0.001581951,0.00155841,0.001535289,0.001512581,0.001490275,0.001468363,0.001446836,0.001425686,0.001404906,0.001384486,0.00136442,0.0013447,0.001325318,0.001306268,0.001287543,0.001269135,0.001251039,0.001233248,0.001215755,0.001198555,0.001181642,0.00116501,0.001148652,0.001132565,0.001116742,0.001101178,0.001085868,0.001070807,0.00105599,0.001041413,0.00102707,0.001012958,0.000999071,0.000985406,0.000971958,0.000958723,0.000945697,0.000932877,0.000920258,0.000907836,0.000895608,0.000883571,0.00087172,0.000860052,0.000848565,0.000837254,0.000826116,0.000815149,0.000804349,0.000793713,0.000783239,0.000772923,0.000762762,0.000752754,0.000742897,0.000733187,0.000723621,0.000714198,0.000704915,0.00069577,0.000686759,0.000677881,0.000669133,0.000660514,0.000652021,0.000643651,0.000635404,0.000627276,0.000619265,0.000611371,0.00060359,0.000595921,0.000588362,0.000580911,0.000573566,0.000566326,0.000559189,0.000552153,0.000545217,0.000538378,0.000531636,0.000524989,0.000518435,0.000511972,0.0005056,0.000499317,0.000493121,0.000487011,0.000480985,0.000475043,0.000469183,0.000463403,0.000457703,0.000452081,0.000446536,0.000441066,0.000435671,0.00043035,0.000425101,0.000419922,0.000414814,0.000409775,0.000404804,0.000399899,0.000395061,0.000390287,0.000385577,0.00038093,0.000376345,0.000371821,0.000367357,0.000362952,0.000358605,0.000354316,0.000350083,0.000345906,0.000341784,0.000337716,0.000333701,0.000329739,0.000325828,0.000321969,0.000318159,0.0003144,0.000310688,0.000307025,0.00030341,0.000299841,0.000296318,0.00029284,0.000289407,0.000286018,0.000282672,0.000279369,0.000276108,0.000272889,0.000269711,0.000266573,0.000263475,0.000260416,0.000257396,0.000254415,0.00025147,0.000248563,0.000245693,0.000242858,0.000240059,0.000237295,0.000234566,0.000231871,0.000229209,0.208701511,0.208701511,0.208442384,0.201144486,0.186333167,0.168246055,0.150124327,0.133598344,0.119181175,0.106837308,0.096326413,0.087364666,0.079688074,0.073071513,0.067329989,0.062313812,0.05790243,0.053998672,0.05052391,0.047414166,0.044617058,0.04208941,0.039795401,0.037705113,0.035793402,0.034039004,0.032423836,0.030932431,0.029551493,0.028269534,0.027076581,0.025963941,0.024924,0.023950067,0.023036237,0.02217728,0.021368551,0.020605908,0.019885648,0.01920445,0.018559329,0.017947593,0.017366808,0.01681477,0.016289477,0.015789106,0.015311996,0.014856629,0.014421614,0.014005675,0.013607641,0.013226433,0.012861056,0.012510591,0.012174188,0.011851062,0.011540481,0.011241769,0.010954295,0.010677471,0.01041075,0.010153621,0.009905608,0.009666263,0.009435168,0.009211931,0.008996184,0.008787581,0.008585797,0.008390527,0.008201482,0.00801839,0.007840996,0.007669057,0.007502345,0.007340643,0.007183746,0.007031461,0.006883604,0.00674,0.006600484,0.006464898,0.006333094,0.006204929,0.006080269,0.005958983,0.005840951,0.005726054,0.005614182,0.005505228,0.00539909,0.005295671,0.00519488,0.005096626,0.005000826,0.004907397,0.004816263,0.004727349,0.004640584,0.004555898,0.004473227,0.004392507,0.004313678,0.004236682,0.004161463,0.004087967,0.004016143,0.003945942,0.003877315,0.003810217,0.003744603,0.00368043,0.003617659,0.003556249,0.003496161,0.00343736,0.00337981,0.003323476,0.003268326,0.003214327,0.003161449,0.003109662,0.003058937,0.003009246,0.002960563,0.002912861,0.002866115,0.002820302,0.002775396,0.002731376,0.002688219,0.002645904,0.00260441,0.002563718,0.002523806,0.002484658,0.002446254,0.002408576,0.002371608,0.002335332,0.002299733,0.002264794,0.002230501,0.002196838,0.002163791,0.002131346,0.00209949,0.002068208,0.002037489,0.00200732,0.001977688,0.001948582,0.00191999,0.001891901,0.001864304,0.001837188,0.001810544,0.001784361,0.001758629,0.001733339,0.001708482,0.001684047,0.001660028,0.001636415,0.001613199,0.001590373,0.001567929,0.001545858,0.001524154,0.001502809,0.001481815,0.001461166,0.001440855,0.001420875,0.00140122,0.001381883,0.001362858,0.00134414,0.001325721,0.001307597,0.001289761,0.001272209,0.001254934,0.001237932,0.001221198,0.001204726,0.001188511,0.001172549,0.001156835,0.001141364,0.001126132,0.001111135,0.001096368,0.001081827,0.001067508,0.001053407,0.00103952,0.001025844,0.001012373,0.000999106,0.000986037,0.000973164,0.000960484,0.000947992,0.000935686,0.000923562,0.000911617,0.000899848,0.000888252,0.000876826,0.000865567,0.000854472,0.000843539,0.000832765,0.000822146,0.000811681,0.000801366,0.0007912,0.00078118,0.000771303,0.000761567,0.00075197,0.000742509,0.000733182,0.000723987,0.000714922,0.000705984,0.000697172,0.000688484,0.000679917,0.00067147,0.00066314,0.000654926,0.000646826,0.000638838,0.000630961,0.000623192,0.000615529,0.000607972,0.000600519,0.000593167,0.000585916,0.000578763,0.000571708,0.000564749,0.000557883,0.00055111,0.000544429,0.000537838,0.000531335,0.000524919,0.000518589,0.000512344,0.000506182,0.000500102,0.000494103,0.000488183,0.000482342,0.000476578,0.00047089,0.000465277,0.000459738,0.000454271,0.000448876,0.000443551,0.000438297,0.00043311,0.000427991,0.000422939,0.000417952,0.000413029,0.000408171,0.000403375,0.000398641,0.000393967,0.000389354,0.0003848,0.000380304,0.000375866,0.000371484,0.000367159,0.000362888,0.000358671,0.000354508,0.000350398,0.00034634,0.000342333,0.000338377,0.00033447,0.000330613,0.000326804,0.000323042,0.000319328,0.00031566,0.000312038,0.000308462,0.00030493,0.000301441,0.000297996,0.000294594,0.247068868,0.247068868,0.247068529,0.240982686,0.225206563,0.204568322,0.183206772,0.163394348,0.145954805,0.130952084,0.118144959,0.107210963,0.097838524,0.089757433,0.08274375,0.076615443,0.071225547,0.066455447,0.062209099,0.058408337,0.054989163,0.051898834,0.049093597,0.04653692,0.044198108,0.042051211,0.040074161,0.038248093,0.036556787,0.034986236,0.03352428,0.032160319,0.030885073,0.029690386,0.028569059,0.027514721,0.026521708,0.025584974,0.024700004,0.023862753,0.023069581,0.022317206,0.021602663,0.020923264,0.020276569,0.019660356,0.019072598,0.018511445,0.0179752,0.017462308,0.016971339,0.016500977,0.016050007,0.01561731,0.015201848,0.01480266,0.014418856,0.014049607,0.013694144,0.01335175,0.013021756,0.012703537,0.012396512,0.012100132,0.011813889,0.011537301,0.011269918,0.011011319,0.010761106,0.010518903,0.01028436,0.010057142,0.009836937,0.009623448,0.009416396,0.009215514,0.009020553,0.008831275,0.008647454,0.008468877,0.008295341,0.008126653,0.00796263,0.007803098,0.007647891,0.00749685,0.007349827,0.007206676,0.007067261,0.006931452,0.006799124,0.006670158,0.006544439,0.006421859,0.006302314,0.006185703,0.006071932,0.005960908,0.005852544,0.005746756,0.005643463,0.005542587,0.005444054,0.005347792,0.005253733,0.005161811,0.005071962,0.004984125,0.004898242,0.004814255,0.00473211,0.004651755,0.00457314,0.004496214,0.004420931,0.004347247,0.004275116,0.004204498,0.00413535,0.004067634,0.004001311,0.003936346,0.003872701,0.003810343,0.003749239,0.003689356,0.003630664,0.003573131,0.00351673,0.003461432,0.003407209,0.003354035,0.003301884,0.003250732,0.003200554,0.003151326,0.003103028,0.003055635,0.003009127,0.002963483,0.002918684,0.002874709,0.002831539,0.002789157,0.002747543,0.002706682,0.002666556,0.002627148,0.002588442,0.002550424,0.002513077,0.002476388,0.002440342,0.002404925,0.002370123,0.002335923,0.002302313,0.00226928,0.002236812,0.002204897,0.002173524,0.00214268,0.002112356,0.002082541,0.002053223,0.002024394,0.001996043,0.001968161,0.001940737,0.001913764,0.001887231,0.001861131,0.001835455,0.001810194,0.00178534,0.001760886,0.001736823,0.001713144,0.001689843,0.00166691,0.00164434,0.001622126,0.001600261,0.001578738,0.001557551,0.001536694,0.00151616,0.001495944,0.00147604,0.001456441,0.001437143,0.00141814,0.001399426,0.001380997,0.001362847,0.001344971,0.001327365,0.001310023,0.001292941,0.001276114,0.001259538,0.001243208,0.00122712,0.00121127,0.001195653,0.001180267,0.001165105,0.001150166,0.001135445,0.001120938,0.001106641,0.001092552,0.001078666,0.00106498,0.001051491,0.001038195,0.00102509,0.001012171,0.000999437,0.000986883,0.000974508,0.000962307,0.000950279,0.00093842,0.000926727,0.000915198,0.000903831,0.000892622,0.000881569,0.00087067,0.000859921,0.000849322,0.000838868,0.000828559,0.000818391,0.000808363,0.000798472,0.000788717,0.000779094,0.000769602,0.000760239,0.000751003,0.000741892,0.000732904,0.000724037,0.000715289,0.000706658,0.000698144,0.000689743,0.000681454,0.000673275,0.000665206,0.000657243,0.000649386,0.000641632,0.000633982,0.000626431,0.000618981,0.000611628,0.000604371,0.000597209,0.000590141,0.000583165,0.00057628,0.000569485,0.000562777,0.000556156,0.000549621,0.000543171,0.000536803,0.000530518,0.000524313,0.000518187,0.000512141,0.000506171,0.000500278,0.000494459,0.000488715,0.000483044,0.000477445,0.000471917,0.000466458,0.000461069,0.000455747,0.000450493,0.000445304,0.000440181,0.000435122,0.000430126,0.000425193,0.000420321,0.00041551,0.000410759,0.000406067,0.000401433,0.000396857,0.000392337,0.000387873,0.000383464,0.00037911,0.292773298,0.292773298,0.292773298,0.288598018,0.272470084,0.249267589,0.224210255,0.200460632,0.179317056,0.161019951,0.145353064,0.131957436,0.120466979,0.110557019,0.101955513,0.094440056,0.087830547,0.081981399,0.076774646,0.072114266,0.067921641,0.064132003,0.060691639,0.05755572,0.054686593,0.052052438,0.049626209,0.047384788,0.045308311,0.043379624,0.041583842,0.039907991,0.038340718,0.036872041,0.035493159,0.034196276,0.032974468,0.031821563,0.030732044,0.029700961,0.028723865,0.027796746,0.026915977,0.026078272,0.025280648,0.024520389,0.023795017,0.023102268,0.022440069,0.021806517,0.021199864,0.020618499,0.020060939,0.019525812,0.019011849,0.018517875,0.0180428,0.01758561,0.017145363,0.016721183,0.016312248,0.015917797,0.015537114,0.01516953,0.01481442,0.014471195,0.014139305,0.013818231,0.013507486,0.013206612,0.012915175,0.012632769,0.012359008,0.01209353,0.01183599,0.011586063,0.011343442,0.011107835,0.010878965,0.01065657,0.010440401,0.010230222,0.010025806,0.00982694,0.009633421,0.009445054,0.009261654,0.009083044,0.008909057,0.008739532,0.008574315,0.00841326,0.008256227,0.008103081,0.007953694,0.007807943,0.007665711,0.007526885,0.007391356,0.007259022,0.007129782,0.00700354,0.006880206,0.006759691,0.006641911,0.006526783,0.006414229,0.006304175,0.006196547,0.006091276,0.005988295,0.005887538,0.005788943,0.00569245,0.005598,0.005505539,0.005415011,0.005326364,0.005239548,0.005154515,0.005071216,0.004989608,0.004909645,0.004831285,0.004754487,0.004679211,0.004605419,0.004533073,0.004462138,0.004392578,0.00432436,0.00425745,0.004191818,0.004127431,0.00406426,0.004002277,0.003941453,0.00388176,0.003823173,0.003765666,0.003709213,0.00365379,0.003599375,0.003545943,0.003493473,0.003441944,0.003391333,0.003341622,0.003292789,0.003244817,0.003197685,0.003151376,0.003105872,0.003061155,0.003017209,0.002974018,0.002931566,0.002889836,0.002848814,0.002808485,0.002768835,0.00272985,0.002691516,0.00265382,0.002616748,0.002580289,0.00254443,0.002509159,0.002474464,0.002440334,0.002406757,0.002373724,0.002341222,0.002309242,0.002277774,0.002246807,0.002216333,0.002186341,0.002156823,0.002127769,0.002099171,0.002071021,0.002043309,0.002016027,0.001989168,0.001962724,0.001936687,0.00191105,0.001885805,0.001860945,0.001836463,0.001812353,0.001788607,0.001765219,0.001742183,0.001719493,0.001697142,0.001675124,0.001653433,0.001632065,0.001611012,0.00159027,0.001569833,0.001549695,0.001529853,0.0015103,0.001491032,0.001472043,0.00145333,0.001434887,0.00141671,0.001398794,0.001381135,0.001363729,0.001346571,0.001329658,0.001312985,0.001296548,0.001280343,0.001264367,0.001248616,0.001233086,0.001217774,0.001202675,0.001187788,0.001173107,0.00115863,0.001144354,0.001130275,0.00111639,0.001102697,0.001089191,0.001075871,0.001062733,0.001049774,0.001036992,0.001024384,0.001011946,0.000999677,0.000987574,0.000975634,0.000963855,0.000952234,0.000940769,0.000929457,0.000918296,0.000907285,0.000896419,0.000885698,0.000875119,0.00086468,0.000854379,0.000844214,0.000834182,0.000824283,0.000814513,0.000804871,0.000795355,0.000785963,0.000776693,0.000767544,0.000758514,0.0007496,0.000740802,0.000732118,0.000723545,0.000715083,0.000706729,0.000698483,0.000690342,0.000682306,0.000674371,0.000666538,0.000658805,0.00065117,0.000643632,0.000636189,0.00062884,0.000621585,0.00061442,0.000607346,0.000600361,0.000593463,0.000586652,0.000579926,0.000573284,0.000566725,0.000560248,0.000553851,0.000547534,0.000541295,0.000535133,0.000529048,0.000523038,0.000517102,0.000511239,0.000505448,0.000499729,0.000494079,0.000488499,0.3472695,0.3472695,0.3472695,0.345168883,0.329723455,0.304212681,0.275066624,0.246652648,0.220984824,0.198604676,0.179368801,0.162891726,0.148747239,0.13654559,0.125955473,0.116704031,0.108569463,0.10137213,0.094966352,0.089233525,0.084076559,0.079415495,0.075184057,0.071326959,0.06779779,0.064557352,0.061572342,0.058814312,0.056258826,0.053884793,0.051673917,0.04961026,0.047679875,0.045870508,0.044171353,0.042572842,0.041066481,0.039644696,0.038300719,0.037028482,0.035822527,0.034677937,0.033590265,0.032555482,0.031569931,0.030630281,0.029733496,0.0288768,0.02805765,0.027273715,0.02652285,0.025803082,0.025112591,0.024449694,0.023812836,0.023200577,0.022611577,0.022044596,0.021498477,0.020972143,0.02046459,0.01997488,0.019502136,0.019045537,0.018604316,0.01817775,0.017765163,0.017365919,0.016979419,0.0166051,0.01624243,0.015890909,0.015550064,0.015219449,0.01489864,0.01458724,0.014284868,0.013991166,0.013705795,0.013428432,0.01315877,0.012896517,0.012641398,0.012393147,0.012151516,0.011916264,0.011687164,0.011463998,0.01124656,0.011034651,0.010828083,0.010626674,0.010430252,0.010238652,0.010051715,0.00986929,0.009691232,0.009517401,0.009347665,0.009181895,0.009019969,0.008861768,0.008707179,0.008556093,0.008408407,0.008264018,0.008122831,0.007984753,0.007849693,0.007717565,0.007588286,0.007461777,0.007337959,0.007216758,0.007098102,0.006981923,0.006868152,0.006756726,0.006647582,0.006540659,0.0064359,0.006333247,0.006232648,0.006134048,0.006037397,0.005942646,0.005849746,0.005758653,0.00566932,0.005581705,0.005495765,0.00541146,0.005328751,0.005247599,0.005167967,0.005089819,0.00501312,0.004937836,0.004863935,0.004791385,0.004720154,0.004650212,0.004581531,0.004514081,0.004447835,0.004382767,0.00431885,0.004256059,0.004194369,0.004133757,0.004074198,0.00401567,0.003958152,0.003901621,0.003846057,0.003791438,0.003737747,0.003684962,0.003633065,0.003582038,0.003531864,0.003482523,0.003434,0.003386279,0.003339341,0.003293173,0.003247759,0.003203083,0.003159132,0.00311589,0.003073344,0.003031481,0.002990287,0.002949748,0.002909854,0.00287059,0.002831946,0.002793908,0.002756467,0.002719611,0.002683328,0.002647608,0.00261244,0.002577815,0.002543722,0.002510151,0.002477094,0.002444539,0.002412479,0.002380905,0.002349807,0.002319178,0.002289008,0.00225929,0.002230015,0.002201176,0.002172765,0.002144774,0.002117197,0.002090025,0.002063253,0.002036872,0.002010877,0.00198526,0.001960016,0.001935137,0.001910618,0.001886452,0.001862634,0.001839157,0.001816016,0.001793206,0.00177072,0.001748554,0.001726702,0.001705159,0.001683919,0.001662979,0.001642332,0.001621975,0.001601902,0.001582108,0.001562591,0.001543344,0.001524363,0.001505645,0.001487185,0.001468979,0.001451023,0.001433313,0.001415844,0.001398615,0.001381619,0.001364855,0.001348318,0.001332004,0.001315911,0.001300035,0.001284372,0.00126892,0.001253674,0.001238632,0.001223791,0.001209148,0.001194699,0.001180442,0.001166374,0.001152491,0.001138792,0.001125273,0.001111932,0.001098766,0.001085772,0.001072948,0.001060292,0.0010478,0.001035471,0.001023302,0.00101129,0.000999434,0.000987731,0.000976179,0.000964776,0.000953519,0.000942407,0.000931437,0.000920607,0.000909915,0.00089936,0.000888939,0.00087865,0.000868492,0.000858462,0.00084856,0.000838782,0.000829127,0.000819594,0.000810181,0.000800886,0.000791708,0.000782644,0.000773693,0.000764854,0.000756125,0.000747505,0.000738992,0.000730584,0.000722281,0.00071408,0.00070598,0.00069798,0.000690079,0.000682275,0.000674567,0.000666953,0.000659432,0.000652004,0.000644666,0.000637418,0.000630257,0.351518147,0.351518147,0.351518147,0.351167835,0.339999474,0.316911329,0.288399286,0.25953658,0.232954966,0.209547748,0.189329786,0.171971681,0.157057366,0.144189234,0.133022589,0.123270761,0.114699549,0.107118802,0.100374157,0.094339904,0.088913165,0.084009252,0.079558017,0.075500985,0.071789103,0.068380973,0.065241447,0.062340522,0.059652441,0.057154987,0.054828898,0.052657402,0.050625829,0.048721297,0.046932448,0.045249232,0.043662725,0.042164977,0.040748884,0.039408076,0.03813683,0.036929983,0.035782874,0.034691278,0.033651359,0.032659625,0.031712892,0.030808251,0.029943037,0.029114805,0.028321308,0.027560477,0.026830404,0.026129327,0.025455615,0.024807758,0.024184353,0.023584097,0.023005781,0.022448273,0.021910522,0.021391544,0.02089042,0.020406289,0.019938345,0.019485832,0.01904804,0.018624301,0.018213988,0.01781651,0.017431308,0.017057859,0.016695664,0.016344257,0.016003193,0.015672052,0.015350438,0.015037974,0.014734303,0.014439085,0.014151999,0.013872739,0.013601013,0.013336545,0.013079071,0.01282834,0.012584112,0.01234616,0.012114264,0.011888217,0.011667821,0.011452884,0.011243225,0.01103867,0.010839053,0.010644214,0.010454,0.010268265,0.010086869,0.009909676,0.009736556,0.009567387,0.009402048,0.009240425,0.009082408,0.008927889,0.008776769,0.008628947,0.00848433,0.008342826,0.008204349,0.008068812,0.007936135,0.007806239,0.007679048,0.007554488,0.00743249,0.007312985,0.007195906,0.007081191,0.006968778,0.006858606,0.006750619,0.006644761,0.006540978,0.006439217,0.006339429,0.006241564,0.006145576,0.006051417,0.005959045,0.005868415,0.005779485,0.005692217,0.005606569,0.005522504,0.005439986,0.005358977,0.005279444,0.005201353,0.00512467,0.005049363,0.004975403,0.004902758,0.004831399,0.004761298,0.004692428,0.00462476,0.00455827,0.004492931,0.004428719,0.00436561,0.00430358,0.004242607,0.004182667,0.00412374,0.004065805,0.00400884,0.003952827,0.003897744,0.003843574,0.003790298,0.003737897,0.003686355,0.003635653,0.003585775,0.003536706,0.003488428,0.003440926,0.003394186,0.003348192,0.00330293,0.003258385,0.003214545,0.003171395,0.003128922,0.003087114,0.003045958,0.003005441,0.002965553,0.00292628,0.002887612,0.002849538,0.002812046,0.002775126,0.002738767,0.00270296,0.002667694,0.002632959,0.002598747,0.002565047,0.00253185,0.002499148,0.002466932,0.002435193,0.002403922,0.002373113,0.002342756,0.002312844,0.002283369,0.002254323,0.0022257,0.002197491,0.00216969,0.00214229,0.002115285,0.002088666,0.002062429,0.002036566,0.002011071,0.001985939,0.001961163,0.001936736,0.001912655,0.001888912,0.001865502,0.00184242,0.001819661,0.001797219,0.001775088,0.001753265,0.001731744,0.00171052,0.001689589,0.001668946,0.001648585,0.001628504,0.001608697,0.001589159,0.001569888,0.001550878,0.001532126,0.001513627,0.001495378,0.001477374,0.001459613,0.001442089,0.0014248,0.001407742,0.001390912,0.001374305,0.001357919,0.00134175,0.001325794,0.00131005,0.001294513,0.00127918,0.001264048,0.001249115,0.001234377,0.001219832,0.001205476,0.001191307,0.001177322,0.001163518,0.001149892,0.001136443,0.001123167,0.001110063,0.001097126,0.001084356,0.001071749,0.001059303,0.001047016,0.001034886,0.00102291,0.001011087,0.000999413,0.000987887,0.000976507,0.00096527,0.000954175,0.00094322,0.000932402,0.00092172,0.000911172,0.000900755,0.000890469,0.000880311,0.00087028,0.000860373,0.000850589,0.000840926,0.000831383,0.000821958,0.00081265,0.000803456,0.000794375,0.000785405,0.000776546,0.000767796,0.000759152,0.000750614,0.00074218,0.000733849,0.00072562,0.00071749,0.00070946,0.000701526,0.000693689,0.355818715,0.355818715,0.355818715,0.355818715,0.349712308,0.330049051,0.302819359,0.273770793,0.246298316,0.221777105,0.200454307,0.182090637,0.166293236,0.152660171,0.140833006,0.130509561,0.121441268,0.113425633,0.106298031,0.099924348,0.094194853,0.089019276,0.084322905,0.080043514,0.076128956,0.072535261,0.069225135,0.066166764,0.063332866,0.060699923,0.058247561,0.055958051,0.053815896,0.051807497,0.049920867,0.048145407,0.046471711,0.044891401,0.043396992,0.041981778,0.040639732,0.039365425,0.038153949,0.037000861,0.035902127,0.034854076,0.033853361,0.032896922,0.03198196,0.031105905,0.030266396,0.029461259,0.028688491,0.027946238,0.027232789,0.026546555,0.025886066,0.025249952,0.024636941,0.024045847,0.023475564,0.022925059,0.022393366,0.021879581,0.021382858,0.020902401,0.020437465,0.019987349,0.019551392,0.019128975,0.01871951,0.018322445,0.01793726,0.017563462,0.017200583,0.016848184,0.016505846,0.016173173,0.01584979,0.01553534,0.015229484,0.014931901,0.014642285,0.014360343,0.014085799,0.013818387,0.013557857,0.013303968,0.013056489,0.012815203,0.012579898,0.012350376,0.012126445,0.011907921,0.011694629,0.011486401,0.011283075,0.011084498,0.010890521,0.010701003,0.010515806,0.0103348,0.010157858,0.009984861,0.00981569,0.009650236,0.009488388,0.009330045,0.009175107,0.009023476,0.008875061,0.008729771,0.008587522,0.00844823,0.008311814,0.008178197,0.008047305,0.007919066,0.007793409,0.007670267,0.007549576,0.007431271,0.007315294,0.007201583,0.007090083,0.006980738,0.006873494,0.006768301,0.006665108,0.006563866,0.006464528,0.006367049,0.006271384,0.00617749,0.006085327,0.005994852,0.005906028,0.005818817,0.00573318,0.005649083,0.00556649,0.005485368,0.005405684,0.005327406,0.005250502,0.005174943,0.005100699,0.005027742,0.004956044,0.004885577,0.004816316,0.004748234,0.004681308,0.004615512,0.004550823,0.004487218,0.004424674,0.00436317,0.004302685,0.004243197,0.004184687,0.004127134,0.00407052,0.004014826,0.003960033,0.003906123,0.00385308,0.003800886,0.003749525,0.00369898,0.003649236,0.003600277,0.003552089,0.003504656,0.003457964,0.003412,0.003366749,0.003322199,0.003278335,0.003235146,0.003192619,0.003150742,0.003109502,0.003068889,0.00302889,0.002989495,0.002950693,0.002912473,0.002874824,0.002837737,0.002801201,0.002765207,0.002729745,0.002694806,0.002660381,0.00262646,0.002593036,0.002560098,0.00252764,0.002495652,0.002464127,0.002433057,0.002402434,0.002372251,0.002342499,0.002313172,0.002284263,0.002255764,0.00222767,0.002199972,0.002172665,0.002145743,0.002119198,0.002093024,0.002067216,0.002041768,0.002016674,0.001991927,0.001967523,0.001943456,0.001919721,0.001896311,0.001873223,0.001850451,0.001827989,0.001805834,0.00178398,0.001762422,0.001741156,0.001720177,0.001699482,0.001679064,0.001658921,0.001639047,0.001619439,0.001600093,0.001581005,0.00156217,0.001543585,0.001525246,0.001507149,0.001489291,0.001471668,0.001454277,0.001437113,0.001420175,0.001403457,0.001386958,0.001370673,0.0013546,0.001338735,0.001323076,0.001307619,0.001292361,0.0012773,0.001262433,0.001247756,0.001233267,0.001218964,0.001204843,0.001190902,0.001177139,0.00116355,0.001150134,0.001136888,0.001123809,0.001110895,0.001098144,0.001085554,0.001073121,0.001060845,0.001048722,0.001036751,0.001024929,0.001013254,0.001001725,0.000990339,0.000979095,0.000967989,0.000957021,0.000946189,0.00093549,0.000924923,0.000914486,0.000904177,0.000893995,0.000883937,0.000874002,0.000864189,0.000854495,0.00084492,0.000835461,0.000826116,0.000816885,0.000807766,0.000798757,0.000789857,0.000781065,0.000772378,0.000763796,0.360171837,0.360171837,0.360171837,0.360171837,0.358171484,0.343149854,0.318149275,0.289387315,0.261148862,0.23546028,0.212910162,0.193403419,0.176592983,0.16208013,0.14949376,0.138514822,0.128878309,0.1203673,0.112805063,0.106047531,0.099976853,0.094496144,0.089525294,0.084997658,0.080857447,0.077057675,0.073558534,0.070326105,0.06733133,0.064549184,0.061958008,0.059538971,0.057275626,0.055153549,0.053160039,0.051283871,0.049515085,0.047844821,0.046265164,0.044769026,0.04335004,0.042002473,0.040721145,0.039501366,0.038338881,0.037229818,0.036170648,0.035158146,0.03418936,0.033261584,0.03237233,0.031519308,0.030700407,0.029913677,0.029157314,0.028429647,0.027729126,0.027054311,0.026403861,0.025776528,0.025171149,0.024586636,0.024021972,0.023476205,0.022948446,0.022437856,0.021943652,0.021465094,0.021001489,0.020552182,0.020116557,0.019694033,0.019284061,0.018886121,0.018499723,0.018124402,0.017759719,0.017405256,0.017060619,0.01672543,0.016399334,0.016081991,0.015773079,0.015472291,0.015179335,0.014893931,0.014615814,0.014344732,0.01408044,0.01382271,0.013571319,0.013326058,0.013086722,0.012853121,0.012625068,0.012402385,0.012184904,0.011972461,0.0117649,0.011562071,0.01136383,0.011170038,0.010980563,0.010795277,0.010614056,0.010436783,0.010263344,0.01009363,0.009927534,0.009764956,0.009605797,0.009449963,0.009297362,0.009147908,0.009001514,0.0088581,0.008717587,0.008579897,0.008444957,0.008312696,0.008183046,0.008055938,0.00793131,0.007809097,0.007689241,0.007571683,0.007456366,0.007343234,0.007232236,0.00712332,0.007016435,0.006911534,0.006808569,0.006707495,0.006608268,0.006510845,0.006415184,0.006321246,0.00622899,0.00613838,0.006049377,0.005961946,0.005876052,0.005791661,0.00570874,0.005627257,0.005547181,0.005468481,0.005391128,0.005315094,0.005240349,0.005166868,0.005094623,0.005023588,0.00495374,0.004885052,0.004817501,0.004751065,0.004685719,0.004621443,0.004558214,0.004496013,0.004434817,0.004374608,0.004315365,0.004257071,0.004199705,0.004143251,0.00408769,0.004033006,0.003979181,0.0039262,0.003874045,0.003822702,0.003772155,0.003722389,0.00367339,0.003625143,0.003577634,0.003530851,0.003484778,0.003439405,0.003394717,0.003350702,0.003307348,0.003264644,0.003222577,0.003181137,0.003140311,0.00310009,0.003060462,0.003021418,0.002982946,0.002945038,0.002907682,0.00287087,0.002834592,0.00279884,0.002763603,0.002728874,0.002694643,0.002660902,0.002627643,0.002594858,0.002562539,0.002530677,0.002499267,0.002468299,0.002437767,0.002407663,0.002377981,0.002348713,0.002319853,0.002291394,0.002263329,0.002235653,0.002208359,0.002181441,0.002154892,0.002128708,0.002102881,0.002077407,0.00205228,0.002027494,0.002003045,0.001978926,0.001955132,0.001931659,0.001908502,0.001885655,0.001863114,0.001840874,0.001818931,0.00179728,0.001775916,0.001754835,0.001734033,0.001713505,0.001693248,0.001673257,0.001653529,0.001634059,0.001614843,0.001595879,0.001577161,0.001558686,0.001540452,0.001522453,0.001504687,0.001487151,0.00146984,0.001452752,0.001435883,0.00141923,0.001402791,0.001386561,0.001370538,0.00135472,0.001339102,0.001323682,0.001308457,0.001293425,0.001278583,0.001263928,0.001249457,0.001235168,0.001221058,0.001207124,0.001193365,0.001179777,0.001166359,0.001153108,0.001140021,0.001127097,0.001114333,0.001101727,0.001089276,0.001076979,0.001064833,0.001052836,0.001040987,0.001029283,0.001017722,0.001006303,0.000995023,0.00098388,0.000972874,0.000962,0.000951259,0.000940648,0.000930166,0.00091981,0.000909579,0.000899472,0.000889486,0.00087962,0.000869873,0.000860242,0.000850727,0.000841326,0.364578156,0.364578156,0.364578156,0.364578156,0.364530138,0.355512499,0.334062108,0.306377322,0.277671408,0.25082768,0.226936446,0.206133634,0.18815697,0.172625636,0.159159672,0.147422543,0.137130686,0.128050347,0.119990463,0.112795095,0.10633669,0.10051046,0.095229853,0.090422958,0.086029661,0.081999404,0.078289412,0.074863288,0.071689887,0.068742422,0.065997737,0.063435718,0.061038817,0.058791658,0.056680713,0.054694036,0.052821038,0.051052301,0.049379422,0.047794878,0.046291916,0.044864456,0.04350701,0.042214612,0.040982755,0.039807343,0.038684641,0.037611239,0.036584016,0.035600111,0.034656895,0.033751949,0.032883042,0.032048117,0.031245267,0.03047273,0.029728868,0.029012161,0.028321196,0.027654655,0.02701131,0.026390013,0.025789693,0.025209346,0.024648032,0.024104868,0.023579026,0.023069727,0.02257624,0.022097875,0.02163398,0.021183944,0.020747187,0.020323162,0.019911351,0.019511264,0.019122437,0.01874443,0.018376827,0.018019229,0.017671263,0.017332568,0.017002806,0.016681652,0.016368798,0.016063949,0.015766825,0.015477159,0.015194696,0.014919191,0.014650411,0.014388133,0.014132144,0.01388224,0.013638226,0.013399913,0.013167123,0.012939684,0.01271743,0.012500203,0.01228785,0.012080226,0.011877189,0.011678606,0.011484345,0.011294282,0.011108296,0.010926272,0.010748099,0.010573668,0.010402876,0.010235622,0.010071812,0.009911351,0.009754151,0.009600123,0.009449185,0.009301256,0.009156258,0.009014114,0.008874753,0.008738103,0.008604097,0.008472668,0.008343751,0.008217286,0.008093213,0.007971472,0.007852008,0.007734766,0.007619693,0.007506738,0.007395852,0.007286985,0.007180092,0.007075125,0.006972043,0.006870801,0.006771358,0.006673674,0.006577709,0.006483425,0.006390785,0.006299753,0.006210294,0.006122374,0.00603596,0.005951019,0.00586752,0.005785432,0.005704727,0.005625374,0.005547345,0.005470614,0.005395153,0.005320936,0.005247938,0.005176135,0.005105501,0.005036014,0.004967651,0.004900389,0.004834206,0.004769082,0.004704995,0.004641925,0.004579853,0.004518759,0.004458624,0.004399431,0.004341161,0.004283796,0.00422732,0.004171715,0.004116966,0.004063057,0.004009971,0.003957695,0.003906212,0.003855509,0.003805571,0.003756384,0.003707934,0.00366021,0.003613196,0.003566881,0.003521253,0.003476298,0.003432006,0.003388365,0.003345362,0.003302987,0.00326123,0.003220079,0.003179524,0.003139555,0.003100161,0.003061333,0.003023062,0.002985337,0.00294815,0.002911491,0.002875352,0.002839724,0.002804599,0.002769967,0.002735822,0.002702155,0.002668957,0.002636223,0.002603943,0.002572111,0.002540719,0.00250976,0.002479227,0.002449114,0.002419413,0.002390118,0.002361223,0.002332721,0.002304606,0.002276872,0.002249513,0.002222523,0.002195897,0.002169628,0.002143711,0.002118141,0.002092912,0.002068019,0.002043457,0.002019221,0.001995306,0.001971706,0.001948418,0.001925436,0.001902757,0.001880374,0.001858284,0.001836483,0.001814966,0.001793728,0.001772767,0.001752077,0.001731654,0.001711496,0.001691597,0.001671954,0.001652564,0.001633421,0.001614524,0.001595869,0.001577451,0.001559267,0.001541315,0.00152359,0.00150609,0.001488811,0.00147175,0.001454904,0.00143827,0.001421845,0.001405626,0.00138961,0.001373794,0.001358176,0.001342752,0.001327519,0.001312476,0.00129762,0.001282947,0.001268456,0.001254144,0.001240008,0.001226046,0.001212256,0.001198635,0.00118518,0.001171891,0.001158763,0.001145796,0.001132987,0.001120333,0.001107834,0.001095485,0.001083287,0.001071236,0.00105933,0.001047568,0.001035948,0.001024468,0.001013125,0.001001919,0.000990847,0.000979907,0.000969098,0.000958418,0.000947866,0.000937439,0.000927136,0.369038321,0.369038321,0.369038321,0.369038321,0.369038321,0.366085139,0.349888569,0.324530233,0.295956028,0.268107796,0.242802432,0.220545339,0.201226422,0.184510698,0.170018599,0.157397377,0.146343159,0.136602723,0.127968027,0.120268922,0.113366179,0.107145484,0.101512532,0.096389081,0.091709829,0.087419949,0.083473127,0.079830021,0.076457016,0.073325245,0.070409786,0.067689023,0.065144117,0.062758583,0.060517932,0.058409382,0.056421613,0.054544568,0.052769278,0.051087721,0.049492704,0.04797775,0.04653702,0.045165231,0.043857594,0.042609754,0.041417747,0.040277953,0.03918706,0.038142033,0.037140085,0.036178651,0.035255368,0.034368055,0.033514695,0.032693418,0.031902495,0.031140314,0.03040538,0.0296963,0.029011773,0.028350586,0.027711606,0.027093772,0.026496087,0.025917621,0.025357497,0.024814893,0.024289034,0.023779191,0.023284678,0.022804845,0.022339081,0.021886808,0.021447478,0.021020574,0.020605605,0.020202106,0.019809637,0.019427778,0.019056131,0.01869432,0.018341983,0.017998778,0.017664379,0.017338476,0.017020772,0.016710984,0.016408843,0.016114089,0.015826477,0.015545772,0.015271746,0.015004186,0.014742883,0.014487639,0.014238266,0.01399458,0.013756408,0.01352358,0.013295937,0.013073324,0.012855591,0.012642595,0.012434201,0.012230274,0.012030687,0.011835319,0.01164405,0.011456767,0.01127336,0.011093723,0.010917755,0.010745356,0.010576432,0.01041089,0.010248642,0.010089603,0.009933689,0.00978082,0.00963092,0.009483913,0.009339726,0.00919829,0.009059537,0.008923401,0.008789817,0.008658726,0.008530066,0.008403781,0.008279813,0.008158108,0.008038614,0.007921279,0.007806053,0.007692888,0.007581738,0.007472556,0.007365299,0.007259923,0.007156387,0.00705465,0.006954673,0.006856418,0.006759846,0.006664923,0.006571612,0.006479879,0.006389691,0.006301015,0.006213821,0.006128076,0.00604375,0.005960816,0.005879244,0.005799006,0.005720075,0.005642425,0.005566031,0.005490867,0.005416908,0.005344132,0.005272515,0.005202033,0.005132666,0.005064391,0.004997187,0.004931035,0.004865912,0.004801802,0.004738683,0.004676537,0.004615347,0.004555093,0.00449576,0.004437329,0.004379785,0.00432311,0.00426729,0.004212308,0.00415815,0.0041048,0.004052244,0.004000467,0.003949457,0.003899199,0.00384968,0.003800887,0.003752807,0.003705429,0.003658738,0.003612725,0.003567377,0.003522682,0.003478629,0.003435208,0.003392408,0.003350218,0.003308628,0.003267628,0.003227208,0.003187357,0.003148068,0.00310933,0.003071135,0.003033472,0.002996335,0.002959714,0.0029236,0.002887985,0.002852862,0.002818223,0.002784059,0.002750363,0.002717127,0.002684345,0.002652008,0.002620111,0.002588645,0.002557605,0.002526983,0.002496773,0.002466969,0.002437563,0.002408551,0.002379926,0.002351682,0.002323813,0.002296313,0.002269177,0.002242399,0.002215974,0.002189896,0.00216416,0.002138762,0.002113695,0.002088955,0.002064538,0.002040437,0.002016649,0.001993169,0.001969993,0.001947115,0.001924531,0.001902238,0.001880231,0.001858505,0.001837057,0.001815882,0.001794978,0.001774338,0.001753961,0.001733842,0.001713977,0.001694363,0.001674996,0.001655872,0.001636989,0.001618343,0.00159993,0.001581747,0.001563791,0.001546058,0.001528546,0.001511252,0.001494172,0.001477303,0.001460643,0.001444188,0.001427936,0.001411884,0.00139603,0.001380369,0.001364901,0.001349621,0.001334528,0.001319619,0.001304892,0.001290343,0.001275972,0.001261774,0.001247748,0.001233892,0.001220203,0.001206679,0.001193318,0.001180117,0.001167075,0.001154189,0.001141458,0.001128878,0.001116449,0.001104168,0.001092034,0.001080043,0.001068195,0.001056488,0.001044919,0.001033487,0.00102219,0.373552991,0.373552991,0.373552991,0.373552991,0.373552991,0.373493884,0.36450705,0.343325012,0.315977213,0.287542016,0.26085021,0.236994572,0.216134494,0.198033668,0.182333066,0.168669157,0.156717173,0.146201751,0.136894751,0.128608895,0.121190759,0.114514419,0.108476103,0.102989855,0.097984067,0.093398731,0.089183258,0.085294753,0.081696638,0.078357553,0.075250473,0.072351992,0.069641745,0.067101934,0.064716939,0.062472995,0.060357929,0.058360934,0.056472385,0.054683681,0.052987113,0.051375752,0.049843351,0.048384264,0.046993375,0.045666038,0.044398022,0.043185469,0.042024849,0.04091293,0.039846744,0.038823563,0.037840874,0.036896356,0.035987865,0.035113417,0.034271172,0.03345942,0.032676573,0.031921152,0.031191778,0.030487164,0.029806106,0.029147478,0.028510228,0.027893365,0.027295962,0.026717146,0.026156096,0.025612041,0.025084252,0.024572042,0.024074763,0.023591801,0.023122579,0.022666546,0.022223185,0.021792001,0.021372528,0.020964323,0.020566964,0.020180051,0.019803203,0.019436057,0.019078267,0.018729505,0.018389456,0.018057821,0.017734315,0.017418663,0.017110605,0.016809891,0.016516282,0.016229549,0.015949473,0.015675846,0.015408464,0.015147136,0.014891675,0.014641906,0.014397656,0.014158761,0.013925065,0.013696415,0.013472666,0.013253678,0.013039315,0.012829447,0.012623949,0.012422701,0.012225585,0.01203249,0.011843307,0.011657932,0.011476263,0.011298204,0.011123661,0.010952541,0.010784758,0.010620227,0.010458865,0.010300592,0.010145333,0.009993011,0.009843556,0.009696898,0.009552968,0.009411702,0.009273035,0.009136907,0.009003257,0.008872027,0.008743162,0.008616607,0.008492309,0.008370217,0.008250281,0.008132452,0.008016683,0.007902929,0.007791145,0.007681289,0.007573317,0.00746719,0.007362867,0.007260311,0.007159483,0.007060346,0.006962866,0.006867008,0.006772737,0.006680022,0.00658883,0.00649913,0.006410891,0.006324085,0.006238682,0.006154654,0.006071973,0.005990614,0.005910549,0.005831755,0.005754205,0.005677875,0.005602743,0.005528784,0.005455977,0.0053843,0.005313731,0.005244248,0.005175833,0.005108465,0.005042124,0.004976791,0.004912448,0.004849076,0.004786658,0.004725177,0.004664615,0.004604955,0.004546183,0.004488281,0.004431234,0.004375027,0.004319645,0.004265074,0.004211299,0.004158307,0.004106083,0.004054615,0.00400389,0.003953894,0.003904615,0.003856041,0.003808161,0.003760961,0.003714431,0.00366856,0.003623336,0.003578748,0.003534787,0.003491441,0.003448701,0.003406556,0.003364997,0.003324014,0.003283597,0.003243739,0.003204428,0.003165658,0.003127418,0.003089701,0.003052498,0.003015801,0.002979602,0.002943893,0.002908666,0.002873914,0.002839629,0.002805804,0.002772432,0.002739505,0.002707018,0.002674962,0.002643332,0.002612121,0.002581322,0.002550929,0.002520937,0.002491338,0.002462128,0.002433299,0.002404847,0.002376765,0.002349049,0.002321692,0.00229469,0.002268036,0.002241727,0.002215757,0.00219012,0.002164812,0.002139828,0.002115164,0.002090815,0.002066775,0.002043041,0.002019609,0.001996473,0.00197363,0.001951075,0.001928805,0.001906814,0.0018851,0.001863658,0.001842485,0.001821576,0.001800928,0.001780537,0.0017604,0.001740512,0.001720871,0.001701474,0.001682315,0.001663394,0.001644705,0.001626246,0.001608013,0.001590005,0.001572216,0.001554645,0.001537289,0.001520144,0.001503207,0.001486476,0.001469949,0.001453621,0.001437491,0.001421556,0.001405813,0.00139026,0.001374893,0.001359712,0.001344712,0.001329892,0.001315249,0.001300782,0.001286486,0.001272362,0.001258405,0.001244614,0.001230986,0.00121752,0.001204214,0.001191065,0.001178071,0.00116523,0.00115254,0.00114,0.001127606,0.37812283,0.37812283,0.37812283,0.37812283,0.37812283,0.37812283,0.376174462,0.361646431,0.337385888,0.309286615,0.281469571,0.255939931,0.233330599,0.213604759,0.196466553,0.181556412,0.168531331,0.157091764,0.146985977,0.138005944,0.129980796,0.12277024,0.116258769,0.110350863,0.104967109,0.100041103,0.095516996,0.091347536,0.087492523,0.083917562,0.080593075,0.077493494,0.074596614,0.071883061,0.069335861,0.066940077,0.064682521,0.062551498,0.060536606,0.058628562,0.056819054,0.055100618,0.053466532,0.051910726,0.050427705,0.049012482,0.047660521,0.046367685,0.045130196,0.043944593,0.042807702,0.041716606,0.040668619,0.039661263,0.038692251,0.037759463,0.036860937,0.035994852,0.035159513,0.034353344,0.033574878,0.032822743,0.032095658,0.031392426,0.030711924,0.030053101,0.029414969,0.028796601,0.028197125,0.027615719,0.027051609,0.026504066,0.0259724,0.025455961,0.024954134,0.024466334,0.023992012,0.023530643,0.023081732,0.022644808,0.022219423,0.021805152,0.021401591,0.021008355,0.020625077,0.020251408,0.019887014,0.019531577,0.019184794,0.018846375,0.018516043,0.018193532,0.017878589,0.017570971,0.017270446,0.016976791,0.016689792,0.016409244,0.016134951,0.015866725,0.015604383,0.015347752,0.015096664,0.014850959,0.014610482,0.014375083,0.014144619,0.013918952,0.013697949,0.013481482,0.013269427,0.013061664,0.012858079,0.012658561,0.012463002,0.012271298,0.01208335,0.011899062,0.011718339,0.011541091,0.011367232,0.011196675,0.01102934,0.010865148,0.010704021,0.010545886,0.01039067,0.010238304,0.010088721,0.009941854,0.00979764,0.009656017,0.009516927,0.00938031,0.009246111,0.009114274,0.008984747,0.008857478,0.008732417,0.008609516,0.008488726,0.008370002,0.0082533,0.008138576,0.008025787,0.007914892,0.007805852,0.007698627,0.00759318,0.007489473,0.007387471,0.007287138,0.00718844,0.007091345,0.006995819,0.006901832,0.006809352,0.00671835,0.006628796,0.006540662,0.006453919,0.006368541,0.006284502,0.006201775,0.006120336,0.006040159,0.005961221,0.005883498,0.005806967,0.005731606,0.005657394,0.005584308,0.005512328,0.005441434,0.005371606,0.005302824,0.005235069,0.005168323,0.005102567,0.005037784,0.004973957,0.004911068,0.0048491,0.004788039,0.004727866,0.004668568,0.004610129,0.004552534,0.004495768,0.004439817,0.004384667,0.004330305,0.004276716,0.004223889,0.004171809,0.004120465,0.004069844,0.004019934,0.003970724,0.003922201,0.003874354,0.003827172,0.003780645,0.003734761,0.00368951,0.003644881,0.003600866,0.003557453,0.003514633,0.003472397,0.003430735,0.003389638,0.003349097,0.003309104,0.003269649,0.003230725,0.003192323,0.003154434,0.003117051,0.003080166,0.003043772,0.00300786,0.002972423,0.002937454,0.002902946,0.002868892,0.002835285,0.002802118,0.002769384,0.002737077,0.002705191,0.002673719,0.002642655,0.002611993,0.002581726,0.00255185,0.002522359,0.002493245,0.002464505,0.002436133,0.002408122,0.002380469,0.002353167,0.002326212,0.002299599,0.002273322,0.002247377,0.00222176,0.002196464,0.002171486,0.002146822,0.002122466,0.002098415,0.002074663,0.002051208,0.002028044,0.002005168,0.001982575,0.001960262,0.001938224,0.001916458,0.00189496,0.001873727,0.001852754,0.001832038,0.001811575,0.001791363,0.001771397,0.001751674,0.001732191,0.001712945,0.001693932,0.00167515,0.001656594,0.001638262,0.001620152,0.001602259,0.001584581,0.001567116,0.00154986,0.00153281,0.001515964,0.001499319,0.001482873,0.001466622,0.001450565,0.001434698,0.001419019,0.001403526,0.001388216,0.001373087,0.001358137,0.001343362,0.001328761,0.001314332,0.001300072,0.001285979,0.00127205,0.001258285,0.001244681,0.382748512,0.382748512,0.382748512,0.382748512,0.382748512,0.382748512,0.382748512,0.377358432,0.359002453,0.333042559,0.3048731,0.277811108,0.253299638,0.23169137,0.212842393,0.196432756,0.182112323,0.169558122,0.158491747,0.148680307,0.13993147,0.132087042,0.125016817,0.118613277,0.112787223,0.107464255,0.102581958,0.098087669,0.093936697,0.090090907,0.08651758,0.083188502,0.08007922,0.077168448,0.07443757,0.071870237,0.069452035,0.067170208,0.065013426,0.06297159,0.061035672,0.059197576,0.057450018,0.055786429,0.054200867,0.052687948,0.051242775,0.04986089,0.048538222,0.047271046,0.046055949,0.044889796,0.043769702,0.042693006,0.041657255,0.040660177,0.039699669,0.038773779,0.037880694,0.037018728,0.03618631,0.035381974,0.034604351,0.033852161,0.033124206,0.032419362,0.031736576,0.031074857,0.030433275,0.029810954,0.029207068,0.02862084,0.028051534,0.027498458,0.026960954,0.026438403,0.025930217,0.025435838,0.024954738,0.024486415,0.024030394,0.023586222,0.023153468,0.022731722,0.022320594,0.021919711,0.02152872,0.021147282,0.020775074,0.020411787,0.020057126,0.019710809,0.019372567,0.019042141,0.018719284,0.018403758,0.018095337,0.017793802,0.017498945,0.017210564,0.016928466,0.016652468,0.016382389,0.01611806,0.015859315,0.015605995,0.015357949,0.015115029,0.014877093,0.014644006,0.014415635,0.014191853,0.013972538,0.013757571,0.013546839,0.013340232,0.013137642,0.012938967,0.012744108,0.012552968,0.012365453,0.012181475,0.012000946,0.011823782,0.0116499,0.011479223,0.011311672,0.011147174,0.010985658,0.010827052,0.01067129,0.010518306,0.010368035,0.010220417,0.01007539,0.009932898,0.009792883,0.00965529,0.009520066,0.009387158,0.009256517,0.009128094,0.00900184,0.008877709,0.008755656,0.008635638,0.00851761,0.008401533,0.008287365,0.008175067,0.008064601,0.007955929,0.007849014,0.007743822,0.007640317,0.007538466,0.007438236,0.007339595,0.007242512,0.007146956,0.007052898,0.006960308,0.006869159,0.006779422,0.006691071,0.006604079,0.006518421,0.006434071,0.006351006,0.006269201,0.006188633,0.006109278,0.006031116,0.005954123,0.005878279,0.005803563,0.005729954,0.005657433,0.00558598,0.005515576,0.005446202,0.005377841,0.005310474,0.005244084,0.005178655,0.005114168,0.005050609,0.00498796,0.004926207,0.004865335,0.004805327,0.004746169,0.004687848,0.004630349,0.004573657,0.004517761,0.004462646,0.004408299,0.004354708,0.00430186,0.004249744,0.004198347,0.004147657,0.004097663,0.004048354,0.003999718,0.003951745,0.003904425,0.003857746,0.003811699,0.003766273,0.00372146,0.003677248,0.003633629,0.003590593,0.003548132,0.003506235,0.003464896,0.003424104,0.003383852,0.003344131,0.003304933,0.00326625,0.003228075,0.003190399,0.003153215,0.003116515,0.003080293,0.003044541,0.003009252,0.002974419,0.002940035,0.002906094,0.002872589,0.002839514,0.002806862,0.002774627,0.002742803,0.002711385,0.002680365,0.002649739,0.0026195,0.002589643,0.002560163,0.002531054,0.002502311,0.002473928,0.002445901,0.002418224,0.002390892,0.0023639,0.002337245,0.00231092,0.002284921,0.002259244,0.002233885,0.002208838,0.002184099,0.002159664,0.00213553,0.002111691,0.002088143,0.002064883,0.002041907,0.002019211,0.00199679,0.001974642,0.001952762,0.001931146,0.001909792,0.001888696,0.001867854,0.001847262,0.001826918,0.001806818,0.001786958,0.001767336,0.001747949,0.001728793,0.001709864,0.001691161,0.00167268,0.001654419,0.001636373,0.001618541,0.00160092,0.001583506,0.001566298,0.001549292,0.001532486,0.001515877,0.001499463,0.001483241,0.001467209,0.001451364,0.001435703,0.001420225,0.001404927,0.001389807,0.001374862,0.38743072,0.38743072,0.38743072,0.38743072,0.38743072,0.38743072,0.38743072,0.387346327,0.378377704,0.357627538,0.330859117,0.302926516,0.276563415,0.252855512,0.231992636,0.213776221,0.197880461,0.18396771,0.171732276,0.16091247,0.151289796,0.142683717,0.134945472,0.12795233,0.121602673,0.115811958,0.11050947,0.105635721,0.101140384,0.096980639,0.093119857,0.089526536,0.086173449,0.083036953,0.080096418,0.077333768,0.074733101,0.072280369,0.06996312,0.067770275,0.065691944,0.063719274,0.061844308,0.060059886,0.058359534,0.056737396,0.055188152,0.053706962,0.052289413,0.050931471,0.049629442,0.048379936,0.047179835,0.04602627,0.044916591,0.043848352,0.042819285,0.04182729,0.040870416,0.03994685,0.039054904,0.038193001,0.037359673,0.036553546,0.035773334,0.035017833,0.034285912,0.033576511,0.032888633,0.032221341,0.031573749,0.030945026,0.030334385,0.029741085,0.029164423,0.028603737,0.028058397,0.027527809,0.027011408,0.026508659,0.026019051,0.025542103,0.025077353,0.024624365,0.024182722,0.023752027,0.023331901,0.022921983,0.022521928,0.022131408,0.021750107,0.021377724,0.021013972,0.020658575,0.02031127,0.019971802,0.019639931,0.019315424,0.018998056,0.018687615,0.018383895,0.018086698,0.017795834,0.017511121,0.017232383,0.016959451,0.016692161,0.016430358,0.01617389,0.015922612,0.015676383,0.015435067,0.015198535,0.01496666,0.014739321,0.014516399,0.014297782,0.014083358,0.013873024,0.013666674,0.013464212,0.013265539,0.013070564,0.012879196,0.012691349,0.012506937,0.01232588,0.012148097,0.011973512,0.01180205,0.011633639,0.011468209,0.011305693,0.011146023,0.010989136,0.010834969,0.010683463,0.010534558,0.010388197,0.010244325,0.010102888,0.009963834,0.009827111,0.00969267,0.009560462,0.009430442,0.009302563,0.00917678,0.00905305,0.008931332,0.008811584,0.008693766,0.00857784,0.008463766,0.008351509,0.008241032,0.0081323,0.008025279,0.007919935,0.007816236,0.00771415,0.007613646,0.007514693,0.007417262,0.007321324,0.007226851,0.007133816,0.007042191,0.006951951,0.00686307,0.006775522,0.006689283,0.00660433,0.006520639,0.006438187,0.006356952,0.006276912,0.006198046,0.006120333,0.006043752,0.005968284,0.005893909,0.005820607,0.005748361,0.005677152,0.005606962,0.005537773,0.005469569,0.005402332,0.005336047,0.005270696,0.005206265,0.005142738,0.0050801,0.005018335,0.00495743,0.00489737,0.004838142,0.004779731,0.004722124,0.004665309,0.004609272,0.004554,0.004499482,0.004445706,0.004392658,0.004340329,0.004288706,0.004237777,0.004187533,0.004137963,0.004089055,0.0040408,0.003993186,0.003946205,0.003899847,0.003854101,0.003808959,0.003764411,0.003720448,0.003677061,0.003634241,0.00359198,0.00355027,0.003509101,0.003468466,0.003428357,0.003388766,0.003349685,0.003311107,0.003273024,0.003235429,0.003198314,0.003161674,0.003125499,0.003089785,0.003054524,0.003019709,0.002985334,0.002951394,0.00291788,0.002884788,0.002852111,0.002819843,0.002787979,0.002756512,0.002725438,0.00269475,0.002664443,0.002634511,0.00260495,0.002575754,0.002546918,0.002518437,0.002490306,0.002462521,0.002435075,0.002407966,0.002381187,0.002354735,0.002328604,0.002302792,0.002277292,0.002252102,0.002227216,0.002202631,0.002178342,0.002154345,0.002130638,0.002107214,0.002084072,0.002061207,0.002038614,0.002016292,0.001994236,0.001972442,0.001950907,0.001929628,0.0019086,0.001887822,0.001867289,0.001846999,0.001826948,0.001807133,0.00178755,0.001768198,0.001749072,0.001730171,0.00171149,0.001693028,0.00167478,0.001656746,0.001638921,0.001621303,0.00160389,0.001586678,0.001569666,0.00155285,0.001536229,0.001519799,0.392170145,0.392170145,0.392170145,0.392170145,0.392170145,0.392170145,0.392170145,0.392170145,0.391563574,0.380273543,0.358252679,0.331215442,0.303598908,0.277771519,0.254616176,0.23423866,0.216417743,0.200830963,0.187152779,0.175091036,0.164396295,0.154860294,0.146310726,0.138605343,0.131626527,0.125276665,0.119474358,0.114151361,0.109250136,0.104721901,0.100525063,0.096623972,0.092987911,0.089590284,0.086407951,0.083420694,0.080610767,0.077962533,0.075462163,0.073097377,0.070857236,0.068731966,0.0667128,0.064791856,0.062962029,0.061216891,0.059550617,0.057957913,0.056433958,0.054974351,0.053575064,0.052232407,0.050942991,0.049703695,0.048511645,0.047364184,0.046258858,0.045193391,0.044165673,0.043173741,0.042215771,0.041290063,0.040395029,0.039529188,0.038691153,0.037879627,0.037093393,0.036331308,0.035592299,0.034875358,0.034179534,0.033503932,0.032847707,0.032210063,0.031590246,0.030987544,0.030401282,0.029830822,0.029275558,0.028734916,0.028208349,0.027695341,0.027195398,0.026708052,0.026232855,0.025769383,0.025317231,0.024876011,0.024445355,0.024024911,0.023614341,0.023213323,0.02282155,0.022438727,0.022064571,0.021698812,0.021341191,0.020991459,0.020649378,0.020314718,0.01998726,0.019666792,0.019353112,0.019046024,0.01874534,0.01845088,0.01816247,0.017879941,0.017603133,0.01733189,0.017066061,0.016805503,0.016550075,0.016299643,0.016054076,0.015813249,0.01557704,0.015345332,0.015118012,0.01489497,0.0146761,0.014461298,0.014250467,0.014043508,0.01384033,0.013640842,0.013444957,0.013252589,0.013063657,0.01287808,0.012695783,0.012516689,0.012340725,0.012167822,0.011997911,0.011830924,0.011666798,0.01150547,0.011346878,0.011190963,0.011037667,0.010886935,0.010738712,0.010592944,0.010449581,0.010308571,0.010169866,0.010033419,0.009899183,0.009767112,0.009637164,0.009509294,0.009383462,0.009259627,0.009137749,0.009017789,0.00889971,0.008783475,0.008669048,0.008556394,0.00844548,0.008336272,0.008228737,0.008122843,0.008018561,0.007915859,0.007814708,0.007715079,0.007616945,0.007520277,0.007425049,0.007331235,0.007238809,0.007147746,0.007058021,0.00696961,0.006882491,0.006796639,0.006712034,0.006628652,0.006546473,0.006465475,0.006385638,0.006306942,0.006229367,0.006152894,0.006077505,0.00600318,0.005929902,0.005857653,0.005786416,0.005716173,0.005646909,0.005578607,0.005511251,0.005444825,0.005379315,0.005314705,0.00525098,0.005188126,0.00512613,0.005064977,0.005004653,0.004945145,0.004886441,0.004828528,0.004771392,0.004715022,0.004659406,0.004604532,0.004550388,0.004496962,0.004444245,0.004392223,0.004340888,0.004290229,0.004240234,0.004190894,0.004142199,0.004094138,0.004046704,0.003999885,0.003953673,0.003908058,0.003863032,0.003818586,0.00377471,0.003731398,0.00368864,0.003646428,0.003604754,0.003563611,0.003522989,0.003482883,0.003443284,0.003404185,0.003365578,0.003327458,0.003289815,0.003252645,0.003215939,0.003179692,0.003143896,0.003108546,0.003073635,0.003039157,0.003005105,0.002971474,0.002938258,0.00290545,0.002873046,0.00284104,0.002809425,0.002778197,0.002747351,0.00271688,0.002686781,0.002657047,0.002627673,0.002598656,0.002569989,0.002541669,0.00251369,0.002486047,0.002458737,0.002431755,0.002405096,0.002378755,0.00235273,0.002327015,0.002301606,0.002276499,0.002251691,0.002227177,0.002202953,0.002179016,0.002155361,0.002131985,0.002108885,0.002086056,0.002063495,0.002041199,0.002019164,0.001997387,0.001975864,0.001954592,0.001933568,0.001912789,0.001892251,0.001871952,0.001851888,0.001832056,0.001812453,0.001793077,0.001773924,0.001754992,0.001736278,0.001717778,0.001699491,0.001681414,0.396967483,0.396967483,0.396967483,0.396967483,0.396967483,0.396967483,0.396967483,0.396967483,0.396967483,0.395993481,0.383826912,0.361456067,0.334486163,0.307136612,0.281617039,0.25873383,0.238568237,0.220898645,0.205410918,0.191789631,0.179751917,0.169056052,0.159499895,0.150915899,0.143165476,0.136133813,0.129725446,0.123860621,0.118472357,0.113504088,0.108907776,0.104642404,0.100672765,0.096968479,0.093503208,0.090254011,0.087200814,0.084325981,0.081613954,0.079050958,0.076624749,0.074324412,0.072140178,0.070063285,0.068085843,0.066200735,0.064401516,0.062682343,0.061037899,0.059463341,0.05795424,0.056506547,0.055116542,0.05378081,0.052496206,0.051259827,0.050068993,0.048921221,0.047814212,0.046745831,0.045714091,0.044717145,0.043753269,0.042820855,0.041918398,0.041044492,0.040197818,0.039377141,0.038581298,0.037809198,0.037059815,0.036332181,0.035625385,0.034938565,0.034270908,0.033621647,0.032990055,0.032375443,0.031777158,0.031194581,0.030627127,0.030074235,0.029535378,0.029010049,0.028497769,0.02799808,0.027510548,0.027034755,0.026570307,0.026116823,0.025673943,0.02524132,0.024818624,0.024405539,0.02400176,0.023606998,0.023220975,0.022843424,0.022474089,0.022112725,0.021759095,0.021412972,0.02107414,0.020742389,0.020417517,0.02009933,0.019787643,0.019482275,0.019183053,0.01888981,0.018602386,0.018320625,0.018044378,0.017773499,0.017507851,0.017247298,0.016991709,0.01674096,0.016494928,0.016253496,0.016016551,0.015783981,0.015555681,0.015331548,0.015111481,0.014895385,0.014683164,0.014474729,0.014269991,0.014068864,0.013871267,0.013677118,0.01348634,0.013298857,0.013114595,0.012933484,0.012755453,0.012580435,0.012408365,0.012239179,0.012072815,0.011909214,0.011748317,0.011590066,0.011434407,0.011281285,0.011130648,0.010982445,0.010836627,0.010693144,0.010551951,0.010413,0.010276247,0.010141648,0.010009161,0.009878745,0.009750359,0.009623963,0.009499519,0.00937699,0.009256338,0.009137529,0.009020527,0.008905299,0.008791811,0.00868003,0.008569925,0.008461466,0.008354621,0.008249361,0.008145658,0.008043483,0.007942809,0.007843609,0.007745856,0.007649525,0.00755459,0.007461027,0.007368812,0.007277922,0.007188332,0.007100022,0.007012967,0.006927148,0.006842543,0.006759131,0.006676892,0.006595807,0.006515855,0.006437017,0.006359276,0.006282613,0.00620701,0.006132449,0.006058914,0.005986387,0.005914852,0.005844293,0.005774695,0.005706041,0.005638317,0.005571507,0.005505597,0.005440573,0.00537642,0.005313125,0.005250675,0.005189055,0.005128254,0.005068257,0.005009054,0.004950631,0.004892976,0.004836078,0.004779925,0.004724506,0.004669809,0.004615823,0.004562538,0.004509943,0.004458028,0.004406782,0.004356196,0.004306259,0.004256962,0.004208296,0.004160251,0.004112817,0.004065987,0.004019751,0.0039741,0.003929026,0.00388452,0.003840574,0.003797181,0.003754332,0.003712019,0.003670235,0.003628972,0.003588222,0.003547979,0.003508235,0.003468983,0.003430216,0.003391927,0.00335411,0.003316757,0.003279863,0.003243421,0.003207425,0.003171868,0.003136745,0.003102049,0.003067774,0.003033916,0.003000467,0.002967423,0.002934777,0.002902525,0.002870662,0.002839181,0.002808077,0.002777346,0.002746983,0.002716982,0.002687339,0.002658049,0.002629107,0.002600508,0.002572249,0.002544324,0.002516729,0.00248946,0.002462512,0.002435881,0.002409563,0.002383554,0.002357849,0.002332446,0.002307339,0.002282526,0.002258001,0.002233763,0.002209805,0.002186126,0.002162722,0.002139588,0.002116722,0.002094121,0.002071779,0.002049696,0.002027866,0.002006287,0.001984956,0.001963869,0.001943024,0.001922417,0.001902045,0.001881906,0.001861996,0.401823444,0.401823444,0.401823444,0.401823444,0.401823444,0.401823444,0.401823444,0.401823444,0.401823444,0.401823444,0.401029057,0.389434464,0.367561273,0.340923618,0.313747429,0.288283602,0.265378221,0.245141452,0.227370855,0.211764621,0.198015196,0.185844747,0.175014775,0.165325207,0.156609808,0.148730809,0.141573889,0.135043857,0.129061088,0.123558632,0.118479887,0.113776743,0.109408079,0.105338567,0.101537703,0.097979016,0.094639431,0.091498747,0.0885392,0.085745109,0.083102581,0.080599261,0.078224125,0.075967303,0.073819936,0.071774044,0.06982242,0.067958541,0.066176483,0.064470858,0.062836751,0.061269671,0.059765502,0.058320468,0.056931098,0.055594193,0.054306801,0.053066193,0.051869842,0.050715405,0.049600706,0.04852372,0.047482562,0.046475474,0.045500812,0.044557042,0.043642726,0.042756517,0.041897149,0.041063435,0.040254259,0.039468569,0.038705374,0.03796374,0.037242785,0.036541676,0.035859625,0.035195885,0.03454975,0.033920551,0.033307651,0.032710448,0.032128367,0.031560864,0.03100742,0.030467541,0.029940757,0.029426618,0.028924697,0.028434585,0.027955892,0.027488245,0.027031287,0.026584678,0.026148091,0.025721212,0.025303742,0.024895395,0.024495893,0.024104973,0.023722381,0.023347873,0.022981215,0.02262218,0.022270553,0.021926125,0.021588695,0.021258071,0.020934065,0.020616498,0.020305198,0.019999998,0.019700736,0.019407257,0.019119412,0.018837056,0.018560048,0.018288254,0.018021543,0.017759788,0.017502868,0.017250663,0.017003061,0.016759948,0.01652122,0.01628677,0.0160565,0.01583031,0.015608107,0.015389799,0.015175296,0.014964513,0.014757365,0.014553771,0.014353652,0.014156932,0.013963535,0.013773391,0.013586427,0.013402576,0.013221771,0.013043948,0.012869044,0.012696997,0.012527749,0.01236124,0.012197416,0.01203622,0.0118776,0.011721503,0.011567879,0.011416679,0.011267853,0.011121356,0.010977141,0.010835164,0.010695382,0.010557752,0.010422232,0.010288783,0.010157364,0.010027938,0.009900467,0.009774915,0.009651245,0.009529423,0.009409415,0.009291187,0.009174706,0.009059942,0.008946863,0.008835439,0.008725639,0.008617436,0.0085108,0.008405704,0.008302121,0.008200024,0.008099387,0.008000186,0.007902395,0.007805989,0.007710946,0.007617242,0.007524853,0.007433759,0.007343936,0.007255365,0.007168022,0.007081889,0.006996946,0.006913171,0.006830547,0.006749054,0.006668674,0.006589389,0.00651118,0.006434031,0.006357925,0.006282845,0.006208773,0.006135696,0.006063595,0.005992457,0.005922265,0.005853006,0.005784664,0.005717225,0.005650675,0.005585001,0.005520188,0.005456224,0.005393096,0.00533079,0.005269294,0.005208596,0.005148684,0.005089546,0.00503117,0.004973544,0.004916659,0.004860502,0.004805062,0.00475033,0.004696295,0.004642945,0.004590272,0.004538265,0.004486915,0.004436212,0.004386147,0.00433671,0.004287892,0.004239685,0.004192079,0.004145066,0.004098638,0.004052785,0.004007501,0.003962777,0.003918605,0.003874977,0.003831885,0.003789322,0.003747281,0.003705755,0.003664735,0.003624216,0.00358419,0.00354465,0.003505589,0.003467002,0.003428881,0.003391221,0.003354014,0.003317255,0.003280937,0.003245055,0.003209603,0.003174574,0.003139964,0.003105766,0.003071975,0.003038586,0.003005593,0.002972991,0.002940774,0.002908938,0.002877477,0.002846387,0.002815663,0.002785299,0.002755291,0.002725635,0.002696326,0.002667359,0.00263873,0.002610434,0.002582467,0.002554825,0.002527504,0.002500499,0.002473806,0.002447422,0.002421342,0.002395563,0.002370081,0.002344891,0.00231999,0.002295375,0.002271042,0.002246987,0.002223207,0.002199698,0.002176457,0.00215348,0.002130765,0.002108307,0.002086104,0.002064153,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406738744,0.406520568,0.39708384,0.376692195,0.350742512,0.323688553,0.298038467,0.274809441,0.254203604,0.23606238,0.220102763,0.206023908,0.193549149,0.182438794,0.172490699,0.163536361,0.155435842,0.148072854,0.141350478,0.135187583,0.129515919,0.124277763,0.11942403,0.11491276,0.110707893,0.106778282,0.103096898,0.099640171,0.096387463,0.09332062,0.090423618,0.087682252,0.085083889,0.082617255,0.080272254,0.078039819,0.075911785,0.073880774,0.071940105,0.070083713,0.068306077,0.066602161,0.064967361,0.063397458,0.061888582,0.060437169,0.059039938,0.05769386,0.056396133,0.055144164,0.053935544,0.052768039,0.051639567,0.050548192,0.049492105,0.048469617,0.047479149,0.04651922,0.045588444,0.04468552,0.043809223,0.042958405,0.042131981,0.04132893,0.04054829,0.03978915,0.039050652,0.038331983,0.037632371,0.036951089,0.036287444,0.03564078,0.035010473,0.034395932,0.033796592,0.033211917,0.032641397,0.032084544,0.031540895,0.031010007,0.030491456,0.029984838,0.029489768,0.029005875,0.028532806,0.028070224,0.027617802,0.027175232,0.026742214,0.026318462,0.025903702,0.025497671,0.025100116,0.024710792,0.024329465,0.023955912,0.023589914,0.023231263,0.022879758,0.022535206,0.02219742,0.02186622,0.021541432,0.021222888,0.020910428,0.020603895,0.020303137,0.02000801,0.019718372,0.019434086,0.019155022,0.018881052,0.018612052,0.018347904,0.01808849,0.017833699,0.017583423,0.017337557,0.017095998,0.016858647,0.016625409,0.016396191,0.016170902,0.015949454,0.015731763,0.015517745,0.015307321,0.015100413,0.014896944,0.014696841,0.014500033,0.014306449,0.014116022,0.013928687,0.013744378,0.013563034,0.013384594,0.013208999,0.01303619,0.012866113,0.012698712,0.012533934,0.012371727,0.012212041,0.012054826,0.011900034,0.011747619,0.011597535,0.011449737,0.011304181,0.011160826,0.011019629,0.010880551,0.010743552,0.010608593,0.010475636,0.010344646,0.010215585,0.01008842,0.009963115,0.009839637,0.009717954,0.009598033,0.009479843,0.009363354,0.009248535,0.009135358,0.009023794,0.008913814,0.008805392,0.0086985,0.008593113,0.008489205,0.00838675,0.008285725,0.008186104,0.008087865,0.007990984,0.007895439,0.007801208,0.007708268,0.0076166,0.007526181,0.007436992,0.007349012,0.007262223,0.007176604,0.007092137,0.007008804,0.006926586,0.006845466,0.006765426,0.00668645,0.00660852,0.00653162,0.006455735,0.006380847,0.006306943,0.006234007,0.006162023,0.006090977,0.006020855,0.005951643,0.005883327,0.005815893,0.005749328,0.005683619,0.005618753,0.005554717,0.005491499,0.005429088,0.00536747,0.005306634,0.00524657,0.005187264,0.005128707,0.005070887,0.005013794,0.004957416,0.004901744,0.004846768,0.004792477,0.004738862,0.004685913,0.00463362,0.004581974,0.004530966,0.004480587,0.004430828,0.004381679,0.004333134,0.004285183,0.004237817,0.00419103,0.004144811,0.004099155,0.004054053,0.004009496,0.003965479,0.003921993,0.003879031,0.003836586,0.003794651,0.003753219,0.003712282,0.003671836,0.003631872,0.003592384,0.003553366,0.003514811,0.003476714,0.003439068,0.003401867,0.003365106,0.003328777,0.003292877,0.003257398,0.003222336,0.003187685,0.003153439,0.003119594,0.003086144,0.003053083,0.003020407,0.002988111,0.00295619,0.002924638,0.002893452,0.002862627,0.002832157,0.002802038,0.002772266,0.002742836,0.002713745,0.002684987,0.002656558,0.002628454,0.002600672,0.002573206,0.002546053,0.00251921,0.002492671,0.002466434,0.002440494,0.002414848,0.002389492,0.002364423,0.002339636,0.002315129,0.002290898,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.411714106,0.406246111,0.388759526,0.36418613,0.337376383,0.311356604,0.287499885,0.266197892,0.247378531,0.230792302,0.216147224,0.203164982,0.191600322,0.18124456,0.171922895,0.163489773,0.155824076,0.148824797,0.142407371,0.136500664,0.131044534,0.125987858,0.121286949,0.116904281,0.112807457,0.10896837,0.105362524,0.101968475,0.098767368,0.095742565,0.092879322,0.090164528,0.087586486,0.085134724,0.08279984,0.080573363,0.078447647,0.076415765,0.07447143,0.072608918,0.070823011,0.069108936,0.067462322,0.065879155,0.064355745,0.06288869,0.06147485,0.060111322,0.058795417,0.057524639,0.056296671,0.055109357,0.053960687,0.052848786,0.051771903,0.050728399,0.049716741,0.048735489,0.047783293,0.046858885,0.045961069,0.045088722,0.044240784,0.043416256,0.042614192,0.041833701,0.041073938,0.040334103,0.039613439,0.038911226,0.038226784,0.037559463,0.036908648,0.036273753,0.03565422,0.035049518,0.03445914,0.033882605,0.033319449,0.032769234,0.032231539,0.031705961,0.031192116,0.030689636,0.030198168,0.029717373,0.029246929,0.028786524,0.028335861,0.027894652,0.027462624,0.027039511,0.026625061,0.026219028,0.025821178,0.025431284,0.025049129,0.024674503,0.024307203,0.023947034,0.023593808,0.023247345,0.022907468,0.022574009,0.022246804,0.021925695,0.021610531,0.021301163,0.020997449,0.020699251,0.020406435,0.020118873,0.019836439,0.019559012,0.019286475,0.019018713,0.018755617,0.01849708,0.018242998,0.01799327,0.017747798,0.017506489,0.017269249,0.01703599,0.016806625,0.01658107,0.016359242,0.016141062,0.015926453,0.015715339,0.015507647,0.015303306,0.015102247,0.014904402,0.014709705,0.014518093,0.014329503,0.014143876,0.013961151,0.013781271,0.01360418,0.013429824,0.013258149,0.013089104,0.012922637,0.012758699,0.012597243,0.01243822,0.012281586,0.012127295,0.011975304,0.01182557,0.011678052,0.011532708,0.011389499,0.011248386,0.011109332,0.010972299,0.01083725,0.010704152,0.010572968,0.010443666,0.010316211,0.010190573,0.010066718,0.009944617,0.009824239,0.009705554,0.009588533,0.009473148,0.009359372,0.009247177,0.009136536,0.009027423,0.008919814,0.008813682,0.008709005,0.008605756,0.008503914,0.008403455,0.008304356,0.008206596,0.008110153,0.008015006,0.007921133,0.007828516,0.007737132,0.007646964,0.007557992,0.007470196,0.00738356,0.007298063,0.00721369,0.007130421,0.007048241,0.006967132,0.006887078,0.006808063,0.00673007,0.006653086,0.006577093,0.006502077,0.006428024,0.006354918,0.006282747,0.006211495,0.006141149,0.006071697,0.006003123,0.005935416,0.005868563,0.005802552,0.005737369,0.005673004,0.005609443,0.005546676,0.005484691,0.005423477,0.005363022,0.005303316,0.005244349,0.005186108,0.005128586,0.00507177,0.005015651,0.00496022,0.004905467,0.004851382,0.004797955,0.004745178,0.004693042,0.004641538,0.004590656,0.00454039,0.004490729,0.004441665,0.004393192,0.004345299,0.00429798,0.004251227,0.004205032,0.004159387,0.004114286,0.00406972,0.004025682,0.003982167,0.003939165,0.003896671,0.003854678,0.00381318,0.003772169,0.003731639,0.003691584,0.003651997,0.003612873,0.003574205,0.003535988,0.003498215,0.003460881,0.00342398,0.003387507,0.003351455,0.003315819,0.003280595,0.003245776,0.003211358,0.003177335,0.003143703,0.003110456,0.003077589,0.003045098,0.003012978,0.002981223,0.00294983,0.002918795,0.002888111,0.002857776,0.002827784,0.002798131,0.002768813,0.002739826,0.002711166,0.002682829,0.00265481,0.002627106,0.002599712,0.002572626,0.002545843 -0.156109275,0.156109275,0.154727809,0.146598333,0.133841746,0.119652565,0.106084538,0.09401671,0.083632508,0.07481018,0.067331607,0.06097265,0.055535198,0.05085438,0.046796473,0.043254081,0.040141093,0.037388281,0.034939716,0.032749937,0.030781739,0.02900447,0.027392702,0.0259252,0.024584118,0.023354367,0.022223113,0.021179381,0.020213737,0.01931803,0.018485187,0.01770904,0.016984191,0.016305895,0.015669966,0.015072699,0.014510801,0.013981338,0.01348169,0.013009504,0.012562667,0.012139276,0.011737609,0.011356107,0.010993355,0.010648067,0.010319068,0.010005287,0.009705743,0.009419535,0.009145837,0.008883888,0.008632989,0.008392491,0.008161797,0.007940353,0.007727646,0.007523198,0.007326567,0.007137341,0.006955134,0.006779589,0.00661037,0.006447164,0.006289678,0.006137637,0.005990784,0.005848876,0.005711685,0.005578998,0.005450614,0.005326342,0.005206003,0.005089429,0.004976459,0.004866943,0.004760739,0.004657709,0.004557728,0.004460673,0.004366428,0.004274885,0.00418594,0.004099493,0.004015451,0.003933724,0.003854228,0.003776881,0.003701605,0.003628327,0.003556977,0.003487487,0.003419792,0.003353833,0.003289549,0.003226884,0.003165786,0.003106202,0.003048082,0.002991381,0.002936052,0.002882051,0.002829338,0.002777872,0.002727615,0.002678529,0.002630579,0.002583731,0.002537952,0.002493211,0.002449476,0.002406719,0.002364912,0.002324027,0.002284038,0.00224492,0.002206649,0.0021692,0.002132552,0.002096682,0.00206157,0.002027194,0.001993535,0.001960575,0.001928294,0.001896675,0.0018657,0.001835354,0.001805619,0.001776481,0.001747924,0.001719933,0.001692495,0.001665595,0.001639221,0.00161336,0.001587998,0.001563124,0.001538726,0.001514793,0.001491314,0.001468277,0.001445674,0.001423492,0.001401724,0.001380358,0.001359386,0.001338799,0.001318589,0.001298745,0.001279262,0.001260129,0.00124134,0.001222887,0.001204763,0.001186959,0.001169471,0.00115229,0.001135409,0.001118824,0.001102526,0.001086511,0.001070771,0.001055302,0.001040098,0.001025153,0.001010462,0.000996019,0.00098182,0.000967859,0.000954132,0.000940634,0.000927361,0.000914307,0.000901469,0.000888841,0.000876421,0.000864204,0.000852185,0.000840362,0.00082873,0.000817285,0.000806024,0.000794944,0.000784041,0.000773311,0.000762752,0.000752359,0.000742131,0.000732063,0.000722153,0.000712398,0.000702795,0.000693341,0.000684034,0.000674871,0.000665848,0.000656965,0.000648217,0.000639603,0.00063112,0.000622766,0.000614539,0.000606436,0.000598455,0.000590594,0.00058285,0.000575223,0.000567709,0.000560307,0.000553015,0.000545831,0.000538752,0.000531778,0.000524907,0.000518136,0.000511464,0.000504889,0.00049841,0.000492025,0.000485732,0.000479531,0.000473418,0.000467394,0.000461455,0.000455602,0.000449833,0.000444145,0.000438539,0.000433012,0.000427563,0.000422191,0.000416895,0.000411673,0.000406524,0.000401448,0.000396443,0.000391507,0.00038664,0.00038184,0.000377107,0.00037244,0.000367837,0.000363297,0.00035882,0.000354404,0.000350048,0.000345753,0.000341515,0.000337336,0.000333213,0.000329146,0.000325134,0.000321176,0.000317272,0.00031342,0.00030962,0.000305871,0.000302172,0.000298523,0.000294922,0.000291369,0.000287864,0.000284405,0.000280991,0.000277623,0.0002743,0.00027102,0.000267783,0.000264589,0.000261437,0.000258326,0.000255255,0.000252225,0.000249234,0.000246282,0.000243369,0.000240493,0.000237654,0.000234853,0.000232087,0.000229357,0.000226662,0.000224001,0.000221375,0.000218783,0.000216223,0.000213696,0.000211202,0.000208739,0.000206308,0.000203907,0.000201537,0.000199196,0.000196886,0.000194604,0.000192352,0.000190127,0.000187931,0.000185762,0.184553927,0.184553927,0.183750802,0.175609422,0.161405719,0.14494418,0.128873826,0.114421468,0.101910243,0.091245166,0.082187251,0.074476687,0.067878813,0.062196286,0.057268152,0.052964732,0.04918186,0.045835707,0.042858505,0.040195153,0.037800551,0.035637538,0.033675287,0.031888056,0.030254211,0.028755459,0.027376246,0.026103266,0.024925085,0.023831823,0.022814905,0.021866855,0.020981129,0.020151974,0.019374314,0.018643658,0.017956012,0.017307818,0.016695897,0.016117396,0.015569751,0.015050653,0.014558011,0.014089935,0.013644706,0.013220762,0.012816677,0.01243115,0.012062989,0.0117111,0.011374479,0.011052202,0.010743417,0.010447337,0.010163235,0.009890437,0.009628319,0.0093763,0.009133842,0.008900442,0.008675633,0.008458978,0.008250068,0.008048522,0.007853983,0.007666116,0.007484606,0.007309159,0.007139497,0.00697536,0.006816501,0.006662688,0.006513704,0.006369341,0.006229406,0.006093713,0.005962088,0.005834366,0.00571039,0.005590013,0.005473092,0.005359495,0.005249094,0.005141769,0.005037404,0.00493589,0.004837122,0.004741002,0.004647435,0.00455633,0.004467601,0.004381166,0.004296945,0.004214864,0.004134851,0.004056837,0.003980755,0.003906543,0.003834141,0.003763489,0.003694533,0.003627219,0.003561496,0.003497315,0.003434628,0.00337339,0.003313557,0.003255088,0.003197941,0.003142079,0.003087463,0.003034058,0.00298183,0.002930743,0.002880767,0.00283187,0.002784022,0.002737194,0.002691359,0.002646489,0.002602559,0.002559542,0.002517416,0.002476156,0.00243574,0.002396145,0.002357351,0.002319337,0.002282083,0.00224557,0.002209779,0.002174693,0.002140293,0.002106562,0.002073486,0.002041046,0.002009229,0.001978019,0.001947401,0.001917362,0.001887887,0.001858964,0.00183058,0.001802722,0.001775378,0.001748536,0.001722185,0.001696314,0.001670911,0.001645967,0.001621471,0.001597413,0.001573784,0.001550574,0.001527774,0.001505375,0.001483368,0.001461745,0.001440498,0.001419619,0.001399099,0.001378933,0.001359111,0.001339627,0.001320473,0.001301644,0.001283132,0.001264931,0.001247034,0.001229435,0.001212129,0.00119511,0.001178371,0.001161907,0.001145712,0.001129782,0.001114112,0.001098695,0.001083527,0.001068604,0.00105392,0.001039471,0.001025253,0.00101126,0.00099749,0.000983937,0.000970597,0.000957467,0.000944543,0.00093182,0.000919295,0.000906965,0.000894825,0.000882872,0.000871104,0.000859515,0.000848104,0.000836867,0.000825801,0.000814903,0.000804169,0.000793598,0.000783185,0.000772928,0.000762825,0.000752873,0.000743069,0.00073341,0.000723894,0.000714519,0.000705282,0.000696181,0.000687213,0.000678376,0.000669668,0.000661087,0.00065263,0.000644295,0.000636081,0.000627986,0.000620006,0.000612142,0.000604389,0.000596748,0.000589215,0.000581789,0.000574469,0.000567252,0.000560137,0.000553122,0.000546206,0.000539387,0.000532663,0.000526033,0.000519496,0.000513049,0.000506692,0.000500423,0.00049424,0.000488143,0.00048213,0.000476199,0.00047035,0.00046458,0.00045889,0.000453277,0.00044774,0.000442279,0.000436891,0.000431576,0.000426334,0.000421161,0.000416059,0.000411024,0.000406058,0.000401157,0.000396322,0.000391552,0.000386845,0.0003822,0.000377617,0.000373095,0.000368632,0.000364228,0.000359882,0.000355594,0.000351361,0.000347184,0.000343062,0.000338993,0.000334978,0.000331014,0.000327103,0.000323241,0.00031943,0.000315668,0.000311955,0.00030829,0.000304671,0.000301099,0.000297573,0.000294093,0.000290656,0.000287264,0.000283914,0.000280608,0.000277343,0.00027412,0.000270938,0.000267796,0.000264693,0.00026163,0.000258605,0.000255619,0.00025267,0.000249758,0.000246882,0.000244042,0.000241238,0.000238469,0.218402081,0.218402081,0.218129905,0.210465233,0.194913885,0.175931418,0.156922523,0.139596863,0.12448997,0.111561888,0.10055846,0.091180585,0.083150495,0.076231551,0.070229442,0.064987035,0.060377845,0.056299967,0.052670973,0.049423817,0.046503624,0.043865177,0.041470968,0.039289682,0.037295005,0.035464688,0.033779816,0.032224212,0.030783972,0.029447086,0.028203128,0.027043012,0.025958781,0.024943443,0.02399083,0.023095478,0.022252534,0.021457673,0.020707028,0.019997132,0.019324866,0.018687421,0.018082256,0.01750707,0.016959774,0.016438466,0.015941411,0.015467026,0.015013859,0.014580579,0.014165964,0.013768889,0.013388315,0.013023284,0.01267291,0.012336373,0.012012912,0.011701818,0.011402435,0.011114151,0.010836395,0.010568634,0.010310371,0.010061139,0.009820503,0.009588054,0.009363408,0.009146204,0.008936105,0.008732792,0.008535963,0.008345336,0.008160643,0.007981633,0.007808067,0.00763972,0.007476378,0.00731784,0.007163912,0.007014415,0.006869175,0.006728029,0.006590821,0.006457403,0.006327634,0.00620138,0.006078514,0.005958913,0.005842461,0.005729048,0.005618568,0.005510919,0.005406006,0.005303735,0.005204019,0.005106772,0.005011915,0.004919369,0.004829059,0.004740916,0.004654869,0.004570855,0.004488809,0.004408671,0.004330383,0.00425389,0.004179137,0.004106073,0.004034649,0.003964815,0.003896527,0.00382974,0.003764411,0.003700499,0.003637964,0.003576768,0.003516875,0.003458247,0.003400852,0.003344655,0.003289625,0.00323573,0.003182941,0.003131229,0.003080565,0.003030923,0.002982276,0.002934599,0.002887868,0.002842058,0.002797147,0.002753112,0.002709931,0.002667585,0.002626052,0.002585313,0.002545348,0.00250614,0.00246767,0.002429921,0.002392876,0.002356518,0.002320832,0.002285802,0.002251414,0.002217652,0.002184502,0.002151951,0.002119984,0.00208859,0.002057756,0.002027469,0.001997716,0.001968488,0.001939771,0.001911555,0.00188383,0.001856585,0.00182981,0.001803494,0.001777628,0.001752203,0.00172721,0.001702639,0.001678482,0.00165473,0.001631376,0.001608411,0.001585827,0.001563616,0.001541771,0.001520285,0.001499151,0.001478361,0.00145791,0.001437789,0.001417994,0.001398516,0.001379351,0.001360493,0.001341935,0.001323671,0.001305697,0.001288006,0.001270594,0.001253454,0.001236583,0.001219974,0.001203623,0.001187526,0.001171678,0.001156073,0.001140708,0.001125578,0.001110679,0.001096008,0.001081558,0.001067328,0.001053312,0.001039507,0.00102591,0.001012516,0.000999322,0.000986324,0.00097352,0.000960905,0.000948476,0.000936231,0.000924166,0.000912277,0.000900563,0.000889019,0.000877643,0.000866433,0.000855385,0.000844496,0.000833764,0.000823187,0.000812761,0.000802484,0.000792354,0.000782369,0.000772525,0.000762821,0.000753254,0.000743822,0.000734522,0.000725354,0.000716314,0.000707401,0.000698611,0.000689945,0.000681399,0.000672971,0.00066466,0.000656464,0.00064838,0.000640408,0.000632546,0.000624791,0.000617142,0.000609597,0.000602155,0.000594815,0.000587573,0.00058043,0.000573384,0.000566432,0.000559574,0.000552808,0.000546133,0.000539547,0.00053305,0.000526638,0.000520313,0.000514071,0.000507912,0.000501834,0.000495837,0.000489919,0.000484079,0.000478316,0.000472628,0.000467015,0.000461475,0.000456008,0.000450612,0.000445286,0.000440029,0.000434841,0.000429719,0.000424664,0.000419674,0.000414749,0.000409887,0.000405087,0.000400349,0.000395671,0.000391054,0.000386495,0.000381994,0.000377551,0.000373164,0.000368833,0.000364556,0.000360334,0.000356165,0.000352049,0.000347984,0.000343971,0.000340008,0.000336095,0.00033223,0.000328414,0.000324646,0.000320925,0.00031725,0.00031362,0.000310036,0.000306496,0.258719493,0.258719493,0.258719136,0.252321671,0.235741707,0.214060971,0.191632052,0.170841186,0.152550369,0.136823434,0.123404481,0.111953138,0.102141135,0.093684101,0.086346545,0.07993717,0.074301617,0.06931536,0.064877613,0.060906382,0.057334553,0.054106838,0.051177384,0.048507916,0.046066281,0.043825306,0.041761886,0.039856271,0.03809149,0.036452884,0.034927731,0.033504944,0.032174818,0.030928823,0.029759434,0.028659988,0.027624567,0.026647895,0.025725256,0.024852421,0.024025588,0.023241329,0.022496545,0.02178843,0.021114435,0.02047224,0.019859729,0.019274968,0.018716188,0.018181763,0.017670202,0.017180131,0.016710282,0.016259486,0.015826661,0.015410804,0.015010985,0.014626341,0.014256069,0.01389942,0.013555697,0.013224248,0.012904466,0.01259578,0.012297658,0.012009599,0.011731134,0.011461822,0.011201248,0.010949023,0.010704778,0.010468167,0.010238863,0.010016556,0.009800956,0.009591785,0.009388782,0.0091917,0.009000303,0.008814369,0.008633686,0.008458054,0.008287281,0.008121187,0.007959597,0.007802348,0.007649282,0.00750025,0.00735511,0.007213725,0.007075966,0.006941708,0.006810832,0.006683225,0.006558779,0.006437389,0.006318956,0.006203384,0.006090582,0.005980462,0.00587294,0.005767936,0.005665371,0.005565172,0.005467266,0.005371585,0.005278063,0.005186636,0.005097243,0.005009825,0.004924324,0.004840687,0.004758861,0.004678795,0.00460044,0.004523748,0.004448674,0.004375174,0.004303206,0.004232728,0.0041637,0.004096086,0.004029847,0.003964947,0.003901352,0.003839029,0.003777946,0.003718069,0.003659371,0.00360182,0.003545389,0.00349005,0.003435776,0.003382541,0.003330321,0.00327909,0.003228826,0.003179505,0.003131105,0.003083605,0.003036983,0.002991219,0.002946294,0.002902188,0.002858883,0.00281636,0.002774603,0.002733593,0.002693314,0.002653751,0.002614887,0.002576707,0.002539196,0.00250234,0.002466124,0.002430536,0.002395561,0.002361186,0.0023274,0.002294189,0.002261541,0.002229446,0.00219789,0.002166865,0.002136357,0.002106358,0.002076856,0.002047842,0.002019306,0.001991238,0.001963629,0.00193647,0.001909752,0.001883466,0.001857604,0.001832158,0.001807119,0.00178248,0.001758233,0.001734371,0.001710886,0.001687771,0.001665019,0.001642624,0.001620578,0.001598875,0.001577509,0.001556473,0.001535762,0.001515369,0.001495289,0.001475515,0.001456044,0.001436867,0.001417982,0.001399382,0.001381062,0.001363017,0.001345243,0.001327734,0.001310487,0.001293495,0.001276755,0.001260263,0.001244014,0.001228004,0.001212229,0.001196685,0.001181367,0.001166272,0.001151397,0.001136737,0.001122289,0.001108049,0.001094013,0.001080179,0.001066543,0.001053102,0.001039852,0.00102679,0.001013913,0.001001219,0.000988704,0.000976364,0.000964198,0.000952203,0.000940375,0.000928713,0.000917212,0.000905872,0.000894689,0.00088366,0.000872784,0.000862057,0.000851478,0.000841044,0.000830753,0.000820602,0.00081059,0.000800714,0.000790972,0.000781363,0.000771883,0.000762531,0.000753305,0.000744203,0.000735224,0.000726365,0.000717624,0.000708999,0.00070049,0.000692094,0.000683809,0.000675634,0.000667567,0.000659607,0.000651751,0.000643999,0.000636349,0.000628799,0.000621347,0.000613993,0.000606735,0.000599572,0.000592501,0.000585522,0.000578634,0.000571835,0.000565123,0.000558498,0.000551958,0.000545502,0.000539129,0.000532838,0.000526627,0.000520495,0.000514442,0.000508465,0.000502565,0.000496739,0.000490987,0.000485308,0.000479701,0.000474164,0.000468697,0.000463299,0.000457969,0.000452705,0.000447507,0.000442374,0.000437306,0.0004323,0.000427357,0.000422475,0.000417654,0.000412893,0.00040819,0.000403546,0.000398959,0.000394428,0.306789455,0.306789455,0.306789455,0.302396314,0.285430083,0.261031002,0.234694831,0.209747082,0.187549336,0.168350319,0.151919431,0.137877069,0.125836972,0.115457007,0.106450752,0.098584213,0.091668008,0.085549129,0.080103651,0.075230739,0.070847868,0.066887069,0.063291996,0.060015635,0.057018506,0.054267257,0.051733544,0.049393144,0.04722525,0.045211896,0.043337496,0.041588468,0.039952926,0.038420425,0.036981754,0.035628757,0.034354191,0.033151599,0.032015211,0.030939852,0.02992087,0.028954071,0.028035665,0.027162217,0.026330609,0.025538002,0.024781808,0.024059662,0.023369395,0.022709023,0.022076717,0.021470796,0.020889711,0.020332028,0.019796423,0.019281668,0.018786627,0.018310239,0.017851523,0.017409561,0.016983499,0.01657254,0.016175937,0.015792993,0.015423054,0.015065508,0.014719778,0.014385325,0.014061639,0.013748242,0.013444684,0.013150539,0.012865405,0.012588903,0.012320676,0.012060383,0.011807704,0.011562335,0.011323987,0.011092386,0.010867273,0.010648401,0.010435536,0.010228453,0.010026941,0.009830796,0.009639828,0.00945385,0.009272688,0.009096175,0.00892415,0.008756461,0.008592961,0.008433511,0.008277977,0.008126231,0.00797815,0.007833616,0.007692518,0.007554746,0.007420198,0.007288773,0.007160376,0.007034915,0.006912302,0.006792451,0.006675283,0.006560716,0.006448677,0.006339093,0.006231892,0.006127008,0.006024376,0.005923933,0.005825617,0.005729372,0.00563514,0.005542867,0.005452501,0.00536399,0.005277287,0.005192342,0.005109111,0.00502755,0.004947614,0.004869264,0.004792459,0.004717159,0.004643328,0.004570929,0.004499927,0.004430287,0.004361977,0.004294963,0.004229217,0.004164706,0.004101401,0.004039275,0.0039783,0.003918448,0.003859695,0.003802014,0.003745382,0.003689774,0.003635167,0.003581538,0.003528867,0.003477132,0.003426311,0.003376386,0.003327335,0.003279142,0.003231786,0.00318525,0.003139516,0.003094568,0.003050389,0.003006962,0.002964271,0.002922303,0.002881041,0.00284047,0.002800578,0.002761349,0.002722771,0.00268483,0.002647514,0.002610809,0.002574705,0.002539188,0.002504247,0.002469872,0.00243605,0.002402771,0.002370025,0.002337801,0.002306089,0.002274879,0.002244163,0.002213929,0.00218417,0.002154877,0.00212604,0.002097651,0.002069702,0.002042185,0.002015092,0.001988414,0.001962145,0.001936276,0.001910801,0.001885713,0.001861004,0.001836667,0.001812697,0.001789086,0.001765828,0.001742918,0.001720348,0.001698112,0.001676206,0.001654623,0.001633357,0.001612403,0.001591757,0.001571411,0.001551362,0.001531604,0.001512132,0.001492941,0.001474028,0.001455386,0.001437011,0.0014189,0.001401047,0.001383448,0.001366099,0.001348996,0.001332135,0.001315512,0.001299123,0.001282964,0.001267031,0.001251321,0.00123583,0.001220555,0.001205492,0.001190637,0.001175988,0.001161541,0.001147293,0.001133241,0.001119381,0.001105711,0.001092227,0.001078928,0.001065809,0.001052868,0.001040102,0.001027509,0.001015086,0.001002829,0.000990738,0.000978809,0.000967039,0.000955427,0.000943969,0.000932664,0.000921509,0.000910502,0.00089964,0.000888922,0.000878346,0.000867908,0.000857608,0.000847442,0.00083741,0.000827509,0.000817737,0.000808092,0.000798573,0.000789177,0.000779903,0.000770749,0.000761713,0.000752794,0.000743989,0.000735298,0.000726718,0.000718248,0.000709886,0.000701631,0.000693481,0.000685435,0.000677491,0.000669647,0.000661904,0.000654258,0.000646708,0.000639254,0.000631894,0.000624626,0.000617449,0.000610363,0.000603365,0.000596454,0.00058963,0.000582891,0.000576235,0.000569663,0.000563171,0.000556761,0.000550429,0.000544176,0.000538,0.0005319,0.000525875,0.000519924,0.000514046,0.00050824,0.364158627,0.364158627,0.364158627,0.361946306,0.345681833,0.318827441,0.288161232,0.258281934,0.231305857,0.207798105,0.187603646,0.170313894,0.155478447,0.142686035,0.131587397,0.121895105,0.113375656,0.105840029,0.099135014,0.093135921,0.087740721,0.082865416,0.078440402,0.074407638,0.070718411,0.06733159,0.064212241,0.061330526,0.058660823,0.056181021,0.053871944,0.05171689,0.049701244,0.047812171,0.046038352,0.044369768,0.042797524,0.041313692,0.039911187,0.038583657,0.037325392,0.036131245,0.034996565,0.033917136,0.032889134,0.031909075,0.030973783,0.030080356,0.029226135,0.028408683,0.027625758,0.026875297,0.026155397,0.025464301,0.024800384,0.02416214,0.02354817,0.022957177,0.022387953,0.021839374,0.02131039,0.020800022,0.020307354,0.019831529,0.019371744,0.018927247,0.01849733,0.01808133,0.017678621,0.017288615,0.016910758,0.016544527,0.016189429,0.015844997,0.015510791,0.015186393,0.01487141,0.014565465,0.014268206,0.013979294,0.01369841,0.01342525,0.013159526,0.012900962,0.012649297,0.012404281,0.012165676,0.011933257,0.011706807,0.01148612,0.011270998,0.011061252,0.010856704,0.01065718,0.010462515,0.010272552,0.010087139,0.009906131,0.009729388,0.009556779,0.009388173,0.009223449,0.009062489,0.008905178,0.008751408,0.008601074,0.008454075,0.008310314,0.008169698,0.008032136,0.007897542,0.007765832,0.007636926,0.007510746,0.007387217,0.007266268,0.007147827,0.007031828,0.006918205,0.006806897,0.006697842,0.006590981,0.006486257,0.006383617,0.006283006,0.006184373,0.006087669,0.005992846,0.005899856,0.005808655,0.005719198,0.005631444,0.005545352,0.00546088,0.005377992,0.005296649,0.005216815,0.005138455,0.005061534,0.00498602,0.004911879,0.004839081,0.004767595,0.004697391,0.004628442,0.004560718,0.004494192,0.004428839,0.004364632,0.004301547,0.004239559,0.004178645,0.004118781,0.004059945,0.004002116,0.003945272,0.003889392,0.003834456,0.003780445,0.003727339,0.003675121,0.003623771,0.003573272,0.003523607,0.003474758,0.003426711,0.003379448,0.003332954,0.003287213,0.003242212,0.003197935,0.003154368,0.003111498,0.003069311,0.003027793,0.002986933,0.002946717,0.002907133,0.00286817,0.002829815,0.002792057,0.002754885,0.002718288,0.002682255,0.002646777,0.002611842,0.002577441,0.002543564,0.002510202,0.002477345,0.002444984,0.00241311,0.002381715,0.00235079,0.002320326,0.002290316,0.002260751,0.002231624,0.002202927,0.002174653,0.002146794,0.002119342,0.002092292,0.002065636,0.002039367,0.002013478,0.001987964,0.001962818,0.001938033,0.001913604,0.001889525,0.001865789,0.001842391,0.001819326,0.001796588,0.001774171,0.00175207,0.00173028,0.001708796,0.001687613,0.001666726,0.001646131,0.001625821,0.001605794,0.001586044,0.001566567,0.001547359,0.001528415,0.001509731,0.001491303,0.001473127,0.001455199,0.001437515,0.001420071,0.001402864,0.001385889,0.001369144,0.001352625,0.001336327,0.001320249,0.001304386,0.001288734,0.001273292,0.001258055,0.001243021,0.001228187,0.001213549,0.001199104,0.00118485,0.001170784,0.001156902,0.001143203,0.001129683,0.00111634,0.001103171,0.001090173,0.001077345,0.001064683,0.001052185,0.001039849,0.001027672,0.001015653,0.001003788,0.000992075,0.000980513,0.000969099,0.00095783,0.000946706,0.000935723,0.00092488,0.000914175,0.000903606,0.000893171,0.000882867,0.000872694,0.000862648,0.00085273,0.000842936,0.000833264,0.000823714,0.000814284,0.000804971,0.000795774,0.000786692,0.000777723,0.000768865,0.000760118,0.000751478,0.000742945,0.000734518,0.000726195,0.000717974,0.000709854,0.000701834,0.000693912,0.000686087,0.000678358,0.000670723,0.000663182,0.000655732,0.368633426,0.368633426,0.368633426,0.368264456,0.35650232,0.332193445,0.302187221,0.271828164,0.243884187,0.219290942,0.198059744,0.179840689,0.164193753,0.150699168,0.138993418,0.128774419,0.119795538,0.111856637,0.104795321,0.098479398,0.092800725,0.087670313,0.083014473,0.078771797,0.074890789,0.071327997,0.068046542,0.065014946,0.062206196,0.059596995,0.057167149,0.054899077,0.052777405,0.050788634,0.048920866,0.047163573,0.04550741,0.04394405,0.042466056,0.04106676,0.039740169,0.038480882,0.037284021,0.036145163,0.035060297,0.034025769,0.033038249,0.032094694,0.031192317,0.03032856,0.029501076,0.0287077,0.027946439,0.027215449,0.026513027,0.025837593,0.025187682,0.024561934,0.023959082,0.023377947,0.022817428,0.022276499,0.021754199,0.021249629,0.020761947,0.020290364,0.019834137,0.01939257,0.018965008,0.018550833,0.018149462,0.017760349,0.017382974,0.017016848,0.016661508,0.016316517,0.01598146,0.015655943,0.015339594,0.015032058,0.014733001,0.014442103,0.01415906,0.013883582,0.013615396,0.013354239,0.01309986,0.012852023,0.012610499,0.012375071,0.012145531,0.011921682,0.011703334,0.011490305,0.011282422,0.011079519,0.010881435,0.010688018,0.010499122,0.010314606,0.010134335,0.00995818,0.009786016,0.009617723,0.009453187,0.009292297,0.009134947,0.008981033,0.008830458,0.008683127,0.008538948,0.008397832,0.008259696,0.008124456,0.007992035,0.007862354,0.007735342,0.007610926,0.007489038,0.007369612,0.007252583,0.007137889,0.00702547,0.006915269,0.006807229,0.006701295,0.006597416,0.006495539,0.006395617,0.006297601,0.006201444,0.006107102,0.006014531,0.00592369,0.005834537,0.005747032,0.005661137,0.005576815,0.005494029,0.005412743,0.005332925,0.00525454,0.005177557,0.005101943,0.005027669,0.004954704,0.004883021,0.00481259,0.004743385,0.004675378,0.004608545,0.00454286,0.004478299,0.004414838,0.004352453,0.004291123,0.004230824,0.004171537,0.004113239,0.004055911,0.003999532,0.003944085,0.003889548,0.003835905,0.003783138,0.003731228,0.00368016,0.003629916,0.00358048,0.003531836,0.003483969,0.003436864,0.003390506,0.003344881,0.003299975,0.003255774,0.003212265,0.003169434,0.003127269,0.003085758,0.003044888,0.003004647,0.002965024,0.002926008,0.002887587,0.00284975,0.002812487,0.002775787,0.002739641,0.002704038,0.002668968,0.002634422,0.002600391,0.002566866,0.002533838,0.002501297,0.002469236,0.002437646,0.002406519,0.002375847,0.002345621,0.002315836,0.002286482,0.002257552,0.00222904,0.002200938,0.002173239,0.002145936,0.002119024,0.002092494,0.002066342,0.00204056,0.002015143,0.001990084,0.001965378,0.001941018,0.001917,0.001893317,0.001869964,0.001846937,0.001824228,0.001801834,0.00177975,0.00175797,0.001736489,0.001715303,0.001694407,0.001673797,0.001653467,0.001633415,0.001613634,0.001594122,0.001574873,0.001555884,0.001537151,0.001518669,0.001500436,0.001482446,0.001464697,0.001447184,0.001429904,0.001412854,0.001396029,0.001379428,0.001363045,0.001346878,0.001330924,0.00131518,0.001299642,0.001284307,0.001269172,0.001254235,0.001239492,0.00122494,0.001210577,0.0011964,0.001182406,0.001168593,0.001154957,0.001141497,0.001128209,0.001115092,0.001102142,0.001089358,0.001076736,0.001064276,0.001051973,0.001039827,0.001027834,0.001015993,0.001004302,0.000992758,0.000981359,0.000970103,0.000958989,0.000948013,0.000937176,0.000926473,0.000915904,0.000905466,0.000895158,0.000884979,0.000874925,0.000864996,0.000855189,0.000845504,0.000835938,0.000826489,0.000817157,0.000807939,0.000798835,0.000789841,0.000780958,0.000772183,0.000763515,0.000754952,0.000746494,0.000738138,0.000729884,0.000721729,0.373163212,0.373163212,0.373163212,0.373163212,0.366731427,0.346024653,0.317361076,0.286798206,0.257909439,0.232138287,0.20974044,0.190460494,0.173882505,0.159581885,0.147180455,0.136359669,0.126857676,0.118461276,0.110997229,0.104324461,0.098327596,0.09291175,0.087998419,0.083522239,0.07942845,0.075670889,0.072210411,0.069013635,0.066051938,0.063300652,0.060738412,0.05834663,0.05610906,0.054011449,0.052041236,0.050187317,0.048439836,0.046790018,0.045230025,0.043752836,0.042352139,0.04102225,0.039758033,0.038554837,0.037408442,0.036315005,0.035271024,0.0342733,0.033318903,0.032405145,0.031529558,0.030689869,0.02988398,0.029109957,0.028366008,0.027650474,0.026961817,0.026298606,0.025659511,0.025043292,0.024448794,0.023874938,0.023320714,0.022785178,0.022267446,0.021766686,0.021282121,0.020813017,0.020358686,0.019918478,0.019491783,0.019078023,0.018676654,0.018287161,0.017909058,0.017541884,0.017185203,0.016838602,0.016501688,0.016174089,0.015855452,0.01554544,0.015243735,0.014950032,0.014664041,0.014385488,0.014114107,0.01384965,0.013591875,0.013340555,0.013095471,0.012856414,0.012623185,0.012395591,0.012173451,0.011956588,0.011744836,0.011538031,0.011336022,0.011138658,0.010945797,0.010757304,0.010573046,0.010392898,0.010216738,0.010044449,0.00987592,0.009711042,0.00954971,0.009391825,0.00923729,0.009086012,0.008937901,0.008792871,0.008650837,0.00851172,0.008375441,0.008241925,0.008111099,0.007982893,0.00785724,0.007734073,0.00761333,0.007494948,0.007378869,0.007265034,0.007153388,0.007043878,0.006936451,0.006831056,0.006727644,0.006626168,0.006526581,0.006428839,0.006332899,0.006238718,0.006146256,0.006055473,0.00596633,0.005878791,0.005792818,0.005708376,0.005625432,0.005543952,0.005463903,0.005385254,0.005307975,0.005232035,0.005157407,0.00508406,0.005011969,0.004941107,0.004871447,0.004802964,0.004735633,0.004669432,0.004604335,0.004540321,0.004477367,0.004415452,0.004354555,0.004294655,0.004235731,0.004177766,0.004120738,0.004064631,0.004009426,0.003955104,0.00390165,0.003849045,0.003797274,0.003746321,0.00369617,0.003646805,0.003598212,0.003550376,0.003503282,0.003456918,0.003411269,0.003366322,0.003322064,0.003278482,0.003235564,0.003193298,0.003151672,0.003110675,0.003070294,0.003030519,0.002991339,0.002952744,0.002914722,0.002877265,0.002840361,0.002804002,0.002768177,0.002732878,0.002698095,0.002663819,0.002630041,0.002596754,0.002563948,0.002531616,0.002499748,0.002468339,0.002437378,0.00240686,0.002376777,0.002347121,0.002317886,0.002289064,0.002260648,0.002232632,0.00220501,0.002177774,0.002150918,0.002124437,0.002098324,0.002072573,0.002047179,0.002022135,0.001997437,0.001973078,0.001949052,0.001925356,0.001901984,0.001878929,0.001856189,0.001833756,0.001811628,0.001789798,0.001768263,0.001747018,0.001726057,0.001705378,0.001684975,0.001664845,0.001644982,0.001625384,0.001606045,0.001586963,0.001568133,0.001549551,0.001531213,0.001513117,0.001495258,0.001477633,0.001460238,0.001443069,0.001426125,0.0014094,0.001392893,0.001376599,0.001360516,0.00134464,0.001328969,0.001313499,0.001298228,0.001283152,0.001268269,0.001253576,0.001239071,0.00122475,0.001210611,0.001196652,0.001182869,0.00116926,0.001155823,0.001142556,0.001129456,0.00111652,0.001103746,0.001091132,0.001078676,0.001066376,0.001054229,0.001042233,0.001030386,0.001018686,0.001007131,0.000995719,0.000984448,0.000973316,0.000962321,0.000951462,0.000940736,0.000930141,0.000919676,0.00090934,0.000899129,0.000889043,0.00087908,0.000869238,0.000859515,0.000849911,0.000840423,0.000831049,0.000821789,0.000812641,0.000803603,0.000794673,0.37774866,0.37774866,0.37774866,0.37774866,0.37564151,0.359819982,0.333496606,0.30322677,0.273523577,0.246517222,0.222822897,0.202336652,0.184690359,0.169462481,0.156261275,0.144750266,0.134650178,0.125732547,0.117811332,0.110734942,0.104379423,0.098642911,0.093441206,0.088704281,0.084373534,0.080399622,0.076740754,0.073361326,0.070230845,0.067323054,0.064615236,0.062087641,0.059723024,0.057506263,0.055424044,0.053464603,0.051617506,0.049873466,0.048224194,0.046662267,0.045181016,0.043774436,0.042437106,0.041164115,0.039951009,0.038793736,0.037688603,0.036632234,0.035621543,0.034653695,0.033726091,0.032836333,0.031982215,0.031161696,0.030372891,0.029614053,0.02888356,0.028179906,0.027501692,0.026847611,0.026216448,0.025607066,0.025018402,0.024449463,0.023899316,0.023367089,0.02285196,0.022353159,0.02186996,0.021401679,0.020947674,0.020507337,0.020080094,0.019665404,0.019262753,0.018871657,0.018491657,0.018122317,0.017763224,0.017413986,0.017074231,0.016743604,0.016421769,0.016108405,0.015803207,0.015505885,0.015216161,0.01493377,0.01465846,0.01438999,0.01412813,0.013872659,0.013623366,0.01338005,0.013142517,0.012910584,0.012684071,0.01246281,0.012246637,0.012035397,0.011828937,0.011627115,0.011429792,0.011236834,0.011048113,0.010863505,0.010682894,0.010506163,0.010333203,0.010163908,0.009998176,0.009835908,0.00967701,0.009521389,0.009368958,0.009219631,0.009073325,0.008929962,0.008789464,0.008651756,0.008516768,0.008384429,0.008254672,0.008127433,0.008002648,0.007880256,0.007760199,0.007642419,0.00752686,0.007413471,0.007302197,0.007192989,0.007085798,0.006980577,0.006877279,0.00677586,0.006676277,0.006578487,0.00648245,0.006388126,0.006295476,0.006204464,0.006115052,0.006027205,0.005940889,0.005856071,0.005772718,0.005690798,0.005610281,0.005531136,0.005453335,0.005376848,0.00530165,0.005227712,0.005155008,0.005083514,0.005013203,0.004944053,0.004876038,0.004809137,0.004743327,0.004678586,0.004614892,0.004552225,0.004490565,0.004429892,0.004370186,0.004311429,0.004253602,0.004196688,0.004140668,0.004085526,0.004031245,0.003977809,0.003925202,0.003873408,0.003822412,0.0037722,0.003722756,0.003674066,0.003626118,0.003578896,0.003532388,0.003486581,0.003441463,0.00339702,0.003353241,0.003310114,0.003267627,0.003225769,0.003184529,0.003143896,0.003103859,0.003064409,0.003025534,0.002987225,0.002949471,0.002912265,0.002875595,0.002839454,0.002803831,0.002768719,0.002734108,0.002699991,0.002666358,0.002633202,0.002600515,0.002568289,0.002536516,0.00250519,0.002474301,0.002443845,0.002413813,0.002384198,0.002354994,0.002326194,0.002297791,0.00226978,0.002242153,0.002214906,0.002188031,0.002161523,0.002135376,0.002109584,0.002084142,0.002059044,0.002034285,0.00200986,0.001985762,0.001961989,0.001938533,0.001915391,0.001892558,0.001870028,0.001847797,0.001825861,0.001804216,0.001782856,0.001761777,0.001740976,0.001720447,0.001700188,0.001680193,0.001660459,0.001640982,0.001621759,0.001602785,0.001584057,0.001565571,0.001547323,0.001529311,0.00151153,0.001493978,0.00147665,0.001459544,0.001442657,0.001425985,0.001409525,0.001393274,0.00137723,0.001361388,0.001345747,0.001330304,0.001315054,0.001299997,0.001285129,0.001270448,0.00125595,0.001241633,0.001227495,0.001213534,0.001199746,0.001186129,0.001172681,0.0011594,0.001146283,0.001133328,0.001120533,0.001107896,0.001095413,0.001083084,0.001070906,0.001058878,0.001046996,0.001035259,0.001023666,0.001012213,0.0010009,0.000989724,0.000978683,0.000967776,0.000957001,0.000946356,0.00093584,0.00092545,0.000915185,0.000905043,0.000895023,0.000885123,0.000875341,0.382390454,0.382390454,0.382390454,0.382390454,0.382339868,0.372840665,0.350250146,0.321105631,0.290901191,0.262671186,0.237559447,0.215704975,0.196828488,0.180526922,0.166398912,0.154089371,0.143299342,0.133782542,0.125337769,0.117800891,0.111037706,0.104938005,0.099410789,0.094380477,0.089783904,0.085567962,0.081687731,0.078104994,0.074787062,0.07170582,0.068836973,0.06615942,0.063654757,0.061306858,0.05910154,0.057026281,0.055069981,0.05322277,0.051475844,0.049821319,0.048252124,0.046761889,0.045344867,0.043995857,0.042710141,0.04148343,0.040311816,0.039191728,0.0381199,0.037093339,0.036109293,0.035165231,0.034258821,0.033387909,0.032550502,0.031744754,0.030968956,0.030221517,0.029500959,0.028805904,0.028135069,0.027487253,0.026861337,0.026256271,0.025671073,0.02510482,0.024556647,0.02402574,0.023511335,0.02301271,0.022529187,0.022060124,0.021604917,0.021162994,0.020733815,0.020316867,0.019911666,0.019517752,0.01913469,0.018762066,0.018399487,0.01804658,0.017702988,0.017368374,0.017042416,0.016724807,0.016415253,0.016113477,0.01581921,0.015532199,0.0152522,0.014978981,0.014712319,0.014452,0.014197822,0.013949588,0.013707111,0.013470212,0.013238718,0.013012464,0.012791292,0.012575047,0.012363585,0.012156763,0.011954447,0.011756507,0.011562815,0.011373253,0.011187703,0.011006053,0.010828195,0.010654025,0.010483443,0.010316351,0.010152656,0.009992268,0.009835098,0.009681064,0.009530083,0.009382077,0.00923697,0.009094688,0.008955159,0.008818315,0.00868409,0.008552418,0.008423237,0.008296487,0.008172108,0.008050044,0.00793024,0.007812642,0.007697198,0.007583858,0.007472574,0.007363297,0.007255982,0.007150584,0.00704706,0.006945368,0.006845466,0.006747315,0.006650877,0.006556113,0.006462988,0.006371465,0.00628151,0.006193089,0.006106171,0.006020722,0.005936712,0.005854111,0.005772889,0.005693018,0.00561447,0.005537217,0.005461234,0.005386494,0.005312973,0.005240645,0.005169488,0.005099477,0.005030591,0.004962806,0.004896101,0.004830456,0.004765849,0.00470226,0.004639671,0.004578061,0.004517413,0.004457707,0.004398927,0.004341054,0.004284072,0.004227964,0.004172714,0.004118306,0.004064724,0.004011954,0.00395998,0.003908788,0.003858365,0.003808695,0.003759766,0.003711565,0.003664078,0.003617292,0.003571196,0.003525778,0.003481024,0.003436924,0.003393467,0.003350641,0.003308435,0.003266839,0.003225843,0.003185435,0.003145606,0.003106347,0.003067647,0.003029497,0.002991889,0.002954812,0.002918258,0.002882218,0.002846685,0.002811649,0.002777102,0.002743037,0.002709445,0.002676319,0.002643651,0.002611434,0.002579661,0.002548324,0.002517417,0.002486932,0.002456863,0.002427203,0.002397947,0.002369086,0.002340616,0.00231253,0.002284823,0.002257487,0.002230518,0.00220391,0.002177657,0.002151753,0.002126194,0.002100975,0.002076089,0.002051532,0.002027298,0.002003384,0.001979784,0.001956493,0.001933507,0.001910822,0.001888431,0.001866333,0.001844521,0.001822992,0.001801741,0.001780765,0.001760059,0.001739619,0.001719442,0.001699524,0.001679861,0.001660449,0.001641284,0.001622363,0.001603683,0.00158524,0.001567031,0.001549051,0.001531299,0.00151377,0.001496462,0.001479371,0.001462495,0.001445829,0.001429373,0.001413121,0.001397072,0.001381223,0.00136557,0.001350112,0.001334845,0.001319767,0.001304874,0.001290166,0.001275638,0.001261289,0.001247116,0.001233117,0.001219289,0.00120563,0.001192138,0.00117881,0.001165644,0.001152638,0.00113979,0.001127097,0.001114558,0.00110217,0.001089932,0.001077841,0.001065896,0.001054094,0.001042434,0.001030914,0.001019531,0.001008285,0.000997173,0.000986193,0.000975344,0.000964624,0.387089286,0.387089286,0.387089286,0.387089286,0.387089286,0.383978041,0.366917072,0.340214148,0.310138482,0.280841957,0.254234509,0.230844108,0.21055128,0.193000774,0.177791283,0.16455039,0.152957572,0.142745922,0.133696278,0.125629485,0.118399006,0.111884576,0.10598701,0.100624049,0.095727058,0.091238423,0.087109495,0.083298952,0.079771502,0.076496838,0.073448806,0.070604721,0.06794482,0.06545181,0.063110495,0.060907473,0.058830875,0.056870158,0.055015921,0.05325976,0.051594134,0.05001226,0.04850802,0.047075881,0.045710826,0.044408297,0.043164141,0.041974569,0.040836114,0.039745599,0.038700107,0.037696953,0.036733666,0.035807962,0.034917732,0.03406102,0.033236015,0.032441034,0.031674512,0.030934991,0.030221112,0.029531608,0.028865291,0.028221052,0.027597853,0.026994717,0.02641073,0.025845032,0.025296812,0.024765311,0.024249808,0.023749628,0.023264131,0.022792711,0.022334798,0.021889851,0.021457358,0.021036832,0.020627813,0.020229864,0.019842569,0.019465533,0.019098381,0.018740756,0.018392315,0.018052736,0.017721708,0.017398936,0.017084138,0.016777045,0.0164774,0.016184957,0.015899479,0.015620743,0.015348531,0.015082638,0.014822865,0.014569022,0.014320926,0.014078403,0.013841285,0.01360941,0.013382622,0.013160774,0.012943721,0.012731324,0.012523453,0.012319977,0.012120775,0.011925726,0.011734718,0.011547639,0.011364383,0.011184846,0.011008931,0.010836541,0.010667583,0.010501969,0.010339612,0.010180428,0.010024336,0.00987126,0.009721122,0.00957385,0.009429373,0.009287623,0.009148533,0.009012039,0.008878079,0.008746591,0.008617519,0.008490804,0.008366391,0.008244228,0.008124263,0.008006444,0.007890724,0.007777055,0.00766539,0.007555685,0.007447896,0.007341981,0.007237899,0.007135611,0.007035076,0.006936258,0.006839119,0.006743624,0.006649738,0.006557427,0.006466658,0.0063774,0.00628962,0.006203288,0.006118374,0.006034851,0.005952689,0.00587186,0.005792339,0.0057141,0.005637115,0.005561362,0.005486815,0.005413452,0.005341248,0.005270182,0.005200232,0.005131375,0.005063592,0.004996862,0.004931165,0.004866481,0.004802792,0.004740078,0.004678322,0.004617507,0.004557614,0.004498626,0.004440528,0.004383303,0.004326935,0.004271409,0.00421671,0.004162822,0.004109732,0.004057425,0.004005887,0.003955106,0.003905066,0.003855757,0.003807164,0.003759276,0.00371208,0.003665565,0.003619718,0.003574529,0.003529986,0.003486078,0.003442795,0.003400125,0.00335806,0.003316588,0.003275699,0.003235385,0.003195635,0.003156441,0.003117793,0.003079681,0.003042099,0.003005036,0.002968484,0.002932436,0.002896883,0.002861817,0.00282723,0.002793115,0.002759464,0.00272627,0.002693526,0.002661224,0.002629358,0.00259792,0.002566905,0.002536305,0.002506114,0.002476326,0.002446934,0.002417933,0.002389316,0.002361078,0.002333213,0.002305715,0.002278578,0.002251798,0.002225368,0.002199284,0.00217354,0.002148131,0.002123052,0.002098299,0.002073866,0.002049748,0.002025942,0.002002442,0.001979245,0.001956344,0.001933737,0.001911419,0.001889385,0.001867632,0.001846156,0.001824952,0.001804017,0.001783346,0.001762937,0.001742784,0.001722885,0.001703237,0.001683834,0.001664674,0.001645754,0.00162707,0.001608619,0.001590397,0.001572401,0.001554629,0.001537077,0.001519741,0.00150262,0.001485709,0.001469006,0.001452509,0.001436214,0.001420119,0.00140422,0.001388515,0.001373002,0.001357678,0.00134254,0.001327586,0.001312813,0.00129822,0.001283802,0.001269558,0.001255487,0.001241584,0.001227849,0.001214279,0.001200871,0.001187624,0.001174535,0.001161602,0.001148824,0.001136198,0.001123722,0.001111394,0.001099213,0.001087176,0.001075281,0.001063527,0.391845858,0.391845858,0.391845858,0.391845858,0.391845858,0.391783583,0.382315546,0.360004445,0.331210138,0.301285265,0.273209522,0.248129804,0.226210075,0.207198497,0.190714958,0.176375354,0.16383693,0.1528093,0.14305203,0.134367851,0.126595229,0.119601634,0.113277893,0.107533603,0.102293476,0.097494437,0.093083326,0.089015079,0.085251278,0.081758993,0.078509849,0.07547928,0.072645913,0.069991073,0.067498373,0.065153376,0.062943315,0.060856857,0.058883913,0.057015465,0.055243434,0.053560558,0.051960291,0.050436718,0.048984478,0.047598706,0.046274971,0.045009231,0.043797791,0.042637266,0.04152455,0.040456786,0.039431344,0.038445795,0.037497896,0.03658557,0.03570689,0.034860071,0.034043448,0.033255476,0.032494712,0.031759808,0.031049508,0.030362634,0.029698084,0.029054822,0.02843188,0.027828345,0.027243359,0.026676115,0.026125852,0.025591851,0.025073436,0.024569965,0.024080834,0.023605468,0.023143326,0.022693892,0.02225668,0.021831224,0.021417086,0.021013846,0.020621108,0.020238491,0.019865636,0.019502199,0.019147851,0.018802279,0.018465186,0.018136286,0.017815307,0.017501986,0.017196076,0.016897338,0.016605541,0.016320469,0.01604191,0.015769663,0.015503535,0.01524334,0.014988901,0.014740045,0.01449661,0.014258435,0.01402537,0.013797267,0.013573986,0.013355392,0.013141353,0.012931743,0.012726441,0.01252533,0.012328296,0.012135232,0.011946031,0.011760592,0.011578816,0.011400609,0.01122588,0.011054539,0.0108865,0.010721682,0.010560003,0.010401385,0.010245755,0.010093039,0.009943166,0.009796068,0.009651679,0.009509934,0.009370772,0.009234132,0.009099955,0.008968185,0.008838766,0.008711646,0.008586771,0.008464091,0.008343558,0.008225124,0.008108742,0.007994368,0.007881957,0.007771468,0.007662858,0.007556088,0.007451118,0.007347911,0.007246429,0.007146635,0.007048496,0.006951977,0.006857044,0.006763665,0.006671808,0.006581442,0.006492538,0.006405067,0.006318999,0.006234306,0.006150962,0.006068941,0.005988215,0.005908761,0.005830554,0.005753568,0.005677782,0.005603173,0.005529717,0.005457393,0.00538618,0.005316058,0.005247005,0.005179002,0.005112029,0.005046068,0.0049811,0.004917108,0.004854072,0.004791976,0.004730804,0.004670538,0.004611162,0.004552661,0.00449502,0.004438222,0.004382253,0.004327099,0.004272745,0.004219178,0.004166384,0.004114349,0.004063062,0.004012508,0.003962675,0.003913552,0.003865126,0.003817386,0.003770319,0.003723915,0.003678163,0.003633052,0.003588571,0.00354471,0.003501458,0.003458807,0.003416745,0.003375264,0.003334354,0.003294005,0.003254209,0.003214957,0.003176241,0.003138051,0.003100379,0.003063217,0.003026557,0.002990392,0.002954713,0.002919512,0.002884783,0.002850518,0.00281671,0.002783351,0.002750435,0.002717955,0.002685905,0.002654277,0.002623066,0.002592264,0.002561867,0.002531867,0.002502259,0.002473037,0.002444194,0.002415727,0.002387628,0.002359892,0.002332514,0.002305489,0.002278811,0.002252476,0.002226478,0.002200812,0.002175474,0.002150459,0.002125762,0.002101378,0.002077304,0.002053533,0.002030063,0.002006889,0.001984006,0.001961411,0.001939099,0.001917067,0.00189531,0.001873824,0.001852606,0.001831652,0.001810958,0.00179052,0.001770336,0.001750401,0.001730712,0.001711265,0.001692058,0.001673086,0.001654347,0.001635837,0.001617554,0.001599494,0.001581654,0.001564031,0.001546622,0.001529424,0.001512435,0.001495651,0.00147907,0.001462689,0.001446505,0.001430516,0.001414719,0.001399112,0.001383692,0.001368456,0.001353402,0.001338527,0.00132383,0.001309308,0.001294958,0.001280779,0.001266767,0.001252922,0.00123924,0.001225719,0.001212358,0.001199155,0.001186106,0.001173211,0.39666088,0.39666088,0.39666088,0.39666088,0.39666088,0.39666088,0.394607938,0.379302022,0.353750084,0.324167672,0.294896704,0.268046266,0.244278961,0.223552553,0.205552934,0.189899752,0.176230741,0.164229832,0.1536316,0.144216825,0.135805533,0.128250015,0.121428708,0.115241115,0.109603712,0.10444668,0.09971131,0.095347947,0.091314352,0.087574399,0.084097023,0.080855379,0.077826155,0.074989019,0.072326157,0.069821897,0.067462403,0.06523541,0.063130007,0.061136462,0.059246059,0.057450973,0.05574416,0.054119257,0.052570507,0.051092685,0.049681036,0.048331229,0.047039306,0.045801642,0.044614913,0.043476065,0.042382286,0.041330982,0.040319757,0.039346394,0.038408839,0.037505185,0.03663366,0.035792616,0.034980514,0.034195921,0.033437498,0.032703991,0.031994227,0.031307105,0.030641593,0.029996721,0.029371578,0.028765303,0.028177089,0.027606172,0.027051831,0.026513387,0.025990196,0.025481649,0.02498717,0.024506211,0.024038254,0.023582808,0.023139405,0.0227076,0.022286971,0.021877116,0.021477652,0.021088213,0.020708452,0.020338036,0.019976648,0.019623986,0.019279759,0.018943692,0.018615519,0.018294986,0.017981852,0.017675882,0.017376855,0.017084556,0.016798781,0.016519331,0.016246018,0.015978661,0.015717084,0.015461119,0.015210605,0.014965387,0.014725314,0.014490242,0.014260033,0.014034552,0.013813671,0.013597265,0.013385214,0.013177402,0.012973718,0.012774052,0.012578302,0.012386365,0.012198145,0.012013547,0.01183248,0.011654856,0.011480589,0.011309598,0.011141801,0.010977122,0.010815485,0.010656818,0.010501051,0.010348114,0.010197942,0.01005047,0.009905636,0.00976338,0.009623643,0.009486368,0.009351499,0.009218983,0.009088767,0.008960801,0.008835035,0.008711422,0.008589914,0.008470467,0.008353037,0.00823758,0.008124054,0.00801242,0.007902637,0.007794667,0.007688472,0.007584017,0.007481265,0.007380183,0.007280735,0.007182889,0.007086614,0.006991877,0.006898649,0.0068069,0.0067166,0.006627721,0.006540237,0.006454119,0.006369343,0.006285881,0.006203709,0.006122803,0.006043138,0.005964692,0.005887441,0.005811364,0.005736439,0.005662644,0.005589959,0.005518364,0.005447838,0.005378363,0.005309919,0.005242488,0.005176052,0.005110593,0.005046093,0.004982537,0.004919907,0.004858187,0.004797361,0.004737414,0.004678331,0.004620096,0.004562695,0.004506114,0.004450339,0.004395356,0.004341152,0.004287714,0.004235028,0.004183083,0.004131866,0.004081364,0.004031567,0.003982462,0.003934038,0.003886284,0.003839189,0.003792742,0.003746934,0.003701752,0.003657188,0.003613232,0.003569873,0.003527103,0.003484912,0.00344329,0.003402229,0.00336172,0.003321755,0.003282324,0.00324342,0.003205035,0.003167159,0.003129786,0.003092908,0.003056517,0.003020605,0.002985166,0.002950192,0.002915676,0.002881612,0.002847991,0.002814809,0.002782057,0.00274973,0.002717822,0.002686326,0.002655235,0.002624545,0.002594249,0.002564341,0.002534816,0.002505668,0.002476891,0.00244848,0.00242043,0.002392736,0.002365392,0.002338394,0.002311736,0.002285413,0.002259421,0.002233755,0.002208411,0.002183383,0.002158668,0.00213426,0.002110156,0.002086351,0.002062841,0.002039623,0.002016691,0.001994042,0.001971672,0.001949576,0.001927753,0.001906196,0.001884904,0.001863871,0.001843095,0.001822573,0.0018023,0.001782273,0.001762489,0.001742944,0.001723636,0.001704561,0.001685716,0.001667098,0.001648704,0.00163053,0.001612574,0.001594834,0.001577305,0.001559985,0.001542872,0.001525963,0.001509255,0.001492745,0.001476431,0.00146031,0.001444379,0.001428637,0.00141308,0.001397707,0.001382515,0.001367501,0.001352663,0.001337999,0.001323506,0.001309183,0.001295028,0.401535068,0.401535068,0.401535068,0.401535068,0.401535068,0.401535068,0.401535068,0.395855448,0.376516835,0.349176599,0.319522495,0.291048145,0.265270159,0.242556229,0.222751708,0.205517446,0.190483256,0.177308112,0.165698294,0.15540826,0.146235339,0.138012903,0.130603865,0.123895063,0.117792647,0.112218361,0.107106571,0.102401917,0.098057428,0.094033031,0.090294355,0.086811765,0.083559584,0.080515462,0.077659858,0.074975612,0.072447599,0.070062435,0.067808232,0.065674401,0.063651471,0.061730952,0.059905209,0.058167353,0.056511159,0.05493098,0.053421686,0.051978606,0.050597473,0.049274387,0.048005772,0.046788343,0.045619078,0.044495194,0.043414119,0.042373476,0.041371062,0.040404834,0.039472895,0.03857348,0.037704944,0.036865754,0.036054477,0.035269773,0.034510389,0.03377515,0.033062952,0.032372762,0.031703605,0.031054565,0.030424778,0.029813432,0.029219758,0.02864303,0.028082563,0.027537708,0.02700785,0.026492407,0.025990826,0.025502584,0.025027183,0.024564149,0.024113033,0.023673405,0.02324486,0.022827006,0.022419475,0.022021913,0.021633982,0.021255359,0.020885737,0.02052482,0.020172328,0.01982799,0.019491548,0.019162754,0.018841371,0.018527172,0.018219937,0.017919458,0.017625532,0.017337967,0.017056577,0.016781182,0.016511611,0.016247698,0.015989284,0.015736215,0.015488344,0.015245528,0.01500763,0.014774516,0.01454606,0.014322138,0.014102631,0.013887423,0.013676404,0.013469466,0.013266505,0.013067421,0.012872118,0.0126805,0.012492477,0.012307961,0.012126867,0.011949113,0.011774618,0.011603304,0.011435097,0.011269924,0.011107715,0.0109484,0.010791914,0.010638191,0.010487169,0.010338788,0.010192988,0.010049712,0.009908905,0.009770511,0.009634479,0.009500758,0.009369297,0.009240048,0.009112964,0.008987999,0.00886511,0.008744251,0.008625382,0.008508461,0.008393448,0.008280304,0.008168991,0.008059472,0.007951711,0.007845674,0.007741324,0.00763863,0.007537558,0.007438078,0.007340157,0.007243766,0.007148875,0.007055455,0.006963479,0.006872918,0.006783747,0.006695938,0.006609467,0.006524309,0.006440438,0.006357832,0.006276467,0.006196321,0.00611737,0.006039595,0.005962972,0.005887482,0.005813105,0.00573982,0.005667608,0.00559645,0.005526327,0.005457223,0.005389117,0.005321994,0.005255837,0.005190628,0.005126351,0.005062991,0.005000531,0.004938957,0.004878254,0.004818406,0.0047594,0.004701221,0.004643856,0.004587291,0.004531513,0.004476509,0.004422266,0.004368772,0.004316014,0.004263981,0.004212661,0.004162042,0.004112113,0.004062864,0.004014282,0.003966358,0.003919081,0.003872441,0.003826428,0.003781031,0.003736242,0.003692051,0.003648449,0.003605425,0.003562972,0.003521081,0.003479743,0.003438949,0.003398692,0.003358962,0.003319753,0.003281056,0.003242863,0.003205166,0.00316796,0.003131235,0.003094985,0.003059202,0.003023881,0.002989013,0.002954593,0.002920613,0.002887068,0.00285395,0.002821254,0.002788974,0.002757102,0.002725635,0.002694564,0.002663886,0.002633594,0.002603683,0.002574147,0.002544981,0.002516179,0.002487737,0.002459649,0.002431911,0.002404517,0.002377462,0.002350743,0.002324353,0.002298289,0.002272546,0.002247119,0.002222005,0.002197198,0.002172694,0.00214849,0.002124582,0.002100964,0.002077633,0.002054586,0.002031818,0.002009326,0.001987105,0.001965153,0.001943465,0.001922038,0.001900869,0.001879953,0.001859288,0.00183887,0.001818696,0.001798763,0.001779067,0.001759605,0.001740375,0.001721373,0.001702596,0.001684041,0.001665705,0.001647585,0.001629679,0.001611984,0.001594497,0.001577214,0.001560135,0.001543255,0.001526573,0.001510086,0.00149379,0.001477685,0.001461767,0.001446034,0.001430483,0.40646915,0.40646915,0.40646915,0.40646915,0.40646915,0.40646915,0.40646915,0.406380214,0.396929438,0.375068534,0.346877579,0.31747385,0.289735682,0.264803203,0.242872838,0.223732671,0.207037618,0.192430797,0.179589471,0.16823757,0.158144735,0.149120717,0.141008824,0.13367983,0.127026773,0.120960697,0.115407212,0.110303761,0.105597427,0.101243204,0.097202596,0.093442505,0.089934331,0.08665324,0.083577571,0.080688345,0.077968868,0.075404398,0.072981867,0.07068965,0.068517372,0.066455745,0.064496427,0.062631905,0.060855395,0.059160754,0.057542407,0.055995281,0.05451475,0.053096586,0.05173692,0.050432198,0.049179156,0.047974786,0.046816315,0.045701179,0.044627003,0.04359159,0.042592896,0.041629022,0.0406982,0.039798783,0.038929232,0.038088108,0.037274067,0.036485848,0.035722268,0.034982217,0.034264654,0.033568595,0.032893117,0.032237348,0.031600467,0.030981697,0.030380305,0.029795597,0.029226914,0.028673636,0.028135172,0.027610961,0.027100471,0.026603198,0.02611866,0.0256464,0.025185983,0.024736993,0.024299035,0.023871732,0.023454722,0.023047663,0.022650226,0.022262095,0.02188297,0.021512564,0.0211506,0.020796815,0.020450955,0.020112778,0.01978205,0.019458547,0.019142056,0.018832369,0.018529289,0.018232624,0.017942192,0.017657815,0.017379324,0.017106554,0.016839349,0.016577556,0.016321028,0.016069625,0.01582321,0.015581651,0.015344821,0.015112598,0.014884862,0.0146615,0.0144424,0.014227456,0.014016563,0.013809622,0.013606536,0.01340721,0.013211553,0.013019479,0.0128309,0.012645736,0.012463904,0.012285328,0.012109932,0.011937643,0.01176839,0.011602105,0.011438719,0.011278169,0.011120392,0.010965325,0.01081291,0.010663088,0.010515804,0.010371002,0.01022863,0.010088636,0.00995097,0.009815582,0.009682425,0.009551452,0.009422619,0.009295882,0.009171197,0.009048523,0.00892782,0.008809048,0.008692167,0.008577142,0.008463934,0.008352508,0.00824283,0.008134865,0.008028581,0.007923944,0.007820923,0.007719488,0.007619608,0.007521254,0.007424398,0.007329011,0.007235066,0.007142536,0.007051395,0.006961618,0.00687318,0.006786056,0.006700223,0.006615657,0.006532336,0.006450238,0.00636934,0.006289621,0.006211062,0.00613364,0.006057337,0.005982133,0.005908008,0.005834945,0.005762925,0.00569193,0.005621943,0.005552946,0.005484923,0.005417857,0.005351732,0.005286533,0.005222244,0.00515885,0.005096336,0.005034687,0.00497389,0.00491393,0.004854794,0.004796469,0.004738941,0.004682197,0.004626225,0.004571013,0.004516547,0.004462818,0.004409811,0.004357518,0.004305925,0.004255022,0.004204799,0.004155244,0.004106348,0.004058099,0.004010489,0.003963506,0.003917143,0.003871388,0.003826233,0.003781669,0.003737686,0.003694276,0.003651431,0.003609141,0.003567399,0.003526195,0.003485523,0.003445375,0.003405741,0.003366616,0.003327991,0.003289859,0.003252212,0.003215045,0.003178349,0.003142118,0.003106345,0.003071023,0.003036146,0.003001708,0.002967702,0.002934122,0.002900962,0.002868216,0.002835879,0.002803943,0.002772404,0.002741256,0.002710493,0.002680111,0.002650103,0.002620465,0.002591191,0.002562276,0.002533715,0.002505504,0.002477638,0.002450111,0.00242292,0.002396059,0.002369523,0.00234331,0.002317413,0.00229183,0.002266555,0.002241584,0.002216914,0.00219254,0.002168458,0.002144664,0.002121155,0.002097927,0.002074975,0.002052297,0.002029888,0.002007745,0.001985865,0.001964244,0.001942878,0.001921764,0.0019009,0.001880281,0.001859904,0.001839766,0.001819865,0.001800197,0.001780759,0.001761547,0.00174256,0.001723794,0.001705247,0.001686915,0.001668795,0.001650886,0.001633184,0.001615686,0.001598391,0.001581295,0.411463863,0.411463863,0.411463863,0.411463863,0.411463863,0.411463863,0.411463863,0.411463863,0.410824601,0.398927095,0.375727038,0.347252759,0.318181488,0.2910065,0.2666544,0.245233306,0.226507642,0.210135985,0.195774291,0.183114122,0.171892333,0.161889342,0.152923564,0.144845157,0.137530264,0.130876133,0.124797102,0.119221374,0.114088433,0.10934698,0.104953292,0.100869896,0.097064516,0.093509206,0.090179662,0.087054647,0.084115527,0.081345885,0.078731203,0.076258592,0.073916574,0.07169489,0.069584344,0.067576669,0.06566441,0.063840826,0.062099809,0.060435809,0.058843771,0.057319081,0.055857518,0.054455214,0.053108616,0.051814457,0.050569723,0.049371632,0.048217611,0.047105279,0.046032423,0.044996989,0.043997067,0.043030875,0.042096753,0.041193149,0.040318612,0.039471782,0.038651386,0.03785623,0.037085188,0.036337207,0.035611291,0.034906504,0.034221962,0.033556831,0.032910324,0.032281695,0.031670238,0.031075285,0.030496204,0.029932394,0.029383283,0.02884833,0.02832702,0.027818863,0.027323391,0.026840161,0.026368749,0.02590875,0.025459778,0.025021466,0.024593461,0.024175427,0.023767041,0.023367996,0.022977997,0.022596761,0.022224018,0.021859506,0.021502978,0.021154194,0.020812924,0.020478948,0.020152053,0.019832036,0.0195187,0.019211857,0.018911324,0.018616928,0.018328498,0.018045873,0.017768895,0.017497415,0.017231285,0.016970366,0.01671452,0.016463618,0.016217532,0.01597614,0.015739323,0.015506967,0.015278961,0.015055198,0.014835574,0.014619989,0.014408345,0.014200548,0.013996507,0.013796133,0.013599341,0.013406047,0.013216171,0.013029635,0.012846363,0.01266628,0.012489316,0.0123154,0.012144466,0.011976448,0.011811282,0.011648907,0.011489261,0.011332287,0.011177927,0.011026127,0.010876832,0.01072999,0.010585551,0.010443463,0.01030368,0.010166153,0.010030838,0.009897689,0.009766663,0.009637717,0.009510811,0.009385904,0.009262956,0.009141929,0.009022786,0.008905491,0.008790008,0.008676302,0.00856434,0.008454087,0.008345513,0.008238586,0.008133274,0.008029548,0.007927379,0.007826737,0.007727596,0.007629926,0.007533703,0.007438899,0.00734549,0.007253449,0.007162754,0.007073379,0.006985302,0.006898499,0.006812949,0.006728629,0.006645519,0.006563597,0.006482842,0.006403236,0.006324757,0.006247387,0.006171108,0.0060959,0.006021745,0.005948627,0.005876528,0.00580543,0.005735318,0.005666174,0.005597984,0.005530731,0.0054644,0.005398976,0.005334445,0.005270792,0.005208002,0.005146063,0.00508496,0.00502468,0.004965211,0.004906538,0.004848651,0.004791535,0.00473518,0.004679574,0.004624704,0.00457056,0.00451713,0.004464403,0.004412368,0.004361015,0.004310333,0.004260313,0.004210944,0.004162216,0.004114119,0.004066645,0.004019783,0.003973525,0.003927862,0.003882784,0.003838284,0.003794352,0.00375098,0.003708161,0.003665885,0.003624145,0.003582933,0.003542242,0.003502064,0.003462391,0.003423216,0.003384532,0.003346333,0.00330861,0.003271358,0.003234569,0.003198238,0.003162356,0.003126919,0.00309192,0.003057353,0.003023211,0.002989489,0.002956181,0.002923281,0.002890783,0.002858683,0.002826973,0.00279565,0.002764707,0.00273414,0.002703943,0.002674112,0.00264464,0.002615524,0.002586758,0.002558339,0.00253026,0.002502518,0.002475108,0.002448025,0.002421265,0.002394825,0.002368698,0.002342883,0.002317373,0.002292165,0.002267256,0.002242641,0.002218316,0.002194278,0.002170522,0.002147046,0.002123845,0.002100916,0.002078255,0.002055858,0.002033723,0.002011846,0.001990224,0.001968853,0.00194773,0.001926851,0.001906215,0.001885817,0.001865655,0.001845725,0.001826025,0.001806552,0.001787302,0.001768273,0.001749463,0.416519951,0.416519951,0.416519951,0.416519951,0.416519951,0.416519951,0.416519951,0.416519951,0.416519951,0.415493388,0.402671449,0.379101487,0.350696665,0.321904772,0.29505184,0.270984044,0.249783824,0.231215313,0.214945918,0.200642281,0.188005753,0.176781305,0.166755793,0.157752629,0.149625806,0.14225441,0.135537934,0.129392438,0.123747443,0.118543445,0.113729922,0.109263748,0.105107909,0.101230476,0.097603773,0.094203696,0.091009158,0.088001637,0.085164795,0.082484167,0.079946902,0.07754154,0.075257831,0.073086577,0.071019503,0.06904914,0.067168729,0.06537214,0.063653798,0.062008622,0.060431972,0.058919599,0.057467607,0.056072414,0.054730723,0.053439494,0.052195917,0.050997391,0.049841507,0.048726028,0.047648873,0.046608108,0.045601925,0.044628642,0.043686683,0.042774575,0.041890937,0.041034476,0.040203975,0.039398291,0.038616351,0.037857141,0.037119707,0.036403149,0.035706616,0.035029303,0.03437045,0.033729337,0.033105281,0.032497636,0.031905785,0.031329147,0.030767166,0.030219314,0.029685091,0.029164017,0.028655637,0.028159516,0.027675239,0.027202412,0.026740655,0.026289607,0.025848922,0.025418269,0.024997332,0.024585807,0.024183404,0.023789843,0.023404857,0.023028189,0.022659594,0.022298833,0.021945681,0.021599916,0.021261331,0.020929721,0.020604892,0.020286656,0.019974833,0.019669248,0.019369733,0.019076126,0.018788271,0.018506016,0.018229217,0.017957732,0.017691426,0.017430167,0.017173829,0.016922288,0.016675425,0.016433127,0.016195281,0.01596178,0.01573252,0.015507399,0.01528632,0.015069189,0.014855912,0.014646402,0.01444057,0.014238335,0.014039613,0.013844326,0.013652398,0.013463754,0.013278321,0.01309603,0.012916811,0.012740599,0.012567329,0.012396939,0.012229366,0.012064552,0.011902439,0.011742971,0.011586093,0.011431752,0.011279896,0.011130474,0.010983437,0.010838738,0.010696329,0.010556166,0.010418203,0.010282398,0.010148708,0.010017092,0.00988751,0.009759923,0.009634293,0.009510582,0.009388755,0.009268775,0.009150608,0.009034221,0.00891958,0.008806652,0.008695407,0.008585813,0.008477841,0.008371461,0.008266645,0.008163364,0.00806159,0.007961298,0.00786246,0.007765052,0.007669048,0.007574423,0.007481153,0.007389216,0.007298587,0.007209245,0.007121167,0.007034332,0.006948719,0.006864307,0.006781075,0.006699005,0.006618076,0.00653827,0.006459568,0.006381952,0.006305404,0.006229906,0.006155441,0.006081993,0.006009545,0.00593808,0.005867584,0.005798039,0.005729432,0.005661748,0.005594971,0.005529087,0.005464082,0.005399943,0.005336655,0.005274207,0.005212583,0.005151773,0.005091762,0.005032539,0.004974092,0.004916409,0.004859478,0.004803288,0.004747827,0.004693085,0.00463905,0.004585713,0.004533062,0.004481087,0.004429779,0.004379127,0.004329122,0.004279754,0.004231013,0.004182892,0.004135379,0.004088467,0.004042147,0.00399641,0.003951249,0.003906653,0.003862616,0.003819129,0.003776185,0.003733775,0.003691893,0.00365053,0.003609679,0.003569333,0.003529485,0.003490128,0.003451255,0.003412859,0.003374933,0.003337472,0.003300468,0.003263915,0.003227807,0.003192138,0.003156902,0.003122093,0.003087704,0.003053731,0.003020167,0.002987007,0.002954246,0.002921878,0.002889898,0.0028583,0.002827079,0.002796231,0.00276575,0.002735632,0.002705871,0.002676463,0.002647403,0.002618687,0.002590309,0.002562266,0.002534554,0.002507167,0.002480101,0.002453352,0.002426917,0.002400791,0.002374969,0.002349449,0.002324226,0.002299296,0.002274656,0.002250301,0.002226228,0.002202434,0.002178914,0.002155666,0.002132686,0.00210997,0.002087516,0.002065319,0.002043376,0.002021685,0.002000242,0.001979044,0.001958087,0.00193737,0.421638169,0.421638169,0.421638169,0.421638169,0.421638169,0.421638169,0.421638169,0.421638169,0.421638169,0.421638169,0.420800855,0.408580784,0.385533165,0.357475518,0.328862996,0.302065506,0.277971272,0.256693294,0.23801593,0.221619563,0.2071791,0.194401164,0.183034091,0.172866886,0.163724317,0.155461218,0.147957173,0.141111947,0.134841719,0.129076031,0.123755331,0.118829011,0.114253827,0.109992633,0.10601336,0.102288189,0.09879287,0.095506177,0.092409449,0.089486217,0.086721889,0.084103493,0.081619454,0.079259412,0.077014067,0.074875045,0.072834784,0.070886437,0.069023793,0.067241197,0.065533495,0.063895975,0.062324324,0.060814581,0.059363106,0.057966547,0.056621807,0.055326027,0.05407656,0.052870948,0.051706912,0.050582331,0.049495229,0.048443764,0.047426215,0.046440973,0.045486534,0.044561486,0.043664504,0.042794346,0.041949841,0.041129888,0.040333451,0.039559552,0.038807267,0.038075723,0.037364097,0.036671607,0.035997514,0.035341117,0.034701751,0.034078784,0.033471616,0.032879678,0.032302426,0.031739343,0.031189938,0.030653742,0.030130305,0.029619202,0.029120024,0.028632381,0.0281559,0.027690224,0.027235012,0.026789937,0.026354686,0.025928958,0.025512465,0.02510493,0.024706088,0.024315685,0.023933474,0.023559222,0.0231927,0.022833692,0.022481987,0.022137384,0.021799687,0.021468711,0.021144273,0.020826199,0.020514322,0.020208479,0.019908514,0.019614274,0.019325615,0.019042395,0.018764477,0.018491729,0.018224025,0.017961239,0.017703253,0.017449951,0.017201221,0.016956955,0.016717046,0.016481393,0.016249898,0.016022465,0.015799,0.015579414,0.015363618,0.015151528,0.014943062,0.01473814,0.014536683,0.014338616,0.014143866,0.013952362,0.013764033,0.013578812,0.013396635,0.013217436,0.013041155,0.01286773,0.012697102,0.012529215,0.012364013,0.01220144,0.012041445,0.011883976,0.011728983,0.011576416,0.011426228,0.011278372,0.011132804,0.010989478,0.010848352,0.010709384,0.010572532,0.010437756,0.010305018,0.010174278,0.010045501,0.009918649,0.009793686,0.009670579,0.009549293,0.009429795,0.009312053,0.009196035,0.00908171,0.008969047,0.008858018,0.008748594,0.008640745,0.008534445,0.008429666,0.008326382,0.008224568,0.008124197,0.008025245,0.007927688,0.007831502,0.007736663,0.00764315,0.007550939,0.007460009,0.007370339,0.007281907,0.007194694,0.007108678,0.007023841,0.006940163,0.006857625,0.006776209,0.006695897,0.00661667,0.006538512,0.006461404,0.006385332,0.006310277,0.006236225,0.006163158,0.006091062,0.006019922,0.005949722,0.005880448,0.005812086,0.005744621,0.00567804,0.005612328,0.005547474,0.005483463,0.005420283,0.005357921,0.005296365,0.005235603,0.005175623,0.005116412,0.005057961,0.005000256,0.004943288,0.004887046,0.004831517,0.004776694,0.004722563,0.004669117,0.004616344,0.004564235,0.004512781,0.004461971,0.004411796,0.004362248,0.004313318,0.004264996,0.004217274,0.004170143,0.004123595,0.004077622,0.004032215,0.003987367,0.003943069,0.003899315,0.003856096,0.003813405,0.003771235,0.003729578,0.003688428,0.003647776,0.003607617,0.003567944,0.00352875,0.003490028,0.003451773,0.003413977,0.003376634,0.003339739,0.003303285,0.003267266,0.003231676,0.00319651,0.003161763,0.003127427,0.003093498,0.003059971,0.00302684,0.0029941,0.002961746,0.002929772,0.002898174,0.002866946,0.002836084,0.002805583,0.002775439,0.002745646,0.0027162,0.002687096,0.002658331,0.002629899,0.002601797,0.00257402,0.002546564,0.002519425,0.002492598,0.002466081,0.002439868,0.002413956,0.002388341,0.00236302,0.002337988,0.002313242,0.002288778,0.002264593,0.002240684,0.002217046,0.002193677,0.002170573,0.00214773,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426819279,0.426589297,0.416642588,0.395153453,0.367816482,0.339328029,0.312329832,0.28789071,0.266220608,0.247150039,0.230379117,0.21558973,0.202489662,0.190825935,0.180385323,0.17099017,0.162492993,0.15477128,0.147722954,0.141262594,0.135318358,0.129829501,0.12474438,0.120018856,0.115615007,0.111500084,0.107645669,0.10402699,0.100622356,0.097412694,0.094381167,0.091512855,0.088794489,0.086214229,0.083761476,0.081426709,0.079201358,0.077077677,0.075048657,0.073107932,0.071249709,0.069468705,0.067760089,0.066119438,0.06454269,0.063026109,0.061566255,0.06015995,0.058804258,0.057496459,0.05623403,0.055014628,0.053836071,0.05269633,0.05159351,0.050525839,0.049491665,0.048489436,0.0475177,0.046575093,0.045660334,0.044772218,0.04390961,0.043071442,0.042256704,0.041464445,0.040693764,0.039943811,0.039213779,0.038502904,0.037810463,0.037135769,0.03647817,0.035837044,0.035211803,0.034601885,0.034006756,0.033425906,0.032858849,0.032305123,0.031764285,0.031235912,0.030719599,0.030214962,0.029721629,0.029239247,0.028767476,0.028305992,0.027854483,0.02741265,0.026980205,0.026556874,0.026142391,0.025736502,0.025338962,0.024949536,0.024567997,0.024194127,0.023827717,0.023468563,0.02311647,0.022771251,0.022432725,0.022100714,0.021775052,0.021455575,0.021142125,0.020834549,0.020532701,0.020236438,0.019945623,0.019660122,0.019379806,0.019104551,0.018834236,0.018568744,0.018307961,0.018051778,0.017800087,0.017552786,0.017309775,0.017070956,0.016836235,0.016605521,0.016378724,0.016155759,0.015936541,0.015720989,0.015509023,0.015300568,0.015095548,0.014893891,0.014695525,0.014500382,0.014308396,0.0141195,0.013933631,0.013750729,0.013570732,0.013393582,0.013219222,0.013047597,0.012878652,0.012712334,0.012548593,0.012387378,0.01222864,0.012072331,0.011918405,0.011766816,0.011617521,0.011470476,0.011325638,0.011182967,0.011042423,0.010903966,0.010767557,0.01063316,0.010500737,0.010370253,0.010241674,0.010114964,0.009990091,0.009867022,0.009745724,0.009626168,0.009508322,0.009392156,0.009277641,0.009164749,0.009053452,0.008943723,0.008835534,0.008728859,0.008623674,0.008519952,0.008417669,0.008316802,0.008217326,0.008119218,0.008022457,0.007927019,0.007832884,0.007740029,0.007648434,0.007558079,0.007468943,0.007381007,0.007294252,0.007208659,0.007124209,0.007040885,0.006958668,0.006877541,0.006797487,0.00671849,0.006640532,0.006563598,0.006487672,0.006412738,0.006338781,0.006265786,0.006193739,0.006122625,0.006052429,0.005983139,0.00591474,0.005847219,0.005780562,0.005714758,0.005649793,0.005585654,0.005522331,0.005459809,0.005398079,0.005337127,0.005276944,0.005217517,0.005158835,0.005100888,0.005043666,0.004987157,0.004931352,0.00487624,0.004821811,0.004768056,0.004714966,0.00466253,0.00461074,0.004559586,0.004509059,0.004459151,0.004409853,0.004361156,0.004313053,0.004265534,0.004218592,0.004172219,0.004126407,0.004081148,0.004036435,0.003992259,0.003948615,0.003905494,0.00386289,0.003820795,0.003779203,0.003738106,0.003697499,0.003657374,0.003617725,0.003578546,0.00353983,0.003501572,0.003463764,0.003426402,0.003389479,0.00335299,0.003316929,0.003281289,0.003246067,0.003211255,0.003176849,0.003142844,0.003109234,0.003076014,0.00304318,0.003010725,0.002978646,0.002946937,0.002915593,0.002884611,0.002853985,0.00282371,0.002793783,0.002764199,0.002734953,0.002706041,0.002677459,0.002649203,0.002621268,0.002593651,0.002566348,0.002539354,0.002512667,0.002486281,0.002460193,0.002434399,0.002408897,0.002383682,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.432064055,0.42629999,0.407869498,0.381977465,0.353740075,0.326346437,0.301240939,0.278833301,0.259045034,0.24161139,0.226223448,0.212587136,0.200443524,0.189572426,0.179789495,0.170941295,0.162900191,0.155559777,0.148830992,0.142638943,0.136920322,0.13162133,0.126696002,0.122104863,0.117813839,0.113793375,0.110017716,0.106464322,0.103113375,0.099947392,0.096950879,0.094110064,0.09141266,0.088847669,0.086405215,0.084076406,0.081853213,0.079728365,0.077695262,0.075747897,0.073880794,0.072088944,0.070367762,0.068713036,0.067120895,0.065587771,0.06411037,0.062685648,0.061310785,0.059983165,0.058700357,0.057460102,0.056260291,0.055098962,0.053974276,0.052884518,0.05182808,0.050803454,0.049809224,0.048844062,0.047906716,0.046996009,0.046110831,0.045250133,0.044412929,0.043598281,0.042805307,0.042033169,0.041281072,0.040548266,0.039834035,0.039137702,0.038458621,0.037796179,0.037149792,0.036518904,0.035902986,0.035301531,0.034714058,0.034140105,0.033579233,0.03303102,0.032495065,0.031970981,0.0314584,0.030956969,0.030466348,0.029986213,0.029516252,0.029056165,0.028605664,0.028164475,0.02773233,0.027308975,0.026894163,0.026487659,0.026089234,0.025698669,0.025315753,0.024940281,0.024572057,0.024210892,0.023856601,0.023509009,0.023167945,0.022833244,0.022504746,0.022182297,0.021865749,0.021554957,0.021249782,0.020950088,0.020655745,0.020366627,0.02008261,0.019803576,0.01952941,0.019259999,0.018995236,0.018735016,0.018479236,0.018227797,0.017980604,0.017737564,0.017498584,0.017263578,0.01703246,0.016805147,0.016581558,0.016361613,0.016145238,0.015932358,0.015722899,0.015516793,0.015313969,0.015114362,0.014917907,0.014724539,0.014534199,0.014346825,0.014162359,0.013980744,0.013801924,0.013625846,0.013452456,0.013281703,0.013113536,0.012947907,0.012784767,0.012624071,0.012465771,0.012309824,0.012156186,0.012004816,0.01185567,0.011708709,0.011563894,0.011421185,0.011280545,0.011141937,0.011005324,0.010870672,0.010737947,0.010607113,0.010478139,0.010350991,0.01022564,0.010102052,0.009980199,0.009860051,0.009741578,0.009624753,0.009509548,0.009395935,0.009283889,0.009173382,0.00906439,0.008956887,0.008850849,0.008746252,0.008643073,0.008541288,0.008440875,0.008341812,0.008244077,0.00814765,0.008052508,0.007958632,0.007866002,0.007774598,0.007684401,0.007595392,0.007507552,0.007420863,0.007335308,0.00725087,0.007167529,0.007085271,0.007004079,0.006923935,0.006844825,0.006766733,0.006689643,0.00661354,0.00653841,0.006464238,0.006391009,0.006318711,0.006247328,0.006176848,0.006107257,0.006038542,0.005970691,0.00590369,0.005837528,0.005772192,0.005707671,0.005643952,0.005581025,0.005518877,0.005457497,0.005396876,0.005337001,0.005277863,0.005219451,0.005161754,0.005104763,0.005048468,0.004992859,0.004937926,0.00488366,0.004830053,0.004777094,0.004724774,0.004673086,0.00462202,0.004571567,0.004521721,0.004472471,0.00442381,0.00437573,0.004328223,0.004281282,0.004234899,0.004189065,0.004143775,0.00409902,0.004054794,0.004011089,0.003967899,0.003925216,0.003883035,0.003841348,0.003800148,0.00375943,0.003719187,0.003679413,0.003640102,0.003601247,0.003562844,0.003524885,0.003487365,0.003450279,0.00341362,0.003377384,0.003341565,0.003306158,0.003271157,0.003236556,0.003202352,0.003168539,0.003135112,0.003102066,0.003069396,0.003037098,0.003005167,0.002973597,0.002942386,0.002911527,0.002881018,0.002850852,0.002821027,0.002791537,0.00276238,0.002733549,0.002705043,0.002676855,0.002648984 -0.159994583,0.159994583,0.158578734,0.150246928,0.137172851,0.122630524,0.108724811,0.096356634,0.085713986,0.076672085,0.069007382,0.062490161,0.05691738,0.052120063,0.047961162,0.044330606,0.04114014,0.038318815,0.03580931,0.03356503,0.031547847,0.029726345,0.028074462,0.026570436,0.025195977,0.023935619,0.02277621,0.021706501,0.020716824,0.019798825,0.018945253,0.018149789,0.0174069,0.016711722,0.016059966,0.015447834,0.014871951,0.014329311,0.013817227,0.013333289,0.012875332,0.012441403,0.012029739,0.011638742,0.011266962,0.01091308,0.010575893,0.010254303,0.009947303,0.009653972,0.009373462,0.009104994,0.00884785,0.008601367,0.008364931,0.008137976,0.007919974,0.007710438,0.007508914,0.007314978,0.007128236,0.006948322,0.006774891,0.006607624,0.006446218,0.006290393,0.006139885,0.005994445,0.00585384,0.00571785,0.005586271,0.005458906,0.005335572,0.005216097,0.005100315,0.004988074,0.004879226,0.004773632,0.004671162,0.004571691,0.004475101,0.00438128,0.004290121,0.004201523,0.004115389,0.004031629,0.003950154,0.003870881,0.003793732,0.003718631,0.003645504,0.003574285,0.003504906,0.003437304,0.00337142,0.003307196,0.003244577,0.00318351,0.003123944,0.003065831,0.003009125,0.002953781,0.002899756,0.002847009,0.0027955,0.002745193,0.00269605,0.002648036,0.002601118,0.002555263,0.00251044,0.002466619,0.002423771,0.002381869,0.002340884,0.002300793,0.002261569,0.002223188,0.002185628,0.002148865,0.002112879,0.002077647,0.002043151,0.00200937,0.001976286,0.00194388,0.001912135,0.001881033,0.001850558,0.001820695,0.001791427,0.00176274,0.001734619,0.001707049,0.001680019,0.001653513,0.00162752,0.001602028,0.001577023,0.001552494,0.00152843,0.001504821,0.001481654,0.001458921,0.00143661,0.001414713,0.001393219,0.00137212,0.001351406,0.001331069,0.0013111,0.001291492,0.001272235,0.001253323,0.001234747,0.001216501,0.001198577,0.001180968,0.001163668,0.001146669,0.001129966,0.001113552,0.001097421,0.001081567,0.001065984,0.001050667,0.001035611,0.001020809,0.001006256,0.000991948,0.000977879,0.000964045,0.000950441,0.000937063,0.000923905,0.000910963,0.000898234,0.000885712,0.000873395,0.000861277,0.000849356,0.000837626,0.000826085,0.000814729,0.000803554,0.000792558,0.000781735,0.000771084,0.000760601,0.000750283,0.000740126,0.000730129,0.000720287,0.000710598,0.000701059,0.000691667,0.00068242,0.000673315,0.00066435,0.000655522,0.000646828,0.000638266,0.000629834,0.000621529,0.000613349,0.000605292,0.000597356,0.000589539,0.000581838,0.000574252,0.000566779,0.000559415,0.000552161,0.000545013,0.000537971,0.000531031,0.000524193,0.000517455,0.000510815,0.000504271,0.000497821,0.000491465,0.000485201,0.000479026,0.00047294,0.000466941,0.000461028,0.000455199,0.000449453,0.000443789,0.000438204,0.000432699,0.000427271,0.000421919,0.000416642,0.000411439,0.000406309,0.000401251,0.000396263,0.000391344,0.000386493,0.000381709,0.000376992,0.000372339,0.00036775,0.000363224,0.000358761,0.000354358,0.000350015,0.000345731,0.000341506,0.000337338,0.000333226,0.00032917,0.000325168,0.000321221,0.000317326,0.000313484,0.000309693,0.000305952,0.000302262,0.000298621,0.000295028,0.000291483,0.000287985,0.000284533,0.000281126,0.000277765,0.000274448,0.000271174,0.000267943,0.000264755,0.000261608,0.000258503,0.000255437,0.000252412,0.000249426,0.000246478,0.000243569,0.000240698,0.000237863,0.000235065,0.000232303,0.000229576,0.000226885,0.000224228,0.000221605,0.000219015,0.000216458,0.000213934,0.000211442,0.000208982,0.000206553,0.000204154,0.000201786,0.000199448,0.000197139,0.000194859,0.000192608,0.000190385,0.189147176,0.189147176,0.188324063,0.179980057,0.165422846,0.148551607,0.132081287,0.117269234,0.104446624,0.093516111,0.084232759,0.076330291,0.069568207,0.063744251,0.058693464,0.054282939,0.050405917,0.046976483,0.043925184,0.041195545,0.038741345,0.036524499,0.034513411,0.032681698,0.031007189,0.029471136,0.028057596,0.026752934,0.02554543,0.024424959,0.023382731,0.022411086,0.021503315,0.020653524,0.01985651,0.019107668,0.018402908,0.017738582,0.017111431,0.016518532,0.015957257,0.015425239,0.014920336,0.01444061,0.013984301,0.013549805,0.013135664,0.012740542,0.012363217,0.01200257,0.011657572,0.011327274,0.011010803,0.010707354,0.010416181,0.010136594,0.009867952,0.009609661,0.009361169,0.00912196,0.008891556,0.008669508,0.008455398,0.008248837,0.008049456,0.007856913,0.007670886,0.007491072,0.007317188,0.007148965,0.006986152,0.006828512,0.006675819,0.006527864,0.006384446,0.006245375,0.006110475,0.005979574,0.005852513,0.005729139,0.005609309,0.005492885,0.005379736,0.005269739,0.005162777,0.005058736,0.00495751,0.004858998,0.004763102,0.00466973,0.004578792,0.004490206,0.004403889,0.004319765,0.004237761,0.004157805,0.00407983,0.004003771,0.003929566,0.003857156,0.003786484,0.003717495,0.003650136,0.003584357,0.00352011,0.003457348,0.003396026,0.003336101,0.003277533,0.00322028,0.003164305,0.003109571,0.003056042,0.003003685,0.002952464,0.00290235,0.002853312,0.002805319,0.002758343,0.002712356,0.002667332,0.002623245,0.00258007,0.002537783,0.002496361,0.002455781,0.002416022,0.002377062,0.00233888,0.002301459,0.002264777,0.002228817,0.002193561,0.002158991,0.002125091,0.002091845,0.002059235,0.002027248,0.001995869,0.001965082,0.001934874,0.001905231,0.00187614,0.001847589,0.001819564,0.001792054,0.001765047,0.001738532,0.001712498,0.001686933,0.001661827,0.00163717,0.001612953,0.001589165,0.001565798,0.001542841,0.001520287,0.001498126,0.00147635,0.001454951,0.001433921,0.001413252,0.001392937,0.001372968,0.001353338,0.00133404,0.001315067,0.001296413,0.001278071,0.001260034,0.001242297,0.001224854,0.001207698,0.001190825,0.001174227,0.001157901,0.00114184,0.00112604,0.001110494,0.0010952,0.00108015,0.001065342,0.00105077,0.001036429,0.001022316,0.001008425,0.000994754,0.000981297,0.000968051,0.000955011,0.000942175,0.000929537,0.000917095,0.000904845,0.000892784,0.000880907,0.000869212,0.000857696,0.000846354,0.000835184,0.000824184,0.000813349,0.000802677,0.000792165,0.000781811,0.000771611,0.000761563,0.000751664,0.000741911,0.000732302,0.000722835,0.000713508,0.000704316,0.00069526,0.000686335,0.00067754,0.000668873,0.000660331,0.000651912,0.000643615,0.000635437,0.000627377,0.000619432,0.0006116,0.00060388,0.000596269,0.000588766,0.00058137,0.000574078,0.000566888,0.0005598,0.000552811,0.00054592,0.000539125,0.000532425,0.000525818,0.000519303,0.000512877,0.000506541,0.000500292,0.000494129,0.000488051,0.000482056,0.000476143,0.000470311,0.000464558,0.000458884,0.000453286,0.000447765,0.000442318,0.000436944,0.000431643,0.000426414,0.000421254,0.000416164,0.000411141,0.000406186,0.000401297,0.000396473,0.000391712,0.000387015,0.00038238,0.000377807,0.000373293,0.000368839,0.000364444,0.000360106,0.000355825,0.0003516,0.00034743,0.000343315,0.000339253,0.000335244,0.000331286,0.00032738,0.000323525,0.000319719,0.000315962,0.000312254,0.000308593,0.00030498,0.000301412,0.00029789,0.000294413,0.000290981,0.000287592,0.000284246,0.000280942,0.000277681,0.000274461,0.000271281,0.000268142,0.000265042,0.000261981,0.000258958,0.000255974,0.000253027,0.000250116,0.000247242,0.000244404,0.223837756,0.223837756,0.223558806,0.215703373,0.199764976,0.180310067,0.160828071,0.143071203,0.127588324,0.114338483,0.103061197,0.093449922,0.085219976,0.078128831,0.07197734,0.066604457,0.061880552,0.057701182,0.053981868,0.050653896,0.047661024,0.04495691,0.042503114,0.040267539,0.038223217,0.036347347,0.034620541,0.033026221,0.031550136,0.030179976,0.028905058,0.027716068,0.026604853,0.025564245,0.024587923,0.023670287,0.022806363,0.02199172,0.021222392,0.020494828,0.019805831,0.019152521,0.018532294,0.017942793,0.017381875,0.016847593,0.016338167,0.015851975,0.015387529,0.014943466,0.014518532,0.014111574,0.013721528,0.013347412,0.012988319,0.012643406,0.012311894,0.011993057,0.011686224,0.011390765,0.011106095,0.01083167,0.010566979,0.010311544,0.010064919,0.009826685,0.009596448,0.009373839,0.009158511,0.008950137,0.008748409,0.008553038,0.008363749,0.008180283,0.008002398,0.007829861,0.007662453,0.007499969,0.007342211,0.007188993,0.007040138,0.006895479,0.006754856,0.006618117,0.006485119,0.006355722,0.006229798,0.00610722,0.00598787,0.005871635,0.005758405,0.005648077,0.005540553,0.005435737,0.005333539,0.005233872,0.005136653,0.005041804,0.004949247,0.004858909,0.004770722,0.004684616,0.004600528,0.004518396,0.00443816,0.004359763,0.004283149,0.004208267,0.004135064,0.004063493,0.003993505,0.003925056,0.003858101,0.003792598,0.003728507,0.003665788,0.003604404,0.003544317,0.003485494,0.003427898,0.003371498,0.003316263,0.00326216,0.00320916,0.003157236,0.003106358,0.0030565,0.003007637,0.002959742,0.002912792,0.002866763,0.002821632,0.002777377,0.002733977,0.00269141,0.002649657,0.002608698,0.002568514,0.002529086,0.002490398,0.002452431,0.002415168,0.002378594,0.002342692,0.002307448,0.002272845,0.00223887,0.002205509,0.002172747,0.002140572,0.00210897,0.002077929,0.002047436,0.00201748,0.001988049,0.001959131,0.001930716,0.001902793,0.001875351,0.00184838,0.00182187,0.001795813,0.001770197,0.001745015,0.001720257,0.001695914,0.001671978,0.001648441,0.001625295,0.001602532,0.001580143,0.001558123,0.001536463,0.001515156,0.001494195,0.001473573,0.001453285,0.001433323,0.001413681,0.001394353,0.001375333,0.001356615,0.001338193,0.001320062,0.001302217,0.001284651,0.001267359,0.001250337,0.00123358,0.001217082,0.001200839,0.001184846,0.001169098,0.001153592,0.001138323,0.001123285,0.001108476,0.001093892,0.001079527,0.001065379,0.001051443,0.001037716,0.001024193,0.001010872,0.000997749,0.00098482,0.000972082,0.000959532,0.000947167,0.000934982,0.000922976,0.000911145,0.000899486,0.000887997,0.000876674,0.000865514,0.000854515,0.000843674,0.000832989,0.000822457,0.000812075,0.00080184,0.000791752,0.000781806,0.000772001,0.000762334,0.000752804,0.000743407,0.000734142,0.000725007,0.000715999,0.000707116,0.000698357,0.00068972,0.000681202,0.000672802,0.000664517,0.000656347,0.000648289,0.000640341,0.000632501,0.000624769,0.000617142,0.000609619,0.000602197,0.000594876,0.000587654,0.00058053,0.000573501,0.000566567,0.000559726,0.000552976,0.000546316,0.000539746,0.000533262,0.000526865,0.000520553,0.000514324,0.000508178,0.000502113,0.000496127,0.00049022,0.000484391,0.000478638,0.000472961,0.000467357,0.000461827,0.000456368,0.000450981,0.000445663,0.000440414,0.000435234,0.000430119,0.000425071,0.000420088,0.000415169,0.000410313,0.000405519,0.000400786,0.000396114,0.000391501,0.000386947,0.000382451,0.000378012,0.000373629,0.000369302,0.000365029,0.000360811,0.000356645,0.000352532,0.00034847,0.000344459,0.000340499,0.000336588,0.000332726,0.000328912,0.000325146,0.000321426,0.000317753,0.000314125,0.265158603,0.265158603,0.265158238,0.25860155,0.241608937,0.219388602,0.196401465,0.175093147,0.156347101,0.140228748,0.126475819,0.114739471,0.104683263,0.096015747,0.088495571,0.081926677,0.076150864,0.071040508,0.066492312,0.062422243,0.058761518,0.05545347,0.052451106,0.049715199,0.047212797,0.044916047,0.042801271,0.04084823,0.039039526,0.037360137,0.035797026,0.034338828,0.032975598,0.031698592,0.030500098,0.029373289,0.028312098,0.027311118,0.026365516,0.025470957,0.024623546,0.023819768,0.023056448,0.022330709,0.02163994,0.020981761,0.020354006,0.019754691,0.019182003,0.018634278,0.018109985,0.017607716,0.017126174,0.016664158,0.016220561,0.015794354,0.015384584,0.014990367,0.014610879,0.014245354,0.013893076,0.013553379,0.013225637,0.012909269,0.012603727,0.012308498,0.012023103,0.011747088,0.011480029,0.011221526,0.010971202,0.010728703,0.010493691,0.010265852,0.010044886,0.009830509,0.009622454,0.009420466,0.009224306,0.009033744,0.008848565,0.008668561,0.008493538,0.00832331,0.008157698,0.007996535,0.00783966,0.007686919,0.007538167,0.007393263,0.007252075,0.007114476,0.006980343,0.00684956,0.006722016,0.006597605,0.006476224,0.006357776,0.006242167,0.006129306,0.006019108,0.00591149,0.005806373,0.00570368,0.005603337,0.005505275,0.005409426,0.005315723,0.005224105,0.005134511,0.005046883,0.004961164,0.004877302,0.004795243,0.004714937,0.004636337,0.004559394,0.004484065,0.004410305,0.004338073,0.004267328,0.004198031,0.004130143,0.004063628,0.003998451,0.003934577,0.003871972,0.003810606,0.003750447,0.003691464,0.003633628,0.003576912,0.003521287,0.003466727,0.003413207,0.003360702,0.003309186,0.003258638,0.003209033,0.003160351,0.003112568,0.003065666,0.003019622,0.002974419,0.002930036,0.002886455,0.002843658,0.002801628,0.002760347,0.002719799,0.002679967,0.002640837,0.002602393,0.002564619,0.002527502,0.002491028,0.002455182,0.002419952,0.002385325,0.002351287,0.002317827,0.002284933,0.002252592,0.002220794,0.002189528,0.002158782,0.002128546,0.00209881,0.002069563,0.002040797,0.0020125,0.001984665,0.001957282,0.001930342,0.001903837,0.001877757,0.001852095,0.001826843,0.001801993,0.001777537,0.001753467,0.001729777,0.001706459,0.001683506,0.001660911,0.001638668,0.00161677,0.001595211,0.001573984,0.001553084,0.001532504,0.001512239,0.001492282,0.001472629,0.001453273,0.00143421,0.001415434,0.001396941,0.001378724,0.001360779,0.001343102,0.001325688,0.001308532,0.001291629,0.001274976,0.001258567,0.0012424,0.001226468,0.001210769,0.001195299,0.001180053,0.001165028,0.001150221,0.001135626,0.001121242,0.001107063,0.001093088,0.001079312,0.001065732,0.001052345,0.001039148,0.001026138,0.001013311,0.001000664,0.000988196,0.000975902,0.00096378,0.000951827,0.00094004,0.000928418,0.000916956,0.000905653,0.000894506,0.000883512,0.00087267,0.000861976,0.000851429,0.000841026,0.000830765,0.000820643,0.000810659,0.00080081,0.000791094,0.000781509,0.000772054,0.000762725,0.000753522,0.000744443,0.000735484,0.000726645,0.000717924,0.000709319,0.000700828,0.00069245,0.000684182,0.000676023,0.000667972,0.000660027,0.000652187,0.000644448,0.000636812,0.000629275,0.000621836,0.000614494,0.000607248,0.000600095,0.000593035,0.000586067,0.000579188,0.000572398,0.000565696,0.000559079,0.000552547,0.0005461,0.000539734,0.00053345,0.000527246,0.00052112,0.000515073,0.000509102,0.000503207,0.000497387,0.00049164,0.000485965,0.000480362,0.00047483,0.000469367,0.000463972,0.000458645,0.000453384,0.00044819,0.00044306,0.000437993,0.00043299,0.000428049,0.000423169,0.000418349,0.000413589,0.000408888,0.000404245,0.314424949,0.314424949,0.314424949,0.30992247,0.292533976,0.267527642,0.240536007,0.214967348,0.192217136,0.172540287,0.155700461,0.141308607,0.128968851,0.118330545,0.10910014,0.101037814,0.093949477,0.087678309,0.082097302,0.077103111,0.072611157,0.06855178,0.064867232,0.061509327,0.058437605,0.055617882,0.053021108,0.050622459,0.04840061,0.046337147,0.044416096,0.042623538,0.040947289,0.039376647,0.03790217,0.036515499,0.035209211,0.033976689,0.032812018,0.031709895,0.030665552,0.029674691,0.028733427,0.027838241,0.026985935,0.026173602,0.025398588,0.024658468,0.023951022,0.023274214,0.022626171,0.02200517,0.021409622,0.020838059,0.020289124,0.019761558,0.019254195,0.018765952,0.018295818,0.017842857,0.017406191,0.016985004,0.01657853,0.016186055,0.015806909,0.015440464,0.01508613,0.014743352,0.01441161,0.014090414,0.013779301,0.013477834,0.013185604,0.012902221,0.012627317,0.012360546,0.012101579,0.011850102,0.011605822,0.011368458,0.011137742,0.010913423,0.010695259,0.010483022,0.010276495,0.010075469,0.009879747,0.009689141,0.009503471,0.009322564,0.009146258,0.008974395,0.008806826,0.008643408,0.008484003,0.00832848,0.008176713,0.008028582,0.007883972,0.007742772,0.007604874,0.007470179,0.007338586,0.007210002,0.007084338,0.006961505,0.00684142,0.006724002,0.006609174,0.006496862,0.006386994,0.0062795,0.006174313,0.00607137,0.005970608,0.005871967,0.00577539,0.00568082,0.005588205,0.005497491,0.00540863,0.005321571,0.005236269,0.005152677,0.005070753,0.004990452,0.004911735,0.004834562,0.004758893,0.004684692,0.004611923,0.00454055,0.004470539,0.004401858,0.004334475,0.004268358,0.004203479,0.004139806,0.004077313,0.004015972,0.003955757,0.00389664,0.003838598,0.003781606,0.00372564,0.003670677,0.003616695,0.003563672,0.003511587,0.003460418,0.003410147,0.003360754,0.00331222,0.003264526,0.003217654,0.003171587,0.003126308,0.0030818,0.003038047,0.002995034,0.002952745,0.002911165,0.00287028,0.002830075,0.002790536,0.002751651,0.002713406,0.002675788,0.002638785,0.002602384,0.002566574,0.002531343,0.002496679,0.002462572,0.002429011,0.002395985,0.002363483,0.002331497,0.002300016,0.00226903,0.002238531,0.002208508,0.002178954,0.002149859,0.002121214,0.002093012,0.002065244,0.002037902,0.002010979,0.001984467,0.001958358,0.001932645,0.001907321,0.001882379,0.001857812,0.001833614,0.001809777,0.001786296,0.001763164,0.001740376,0.001717924,0.001695804,0.001674009,0.001652534,0.001631373,0.001610521,0.001589973,0.001569723,0.001549766,0.001530098,0.001510714,0.001491608,0.001472776,0.001454214,0.001435916,0.00141788,0.001400099,0.001382571,0.00136529,0.001348253,0.001331456,0.001314894,0.001298565,0.001282464,0.001266588,0.001250932,0.001235494,0.00122027,0.001205256,0.00119045,0.001175847,0.001161445,0.001147241,0.00113323,0.001119411,0.00110578,0.001092335,0.001079072,0.001065988,0.001053082,0.001040349,0.001027788,0.001015396,0.00100317,0.000991107,0.000979206,0.000967463,0.000955876,0.000944444,0.000933163,0.000922031,0.000911046,0.000900206,0.000889509,0.000878952,0.000868534,0.000858252,0.000848104,0.000838089,0.000828205,0.000818448,0.000808819,0.000799314,0.000789932,0.000780671,0.00077153,0.000762506,0.000753598,0.000744805,0.000736124,0.000727554,0.000719093,0.00071074,0.000702494,0.000694352,0.000686314,0.000678377,0.000670541,0.000662804,0.000655164,0.000647621,0.000640172,0.000632817,0.000625554,0.000618382,0.000611299,0.000604305,0.000597398,0.000590577,0.000583841,0.000577188,0.000570618,0.000564129,0.00055772,0.00055139,0.000545138,0.000538963,0.000532864,0.00052684,0.00052089,0.373221947,0.373221947,0.373221947,0.370954565,0.354285296,0.326762541,0.2953331,0.264710154,0.237062687,0.212969865,0.192272798,0.174552732,0.159348055,0.14623726,0.134862394,0.124928878,0.116197392,0.108474217,0.101602324,0.095453924,0.089924446,0.084927802,0.080392657,0.076259524,0.072478478,0.069007364,0.06581038,0.062856944,0.060120797,0.057579276,0.05521273,0.053004039,0.050938228,0.049002139,0.047184172,0.04547406,0.043862686,0.042341923,0.040904512,0.039543942,0.038254361,0.037030493,0.035867573,0.034761279,0.033707692,0.032703241,0.031744671,0.030829008,0.029953527,0.029115729,0.028313318,0.027544179,0.026806363,0.026098067,0.025417626,0.024763496,0.024134246,0.023528544,0.022945153,0.022382921,0.021840771,0.021317701,0.020812771,0.020325104,0.019853876,0.019398316,0.018957699,0.018531345,0.018118613,0.0177189,0.017331639,0.016956293,0.016592357,0.016239353,0.015896829,0.015564358,0.015241535,0.014927976,0.014623318,0.014327216,0.014039341,0.013759383,0.013487045,0.013222046,0.012964117,0.012713003,0.01246846,0.012230257,0.011998171,0.011771991,0.011551515,0.011336549,0.01112691,0.01092242,0.01072291,0.010528219,0.010338192,0.010152678,0.009971537,0.009794631,0.00962183,0.009453006,0.009288039,0.009126813,0.008969216,0.008815141,0.008664483,0.008517144,0.008373028,0.008232043,0.008094099,0.007959111,0.007826997,0.007697677,0.007571073,0.007447113,0.007325725,0.007206839,0.007090388,0.00697631,0.00686454,0.006755019,0.00664769,0.006542495,0.00643938,0.006338292,0.006239182,0.006141998,0.006046694,0.005953223,0.00586154,0.005771602,0.005683366,0.005596793,0.005511842,0.005428474,0.005346653,0.005266343,0.005187508,0.005110114,0.005034128,0.004959518,0.004886253,0.004814302,0.004743636,0.004674227,0.004606045,0.004539066,0.004473261,0.004408606,0.004345075,0.004282645,0.004221291,0.004160991,0.004101722,0.004043463,0.003986192,0.003929889,0.003874534,0.003820107,0.003766588,0.00371396,0.003662205,0.003611304,0.00356124,0.003511996,0.003463557,0.003415906,0.003369027,0.003322906,0.003277527,0.003232876,0.003188938,0.003145701,0.00310315,0.003061273,0.003020056,0.002979487,0.002939554,0.002900244,0.002861546,0.002823449,0.002785942,0.002749012,0.002712651,0.002676846,0.002641589,0.002606869,0.002572677,0.002539002,0.002505835,0.002473168,0.002440992,0.002409297,0.002378075,0.002347318,0.002317018,0.002287166,0.002257755,0.002228777,0.002200224,0.002172089,0.002144366,0.002117046,0.002090123,0.002063591,0.002037441,0.002011669,0.001986268,0.001961231,0.001936552,0.001912226,0.001888245,0.001864606,0.001841302,0.001818327,0.001795676,0.001773344,0.001751325,0.001729615,0.001708208,0.0016871,0.001666286,0.00164576,0.001625518,0.001605557,0.00158587,0.001566455,0.001547306,0.001528419,0.001509791,0.001491416,0.001473292,0.001455414,0.001437779,0.001420382,0.00140322,0.001386289,0.001369586,0.001353108,0.00133685,0.001320809,0.001304982,0.001289366,0.001273958,0.001258754,0.001243752,0.001228948,0.001214339,0.001199922,0.001185696,0.001171655,0.001157799,0.001144124,0.001130627,0.001117306,0.001104158,0.001091181,0.001078372,0.001065729,0.00105325,0.001040931,0.00102877,0.001016766,0.001004916,0.000993218,0.000981669,0.000970268,0.000959012,0.000947899,0.000936928,0.000926095,0.0009154,0.00090484,0.000894414,0.000884118,0.000873953,0.000863915,0.000854003,0.000844215,0.00083455,0.000825005,0.00081558,0.000806272,0.000797079,0.000788001,0.000779036,0.000770181,0.000761436,0.000752799,0.000744268,0.000735843,0.000727521,0.000719301,0.000711182,0.000703163,0.000695241,0.000687417,0.000679687,0.000672052,0.377808117,0.377808117,0.377808117,0.377429963,0.365375087,0.340461203,0.309708173,0.278593528,0.249954071,0.224748739,0.202989131,0.184316634,0.16828027,0.154449827,0.142452739,0.131979407,0.122777056,0.114640568,0.107403507,0.100930391,0.095110386,0.089852286,0.085080569,0.0807323,0.0767547,0.073103236,0.06974011,0.066633063,0.063754408,0.061080268,0.058589947,0.056265426,0.05409095,0.052052682,0.050138428,0.048337398,0.046640016,0.045037747,0.043522968,0.042088845,0.040729237,0.039438609,0.03821196,0.037044758,0.035932891,0.034872615,0.033860518,0.032893479,0.031968643,0.031083389,0.03023531,0.029422189,0.02864198,0.027892797,0.027172893,0.026480649,0.025814563,0.025173241,0.024555385,0.023959786,0.023385317,0.022830925,0.022295626,0.021778498,0.021278679,0.020795358,0.020327777,0.01987522,0.019437016,0.019012533,0.018601173,0.018202375,0.017815608,0.01744037,0.017076186,0.016722609,0.016379212,0.016045594,0.015721371,0.015406182,0.015099682,0.014801544,0.014511456,0.014229122,0.013954261,0.013686604,0.013425895,0.013171889,0.012924354,0.012683066,0.012447814,0.012218394,0.011994611,0.011776281,0.011563224,0.01135527,0.011152256,0.010954026,0.010760428,0.01057132,0.010386563,0.010206023,0.010029574,0.009857093,0.009688462,0.009523567,0.009362301,0.009204557,0.009050234,0.008899236,0.008751468,0.008606841,0.008465266,0.008326661,0.008190943,0.008058036,0.007927862,0.00780035,0.007675428,0.00755303,0.007433088,0.00731554,0.007200323,0.007087379,0.00697665,0.00686808,0.006761615,0.006657203,0.006554794,0.006454338,0.006355788,0.006259098,0.006164223,0.006071121,0.005979749,0.005890066,0.005802033,0.005715612,0.005630766,0.005547458,0.005465653,0.005385317,0.005306418,0.005228922,0.0051528,0.005078019,0.005004551,0.004932367,0.00486144,0.004791741,0.004723244,0.004655925,0.004589757,0.004524716,0.004460779,0.004397922,0.004336123,0.004275359,0.004215611,0.004156856,0.004099074,0.004042246,0.003986353,0.003931375,0.003877294,0.003824093,0.003771753,0.003720258,0.003669592,0.003619738,0.003570679,0.003522402,0.003474891,0.00342813,0.003382106,0.003336805,0.003292213,0.003248316,0.003205102,0.003162557,0.00312067,0.003079428,0.003038819,0.002998832,0.002959454,0.002920676,0.002882485,0.002844872,0.002807826,0.002771337,0.002735394,0.002699989,0.002665111,0.002630751,0.002596901,0.00256355,0.002530691,0.002498315,0.002466413,0.002434978,0.002404,0.002373473,0.002343388,0.002313739,0.002284517,0.002255715,0.002227327,0.002199345,0.002171763,0.002144573,0.00211777,0.002091346,0.002065296,0.002039614,0.002014293,0.001989327,0.001964711,0.001940439,0.001916505,0.001892904,0.00186963,0.001846679,0.001824045,0.001801723,0.001779707,0.001757994,0.001736578,0.001715455,0.00169462,0.001674068,0.001653795,0.001633797,0.001614069,0.001594608,0.001575408,0.001556466,0.001537779,0.001519342,0.00150115,0.001483202,0.001465492,0.001448017,0.001430774,0.001413759,0.001396969,0.0013804,0.001364049,0.001347913,0.001331988,0.001316271,0.00130076,0.001285451,0.001270341,0.001255427,0.001240706,0.001226176,0.001211834,0.001197677,0.001183702,0.001169907,0.001156288,0.001142845,0.001129573,0.00111647,0.001103535,0.001090764,0.001078155,0.001065706,0.001053415,0.00104128,0.001029297,0.001017466,0.001005783,0.000994247,0.000982856,0.000971608,0.0009605,0.000949531,0.000938699,0.000928002,0.000917437,0.000907004,0.0008967,0.000886524,0.000876473,0.000866547,0.000856743,0.000847059,0.000837495,0.000828048,0.000818716,0.000809499,0.000800395,0.000791401,0.000782518,0.000773742,0.000765073,0.000756509,0.000748049,0.000739692,0.382450642,0.382450642,0.382450642,0.382450642,0.37585878,0.354636647,0.325259681,0.29393615,0.264328388,0.237915834,0.214960541,0.195200748,0.17821016,0.16355362,0.150843539,0.139753441,0.130014958,0.121409586,0.11375977,0.106920928,0.100774811,0.095224174,0.090188557,0.085600973,0.081405296,0.077554215,0.074007611,0.070731273,0.067695864,0.064876103,0.062250093,0.059798783,0.057505524,0.055355706,0.053336458,0.051436398,0.049645425,0.047954546,0.046355728,0.044841773,0.043406215,0.042043227,0.040747546,0.039514405,0.038339477,0.037218826,0.036148863,0.035126307,0.034148157,0.033211657,0.032314278,0.03145369,0.030627744,0.029834457,0.029071992,0.02833865,0.027632853,0.026953136,0.026298135,0.025666579,0.025057285,0.024469147,0.023901129,0.023352265,0.022821646,0.022308424,0.021811799,0.02133102,0.020865381,0.020414217,0.019976902,0.019552844,0.019141486,0.018742299,0.018354786,0.017978474,0.017612915,0.017257687,0.016912388,0.016576636,0.016250068,0.015932341,0.015623127,0.015322114,0.015029006,0.014743519,0.014465385,0.014194345,0.013930155,0.01367258,0.013421396,0.01317639,0.012937355,0.012704098,0.012476429,0.012254169,0.012037146,0.011825194,0.011618157,0.011415881,0.01121822,0.011025036,0.010836192,0.010651561,0.010471016,0.01029444,0.010121716,0.009952734,0.009787387,0.009625572,0.009467192,0.009312148,0.009160351,0.009011711,0.008866143,0.008723563,0.008583892,0.008447053,0.008312971,0.008181575,0.008052794,0.007926562,0.007802813,0.007681485,0.007562517,0.007445849,0.007331425,0.007219189,0.007109088,0.007001069,0.006895084,0.006791082,0.006689017,0.006588843,0.006490515,0.00639399,0.006299227,0.006206184,0.006114823,0.006025104,0.005936991,0.005850448,0.00576544,0.005681932,0.005599891,0.005519284,0.005440082,0.005362252,0.005285766,0.005210594,0.005136709,0.005064083,0.004992689,0.004922502,0.004853496,0.004785646,0.00471893,0.004653322,0.004588802,0.004525346,0.004462933,0.004401542,0.004341152,0.004281744,0.004223297,0.004165793,0.004109214,0.00405354,0.003998756,0.003944842,0.003891782,0.003839561,0.003788161,0.003737568,0.003687765,0.003638739,0.003590473,0.003542955,0.00349617,0.003450104,0.003404745,0.003360078,0.003316092,0.003272774,0.003230112,0.003188094,0.003146709,0.003105944,0.003065789,0.003026233,0.002987265,0.002948875,0.002911053,0.002873789,0.002837073,0.002800895,0.002765246,0.002730117,0.002695499,0.002661383,0.002627761,0.002594623,0.002561963,0.002529772,0.002498041,0.002466763,0.002435931,0.002405537,0.002375574,0.002346035,0.002316912,0.002288199,0.002259889,0.002231975,0.002204451,0.002177311,0.002150548,0.002124156,0.00209813,0.002072463,0.00204715,0.002022184,0.001997561,0.001973275,0.001949321,0.001925693,0.001902386,0.001879396,0.001856716,0.001834344,0.001812272,0.001790498,0.001769016,0.001747822,0.001726912,0.00170628,0.001685923,0.001665837,0.001646017,0.00162646,0.001607161,0.001588116,0.001569323,0.001550776,0.001532472,0.001514409,0.001496581,0.001478985,0.001461619,0.001444478,0.00142756,0.00141086,0.001394377,0.001378106,0.001362044,0.00134619,0.001330538,0.001315087,0.001299834,0.001284776,0.001269909,0.001255232,0.001240741,0.001226434,0.001212308,0.001198361,0.00118459,0.001170992,0.001157566,0.001144308,0.001131216,0.001118289,0.001105523,0.001092916,0.001080467,0.001068172,0.00105603,0.001044039,0.001032197,0.001020501,0.001008949,0.000997541,0.000986272,0.000975142,0.000964149,0.000953291,0.000942566,0.000931972,0.000921507,0.00091117,0.000900959,0.000890872,0.000880907,0.000871064,0.00086134,0.000851733,0.000842242,0.000832866,0.000823603,0.000814452,0.387150214,0.387150214,0.387150214,0.387150214,0.38499062,0.36877532,0.341796798,0.310773594,0.280331137,0.252652637,0.228368599,0.207372484,0.189287003,0.173680128,0.160150366,0.148352866,0.138001403,0.128861827,0.120743465,0.113490955,0.106977258,0.101097974,0.095766807,0.090911987,0.086473455,0.082400639,0.078650707,0.075187171,0.071978777,0.068998616,0.066223405,0.063632902,0.061209434,0.058937501,0.056803459,0.054795251,0.052902182,0.051114736,0.049424417,0.047823615,0.046305498,0.044863911,0.043493297,0.042188623,0.040945325,0.03975925,0.038626611,0.037543951,0.036508105,0.03551617,0.034565479,0.033653577,0.032778201,0.031937261,0.031128824,0.030351099,0.029602425,0.028881259,0.028186164,0.027515805,0.026868933,0.026244384,0.02564107,0.02505797,0.024494132,0.023948658,0.023420709,0.022909493,0.022414268,0.021934333,0.021469028,0.021017732,0.020579855,0.020154844,0.019742172,0.019341343,0.018951885,0.018573353,0.018205322,0.017847392,0.017499181,0.017160325,0.01683048,0.016509317,0.016196524,0.015891801,0.015594866,0.015305447,0.015023285,0.014748134,0.014479756,0.014217927,0.013962429,0.013713058,0.013469613,0.013231907,0.012999757,0.012772989,0.012551436,0.012334938,0.01212334,0.011916495,0.011714261,0.0115165,0.011323082,0.011133881,0.010948774,0.010767644,0.010590379,0.010416871,0.010247014,0.010080708,0.009917855,0.009758361,0.009602136,0.009449092,0.009299146,0.009152214,0.009008219,0.008867084,0.008728736,0.008593104,0.008460118,0.008329711,0.008201821,0.008076383,0.007953337,0.007832626,0.007714192,0.00759798,0.007483937,0.007372011,0.007262152,0.007154312,0.007048443,0.0069445,0.006842439,0.006742215,0.006643788,0.006547116,0.006452161,0.006358883,0.006267246,0.006177213,0.006088749,0.006001819,0.005916392,0.005832433,0.005749911,0.005668797,0.005589059,0.00551067,0.005433599,0.005357821,0.005283308,0.005210034,0.005137974,0.005067102,0.004997395,0.004928829,0.004861381,0.004795028,0.004729749,0.004665523,0.004602328,0.004540145,0.004478953,0.004418733,0.004359467,0.004301136,0.004243723,0.004187208,0.004131577,0.004076811,0.004022894,0.003969811,0.003917546,0.003866084,0.003815409,0.003765508,0.003716366,0.003667969,0.003620304,0.003573357,0.003527115,0.003481566,0.003436698,0.003392497,0.003348953,0.003306053,0.003263787,0.003222142,0.003181109,0.003140677,0.003100834,0.003061572,0.003022879,0.002984746,0.002947164,0.002910123,0.002873614,0.002837628,0.002802156,0.002767189,0.002732719,0.002698738,0.002665238,0.00263221,0.002599646,0.00256754,0.002535883,0.002504668,0.002473888,0.002443537,0.002413606,0.002384089,0.002354979,0.002326271,0.002297957,0.002270031,0.002242487,0.00221532,0.002188522,0.002162088,0.002136013,0.00211029,0.002084915,0.002059882,0.002035185,0.002010819,0.00198678,0.001963062,0.00193966,0.00191657,0.001893786,0.001871304,0.00184912,0.001827228,0.001805625,0.001784306,0.001763266,0.001742502,0.00172201,0.001701785,0.001681824,0.001662122,0.001642676,0.001623481,0.001604535,0.001585834,0.001567373,0.00154915,0.00153116,0.001513402,0.00149587,0.001478562,0.001461475,0.001444606,0.001427951,0.001411507,0.001395271,0.001379241,0.001363413,0.001347784,0.001332352,0.001317114,0.001302067,0.001287208,0.001272536,0.001258046,0.001243737,0.001229606,0.00121565,0.001201868,0.001188256,0.001174813,0.001161535,0.001148422,0.001135469,0.001122676,0.001110041,0.00109756,0.001085231,0.001073054,0.001061025,0.001049143,0.001037405,0.00102581,0.001014356,0.001003041,0.000991863,0.000980819,0.00096991,0.000959131,0.000948483,0.000937962,0.000927568,0.000917298,0.000907152,0.000897127,0.391907535,0.391907535,0.391907535,0.391907535,0.391855689,0.382120067,0.358967307,0.329097432,0.298141251,0.269208647,0.243471918,0.221073523,0.201727231,0.185019945,0.170540312,0.157924406,0.146865831,0.137112173,0.128457224,0.120732765,0.113801256,0.107549742,0.101884963,0.096729454,0.09201848,0.087697611,0.083720807,0.080048902,0.076648391,0.073490462,0.070550214,0.067806021,0.065239021,0.062832686,0.060572482,0.058445573,0.056440584,0.054547399,0.052756994,0.051061292,0.049453041,0.047925717,0.046473427,0.045090843,0.043773128,0.042515886,0.041315112,0.040167146,0.039068643,0.038016532,0.037007995,0.036040437,0.035111468,0.03421888,0.033360631,0.03253483,0.031739724,0.030973682,0.03023519,0.029522837,0.028835305,0.028171367,0.027529872,0.026909748,0.026309984,0.025729638,0.025167822,0.024623702,0.024096494,0.02358546,0.023089902,0.022609165,0.022142629,0.021689707,0.021249846,0.020822521,0.020407235,0.020003517,0.019610922,0.019229024,0.018857421,0.01849573,0.018143587,0.017800645,0.017466574,0.01714106,0.016823802,0.016514515,0.016212925,0.01591877,0.015631803,0.015351784,0.015078485,0.014811687,0.014551183,0.014296771,0.014048259,0.013805464,0.013568209,0.013336324,0.013109646,0.01288802,0.012671294,0.012459326,0.012251974,0.012049107,0.011850595,0.011656315,0.011466147,0.011279976,0.011097691,0.010919187,0.010744359,0.010573108,0.010405339,0.010240959,0.010079878,0.00992201,0.009767272,0.009615582,0.009466863,0.00932104,0.009178039,0.009037789,0.008900223,0.008765274,0.008632878,0.008502973,0.008375499,0.008250397,0.008127611,0.008007086,0.007888769,0.007772608,0.007658554,0.007546558,0.007436572,0.007328551,0.00722245,0.007118227,0.007015839,0.006915245,0.006816407,0.006719284,0.006623841,0.00653004,0.006437846,0.006347225,0.006258143,0.006170568,0.006084467,0.00599981,0.005916567,0.005834708,0.005754205,0.00567503,0.005597155,0.005520555,0.005445204,0.005371077,0.005298148,0.005226395,0.005155794,0.005086322,0.005017957,0.004950678,0.004884463,0.004819292,0.004755145,0.004692002,0.004629844,0.004568653,0.004508409,0.004449096,0.004390696,0.004333191,0.004276566,0.004220804,0.004165888,0.004111805,0.004058537,0.004006072,0.003954393,0.003903488,0.003853341,0.00380394,0.003755271,0.003707321,0.003660078,0.003613528,0.003567661,0.003522464,0.003477925,0.003434033,0.003390777,0.003348146,0.003306129,0.003264715,0.003223895,0.003183659,0.003143996,0.003104897,0.003066352,0.003028352,0.002990889,0.002953952,0.002917534,0.002881626,0.00284622,0.002811307,0.002776879,0.002742928,0.002709448,0.002676429,0.002643865,0.002611748,0.002580071,0.002548828,0.00251801,0.002487613,0.002457628,0.002428049,0.002398871,0.002370086,0.002341688,0.002313672,0.002286032,0.002258762,0.002231855,0.002205307,0.002179112,0.002153265,0.002127759,0.002102591,0.002077755,0.002053245,0.002029058,0.002005187,0.001981629,0.001958379,0.001935431,0.001912783,0.001890428,0.001868363,0.001846583,0.001825085,0.001803864,0.001782916,0.001762237,0.001741823,0.00172167,0.001701775,0.001682133,0.001662741,0.001643596,0.001624694,0.001606031,0.001587605,0.00156941,0.001551445,0.001533706,0.00151619,0.001498894,0.001481814,0.001464947,0.001448291,0.001431843,0.001415599,0.001399557,0.001383714,0.001368067,0.001352613,0.001337351,0.001322276,0.001307387,0.001292681,0.001278155,0.001263807,0.001249635,0.001235636,0.001221808,0.001208148,0.001194655,0.001181325,0.001168157,0.001155149,0.001142297,0.001129602,0.001117059,0.001104667,0.001092425,0.001080329,0.001068379,0.001056572,0.001044906,0.001033379,0.001021991,0.001010738,0.000999618,0.000988632,0.396723313,0.396723313,0.396723313,0.396723313,0.396723313,0.393534634,0.376049045,0.348681529,0.317857328,0.28783166,0.260561995,0.236589445,0.215791561,0.197804251,0.182216221,0.168645783,0.156764439,0.146298638,0.137023763,0.1287562,0.121345766,0.114669202,0.108624856,0.103128419,0.098109549,0.0935092,0.089277509,0.085372128,0.081756885,0.078400721,0.075276828,0.072361958,0.069635857,0.0670808,0.064681214,0.062423361,0.06029508,0.058285564,0.056385179,0.05458531,0.052878229,0.051256984,0.049715306,0.048247523,0.046848494,0.045513547,0.044238427,0.043019248,0.041852459,0.040734803,0.03966329,0.038635169,0.037647908,0.036699165,0.035786778,0.034908744,0.034063206,0.033248439,0.032462839,0.031704913,0.030973267,0.030266602,0.029583701,0.028923429,0.028284719,0.027666572,0.02706805,0.026488273,0.025926409,0.025381679,0.024853347,0.024340718,0.023843137,0.023359985,0.022890675,0.022434654,0.021991397,0.021560405,0.021141206,0.020733353,0.020336419,0.019949999,0.019573709,0.019207183,0.01885007,0.018502039,0.018162772,0.017831967,0.017509335,0.017194599,0.016887496,0.016587774,0.016295192,0.016009518,0.015730531,0.015458021,0.015191782,0.014931621,0.014677351,0.014428792,0.014185772,0.013948126,0.013715694,0.013488324,0.013265869,0.013048187,0.012835141,0.012626601,0.012422441,0.012222538,0.012026776,0.011835041,0.011647224,0.011463219,0.011282926,0.011106245,0.010933082,0.010763346,0.010596948,0.010433802,0.010273826,0.010116939,0.009963065,0.009812128,0.009664055,0.009518777,0.009376225,0.009236334,0.00909904,0.00896428,0.008831995,0.008702126,0.008574617,0.008449414,0.008326463,0.008205712,0.008087111,0.007970613,0.007856169,0.007743733,0.007633262,0.007524711,0.007418039,0.007313204,0.007210168,0.00710889,0.007009334,0.006911462,0.006815239,0.006720631,0.006627603,0.006536123,0.006446158,0.006357677,0.006270651,0.006185048,0.006100841,0.006018001,0.005936501,0.005856314,0.005777414,0.005699775,0.005623373,0.005548184,0.005474183,0.005401349,0.005329657,0.005259087,0.005189617,0.005121226,0.005053894,0.0049876,0.004922325,0.004858051,0.004794758,0.004732429,0.004671045,0.00461059,0.004551046,0.004492397,0.004434626,0.004377718,0.004321657,0.004266428,0.004212016,0.004158408,0.004105587,0.004053542,0.004002257,0.00395172,0.003901918,0.003852838,0.003804468,0.003756795,0.003709807,0.003663493,0.003617842,0.003572841,0.00352848,0.003484749,0.003441636,0.003399132,0.003357226,0.003315909,0.00327517,0.003235,0.003195389,0.00315633,0.003117812,0.003079826,0.003042365,0.00300542,0.002968982,0.002933043,0.002897595,0.002862631,0.002828143,0.002794123,0.002760563,0.002727457,0.002694798,0.002662578,0.002630791,0.002599429,0.002568487,0.002537958,0.002507835,0.002478112,0.002448783,0.002419842,0.002391283,0.0023631,0.002335288,0.002307841,0.002280754,0.00225402,0.002227636,0.002201594,0.002175891,0.002150522,0.002125481,0.002100763,0.002076365,0.00205228,0.002028505,0.002005034,0.001981865,0.001958991,0.001936409,0.001914115,0.001892104,0.001870372,0.001848916,0.001827731,0.001806813,0.001786159,0.001765765,0.001745627,0.001725742,0.001706105,0.001686714,0.001667565,0.001648655,0.001629979,0.001611536,0.001593321,0.001575332,0.001557565,0.001540017,0.001522686,0.001505568,0.00148866,0.001471959,0.001455463,0.001439169,0.001423073,0.001407174,0.001391469,0.001375954,0.001360628,0.001345487,0.00133053,0.001315754,0.001301156,0.001286734,0.001272485,0.001258408,0.0012445,0.001230759,0.001217182,0.001203767,0.001190513,0.001177416,0.001164476,0.00115169,0.001139055,0.00112657,0.001114234,0.001102043,0.001089996,0.401598269,0.401598269,0.401598269,0.401598269,0.401598269,0.401534444,0.391830762,0.368964374,0.339453423,0.308783769,0.280009266,0.254305354,0.231840079,0.212355333,0.195461545,0.180765052,0.167914566,0.156612477,0.146612364,0.13771205,0.12974598,0.122578326,0.116097197,0.110209941,0.104839396,0.099920916,0.09540002,0.091230521,0.087373045,0.083793842,0.080463832,0.077357837,0.074453952,0.071733038,0.069178299,0.066774939,0.064509872,0.062371486,0.060349438,0.058434488,0.056618354,0.054893594,0.053253499,0.051692006,0.050203623,0.048783361,0.04742668,0.046129438,0.044887847,0.043698438,0.042558029,0.04146369,0.040412726,0.039402649,0.038431158,0.037496125,0.036595577,0.035727682,0.034890735,0.034083151,0.033303453,0.032550259,0.03182228,0.031118311,0.030437221,0.02977795,0.029139504,0.028520948,0.027921403,0.027340041,0.026776082,0.026228791,0.025697473,0.025181472,0.024680167,0.02419297,0.023719326,0.023258707,0.022810612,0.022374568,0.021950122,0.021536847,0.021134334,0.020742195,0.02036006,0.019987577,0.01962441,0.019270238,0.018924755,0.018587669,0.018258701,0.017937583,0.017624059,0.017317885,0.017018827,0.016726659,0.016441167,0.016162144,0.015889393,0.015622723,0.01536195,0.015106901,0.014857407,0.014613304,0.014374438,0.014140659,0.013911821,0.013687786,0.01346842,0.013253593,0.013043181,0.012837065,0.012635128,0.012437258,0.012243348,0.012053294,0.011866994,0.011684352,0.011505274,0.011329668,0.011157448,0.010988527,0.010822824,0.010660259,0.010500755,0.010344238,0.010190635,0.010039876,0.009891893,0.009746621,0.009603995,0.009463954,0.009326438,0.009191389,0.009058749,0.008928464,0.008800482,0.008674749,0.008551216,0.008429834,0.008310556,0.008193335,0.008078127,0.007964887,0.007853574,0.007744147,0.007636565,0.007530789,0.007426781,0.007324504,0.007223922,0.007125,0.007027704,0.006932001,0.006837858,0.006745244,0.006654127,0.006564478,0.006476268,0.006389468,0.00630405,0.006219987,0.006137252,0.006055821,0.005975667,0.005896765,0.005819093,0.005742627,0.005667343,0.005593219,0.005520234,0.005448366,0.005377594,0.005307899,0.005239259,0.005171657,0.005105072,0.005039486,0.004974882,0.004911241,0.004848546,0.00478678,0.004725927,0.00466597,0.004606893,0.004548682,0.00449132,0.004434793,0.004379087,0.004324187,0.004270078,0.004216749,0.004164185,0.004112373,0.0040613,0.004010954,0.003961323,0.003912394,0.003864156,0.003816597,0.003769707,0.003723473,0.003677884,0.003632932,0.003588604,0.003544891,0.003501782,0.003459269,0.00341734,0.003375987,0.003335201,0.003294972,0.003255292,0.003216152,0.003177542,0.003139456,0.003101883,0.003064818,0.003028251,0.002992174,0.002956581,0.002921463,0.002886813,0.002852624,0.002818889,0.002785601,0.002752753,0.002720338,0.00268835,0.002656782,0.002625628,0.002594881,0.002564536,0.002534587,0.002505026,0.00247585,0.002447052,0.002418626,0.002390567,0.002362869,0.002335527,0.002308536,0.002281891,0.002255587,0.002229618,0.002203981,0.002178669,0.002153678,0.002129004,0.002104643,0.002080588,0.002056837,0.002033385,0.002010228,0.001987361,0.00196478,0.001942481,0.001920461,0.001898714,0.001877239,0.00185603,0.001835084,0.001814397,0.001793966,0.001773786,0.001753856,0.00173417,0.001714726,0.001695521,0.001676551,0.001657812,0.001639303,0.001621018,0.001602957,0.001585115,0.001567489,0.001550077,0.001532875,0.001515882,0.001499093,0.001482507,0.00146612,0.001449929,0.001433934,0.001418129,0.001402514,0.001387086,0.001371841,0.001356778,0.001341894,0.001327187,0.001312655,0.001298295,0.001284105,0.001270082,0.001256226,0.001242532,0.001229,0.001215627,0.001202411,0.406533128,0.406533128,0.406533128,0.406533128,0.406533128,0.406533128,0.404429092,0.388742236,0.362554352,0.332235682,0.302236206,0.274717505,0.25035867,0.229116415,0.210668814,0.19462605,0.180616839,0.168317248,0.157455243,0.147806149,0.139185513,0.131441951,0.124450872,0.11810928,0.112331572,0.107046189,0.102192964,0.097721003,0.093587019,0.089753984,0.086190062,0.082867738,0.079763123,0.076855375,0.074126238,0.071559651,0.069141433,0.066859014,0.064701211,0.06265805,0.060720598,0.058880835,0.057131542,0.055466198,0.053878902,0.052364299,0.050917517,0.049534116,0.048210038,0.04694157,0.045725306,0.044558114,0.043437113,0.042359643,0.041323251,0.040325662,0.039364773,0.038438629,0.037545413,0.036683436,0.035851122,0.035047002,0.034269703,0.03351794,0.032790511,0.032086288,0.031404213,0.030743291,0.030102589,0.029481225,0.028878371,0.028293245,0.027725108,0.027173263,0.02663705,0.026115846,0.02560906,0.025116131,0.024636528,0.024169746,0.023715307,0.023272755,0.022841658,0.022421602,0.022012196,0.021613065,0.021223852,0.020844217,0.020473835,0.020112395,0.019759601,0.01941517,0.019078829,0.018750319,0.018429391,0.018115806,0.017809337,0.017509763,0.017216875,0.01693047,0.016650356,0.016376344,0.016108257,0.015845921,0.015589173,0.015337851,0.015091803,0.014850881,0.014614942,0.01438385,0.014157471,0.013935679,0.013718351,0.013505367,0.013296613,0.013091978,0.012891355,0.012694642,0.012501737,0.012312544,0.012126971,0.011944926,0.011766322,0.011591075,0.011419102,0.011250325,0.011084665,0.010922049,0.010762405,0.010605662,0.010451752,0.01030061,0.010152172,0.010006375,0.00986316,0.009722468,0.009584243,0.009448428,0.009314972,0.009183821,0.009054925,0.008928235,0.008803704,0.008681284,0.00856093,0.0084426,0.008326249,0.008211836,0.00809932,0.007988663,0.007879826,0.007772771,0.007667462,0.007563863,0.007461941,0.00736166,0.007262988,0.007165894,0.007070345,0.006976312,0.006883765,0.006792675,0.006703013,0.006614752,0.006527865,0.006442326,0.006358109,0.006275189,0.006193542,0.006113143,0.00603397,0.005956,0.00587921,0.005803579,0.005729085,0.005655707,0.005583426,0.005512222,0.005442074,0.005372965,0.005304875,0.005237787,0.005171682,0.005106544,0.005042355,0.004979099,0.00491676,0.004855321,0.004794767,0.004735083,0.004676253,0.004618264,0.004561101,0.004504749,0.004449196,0.004394428,0.004340431,0.004287193,0.004234701,0.004182943,0.004131906,0.004081579,0.00403195,0.003983007,0.00393474,0.003887138,0.003840189,0.003793883,0.00374821,0.003703159,0.003658722,0.003614887,0.003571645,0.003528988,0.003486905,0.003445388,0.003404428,0.003364016,0.003324144,0.003284803,0.003245985,0.003207682,0.003169885,0.003132589,0.003095783,0.003059462,0.003023618,0.002988243,0.00295333,0.002918873,0.002884865,0.002851298,0.002818167,0.002785464,0.002753184,0.00272132,0.002689866,0.002658816,0.002628163,0.002597903,0.00256803,0.002538537,0.002509419,0.002480671,0.002452288,0.002424263,0.002396593,0.002369271,0.002342293,0.002315655,0.00228935,0.002263375,0.002237724,0.002212393,0.002187378,0.002162674,0.002138277,0.002114182,0.002090386,0.002066883,0.00204367,0.002020743,0.001998098,0.001975731,0.001953638,0.001931816,0.00191026,0.001888967,0.001867934,0.001847156,0.001826631,0.001806354,0.001786323,0.001766535,0.001746985,0.001727671,0.001708589,0.001689737,0.001671111,0.001652709,0.001634526,0.001616561,0.001598811,0.001581272,0.001563942,0.001546818,0.001529897,0.001513177,0.001496654,0.001480328,0.001464193,0.00144825,0.001432494,0.001416923,0.001401535,0.001386328,0.001371299,0.001356446,0.001341767,0.001327259,0.411528627,0.411528627,0.411528627,0.411528627,0.411528627,0.411528627,0.411528627,0.405707651,0.385887731,0.357867041,0.327474893,0.298291863,0.271872305,0.248593062,0.228295639,0.210632443,0.195224077,0.181721025,0.169822257,0.159276121,0.1498749,0.141447821,0.133854384,0.126978611,0.120724316,0.115011294,0.109772281,0.104950535,0.100497919,0.096373361,0.092541636,0.088972369,0.085639247,0.082519362,0.079592686,0.076841634,0.074250703,0.071806175,0.06949587,0.06730893,0.065235653,0.063267336,0.061396153,0.059615045,0.05791763,0.056298123,0.054751266,0.053272269,0.051856763,0.050500747,0.049200558,0.047952829,0.046754464,0.045602608,0.044494627,0.043428083,0.042400721,0.041410445,0.040455312,0.039533512,0.03864336,0.037783283,0.036951814,0.036147581,0.035369297,0.034615758,0.033885836,0.033178468,0.032492656,0.031827463,0.031182002,0.03055544,0.02994699,0.029355909,0.028781493,0.028223077,0.027680031,0.02715176,0.026637696,0.026137302,0.025650069,0.025175511,0.024713167,0.024262598,0.023823387,0.023395134,0.02297746,0.022570003,0.022172416,0.02178437,0.021405549,0.02103565,0.020674385,0.020321477,0.019976661,0.019639684,0.019310302,0.018988283,0.018673402,0.018365444,0.018064203,0.017769481,0.017481087,0.017198838,0.016922558,0.016652077,0.016387232,0.016127864,0.015873824,0.015624965,0.015381145,0.01514223,0.014908088,0.014678593,0.014453622,0.014233058,0.014016787,0.013804699,0.013596687,0.013392649,0.013192484,0.012996097,0.012803395,0.012614287,0.012428686,0.012246507,0.012067669,0.011892092,0.011719698,0.011550415,0.011384168,0.011220888,0.011060507,0.010902958,0.010748178,0.010596104,0.010446675,0.010299834,0.010155521,0.010013684,0.009874266,0.009737216,0.009602483,0.009470017,0.009339771,0.009211696,0.009085748,0.008961882,0.008840054,0.008720223,0.008602347,0.008486387,0.008372304,0.00826006,0.008149617,0.00804094,0.007933993,0.007828743,0.007725156,0.0076232,0.007522842,0.007424051,0.007326799,0.007231054,0.007136788,0.007043974,0.006952583,0.006862589,0.006773966,0.006686688,0.00660073,0.006516068,0.006432678,0.006350537,0.006269622,0.00618991,0.006111381,0.006034012,0.005957784,0.005882674,0.005808665,0.005735736,0.005663869,0.005593044,0.005523244,0.00545445,0.005386646,0.005319814,0.005253938,0.005189001,0.005124987,0.00506188,0.004999666,0.004938329,0.004877854,0.004818227,0.004759434,0.004701462,0.004644295,0.004587922,0.004532329,0.004477504,0.004423433,0.004370105,0.004317507,0.004265629,0.004214457,0.004163982,0.004114191,0.004065074,0.004016621,0.00396882,0.003921661,0.003875135,0.003829231,0.00378394,0.003739253,0.003695159,0.003651649,0.003608715,0.003566348,0.003524539,0.00348328,0.003442562,0.003402376,0.003362716,0.003323572,0.003284938,0.003246805,0.003209166,0.003172014,0.003135341,0.00309914,0.003063405,0.003028128,0.002993303,0.002958922,0.00292498,0.002891471,0.002858387,0.002825722,0.002793471,0.002761628,0.002730186,0.00269914,0.002668484,0.002638213,0.002608321,0.002578803,0.002549653,0.002520866,0.002492437,0.002464361,0.002436634,0.002409249,0.002382203,0.00235549,0.002329106,0.002303046,0.002277307,0.002251883,0.002226769,0.002201963,0.002177459,0.002153254,0.002129342,0.002105721,0.002082387,0.002059335,0.002036561,0.002014062,0.001991835,0.001969875,0.001948178,0.001926742,0.001905563,0.001884637,0.001863961,0.001843531,0.001823345,0.001803399,0.00178369,0.001764215,0.00174497,0.001725954,0.001707161,0.001688591,0.001670239,0.001652104,0.001634181,0.001616469,0.001598964,0.001581664,0.001564567,0.001547669,0.001530968,0.001514462,0.001498148,0.001482023,0.001466086,0.416585511,0.416585511,0.416585511,0.416585511,0.416585511,0.416585511,0.416585511,0.416494361,0.406808371,0.384403384,0.355510801,0.325375261,0.296946735,0.271393727,0.24891755,0.229301016,0.21219045,0.197220089,0.184059163,0.172424731,0.162080702,0.15283209,0.144518306,0.137006905,0.130188264,0.123971213,0.118279511,0.113049043,0.108225577,0.103762984,0.099621811,0.095768138,0.092172651,0.0888099,0.085657681,0.082696547,0.079909387,0.077281092,0.074798268,0.072449001,0.070222659,0.068109721,0.066101639,0.064190712,0.062369988,0.06063317,0.058974545,0.057388913,0.055871534,0.054418075,0.053024568,0.051687374,0.050403146,0.049168801,0.047981498,0.046838607,0.045737697,0.044676514,0.043652964,0.042665101,0.041711113,0.040789311,0.039898118,0.03903606,0.038201758,0.037393921,0.036611337,0.035852868,0.035117446,0.034404063,0.033711773,0.033039684,0.032386952,0.031752782,0.031136422,0.030537161,0.029954325,0.029387277,0.028835411,0.028298153,0.027774958,0.027265308,0.026768711,0.026284697,0.025812821,0.025352657,0.024903799,0.02446586,0.024038473,0.023621283,0.023213953,0.022816163,0.022427602,0.022047977,0.021677005,0.021314414,0.020959946,0.020613352,0.020274393,0.019942839,0.019618471,0.019301077,0.018990453,0.018686405,0.018388744,0.018097289,0.017811867,0.017532309,0.017258453,0.016990144,0.016727232,0.016469572,0.016217024,0.015969453,0.015726729,0.015488726,0.015255322,0.015026401,0.014801848,0.014581554,0.014365413,0.014153321,0.01394518,0.013740893,0.013540368,0.013343513,0.013150241,0.012960467,0.01277411,0.01259109,0.012411329,0.012234752,0.012061287,0.011890862,0.011723411,0.011558865,0.01139716,0.011238234,0.011082025,0.010928475,0.010777525,0.01062912,0.010483204,0.010339726,0.010198633,0.010059876,0.009923405,0.009789172,0.009657133,0.009527241,0.009399453,0.009273727,0.009150019,0.009028291,0.008908501,0.008790613,0.008674587,0.008560389,0.008447981,0.008337329,0.008228399,0.008121158,0.008015573,0.007911614,0.007809248,0.007708446,0.007609179,0.007511418,0.007415135,0.007320302,0.007226893,0.007134881,0.007044242,0.00695495,0.006866981,0.00678031,0.006694916,0.006610774,0.006527862,0.00644616,0.006365645,0.006286296,0.006208094,0.006131018,0.006055049,0.005980168,0.005906355,0.005833593,0.005761864,0.00569115,0.005621434,0.005552699,0.005484928,0.005418106,0.005352217,0.005287245,0.005223175,0.005159992,0.005097682,0.00503623,0.004975622,0.004915845,0.004856885,0.004798729,0.004741364,0.004684778,0.004628957,0.00457389,0.004519565,0.004465969,0.004413093,0.004360923,0.00430945,0.004258661,0.004208548,0.004159099,0.004110303,0.004062152,0.004014634,0.003967741,0.003921462,0.003875789,0.003830711,0.003786221,0.003742309,0.003698967,0.003656185,0.003613957,0.003572272,0.003531124,0.003490505,0.003450405,0.003410819,0.003371738,0.003333155,0.003295062,0.003257453,0.00322032,0.003183656,0.003147456,0.003111711,0.003076416,0.003041564,0.003007148,0.002973163,0.002939602,0.002906459,0.002873729,0.002841404,0.002809481,0.002777953,0.002746814,0.00271606,0.002685684,0.002655681,0.002626047,0.002596776,0.002567862,0.002539302,0.00251109,0.002483222,0.002455693,0.002428497,0.002401631,0.00237509,0.00234887,0.002322966,0.002297374,0.002272089,0.002247109,0.002222427,0.002198042,0.002173948,0.002150141,0.002126618,0.002103375,0.002080409,0.002057715,0.00203529,0.002013131,0.001991233,0.001969594,0.00194821,0.001927078,0.001906194,0.001885555,0.001865159,0.001845001,0.001825079,0.001805389,0.00178593,0.001766697,0.001747687,0.001728899,0.001710329,0.001691974,0.001673831,0.001655898,0.001638173,0.001620651,0.421704534,0.421704534,0.421704534,0.421704534,0.421704534,0.421704534,0.421704534,0.421704534,0.421049361,0.408855746,0.385078277,0.35589532,0.326100511,0.298249181,0.273290997,0.251336767,0.232145051,0.21536593,0.200646797,0.187671537,0.176170455,0.165918506,0.156729585,0.148450119,0.14095317,0.134133428,0.1279031,0.122188602,0.116927909,0.11206845,0.107565409,0.103380385,0.099480295,0.095836499,0.092424088,0.089221296,0.086209026,0.083370453,0.080690695,0.078156545,0.075756238,0.07347926,0.071316186,0.069258543,0.067298691,0.065429721,0.063645373,0.061939959,0.060308298,0.05874566,0.057247721,0.055810516,0.054430404,0.053104035,0.051828321,0.050600412,0.04941767,0.048277653,0.047178095,0.046116892,0.045092083,0.044101844,0.043144474,0.04221838,0.041322077,0.040454171,0.039613357,0.03879841,0.038008179,0.037241581,0.036497599,0.03577527,0.035073691,0.034392007,0.033729409,0.033085134,0.032458459,0.031848699,0.031255206,0.030677363,0.030114585,0.029566318,0.029032034,0.028511229,0.028003426,0.02750817,0.027025025,0.026553577,0.026093431,0.02564421,0.025205553,0.024777114,0.024358565,0.023949588,0.023549883,0.023159158,0.022777138,0.022403554,0.022038153,0.021680688,0.021330924,0.020988636,0.020653606,0.020325624,0.020004489,0.019690009,0.019381997,0.019080273,0.018784665,0.018495005,0.018211135,0.017932897,0.017660144,0.017392731,0.017130518,0.016873371,0.016621161,0.016373761,0.01613105,0.015892911,0.01565923,0.015429898,0.015204808,0.014983857,0.014766945,0.014553976,0.014344857,0.014139496,0.013937806,0.013739702,0.013545101,0.013353922,0.013166088,0.012981523,0.012800155,0.012621911,0.012446722,0.012274523,0.012105246,0.011938829,0.01177521,0.011614329,0.011456128,0.01130055,0.011147539,0.010997043,0.010849008,0.010703384,0.010560122,0.010419173,0.010280489,0.010144027,0.010009739,0.009877585,0.00974752,0.009619504,0.009493496,0.009369457,0.009247349,0.009127135,0.009008777,0.008892241,0.008777492,0.008664496,0.008553219,0.008443631,0.008335698,0.008229391,0.008124678,0.008021532,0.007919923,0.007819823,0.007721205,0.007624042,0.007528307,0.007433976,0.007341023,0.007249424,0.007159155,0.007070192,0.006982512,0.006896094,0.006810915,0.006726954,0.00664419,0.006562602,0.00648217,0.006402875,0.006324696,0.006247617,0.006171617,0.006096679,0.006022785,0.005949918,0.005878061,0.005807196,0.005737309,0.005668382,0.0056004,0.005533348,0.005467211,0.005401973,0.005337621,0.00527414,0.005211517,0.005149737,0.005088787,0.005028654,0.004969326,0.004910789,0.004853031,0.004796041,0.004739806,0.004684314,0.004629554,0.004575514,0.004522185,0.004469554,0.004417611,0.004366345,0.004315747,0.004265806,0.004216513,0.004167857,0.004119829,0.00407242,0.00402562,0.003979421,0.003933813,0.003888787,0.003844336,0.003800451,0.003757123,0.003714344,0.003672107,0.003630403,0.003589224,0.003548564,0.003508414,0.003468768,0.003429618,0.003390956,0.003352777,0.003315072,0.003277837,0.003241062,0.003204743,0.003168873,0.003133445,0.003098454,0.003063893,0.003029755,0.002996037,0.00296273,0.002929831,0.002897332,0.002865229,0.002833516,0.002802188,0.00277124,0.002740666,0.002710461,0.00268062,0.002651139,0.002622012,0.002593234,0.002564802,0.002536709,0.002508952,0.002481527,0.002454428,0.002427652,0.002401193,0.002375049,0.002349214,0.002323684,0.002298457,0.002273526,0.00224889,0.002224543,0.002200482,0.002176704,0.002153204,0.002129979,0.002107025,0.002084339,0.002061918,0.002039757,0.002017854,0.001996205,0.001974808,0.001953658,0.001932752,0.001912088,0.001891662,0.001871472,0.001851514,0.001831785,0.001812283,0.001793004,0.42688646,0.42688646,0.42688646,0.42688646,0.42688646,0.42688646,0.42688646,0.42688646,0.42688646,0.425834347,0.412693291,0.388536711,0.359424938,0.329916462,0.302395204,0.277728399,0.25600054,0.236969888,0.220295575,0.205635943,0.192684913,0.181181107,0.170906076,0.161678837,0.153349751,0.145794892,0.138911254,0.132612806,0.126827317,0.121493799,0.116560476,0.111983146,0.107723875,0.103749939,0.100032973,0.096548274,0.093274229,0.090191855,0.087284409,0.084537065,0.081936651,0.079471423,0.077130876,0.074905584,0.072787064,0.070767662,0.06884045,0.066999147,0.065238038,0.063551917,0.061936026,0.060386013,0.058897883,0.057467966,0.056092882,0.054769517,0.053494989,0.052266634,0.051081982,0.04993874,0.048834777,0.047768108,0.046736884,0.045739377,0.044773974,0.043839165,0.042933535,0.042055758,0.041204587,0.040378851,0.03957745,0.038799344,0.038043557,0.037309165,0.036595296,0.035901126,0.035225875,0.034568806,0.033929218,0.033306449,0.032699869,0.032108879,0.031532911,0.030971424,0.030423905,0.029889862,0.029368829,0.028860361,0.028364031,0.027879436,0.027406186,0.026943912,0.026492259,0.026050889,0.025619475,0.025197708,0.024785289,0.024381933,0.023987366,0.023601324,0.023223555,0.022853815,0.022491873,0.022137504,0.021790491,0.021450628,0.021117715,0.020791558,0.020471974,0.020158784,0.019851814,0.0195509,0.01925588,0.018966601,0.018682913,0.018404671,0.018131737,0.017863976,0.017601258,0.017343456,0.01709045,0.016842121,0.016598355,0.016359043,0.016124077,0.015893353,0.015666772,0.015444237,0.015225652,0.015010927,0.014799973,0.014592704,0.014389036,0.014188889,0.013992184,0.013798845,0.013608797,0.013421969,0.01323829,0.013057692,0.01288011,0.012705478,0.012533735,0.012364819,0.012198672,0.012035235,0.011874452,0.01171627,0.011560634,0.011407493,0.011256797,0.011108497,0.010962544,0.010818892,0.010677495,0.01053831,0.010401293,0.010266401,0.010133594,0.010002832,0.009874075,0.009747285,0.009622426,0.00949946,0.009378352,0.009259068,0.009141573,0.009025835,0.008911822,0.0087995,0.008688841,0.008579814,0.008472388,0.008366537,0.00826223,0.008159442,0.008058144,0.007958312,0.007859918,0.007762938,0.007667347,0.007573121,0.007480237,0.007388671,0.007298401,0.007209405,0.007121661,0.007035148,0.006949845,0.006865732,0.00678279,0.006700997,0.006620337,0.006540789,0.006462335,0.006384958,0.00630864,0.006233364,0.006159113,0.006085869,0.006013618,0.005942343,0.005872029,0.005802659,0.00573422,0.005666697,0.005600074,0.005534339,0.005469476,0.005405473,0.005342316,0.005279992,0.005218488,0.005157791,0.005097889,0.005038771,0.004980423,0.004922834,0.004865993,0.004809888,0.004754509,0.004699844,0.004645883,0.004592614,0.004540029,0.004488117,0.004436867,0.00438627,0.004336316,0.004286997,0.004238302,0.004190223,0.00414275,0.004095875,0.004049589,0.004003883,0.00395875,0.003914181,0.003870168,0.003826703,0.003783778,0.003741385,0.003699518,0.003658168,0.003617328,0.003576992,0.003537151,0.003497799,0.00345893,0.003420536,0.003382611,0.003345149,0.003308142,0.003271586,0.003235472,0.003199797,0.003164552,0.003129733,0.003095334,0.003061349,0.003027773,0.002994599,0.002961822,0.002929438,0.002897441,0.002865825,0.002834585,0.002803717,0.002773216,0.002743076,0.002713293,0.002683862,0.002654778,0.002626037,0.002597635,0.002569566,0.002541827,0.002514412,0.002487319,0.002460543,0.002434079,0.002407923,0.002382072,0.002356522,0.002331268,0.002306307,0.002281635,0.002257249,0.002233144,0.002209317,0.002185765,0.002162484,0.002139471,0.002116721,0.002094233,0.002072002,0.002050025,0.002028299,0.002006821,0.001985588,0.432132062,0.432132062,0.432132062,0.432132062,0.432132062,0.432132062,0.432132062,0.432132062,0.432132062,0.432132062,0.431273908,0.4187497,0.395128463,0.366372506,0.337047864,0.309583429,0.284889528,0.263081975,0.243939762,0.227135316,0.212335454,0.199239495,0.187589514,0.177169264,0.167799151,0.159330397,0.151639588,0.144623995,0.138197711,0.132288525,0.126835402,0.121786474,0.11709742,0.112730172,0.108651862,0.104833976,0.101251665,0.097883171,0.094709371,0.091713384,0.088880257,0.086196693,0.08365083,0.081232051,0.078930823,0.076738564,0.074647524,0.072650686,0.070741683,0.068914722,0.067164518,0.065486243,0.063875476,0.062328158,0.060840558,0.05940924,0.058031032,0.056703003,0.055422438,0.054186821,0.052993814,0.051841244,0.050727085,0.049649451,0.048606576,0.047596814,0.046618621,0.045670549,0.044751243,0.043859428,0.042993904,0.042153545,0.041337286,0.040544125,0.039773117,0.039023367,0.038294029,0.037584304,0.036893434,0.0362207,0.035565421,0.034926949,0.034304671,0.033698,0.033106381,0.032529284,0.031966206,0.031416664,0.0308802,0.030356376,0.029844774,0.029344994,0.028856654,0.028379389,0.027912848,0.027456696,0.027010612,0.026574288,0.026147429,0.025729751,0.025320983,0.024920863,0.02452914,0.024145573,0.023769929,0.023401986,0.023041527,0.022688347,0.022342246,0.022003032,0.021670519,0.02134453,0.02102489,0.020711436,0.020404004,0.020102442,0.019806599,0.019516329,0.019231495,0.018951959,0.018677591,0.018408265,0.018143859,0.017884252,0.017629332,0.017378986,0.017133106,0.016891589,0.016654332,0.016421238,0.016192212,0.01596716,0.015745994,0.015528626,0.015314971,0.015104948,0.014898478,0.014695481,0.014495884,0.014299613,0.014106597,0.013916767,0.013730056,0.013546397,0.013365728,0.013187987,0.013013113,0.012841047,0.012671733,0.012505114,0.012341138,0.012179749,0.012020898,0.011864534,0.011710608,0.011559073,0.011409881,0.011262988,0.01111835,0.010975923,0.010835665,0.010697535,0.010561493,0.0104275,0.010295517,0.010165508,0.010037435,0.009911264,0.00978696,0.009664488,0.009543815,0.009424909,0.009307739,0.009192273,0.00907848,0.008966332,0.008855799,0.008746853,0.008639467,0.008533613,0.008429264,0.008326395,0.00822498,0.008124995,0.008026415,0.007929216,0.007833375,0.00773887,0.007645677,0.007553775,0.007463142,0.007373758,0.007285602,0.007198653,0.007112892,0.0070283,0.006944858,0.006862547,0.006781348,0.006701245,0.006622218,0.006544252,0.00646733,0.006391434,0.006316549,0.006242659,0.006169748,0.006097801,0.006026803,0.005956739,0.005887595,0.005819357,0.00575201,0.005685541,0.005619937,0.005555185,0.005491271,0.005428183,0.005365909,0.005304435,0.005243752,0.005183845,0.005124705,0.005066319,0.005008676,0.004951766,0.004895578,0.0048401,0.004785324,0.004731237,0.004677832,0.004625096,0.004573022,0.004521599,0.004470818,0.004420669,0.004371145,0.004322235,0.004273931,0.004226224,0.004179107,0.00413257,0.004086606,0.004041206,0.003996363,0.003952068,0.003908315,0.003865095,0.003822401,0.003780227,0.003738564,0.003697405,0.003656745,0.003616575,0.00357689,0.003537682,0.003498945,0.003460673,0.003422859,0.003385498,0.003348583,0.003312107,0.003276066,0.003240454,0.003205264,0.003170491,0.003136129,0.003102173,0.003068618,0.003035459,0.003002689,0.002970304,0.0029383,0.00290667,0.00287541,0.002844515,0.00281398,0.002783801,0.002753974,0.002724492,0.002695353,0.002666552,0.002638083,0.002609944,0.002582129,0.002554635,0.002527457,0.002500592,0.002474035,0.002447783,0.002421831,0.002396176,0.002370815,0.002345742,0.002320956,0.002296451,0.002272225,0.002248274,0.002224595,0.002201184,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437442122,0.437206416,0.427012149,0.404988185,0.376970841,0.347773355,0.320103217,0.295055845,0.272846409,0.253301204,0.236112881,0.22095541,0.207529303,0.195575284,0.184874823,0.17524584,0.166537181,0.158623287,0.15139954,0.144778392,0.138686214,0.133060747,0.127849066,0.123005932,0.118492478,0.114275141,0.110324796,0.106616054,0.103126684,0.099837138,0.096730161,0.093790462,0.09100444,0.088359962,0.085846163,0.083453289,0.081172552,0.078996016,0.076916497,0.07492747,0.073022999,0.071197669,0.069446529,0.067765044,0.066149053,0.064594727,0.063098539,0.061657234,0.060267801,0.058927453,0.057633604,0.056383853,0.055175964,0.054007857,0.052877589,0.051783346,0.050723433,0.04969626,0.048700339,0.047734272,0.046796746,0.045886526,0.045002449,0.04414342,0.043308405,0.042496428,0.041706566,0.040937948,0.040189746,0.039461179,0.038751505,0.038060019,0.037386052,0.03672897,0.036088168,0.03546307,0.034853129,0.034257822,0.033676653,0.033109146,0.032554847,0.032013323,0.031484161,0.030966963,0.030461352,0.029966964,0.029483452,0.029010483,0.028547736,0.028094906,0.027651699,0.027217832,0.026793033,0.026377042,0.025969608,0.02557049,0.025179455,0.02479628,0.02442075,0.024052657,0.023691802,0.023337991,0.022991039,0.022650766,0.022316998,0.02198957,0.021668318,0.021353087,0.021043727,0.02074009,0.020442037,0.020149431,0.019862138,0.019580033,0.01930299,0.01903089,0.018763617,0.018501057,0.018243103,0.017989647,0.017740588,0.017495825,0.017255262,0.017018806,0.016786364,0.016557849,0.016333175,0.016112259,0.015895018,0.015681375,0.015471252,0.015264576,0.015061273,0.014861274,0.014664509,0.014470911,0.014280417,0.014092962,0.013908485,0.013726927,0.013548227,0.01337233,0.013199181,0.013028724,0.012860907,0.01269568,0.012532991,0.012372792,0.012215035,0.012059673,0.011906662,0.011755957,0.011607515,0.011461293,0.011317251,0.011175348,0.011035544,0.010897802,0.010762083,0.010628352,0.010496573,0.010366709,0.010238728,0.010112596,0.00998828,0.009865748,0.009744968,0.009625911,0.009508547,0.009392845,0.009278778,0.009166318,0.009055436,0.008946107,0.008838303,0.008732,0.008627171,0.008523794,0.008421842,0.008321293,0.008222123,0.00812431,0.008027831,0.007932666,0.007838791,0.007746187,0.007654833,0.007564708,0.007475794,0.007388071,0.007301519,0.007216121,0.007131858,0.007048712,0.006966666,0.006885702,0.006805804,0.006726955,0.006649139,0.006572341,0.006496543,0.006421732,0.006347891,0.006275007,0.006203065,0.00613205,0.006061948,0.005992747,0.005924431,0.005856989,0.005790407,0.005724672,0.005659772,0.005595695,0.005532428,0.00546996,0.005408278,0.005347372,0.00528723,0.005227841,0.005169195,0.005111279,0.005054085,0.004997601,0.004941818,0.004886726,0.004832314,0.004778573,0.004725493,0.004673066,0.004621282,0.004570132,0.004519607,0.004469699,0.004420398,0.004371697,0.004323586,0.004276059,0.004229107,0.004182721,0.004136895,0.00409162,0.00404689,0.004002696,0.003959031,0.003915888,0.003873261,0.003831142,0.003789523,0.0037484,0.003707764,0.00366761,0.003627931,0.00358872,0.003549972,0.00351168,0.003473838,0.003436441,0.003399482,0.003362955,0.003326856,0.003291178,0.003255916,0.003221064,0.003186618,0.003152571,0.003118919,0.003085657,0.003052779,0.003020281,0.002988158,0.002956404,0.002925016,0.002893988,0.002863316,0.002832995,0.002803021,0.00277339,0.002744097,0.002715137,0.002686507,0.002658203,0.00263022,0.002602555,0.002575203,0.00254816,0.002521423,0.002494988,0.00246885,0.002443007,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.442817432,0.436909909,0.418020711,0.391484267,0.362544094,0.334468673,0.308738339,0.285773011,0.265492247,0.247624707,0.231853784,0.217878087,0.20543224,0.194290577,0.184264166,0.175195747,0.166954514,0.159431408,0.152535155,0.146188996,0.140328048,0.134897173,0.129849261,0.125143856,0.120746035,0.116625508,0.11275588,0.109114047,0.105679701,0.102434921,0.09936383,0.096452312,0.093687774,0.091058944,0.088555701,0.086168932,0.083890408,0.081712675,0.079628971,0.07763314,0.075719568,0.073883122,0.072119102,0.070423193,0.068791426,0.067220144,0.065705974,0.064245793,0.062836711,0.061476049,0.060161314,0.058890191,0.057660519,0.056470286,0.055317609,0.054200729,0.053117997,0.05206787,0.051048895,0.050059712,0.049099037,0.048165664,0.047258455,0.046376336,0.045518295,0.044683372,0.043870662,0.043079306,0.042308492,0.041557447,0.04082544,0.040111776,0.039415794,0.038736864,0.03807439,0.037427801,0.036796553,0.036180129,0.035578035,0.034989797,0.034414966,0.033853109,0.033303814,0.032766687,0.032241349,0.031727438,0.031224606,0.030732521,0.030250863,0.029779326,0.029317613,0.028865443,0.028422543,0.027988651,0.027563516,0.027146894,0.026738553,0.026338268,0.025945821,0.025561004,0.025183616,0.024813462,0.024450354,0.024094111,0.023744558,0.023401526,0.023064853,0.022734379,0.022409952,0.022091425,0.021778654,0.021471502,0.021169833,0.020873519,0.020582434,0.020296455,0.020015465,0.019739349,0.019467997,0.0192013,0.018939154,0.018681458,0.018428113,0.018179023,0.017934096,0.017693241,0.017456371,0.0172234,0.016994246,0.016768828,0.016547067,0.016328888,0.016114217,0.01590298,0.015695109,0.015490534,0.015289189,0.015091009,0.014895932,0.014703894,0.014514837,0.014328702,0.014145432,0.013964971,0.013787266,0.013612263,0.013439911,0.01327016,0.01310296,0.012938263,0.012776024,0.012616196,0.012458734,0.012303596,0.012150739,0.01200012,0.0118517,0.01170544,0.011561299,0.011419242,0.011279229,0.011141226,0.011005197,0.010871107,0.010738923,0.010608611,0.010480139,0.010353476,0.01022859,0.010105452,0.009984031,0.009864298,0.009746225,0.009629785,0.00951495,0.009401693,0.009289988,0.009179809,0.009071132,0.008963932,0.008858185,0.008753867,0.008650955,0.008549426,0.008449259,0.008350431,0.008252922,0.00815671,0.008061774,0.007968095,0.007875653,0.007784429,0.007694403,0.007605557,0.007517872,0.007431332,0.007345918,0.007261612,0.007178399,0.007096261,0.007015182,0.006935146,0.006856137,0.00677814,0.00670114,0.006625122,0.006550071,0.006475973,0.006402814,0.00633058,0.006259257,0.006188832,0.006119292,0.006050624,0.005982815,0.005915853,0.005849726,0.005784421,0.005719927,0.005656233,0.005593326,0.005531195,0.005469831,0.00540922,0.005349354,0.005290222,0.005231812,0.005174116,0.005117123,0.005060823,0.005005207,0.004950265,0.004895988,0.004842366,0.004789391,0.004737054,0.004685346,0.004634259,0.004583783,0.004533911,0.004484635,0.004435946,0.004387836,0.004340298,0.004293324,0.004246907,0.004201038,0.004155711,0.004110919,0.004066654,0.004022909,0.003979677,0.003936953,0.003894728,0.003852996,0.003811752,0.003770988,0.003730698,0.003690877,0.003651517,0.003612613,0.00357416,0.003536151,0.00349858,0.003461442,0.003424731,0.003388443,0.00335257,0.003317109,0.003282054,0.003247399,0.00321314,0.003179272,0.003145789,0.003112686,0.00307996,0.003047605,0.003015617,0.00298399,0.002952721,0.002921805,0.002891238,0.002861014,0.002831131,0.002801583,0.002772367,0.002743478,0.002714912 -0.09154924,0.091381813,0.090883738,0.090067369,0.088952418,0.087564748,0.085934887,0.084096403,0.08208431,0.079933609,0.077678056,0.075349213,0.072975777,0.070583185,0.068193439,0.065825126,0.063493569,0.061211074,0.058987235,0.056829256,0.054756455,0.052801542,0.050957181,0.049198359,0.047499604,0.04586199,0.044285969,0.04277134,0.041317382,0.039922962,0.038586636,0.037306721,0.03608137,0.03490862,0.03378644,0.032712766,0.031685529,0.030702679,0.0297622,0.028862126,0.028000549,0.027175624,0.02638558,0.025628713,0.024903398,0.024208081,0.023541282,0.022901596,0.022287683,0.021698276,0.021132172,0.02058823,0.02006537,0.019562571,0.019078866,0.018613337,0.018165121,0.017733398,0.017317392,0.016916371,0.01652964,0.016156544,0.015796461,0.015448803,0.015113013,0.014788563,0.014474954,0.014171713,0.013878389,0.013594558,0.013319815,0.013053777,0.012796081,0.012546381,0.012304348,0.012069671,0.011842053,0.011621213,0.011406881,0.011172695,0.010912859,0.010661122,0.010417164,0.010180679,0.009951375,0.009728974,0.009513213,0.009303838,0.009100609,0.008903295,0.008711679,0.008525549,0.008344706,0.008168959,0.007998124,0.007832026,0.007670499,0.007513382,0.007360522,0.007211771,0.00706699,0.006926043,0.006788801,0.00665514,0.006524941,0.00639809,0.006274478,0.006153999,0.006036553,0.005922042,0.005810374,0.005701458,0.005595209,0.005491543,0.005390381,0.005291646,0.005195265,0.005101165,0.00500928,0.004919542,0.004831888,0.004746257,0.00466259,0.00458083,0.004500922,0.004422812,0.00434645,0.004271786,0.004198773,0.004127365,0.004057517,0.003989185,0.00392233,0.003856909,0.003792886,0.003730221,0.003668879,0.003608825,0.003550025,0.003492445,0.003436054,0.003380821,0.003326717,0.003273712,0.003221779,0.00317089,0.003121018,0.003072139,0.003024228,0.002977261,0.002931214,0.002886065,0.002841793,0.002798375,0.002755792,0.002714023,0.002673049,0.00263285,0.00259341,0.00255471,0.002516732,0.00247946,0.002442878,0.00240697,0.00237172,0.002337114,0.002303136,0.002269773,0.002237011,0.002204836,0.002173236,0.002142198,0.002111709,0.002081757,0.002052331,0.00202342,0.001995011,0.001967096,0.001939661,0.001912699,0.001886198,0.001860149,0.001834543,0.00180937,0.001784621,0.001760287,0.00173636,0.001712832,0.001689694,0.001666939,0.001644558,0.001622544,0.00160089,0.001579589,0.001558633,0.001538016,0.001517731,0.001497771,0.001478131,0.001458803,0.001439782,0.001421062,0.001402638,0.001384502,0.00136665,0.001349077,0.001331777,0.001314746,0.001297977,0.001281466,0.001265208,0.001249199,0.001233434,0.001217908,0.001202618,0.001187558,0.001172724,0.001158113,0.001143721,0.001129543,0.001115575,0.001101814,0.001088256,0.001074898,0.001061736,0.001048766,0.001035985,0.00102339,0.001010978,0.000998745,0.000986688,0.000974804,0.000963091,0.000951545,0.000940163,0.000928943,0.000917882,0.000906977,0.000896225,0.000885625,0.000875173,0.000864867,0.000854704,0.000844682,0.000834799,0.000825053,0.000815441,0.000805961,0.000796611,0.000787388,0.000778291,0.000769318,0.000760467,0.000751735,0.000743121,0.000734623,0.000726238,0.000717966,0.000709805,0.000701752,0.000693806,0.000685965,0.000678228,0.000670593,0.000663059,0.000655623,0.000648285,0.000641042,0.000633894,0.000626839,0.000619875,0.000613001,0.000606216,0.000599518,0.000592906,0.000586379,0.000579936,0.000573574,0.000567294,0.000561093,0.000554971,0.000548926,0.000542958,0.000537065,0.000531245,0.000525499,0.000519824,0.00051422,0.000508686,0.000503221,0.000497823,0.000492493,0.000487228,0.000482028,0.000476891,0.000471818,0.000466807,0.000461857,0.000456968,0.000452137,0.11157166,0.111369513,0.110768154,0.109782499,0.108436345,0.106760914,0.104793044,0.102573242,0.10014374,0.097546745,0.094822954,0.092010409,0.089143692,0.086253451,0.083366193,0.080504314,0.077686276,0.074926916,0.072237802,0.069627631,0.067124518,0.064763771,0.062535337,0.060418421,0.058373813,0.056400407,0.054499053,0.052669792,0.050912008,0.049224569,0.047605938,0.046054274,0.044567513,0.043143434,0.041779717,0.040473987,0.039223848,0.038026915,0.036880833,0.035783297,0.034732063,0.033724958,0.032759884,0.031834829,0.03094786,0.030097133,0.029280885,0.02849744,0.0277452,0.02702265,0.026328349,0.025660932,0.025019105,0.024401639,0.023807374,0.023235208,0.0226841,0.022153063,0.021641163,0.021147515,0.020671284,0.020211676,0.01976794,0.019339365,0.018925278,0.01852504,0.018138046,0.017763723,0.017401525,0.017050937,0.016711469,0.016382656,0.016064055,0.015755247,0.015455833,0.015165434,0.014883689,0.014610254,0.014344804,0.014065292,0.013741983,0.013428657,0.01312492,0.012830397,0.012544733,0.012267588,0.011998638,0.011737573,0.011484099,0.011237934,0.010998809,0.010766467,0.010540662,0.01032116,0.010107736,0.009900175,0.009698273,0.009501831,0.009310662,0.009124585,0.008943426,0.008767021,0.00859521,0.008427841,0.008264767,0.008105848,0.007950948,0.007799939,0.007652696,0.007509099,0.007369034,0.007232389,0.00709906,0.006968942,0.006841939,0.006717955,0.006596899,0.006478683,0.006363223,0.006250437,0.006140246,0.006032576,0.005927352,0.005824505,0.005723966,0.005625669,0.005529553,0.005435554,0.005343615,0.005253678,0.005165688,0.005079592,0.004995338,0.004912877,0.00483216,0.004753142,0.004675777,0.004600021,0.004525832,0.00445317,0.004381995,0.004312268,0.004243953,0.004177014,0.004111416,0.004047125,0.003984109,0.003922336,0.003861775,0.003802396,0.003744171,0.003687071,0.003631069,0.003576139,0.003522256,0.003469393,0.003417528,0.003366637,0.003316696,0.003267684,0.00321958,0.003172362,0.003126009,0.003080503,0.003035824,0.002991954,0.002948873,0.002906566,0.002865013,0.002824199,0.002784108,0.002744722,0.002706029,0.002668011,0.002630654,0.002593945,0.002557869,0.002522414,0.002487564,0.002453309,0.002419636,0.002386531,0.002353984,0.002321983,0.002290517,0.002259574,0.002229144,0.002199216,0.002169781,0.002140828,0.002112348,0.002084331,0.002056768,0.00202965,0.002002968,0.001976714,0.001950879,0.001925454,0.001900433,0.001875807,0.001851569,0.001827711,0.001804226,0.001781106,0.001758345,0.001735937,0.001713874,0.00169215,0.001670758,0.001649693,0.001628948,0.001608518,0.001588397,0.001568578,0.001549057,0.001529828,0.001510886,0.001492226,0.001473842,0.00145573,0.001437884,0.001420301,0.001402975,0.001385902,0.001369077,0.001352496,0.001336155,0.001320049,0.001304175,0.001288529,0.001273106,0.001257903,0.001242916,0.001228141,0.001213575,0.001199213,0.001185054,0.001171093,0.001157327,0.001143752,0.001130366,0.001117166,0.001104148,0.001091309,0.001078646,0.001066157,0.001053839,0.001041688,0.001029702,0.001017879,0.001006216,0.00099471,0.000983359,0.00097216,0.00096111,0.000950209,0.000939452,0.000928838,0.000918365,0.00090803,0.000897831,0.000887766,0.000877833,0.000868031,0.000858356,0.000848807,0.000839382,0.000830079,0.000820896,0.000811832,0.000802884,0.000794052,0.000785332,0.000776723,0.000768225,0.000759834,0.00075155,0.000743371,0.000735295,0.00072732,0.000719446,0.000711671,0.000703993,0.000696411,0.000688923,0.000681529,0.000674226,0.000667014,0.000659891,0.000652855,0.000645906,0.000639043,0.000632263,0.000625566,0.000618951,0.000612417,0.000605962,0.000599585,0.000593285,0.000587062,0.136017376,0.135773098,0.135046411,0.133855356,0.132228711,0.130204221,0.127826414,0.12514423,0.122208679,0.119070719,0.115779465,0.112380811,0.108916464,0.105423371,0.101933484,0.098473789,0.095066538,0.091729607,0.088476941,0.08531903,0.082294904,0.079442098,0.076747875,0.074196481,0.071737961,0.069361983,0.067069967,0.06486232,0.062738634,0.06069784,0.058738355,0.056858199,0.055055098,0.053326566,0.051669972,0.0500826,0.048561692,0.047104486,0.045708241,0.044370266,0.043087929,0.041858676,0.040680034,0.039549624,0.03846516,0.037424451,0.036425405,0.035466024,0.034544406,0.03365874,0.032807306,0.03198847,0.03120068,0.030442466,0.029712433,0.029009258,0.028331688,0.027678538,0.027048681,0.026441052,0.025854642,0.025288494,0.024741702,0.024213406,0.023702792,0.023209088,0.02273156,0.022269515,0.021822293,0.021389268,0.020969845,0.02056346,0.020169577,0.019787687,0.019417304,0.019057967,0.018709238,0.018370699,0.018041954,0.017710651,0.017308329,0.016918307,0.016540106,0.016173268,0.015817357,0.015471957,0.015136673,0.014811125,0.014494951,0.014187808,0.013889364,0.013599306,0.013317332,0.013043153,0.012776495,0.012517093,0.012264696,0.012019061,0.011779957,0.011547161,0.011320462,0.011099655,0.010884545,0.010674944,0.010470671,0.010271555,0.010077428,0.009888131,0.009703511,0.009523421,0.009347718,0.009176267,0.009008936,0.008845599,0.008686136,0.008530428,0.008378364,0.008229835,0.008084736,0.007942967,0.00780443,0.007669032,0.007536683,0.007407296,0.007280786,0.007157072,0.007036076,0.006917722,0.006801938,0.006688652,0.006577796,0.006469305,0.006363114,0.006259162,0.00615739,0.006057738,0.005960153,0.005864579,0.005770965,0.00567926,0.005589414,0.005501381,0.005415113,0.005330568,0.0052477,0.00516647,0.005086835,0.005008757,0.004932197,0.004857119,0.004783486,0.004711264,0.004640418,0.004570916,0.004502726,0.004435817,0.004370159,0.004305722,0.004242479,0.004180402,0.004119463,0.004059637,0.004000899,0.003943224,0.003886587,0.003830966,0.003776339,0.003722682,0.003669975,0.003618196,0.003567326,0.003517344,0.003468232,0.00341997,0.003372541,0.003325926,0.003280108,0.003235071,0.003190798,0.003147273,0.00310448,0.003062405,0.003021031,0.002980346,0.002940334,0.002900983,0.002862278,0.002824207,0.002786756,0.002749914,0.002713669,0.002678007,0.002642919,0.002608392,0.002574416,0.002540979,0.002508072,0.002475683,0.002443804,0.002412424,0.002381534,0.002351124,0.002321185,0.002291709,0.002262686,0.002234108,0.002205968,0.002178255,0.002150964,0.002124086,0.002097612,0.002071537,0.002045853,0.002020552,0.001995628,0.001971073,0.001946882,0.001923047,0.001899563,0.001876423,0.00185362,0.00183115,0.001809006,0.001787182,0.001765674,0.001744474,0.001723579,0.001702982,0.001682679,0.001662664,0.001642933,0.001623481,0.001604303,0.001585395,0.001566751,0.001548368,0.00153024,0.001512365,0.001494737,0.001477352,0.001460207,0.001443298,0.00142662,0.00141017,0.001393944,0.001377938,0.00136215,0.001346575,0.001331209,0.001316051,0.001301095,0.00128634,0.001271781,0.001257416,0.001243242,0.001229255,0.001215453,0.001201833,0.001188392,0.001175127,0.001162035,0.001149114,0.001136361,0.001123773,0.001111349,0.001099085,0.001086979,0.001075028,0.001063231,0.001051584,0.001040087,0.001028735,0.001017528,0.001006463,0.000995538,0.00098475,0.000974098,0.000963581,0.000953194,0.000942938,0.00093281,0.000922807,0.000912929,0.000903174,0.000893538,0.000884022,0.000874623,0.000865339,0.00085617,0.000847112,0.000838165,0.000829327,0.000820596,0.000811971,0.000803451,0.000795033,0.000786717,0.000778501,0.000770384,0.000762364,0.16587652,0.165581039,0.164702046,0.163261401,0.161293971,0.158845473,0.155969819,0.152726234,0.149176422,0.14538199,0.141402284,0.137292729,0.133103666,0.128879668,0.124659267,0.120474992,0.116353655,0.112316794,0.108381209,0.104559559,0.100908505,0.097462841,0.094207059,0.091127005,0.088173629,0.085315409,0.082554565,0.079892063,0.077327838,0.074860995,0.072489976,0.07021271,0.068026735,0.065929304,0.063917465,0.061988139,0.06013817,0.058364379,0.056663593,0.055032679,0.053468565,0.051968256,0.050528848,0.049147535,0.047821616,0.046548498,0.045325699,0.044150845,0.043021671,0.04193602,0.040891837,0.03988717,0.038920162,0.037989051,0.037092164,0.036227914,0.035394796,0.034591382,0.033816318,0.033068322,0.032346176,0.031648726,0.030974878,0.030323595,0.029693891,0.029084833,0.028495534,0.027925154,0.027372893,0.026837993,0.026319733,0.025817428,0.025330428,0.024858114,0.024399896,0.023955215,0.023523537,0.023104354,0.022697184,0.022301565,0.021807584,0.021321975,0.020850939,0.020393918,0.019950377,0.019519809,0.019101727,0.018695669,0.01830119,0.01791787,0.017545303,0.017183103,0.016830901,0.016488343,0.016155091,0.015830822,0.015515225,0.015208003,0.014908872,0.014617559,0.014333802,0.014057351,0.013787965,0.013525413,0.013269473,0.013019931,0.012776585,0.012539237,0.012307697,0.012081785,0.011861326,0.011646151,0.0114361,0.011231016,0.011030749,0.010835155,0.010644096,0.010457436,0.010275048,0.010096807,0.009922592,0.009752288,0.009585783,0.009422969,0.009263743,0.009108004,0.008955655,0.008806602,0.008660755,0.008518026,0.008378331,0.008241589,0.008107719,0.007976646,0.007848296,0.007722597,0.007599479,0.007478877,0.007360725,0.00724496,0.007131521,0.00702035,0.006911389,0.006804582,0.006699877,0.006597221,0.006496563,0.006397856,0.00630105,0.006206101,0.006112963,0.006021594,0.00593195,0.005843991,0.005757678,0.005672972,0.005589835,0.005508231,0.005428125,0.005349482,0.005272269,0.005196454,0.005122004,0.00504889,0.004977081,0.004906548,0.004837264,0.0047692,0.004702329,0.004636627,0.004572066,0.004508624,0.004446275,0.004384997,0.004324766,0.004265561,0.004207359,0.00415014,0.004093883,0.004038568,0.003984176,0.003930687,0.003878084,0.003826347,0.00377546,0.003725404,0.003676165,0.003627724,0.003580066,0.003533176,0.003487038,0.003441638,0.00339696,0.003352991,0.003309718,0.003267126,0.003225202,0.003183934,0.003143309,0.003103315,0.003063939,0.003025171,0.002986998,0.002949409,0.002912394,0.002875942,0.002840043,0.002804685,0.00276986,0.002735557,0.002701767,0.002668481,0.002635689,0.002603383,0.002571554,0.002540193,0.002509292,0.002478842,0.002448837,0.002419267,0.002390125,0.002361405,0.002333097,0.002305196,0.002277694,0.002250584,0.00222386,0.002197515,0.002171542,0.002145935,0.002120688,0.002095795,0.002071249,0.002047046,0.002023179,0.001999642,0.001976431,0.001953539,0.001930962,0.001908694,0.00188673,0.001865065,0.001843695,0.001822614,0.001801818,0.001781303,0.001761063,0.001741094,0.001721392,0.001701953,0.001682773,0.001663847,0.001645171,0.001626742,0.001608556,0.001590608,0.001572895,0.001555414,0.00153816,0.001521131,0.001504323,0.001487732,0.001471355,0.001455189,0.00143923,0.001423476,0.001407923,0.001392569,0.00137741,0.001362443,0.001347665,0.001333075,0.001318668,0.001304442,0.001290395,0.001276524,0.001262825,0.001249298,0.001235938,0.001222744,0.001209714,0.001196844,0.001184133,0.001171579,0.001159178,0.001146929,0.00113483,0.001122878,0.001111071,0.001099408,0.001087886,0.001076503,0.001065258,0.001054148,0.001043171,0.001032326,0.001021611,0.001011023,0.001000562,0.000990225,0.202365035,0.202007214,0.200942801,0.199198345,0.196816178,0.193851788,0.190370576,0.18644435,0.182147875,0.177555745,0.172739772,0.167766966,0.16269815,0.157587143,0.152480429,0.147417233,0.142429862,0.137544257,0.132780639,0.128155592,0.12374928,0.119588646,0.115655259,0.111932388,0.108384855,0.104950116,0.101627664,0.098419279,0.095325444,0.092345591,0.089478304,0.086721502,0.084072584,0.081528567,0.079086185,0.076741979,0.074492374,0.072333731,0.070262402,0.068274759,0.066367231,0.064536321,0.062778629,0.061090856,0.059469822,0.057912463,0.056415841,0.054977142,0.053593674,0.052262869,0.05098228,0.049749574,0.048562535,0.047419052,0.046317122,0.045254843,0.044230406,0.043242096,0.042288286,0.04136743,0.040478063,0.039618793,0.0387883,0.037985332,0.037208699,0.036457271,0.035729978,0.0350258,0.034343771,0.033682972,0.033042528,0.032421609,0.031819426,0.031235227,0.030668296,0.030117954,0.029583551,0.029064471,0.028560125,0.028069952,0.027485962,0.026881192,0.026294391,0.025724876,0.025171994,0.024635123,0.02411367,0.023607065,0.023114767,0.022636258,0.022171042,0.021718646,0.021278616,0.020850519,0.02043394,0.020028482,0.019633762,0.019249418,0.018875098,0.018510467,0.018155204,0.017809001,0.017471561,0.0171426,0.016821844,0.016509032,0.016203912,0.015906242,0.015615788,0.015332326,0.015055642,0.014785528,0.014521785,0.01426422,0.014012648,0.013766892,0.013526779,0.013292145,0.013062829,0.012838678,0.012619543,0.012405282,0.012195757,0.011990833,0.011790382,0.011594281,0.011402408,0.011214649,0.01103089,0.010851025,0.010674947,0.010502555,0.010333753,0.010168444,0.010006537,0.009847945,0.009692579,0.009540359,0.009391202,0.009245031,0.009101771,0.008961348,0.008823691,0.008688732,0.008556403,0.008426641,0.008299382,0.008174565,0.008052132,0.007932025,0.007814189,0.00769857,0.007585115,0.007473774,0.007364496,0.007257234,0.007151942,0.007048574,0.006947086,0.006847435,0.00674958,0.00665348,0.006559095,0.006466389,0.006375322,0.00628586,0.006197966,0.006111607,0.006026749,0.00594336,0.005861408,0.005780862,0.005701693,0.00562387,0.005547366,0.005472153,0.005398203,0.005325491,0.005253991,0.005183678,0.005114527,0.005046514,0.004979618,0.004913814,0.00484908,0.004785396,0.004722741,0.004661093,0.004600433,0.004540741,0.004481999,0.004424187,0.004367288,0.004311284,0.004256158,0.004201892,0.00414847,0.004095877,0.004044095,0.003993111,0.003942909,0.003893474,0.003844792,0.003796849,0.003749631,0.003703125,0.003657318,0.003612196,0.003567748,0.003523961,0.003480824,0.003438323,0.003396449,0.003355189,0.003314534,0.003274471,0.003234991,0.003196083,0.003157737,0.003119944,0.003082693,0.003045975,0.003009782,0.002974104,0.002938931,0.002904257,0.002870071,0.002836365,0.002803132,0.002770364,0.002738052,0.00270619,0.002674768,0.002643781,0.002613221,0.00258308,0.002553353,0.002524031,0.002495109,0.00246658,0.002438437,0.002410675,0.002383286,0.002356266,0.002329608,0.002303306,0.002277354,0.002251748,0.002226481,0.002201548,0.002176944,0.002152664,0.002128702,0.002105054,0.002081715,0.00205868,0.002035944,0.002013503,0.001991351,0.001969485,0.001947901,0.001926593,0.001905559,0.001884792,0.001864291,0.001844049,0.001824065,0.001804333,0.00178485,0.001765612,0.001746616,0.001727858,0.001709335,0.001691042,0.001672977,0.001655136,0.001637517,0.001620115,0.001602928,0.001585952,0.001569184,0.001552622,0.001536263,0.001520103,0.00150414,0.00148837,0.001472792,0.001457402,0.001442198,0.001427176,0.001412336,0.001397673,0.001383186,0.001368871,0.001354728,0.001340752,0.001326943,0.001313297,0.001299812,0.001286486,0.183168223,0.182958083,0.182331153,0.181297753,0.179874591,0.178084057,0.175953325,0.173513319,0.170797612,0.167841337,0.164680154,0.161349332,0.157882972,0.154313376,0.150670588,0.146982069,0.143272526,0.139563836,0.135875083,0.132222655,0.128620399,0.125079809,0.121610242,0.118219128,0.114914817,0.111745811,0.108721483,0.105832802,0.103071441,0.100427469,0.097861147,0.095361482,0.092929684,0.090566388,0.088271744,0.086045491,0.083887022,0.081795445,0.079769637,0.077808286,0.075909935,0.074073014,0.072295869,0.070576787,0.068914016,0.067305788,0.065750328,0.064245866,0.062790653,0.061382965,0.060021108,0.058703427,0.057428308,0.056194181,0.054999523,0.053842859,0.052722761,0.051637853,0.050586805,0.049568337,0.048581218,0.047624263,0.046696332,0.045796333,0.044923214,0.044075968,0.043253628,0.042455267,0.041679996,0.040926962,0.040195349,0.039484372,0.038793282,0.038121359,0.037467913,0.036832285,0.03621384,0.035611971,0.035020925,0.034272022,0.033544435,0.032837403,0.032150198,0.03148212,0.030832501,0.030200698,0.029586095,0.028988103,0.028406154,0.027839706,0.027288236,0.026751244,0.02622825,0.025718791,0.025222424,0.024738723,0.024267279,0.023807698,0.023359602,0.022922627,0.022496422,0.022080652,0.021674992,0.02127913,0.020892767,0.020515612,0.020147388,0.019787826,0.019436668,0.019093665,0.018758575,0.018431169,0.018111222,0.017798518,0.01749285,0.017194017,0.016901826,0.016616089,0.016336625,0.01606326,0.015795826,0.01553416,0.015278103,0.015027504,0.014782216,0.014542096,0.014307007,0.014076815,0.013851391,0.013630611,0.013414353,0.013202501,0.012994942,0.012791565,0.012592265,0.012396938,0.012205485,0.012017808,0.011833814,0.011653412,0.011476513,0.011303033,0.011132888,0.010965997,0.010802282,0.010641668,0.01048408,0.010329447,0.010177699,0.01002877,0.009882593,0.009739105,0.009598243,0.009459948,0.009324161,0.009190826,0.009059886,0.008931288,0.00880498,0.008680912,0.008559032,0.008439294,0.00832165,0.008206055,0.008092465,0.007980835,0.007871124,0.007763292,0.007657297,0.007553101,0.007450667,0.007349957,0.007250935,0.007153566,0.007057816,0.006963652,0.006871041,0.006779952,0.006690353,0.006602214,0.006515507,0.006430202,0.006346271,0.006263687,0.006182424,0.006102455,0.006023754,0.005946299,0.005870063,0.005795023,0.005721157,0.005648442,0.005576855,0.005506375,0.005436982,0.005368655,0.005301373,0.005235118,0.005169869,0.005105608,0.005042318,0.004979979,0.004918575,0.004858088,0.004798502,0.004739801,0.004681968,0.004624987,0.004568844,0.004513523,0.00445901,0.004405291,0.004352351,0.004300176,0.004248754,0.004198071,0.004148114,0.00409887,0.004050328,0.004002474,0.003955299,0.003908788,0.003862932,0.00381772,0.003773139,0.00372918,0.003685833,0.003643086,0.00360093,0.003559355,0.003518352,0.003477911,0.003438022,0.003398677,0.003359866,0.003321581,0.003283814,0.003246556,0.003209799,0.003173534,0.003137754,0.003102451,0.003067618,0.003033246,0.00299933,0.00296586,0.002932831,0.002900235,0.002868066,0.002836318,0.002804982,0.002774054,0.002743526,0.002713393,0.002683648,0.002654286,0.0026253,0.002596686,0.002568437,0.002540547,0.002513012,0.002485826,0.002458983,0.002432479,0.002406309,0.002380467,0.002354949,0.00232975,0.002304865,0.002280289,0.002256018,0.002232048,0.002208374,0.002184992,0.002161897,0.002139086,0.002116554,0.002094297,0.002072312,0.002050594,0.002029139,0.002007945,0.001987006,0.00196632,0.001945883,0.001925691,0.001905742,0.00188603,0.001866554,0.00184731,0.001828295,0.001809505,0.001790937,0.001772589,0.001754457,0.001736538,0.001718829,0.001701328,0.001684032,0.001666938,0.184275294,0.184065173,0.183438314,0.182405083,0.180982251,0.179192293,0.177062472,0.174623798,0.171909921,0.16895603,0.165797821,0.162470572,0.159008366,0.155443466,0.151805853,0.148122912,0.144419258,0.140716674,0.137034142,0.133387952,0.129791856,0.126257262,0.122793446,0.119407769,0.116111737,0.11295579,0.109942871,0.107064093,0.104311259,0.101676801,0.099137176,0.096661189,0.094249738,0.091903738,0.089623602,0.087409315,0.085260501,0.083176479,0.081156324,0.079198906,0.077302936,0.075466994,0.073689567,0.07196907,0.07030387,0.068692302,0.067132689,0.06562335,0.064162615,0.062748832,0.061380373,0.060055644,0.058773084,0.057531173,0.056328431,0.055163423,0.054034759,0.052941094,0.05188113,0.050853612,0.049857333,0.04889113,0.047953884,0.047044519,0.046162001,0.045305336,0.04447357,0.043665788,0.042881111,0.042118696,0.041377733,0.040657448,0.039957097,0.039275965,0.038613369,0.037968653,0.037341187,0.036730367,0.036135615,0.035412192,0.034669535,0.033947638,0.033245771,0.032563235,0.031899362,0.031253506,0.030625053,0.030013409,0.029418007,0.028838302,0.028273771,0.02772391,0.027188238,0.026666289,0.02615762,0.0256618,0.025178419,0.02470708,0.024247403,0.023799021,0.023361582,0.022934748,0.02251819,0.022111595,0.021714661,0.021327095,0.020948617,0.020578956,0.02021785,0.019865049,0.019520309,0.019183397,0.018854087,0.018532161,0.018217408,0.017909627,0.017608619,0.017314197,0.017026178,0.016744385,0.016468646,0.016198798,0.01593468,0.015676138,0.015423024,0.015175192,0.014932503,0.014694822,0.014462018,0.014233964,0.014010538,0.013791621,0.013577098,0.013366858,0.013160792,0.012958796,0.012760768,0.01256661,0.012376226,0.012189525,0.012006416,0.011826812,0.011650629,0.011477784,0.011308198,0.011141794,0.010978497,0.010818233,0.010660933,0.010506527,0.010354948,0.010206131,0.010060014,0.009916534,0.009775633,0.009637252,0.009501335,0.009367827,0.009236674,0.009107825,0.008981229,0.008856837,0.008734601,0.008614474,0.008496411,0.008380368,0.008266302,0.008154171,0.008043933,0.00793555,0.007828982,0.007724192,0.007621143,0.007519798,0.007420124,0.007322085,0.007225649,0.007130783,0.007037455,0.006945635,0.006855293,0.006766398,0.006678923,0.006592839,0.006508119,0.006424737,0.006342666,0.006261882,0.006182358,0.006104071,0.006026997,0.005951114,0.005876398,0.005802828,0.005730381,0.005659037,0.005588776,0.005519577,0.00545142,0.005384286,0.005318157,0.005253013,0.005188838,0.005125613,0.005063322,0.005001946,0.004941471,0.00488188,0.004823157,0.004765287,0.004708254,0.004652044,0.004596643,0.004542036,0.00448821,0.00443515,0.004382844,0.004331279,0.004280442,0.00423032,0.004180901,0.004132174,0.004084127,0.004036747,0.003990025,0.003943949,0.003898507,0.003853691,0.003809488,0.00376589,0.003722886,0.003680466,0.003638621,0.003597341,0.003556617,0.003516441,0.003476803,0.003437695,0.003399108,0.003361034,0.003323465,0.003286392,0.003249809,0.003213706,0.003178077,0.003142914,0.003108209,0.003073957,0.003040149,0.003006779,0.002973839,0.002941324,0.002909227,0.002877541,0.002846261,0.002815379,0.00278489,0.002754789,0.002725068,0.002695723,0.002666747,0.002638136,0.002609883,0.002581984,0.002554434,0.002527226,0.002500356,0.002473819,0.002447611,0.002421725,0.002396159,0.002370906,0.002345963,0.002321324,0.002296987,0.002272945,0.002249196,0.002225734,0.002202556,0.002179658,0.002157035,0.002134684,0.002112601,0.002090782,0.002069224,0.002047922,0.002026874,0.002006075,0.001985523,0.001965213,0.001945143,0.001925308,0.001905707,0.001886335,0.00186719,0.001848268,0.001829567,0.001811083,0.001792814,0.001774756,0.185519012,0.185308522,0.184680585,0.183645643,0.182220587,0.180428046,0.178295455,0.175854003,0.17313751,0.170181317,0.167021244,0.163692662,0.160229711,0.156664675,0.153027528,0.14934562,0.145643508,0.141942901,0.138262699,0.1346191,0.131025767,0.127494017,0.12403304,0.120650122,0.117362558,0.114219576,0.111217972,0.108349004,0.105604604,0.102977323,0.100457414,0.098007099,0.095617747,0.093290574,0.091026274,0.088825098,0.086686916,0.084611278,0.08259747,0.080644558,0.07875143,0.076916834,0.075139406,0.073417698,0.071750203,0.07013537,0.068571625,0.067057383,0.065591058,0.064171076,0.06279588,0.061463939,0.06017375,0.058923846,0.057712793,0.056539199,0.055401714,0.054299026,0.053229869,0.052193016,0.051187288,0.050211542,0.049264682,0.04834565,0.047453427,0.046587037,0.045745539,0.044928029,0.044133639,0.043361537,0.042610922,0.041881026,0.041171112,0.040480473,0.03980843,0.039154331,0.038517552,0.037897493,0.037293578,0.036609093,0.035850721,0.03511332,0.034396162,0.033698548,0.033019807,0.032359295,0.031716393,0.03109051,0.030481075,0.029887541,0.029309384,0.028746097,0.028197198,0.027662218,0.027140711,0.026632246,0.026136409,0.0256528,0.025181037,0.024720751,0.024271587,0.023833204,0.023405271,0.022987472,0.022579502,0.022181067,0.021791882,0.021411675,0.021040183,0.02067715,0.020322332,0.019975492,0.019636402,0.019304842,0.018980599,0.018663468,0.01835325,0.018049754,0.017752794,0.017462192,0.017177775,0.016899375,0.01662683,0.016359985,0.016098688,0.015842793,0.015592158,0.015346645,0.015106123,0.014870462,0.014639538,0.014413231,0.014191423,0.013974001,0.013760856,0.013551881,0.013346972,0.013146031,0.01294896,0.012755664,0.012566053,0.012380037,0.012197531,0.012018452,0.011842717,0.01167025,0.011500972,0.01133481,0.011171691,0.011011546,0.010854307,0.010699906,0.01054828,0.010399366,0.010253104,0.010109434,0.009968298,0.00982964,0.009693407,0.009559544,0.009428001,0.009298727,0.009171673,0.009046792,0.008924036,0.008803362,0.008684724,0.008568081,0.00845339,0.00834061,0.008229703,0.008120629,0.00801335,0.00790783,0.007804033,0.007701925,0.00760147,0.007502636,0.007405391,0.007309702,0.007215539,0.007122872,0.007031672,0.006941909,0.006853555,0.006766584,0.006680969,0.006596683,0.006513702,0.006431999,0.006351552,0.006272335,0.006194327,0.006117504,0.006041844,0.005967326,0.005893928,0.00582163,0.005750411,0.005680252,0.005611134,0.005543037,0.005475943,0.005409834,0.005344693,0.005280501,0.005217243,0.005154901,0.005093459,0.005032902,0.004973213,0.004914379,0.004856383,0.004799211,0.00474285,0.004687285,0.004632502,0.004578488,0.00452523,0.004472715,0.004420931,0.004369865,0.004319505,0.00426984,0.004220857,0.004172545,0.004124894,0.004077892,0.004031529,0.003985794,0.003940677,0.003896168,0.003852257,0.003808934,0.00376619,0.003724015,0.003682401,0.003641338,0.003600818,0.003560832,0.003521372,0.003482428,0.003443994,0.003406062,0.003368622,0.003331668,0.003295193,0.003259188,0.003223646,0.003188561,0.003153925,0.003119732,0.003085974,0.003052646,0.00301974,0.00298725,0.002955171,0.002923495,0.002892217,0.00286133,0.00283083,0.002800709,0.002770964,0.002741587,0.002712574,0.00268392,0.002655618,0.002627665,0.002600054,0.002572781,0.002545841,0.002519229,0.002492941,0.002466971,0.002441316,0.00241597,0.00239093,0.002366191,0.002341748,0.002317598,0.002293737,0.002270159,0.002246863,0.002223842,0.002201094,0.002178615,0.002156401,0.002134449,0.002112754,0.002091313,0.002070123,0.002049181,0.002028482,0.002008024,0.001987803,0.001967817,0.001948061,0.001928533,0.00190923,0.001890149,0.186915787,0.186704486,0.186074156,0.185035353,0.183605154,0.18180642,0.179666858,0.177217939,0.174493763,0.171529931,0.16836249,0.165026997,0.161557733,0.157987077,0.154345054,0.150659026,0.146953529,0.143250225,0.139567945,0.135922809,0.132328388,0.12879591,0.125334474,0.121951276,0.118672395,0.115540872,0.1125492,0.109688769,0.106951632,0.104330448,0.101818425,0.099395345,0.097030348,0.094723999,0.092477298,0.09029078,0.088164581,0.086098499,0.084092047,0.082144504,0.08025495,0.078422312,0.076645388,0.074922879,0.073253413,0.071635562,0.070067864,0.068548836,0.067076985,0.06565082,0.06426886,0.062929643,0.061631728,0.060373703,0.059154188,0.057971834,0.056825333,0.055713412,0.054634836,0.053588412,0.052572984,0.051587439,0.050630698,0.049701726,0.048799523,0.047923126,0.047071611,0.046244085,0.045439694,0.044657615,0.043897056,0.043157257,0.04243749,0.041737054,0.041055274,0.040391506,0.039745128,0.039115545,0.038502184,0.037865935,0.037091185,0.036337627,0.035604531,0.034891198,0.034196958,0.033521164,0.032863198,0.032222466,0.031598396,0.03099044,0.03039807,0.029820779,0.029258081,0.028709507,0.028174607,0.027652947,0.027144112,0.026647699,0.026163323,0.025690612,0.025229209,0.02477877,0.024338962,0.023909466,0.023489974,0.023080188,0.022679823,0.022288603,0.021906262,0.021532542,0.021167196,0.020809985,0.020460678,0.020119052,0.019784892,0.01945799,0.019138146,0.018825165,0.01851886,0.01821905,0.017925559,0.017638217,0.017356862,0.017081334,0.01681148,0.016547151,0.016288203,0.016034498,0.015785901,0.015542281,0.015303511,0.015069469,0.014840036,0.014615098,0.014394542,0.014178261,0.013966149,0.013758105,0.01355403,0.013353829,0.013157407,0.012964676,0.012775547,0.012589935,0.012407759,0.012228937,0.012053392,0.011881047,0.011711831,0.01154567,0.011382496,0.011222241,0.011064839,0.010910226,0.010758341,0.010609123,0.010462513,0.010318453,0.010176889,0.010037766,0.009901031,0.009766634,0.009634523,0.00950465,0.009376969,0.009251432,0.009127994,0.009006613,0.008887245,0.008769848,0.008654382,0.008540807,0.008429085,0.008319178,0.008211049,0.008104664,0.007999985,0.007896981,0.007795617,0.007695861,0.007597681,0.007501047,0.007405929,0.007312296,0.007220121,0.007129375,0.00704003,0.006952061,0.00686544,0.006780143,0.006696145,0.00661342,0.006531946,0.006451699,0.006372656,0.006294795,0.006218094,0.006142533,0.006068089,0.005994744,0.005922477,0.005851268,0.005781099,0.005711951,0.005643806,0.005576646,0.005510453,0.005445211,0.005380903,0.005317513,0.005255024,0.005193422,0.005132689,0.005072813,0.005013778,0.004955569,0.004898173,0.004841575,0.004785763,0.004730723,0.004676441,0.004622906,0.004570105,0.004518026,0.004466657,0.004415985,0.004366,0.00431669,0.004268045,0.004220053,0.004172704,0.004125988,0.004079893,0.004034411,0.003989532,0.003945245,0.003901542,0.003858413,0.003815849,0.003773841,0.003732381,0.00369146,0.003651069,0.003611201,0.003571846,0.003532998,0.003494649,0.00345679,0.003419414,0.003382514,0.003346083,0.003310113,0.003274598,0.003239531,0.003204904,0.003170712,0.003136947,0.003103605,0.003070677,0.003038158,0.003006042,0.002974324,0.002942996,0.002912055,0.002881493,0.002851305,0.002821486,0.002792031,0.002762934,0.00273419,0.002705794,0.002677741,0.002650027,0.002622646,0.002595593,0.002568864,0.002542455,0.002516361,0.002490577,0.002465099,0.002439923,0.002415044,0.002390459,0.002366163,0.002342153,0.002318424,0.002294973,0.002271795,0.002248888,0.002226247,0.002203868,0.002181749,0.002159885,0.002138273,0.00211691,0.002095792,0.002074916,0.002054279,0.002033878,0.002013709,0.188484731,0.188272108,0.187637867,0.186592728,0.185154024,0.183344946,0.181193582,0.17873181,0.175994137,0.173016548,0.169835435,0.166486652,0.163004714,0.159422179,0.155769189,0.152073171,0.148358681,0.144647362,0.140957996,0.13730663,0.13370675,0.130169488,0.126703845,0.123316917,0.120047334,0.116925425,0.113941985,0.111088524,0.108357204,0.105740782,0.103232555,0.100825662,0.098487747,0.096204655,0.09397771,0.091807755,0.089695212,0.087640148,0.085642324,0.083701245,0.081816205,0.079986321,0.078210569,0.076487811,0.074816822,0.073196308,0.071624931,0.070101315,0.068624071,0.067191796,0.065803094,0.064456576,0.063150869,0.061884622,0.06065651,0.059465234,0.058309531,0.057188168,0.056099947,0.055043708,0.054018325,0.053022711,0.052055812,0.051116613,0.050204135,0.049317432,0.048455594,0.047617745,0.046803041,0.046010671,0.045239854,0.044489838,0.043759902,0.043049353,0.042357523,0.041683772,0.041027484,0.040388066,0.039764951,0.039157593,0.038395884,0.037625455,0.036875716,0.036145969,0.03543554,0.034743785,0.034070083,0.033413839,0.032774479,0.032151453,0.031544232,0.030952306,0.030375188,0.029812406,0.029263506,0.028728054,0.02820563,0.027695831,0.027198268,0.026712566,0.026238365,0.025775318,0.025323091,0.02488136,0.024449816,0.024028157,0.023616097,0.023213354,0.022819662,0.02243476,0.022058397,0.021690332,0.021330332,0.02097817,0.02063363,0.020296501,0.019966579,0.019643668,0.019327577,0.019018125,0.018715131,0.018418426,0.018127842,0.017843218,0.0175644,0.017291235,0.017023579,0.01676129,0.016504231,0.016252269,0.016005276,0.015763128,0.015525703,0.015292885,0.01506456,0.014840618,0.014620953,0.01440546,0.01419404,0.013986595,0.01378303,0.013583253,0.013387176,0.013194711,0.013005774,0.012820284,0.012638161,0.012459328,0.01228371,0.012111234,0.011941829,0.011775427,0.01161196,0.011451362,0.011293572,0.011138526,0.010986165,0.010836431,0.010689266,0.010544616,0.010402426,0.010262643,0.010125218,0.009990099,0.009857239,0.00972659,0.009598106,0.009471742,0.009347455,0.009225202,0.009104941,0.008986632,0.008870236,0.008755713,0.008643027,0.00853214,0.008423017,0.008315623,0.008209924,0.008105886,0.008003478,0.007902667,0.007803423,0.007705716,0.007609515,0.007514792,0.00742152,0.00732967,0.007239216,0.007150132,0.007062391,0.00697597,0.006890843,0.006806986,0.006724377,0.006642992,0.006562809,0.006483806,0.006405962,0.006329256,0.006253667,0.006179176,0.006105763,0.006033409,0.005962095,0.005891802,0.005822513,0.005754211,0.005686878,0.005620497,0.005555052,0.005490527,0.005426906,0.005364173,0.005302314,0.005241313,0.005181156,0.005121829,0.005063319,0.00500561,0.00494869,0.004892547,0.004837166,0.004782535,0.004728643,0.004675477,0.004623025,0.004571275,0.004520216,0.004469838,0.004420128,0.004371077,0.004322674,0.004274908,0.004227769,0.004181248,0.004135334,0.004090019,0.004045292,0.004001145,0.003957568,0.003914553,0.00387209,0.003830172,0.003788791,0.003747936,0.003707602,0.00366778,0.003628461,0.003589639,0.003551306,0.003513454,0.003476077,0.003439166,0.003402716,0.00336672,0.00333117,0.00329606,0.003261383,0.003227134,0.003193306,0.003159893,0.003126888,0.003094286,0.003062081,0.003030267,0.002998838,0.00296779,0.002937116,0.002906812,0.002876871,0.002847289,0.002818061,0.002789181,0.002760646,0.002732449,0.002704586,0.002677053,0.002649844,0.002622956,0.002596384,0.002570124,0.002544171,0.00251852,0.002493169,0.002468112,0.002443346,0.002418867,0.002394671,0.002370754,0.002347112,0.002323741,0.002300638,0.0022778,0.002255222,0.002232902,0.002210835,0.002189019,0.00216745,0.002146125,0.190247816,0.190033279,0.18939337,0.188339026,0.186887923,0.185063695,0.182894944,0.180414099,0.177656221,0.174657827,0.171455793,0.168086391,0.164584485,0.160982901,0.157311978,0.153599266,0.149869386,0.146143992,0.142441836,0.138778903,0.135168594,0.131621941,0.128147833,0.12475492,0.12149392,0.118379288,0.115401928,0.112553448,0.109826108,0.107212748,0.104706744,0.102301957,0.099988156,0.097731312,0.095526797,0.093375783,0.091279004,0.089236817,0.08724925,0.085316059,0.083436766,0.081610698,0.079837026,0.078114787,0.076442916,0.074820269,0.073245637,0.071717769,0.070235383,0.068797178,0.067401848,0.066048085,0.06473459,0.063460079,0.062223287,0.061022971,0.059857916,0.058726933,0.057628865,0.056562588,0.055527008,0.054521066,0.053543736,0.052594027,0.051670979,0.050773666,0.049901197,0.049052709,0.048227372,0.047424387,0.046642985,0.045882423,0.045141988,0.044420996,0.043718784,0.04303472,0.042368191,0.041718611,0.041085415,0.04046806,0.039769929,0.038981866,0.038214728,0.037467818,0.036740462,0.036032014,0.035341853,0.034669382,0.034014026,0.033375234,0.032752473,0.032145234,0.031553024,0.03097537,0.030411818,0.029861928,0.029325279,0.028801464,0.028290093,0.027790787,0.027303185,0.026826934,0.026361699,0.025907154,0.025462985,0.025028889,0.024604575,0.02418976,0.023784174,0.023387554,0.022999646,0.022620206,0.022248998,0.021885793,0.021530371,0.02118252,0.020842032,0.020508709,0.020182358,0.019862794,0.019549835,0.019243308,0.018943044,0.01864888,0.018360658,0.018078224,0.01780143,0.017530134,0.017264195,0.017003479,0.016747856,0.016497199,0.016251384,0.016010294,0.015773812,0.015541827,0.01531423,0.015090916,0.014871782,0.014656729,0.01444566,0.014238482,0.014035105,0.013835439,0.013639399,0.013446902,0.013257866,0.013072214,0.012889867,0.012710753,0.012534798,0.012361933,0.012192088,0.012025198,0.011861197,0.011700023,0.011541613,0.011385909,0.011232853,0.011082387,0.010934457,0.010789008,0.010645989,0.010505349,0.010367038,0.010231008,0.010097211,0.009965602,0.009836136,0.00970877,0.00958346,0.009460165,0.009338845,0.00921946,0.009101972,0.008986343,0.008872537,0.008760518,0.00865025,0.0085417,0.008434834,0.008329621,0.008226027,0.008124023,0.008023578,0.007924663,0.007827248,0.007731306,0.007636808,0.007543728,0.00745204,0.007361718,0.007272737,0.007185071,0.007098698,0.007013594,0.006929735,0.0068471,0.006765666,0.006685412,0.006606316,0.006528359,0.00645152,0.006375779,0.006301117,0.006227516,0.006154956,0.00608342,0.00601289,0.005943349,0.00587478,0.005807166,0.005740491,0.005674739,0.005609894,0.005545941,0.005482866,0.005420653,0.005359288,0.005298758,0.005239047,0.005180144,0.005122033,0.005064704,0.005008142,0.004952336,0.004897273,0.00484294,0.004789328,0.004736423,0.004684214,0.004632691,0.004581843,0.004531658,0.004482127,0.004433239,0.004384984,0.004337353,0.004290335,0.004243921,0.004198101,0.004152867,0.004108209,0.00406412,0.004020589,0.003977608,0.00393517,0.003893266,0.003851887,0.003811027,0.003770677,0.003730829,0.003691477,0.003652612,0.003614228,0.003576317,0.003538872,0.003501888,0.003465356,0.00342927,0.003393624,0.003358412,0.003323627,0.003289262,0.003255313,0.003221772,0.003188635,0.003155895,0.003123547,0.003091585,0.003060003,0.003028797,0.002997961,0.002967489,0.002937378,0.002907621,0.002878214,0.002849151,0.002820429,0.002792042,0.002763987,0.002736257,0.002708849,0.002681759,0.002654981,0.002628513,0.002602349,0.002576485,0.002550918,0.002525643,0.002500657,0.002475956,0.002451535,0.002427392,0.002403522,0.002379921,0.002356587,0.002333516,0.002310704,0.002288147,0.192230445,0.192013302,0.191365673,0.190298776,0.188830731,0.186985755,0.184793119,0.182285973,0.179500111,0.176472749,0.173241412,0.169842935,0.166312656,0.162683781,0.158986926,0.155249838,0.151497248,0.147750857,0.144029405,0.140348825,0.136722431,0.133161147,0.129673741,0.126275077,0.123020215,0.119910592,0.116937208,0.114091763,0.111366593,0.108754616,0.106249272,0.103844485,0.101534615,0.099305395,0.097126527,0.094997327,0.092918865,0.090891813,0.088916493,0.086992933,0.085120903,0.083299965,0.081529499,0.079808737,0.078136792,0.07651268,0.07493534,0.073403655,0.071916464,0.070472578,0.069070787,0.067709876,0.066388627,0.065105831,0.063860288,0.062650816,0.061476254,0.060335463,0.05922733,0.05815077,0.057104725,0.056088168,0.055100103,0.054139564,0.053205615,0.052297351,0.051413899,0.050554413,0.04971808,0.048904111,0.048111751,0.047340268,0.046588958,0.045857145,0.045144174,0.044449419,0.043772273,0.043112155,0.042468505,0.041840783,0.041220376,0.040413823,0.039628441,0.038863531,0.03811842,0.037392461,0.036685032,0.035995535,0.035323394,0.034668056,0.034028986,0.033405672,0.032797621,0.032204356,0.03162542,0.031060371,0.030508786,0.029970255,0.029444383,0.028930791,0.028429112,0.027938994,0.027460096,0.02699209,0.026534658,0.026087495,0.025650307,0.025222809,0.024804725,0.024395791,0.023995751,0.023604357,0.023221369,0.022846557,0.022479698,0.022120575,0.02176898,0.021424711,0.021087573,0.020757377,0.020433941,0.020117086,0.019806643,0.019502445,0.019204332,0.018912148,0.018625743,0.018344972,0.018069692,0.017799766,0.017535062,0.017275452,0.017020809,0.016771014,0.016525948,0.016285497,0.016049552,0.015818004,0.015590749,0.015367687,0.015148718,0.014933748,0.014722683,0.014515435,0.014311914,0.014112037,0.01391572,0.013722884,0.01353345,0.013347342,0.013164486,0.01298481,0.012808246,0.012634723,0.012464177,0.012296543,0.012131758,0.011969762,0.011810494,0.011653896,0.011499914,0.01134849,0.011199573,0.01105311,0.01090905,0.010767344,0.010627943,0.0104908,0.01035587,0.010223108,0.01009247,0.009963914,0.009837397,0.009712881,0.009590324,0.00946969,0.009350939,0.009234036,0.009118944,0.009005629,0.008894057,0.008784193,0.008676006,0.008569464,0.008464535,0.00836119,0.008259398,0.008159131,0.00806036,0.007963058,0.007867198,0.007772753,0.007679697,0.007588006,0.007497654,0.007408617,0.007320871,0.007234394,0.007149163,0.007065156,0.006982351,0.006900727,0.006820263,0.00674094,0.006662736,0.006585633,0.006509612,0.006434654,0.00636074,0.006287854,0.006215977,0.006145093,0.006075184,0.006006235,0.005938229,0.00587115,0.005804983,0.005739713,0.005675325,0.005611805,0.005549138,0.00548731,0.005426308,0.005366118,0.005306727,0.005248122,0.005190291,0.005133222,0.005076901,0.005021317,0.004966459,0.004912315,0.004858874,0.004806124,0.004754055,0.004702657,0.004651918,0.004601829,0.00455238,0.004503561,0.004455361,0.004407772,0.004360785,0.00431439,0.004268578,0.00422334,0.004178668,0.004134554,0.004090988,0.004047963,0.004005471,0.003963503,0.003922053,0.003881112,0.003840672,0.003800728,0.003761271,0.003722294,0.00368379,0.003645753,0.003608175,0.003571051,0.003534373,0.003498135,0.003462331,0.003426955,0.003392,0.003357461,0.003323332,0.003289607,0.00325628,0.003223346,0.0031908,0.003158635,0.003126846,0.003095429,0.003064379,0.003033689,0.003003356,0.002973374,0.002943739,0.002914445,0.002885489,0.002856865,0.002828569,0.002800597,0.002772944,0.002745606,0.002718579,0.002691859,0.002665441,0.002639322,0.002613497,0.002587963,0.002562716,0.002537751,0.002513067,0.002488657,0.00246452,0.002440652,0.194462288,0.194241725,0.193583959,0.192500569,0.191010247,0.18913795,0.186913811,0.184371907,0.18154897,0.178483126,0.175212732,0.171775363,0.168206979,0.164541283,0.160809276,0.15703897,0.153255265,0.149479941,0.145731751,0.142026579,0.138377652,0.134795772,0.131289569,0.127887062,0.124636199,0.121529593,0.118558329,0.115714183,0.112989563,0.11037745,0.107871345,0.105465223,0.103153495,0.100930967,0.09878079,0.096676852,0.094619778,0.092610582,0.090649908,0.088738081,0.08687515,0.085060929,0.083295033,0.08157691,0.079905868,0.078281103,0.076701719,0.075166746,0.073675159,0.072225891,0.070817844,0.069449903,0.068120943,0.066829834,0.065575454,0.064356687,0.063172432,0.062021604,0.060903141,0.059816001,0.058759167,0.057731649,0.056732481,0.055760726,0.054815475,0.053895848,0.053000989,0.052130074,0.051282305,0.05045691,0.049653144,0.048870289,0.048107652,0.047364565,0.046640382,0.045934484,0.045246271,0.044575167,0.043920616,0.043282084,0.042659056,0.041930365,0.041125763,0.040341889,0.039578069,0.038833657,0.038108031,0.03740059,0.036710757,0.036037977,0.035381715,0.034741455,0.034116702,0.033506978,0.032911821,0.032330789,0.031763454,0.031209403,0.03066824,0.030139581,0.029623058,0.029118314,0.028625005,0.0281428,0.02767138,0.027210434,0.026759666,0.026318788,0.025887521,0.025465597,0.025052757,0.024648751,0.024253335,0.023866277,0.02348735,0.023116335,0.02275302,0.022397201,0.02204868,0.021707264,0.021372769,0.021045016,0.020723829,0.020409041,0.020100489,0.019798014,0.019501464,0.01921069,0.018925549,0.018645901,0.01837161,0.018102547,0.017838584,0.017579596,0.017325466,0.017076076,0.016831314,0.016591071,0.01635524,0.016123718,0.015896405,0.015673204,0.01545402,0.01523876,0.015027337,0.014819663,0.014615654,0.014415227,0.014218303,0.014024804,0.013834655,0.013647783,0.013464115,0.013283583,0.013106119,0.012931656,0.012760131,0.012591481,0.012425646,0.012262566,0.012102183,0.011944442,0.011789287,0.011636666,0.011486525,0.011338815,0.011193485,0.011050489,0.010909778,0.010771307,0.010635032,0.010500908,0.010368893,0.010238945,0.010111025,0.009985092,0.009861107,0.009739035,0.009618836,0.009500476,0.00938392,0.009269132,0.009156081,0.009044733,0.008935055,0.008827018,0.00872059,0.008615742,0.008512445,0.008410669,0.008310389,0.008211575,0.008114202,0.008018243,0.007923674,0.007830468,0.007738603,0.007648054,0.007558798,0.007470812,0.007384074,0.007298562,0.007214255,0.007131131,0.007049171,0.006968354,0.006888661,0.006810072,0.006732569,0.006656134,0.006580748,0.006506393,0.006433053,0.006360711,0.006289349,0.006218952,0.006149504,0.006080988,0.006013391,0.005946696,0.00588089,0.005815957,0.005751883,0.005688655,0.00562626,0.005564683,0.005503912,0.005443934,0.005384736,0.005326306,0.005268633,0.005211703,0.005155506,0.00510003,0.005045265,0.004991198,0.004937819,0.004885117,0.004833083,0.004781706,0.004730976,0.004680883,0.004631418,0.004582571,0.004534332,0.004486693,0.004439645,0.004393179,0.004347286,0.004301958,0.004257186,0.004212963,0.00416928,0.004126129,0.004083502,0.004041393,0.003999793,0.003958695,0.003918092,0.003877976,0.003838342,0.003799181,0.003760487,0.003722254,0.003684475,0.003647143,0.003610252,0.003573797,0.00353777,0.003502166,0.00346698,0.003432204,0.003397835,0.003363865,0.003330289,0.003297103,0.0032643,0.003231875,0.003199824,0.003168141,0.003136822,0.00310586,0.003075252,0.003044993,0.003015077,0.002985501,0.00295626,0.002927349,0.002898765,0.002870501,0.002842556,0.002814923,0.0027876,0.002760582,0.002733864,0.002707444,0.002681317,0.00265548,0.002629928,0.002604658,0.196978216,0.196753265,0.196082492,0.194977933,0.193459006,0.191551607,0.189286961,0.186700321,0.183829613,0.180714113,0.177393241,0.17390551,0.170287677,0.166574091,0.162796242,0.158982499,0.155157986,0.151344604,0.147561135,0.14382342,0.140144589,0.136535311,0.13300437,0.129601494,0.126351706,0.123245398,0.120273723,0.117428519,0.11470225,0.112087948,0.109579161,0.107169908,0.104854638,0.102628194,0.100485776,0.098410843,0.096379077,0.094391244,0.09244834,0.090551016,0.088699627,0.086894268,0.085134814,0.083420952,0.08175221,0.080127984,0.078547559,0.077010134,0.075514835,0.074060733,0.072646855,0.071272199,0.069935742,0.06863645,0.067373281,0.066145197,0.064951165,0.063790162,0.062661181,0.061563231,0.06049534,0.059456557,0.058445955,0.057462629,0.056505699,0.055574311,0.054667633,0.053784863,0.052925221,0.052087952,0.051272326,0.05047764,0.049703211,0.048948382,0.048212517,0.047495004,0.046795252,0.046112691,0.04544677,0.04479696,0.044162749,0.043539082,0.042714214,0.041910338,0.041126784,0.040362904,0.039618075,0.038891697,0.038183192,0.037492001,0.03681759,0.036159439,0.035517051,0.034889946,0.03427766,0.033679747,0.033095776,0.032525333,0.031968018,0.031423443,0.030891237,0.030371041,0.029862507,0.0293653,0.028879098,0.028403589,0.02793847,0.027483452,0.027038253,0.026602601,0.026176233,0.025758896,0.025350345,0.024950343,0.024558659,0.024175072,0.023799368,0.023431339,0.023070783,0.022717506,0.022371319,0.022032041,0.021699495,0.021373509,0.021053918,0.020740561,0.020433282,0.02013193,0.019836359,0.019546428,0.019261998,0.018982936,0.018709113,0.018440403,0.018176683,0.017917836,0.017663747,0.017414304,0.017169399,0.016928926,0.016692783,0.016460872,0.016233094,0.016009358,0.01578957,0.015573644,0.015361492,0.01515303,0.014948178,0.014746855,0.014548985,0.014354493,0.014163305,0.01397535,0.01379056,0.013608866,0.013430203,0.013254507,0.013081717,0.01291177,0.012744608,0.012580174,0.012418411,0.012259264,0.012102681,0.01194861,0.011796999,0.011647799,0.011500962,0.011356441,0.01121419,0.011074164,0.010936321,0.010800616,0.010667009,0.010535458,0.010405925,0.010278371,0.010152757,0.010029047,0.009907205,0.009787195,0.009668984,0.009552538,0.009437823,0.009324808,0.009213462,0.009103753,0.008995652,0.00888913,0.008784158,0.008680708,0.008578752,0.008478264,0.008379218,0.008281588,0.008185349,0.008090477,0.007996947,0.007904736,0.007813821,0.00772418,0.00763579,0.00754863,0.00746268,0.007377918,0.007294324,0.007211878,0.007130561,0.007050354,0.006971239,0.006893197,0.00681621,0.006740261,0.006665332,0.006591408,0.006518471,0.006446505,0.006375495,0.006305425,0.00623628,0.006168045,0.006100705,0.006034246,0.005968654,0.005903916,0.005840017,0.005776944,0.005714686,0.005653228,0.005592558,0.005532664,0.005473534,0.005415157,0.00535752,0.005300612,0.005244423,0.00518894,0.005134154,0.005080053,0.005026629,0.004973869,0.004921765,0.004870306,0.004819483,0.004769286,0.004719707,0.004670735,0.004622362,0.00457458,0.00452738,0.004480752,0.004434689,0.004389183,0.004344225,0.004299808,0.004255924,0.004212564,0.004169723,0.004127391,0.004085563,0.004044231,0.004003387,0.003963026,0.003923139,0.003883721,0.003844766,0.003806265,0.003768214,0.003730606,0.003693435,0.003656694,0.003620379,0.003584483,0.003548999,0.003513924,0.003479251,0.003444974,0.003411089,0.00337759,0.003344472,0.003311729,0.003279357,0.003247351,0.003215706,0.003184416,0.003153479,0.003122887,0.003092638,0.003062727,0.003033149,0.003003899,0.002974975,0.00294637,0.002918082,0.002890105,0.002862437,0.002835073,0.002808009,0.002781241,0.199819675,0.199589174,0.19890195,0.197770616,0.196215505,0.194263701,0.191947805,0.189304553,0.186373371,0.183194984,0.179810148,0.176258557,0.172577968,0.16880354,0.164967389,0.16109833,0.15722178,0.153359797,0.149531209,0.145751816,0.142034638,0.138390184,0.134835025,0.13142994,0.128177393,0.125067823,0.122092427,0.119243085,0.116512298,0.113893131,0.111379164,0.108964446,0.106643452,0.104411048,0.102262458,0.100193234,0.098190342,0.096228392,0.094307323,0.092428147,0.090591553,0.088797948,0.087047496,0.085340151,0.083675684,0.082053716,0.08047374,0.078935141,0.077437216,0.075979192,0.074560238,0.073179481,0.071836015,0.07052891,0.069257221,0.068019996,0.066816279,0.065645121,0.064505576,0.06339671,0.062317603,0.061267352,0.06024507,0.059249891,0.058280969,0.057337479,0.056418618,0.055523607,0.054651687,0.053802125,0.052974208,0.052167246,0.051380572,0.050613541,0.049865528,0.049135931,0.048424166,0.04772967,0.047051902,0.046390335,0.045744465,0.045113803,0.044401503,0.043576531,0.042772157,0.041987732,0.041222635,0.040476264,0.039748041,0.039037406,0.038343822,0.03766677,0.037005748,0.036360275,0.035729884,0.035114127,0.03451257,0.033924796,0.0333504,0.032788995,0.032240203,0.031703663,0.031179024,0.030665948,0.030164109,0.029673191,0.029192889,0.028722909,0.028262966,0.027812786,0.027372102,0.026940657,0.026518203,0.026104498,0.025699311,0.025302417,0.024913596,0.024532639,0.024159342,0.023793506,0.02343494,0.02308346,0.022738884,0.022401039,0.022069758,0.021744875,0.021426232,0.021113677,0.020807059,0.020506235,0.020211064,0.01992141,0.019637141,0.019358129,0.01908425,0.018815383,0.01855141,0.018292219,0.018037697,0.017787738,0.017542238,0.017301095,0.017064209,0.016831487,0.016602833,0.016378158,0.016157374,0.015940394,0.015727136,0.015517518,0.015311461,0.015108888,0.014909725,0.014713899,0.014521339,0.014331976,0.014145742,0.013962572,0.013782403,0.013605171,0.013430818,0.013259282,0.013090508,0.012924438,0.012761019,0.012600196,0.012441919,0.012286135,0.012132796,0.011981853,0.011833259,0.011686969,0.011542937,0.01140112,0.011261475,0.01112396,0.010988534,0.010855158,0.010723793,0.010594401,0.010466945,0.010341388,0.010217696,0.010095834,0.009975767,0.009857464,0.009740891,0.009626018,0.009512813,0.009401246,0.009291288,0.009182909,0.009076083,0.008970781,0.008866975,0.008764641,0.008663752,0.008564282,0.008466207,0.008369503,0.008274147,0.008180114,0.008087382,0.00799593,0.007905734,0.007816775,0.007729031,0.007642481,0.007557106,0.007472886,0.007389802,0.007307835,0.007226967,0.007147179,0.007068454,0.006990775,0.006914124,0.006838484,0.006763841,0.006690177,0.006617476,0.006545724,0.006474905,0.006405005,0.006336009,0.006267902,0.006200671,0.006134302,0.006068782,0.006004097,0.005940235,0.005877182,0.005814927,0.005753456,0.005692759,0.005632823,0.005573637,0.00551519,0.005457469,0.005400465,0.005344167,0.005288563,0.005233644,0.0051794,0.005125821,0.005072896,0.005020616,0.004968971,0.004917953,0.004867553,0.00481776,0.004768567,0.004719965,0.004671945,0.004624499,0.004577618,0.004531295,0.004485522,0.004440291,0.004395594,0.004351423,0.004307772,0.004264633,0.004221998,0.004179861,0.004138215,0.004097054,0.004056369,0.004016155,0.003976405,0.003937114,0.003898274,0.003859879,0.003821924,0.003784402,0.003747308,0.003710635,0.003674379,0.003638533,0.003603092,0.003568051,0.003533404,0.003499146,0.003465271,0.003431776,0.003398655,0.003365902,0.003333513,0.003301484,0.003269809,0.003238485,0.003207505,0.003176867,0.003146565,0.003116595,0.003086954,0.003057635,0.003028637,0.002999954,0.002971582,0.16203131,0.161903083,0.161520056,0.160887139,0.160012325,0.15890642,0.15758269,0.156056446,0.154344594,0.152465165,0.150436861,0.148278627,0.146009262,0.143647086,0.141209664,0.138713589,0.136174324,0.133606096,0.131021835,0.128433161,0.125850397,0.12328261,0.120737671,0.118222333,0.115742312,0.113302377,0.110906435,0.10857318,0.106328205,0.104167258,0.10208588,0.100079912,0.098145475,0.096278945,0.09447693,0.092736257,0.091053954,0.089427231,0.087853471,0.086330213,0.084855146,0.08342609,0.082038629,0.080676606,0.079337916,0.078023132,0.076732682,0.075466871,0.074225887,0.073009822,0.071818678,0.070652378,0.06951078,0.068393681,0.067300828,0.066231927,0.065186644,0.064164616,0.063165454,0.062188748,0.061234071,0.060300985,0.05938904,0.05849778,0.057626744,0.056775471,0.055943498,0.055130363,0.054335609,0.05355878,0.052799429,0.052057113,0.051331395,0.050621846,0.049928047,0.049249584,0.048586054,0.047937062,0.047302223,0.046681158,0.046073503,0.045284688,0.044482729,0.043699297,0.042933883,0.042185989,0.041455133,0.040740847,0.040042675,0.039360175,0.038692919,0.038040491,0.037402486,0.036778512,0.036168191,0.035571152,0.03498704,0.034415506,0.033856215,0.033308841,0.032773067,0.032248587,0.031735105,0.031232331,0.030739986,0.030257799,0.029785508,0.029322857,0.028869599,0.028425495,0.027990311,0.027563822,0.027145809,0.026736061,0.02633437,0.025940536,0.025554367,0.025175672,0.02480427,0.024439983,0.024082639,0.02373207,0.023388113,0.023050612,0.022719412,0.022394365,0.022075326,0.021762154,0.021454714,0.021152872,0.020856498,0.020565469,0.020279661,0.019998956,0.019723239,0.019452398,0.019186323,0.018924909,0.018668052,0.018415652,0.018167611,0.017923834,0.017684228,0.017448702,0.01721717,0.016989546,0.016765746,0.016545689,0.016329297,0.016116492,0.015907199,0.015701346,0.015498861,0.015299674,0.015103718,0.014910927,0.014721237,0.014534585,0.014350909,0.014170151,0.013992251,0.013817154,0.013644803,0.013475145,0.013308127,0.013143697,0.012981805,0.012822402,0.01266544,0.012510873,0.012358654,0.012208739,0.012061085,0.011915648,0.011772388,0.011631263,0.011492235,0.011355263,0.011220311,0.01108734,0.010956316,0.010827202,0.010699964,0.010574567,0.01045098,0.010329169,0.010209102,0.01009075,0.009974081,0.009859065,0.009745674,0.00963388,0.009523654,0.009414969,0.009307799,0.009202117,0.009097899,0.008995118,0.008893751,0.008793774,0.008695163,0.008597895,0.008501948,0.008407299,0.008313927,0.008221811,0.008130931,0.008041265,0.007952794,0.007865498,0.007779358,0.007694356,0.007610473,0.007527691,0.007445993,0.00736536,0.007285777,0.007207226,0.007129691,0.007053156,0.006977605,0.006903024,0.006829396,0.006756707,0.006684942,0.006614088,0.006544129,0.006475053,0.006406846,0.006339495,0.006272986,0.006207306,0.006142444,0.006078387,0.006015123,0.00595264,0.005890927,0.005829971,0.005769762,0.005710288,0.00565154,0.005593505,0.005536175,0.005479538,0.005423584,0.005368304,0.005313687,0.005259725,0.005206407,0.005153725,0.005101669,0.005050231,0.004999401,0.004949172,0.004899534,0.00485048,0.004802,0.004754088,0.004706735,0.004659933,0.004613675,0.004567953,0.004522759,0.004478087,0.00443393,0.00439028,0.00434713,0.004304473,0.004262304,0.004220614,0.004179398,0.00413865,0.004098363,0.00405853,0.004019147,0.003980206,0.003941702,0.003903629,0.003865981,0.003828754,0.00379194,0.003755536,0.003719535,0.003683932,0.003648722,0.0036139,0.003579461,0.003545399,0.003511711,0.003478391,0.003445435,0.003412837,0.003380593,0.0033487,0.003317151,0.003285944,0.003255073,0.003224534,0.003194324,0.003164437,0.170817503,0.17068078,0.170272421,0.169597792,0.168665623,0.167487708,0.166078504,0.164454671,0.162634569,0.16063774,0.158484405,0.156194995,0.153789728,0.151288249,0.148709334,0.146070665,0.143388663,0.14067838,0.137953451,0.135226079,0.132507061,0.12980584,0.127130575,0.124488232,0.121884673,0.119324757,0.116814658,0.114389445,0.112056166,0.109809869,0.107645941,0.105560084,0.103548284,0.101606794,0.099732106,0.09792094,0.096170221,0.094477066,0.092838766,0.091252778,0.089716711,0.088228313,0.086785464,0.085386053,0.084016653,0.082669526,0.081345302,0.080044471,0.078767396,0.077514326,0.07628541,0.075080705,0.07390019,0.072743777,0.071611312,0.070502593,0.069417371,0.068355356,0.067316228,0.066299636,0.06530521,0.064332556,0.06338127,0.062450933,0.061541118,0.060651392,0.059781317,0.058930455,0.058098367,0.057284615,0.056488762,0.055710379,0.054949037,0.054204317,0.053475803,0.052763086,0.052065766,0.05138345,0.050715753,0.050062298,0.049422715,0.048759445,0.047908499,0.04707688,0.046264067,0.045469557,0.044692857,0.043933488,0.043190985,0.042464896,0.041754781,0.041060213,0.040380777,0.03971607,0.0390657,0.038429287,0.037806462,0.037196868,0.036600156,0.03601599,0.035444041,0.034883992,0.034335535,0.03379837,0.033272207,0.032756764,0.032251769,0.031756955,0.031272064,0.030796848,0.030331063,0.029874474,0.029426853,0.028987977,0.028557632,0.028135607,0.027721701,0.027315715,0.026917459,0.026526746,0.026143396,0.025767234,0.025398088,0.025035794,0.02468019,0.024331121,0.023988433,0.02365198,0.023321617,0.022997206,0.02267861,0.022365697,0.022058339,0.021756412,0.021459793,0.021168364,0.020882011,0.020600622,0.020324087,0.0200523,0.01978516,0.019522564,0.019264415,0.019010619,0.018761082,0.018515713,0.018274426,0.018037133,0.017803753,0.017574202,0.017348402,0.017126276,0.016907748,0.016692744,0.016481193,0.016273026,0.016068173,0.015866569,0.015668148,0.015472848,0.015280606,0.015091363,0.01490506,0.014721638,0.014541043,0.01436322,0.014188115,0.014015676,0.013845852,0.013678594,0.013513853,0.013351582,0.013191734,0.013034264,0.012879128,0.012726283,0.012575685,0.012427295,0.012281072,0.012136976,0.011994969,0.011855013,0.011717071,0.011581107,0.011447086,0.011314973,0.011184735,0.011056338,0.010929751,0.010804941,0.010681877,0.01056053,0.01044087,0.010322867,0.010206494,0.010091722,0.009978524,0.009866873,0.009756745,0.009648112,0.009540949,0.009435233,0.009330939,0.009228044,0.009126525,0.009026358,0.008927522,0.008829995,0.008733756,0.008638784,0.008545058,0.008452559,0.008361266,0.008271161,0.008182225,0.008094438,0.008007783,0.007922243,0.007837799,0.007754434,0.007672132,0.007590875,0.007510649,0.007431437,0.007353223,0.007275992,0.007199729,0.007124419,0.007050048,0.006976602,0.006904066,0.006832428,0.006761673,0.006691788,0.00662276,0.006554578,0.006487227,0.006420697,0.006354974,0.006290047,0.006225904,0.006162535,0.006099927,0.00603807,0.005976953,0.005916565,0.005856895,0.005797934,0.005739672,0.005682098,0.005625202,0.005568976,0.005513409,0.005458493,0.005404218,0.005350575,0.005297555,0.005245151,0.005193353,0.005142152,0.005091541,0.005041512,0.004992057,0.004943167,0.004894836,0.004847054,0.004799816,0.004753114,0.00470694,0.004661287,0.004616149,0.004571518,0.004527388,0.004483752,0.004440603,0.004397936,0.004355743,0.004314018,0.004272756,0.00423195,0.004191595,0.004151684,0.004112211,0.004073171,0.004034559,0.003996369,0.003958595,0.003921232,0.003884275,0.003847718,0.003811557,0.003775787,0.003740402,0.003705397,0.003670769,0.003636511,0.00360262,0.003569091,0.003535919,0.0035031,0.180382962,0.18023634,0.179798473,0.179075287,0.178076414,0.17681485,0.175306503,0.173569671,0.171624472,0.169492266,0.167195092,0.164755152,0.162194341,0.159533862,0.156793907,0.153993411,0.151149894,0.148279346,0.145396186,0.14251326,0.139641877,0.136791877,0.133971716,0.131188565,0.128448419,0.125756205,0.123132737,0.120609248,0.118181121,0.115843218,0.113590756,0.111419275,0.109324616,0.107302891,0.105350465,0.103463935,0.101640115,0.099876014,0.098168826,0.096515915,0.094914802,0.093363153,0.09185877,0.090399581,0.088983632,0.087605973,0.086251261,0.08491825,0.083607504,0.082319463,0.081054447,0.079812676,0.078594278,0.077399297,0.076227707,0.075079418,0.073954284,0.072852109,0.071772659,0.07071566,0.069680809,0.068667778,0.067676217,0.066705757,0.065756016,0.064826601,0.063917109,0.063027133,0.06215626,0.061304076,0.060470166,0.059654118,0.058855518,0.058073958,0.057309035,0.056560348,0.055827504,0.055110115,0.054407799,0.053720183,0.053046899,0.052387588,0.051647979,0.050764758,0.049901151,0.049056646,0.048230744,0.04742296,0.046632818,0.045859858,0.045103631,0.044363699,0.043639637,0.042931032,0.042237482,0.041558595,0.040893993,0.040243305,0.039606173,0.038982249,0.038371195,0.03777268,0.037186386,0.036612003,0.036049229,0.035497773,0.034957348,0.034427681,0.033908502,0.033399552,0.032900577,0.032411333,0.03193158,0.031461087,0.03099963,0.030546988,0.030102951,0.029667312,0.02923987,0.028820431,0.028408806,0.02800481,0.027608264,0.027218996,0.026836835,0.026461619,0.026093186,0.025731382,0.025376056,0.025027061,0.024684254,0.024347497,0.024016653,0.023691592,0.023372185,0.023058308,0.022749839,0.022446661,0.022148659,0.021855721,0.021567737,0.021284603,0.021006213,0.020732469,0.020463271,0.020198525,0.019938137,0.019682016,0.019430075,0.019182226,0.018938386,0.018698474,0.018462408,0.018230112,0.01800151,0.017776527,0.01755509,0.017337131,0.017122579,0.016911368,0.016703433,0.016498708,0.016297133,0.016098646,0.015903187,0.015710699,0.015521124,0.015334408,0.015150497,0.014969337,0.014790877,0.014615067,0.014441857,0.014271199,0.014103046,0.013937352,0.013774072,0.013613163,0.013454581,0.013298284,0.013144231,0.012992382,0.012842697,0.012695139,0.01254967,0.012406252,0.01226485,0.012125429,0.011987954,0.011852391,0.011718708,0.011586871,0.011456851,0.011328614,0.011202132,0.011077374,0.010954311,0.010832915,0.010713159,0.010595013,0.010478453,0.010363451,0.010249982,0.010138021,0.010027543,0.009918524,0.009810939,0.009704767,0.009599984,0.009496568,0.009394497,0.009293749,0.009194303,0.00909614,0.008999238,0.008903577,0.008809139,0.008715904,0.008623853,0.008532969,0.008443232,0.008354626,0.008267133,0.008180735,0.008095417,0.008011161,0.007927952,0.007845774,0.007764611,0.007684449,0.007605271,0.007527064,0.007449813,0.007373504,0.007298122,0.007223655,0.007150089,0.007077411,0.007005607,0.006934665,0.006864573,0.006795317,0.006726888,0.006659271,0.006592456,0.006526431,0.006461185,0.006396708,0.006332987,0.006270013,0.006207774,0.006146261,0.006085464,0.006025371,0.005965975,0.005907265,0.005849231,0.005791864,0.005735155,0.005679095,0.005623675,0.005568887,0.005514722,0.00546117,0.005408225,0.005355878,0.005304121,0.005252945,0.005202344,0.005152309,0.005102833,0.005053909,0.005005529,0.004957686,0.004910373,0.004863583,0.004817309,0.004771544,0.004726283,0.004681517,0.004637242,0.00459345,0.004550135,0.004507291,0.004464913,0.004422993,0.004381527,0.004340509,0.004299932,0.004259791,0.004220081,0.004180796,0.004141932,0.004103481,0.004065441,0.004027804,0.003990567,0.003953724,0.003917271,0.003881202,0.190845832,0.190687543,0.190214911,0.189434556,0.188357231,0.186997421,0.185372827,0.183503757,0.181412485,0.179122585,0.176658303,0.174043969,0.171303487,0.168459906,0.165535078,0.162549406,0.159521667,0.15646892,0.15340646,0.150347841,0.147304923,0.144287959,0.1413057,0.138365507,0.135473484,0.1326388,0.129903913,0.127273955,0.124743173,0.12230622,0.119958117,0.117694223,0.115510209,0.113402029,0.111365904,0.109398294,0.107495884,0.105655565,0.103874418,0.102149704,0.100478844,0.098859413,0.097289126,0.095765831,0.094287494,0.0928522,0.091458135,0.090097017,0.088756436,0.087436774,0.08613856,0.084862203,0.083608009,0.082376186,0.081166859,0.079980077,0.078815821,0.077674013,0.076554524,0.075457179,0.074381762,0.073328025,0.07229569,0.071284454,0.070293994,0.069323969,0.068374024,0.067443794,0.066532904,0.065640973,0.064767616,0.063912445,0.063075071,0.062255105,0.061452159,0.060665849,0.059895793,0.059141614,0.058402939,0.0576794,0.056970636,0.056276291,0.055596016,0.054795863,0.053877893,0.052979833,0.052101182,0.051241449,0.050400152,0.049576825,0.048771011,0.047982264,0.047210152,0.046454251,0.045714151,0.04498945,0.044279759,0.043584699,0.0429039,0.042237004,0.041583662,0.040943534,0.040316289,0.039701608,0.039099178,0.038508697,0.037929868,0.037362406,0.036806032,0.036260476,0.035725474,0.03520077,0.034686117,0.034181273,0.033686002,0.033200077,0.032723276,0.032255382,0.031796187,0.031345486,0.030903081,0.03046878,0.030042395,0.029623743,0.029212648,0.028808937,0.028412442,0.028023,0.027640452,0.027264644,0.026895425,0.02653265,0.026176175,0.025825863,0.025481578,0.025143189,0.024810568,0.024483591,0.024162136,0.023846086,0.023535324,0.02322974,0.022929223,0.022633669,0.022342972,0.022057031,0.02177575,0.02149903,0.02122678,0.020958907,0.020695322,0.02043594,0.020180674,0.019929443,0.019682167,0.019438766,0.019199164,0.018963286,0.01873106,0.018502413,0.018277277,0.018055584,0.017837266,0.017622261,0.017410503,0.017201933,0.016996489,0.016794112,0.016594745,0.016398332,0.016204818,0.01601415,0.015826274,0.015641139,0.015458696,0.015278896,0.01510169,0.014927031,0.014754875,0.014585176,0.01441789,0.014252974,0.014090388,0.013930089,0.013772037,0.013616194,0.01346252,0.013310979,0.013161533,0.013014146,0.012868784,0.012725411,0.012583995,0.0124445,0.012306897,0.012171152,0.012037234,0.011905113,0.01177476,0.011646145,0.011519238,0.011394014,0.011270443,0.011148499,0.011028155,0.010909386,0.010792166,0.01067647,0.010562275,0.010449555,0.010338288,0.010228451,0.01012002,0.010012975,0.009907292,0.009802952,0.009699933,0.009598214,0.009497776,0.009398599,0.009300663,0.009203949,0.00910844,0.009014116,0.00892096,0.008828953,0.00873808,0.008648322,0.008559663,0.008472087,0.008385578,0.00830012,0.008215697,0.008132294,0.008049896,0.007968489,0.007888058,0.007808589,0.007730068,0.007652481,0.007575815,0.007500057,0.007425194,0.007351213,0.007278101,0.007205846,0.007134436,0.00706386,0.006994105,0.00692516,0.006857013,0.006789655,0.006723072,0.006657256,0.006592195,0.006527879,0.006464297,0.00640144,0.006339298,0.006277861,0.00621712,0.006157065,0.006097686,0.006038975,0.005980923,0.005923521,0.00586676,0.005810632,0.005755128,0.005700241,0.005645961,0.005592281,0.005539194,0.005486691,0.005434764,0.005383407,0.005332611,0.00528237,0.005232676,0.005183523,0.005134903,0.005086809,0.005039235,0.004992175,0.00494562,0.004899566,0.004854006,0.004808934,0.004764343,0.004720227,0.00467658,0.004633398,0.004590673,0.0045484,0.004506573,0.004465187,0.004424237,0.004383717,0.004343621,0.004303945,0.202350726,0.202178512,0.201664402,0.200815895,0.199645157,0.198168549,0.196406017,0.194380387,0.192116606,0.18964099,0.186980488,0.184162027,0.181211937,0.178155477,0.175016471,0.171817033,0.168577402,0.165315847,0.162048649,0.158790132,0.15555274,0.152347148,0.149182387,0.146065983,0.143004118,0.140032922,0.137177659,0.134431852,0.131789491,0.129244983,0.126793128,0.124429076,0.122148304,0.119946591,0.117819987,0.115764798,0.113777565,0.111855044,0.10999419,0.108192143,0.106446216,0.104753879,0.10311275,0.101520584,0.099975263,0.098474788,0.097017272,0.095600928,0.094224067,0.092877718,0.091550781,0.090243788,0.088957253,0.087691582,0.086447082,0.085223971,0.084022385,0.082842392,0.081683994,0.080547137,0.079431717,0.078337588,0.077264565,0.076212428,0.075180932,0.074169805,0.073178755,0.072207473,0.071255635,0.070322907,0.069408944,0.068513393,0.0676359,0.066776104,0.065933643,0.065108154,0.064299274,0.063506645,0.062729906,0.061968704,0.061222687,0.060491508,0.059774824,0.0590723,0.05823352,0.057278146,0.056342983,0.055427541,0.054531337,0.053653901,0.05279477,0.051953496,0.051129638,0.050322768,0.049532466,0.048758325,0.047999946,0.047256941,0.046528933,0.045815552,0.045116441,0.04443125,0.043759639,0.043101277,0.042455842,0.041823021,0.041202508,0.040594007,0.039997228,0.039411892,0.038837725,0.038274461,0.03772184,0.037179613,0.036647534,0.036125364,0.035612874,0.035109836,0.034616032,0.034131249,0.033655279,0.03318792,0.032728977,0.032278257,0.031835576,0.031400751,0.030973607,0.030553973,0.030141681,0.02973657,0.02933848,0.028947259,0.028562755,0.028184824,0.027813322,0.027448112,0.027089059,0.026736031,0.026388899,0.026047541,0.025711833,0.025381658,0.0250569,0.024737446,0.024423187,0.024114017,0.02380983,0.023510525,0.023216003,0.022926168,0.022640925,0.022360182,0.022083849,0.02181184,0.021544067,0.021280449,0.021020904,0.020765352,0.020513716,0.02026592,0.02002189,0.019781554,0.019544843,0.019311686,0.019082016,0.018855769,0.01863288,0.018413285,0.018196925,0.017983739,0.017773669,0.017566657,0.017362648,0.017161587,0.016963421,0.016768097,0.016575565,0.016385773,0.016198675,0.016014221,0.015832366,0.015653062,0.015476267,0.015301935,0.015130024,0.014960493,0.014793299,0.014628404,0.014465767,0.01430535,0.014147115,0.013991026,0.013837047,0.013685141,0.013535275,0.013387414,0.013241525,0.013097576,0.012955534,0.012815368,0.012677048,0.012540544,0.012405826,0.012272865,0.012141633,0.012012102,0.011884246,0.011758037,0.011633449,0.011510457,0.011389035,0.011269159,0.011150805,0.011033948,0.010918567,0.010804637,0.010692136,0.010581044,0.010471337,0.010362994,0.010255996,0.010150321,0.01004595,0.009942863,0.009841041,0.009740464,0.009641115,0.009542974,0.009446025,0.009350249,0.009255629,0.009162148,0.00906979,0.008978538,0.008888376,0.008799289,0.00871126,0.008624275,0.008538318,0.008453375,0.008369432,0.008286473,0.008204486,0.008123457,0.008043371,0.007964216,0.007885979,0.007808646,0.007732206,0.007656646,0.007581953,0.007508116,0.007435124,0.007362963,0.007291623,0.007221093,0.007151362,0.007082419,0.007014253,0.006946854,0.006880211,0.006814314,0.006749154,0.006684721,0.006621004,0.006557994,0.006495682,0.006434059,0.006373116,0.006312843,0.006253233,0.006194275,0.006135963,0.006078287,0.006021239,0.005964811,0.005908995,0.005853784,0.005799168,0.005745142,0.005691697,0.005638826,0.005586521,0.005534776,0.005483583,0.005432936,0.005382827,0.00533325,0.005284198,0.005235665,0.005187644,0.005140128,0.005093113,0.00504659,0.005000555,0.004955001,0.004909922,0.004865313,0.004821168,0.00477748 -0.09154924,0.091381813,0.090883738,0.090067369,0.088952418,0.087564748,0.085934887,0.084096403,0.08208431,0.079933609,0.077678056,0.075349213,0.072975777,0.070583185,0.068193439,0.065825126,0.063493569,0.061211074,0.058987235,0.056829256,0.054756455,0.052801542,0.050957181,0.049198359,0.047499604,0.04586199,0.044285969,0.04277134,0.041317382,0.039922962,0.038586636,0.037306721,0.03608137,0.03490862,0.03378644,0.032712766,0.031685529,0.030702679,0.0297622,0.028862126,0.028000549,0.027175624,0.02638558,0.025628713,0.024903398,0.024208081,0.023541282,0.022901596,0.022287683,0.021698276,0.021132172,0.02058823,0.02006537,0.019562571,0.019078866,0.018613337,0.018165121,0.017733398,0.017317392,0.016916371,0.01652964,0.016156544,0.015796461,0.015448803,0.015113013,0.014788563,0.014474954,0.014171713,0.013878389,0.013594558,0.013319815,0.013053777,0.012796081,0.012546381,0.012304348,0.012069671,0.011842053,0.011621213,0.011406881,0.011172695,0.010912859,0.010661122,0.010417164,0.010180679,0.009951375,0.009728974,0.009513213,0.009303838,0.009100609,0.008903295,0.008711679,0.008525549,0.008344706,0.008168959,0.007998124,0.007832026,0.007670499,0.007513382,0.007360522,0.007211771,0.00706699,0.006926043,0.006788801,0.00665514,0.006524941,0.00639809,0.006274478,0.006153999,0.006036553,0.005922042,0.005810374,0.005701458,0.005595209,0.005491543,0.005390381,0.005291646,0.005195265,0.005101165,0.00500928,0.004919542,0.004831888,0.004746257,0.00466259,0.00458083,0.004500922,0.004422812,0.00434645,0.004271786,0.004198773,0.004127365,0.004057517,0.003989185,0.00392233,0.003856909,0.003792886,0.003730221,0.003668879,0.003608825,0.003550025,0.003492445,0.003436054,0.003380821,0.003326717,0.003273712,0.003221779,0.00317089,0.003121018,0.003072139,0.003024228,0.002977261,0.002931214,0.002886065,0.002841793,0.002798375,0.002755792,0.002714023,0.002673049,0.00263285,0.00259341,0.00255471,0.002516732,0.00247946,0.002442878,0.00240697,0.00237172,0.002337114,0.002303136,0.002269773,0.002237011,0.002204836,0.002173236,0.002142198,0.002111709,0.002081757,0.002052331,0.00202342,0.001995011,0.001967096,0.001939661,0.001912699,0.001886198,0.001860149,0.001834543,0.00180937,0.001784621,0.001760287,0.00173636,0.001712832,0.001689694,0.001666939,0.001644558,0.001622544,0.00160089,0.001579589,0.001558633,0.001538016,0.001517731,0.001497771,0.001478131,0.001458803,0.001439782,0.001421062,0.001402638,0.001384502,0.00136665,0.001349077,0.001331777,0.001314746,0.001297977,0.001281466,0.001265208,0.001249199,0.001233434,0.001217908,0.001202618,0.001187558,0.001172724,0.001158113,0.001143721,0.001129543,0.001115575,0.001101814,0.001088256,0.001074898,0.001061736,0.001048766,0.001035985,0.00102339,0.001010978,0.000998745,0.000986688,0.000974804,0.000963091,0.000951545,0.000940163,0.000928943,0.000917882,0.000906977,0.000896225,0.000885625,0.000875173,0.000864867,0.000854704,0.000844682,0.000834799,0.000825053,0.000815441,0.000805961,0.000796611,0.000787388,0.000778291,0.000769318,0.000760467,0.000751735,0.000743121,0.000734623,0.000726238,0.000717966,0.000709805,0.000701752,0.000693806,0.000685965,0.000678228,0.000670593,0.000663059,0.000655623,0.000648285,0.000641042,0.000633894,0.000626839,0.000619875,0.000613001,0.000606216,0.000599518,0.000592906,0.000586379,0.000579936,0.000573574,0.000567294,0.000561093,0.000554971,0.000548926,0.000542958,0.000537065,0.000531245,0.000525499,0.000519824,0.00051422,0.000508686,0.000503221,0.000497823,0.000492493,0.000487228,0.000482028,0.000476891,0.000471818,0.000466807,0.000461857,0.000456968,0.000452137,0.11157166,0.111369513,0.110768154,0.109782499,0.108436345,0.106760914,0.104793044,0.102573242,0.10014374,0.097546745,0.094822954,0.092010409,0.089143692,0.086253451,0.083366193,0.080504314,0.077686276,0.074926916,0.072237802,0.069627631,0.067124518,0.064763771,0.062535337,0.060418421,0.058373813,0.056400407,0.054499053,0.052669792,0.050912008,0.049224569,0.047605938,0.046054274,0.044567513,0.043143434,0.041779717,0.040473987,0.039223848,0.038026915,0.036880833,0.035783297,0.034732063,0.033724958,0.032759884,0.031834829,0.03094786,0.030097133,0.029280885,0.02849744,0.0277452,0.02702265,0.026328349,0.025660932,0.025019105,0.024401639,0.023807374,0.023235208,0.0226841,0.022153063,0.021641163,0.021147515,0.020671284,0.020211676,0.01976794,0.019339365,0.018925278,0.01852504,0.018138046,0.017763723,0.017401525,0.017050937,0.016711469,0.016382656,0.016064055,0.015755247,0.015455833,0.015165434,0.014883689,0.014610254,0.014344804,0.014065292,0.013741983,0.013428657,0.01312492,0.012830397,0.012544733,0.012267588,0.011998638,0.011737573,0.011484099,0.011237934,0.010998809,0.010766467,0.010540662,0.01032116,0.010107736,0.009900175,0.009698273,0.009501831,0.009310662,0.009124585,0.008943426,0.008767021,0.00859521,0.008427841,0.008264767,0.008105848,0.007950948,0.007799939,0.007652696,0.007509099,0.007369034,0.007232389,0.00709906,0.006968942,0.006841939,0.006717955,0.006596899,0.006478683,0.006363223,0.006250437,0.006140246,0.006032576,0.005927352,0.005824505,0.005723966,0.005625669,0.005529553,0.005435554,0.005343615,0.005253678,0.005165688,0.005079592,0.004995338,0.004912877,0.00483216,0.004753142,0.004675777,0.004600021,0.004525832,0.00445317,0.004381995,0.004312268,0.004243953,0.004177014,0.004111416,0.004047125,0.003984109,0.003922336,0.003861775,0.003802396,0.003744171,0.003687071,0.003631069,0.003576139,0.003522256,0.003469393,0.003417528,0.003366637,0.003316696,0.003267684,0.00321958,0.003172362,0.003126009,0.003080503,0.003035824,0.002991954,0.002948873,0.002906566,0.002865013,0.002824199,0.002784108,0.002744722,0.002706029,0.002668011,0.002630654,0.002593945,0.002557869,0.002522414,0.002487564,0.002453309,0.002419636,0.002386531,0.002353984,0.002321983,0.002290517,0.002259574,0.002229144,0.002199216,0.002169781,0.002140828,0.002112348,0.002084331,0.002056768,0.00202965,0.002002968,0.001976714,0.001950879,0.001925454,0.001900433,0.001875807,0.001851569,0.001827711,0.001804226,0.001781106,0.001758345,0.001735937,0.001713874,0.00169215,0.001670758,0.001649693,0.001628948,0.001608518,0.001588397,0.001568578,0.001549057,0.001529828,0.001510886,0.001492226,0.001473842,0.00145573,0.001437884,0.001420301,0.001402975,0.001385902,0.001369077,0.001352496,0.001336155,0.001320049,0.001304175,0.001288529,0.001273106,0.001257903,0.001242916,0.001228141,0.001213575,0.001199213,0.001185054,0.001171093,0.001157327,0.001143752,0.001130366,0.001117166,0.001104148,0.001091309,0.001078646,0.001066157,0.001053839,0.001041688,0.001029702,0.001017879,0.001006216,0.00099471,0.000983359,0.00097216,0.00096111,0.000950209,0.000939452,0.000928838,0.000918365,0.00090803,0.000897831,0.000887766,0.000877833,0.000868031,0.000858356,0.000848807,0.000839382,0.000830079,0.000820896,0.000811832,0.000802884,0.000794052,0.000785332,0.000776723,0.000768225,0.000759834,0.00075155,0.000743371,0.000735295,0.00072732,0.000719446,0.000711671,0.000703993,0.000696411,0.000688923,0.000681529,0.000674226,0.000667014,0.000659891,0.000652855,0.000645906,0.000639043,0.000632263,0.000625566,0.000618951,0.000612417,0.000605962,0.000599585,0.000593285,0.000587062,0.136017376,0.135773098,0.135046411,0.133855356,0.132228711,0.130204221,0.127826414,0.12514423,0.122208679,0.119070719,0.115779465,0.112380811,0.108916464,0.105423371,0.101933484,0.098473789,0.095066538,0.091729607,0.088476941,0.08531903,0.082294904,0.079442098,0.076747875,0.074196481,0.071737961,0.069361983,0.067069967,0.06486232,0.062738634,0.06069784,0.058738355,0.056858199,0.055055098,0.053326566,0.051669972,0.0500826,0.048561692,0.047104486,0.045708241,0.044370266,0.043087929,0.041858676,0.040680034,0.039549624,0.03846516,0.037424451,0.036425405,0.035466024,0.034544406,0.03365874,0.032807306,0.03198847,0.03120068,0.030442466,0.029712433,0.029009258,0.028331688,0.027678538,0.027048681,0.026441052,0.025854642,0.025288494,0.024741702,0.024213406,0.023702792,0.023209088,0.02273156,0.022269515,0.021822293,0.021389268,0.020969845,0.02056346,0.020169577,0.019787687,0.019417304,0.019057967,0.018709238,0.018370699,0.018041954,0.017710651,0.017308329,0.016918307,0.016540106,0.016173268,0.015817357,0.015471957,0.015136673,0.014811125,0.014494951,0.014187808,0.013889364,0.013599306,0.013317332,0.013043153,0.012776495,0.012517093,0.012264696,0.012019061,0.011779957,0.011547161,0.011320462,0.011099655,0.010884545,0.010674944,0.010470671,0.010271555,0.010077428,0.009888131,0.009703511,0.009523421,0.009347718,0.009176267,0.009008936,0.008845599,0.008686136,0.008530428,0.008378364,0.008229835,0.008084736,0.007942967,0.00780443,0.007669032,0.007536683,0.007407296,0.007280786,0.007157072,0.007036076,0.006917722,0.006801938,0.006688652,0.006577796,0.006469305,0.006363114,0.006259162,0.00615739,0.006057738,0.005960153,0.005864579,0.005770965,0.00567926,0.005589414,0.005501381,0.005415113,0.005330568,0.0052477,0.00516647,0.005086835,0.005008757,0.004932197,0.004857119,0.004783486,0.004711264,0.004640418,0.004570916,0.004502726,0.004435817,0.004370159,0.004305722,0.004242479,0.004180402,0.004119463,0.004059637,0.004000899,0.003943224,0.003886587,0.003830966,0.003776339,0.003722682,0.003669975,0.003618196,0.003567326,0.003517344,0.003468232,0.00341997,0.003372541,0.003325926,0.003280108,0.003235071,0.003190798,0.003147273,0.00310448,0.003062405,0.003021031,0.002980346,0.002940334,0.002900983,0.002862278,0.002824207,0.002786756,0.002749914,0.002713669,0.002678007,0.002642919,0.002608392,0.002574416,0.002540979,0.002508072,0.002475683,0.002443804,0.002412424,0.002381534,0.002351124,0.002321185,0.002291709,0.002262686,0.002234108,0.002205968,0.002178255,0.002150964,0.002124086,0.002097612,0.002071537,0.002045853,0.002020552,0.001995628,0.001971073,0.001946882,0.001923047,0.001899563,0.001876423,0.00185362,0.00183115,0.001809006,0.001787182,0.001765674,0.001744474,0.001723579,0.001702982,0.001682679,0.001662664,0.001642933,0.001623481,0.001604303,0.001585395,0.001566751,0.001548368,0.00153024,0.001512365,0.001494737,0.001477352,0.001460207,0.001443298,0.00142662,0.00141017,0.001393944,0.001377938,0.00136215,0.001346575,0.001331209,0.001316051,0.001301095,0.00128634,0.001271781,0.001257416,0.001243242,0.001229255,0.001215453,0.001201833,0.001188392,0.001175127,0.001162035,0.001149114,0.001136361,0.001123773,0.001111349,0.001099085,0.001086979,0.001075028,0.001063231,0.001051584,0.001040087,0.001028735,0.001017528,0.001006463,0.000995538,0.00098475,0.000974098,0.000963581,0.000953194,0.000942938,0.00093281,0.000922807,0.000912929,0.000903174,0.000893538,0.000884022,0.000874623,0.000865339,0.00085617,0.000847112,0.000838165,0.000829327,0.000820596,0.000811971,0.000803451,0.000795033,0.000786717,0.000778501,0.000770384,0.000762364,0.16587652,0.165581039,0.164702046,0.163261401,0.161293971,0.158845473,0.155969819,0.152726234,0.149176422,0.14538199,0.141402284,0.137292729,0.133103666,0.128879668,0.124659267,0.120474992,0.116353655,0.112316794,0.108381209,0.104559559,0.100908505,0.097462841,0.094207059,0.091127005,0.088173629,0.085315409,0.082554565,0.079892063,0.077327838,0.074860995,0.072489976,0.07021271,0.068026735,0.065929304,0.063917465,0.061988139,0.06013817,0.058364379,0.056663593,0.055032679,0.053468565,0.051968256,0.050528848,0.049147535,0.047821616,0.046548498,0.045325699,0.044150845,0.043021671,0.04193602,0.040891837,0.03988717,0.038920162,0.037989051,0.037092164,0.036227914,0.035394796,0.034591382,0.033816318,0.033068322,0.032346176,0.031648726,0.030974878,0.030323595,0.029693891,0.029084833,0.028495534,0.027925154,0.027372893,0.026837993,0.026319733,0.025817428,0.025330428,0.024858114,0.024399896,0.023955215,0.023523537,0.023104354,0.022697184,0.022301565,0.021807584,0.021321975,0.020850939,0.020393918,0.019950377,0.019519809,0.019101727,0.018695669,0.01830119,0.01791787,0.017545303,0.017183103,0.016830901,0.016488343,0.016155091,0.015830822,0.015515225,0.015208003,0.014908872,0.014617559,0.014333802,0.014057351,0.013787965,0.013525413,0.013269473,0.013019931,0.012776585,0.012539237,0.012307697,0.012081785,0.011861326,0.011646151,0.0114361,0.011231016,0.011030749,0.010835155,0.010644096,0.010457436,0.010275048,0.010096807,0.009922592,0.009752288,0.009585783,0.009422969,0.009263743,0.009108004,0.008955655,0.008806602,0.008660755,0.008518026,0.008378331,0.008241589,0.008107719,0.007976646,0.007848296,0.007722597,0.007599479,0.007478877,0.007360725,0.00724496,0.007131521,0.00702035,0.006911389,0.006804582,0.006699877,0.006597221,0.006496563,0.006397856,0.00630105,0.006206101,0.006112963,0.006021594,0.00593195,0.005843991,0.005757678,0.005672972,0.005589835,0.005508231,0.005428125,0.005349482,0.005272269,0.005196454,0.005122004,0.00504889,0.004977081,0.004906548,0.004837264,0.0047692,0.004702329,0.004636627,0.004572066,0.004508624,0.004446275,0.004384997,0.004324766,0.004265561,0.004207359,0.00415014,0.004093883,0.004038568,0.003984176,0.003930687,0.003878084,0.003826347,0.00377546,0.003725404,0.003676165,0.003627724,0.003580066,0.003533176,0.003487038,0.003441638,0.00339696,0.003352991,0.003309718,0.003267126,0.003225202,0.003183934,0.003143309,0.003103315,0.003063939,0.003025171,0.002986998,0.002949409,0.002912394,0.002875942,0.002840043,0.002804685,0.00276986,0.002735557,0.002701767,0.002668481,0.002635689,0.002603383,0.002571554,0.002540193,0.002509292,0.002478842,0.002448837,0.002419267,0.002390125,0.002361405,0.002333097,0.002305196,0.002277694,0.002250584,0.00222386,0.002197515,0.002171542,0.002145935,0.002120688,0.002095795,0.002071249,0.002047046,0.002023179,0.001999642,0.001976431,0.001953539,0.001930962,0.001908694,0.00188673,0.001865065,0.001843695,0.001822614,0.001801818,0.001781303,0.001761063,0.001741094,0.001721392,0.001701953,0.001682773,0.001663847,0.001645171,0.001626742,0.001608556,0.001590608,0.001572895,0.001555414,0.00153816,0.001521131,0.001504323,0.001487732,0.001471355,0.001455189,0.00143923,0.001423476,0.001407923,0.001392569,0.00137741,0.001362443,0.001347665,0.001333075,0.001318668,0.001304442,0.001290395,0.001276524,0.001262825,0.001249298,0.001235938,0.001222744,0.001209714,0.001196844,0.001184133,0.001171579,0.001159178,0.001146929,0.00113483,0.001122878,0.001111071,0.001099408,0.001087886,0.001076503,0.001065258,0.001054148,0.001043171,0.001032326,0.001021611,0.001011023,0.001000562,0.000990225,0.202365035,0.202007214,0.200942801,0.199198345,0.196816178,0.193851788,0.190370576,0.18644435,0.182147875,0.177555745,0.172739772,0.167766966,0.16269815,0.157587143,0.152480429,0.147417233,0.142429862,0.137544257,0.132780639,0.128155592,0.12374928,0.119588646,0.115655259,0.111932388,0.108384855,0.104950116,0.101627664,0.098419279,0.095325444,0.092345591,0.089478304,0.086721502,0.084072584,0.081528567,0.079086185,0.076741979,0.074492374,0.072333731,0.070262402,0.068274759,0.066367231,0.064536321,0.062778629,0.061090856,0.059469822,0.057912463,0.056415841,0.054977142,0.053593674,0.052262869,0.05098228,0.049749574,0.048562535,0.047419052,0.046317122,0.045254843,0.044230406,0.043242096,0.042288286,0.04136743,0.040478063,0.039618793,0.0387883,0.037985332,0.037208699,0.036457271,0.035729978,0.0350258,0.034343771,0.033682972,0.033042528,0.032421609,0.031819426,0.031235227,0.030668296,0.030117954,0.029583551,0.029064471,0.028560125,0.028069952,0.027485962,0.026881192,0.026294391,0.025724876,0.025171994,0.024635123,0.02411367,0.023607065,0.023114767,0.022636258,0.022171042,0.021718646,0.021278616,0.020850519,0.02043394,0.020028482,0.019633762,0.019249418,0.018875098,0.018510467,0.018155204,0.017809001,0.017471561,0.0171426,0.016821844,0.016509032,0.016203912,0.015906242,0.015615788,0.015332326,0.015055642,0.014785528,0.014521785,0.01426422,0.014012648,0.013766892,0.013526779,0.013292145,0.013062829,0.012838678,0.012619543,0.012405282,0.012195757,0.011990833,0.011790382,0.011594281,0.011402408,0.011214649,0.01103089,0.010851025,0.010674947,0.010502555,0.010333753,0.010168444,0.010006537,0.009847945,0.009692579,0.009540359,0.009391202,0.009245031,0.009101771,0.008961348,0.008823691,0.008688732,0.008556403,0.008426641,0.008299382,0.008174565,0.008052132,0.007932025,0.007814189,0.00769857,0.007585115,0.007473774,0.007364496,0.007257234,0.007151942,0.007048574,0.006947086,0.006847435,0.00674958,0.00665348,0.006559095,0.006466389,0.006375322,0.00628586,0.006197966,0.006111607,0.006026749,0.00594336,0.005861408,0.005780862,0.005701693,0.00562387,0.005547366,0.005472153,0.005398203,0.005325491,0.005253991,0.005183678,0.005114527,0.005046514,0.004979618,0.004913814,0.00484908,0.004785396,0.004722741,0.004661093,0.004600433,0.004540741,0.004481999,0.004424187,0.004367288,0.004311284,0.004256158,0.004201892,0.00414847,0.004095877,0.004044095,0.003993111,0.003942909,0.003893474,0.003844792,0.003796849,0.003749631,0.003703125,0.003657318,0.003612196,0.003567748,0.003523961,0.003480824,0.003438323,0.003396449,0.003355189,0.003314534,0.003274471,0.003234991,0.003196083,0.003157737,0.003119944,0.003082693,0.003045975,0.003009782,0.002974104,0.002938931,0.002904257,0.002870071,0.002836365,0.002803132,0.002770364,0.002738052,0.00270619,0.002674768,0.002643781,0.002613221,0.00258308,0.002553353,0.002524031,0.002495109,0.00246658,0.002438437,0.002410675,0.002383286,0.002356266,0.002329608,0.002303306,0.002277354,0.002251748,0.002226481,0.002201548,0.002176944,0.002152664,0.002128702,0.002105054,0.002081715,0.00205868,0.002035944,0.002013503,0.001991351,0.001969485,0.001947901,0.001926593,0.001905559,0.001884792,0.001864291,0.001844049,0.001824065,0.001804333,0.00178485,0.001765612,0.001746616,0.001727858,0.001709335,0.001691042,0.001672977,0.001655136,0.001637517,0.001620115,0.001602928,0.001585952,0.001569184,0.001552622,0.001536263,0.001520103,0.00150414,0.00148837,0.001472792,0.001457402,0.001442198,0.001427176,0.001412336,0.001397673,0.001383186,0.001368871,0.001354728,0.001340752,0.001326943,0.001313297,0.001299812,0.001286486,0.183168223,0.182958083,0.182331153,0.181297753,0.179874591,0.178084057,0.175953325,0.173513319,0.170797612,0.167841337,0.164680154,0.161349332,0.157882972,0.154313376,0.150670588,0.146982069,0.143272526,0.139563836,0.135875083,0.132222655,0.128620399,0.125079809,0.121610242,0.118219128,0.114914817,0.111745811,0.108721483,0.105832802,0.103071441,0.100427469,0.097861147,0.095361482,0.092929684,0.090566388,0.088271744,0.086045491,0.083887022,0.081795445,0.079769637,0.077808286,0.075909935,0.074073014,0.072295869,0.070576787,0.068914016,0.067305788,0.065750328,0.064245866,0.062790653,0.061382965,0.060021108,0.058703427,0.057428308,0.056194181,0.054999523,0.053842859,0.052722761,0.051637853,0.050586805,0.049568337,0.048581218,0.047624263,0.046696332,0.045796333,0.044923214,0.044075968,0.043253628,0.042455267,0.041679996,0.040926962,0.040195349,0.039484372,0.038793282,0.038121359,0.037467913,0.036832285,0.03621384,0.035611971,0.035020925,0.034272022,0.033544435,0.032837403,0.032150198,0.03148212,0.030832501,0.030200698,0.029586095,0.028988103,0.028406154,0.027839706,0.027288236,0.026751244,0.02622825,0.025718791,0.025222424,0.024738723,0.024267279,0.023807698,0.023359602,0.022922627,0.022496422,0.022080652,0.021674992,0.02127913,0.020892767,0.020515612,0.020147388,0.019787826,0.019436668,0.019093665,0.018758575,0.018431169,0.018111222,0.017798518,0.01749285,0.017194017,0.016901826,0.016616089,0.016336625,0.01606326,0.015795826,0.01553416,0.015278103,0.015027504,0.014782216,0.014542096,0.014307007,0.014076815,0.013851391,0.013630611,0.013414353,0.013202501,0.012994942,0.012791565,0.012592265,0.012396938,0.012205485,0.012017808,0.011833814,0.011653412,0.011476513,0.011303033,0.011132888,0.010965997,0.010802282,0.010641668,0.01048408,0.010329447,0.010177699,0.01002877,0.009882593,0.009739105,0.009598243,0.009459948,0.009324161,0.009190826,0.009059886,0.008931288,0.00880498,0.008680912,0.008559032,0.008439294,0.00832165,0.008206055,0.008092465,0.007980835,0.007871124,0.007763292,0.007657297,0.007553101,0.007450667,0.007349957,0.007250935,0.007153566,0.007057816,0.006963652,0.006871041,0.006779952,0.006690353,0.006602214,0.006515507,0.006430202,0.006346271,0.006263687,0.006182424,0.006102455,0.006023754,0.005946299,0.005870063,0.005795023,0.005721157,0.005648442,0.005576855,0.005506375,0.005436982,0.005368655,0.005301373,0.005235118,0.005169869,0.005105608,0.005042318,0.004979979,0.004918575,0.004858088,0.004798502,0.004739801,0.004681968,0.004624987,0.004568844,0.004513523,0.00445901,0.004405291,0.004352351,0.004300176,0.004248754,0.004198071,0.004148114,0.00409887,0.004050328,0.004002474,0.003955299,0.003908788,0.003862932,0.00381772,0.003773139,0.00372918,0.003685833,0.003643086,0.00360093,0.003559355,0.003518352,0.003477911,0.003438022,0.003398677,0.003359866,0.003321581,0.003283814,0.003246556,0.003209799,0.003173534,0.003137754,0.003102451,0.003067618,0.003033246,0.00299933,0.00296586,0.002932831,0.002900235,0.002868066,0.002836318,0.002804982,0.002774054,0.002743526,0.002713393,0.002683648,0.002654286,0.0026253,0.002596686,0.002568437,0.002540547,0.002513012,0.002485826,0.002458983,0.002432479,0.002406309,0.002380467,0.002354949,0.00232975,0.002304865,0.002280289,0.002256018,0.002232048,0.002208374,0.002184992,0.002161897,0.002139086,0.002116554,0.002094297,0.002072312,0.002050594,0.002029139,0.002007945,0.001987006,0.00196632,0.001945883,0.001925691,0.001905742,0.00188603,0.001866554,0.00184731,0.001828295,0.001809505,0.001790937,0.001772589,0.001754457,0.001736538,0.001718829,0.001701328,0.001684032,0.001666938,0.184275294,0.184065173,0.183438314,0.182405083,0.180982251,0.179192293,0.177062472,0.174623798,0.171909921,0.16895603,0.165797821,0.162470572,0.159008366,0.155443466,0.151805853,0.148122912,0.144419258,0.140716674,0.137034142,0.133387952,0.129791856,0.126257262,0.122793446,0.119407769,0.116111737,0.11295579,0.109942871,0.107064093,0.104311259,0.101676801,0.099137176,0.096661189,0.094249738,0.091903738,0.089623602,0.087409315,0.085260501,0.083176479,0.081156324,0.079198906,0.077302936,0.075466994,0.073689567,0.07196907,0.07030387,0.068692302,0.067132689,0.06562335,0.064162615,0.062748832,0.061380373,0.060055644,0.058773084,0.057531173,0.056328431,0.055163423,0.054034759,0.052941094,0.05188113,0.050853612,0.049857333,0.04889113,0.047953884,0.047044519,0.046162001,0.045305336,0.04447357,0.043665788,0.042881111,0.042118696,0.041377733,0.040657448,0.039957097,0.039275965,0.038613369,0.037968653,0.037341187,0.036730367,0.036135615,0.035412192,0.034669535,0.033947638,0.033245771,0.032563235,0.031899362,0.031253506,0.030625053,0.030013409,0.029418007,0.028838302,0.028273771,0.02772391,0.027188238,0.026666289,0.02615762,0.0256618,0.025178419,0.02470708,0.024247403,0.023799021,0.023361582,0.022934748,0.02251819,0.022111595,0.021714661,0.021327095,0.020948617,0.020578956,0.02021785,0.019865049,0.019520309,0.019183397,0.018854087,0.018532161,0.018217408,0.017909627,0.017608619,0.017314197,0.017026178,0.016744385,0.016468646,0.016198798,0.01593468,0.015676138,0.015423024,0.015175192,0.014932503,0.014694822,0.014462018,0.014233964,0.014010538,0.013791621,0.013577098,0.013366858,0.013160792,0.012958796,0.012760768,0.01256661,0.012376226,0.012189525,0.012006416,0.011826812,0.011650629,0.011477784,0.011308198,0.011141794,0.010978497,0.010818233,0.010660933,0.010506527,0.010354948,0.010206131,0.010060014,0.009916534,0.009775633,0.009637252,0.009501335,0.009367827,0.009236674,0.009107825,0.008981229,0.008856837,0.008734601,0.008614474,0.008496411,0.008380368,0.008266302,0.008154171,0.008043933,0.00793555,0.007828982,0.007724192,0.007621143,0.007519798,0.007420124,0.007322085,0.007225649,0.007130783,0.007037455,0.006945635,0.006855293,0.006766398,0.006678923,0.006592839,0.006508119,0.006424737,0.006342666,0.006261882,0.006182358,0.006104071,0.006026997,0.005951114,0.005876398,0.005802828,0.005730381,0.005659037,0.005588776,0.005519577,0.00545142,0.005384286,0.005318157,0.005253013,0.005188838,0.005125613,0.005063322,0.005001946,0.004941471,0.00488188,0.004823157,0.004765287,0.004708254,0.004652044,0.004596643,0.004542036,0.00448821,0.00443515,0.004382844,0.004331279,0.004280442,0.00423032,0.004180901,0.004132174,0.004084127,0.004036747,0.003990025,0.003943949,0.003898507,0.003853691,0.003809488,0.00376589,0.003722886,0.003680466,0.003638621,0.003597341,0.003556617,0.003516441,0.003476803,0.003437695,0.003399108,0.003361034,0.003323465,0.003286392,0.003249809,0.003213706,0.003178077,0.003142914,0.003108209,0.003073957,0.003040149,0.003006779,0.002973839,0.002941324,0.002909227,0.002877541,0.002846261,0.002815379,0.00278489,0.002754789,0.002725068,0.002695723,0.002666747,0.002638136,0.002609883,0.002581984,0.002554434,0.002527226,0.002500356,0.002473819,0.002447611,0.002421725,0.002396159,0.002370906,0.002345963,0.002321324,0.002296987,0.002272945,0.002249196,0.002225734,0.002202556,0.002179658,0.002157035,0.002134684,0.002112601,0.002090782,0.002069224,0.002047922,0.002026874,0.002006075,0.001985523,0.001965213,0.001945143,0.001925308,0.001905707,0.001886335,0.00186719,0.001848268,0.001829567,0.001811083,0.001792814,0.001774756,0.185519012,0.185308522,0.184680585,0.183645643,0.182220587,0.180428046,0.178295455,0.175854003,0.17313751,0.170181317,0.167021244,0.163692662,0.160229711,0.156664675,0.153027528,0.14934562,0.145643508,0.141942901,0.138262699,0.1346191,0.131025767,0.127494017,0.12403304,0.120650122,0.117362558,0.114219576,0.111217972,0.108349004,0.105604604,0.102977323,0.100457414,0.098007099,0.095617747,0.093290574,0.091026274,0.088825098,0.086686916,0.084611278,0.08259747,0.080644558,0.07875143,0.076916834,0.075139406,0.073417698,0.071750203,0.07013537,0.068571625,0.067057383,0.065591058,0.064171076,0.06279588,0.061463939,0.06017375,0.058923846,0.057712793,0.056539199,0.055401714,0.054299026,0.053229869,0.052193016,0.051187288,0.050211542,0.049264682,0.04834565,0.047453427,0.046587037,0.045745539,0.044928029,0.044133639,0.043361537,0.042610922,0.041881026,0.041171112,0.040480473,0.03980843,0.039154331,0.038517552,0.037897493,0.037293578,0.036609093,0.035850721,0.03511332,0.034396162,0.033698548,0.033019807,0.032359295,0.031716393,0.03109051,0.030481075,0.029887541,0.029309384,0.028746097,0.028197198,0.027662218,0.027140711,0.026632246,0.026136409,0.0256528,0.025181037,0.024720751,0.024271587,0.023833204,0.023405271,0.022987472,0.022579502,0.022181067,0.021791882,0.021411675,0.021040183,0.02067715,0.020322332,0.019975492,0.019636402,0.019304842,0.018980599,0.018663468,0.01835325,0.018049754,0.017752794,0.017462192,0.017177775,0.016899375,0.01662683,0.016359985,0.016098688,0.015842793,0.015592158,0.015346645,0.015106123,0.014870462,0.014639538,0.014413231,0.014191423,0.013974001,0.013760856,0.013551881,0.013346972,0.013146031,0.01294896,0.012755664,0.012566053,0.012380037,0.012197531,0.012018452,0.011842717,0.01167025,0.011500972,0.01133481,0.011171691,0.011011546,0.010854307,0.010699906,0.01054828,0.010399366,0.010253104,0.010109434,0.009968298,0.00982964,0.009693407,0.009559544,0.009428001,0.009298727,0.009171673,0.009046792,0.008924036,0.008803362,0.008684724,0.008568081,0.00845339,0.00834061,0.008229703,0.008120629,0.00801335,0.00790783,0.007804033,0.007701925,0.00760147,0.007502636,0.007405391,0.007309702,0.007215539,0.007122872,0.007031672,0.006941909,0.006853555,0.006766584,0.006680969,0.006596683,0.006513702,0.006431999,0.006351552,0.006272335,0.006194327,0.006117504,0.006041844,0.005967326,0.005893928,0.00582163,0.005750411,0.005680252,0.005611134,0.005543037,0.005475943,0.005409834,0.005344693,0.005280501,0.005217243,0.005154901,0.005093459,0.005032902,0.004973213,0.004914379,0.004856383,0.004799211,0.00474285,0.004687285,0.004632502,0.004578488,0.00452523,0.004472715,0.004420931,0.004369865,0.004319505,0.00426984,0.004220857,0.004172545,0.004124894,0.004077892,0.004031529,0.003985794,0.003940677,0.003896168,0.003852257,0.003808934,0.00376619,0.003724015,0.003682401,0.003641338,0.003600818,0.003560832,0.003521372,0.003482428,0.003443994,0.003406062,0.003368622,0.003331668,0.003295193,0.003259188,0.003223646,0.003188561,0.003153925,0.003119732,0.003085974,0.003052646,0.00301974,0.00298725,0.002955171,0.002923495,0.002892217,0.00286133,0.00283083,0.002800709,0.002770964,0.002741587,0.002712574,0.00268392,0.002655618,0.002627665,0.002600054,0.002572781,0.002545841,0.002519229,0.002492941,0.002466971,0.002441316,0.00241597,0.00239093,0.002366191,0.002341748,0.002317598,0.002293737,0.002270159,0.002246863,0.002223842,0.002201094,0.002178615,0.002156401,0.002134449,0.002112754,0.002091313,0.002070123,0.002049181,0.002028482,0.002008024,0.001987803,0.001967817,0.001948061,0.001928533,0.00190923,0.001890149,0.186915787,0.186704486,0.186074156,0.185035353,0.183605154,0.18180642,0.179666858,0.177217939,0.174493763,0.171529931,0.16836249,0.165026997,0.161557733,0.157987077,0.154345054,0.150659026,0.146953529,0.143250225,0.139567945,0.135922809,0.132328388,0.12879591,0.125334474,0.121951276,0.118672395,0.115540872,0.1125492,0.109688769,0.106951632,0.104330448,0.101818425,0.099395345,0.097030348,0.094723999,0.092477298,0.09029078,0.088164581,0.086098499,0.084092047,0.082144504,0.08025495,0.078422312,0.076645388,0.074922879,0.073253413,0.071635562,0.070067864,0.068548836,0.067076985,0.06565082,0.06426886,0.062929643,0.061631728,0.060373703,0.059154188,0.057971834,0.056825333,0.055713412,0.054634836,0.053588412,0.052572984,0.051587439,0.050630698,0.049701726,0.048799523,0.047923126,0.047071611,0.046244085,0.045439694,0.044657615,0.043897056,0.043157257,0.04243749,0.041737054,0.041055274,0.040391506,0.039745128,0.039115545,0.038502184,0.037865935,0.037091185,0.036337627,0.035604531,0.034891198,0.034196958,0.033521164,0.032863198,0.032222466,0.031598396,0.03099044,0.03039807,0.029820779,0.029258081,0.028709507,0.028174607,0.027652947,0.027144112,0.026647699,0.026163323,0.025690612,0.025229209,0.02477877,0.024338962,0.023909466,0.023489974,0.023080188,0.022679823,0.022288603,0.021906262,0.021532542,0.021167196,0.020809985,0.020460678,0.020119052,0.019784892,0.01945799,0.019138146,0.018825165,0.01851886,0.01821905,0.017925559,0.017638217,0.017356862,0.017081334,0.01681148,0.016547151,0.016288203,0.016034498,0.015785901,0.015542281,0.015303511,0.015069469,0.014840036,0.014615098,0.014394542,0.014178261,0.013966149,0.013758105,0.01355403,0.013353829,0.013157407,0.012964676,0.012775547,0.012589935,0.012407759,0.012228937,0.012053392,0.011881047,0.011711831,0.01154567,0.011382496,0.011222241,0.011064839,0.010910226,0.010758341,0.010609123,0.010462513,0.010318453,0.010176889,0.010037766,0.009901031,0.009766634,0.009634523,0.00950465,0.009376969,0.009251432,0.009127994,0.009006613,0.008887245,0.008769848,0.008654382,0.008540807,0.008429085,0.008319178,0.008211049,0.008104664,0.007999985,0.007896981,0.007795617,0.007695861,0.007597681,0.007501047,0.007405929,0.007312296,0.007220121,0.007129375,0.00704003,0.006952061,0.00686544,0.006780143,0.006696145,0.00661342,0.006531946,0.006451699,0.006372656,0.006294795,0.006218094,0.006142533,0.006068089,0.005994744,0.005922477,0.005851268,0.005781099,0.005711951,0.005643806,0.005576646,0.005510453,0.005445211,0.005380903,0.005317513,0.005255024,0.005193422,0.005132689,0.005072813,0.005013778,0.004955569,0.004898173,0.004841575,0.004785763,0.004730723,0.004676441,0.004622906,0.004570105,0.004518026,0.004466657,0.004415985,0.004366,0.00431669,0.004268045,0.004220053,0.004172704,0.004125988,0.004079893,0.004034411,0.003989532,0.003945245,0.003901542,0.003858413,0.003815849,0.003773841,0.003732381,0.00369146,0.003651069,0.003611201,0.003571846,0.003532998,0.003494649,0.00345679,0.003419414,0.003382514,0.003346083,0.003310113,0.003274598,0.003239531,0.003204904,0.003170712,0.003136947,0.003103605,0.003070677,0.003038158,0.003006042,0.002974324,0.002942996,0.002912055,0.002881493,0.002851305,0.002821486,0.002792031,0.002762934,0.00273419,0.002705794,0.002677741,0.002650027,0.002622646,0.002595593,0.002568864,0.002542455,0.002516361,0.002490577,0.002465099,0.002439923,0.002415044,0.002390459,0.002366163,0.002342153,0.002318424,0.002294973,0.002271795,0.002248888,0.002226247,0.002203868,0.002181749,0.002159885,0.002138273,0.00211691,0.002095792,0.002074916,0.002054279,0.002033878,0.002013709,0.188484731,0.188272108,0.187637867,0.186592728,0.185154024,0.183344946,0.181193582,0.17873181,0.175994137,0.173016548,0.169835435,0.166486652,0.163004714,0.159422179,0.155769189,0.152073171,0.148358681,0.144647362,0.140957996,0.13730663,0.13370675,0.130169488,0.126703845,0.123316917,0.120047334,0.116925425,0.113941985,0.111088524,0.108357204,0.105740782,0.103232555,0.100825662,0.098487747,0.096204655,0.09397771,0.091807755,0.089695212,0.087640148,0.085642324,0.083701245,0.081816205,0.079986321,0.078210569,0.076487811,0.074816822,0.073196308,0.071624931,0.070101315,0.068624071,0.067191796,0.065803094,0.064456576,0.063150869,0.061884622,0.06065651,0.059465234,0.058309531,0.057188168,0.056099947,0.055043708,0.054018325,0.053022711,0.052055812,0.051116613,0.050204135,0.049317432,0.048455594,0.047617745,0.046803041,0.046010671,0.045239854,0.044489838,0.043759902,0.043049353,0.042357523,0.041683772,0.041027484,0.040388066,0.039764951,0.039157593,0.038395884,0.037625455,0.036875716,0.036145969,0.03543554,0.034743785,0.034070083,0.033413839,0.032774479,0.032151453,0.031544232,0.030952306,0.030375188,0.029812406,0.029263506,0.028728054,0.02820563,0.027695831,0.027198268,0.026712566,0.026238365,0.025775318,0.025323091,0.02488136,0.024449816,0.024028157,0.023616097,0.023213354,0.022819662,0.02243476,0.022058397,0.021690332,0.021330332,0.02097817,0.02063363,0.020296501,0.019966579,0.019643668,0.019327577,0.019018125,0.018715131,0.018418426,0.018127842,0.017843218,0.0175644,0.017291235,0.017023579,0.01676129,0.016504231,0.016252269,0.016005276,0.015763128,0.015525703,0.015292885,0.01506456,0.014840618,0.014620953,0.01440546,0.01419404,0.013986595,0.01378303,0.013583253,0.013387176,0.013194711,0.013005774,0.012820284,0.012638161,0.012459328,0.01228371,0.012111234,0.011941829,0.011775427,0.01161196,0.011451362,0.011293572,0.011138526,0.010986165,0.010836431,0.010689266,0.010544616,0.010402426,0.010262643,0.010125218,0.009990099,0.009857239,0.00972659,0.009598106,0.009471742,0.009347455,0.009225202,0.009104941,0.008986632,0.008870236,0.008755713,0.008643027,0.00853214,0.008423017,0.008315623,0.008209924,0.008105886,0.008003478,0.007902667,0.007803423,0.007705716,0.007609515,0.007514792,0.00742152,0.00732967,0.007239216,0.007150132,0.007062391,0.00697597,0.006890843,0.006806986,0.006724377,0.006642992,0.006562809,0.006483806,0.006405962,0.006329256,0.006253667,0.006179176,0.006105763,0.006033409,0.005962095,0.005891802,0.005822513,0.005754211,0.005686878,0.005620497,0.005555052,0.005490527,0.005426906,0.005364173,0.005302314,0.005241313,0.005181156,0.005121829,0.005063319,0.00500561,0.00494869,0.004892547,0.004837166,0.004782535,0.004728643,0.004675477,0.004623025,0.004571275,0.004520216,0.004469838,0.004420128,0.004371077,0.004322674,0.004274908,0.004227769,0.004181248,0.004135334,0.004090019,0.004045292,0.004001145,0.003957568,0.003914553,0.00387209,0.003830172,0.003788791,0.003747936,0.003707602,0.00366778,0.003628461,0.003589639,0.003551306,0.003513454,0.003476077,0.003439166,0.003402716,0.00336672,0.00333117,0.00329606,0.003261383,0.003227134,0.003193306,0.003159893,0.003126888,0.003094286,0.003062081,0.003030267,0.002998838,0.00296779,0.002937116,0.002906812,0.002876871,0.002847289,0.002818061,0.002789181,0.002760646,0.002732449,0.002704586,0.002677053,0.002649844,0.002622956,0.002596384,0.002570124,0.002544171,0.00251852,0.002493169,0.002468112,0.002443346,0.002418867,0.002394671,0.002370754,0.002347112,0.002323741,0.002300638,0.0022778,0.002255222,0.002232902,0.002210835,0.002189019,0.00216745,0.002146125,0.190247816,0.190033279,0.18939337,0.188339026,0.186887923,0.185063695,0.182894944,0.180414099,0.177656221,0.174657827,0.171455793,0.168086391,0.164584485,0.160982901,0.157311978,0.153599266,0.149869386,0.146143992,0.142441836,0.138778903,0.135168594,0.131621941,0.128147833,0.12475492,0.12149392,0.118379288,0.115401928,0.112553448,0.109826108,0.107212748,0.104706744,0.102301957,0.099988156,0.097731312,0.095526797,0.093375783,0.091279004,0.089236817,0.08724925,0.085316059,0.083436766,0.081610698,0.079837026,0.078114787,0.076442916,0.074820269,0.073245637,0.071717769,0.070235383,0.068797178,0.067401848,0.066048085,0.06473459,0.063460079,0.062223287,0.061022971,0.059857916,0.058726933,0.057628865,0.056562588,0.055527008,0.054521066,0.053543736,0.052594027,0.051670979,0.050773666,0.049901197,0.049052709,0.048227372,0.047424387,0.046642985,0.045882423,0.045141988,0.044420996,0.043718784,0.04303472,0.042368191,0.041718611,0.041085415,0.04046806,0.039769929,0.038981866,0.038214728,0.037467818,0.036740462,0.036032014,0.035341853,0.034669382,0.034014026,0.033375234,0.032752473,0.032145234,0.031553024,0.03097537,0.030411818,0.029861928,0.029325279,0.028801464,0.028290093,0.027790787,0.027303185,0.026826934,0.026361699,0.025907154,0.025462985,0.025028889,0.024604575,0.02418976,0.023784174,0.023387554,0.022999646,0.022620206,0.022248998,0.021885793,0.021530371,0.02118252,0.020842032,0.020508709,0.020182358,0.019862794,0.019549835,0.019243308,0.018943044,0.01864888,0.018360658,0.018078224,0.01780143,0.017530134,0.017264195,0.017003479,0.016747856,0.016497199,0.016251384,0.016010294,0.015773812,0.015541827,0.01531423,0.015090916,0.014871782,0.014656729,0.01444566,0.014238482,0.014035105,0.013835439,0.013639399,0.013446902,0.013257866,0.013072214,0.012889867,0.012710753,0.012534798,0.012361933,0.012192088,0.012025198,0.011861197,0.011700023,0.011541613,0.011385909,0.011232853,0.011082387,0.010934457,0.010789008,0.010645989,0.010505349,0.010367038,0.010231008,0.010097211,0.009965602,0.009836136,0.00970877,0.00958346,0.009460165,0.009338845,0.00921946,0.009101972,0.008986343,0.008872537,0.008760518,0.00865025,0.0085417,0.008434834,0.008329621,0.008226027,0.008124023,0.008023578,0.007924663,0.007827248,0.007731306,0.007636808,0.007543728,0.00745204,0.007361718,0.007272737,0.007185071,0.007098698,0.007013594,0.006929735,0.0068471,0.006765666,0.006685412,0.006606316,0.006528359,0.00645152,0.006375779,0.006301117,0.006227516,0.006154956,0.00608342,0.00601289,0.005943349,0.00587478,0.005807166,0.005740491,0.005674739,0.005609894,0.005545941,0.005482866,0.005420653,0.005359288,0.005298758,0.005239047,0.005180144,0.005122033,0.005064704,0.005008142,0.004952336,0.004897273,0.00484294,0.004789328,0.004736423,0.004684214,0.004632691,0.004581843,0.004531658,0.004482127,0.004433239,0.004384984,0.004337353,0.004290335,0.004243921,0.004198101,0.004152867,0.004108209,0.00406412,0.004020589,0.003977608,0.00393517,0.003893266,0.003851887,0.003811027,0.003770677,0.003730829,0.003691477,0.003652612,0.003614228,0.003576317,0.003538872,0.003501888,0.003465356,0.00342927,0.003393624,0.003358412,0.003323627,0.003289262,0.003255313,0.003221772,0.003188635,0.003155895,0.003123547,0.003091585,0.003060003,0.003028797,0.002997961,0.002967489,0.002937378,0.002907621,0.002878214,0.002849151,0.002820429,0.002792042,0.002763987,0.002736257,0.002708849,0.002681759,0.002654981,0.002628513,0.002602349,0.002576485,0.002550918,0.002525643,0.002500657,0.002475956,0.002451535,0.002427392,0.002403522,0.002379921,0.002356587,0.002333516,0.002310704,0.002288147,0.192230445,0.192013302,0.191365673,0.190298776,0.188830731,0.186985755,0.184793119,0.182285973,0.179500111,0.176472749,0.173241412,0.169842935,0.166312656,0.162683781,0.158986926,0.155249838,0.151497248,0.147750857,0.144029405,0.140348825,0.136722431,0.133161147,0.129673741,0.126275077,0.123020215,0.119910592,0.116937208,0.114091763,0.111366593,0.108754616,0.106249272,0.103844485,0.101534615,0.099305395,0.097126527,0.094997327,0.092918865,0.090891813,0.088916493,0.086992933,0.085120903,0.083299965,0.081529499,0.079808737,0.078136792,0.07651268,0.07493534,0.073403655,0.071916464,0.070472578,0.069070787,0.067709876,0.066388627,0.065105831,0.063860288,0.062650816,0.061476254,0.060335463,0.05922733,0.05815077,0.057104725,0.056088168,0.055100103,0.054139564,0.053205615,0.052297351,0.051413899,0.050554413,0.04971808,0.048904111,0.048111751,0.047340268,0.046588958,0.045857145,0.045144174,0.044449419,0.043772273,0.043112155,0.042468505,0.041840783,0.041220376,0.040413823,0.039628441,0.038863531,0.03811842,0.037392461,0.036685032,0.035995535,0.035323394,0.034668056,0.034028986,0.033405672,0.032797621,0.032204356,0.03162542,0.031060371,0.030508786,0.029970255,0.029444383,0.028930791,0.028429112,0.027938994,0.027460096,0.02699209,0.026534658,0.026087495,0.025650307,0.025222809,0.024804725,0.024395791,0.023995751,0.023604357,0.023221369,0.022846557,0.022479698,0.022120575,0.02176898,0.021424711,0.021087573,0.020757377,0.020433941,0.020117086,0.019806643,0.019502445,0.019204332,0.018912148,0.018625743,0.018344972,0.018069692,0.017799766,0.017535062,0.017275452,0.017020809,0.016771014,0.016525948,0.016285497,0.016049552,0.015818004,0.015590749,0.015367687,0.015148718,0.014933748,0.014722683,0.014515435,0.014311914,0.014112037,0.01391572,0.013722884,0.01353345,0.013347342,0.013164486,0.01298481,0.012808246,0.012634723,0.012464177,0.012296543,0.012131758,0.011969762,0.011810494,0.011653896,0.011499914,0.01134849,0.011199573,0.01105311,0.01090905,0.010767344,0.010627943,0.0104908,0.01035587,0.010223108,0.01009247,0.009963914,0.009837397,0.009712881,0.009590324,0.00946969,0.009350939,0.009234036,0.009118944,0.009005629,0.008894057,0.008784193,0.008676006,0.008569464,0.008464535,0.00836119,0.008259398,0.008159131,0.00806036,0.007963058,0.007867198,0.007772753,0.007679697,0.007588006,0.007497654,0.007408617,0.007320871,0.007234394,0.007149163,0.007065156,0.006982351,0.006900727,0.006820263,0.00674094,0.006662736,0.006585633,0.006509612,0.006434654,0.00636074,0.006287854,0.006215977,0.006145093,0.006075184,0.006006235,0.005938229,0.00587115,0.005804983,0.005739713,0.005675325,0.005611805,0.005549138,0.00548731,0.005426308,0.005366118,0.005306727,0.005248122,0.005190291,0.005133222,0.005076901,0.005021317,0.004966459,0.004912315,0.004858874,0.004806124,0.004754055,0.004702657,0.004651918,0.004601829,0.00455238,0.004503561,0.004455361,0.004407772,0.004360785,0.00431439,0.004268578,0.00422334,0.004178668,0.004134554,0.004090988,0.004047963,0.004005471,0.003963503,0.003922053,0.003881112,0.003840672,0.003800728,0.003761271,0.003722294,0.00368379,0.003645753,0.003608175,0.003571051,0.003534373,0.003498135,0.003462331,0.003426955,0.003392,0.003357461,0.003323332,0.003289607,0.00325628,0.003223346,0.0031908,0.003158635,0.003126846,0.003095429,0.003064379,0.003033689,0.003003356,0.002973374,0.002943739,0.002914445,0.002885489,0.002856865,0.002828569,0.002800597,0.002772944,0.002745606,0.002718579,0.002691859,0.002665441,0.002639322,0.002613497,0.002587963,0.002562716,0.002537751,0.002513067,0.002488657,0.00246452,0.002440652,0.194462288,0.194241725,0.193583959,0.192500569,0.191010247,0.18913795,0.186913811,0.184371907,0.18154897,0.178483126,0.175212732,0.171775363,0.168206979,0.164541283,0.160809276,0.15703897,0.153255265,0.149479941,0.145731751,0.142026579,0.138377652,0.134795772,0.131289569,0.127887062,0.124636199,0.121529593,0.118558329,0.115714183,0.112989563,0.11037745,0.107871345,0.105465223,0.103153495,0.100930967,0.09878079,0.096676852,0.094619778,0.092610582,0.090649908,0.088738081,0.08687515,0.085060929,0.083295033,0.08157691,0.079905868,0.078281103,0.076701719,0.075166746,0.073675159,0.072225891,0.070817844,0.069449903,0.068120943,0.066829834,0.065575454,0.064356687,0.063172432,0.062021604,0.060903141,0.059816001,0.058759167,0.057731649,0.056732481,0.055760726,0.054815475,0.053895848,0.053000989,0.052130074,0.051282305,0.05045691,0.049653144,0.048870289,0.048107652,0.047364565,0.046640382,0.045934484,0.045246271,0.044575167,0.043920616,0.043282084,0.042659056,0.041930365,0.041125763,0.040341889,0.039578069,0.038833657,0.038108031,0.03740059,0.036710757,0.036037977,0.035381715,0.034741455,0.034116702,0.033506978,0.032911821,0.032330789,0.031763454,0.031209403,0.03066824,0.030139581,0.029623058,0.029118314,0.028625005,0.0281428,0.02767138,0.027210434,0.026759666,0.026318788,0.025887521,0.025465597,0.025052757,0.024648751,0.024253335,0.023866277,0.02348735,0.023116335,0.02275302,0.022397201,0.02204868,0.021707264,0.021372769,0.021045016,0.020723829,0.020409041,0.020100489,0.019798014,0.019501464,0.01921069,0.018925549,0.018645901,0.01837161,0.018102547,0.017838584,0.017579596,0.017325466,0.017076076,0.016831314,0.016591071,0.01635524,0.016123718,0.015896405,0.015673204,0.01545402,0.01523876,0.015027337,0.014819663,0.014615654,0.014415227,0.014218303,0.014024804,0.013834655,0.013647783,0.013464115,0.013283583,0.013106119,0.012931656,0.012760131,0.012591481,0.012425646,0.012262566,0.012102183,0.011944442,0.011789287,0.011636666,0.011486525,0.011338815,0.011193485,0.011050489,0.010909778,0.010771307,0.010635032,0.010500908,0.010368893,0.010238945,0.010111025,0.009985092,0.009861107,0.009739035,0.009618836,0.009500476,0.00938392,0.009269132,0.009156081,0.009044733,0.008935055,0.008827018,0.00872059,0.008615742,0.008512445,0.008410669,0.008310389,0.008211575,0.008114202,0.008018243,0.007923674,0.007830468,0.007738603,0.007648054,0.007558798,0.007470812,0.007384074,0.007298562,0.007214255,0.007131131,0.007049171,0.006968354,0.006888661,0.006810072,0.006732569,0.006656134,0.006580748,0.006506393,0.006433053,0.006360711,0.006289349,0.006218952,0.006149504,0.006080988,0.006013391,0.005946696,0.00588089,0.005815957,0.005751883,0.005688655,0.00562626,0.005564683,0.005503912,0.005443934,0.005384736,0.005326306,0.005268633,0.005211703,0.005155506,0.00510003,0.005045265,0.004991198,0.004937819,0.004885117,0.004833083,0.004781706,0.004730976,0.004680883,0.004631418,0.004582571,0.004534332,0.004486693,0.004439645,0.004393179,0.004347286,0.004301958,0.004257186,0.004212963,0.00416928,0.004126129,0.004083502,0.004041393,0.003999793,0.003958695,0.003918092,0.003877976,0.003838342,0.003799181,0.003760487,0.003722254,0.003684475,0.003647143,0.003610252,0.003573797,0.00353777,0.003502166,0.00346698,0.003432204,0.003397835,0.003363865,0.003330289,0.003297103,0.0032643,0.003231875,0.003199824,0.003168141,0.003136822,0.00310586,0.003075252,0.003044993,0.003015077,0.002985501,0.00295626,0.002927349,0.002898765,0.002870501,0.002842556,0.002814923,0.0027876,0.002760582,0.002733864,0.002707444,0.002681317,0.00265548,0.002629928,0.002604658,0.196978216,0.196753265,0.196082492,0.194977933,0.193459006,0.191551607,0.189286961,0.186700321,0.183829613,0.180714113,0.177393241,0.17390551,0.170287677,0.166574091,0.162796242,0.158982499,0.155157986,0.151344604,0.147561135,0.14382342,0.140144589,0.136535311,0.13300437,0.129601494,0.126351706,0.123245398,0.120273723,0.117428519,0.11470225,0.112087948,0.109579161,0.107169908,0.104854638,0.102628194,0.100485776,0.098410843,0.096379077,0.094391244,0.09244834,0.090551016,0.088699627,0.086894268,0.085134814,0.083420952,0.08175221,0.080127984,0.078547559,0.077010134,0.075514835,0.074060733,0.072646855,0.071272199,0.069935742,0.06863645,0.067373281,0.066145197,0.064951165,0.063790162,0.062661181,0.061563231,0.06049534,0.059456557,0.058445955,0.057462629,0.056505699,0.055574311,0.054667633,0.053784863,0.052925221,0.052087952,0.051272326,0.05047764,0.049703211,0.048948382,0.048212517,0.047495004,0.046795252,0.046112691,0.04544677,0.04479696,0.044162749,0.043539082,0.042714214,0.041910338,0.041126784,0.040362904,0.039618075,0.038891697,0.038183192,0.037492001,0.03681759,0.036159439,0.035517051,0.034889946,0.03427766,0.033679747,0.033095776,0.032525333,0.031968018,0.031423443,0.030891237,0.030371041,0.029862507,0.0293653,0.028879098,0.028403589,0.02793847,0.027483452,0.027038253,0.026602601,0.026176233,0.025758896,0.025350345,0.024950343,0.024558659,0.024175072,0.023799368,0.023431339,0.023070783,0.022717506,0.022371319,0.022032041,0.021699495,0.021373509,0.021053918,0.020740561,0.020433282,0.02013193,0.019836359,0.019546428,0.019261998,0.018982936,0.018709113,0.018440403,0.018176683,0.017917836,0.017663747,0.017414304,0.017169399,0.016928926,0.016692783,0.016460872,0.016233094,0.016009358,0.01578957,0.015573644,0.015361492,0.01515303,0.014948178,0.014746855,0.014548985,0.014354493,0.014163305,0.01397535,0.01379056,0.013608866,0.013430203,0.013254507,0.013081717,0.01291177,0.012744608,0.012580174,0.012418411,0.012259264,0.012102681,0.01194861,0.011796999,0.011647799,0.011500962,0.011356441,0.01121419,0.011074164,0.010936321,0.010800616,0.010667009,0.010535458,0.010405925,0.010278371,0.010152757,0.010029047,0.009907205,0.009787195,0.009668984,0.009552538,0.009437823,0.009324808,0.009213462,0.009103753,0.008995652,0.00888913,0.008784158,0.008680708,0.008578752,0.008478264,0.008379218,0.008281588,0.008185349,0.008090477,0.007996947,0.007904736,0.007813821,0.00772418,0.00763579,0.00754863,0.00746268,0.007377918,0.007294324,0.007211878,0.007130561,0.007050354,0.006971239,0.006893197,0.00681621,0.006740261,0.006665332,0.006591408,0.006518471,0.006446505,0.006375495,0.006305425,0.00623628,0.006168045,0.006100705,0.006034246,0.005968654,0.005903916,0.005840017,0.005776944,0.005714686,0.005653228,0.005592558,0.005532664,0.005473534,0.005415157,0.00535752,0.005300612,0.005244423,0.00518894,0.005134154,0.005080053,0.005026629,0.004973869,0.004921765,0.004870306,0.004819483,0.004769286,0.004719707,0.004670735,0.004622362,0.00457458,0.00452738,0.004480752,0.004434689,0.004389183,0.004344225,0.004299808,0.004255924,0.004212564,0.004169723,0.004127391,0.004085563,0.004044231,0.004003387,0.003963026,0.003923139,0.003883721,0.003844766,0.003806265,0.003768214,0.003730606,0.003693435,0.003656694,0.003620379,0.003584483,0.003548999,0.003513924,0.003479251,0.003444974,0.003411089,0.00337759,0.003344472,0.003311729,0.003279357,0.003247351,0.003215706,0.003184416,0.003153479,0.003122887,0.003092638,0.003062727,0.003033149,0.003003899,0.002974975,0.00294637,0.002918082,0.002890105,0.002862437,0.002835073,0.002808009,0.002781241,0.199819675,0.199589174,0.19890195,0.197770616,0.196215505,0.194263701,0.191947805,0.189304553,0.186373371,0.183194984,0.179810148,0.176258557,0.172577968,0.16880354,0.164967389,0.16109833,0.15722178,0.153359797,0.149531209,0.145751816,0.142034638,0.138390184,0.134835025,0.13142994,0.128177393,0.125067823,0.122092427,0.119243085,0.116512298,0.113893131,0.111379164,0.108964446,0.106643452,0.104411048,0.102262458,0.100193234,0.098190342,0.096228392,0.094307323,0.092428147,0.090591553,0.088797948,0.087047496,0.085340151,0.083675684,0.082053716,0.08047374,0.078935141,0.077437216,0.075979192,0.074560238,0.073179481,0.071836015,0.07052891,0.069257221,0.068019996,0.066816279,0.065645121,0.064505576,0.06339671,0.062317603,0.061267352,0.06024507,0.059249891,0.058280969,0.057337479,0.056418618,0.055523607,0.054651687,0.053802125,0.052974208,0.052167246,0.051380572,0.050613541,0.049865528,0.049135931,0.048424166,0.04772967,0.047051902,0.046390335,0.045744465,0.045113803,0.044401503,0.043576531,0.042772157,0.041987732,0.041222635,0.040476264,0.039748041,0.039037406,0.038343822,0.03766677,0.037005748,0.036360275,0.035729884,0.035114127,0.03451257,0.033924796,0.0333504,0.032788995,0.032240203,0.031703663,0.031179024,0.030665948,0.030164109,0.029673191,0.029192889,0.028722909,0.028262966,0.027812786,0.027372102,0.026940657,0.026518203,0.026104498,0.025699311,0.025302417,0.024913596,0.024532639,0.024159342,0.023793506,0.02343494,0.02308346,0.022738884,0.022401039,0.022069758,0.021744875,0.021426232,0.021113677,0.020807059,0.020506235,0.020211064,0.01992141,0.019637141,0.019358129,0.01908425,0.018815383,0.01855141,0.018292219,0.018037697,0.017787738,0.017542238,0.017301095,0.017064209,0.016831487,0.016602833,0.016378158,0.016157374,0.015940394,0.015727136,0.015517518,0.015311461,0.015108888,0.014909725,0.014713899,0.014521339,0.014331976,0.014145742,0.013962572,0.013782403,0.013605171,0.013430818,0.013259282,0.013090508,0.012924438,0.012761019,0.012600196,0.012441919,0.012286135,0.012132796,0.011981853,0.011833259,0.011686969,0.011542937,0.01140112,0.011261475,0.01112396,0.010988534,0.010855158,0.010723793,0.010594401,0.010466945,0.010341388,0.010217696,0.010095834,0.009975767,0.009857464,0.009740891,0.009626018,0.009512813,0.009401246,0.009291288,0.009182909,0.009076083,0.008970781,0.008866975,0.008764641,0.008663752,0.008564282,0.008466207,0.008369503,0.008274147,0.008180114,0.008087382,0.00799593,0.007905734,0.007816775,0.007729031,0.007642481,0.007557106,0.007472886,0.007389802,0.007307835,0.007226967,0.007147179,0.007068454,0.006990775,0.006914124,0.006838484,0.006763841,0.006690177,0.006617476,0.006545724,0.006474905,0.006405005,0.006336009,0.006267902,0.006200671,0.006134302,0.006068782,0.006004097,0.005940235,0.005877182,0.005814927,0.005753456,0.005692759,0.005632823,0.005573637,0.00551519,0.005457469,0.005400465,0.005344167,0.005288563,0.005233644,0.0051794,0.005125821,0.005072896,0.005020616,0.004968971,0.004917953,0.004867553,0.00481776,0.004768567,0.004719965,0.004671945,0.004624499,0.004577618,0.004531295,0.004485522,0.004440291,0.004395594,0.004351423,0.004307772,0.004264633,0.004221998,0.004179861,0.004138215,0.004097054,0.004056369,0.004016155,0.003976405,0.003937114,0.003898274,0.003859879,0.003821924,0.003784402,0.003747308,0.003710635,0.003674379,0.003638533,0.003603092,0.003568051,0.003533404,0.003499146,0.003465271,0.003431776,0.003398655,0.003365902,0.003333513,0.003301484,0.003269809,0.003238485,0.003207505,0.003176867,0.003146565,0.003116595,0.003086954,0.003057635,0.003028637,0.002999954,0.002971582,0.16203131,0.161903083,0.161520056,0.160887139,0.160012325,0.15890642,0.15758269,0.156056446,0.154344594,0.152465165,0.150436861,0.148278627,0.146009262,0.143647086,0.141209664,0.138713589,0.136174324,0.133606096,0.131021835,0.128433161,0.125850397,0.12328261,0.120737671,0.118222333,0.115742312,0.113302377,0.110906435,0.10857318,0.106328205,0.104167258,0.10208588,0.100079912,0.098145475,0.096278945,0.09447693,0.092736257,0.091053954,0.089427231,0.087853471,0.086330213,0.084855146,0.08342609,0.082038629,0.080676606,0.079337916,0.078023132,0.076732682,0.075466871,0.074225887,0.073009822,0.071818678,0.070652378,0.06951078,0.068393681,0.067300828,0.066231927,0.065186644,0.064164616,0.063165454,0.062188748,0.061234071,0.060300985,0.05938904,0.05849778,0.057626744,0.056775471,0.055943498,0.055130363,0.054335609,0.05355878,0.052799429,0.052057113,0.051331395,0.050621846,0.049928047,0.049249584,0.048586054,0.047937062,0.047302223,0.046681158,0.046073503,0.045284688,0.044482729,0.043699297,0.042933883,0.042185989,0.041455133,0.040740847,0.040042675,0.039360175,0.038692919,0.038040491,0.037402486,0.036778512,0.036168191,0.035571152,0.03498704,0.034415506,0.033856215,0.033308841,0.032773067,0.032248587,0.031735105,0.031232331,0.030739986,0.030257799,0.029785508,0.029322857,0.028869599,0.028425495,0.027990311,0.027563822,0.027145809,0.026736061,0.02633437,0.025940536,0.025554367,0.025175672,0.02480427,0.024439983,0.024082639,0.02373207,0.023388113,0.023050612,0.022719412,0.022394365,0.022075326,0.021762154,0.021454714,0.021152872,0.020856498,0.020565469,0.020279661,0.019998956,0.019723239,0.019452398,0.019186323,0.018924909,0.018668052,0.018415652,0.018167611,0.017923834,0.017684228,0.017448702,0.01721717,0.016989546,0.016765746,0.016545689,0.016329297,0.016116492,0.015907199,0.015701346,0.015498861,0.015299674,0.015103718,0.014910927,0.014721237,0.014534585,0.014350909,0.014170151,0.013992251,0.013817154,0.013644803,0.013475145,0.013308127,0.013143697,0.012981805,0.012822402,0.01266544,0.012510873,0.012358654,0.012208739,0.012061085,0.011915648,0.011772388,0.011631263,0.011492235,0.011355263,0.011220311,0.01108734,0.010956316,0.010827202,0.010699964,0.010574567,0.01045098,0.010329169,0.010209102,0.01009075,0.009974081,0.009859065,0.009745674,0.00963388,0.009523654,0.009414969,0.009307799,0.009202117,0.009097899,0.008995118,0.008893751,0.008793774,0.008695163,0.008597895,0.008501948,0.008407299,0.008313927,0.008221811,0.008130931,0.008041265,0.007952794,0.007865498,0.007779358,0.007694356,0.007610473,0.007527691,0.007445993,0.00736536,0.007285777,0.007207226,0.007129691,0.007053156,0.006977605,0.006903024,0.006829396,0.006756707,0.006684942,0.006614088,0.006544129,0.006475053,0.006406846,0.006339495,0.006272986,0.006207306,0.006142444,0.006078387,0.006015123,0.00595264,0.005890927,0.005829971,0.005769762,0.005710288,0.00565154,0.005593505,0.005536175,0.005479538,0.005423584,0.005368304,0.005313687,0.005259725,0.005206407,0.005153725,0.005101669,0.005050231,0.004999401,0.004949172,0.004899534,0.00485048,0.004802,0.004754088,0.004706735,0.004659933,0.004613675,0.004567953,0.004522759,0.004478087,0.00443393,0.00439028,0.00434713,0.004304473,0.004262304,0.004220614,0.004179398,0.00413865,0.004098363,0.00405853,0.004019147,0.003980206,0.003941702,0.003903629,0.003865981,0.003828754,0.00379194,0.003755536,0.003719535,0.003683932,0.003648722,0.0036139,0.003579461,0.003545399,0.003511711,0.003478391,0.003445435,0.003412837,0.003380593,0.0033487,0.003317151,0.003285944,0.003255073,0.003224534,0.003194324,0.003164437,0.170817503,0.17068078,0.170272421,0.169597792,0.168665623,0.167487708,0.166078504,0.164454671,0.162634569,0.16063774,0.158484405,0.156194995,0.153789728,0.151288249,0.148709334,0.146070665,0.143388663,0.14067838,0.137953451,0.135226079,0.132507061,0.12980584,0.127130575,0.124488232,0.121884673,0.119324757,0.116814658,0.114389445,0.112056166,0.109809869,0.107645941,0.105560084,0.103548284,0.101606794,0.099732106,0.09792094,0.096170221,0.094477066,0.092838766,0.091252778,0.089716711,0.088228313,0.086785464,0.085386053,0.084016653,0.082669526,0.081345302,0.080044471,0.078767396,0.077514326,0.07628541,0.075080705,0.07390019,0.072743777,0.071611312,0.070502593,0.069417371,0.068355356,0.067316228,0.066299636,0.06530521,0.064332556,0.06338127,0.062450933,0.061541118,0.060651392,0.059781317,0.058930455,0.058098367,0.057284615,0.056488762,0.055710379,0.054949037,0.054204317,0.053475803,0.052763086,0.052065766,0.05138345,0.050715753,0.050062298,0.049422715,0.048759445,0.047908499,0.04707688,0.046264067,0.045469557,0.044692857,0.043933488,0.043190985,0.042464896,0.041754781,0.041060213,0.040380777,0.03971607,0.0390657,0.038429287,0.037806462,0.037196868,0.036600156,0.03601599,0.035444041,0.034883992,0.034335535,0.03379837,0.033272207,0.032756764,0.032251769,0.031756955,0.031272064,0.030796848,0.030331063,0.029874474,0.029426853,0.028987977,0.028557632,0.028135607,0.027721701,0.027315715,0.026917459,0.026526746,0.026143396,0.025767234,0.025398088,0.025035794,0.02468019,0.024331121,0.023988433,0.02365198,0.023321617,0.022997206,0.02267861,0.022365697,0.022058339,0.021756412,0.021459793,0.021168364,0.020882011,0.020600622,0.020324087,0.0200523,0.01978516,0.019522564,0.019264415,0.019010619,0.018761082,0.018515713,0.018274426,0.018037133,0.017803753,0.017574202,0.017348402,0.017126276,0.016907748,0.016692744,0.016481193,0.016273026,0.016068173,0.015866569,0.015668148,0.015472848,0.015280606,0.015091363,0.01490506,0.014721638,0.014541043,0.01436322,0.014188115,0.014015676,0.013845852,0.013678594,0.013513853,0.013351582,0.013191734,0.013034264,0.012879128,0.012726283,0.012575685,0.012427295,0.012281072,0.012136976,0.011994969,0.011855013,0.011717071,0.011581107,0.011447086,0.011314973,0.011184735,0.011056338,0.010929751,0.010804941,0.010681877,0.01056053,0.01044087,0.010322867,0.010206494,0.010091722,0.009978524,0.009866873,0.009756745,0.009648112,0.009540949,0.009435233,0.009330939,0.009228044,0.009126525,0.009026358,0.008927522,0.008829995,0.008733756,0.008638784,0.008545058,0.008452559,0.008361266,0.008271161,0.008182225,0.008094438,0.008007783,0.007922243,0.007837799,0.007754434,0.007672132,0.007590875,0.007510649,0.007431437,0.007353223,0.007275992,0.007199729,0.007124419,0.007050048,0.006976602,0.006904066,0.006832428,0.006761673,0.006691788,0.00662276,0.006554578,0.006487227,0.006420697,0.006354974,0.006290047,0.006225904,0.006162535,0.006099927,0.00603807,0.005976953,0.005916565,0.005856895,0.005797934,0.005739672,0.005682098,0.005625202,0.005568976,0.005513409,0.005458493,0.005404218,0.005350575,0.005297555,0.005245151,0.005193353,0.005142152,0.005091541,0.005041512,0.004992057,0.004943167,0.004894836,0.004847054,0.004799816,0.004753114,0.00470694,0.004661287,0.004616149,0.004571518,0.004527388,0.004483752,0.004440603,0.004397936,0.004355743,0.004314018,0.004272756,0.00423195,0.004191595,0.004151684,0.004112211,0.004073171,0.004034559,0.003996369,0.003958595,0.003921232,0.003884275,0.003847718,0.003811557,0.003775787,0.003740402,0.003705397,0.003670769,0.003636511,0.00360262,0.003569091,0.003535919,0.0035031,0.180382962,0.18023634,0.179798473,0.179075287,0.178076414,0.17681485,0.175306503,0.173569671,0.171624472,0.169492266,0.167195092,0.164755152,0.162194341,0.159533862,0.156793907,0.153993411,0.151149894,0.148279346,0.145396186,0.14251326,0.139641877,0.136791877,0.133971716,0.131188565,0.128448419,0.125756205,0.123132737,0.120609248,0.118181121,0.115843218,0.113590756,0.111419275,0.109324616,0.107302891,0.105350465,0.103463935,0.101640115,0.099876014,0.098168826,0.096515915,0.094914802,0.093363153,0.09185877,0.090399581,0.088983632,0.087605973,0.086251261,0.08491825,0.083607504,0.082319463,0.081054447,0.079812676,0.078594278,0.077399297,0.076227707,0.075079418,0.073954284,0.072852109,0.071772659,0.07071566,0.069680809,0.068667778,0.067676217,0.066705757,0.065756016,0.064826601,0.063917109,0.063027133,0.06215626,0.061304076,0.060470166,0.059654118,0.058855518,0.058073958,0.057309035,0.056560348,0.055827504,0.055110115,0.054407799,0.053720183,0.053046899,0.052387588,0.051647979,0.050764758,0.049901151,0.049056646,0.048230744,0.04742296,0.046632818,0.045859858,0.045103631,0.044363699,0.043639637,0.042931032,0.042237482,0.041558595,0.040893993,0.040243305,0.039606173,0.038982249,0.038371195,0.03777268,0.037186386,0.036612003,0.036049229,0.035497773,0.034957348,0.034427681,0.033908502,0.033399552,0.032900577,0.032411333,0.03193158,0.031461087,0.03099963,0.030546988,0.030102951,0.029667312,0.02923987,0.028820431,0.028408806,0.02800481,0.027608264,0.027218996,0.026836835,0.026461619,0.026093186,0.025731382,0.025376056,0.025027061,0.024684254,0.024347497,0.024016653,0.023691592,0.023372185,0.023058308,0.022749839,0.022446661,0.022148659,0.021855721,0.021567737,0.021284603,0.021006213,0.020732469,0.020463271,0.020198525,0.019938137,0.019682016,0.019430075,0.019182226,0.018938386,0.018698474,0.018462408,0.018230112,0.01800151,0.017776527,0.01755509,0.017337131,0.017122579,0.016911368,0.016703433,0.016498708,0.016297133,0.016098646,0.015903187,0.015710699,0.015521124,0.015334408,0.015150497,0.014969337,0.014790877,0.014615067,0.014441857,0.014271199,0.014103046,0.013937352,0.013774072,0.013613163,0.013454581,0.013298284,0.013144231,0.012992382,0.012842697,0.012695139,0.01254967,0.012406252,0.01226485,0.012125429,0.011987954,0.011852391,0.011718708,0.011586871,0.011456851,0.011328614,0.011202132,0.011077374,0.010954311,0.010832915,0.010713159,0.010595013,0.010478453,0.010363451,0.010249982,0.010138021,0.010027543,0.009918524,0.009810939,0.009704767,0.009599984,0.009496568,0.009394497,0.009293749,0.009194303,0.00909614,0.008999238,0.008903577,0.008809139,0.008715904,0.008623853,0.008532969,0.008443232,0.008354626,0.008267133,0.008180735,0.008095417,0.008011161,0.007927952,0.007845774,0.007764611,0.007684449,0.007605271,0.007527064,0.007449813,0.007373504,0.007298122,0.007223655,0.007150089,0.007077411,0.007005607,0.006934665,0.006864573,0.006795317,0.006726888,0.006659271,0.006592456,0.006526431,0.006461185,0.006396708,0.006332987,0.006270013,0.006207774,0.006146261,0.006085464,0.006025371,0.005965975,0.005907265,0.005849231,0.005791864,0.005735155,0.005679095,0.005623675,0.005568887,0.005514722,0.00546117,0.005408225,0.005355878,0.005304121,0.005252945,0.005202344,0.005152309,0.005102833,0.005053909,0.005005529,0.004957686,0.004910373,0.004863583,0.004817309,0.004771544,0.004726283,0.004681517,0.004637242,0.00459345,0.004550135,0.004507291,0.004464913,0.004422993,0.004381527,0.004340509,0.004299932,0.004259791,0.004220081,0.004180796,0.004141932,0.004103481,0.004065441,0.004027804,0.003990567,0.003953724,0.003917271,0.003881202,0.190845832,0.190687543,0.190214911,0.189434556,0.188357231,0.186997421,0.185372827,0.183503757,0.181412485,0.179122585,0.176658303,0.174043969,0.171303487,0.168459906,0.165535078,0.162549406,0.159521667,0.15646892,0.15340646,0.150347841,0.147304923,0.144287959,0.1413057,0.138365507,0.135473484,0.1326388,0.129903913,0.127273955,0.124743173,0.12230622,0.119958117,0.117694223,0.115510209,0.113402029,0.111365904,0.109398294,0.107495884,0.105655565,0.103874418,0.102149704,0.100478844,0.098859413,0.097289126,0.095765831,0.094287494,0.0928522,0.091458135,0.090097017,0.088756436,0.087436774,0.08613856,0.084862203,0.083608009,0.082376186,0.081166859,0.079980077,0.078815821,0.077674013,0.076554524,0.075457179,0.074381762,0.073328025,0.07229569,0.071284454,0.070293994,0.069323969,0.068374024,0.067443794,0.066532904,0.065640973,0.064767616,0.063912445,0.063075071,0.062255105,0.061452159,0.060665849,0.059895793,0.059141614,0.058402939,0.0576794,0.056970636,0.056276291,0.055596016,0.054795863,0.053877893,0.052979833,0.052101182,0.051241449,0.050400152,0.049576825,0.048771011,0.047982264,0.047210152,0.046454251,0.045714151,0.04498945,0.044279759,0.043584699,0.0429039,0.042237004,0.041583662,0.040943534,0.040316289,0.039701608,0.039099178,0.038508697,0.037929868,0.037362406,0.036806032,0.036260476,0.035725474,0.03520077,0.034686117,0.034181273,0.033686002,0.033200077,0.032723276,0.032255382,0.031796187,0.031345486,0.030903081,0.03046878,0.030042395,0.029623743,0.029212648,0.028808937,0.028412442,0.028023,0.027640452,0.027264644,0.026895425,0.02653265,0.026176175,0.025825863,0.025481578,0.025143189,0.024810568,0.024483591,0.024162136,0.023846086,0.023535324,0.02322974,0.022929223,0.022633669,0.022342972,0.022057031,0.02177575,0.02149903,0.02122678,0.020958907,0.020695322,0.02043594,0.020180674,0.019929443,0.019682167,0.019438766,0.019199164,0.018963286,0.01873106,0.018502413,0.018277277,0.018055584,0.017837266,0.017622261,0.017410503,0.017201933,0.016996489,0.016794112,0.016594745,0.016398332,0.016204818,0.01601415,0.015826274,0.015641139,0.015458696,0.015278896,0.01510169,0.014927031,0.014754875,0.014585176,0.01441789,0.014252974,0.014090388,0.013930089,0.013772037,0.013616194,0.01346252,0.013310979,0.013161533,0.013014146,0.012868784,0.012725411,0.012583995,0.0124445,0.012306897,0.012171152,0.012037234,0.011905113,0.01177476,0.011646145,0.011519238,0.011394014,0.011270443,0.011148499,0.011028155,0.010909386,0.010792166,0.01067647,0.010562275,0.010449555,0.010338288,0.010228451,0.01012002,0.010012975,0.009907292,0.009802952,0.009699933,0.009598214,0.009497776,0.009398599,0.009300663,0.009203949,0.00910844,0.009014116,0.00892096,0.008828953,0.00873808,0.008648322,0.008559663,0.008472087,0.008385578,0.00830012,0.008215697,0.008132294,0.008049896,0.007968489,0.007888058,0.007808589,0.007730068,0.007652481,0.007575815,0.007500057,0.007425194,0.007351213,0.007278101,0.007205846,0.007134436,0.00706386,0.006994105,0.00692516,0.006857013,0.006789655,0.006723072,0.006657256,0.006592195,0.006527879,0.006464297,0.00640144,0.006339298,0.006277861,0.00621712,0.006157065,0.006097686,0.006038975,0.005980923,0.005923521,0.00586676,0.005810632,0.005755128,0.005700241,0.005645961,0.005592281,0.005539194,0.005486691,0.005434764,0.005383407,0.005332611,0.00528237,0.005232676,0.005183523,0.005134903,0.005086809,0.005039235,0.004992175,0.00494562,0.004899566,0.004854006,0.004808934,0.004764343,0.004720227,0.00467658,0.004633398,0.004590673,0.0045484,0.004506573,0.004465187,0.004424237,0.004383717,0.004343621,0.004303945,0.202350726,0.202178512,0.201664402,0.200815895,0.199645157,0.198168549,0.196406017,0.194380387,0.192116606,0.18964099,0.186980488,0.184162027,0.181211937,0.178155477,0.175016471,0.171817033,0.168577402,0.165315847,0.162048649,0.158790132,0.15555274,0.152347148,0.149182387,0.146065983,0.143004118,0.140032922,0.137177659,0.134431852,0.131789491,0.129244983,0.126793128,0.124429076,0.122148304,0.119946591,0.117819987,0.115764798,0.113777565,0.111855044,0.10999419,0.108192143,0.106446216,0.104753879,0.10311275,0.101520584,0.099975263,0.098474788,0.097017272,0.095600928,0.094224067,0.092877718,0.091550781,0.090243788,0.088957253,0.087691582,0.086447082,0.085223971,0.084022385,0.082842392,0.081683994,0.080547137,0.079431717,0.078337588,0.077264565,0.076212428,0.075180932,0.074169805,0.073178755,0.072207473,0.071255635,0.070322907,0.069408944,0.068513393,0.0676359,0.066776104,0.065933643,0.065108154,0.064299274,0.063506645,0.062729906,0.061968704,0.061222687,0.060491508,0.059774824,0.0590723,0.05823352,0.057278146,0.056342983,0.055427541,0.054531337,0.053653901,0.05279477,0.051953496,0.051129638,0.050322768,0.049532466,0.048758325,0.047999946,0.047256941,0.046528933,0.045815552,0.045116441,0.04443125,0.043759639,0.043101277,0.042455842,0.041823021,0.041202508,0.040594007,0.039997228,0.039411892,0.038837725,0.038274461,0.03772184,0.037179613,0.036647534,0.036125364,0.035612874,0.035109836,0.034616032,0.034131249,0.033655279,0.03318792,0.032728977,0.032278257,0.031835576,0.031400751,0.030973607,0.030553973,0.030141681,0.02973657,0.02933848,0.028947259,0.028562755,0.028184824,0.027813322,0.027448112,0.027089059,0.026736031,0.026388899,0.026047541,0.025711833,0.025381658,0.0250569,0.024737446,0.024423187,0.024114017,0.02380983,0.023510525,0.023216003,0.022926168,0.022640925,0.022360182,0.022083849,0.02181184,0.021544067,0.021280449,0.021020904,0.020765352,0.020513716,0.02026592,0.02002189,0.019781554,0.019544843,0.019311686,0.019082016,0.018855769,0.01863288,0.018413285,0.018196925,0.017983739,0.017773669,0.017566657,0.017362648,0.017161587,0.016963421,0.016768097,0.016575565,0.016385773,0.016198675,0.016014221,0.015832366,0.015653062,0.015476267,0.015301935,0.015130024,0.014960493,0.014793299,0.014628404,0.014465767,0.01430535,0.014147115,0.013991026,0.013837047,0.013685141,0.013535275,0.013387414,0.013241525,0.013097576,0.012955534,0.012815368,0.012677048,0.012540544,0.012405826,0.012272865,0.012141633,0.012012102,0.011884246,0.011758037,0.011633449,0.011510457,0.011389035,0.011269159,0.011150805,0.011033948,0.010918567,0.010804637,0.010692136,0.010581044,0.010471337,0.010362994,0.010255996,0.010150321,0.01004595,0.009942863,0.009841041,0.009740464,0.009641115,0.009542974,0.009446025,0.009350249,0.009255629,0.009162148,0.00906979,0.008978538,0.008888376,0.008799289,0.00871126,0.008624275,0.008538318,0.008453375,0.008369432,0.008286473,0.008204486,0.008123457,0.008043371,0.007964216,0.007885979,0.007808646,0.007732206,0.007656646,0.007581953,0.007508116,0.007435124,0.007362963,0.007291623,0.007221093,0.007151362,0.007082419,0.007014253,0.006946854,0.006880211,0.006814314,0.006749154,0.006684721,0.006621004,0.006557994,0.006495682,0.006434059,0.006373116,0.006312843,0.006253233,0.006194275,0.006135963,0.006078287,0.006021239,0.005964811,0.005908995,0.005853784,0.005799168,0.005745142,0.005691697,0.005638826,0.005586521,0.005534776,0.005483583,0.005432936,0.005382827,0.00533325,0.005284198,0.005235665,0.005187644,0.005140128,0.005093113,0.00504659,0.005000555,0.004955001,0.004909922,0.004865313,0.004821168,0.00477748 -0.116591641,0.116367315,0.115696143,0.114594022,0.113141543,0.111293253,0.109376845,0.107284214,0.105026065,0.102606398,0.100064455,0.097439716,0.094765026,0.092067508,0.089369378,0.086686784,0.083827298,0.081014692,0.078301995,0.075614463,0.073070623,0.070672863,0.068388122,0.066206506,0.063809701,0.061457018,0.059189773,0.057023073,0.054976238,0.053089324,0.05140466,0.04991002,0.048475298,0.047110305,0.045797007,0.044534294,0.043024723,0.041165995,0.039409746,0.037754653,0.036200011,0.034814587,0.033699804,0.032715458,0.031772837,0.030869931,0.030004805,0.029204573,0.028602251,0.027997796,0.027391318,0.026782922,0.026172705,0.025555607,0.024934798,0.024312406,0.023688506,0.023063169,0.022478559,0.021966378,0.021453179,0.020939009,0.02042391,0.019915799,0.019507142,0.019097842,0.018687926,0.018277419,0.017866346,0.017545724,0.017243621,0.016941151,0.016638328,0.016335166,0.016062733,0.015809144,0.015555302,0.015301218,0.015046899,0.014821181,0.014632153,0.01444297,0.014253636,0.014064158,0.013880813,0.013713326,0.013545724,0.01337801,0.013210189,0.013044976,0.012895778,0.012746492,0.012597123,0.012447672,0.012298495,0.012164668,0.012030775,0.011896817,0.011762797,0.011628715,0.011512536,0.011397994,0.011283404,0.011168768,0.011054088,0.010949966,0.010848175,0.010746348,0.010644485,0.010542587,0.010462715,0.010390963,0.01031919,0.010247394,0.010175577,0.010107254,0.01004079,0.009974308,0.009907808,0.009841291,0.009742184,0.009619531,0.009496848,0.009374136,0.009251396,0.009135177,0.009025074,0.008914947,0.008804798,0.008694626,0.008591983,0.008498288,0.008404575,0.008310844,0.008217097,0.008126672,0.008041173,0.007955659,0.007870131,0.007784589,0.007696056,0.007602075,0.00750808,0.007414071,0.007320048,0.00722876,0.007143621,0.00705847,0.006973308,0.006888134,0.006807106,0.00673749,0.006667865,0.006598232,0.006528591,0.006458942,0.006389284,0.006319619,0.006249946,0.006180266,0.006110578,0.006040882,0.00597118,0.005901471,0.005831754,0.005762031,0.005692302,0.005622566,0.005552823,0.005483074,0.005413319,0.005343558,0.005273791,0.005204018,0.005134239,0.005066935,0.005021703,0.004976468,0.004931229,0.004885986,0.004840741,0.004795492,0.00475024,0.004704984,0.004659726,0.004614464,0.0045692,0.004523932,0.004478661,0.004433388,0.004388112,0.004342833,0.004297551,0.004252266,0.004206979,0.004161689,0.004116397,0.004071102,0.004025804,0.003980504,0.003935202,0.003898963,0.003862846,0.003826726,0.003790605,0.003754482,0.003718357,0.003682231,0.003646103,0.003609973,0.003573841,0.003537708,0.003501573,0.003465437,0.003429299,0.00339316,0.003357019,0.003320876,0.003284732,0.003248587,0.00321244,0.003176292,0.003140142,0.003103991,0.003067838,0.003031685,0.003005336,0.002980003,0.002954669,0.002929334,0.002903999,0.002878662,0.002853325,0.002827987,0.002802648,0.002777308,0.002751968,0.002726626,0.002701284,0.002675941,0.002650598,0.002625253,0.002599908,0.002574562,0.002549215,0.002523868,0.00249852,0.002473171,0.002447822,0.002422472,0.002397121,0.002377457,0.002358807,0.002340156,0.002321505,0.002302853,0.002284201,0.002265548,0.002246895,0.002228242,0.002209588,0.002190933,0.002172279,0.002153623,0.002134968,0.002116312,0.002097655,0.002078999,0.002060341,0.002041684,0.002023026,0.002004367,0.001985709,0.00196705,0.00194839,0.00192973,0.001914968,0.001901131,0.001887295,0.001873458,0.001859621,0.001845784,0.001831946,0.001818108,0.00180427,0.001790432,0.001776594,0.001762755,0.001748916,0.001735077,0.001721238,0.001707398,0.001693558,0.001679718,0.001665878,0.001652037,0.001638197,0.001624356,0.001610515,0.001596673,0.129723929,0.129474797,0.128729423,0.127493791,0.125844339,0.123792128,0.121523799,0.119192035,0.116663876,0.113950995,0.111105433,0.108170742,0.105183127,0.102172463,0.099163188,0.096175102,0.093226777,0.090288926,0.08725165,0.084237477,0.081410978,0.078728967,0.076174507,0.073762645,0.071132784,0.068512475,0.065986537,0.063590376,0.061417354,0.059487313,0.057742678,0.056063177,0.05446176,0.052926939,0.05145017,0.050030229,0.048429063,0.046334073,0.044357236,0.042505295,0.04085161,0.039523046,0.03835117,0.037229259,0.036154949,0.03512595,0.034140051,0.033198623,0.032503677,0.031806228,0.031106407,0.030404336,0.029700128,0.028979948,0.028247657,0.027513467,0.02677747,0.026039752,0.025337552,0.02476254,0.024186368,0.023609088,0.023030749,0.022451398,0.0219959,0.021549012,0.021101441,0.020653215,0.020204361,0.019835261,0.01950297,0.019170269,0.018837174,0.018503701,0.018192414,0.017906006,0.017619309,0.017332334,0.01704509,0.016779141,0.016565637,0.016351953,0.016138098,0.015924076,0.015713227,0.015524134,0.015334909,0.015145556,0.01495608,0.014766484,0.014597797,0.014429158,0.014260422,0.014091592,0.013922672,0.013769177,0.01361792,0.013466589,0.013315186,0.013163713,0.013029062,0.012899662,0.012770207,0.012640699,0.01251114,0.012398702,0.012294946,0.012191153,0.012087323,0.011983457,0.011892486,0.011811033,0.011729554,0.011648049,0.011566521,0.011488005,0.011412553,0.01133708,0.011261586,0.011186073,0.011083528,0.010944285,0.010805009,0.010665699,0.010526357,0.010393307,0.010271526,0.010149719,0.010027886,0.009906028,0.009788743,0.009682196,0.009575628,0.00946904,0.009362433,0.009258113,0.009160885,0.00906364,0.008966379,0.008869101,0.008769943,0.008663068,0.008556177,0.00844927,0.008342347,0.008237162,0.008141961,0.008046747,0.007951519,0.007856279,0.007762878,0.007684915,0.007606943,0.007528961,0.007450969,0.007372968,0.007294959,0.00721694,0.007138912,0.007060876,0.006982832,0.006904779,0.006826719,0.00674865,0.006670574,0.00659249,0.006514398,0.006436299,0.006358193,0.006280079,0.006201959,0.006123832,0.006045698,0.005967557,0.00588941,0.005811257,0.005758308,0.005706984,0.005655656,0.005604324,0.005552988,0.005501648,0.005450305,0.005398958,0.005347607,0.005296253,0.005244895,0.005193534,0.00514217,0.005090802,0.005039431,0.004988057,0.004936679,0.004885299,0.004833915,0.004782529,0.004731139,0.004679747,0.004628351,0.004576953,0.004525552,0.004482342,0.004440885,0.004399427,0.004357966,0.004316503,0.004275039,0.004233572,0.004192103,0.004150632,0.004109159,0.004067685,0.004026208,0.00398473,0.00394325,0.003901768,0.003860284,0.003818799,0.003777312,0.003735823,0.003694332,0.00365284,0.003611346,0.003569851,0.003528354,0.003486855,0.003454388,0.003425063,0.003395738,0.003366412,0.003337084,0.003307756,0.003278426,0.003249096,0.003219765,0.003190432,0.003161099,0.003131765,0.00310243,0.003073094,0.003043757,0.003014419,0.002985081,0.002955741,0.002926401,0.00289706,0.002867718,0.002838375,0.002809031,0.002779687,0.002750342,0.002726454,0.002705095,0.002683735,0.002662374,0.002641013,0.002619651,0.002598289,0.002576926,0.002555563,0.002534199,0.002512835,0.00249147,0.002470105,0.00244874,0.002427373,0.002406007,0.00238464,0.002363272,0.002341904,0.002320536,0.002299167,0.002277798,0.002256428,0.002235058,0.002213687,0.002195862,0.002180016,0.00216417,0.002148323,0.002132476,0.002116628,0.00210078,0.002084932,0.002069084,0.002053235,0.002037387,0.002021537,0.002005688,0.001989838,0.001973989,0.001958138,0.001942288,0.001926437,0.001910586,0.001894735,0.001878884,0.001863032,0.00184718,0.001831328,0.144436782,0.144159948,0.143331715,0.141958798,0.140066711,0.137786893,0.135093919,0.132504199,0.129659155,0.126613099,0.123423464,0.120138279,0.116797441,0.113433837,0.110074337,0.106740675,0.103450224,0.100236737,0.097081447,0.093878939,0.090732197,0.087727743,0.084867819,0.082197217,0.079315468,0.076397273,0.073586291,0.071072005,0.0688722,0.066839175,0.064878754,0.06299667,0.061204482,0.059478306,0.057817307,0.056220141,0.054536189,0.052173807,0.049965786,0.047980243,0.046391634,0.044995599,0.043659344,0.042380113,0.04115521,0.03998202,0.038859543,0.037787562,0.036916965,0.03607323,0.035226571,0.03437714,0.033525076,0.032685544,0.031863678,0.031039643,0.030213544,0.029385478,0.028568694,0.027923211,0.027276404,0.026628332,0.025979051,0.025328614,0.024812367,0.024334856,0.023856603,0.023377639,0.022897993,0.022473021,0.022097783,0.021722075,0.021345916,0.020969321,0.020609076,0.020285622,0.019961836,0.019637731,0.019313318,0.018999268,0.018758129,0.018516786,0.018275245,0.018033513,0.017791597,0.017577181,0.017363553,0.017149779,0.016935862,0.016721809,0.016527304,0.016336808,0.016146202,0.015955489,0.015764672,0.015587902,0.015417035,0.015246083,0.015075049,0.014903935,0.01474759,0.014601408,0.014455164,0.01430886,0.014162497,0.014036798,0.013932345,0.013827854,0.013723325,0.013618759,0.01351908,0.013426615,0.013334121,0.013241598,0.013149047,0.013058722,0.012973068,0.01288739,0.012801689,0.012715964,0.012612021,0.012453949,0.012295838,0.012137688,0.011979501,0.011825671,0.011691077,0.011556452,0.011421799,0.011287118,0.011154112,0.011032952,0.010911769,0.010790563,0.010669333,0.010548836,0.010438272,0.010327689,0.010217086,0.010106466,0.00999561,0.009874075,0.009752521,0.009630949,0.009509358,0.009387749,0.009280929,0.009174496,0.009068048,0.008961585,0.008855109,0.008766503,0.008679215,0.008591916,0.008504606,0.008417286,0.008329956,0.008242615,0.008155265,0.008067905,0.007980535,0.007893156,0.007805768,0.007718371,0.007630965,0.00754355,0.007456127,0.007368695,0.007281255,0.007193807,0.007106351,0.007018888,0.006931417,0.006843938,0.006756452,0.006668958,0.006603741,0.006545515,0.006487285,0.00642905,0.006370811,0.006312567,0.00625432,0.006196068,0.006137811,0.006079551,0.006021287,0.005963019,0.005904747,0.005846471,0.005788191,0.005729908,0.005671621,0.005613331,0.005555037,0.005496739,0.005438439,0.005380134,0.005321827,0.005263516,0.005205202,0.005153794,0.00510621,0.005058623,0.005011034,0.004963443,0.004915849,0.004868252,0.004820654,0.004773053,0.00472545,0.004677844,0.004630237,0.004582627,0.004535015,0.004487402,0.004439786,0.004392168,0.004344548,0.004296926,0.004249302,0.004201676,0.004154049,0.004106419,0.004058788,0.004011155,0.003971196,0.003937255,0.003903313,0.003869369,0.003835424,0.003801478,0.003767531,0.003733582,0.003699633,0.003665682,0.00363173,0.003597777,0.003563823,0.003529868,0.003495912,0.003461955,0.003427997,0.003394038,0.003360078,0.003326117,0.003292155,0.003258192,0.003224228,0.003190263,0.003156297,0.003127094,0.003102632,0.003078169,0.003053706,0.003029241,0.003004777,0.002980312,0.002955846,0.002931379,0.002906912,0.002882444,0.002857976,0.002833507,0.002809038,0.002784568,0.002760098,0.002735627,0.002711155,0.002686684,0.002662211,0.002637738,0.002613264,0.00258879,0.002564316,0.002539841,0.002518267,0.002500119,0.002481971,0.002463822,0.002445673,0.002427523,0.002409373,0.002391223,0.002373072,0.002354921,0.00233677,0.002318619,0.002300467,0.002282315,0.002264162,0.00224601,0.002227857,0.002209703,0.00219155,0.002173396,0.002155242,0.002137087,0.002118933,0.002100778,0.160942963,0.160635155,0.159714281,0.158187893,0.156068231,0.153477042,0.150419661,0.147392767,0.144185443,0.140759875,0.137187356,0.133509942,0.129762006,0.125994571,0.122240154,0.118517302,0.114845027,0.111242113,0.107771123,0.104356031,0.101045495,0.097793559,0.094590339,0.091628413,0.088476836,0.085254828,0.082261012,0.079778765,0.077414789,0.075130021,0.07292637,0.07082814,0.068811782,0.066869491,0.065000382,0.063202984,0.061454714,0.058816854,0.056417976,0.054509499,0.052845058,0.051252077,0.04972737,0.04826779,0.046870258,0.045537416,0.044261636,0.043038102,0.041966553,0.040950805,0.039931464,0.038908717,0.037882735,0.036882172,0.035959922,0.035035189,0.034108093,0.033178746,0.032247253,0.031501289,0.030775278,0.030047821,0.02931898,0.028588817,0.02799086,0.02748215,0.026972633,0.026462345,0.025951317,0.025470082,0.025046385,0.024622147,0.024197389,0.023772132,0.023354224,0.022988959,0.022623313,0.0222573,0.021890934,0.021524226,0.021246552,0.020974073,0.020701368,0.020428444,0.020155309,0.019907159,0.019665905,0.019424482,0.019182897,0.018941154,0.018716412,0.018501238,0.018285938,0.018070514,0.017854971,0.017650985,0.017457974,0.017264865,0.017071662,0.016878367,0.016700423,0.016545439,0.016390388,0.016235271,0.016080092,0.015937388,0.015823706,0.015709982,0.015596216,0.01548241,0.015370451,0.01526549,0.015160494,0.015055466,0.014950404,0.01484634,0.014749108,0.014651847,0.01455456,0.014457246,0.014355405,0.014178817,0.014002184,0.013825508,0.01364879,0.01347203,0.013320281,0.013168752,0.01301719,0.012865595,0.012713969,0.01257521,0.012437409,0.012299582,0.012161728,0.012023849,0.011896579,0.01177083,0.011645059,0.011519267,0.011393453,0.011258598,0.011121768,0.010984918,0.010848046,0.010711154,0.010587108,0.010466777,0.010346428,0.010226063,0.010105682,0.010001922,0.009904244,0.009806554,0.009708851,0.009611137,0.009513411,0.009415673,0.009317925,0.009220165,0.009122395,0.009024613,0.008926822,0.00882902,0.008731208,0.008633387,0.008535556,0.008437715,0.008339865,0.008242005,0.008144137,0.00804626,0.007948374,0.00785048,0.007752577,0.007654667,0.007574588,0.00750854,0.007442487,0.007376429,0.007310366,0.007244298,0.007178226,0.007112148,0.007046065,0.006979978,0.006913886,0.00684779,0.006781689,0.006715584,0.006649475,0.006583361,0.006517243,0.006451121,0.006384995,0.006318865,0.006252731,0.006186593,0.006120452,0.006054306,0.005988157,0.005926922,0.005871934,0.005816942,0.005761948,0.005706951,0.005651951,0.005596949,0.005541943,0.005486935,0.005431925,0.005376912,0.005321896,0.005266878,0.005211857,0.005156834,0.005101808,0.00504678,0.00499175,0.004936717,0.004881683,0.004826645,0.004771606,0.004716565,0.004661521,0.004606475,0.004557171,0.004518261,0.004479349,0.004440437,0.004401522,0.004362607,0.00432369,0.004284772,0.004245852,0.004206931,0.004168009,0.004129086,0.004090161,0.004051235,0.004012308,0.00397338,0.00393445,0.00389552,0.003856588,0.003817655,0.003778721,0.003739786,0.003700849,0.003661912,0.003622973,0.00358726,0.003559244,0.003531228,0.003503211,0.003475194,0.003447175,0.003419156,0.003391137,0.003363116,0.003335095,0.003307074,0.003279051,0.003251028,0.003223004,0.00319498,0.003166955,0.00313893,0.003110904,0.003082877,0.003054849,0.003026822,0.002998793,0.002970764,0.002942734,0.002914704,0.002888497,0.002867713,0.002846928,0.002826142,0.002805357,0.002784571,0.002763784,0.002742998,0.00272221,0.002701423,0.002680635,0.002659847,0.002639058,0.002618269,0.00259748,0.00257669,0.0025559,0.00253511,0.002514319,0.002493528,0.002472737,0.002451945,0.002431153,0.002410361,0.179589159,0.179224137,0.178132135,0.176423359,0.174065354,0.171092992,0.167692786,0.164064386,0.160441724,0.156619034,0.152612712,0.148480405,0.144274961,0.140039733,0.135816968,0.131655008,0.12755245,0.123525575,0.11962561,0.115838544,0.112235738,0.108781836,0.105471726,0.102180679,0.098775879,0.095290151,0.092449508,0.089709322,0.08705276,0.084484413,0.082021486,0.079668898,0.077399384,0.075212955,0.073108688,0.071084986,0.069155375,0.066418906,0.064115331,0.06212944,0.060228837,0.058409894,0.056668975,0.055005025,0.053419301,0.051899282,0.050441967,0.049044434,0.047753834,0.046536273,0.045314305,0.044088159,0.042858045,0.041638283,0.040603577,0.039566023,0.038525758,0.037482911,0.036437603,0.03556863,0.034773715,0.033977181,0.0331791,0.03237954,0.031674757,0.031114548,0.030553434,0.029991451,0.029428636,0.028877208,0.02839884,0.027919849,0.02744026,0.026960095,0.026479376,0.026061667,0.025648783,0.025235477,0.024821763,0.024407656,0.02407198,0.023764412,0.023456583,0.023148503,0.022840179,0.022552347,0.022279871,0.022007201,0.021734344,0.021461305,0.021201051,0.020958016,0.020714834,0.020471511,0.020228051,0.019992166,0.019774151,0.019556024,0.019337789,0.019119449,0.018912298,0.018754255,0.018596142,0.018437962,0.018279716,0.01812391,0.017994873,0.017865787,0.017736652,0.017607471,0.017478245,0.017359045,0.017239863,0.017120643,0.017001385,0.01688209,0.016770931,0.016660526,0.01655009,0.016439624,0.016329127,0.016147466,0.015951966,0.015756417,0.015560821,0.015365177,0.015187525,0.015015224,0.014842885,0.014670508,0.014498095,0.014336825,0.014180132,0.014023407,0.013866653,0.013709868,0.013562077,0.013419086,0.013276069,0.013133028,0.012989962,0.012840907,0.012687845,0.012534758,0.012381648,0.012228514,0.012084298,0.01194732,0.011810322,0.011673305,0.011536269,0.011413342,0.011304083,0.01119481,0.011085523,0.010976223,0.010866909,0.010757583,0.010648243,0.010538891,0.010429527,0.010320151,0.010210763,0.010101363,0.009991952,0.00988253,0.009773096,0.009663652,0.009554197,0.009444732,0.009335257,0.009225772,0.009116277,0.009006772,0.008897257,0.008787734,0.008689736,0.008614825,0.008539908,0.008464985,0.008390056,0.008315122,0.008240181,0.008165236,0.008090284,0.008015328,0.007940366,0.007865399,0.007790426,0.007715449,0.007640467,0.00756548,0.007490488,0.007415491,0.00734049,0.007265484,0.007190473,0.007115458,0.007040439,0.006965415,0.006890388,0.00681778,0.006754195,0.006690607,0.006627015,0.00656342,0.006499821,0.00643622,0.006372615,0.006309007,0.006245396,0.006181782,0.006118165,0.006054545,0.005990922,0.005927296,0.005863667,0.005800036,0.005736402,0.005672765,0.005609125,0.005545483,0.005481838,0.005418191,0.005354541,0.005290889,0.005229632,0.005185071,0.005140509,0.005095944,0.005051379,0.005006811,0.004962242,0.004917672,0.0048731,0.004828526,0.004783951,0.004739374,0.004694796,0.004650217,0.004605636,0.004561054,0.00451647,0.004471885,0.004427299,0.004382711,0.004338122,0.004293532,0.00424894,0.004204348,0.004159754,0.004115954,0.00408387,0.004051785,0.004019698,0.003987611,0.003955523,0.003923435,0.003891345,0.003859255,0.003827164,0.003795072,0.003762979,0.003730886,0.003698792,0.003666697,0.003634602,0.003602505,0.003570408,0.003538311,0.003506212,0.003474113,0.003442013,0.003409913,0.003377812,0.00334571,0.003313764,0.003289961,0.003266157,0.003242352,0.003218547,0.003194742,0.003170936,0.00314713,0.003123323,0.003099516,0.003075709,0.003051901,0.003028093,0.003004284,0.002980475,0.002956665,0.002932855,0.002909045,0.002885234,0.002861423,0.002837611,0.0028138,0.002789987,0.002766175,0.148442868,0.148282289,0.147801405,0.147002754,0.145919175,0.144563091,0.142919689,0.141080775,0.139003391,0.13675939,0.134363435,0.131855163,0.129247214,0.126499082,0.123775347,0.120945367,0.11816262,0.115340024,0.112542296,0.109683511,0.106770956,0.103964358,0.101198394,0.098470647,0.095848691,0.09333247,0.090912975,0.088604782,0.086421419,0.084314383,0.082256363,0.080277174,0.078346152,0.076338828,0.074164512,0.072087129,0.070077914,0.068131591,0.066248623,0.064428812,0.062692169,0.061013172,0.059390975,0.057824514,0.056312493,0.054853558,0.053487132,0.052112307,0.050729496,0.049339087,0.047941444,0.046607668,0.045499732,0.044386881,0.04326934,0.042147323,0.041021031,0.040083438,0.039261274,0.038436403,0.037608941,0.036778997,0.035972335,0.03536018,0.034746423,0.034131128,0.033514359,0.032896174,0.032342198,0.031815962,0.03128866,0.030760333,0.03023102,0.029726274,0.029271041,0.028815053,0.028358336,0.027900918,0.027446198,0.02710624,0.026765814,0.026424937,0.026083624,0.025741889,0.025430238,0.025127833,0.024825092,0.024522025,0.024218643,0.023932672,0.023662435,0.023391944,0.023121205,0.022850228,0.022588098,0.022345294,0.022102295,0.021859106,0.021615734,0.021383589,0.021226414,0.02106913,0.02091174,0.020754247,0.020596655,0.020451441,0.020306584,0.020161642,0.020016619,0.019871515,0.019735614,0.019601737,0.019467793,0.019333782,0.019199707,0.019072417,0.018948291,0.018824111,0.018699876,0.018575588,0.018401205,0.018186884,0.017972479,0.017757991,0.017543423,0.017337834,0.017143516,0.016949131,0.016754679,0.016560163,0.016371653,0.01619483,0.016017953,0.015841021,0.015664038,0.015490844,0.015329397,0.015167904,0.015006368,0.014844789,0.014681843,0.014511802,0.01434172,0.014171596,0.014001431,0.013832406,0.013677443,0.013522444,0.013367412,0.013212346,0.013057322,0.012935869,0.012814392,0.01269289,0.012571365,0.012449817,0.012328245,0.012206652,0.012085037,0.0119634,0.011841742,0.011720063,0.011598364,0.011476645,0.011354906,0.011233148,0.011111371,0.010989576,0.010867762,0.010745931,0.010624082,0.010502216,0.010380332,0.010258432,0.010136516,0.010014584,0.009918701,0.009834107,0.009749503,0.009664889,0.009580264,0.009495629,0.009410984,0.009326329,0.009241665,0.009156992,0.009072309,0.008987617,0.008902916,0.008818206,0.008733487,0.00864876,0.008564024,0.00847928,0.008394528,0.008309768,0.008225,0.008140224,0.008055441,0.00797065,0.007885851,0.007806551,0.007733277,0.007659997,0.007586711,0.007513419,0.007440121,0.007366817,0.007293508,0.007220193,0.007146872,0.007073546,0.007000215,0.006926878,0.006853536,0.006780189,0.006706837,0.00663348,0.006560118,0.006486751,0.006413379,0.006340003,0.006266621,0.006193236,0.006119845,0.00604645,0.005980076,0.005929183,0.005878287,0.005827388,0.005776486,0.005725582,0.005674675,0.005623764,0.005572852,0.005521936,0.005471018,0.005420097,0.005369173,0.005318247,0.005267318,0.005216387,0.005165454,0.005114518,0.005063579,0.005012638,0.004961695,0.00491075,0.004859802,0.004808852,0.004757899,0.004709592,0.004672932,0.00463627,0.004599606,0.004562941,0.004526275,0.004489607,0.004452938,0.004416267,0.004379595,0.004342921,0.004306246,0.00426957,0.004232893,0.004196214,0.004159533,0.004122852,0.004086169,0.004049484,0.004012799,0.003976112,0.003939424,0.003902735,0.003866045,0.003829353,0.003793472,0.003766265,0.003739057,0.003711847,0.003684637,0.003657427,0.003630215,0.003603002,0.003575789,0.003548575,0.00352136,0.003494145,0.003466928,0.003439711,0.003412494,0.003385275,0.003358056,0.003330836,0.003303615,0.003276394,0.003249172,0.003221949,0.003194725,0.003167501,0.162180757,0.162005545,0.161480851,0.160609478,0.159396017,0.157892918,0.156100331,0.154044268,0.151758166,0.14928582,0.146631206,0.143839491,0.140997313,0.13796051,0.134968536,0.131840195,0.1287316,0.125487879,0.122076505,0.118776514,0.11560227,0.112550171,0.109523893,0.106550426,0.103712031,0.100972277,0.098339349,0.095851313,0.093475176,0.091185222,0.08897667,0.086757925,0.084241784,0.081560048,0.0792559,0.077043472,0.074896342,0.072816029,0.070803112,0.068877387,0.067019357,0.065222772,0.063486857,0.06181348,0.060214585,0.05882793,0.057387101,0.055924644,0.054453475,0.052974018,0.051486671,0.049997638,0.048818312,0.047633625,0.046443823,0.04524914,0.044049794,0.043020298,0.042254768,0.041486657,0.040716076,0.039943131,0.03916792,0.038492081,0.037827758,0.037161732,0.036494074,0.035824847,0.03520088,0.03463114,0.03406022,0.033488166,0.03291502,0.032348666,0.031856383,0.031363266,0.030869344,0.030374647,0.029879202,0.029483177,0.029114414,0.028745152,0.028375408,0.028005198,0.02765675,0.027329131,0.027001139,0.026672788,0.026344088,0.026025033,0.025732232,0.02543915,0.025145795,0.024852176,0.024563305,0.024349439,0.024135397,0.023921186,0.023706809,0.023492272,0.023314739,0.023142414,0.02296997,0.022797412,0.022624742,0.02246196,0.022303241,0.022144426,0.02198552,0.021826525,0.021674354,0.021527658,0.021380886,0.02123404,0.021087122,0.020956359,0.020848231,0.020740053,0.020631828,0.020523556,0.020377836,0.020141318,0.019904704,0.019667999,0.019431203,0.019198321,0.018983871,0.018769344,0.018554743,0.018340069,0.018126762,0.017931613,0.017736403,0.017541132,0.017345802,0.017150415,0.016965209,0.016780192,0.016595125,0.016410007,0.016224841,0.016037797,0.015850475,0.015663107,0.015475694,0.015288236,0.015114302,0.01494359,0.01477284,0.014602052,0.014431228,0.01429033,0.014160477,0.014030598,0.013900693,0.013770763,0.013640808,0.013510829,0.013380826,0.013250799,0.01312075,0.012990678,0.012860584,0.012730469,0.012600332,0.012470174,0.012339996,0.012209797,0.012079579,0.011949341,0.011819084,0.011688808,0.011558514,0.011428202,0.011297872,0.011167524,0.011051807,0.010956197,0.010860575,0.010764941,0.010669295,0.010573638,0.010477969,0.010382289,0.010286598,0.010190896,0.010095183,0.00999946,0.009903726,0.009807983,0.009712229,0.009616466,0.009520693,0.00942491,0.009329118,0.009233316,0.009137506,0.009041687,0.008945858,0.008850022,0.008754176,0.008661246,0.008580173,0.008499094,0.008418007,0.008336914,0.008255815,0.008174709,0.008093596,0.008012478,0.007931353,0.007850221,0.007769084,0.007687941,0.007606792,0.007525637,0.007444477,0.00736331,0.007282139,0.007200961,0.007119779,0.007038591,0.006957398,0.006876199,0.006794996,0.006713787,0.006633322,0.006577011,0.006520697,0.006464379,0.006408058,0.006351734,0.006295407,0.006239076,0.006182743,0.006126406,0.006070067,0.006013724,0.005957378,0.00590103,0.005844679,0.005788325,0.005731968,0.005675608,0.005619246,0.005562881,0.005506513,0.005450143,0.00539377,0.005337395,0.005281017,0.005224636,0.005182507,0.005141942,0.005101374,0.005060805,0.005020234,0.004979661,0.004939087,0.004898512,0.004857934,0.004817355,0.004776775,0.004736193,0.004695609,0.004655024,0.004614437,0.004573849,0.00453326,0.004492669,0.004452077,0.004411483,0.004370888,0.004330291,0.004289694,0.004249094,0.004208494,0.004177056,0.004147912,0.004118767,0.004089621,0.004060474,0.004031327,0.004002178,0.003973029,0.003943878,0.003914727,0.003885575,0.003856423,0.003827269,0.003798115,0.00376896,0.003739804,0.003710647,0.003681489,0.003652331,0.003623172,0.003594012,0.003564852,0.003535691,0.17736881,0.177168233,0.176574877,0.175623407,0.174298503,0.172607091,0.170634342,0.168345401,0.165834603,0.163081146,0.160139809,0.157068859,0.153919863,0.150608857,0.147186876,0.143639989,0.139937751,0.13608169,0.132369543,0.128692762,0.125257604,0.121906824,0.118590701,0.115374439,0.112273361,0.109288043,0.106425643,0.103739935,0.101152057,0.098630333,0.096067766,0.093136176,0.090112052,0.087181457,0.084749484,0.082384981,0.080089649,0.077865237,0.075731227,0.073676253,0.071687167,0.069763669,0.067910136,0.066154469,0.064611371,0.063124614,0.061608164,0.060053245,0.058488799,0.05691529,0.055333152,0.053742796,0.052427744,0.051188984,0.049944729,0.048695229,0.047440721,0.046258688,0.045540331,0.044819487,0.044096265,0.043370764,0.042643081,0.04192133,0.041202446,0.040481674,0.039759089,0.039034764,0.038329832,0.037713115,0.03709509,0.036475805,0.03585531,0.035233649,0.034685321,0.034152141,0.033618071,0.033083141,0.032547383,0.032080522,0.031681121,0.031281166,0.030880677,0.030479671,0.030089017,0.029734125,0.02937882,0.029023117,0.028667027,0.028310563,0.027992913,0.027675387,0.027357559,0.027039439,0.026721034,0.026511577,0.02633364,0.026155557,0.025977335,0.025798976,0.025614542,0.025425752,0.02523683,0.025047779,0.024858604,0.024675727,0.02450183,0.024327828,0.024153723,0.023979519,0.023808767,0.023648034,0.023487216,0.023326316,0.023165334,0.023013118,0.022925412,0.022837665,0.022749879,0.022662054,0.022574191,0.022314293,0.022053186,0.021791975,0.021530662,0.02126925,0.021029555,0.020792812,0.020555985,0.020319076,0.020082087,0.019861767,0.019646333,0.019430831,0.019215263,0.01899963,0.018786697,0.018575039,0.018363322,0.018151546,0.017939713,0.01773112,0.01752482,0.017318468,0.017112065,0.016905612,0.016708392,0.01652038,0.016332326,0.016144229,0.015956092,0.015788913,0.015650279,0.015511617,0.015372926,0.015234208,0.015095463,0.014956692,0.014817895,0.014679072,0.014540225,0.014401352,0.014262456,0.014123537,0.013984594,0.013845628,0.01370664,0.01356763,0.013428598,0.013289546,0.013150472,0.013011378,0.012872265,0.012733131,0.012593978,0.012454806,0.012319045,0.012211025,0.01210299,0.011994942,0.01188688,0.011778804,0.011670716,0.011562614,0.0114545,0.011346374,0.011238235,0.011130084,0.011021921,0.010913746,0.010805561,0.010697363,0.010589155,0.010480935,0.010372705,0.010264464,0.010156213,0.010047951,0.00993968,0.009831398,0.009723106,0.009614805,0.009522924,0.009433216,0.009343501,0.009253778,0.009164048,0.009074311,0.008984566,0.008894815,0.008805056,0.00871529,0.008625518,0.008535738,0.008445953,0.00835616,0.008266362,0.008176556,0.008086745,0.007996928,0.007907104,0.007817274,0.007727439,0.007637598,0.007547751,0.007457898,0.00736804,0.007297805,0.007235496,0.007173184,0.007110867,0.007048547,0.006986224,0.006923897,0.006861566,0.006799232,0.006736895,0.006674554,0.00661221,0.006549863,0.006487512,0.006425158,0.006362802,0.006300442,0.006238079,0.006175713,0.006113344,0.006050972,0.005988597,0.00592622,0.005863839,0.005801456,0.005749238,0.005704354,0.005659467,0.005614578,0.005569687,0.005524795,0.0054799,0.005435004,0.005390106,0.005345206,0.005300305,0.005255401,0.005210496,0.00516559,0.005120681,0.005075772,0.00503086,0.004985947,0.004941032,0.004896115,0.004851198,0.004806278,0.004761357,0.004716435,0.004671511,0.004633153,0.004601977,0.004570801,0.004539623,0.004508444,0.004477265,0.004446084,0.004414902,0.00438372,0.004352537,0.004321352,0.004290167,0.004258981,0.004227794,0.004196606,0.004165418,0.004134228,0.004103038,0.004071846,0.004040654,0.004009462,0.003978268,0.003947073,0.194213576,0.193994345,0.19333787,0.192247765,0.190770676,0.188922493,0.186687213,0.184186843,0.181371306,0.178323915,0.175086098,0.1716722,0.16808547,0.164284474,0.160278698,0.156121107,0.151910952,0.147733191,0.143627004,0.139519583,0.135800167,0.132114902,0.128475225,0.124994793,0.121604451,0.118347608,0.115263259,0.112332876,0.109401996,0.106400385,0.102986508,0.09966915,0.096439762,0.093346623,0.090668787,0.088141392,0.085687124,0.083324537,0.08105424,0.07885372,0.076723421,0.074669328,0.072737687,0.071020175,0.069370365,0.067771652,0.06617857,0.064526258,0.062863498,0.061190799,0.059508638,0.057817465,0.056382823,0.055203164,0.054018112,0.052827912,0.051632797,0.050432985,0.04959635,0.048816861,0.048034724,0.04725005,0.046462947,0.045678146,0.044900434,0.04412062,0.043338788,0.04255502,0.041769392,0.041089329,0.040420795,0.03975086,0.039079579,0.038407002,0.037784039,0.037207313,0.036629598,0.036050928,0.035471339,0.034920079,0.034487564,0.034054433,0.033620708,0.033186409,0.032751555,0.032362933,0.031978093,0.03159281,0.031207098,0.030820971,0.030491887,0.03019061,0.029889039,0.029587183,0.029285052,0.029039889,0.028863351,0.028686666,0.028509839,0.028332872,0.028148069,0.027941261,0.027734304,0.027527204,0.027319963,0.027114066,0.026923558,0.026732931,0.026542189,0.026351335,0.026160372,0.026004611,0.025851397,0.025698103,0.025544731,0.025391281,0.025291691,0.025206482,0.025121234,0.025035948,0.024950624,0.024731494,0.024443375,0.024155138,0.023866786,0.023578323,0.023304625,0.023043379,0.022782038,0.022520605,0.022259081,0.022005452,0.02176213,0.02151873,0.021275253,0.021031702,0.020790585,0.02055437,0.020318087,0.020081737,0.019845323,0.019611123,0.019383932,0.019156683,0.018929376,0.018702012,0.018477843,0.018270787,0.018063682,0.01785653,0.017649332,0.017446961,0.017300034,0.017153076,0.017006087,0.016859069,0.016712022,0.016564946,0.016417842,0.016270711,0.016123553,0.015976368,0.015829157,0.015681921,0.015534659,0.015387373,0.015240063,0.015092729,0.014945371,0.014797991,0.014650588,0.014503163,0.014355717,0.014208249,0.01406076,0.013913251,0.013765721,0.01363696,0.013514058,0.013391139,0.013268205,0.013145255,0.01302229,0.01289931,0.012776315,0.012653306,0.012530283,0.012407245,0.012284194,0.012161129,0.012038051,0.011914959,0.011791855,0.011668738,0.011545609,0.011422467,0.011299313,0.011176147,0.011052969,0.01092978,0.010806579,0.010683367,0.010572866,0.010473614,0.010374354,0.010275085,0.010175808,0.010076523,0.009977229,0.009877928,0.009778618,0.009679301,0.009579976,0.009480643,0.009381303,0.009281956,0.009182601,0.00908324,0.008983871,0.008884495,0.008785112,0.008685723,0.008586327,0.008486924,0.008387515,0.0082881,0.008188678,0.008100129,0.008031189,0.007962244,0.007893295,0.007824342,0.007755385,0.007686424,0.007617459,0.00754849,0.007479517,0.007410541,0.007341561,0.007272577,0.00720359,0.007134599,0.007065604,0.006996606,0.006927605,0.0068586,0.006789591,0.00672058,0.006651565,0.006582547,0.006513526,0.006444501,0.006380062,0.006331624,0.006283183,0.00623474,0.006186295,0.006137848,0.006089398,0.006040947,0.005992494,0.005944039,0.005895582,0.005847123,0.005798663,0.0057502,0.005701735,0.005653269,0.005604801,0.005556331,0.00550786,0.005459386,0.005410911,0.005362435,0.005313956,0.005265476,0.005216994,0.005170148,0.005135622,0.005101094,0.005066565,0.005032035,0.004997504,0.004962971,0.004928438,0.004893904,0.004859368,0.004824832,0.004790295,0.004755756,0.004721217,0.004686676,0.004652135,0.004617593,0.004583049,0.004548505,0.00451396,0.004479414,0.004444867,0.004410319,0.212883494,0.212643627,0.211925382,0.210732785,0.209072421,0.206990264,0.204541722,0.201715573,0.198598974,0.195218778,0.191599816,0.187760179,0.183351266,0.17893154,0.174258468,0.169723011,0.165038619,0.16050935,0.155956834,0.151468831,0.147326261,0.143265364,0.139312954,0.135495361,0.131786554,0.128230948,0.124904925,0.121484275,0.117920363,0.11399048,0.110273107,0.106711497,0.10327778,0.100008623,0.097050424,0.094348825,0.091736705,0.089232807,0.086801494,0.084444344,0.082168025,0.080039151,0.078127536,0.076297125,0.074522315,0.07280233,0.071132278,0.069377604,0.067611439,0.06583434,0.064046835,0.062249419,0.060585404,0.059480278,0.058369925,0.057254584,0.05613448,0.055009826,0.054038769,0.053196187,0.052350646,0.051502274,0.050651189,0.049797625,0.048956537,0.048113102,0.047267416,0.046419567,0.045569643,0.044791112,0.044068703,0.043344735,0.042619267,0.041892354,0.041182856,0.040558581,0.039933202,0.039306759,0.03867929,0.03805083,0.037558593,0.03708962,0.036619985,0.036149709,0.035678815,0.035238628,0.034821864,0.034404606,0.03398687,0.033568671,0.033200447,0.032940674,0.03268064,0.032420354,0.032159823,0.031905522,0.031712177,0.031518667,0.031324996,0.031131169,0.030937191,0.030713952,0.030487264,0.030260413,0.030033406,0.029806245,0.029592383,0.029383563,0.029174614,0.028965538,0.02875634,0.028591824,0.028462018,0.028332141,0.028202196,0.028072184,0.027957229,0.027863218,0.027769162,0.027675062,0.02758092,0.027422443,0.027104539,0.026786502,0.026468335,0.026150042,0.0258367,0.025548433,0.025260059,0.024971581,0.024683,0.024394938,0.024116843,0.023838656,0.02356038,0.023282016,0.023003565,0.022742657,0.022482466,0.022222201,0.021961862,0.02170145,0.021449862,0.021199611,0.020949294,0.020698914,0.020448472,0.020215451,0.019987377,0.01975925,0.01953107,0.019302839,0.019125845,0.018971043,0.01881621,0.018661344,0.018506446,0.018351518,0.01819656,0.018041571,0.017886554,0.017731508,0.017576434,0.017421333,0.017266205,0.01711105,0.016955868,0.016800662,0.01664543,0.016490174,0.016334893,0.016179588,0.016024261,0.01586891,0.015713536,0.015558141,0.015402723,0.015252908,0.01511254,0.014972154,0.014831749,0.014691326,0.014550885,0.014410427,0.014269951,0.014129459,0.01398895,0.013848424,0.013707883,0.013567326,0.013426753,0.013286164,0.013145561,0.013004943,0.01286431,0.012723662,0.012583001,0.012442325,0.012301636,0.012160934,0.012020218,0.011879488,0.011742979,0.011633171,0.011523352,0.011413524,0.011303687,0.01119384,0.011083984,0.010974118,0.010864244,0.010754361,0.01064447,0.010534569,0.010424661,0.010314744,0.010204819,0.010094885,0.009984944,0.009874995,0.009765038,0.009655074,0.009545102,0.009435122,0.009325136,0.009215142,0.009105141,0.008995132,0.008917488,0.008841206,0.00876492,0.00868863,0.008612334,0.008536035,0.00845973,0.008383422,0.008307109,0.008230792,0.00815447,0.008078145,0.008001815,0.007925482,0.007849144,0.007772802,0.007696457,0.007620107,0.007543754,0.007467398,0.007391037,0.007314673,0.007238305,0.007161934,0.007085559,0.007029234,0.006977234,0.006925231,0.006873226,0.006821219,0.00676921,0.006717199,0.006665185,0.006613169,0.006561151,0.006509131,0.006457109,0.006405085,0.006353059,0.006301031,0.006249001,0.006196969,0.006144935,0.006092899,0.006040862,0.005988822,0.005936781,0.005884738,0.005832693,0.005780646,0.005738299,0.005699828,0.005661355,0.005622881,0.005584405,0.005545929,0.005507451,0.005468972,0.005430492,0.005392011,0.005353528,0.005315045,0.00527656,0.005238074,0.005199587,0.005161099,0.00512261,0.00508412,0.005045629,0.005007137,0.004968644,0.004930149,0.233736774,0.233461041,0.232635432,0.231264669,0.229444835,0.227124332,0.224357639,0.221223609,0.217735564,0.213904548,0.209402116,0.204679768,0.199790644,0.19484547,0.189771118,0.18468106,0.17955244,0.174541349,0.169481733,0.164615178,0.159944906,0.155460967,0.151178411,0.146972739,0.142911256,0.13907909,0.135096039,0.130898852,0.126386773,0.122184922,0.118161788,0.114311996,0.110697508,0.107202957,0.1039321,0.101049458,0.098295036,0.095614127,0.093010001,0.09048944,0.088140084,0.086013173,0.083983519,0.082013868,0.080103782,0.078260811,0.076482813,0.074643945,0.072769288,0.070882566,0.068984361,0.067075218,0.065155655,0.064019963,0.063001615,0.061978518,0.060950886,0.059918922,0.058908114,0.057997737,0.057084045,0.05616718,0.055247277,0.054324463,0.053409418,0.052497495,0.051583051,0.050666186,0.049746997,0.048852634,0.048072244,0.04729011,0.0465063,0.045720875,0.044933897,0.044235854,0.043559045,0.042881045,0.042201897,0.041521642,0.040921783,0.040414108,0.039905693,0.039396561,0.038886738,0.038390505,0.037960191,0.03752935,0.037098001,0.036666158,0.036233838,0.035988415,0.035758657,0.035528669,0.035298458,0.03506803,0.034850565,0.034638657,0.034426566,0.0342143,0.034001863,0.03377168,0.033523409,0.033274955,0.033026324,0.03277752,0.032538046,0.032319044,0.032099903,0.031880625,0.031661214,0.031458455,0.031348476,0.031238436,0.031128337,0.031018179,0.030908004,0.030804289,0.030700523,0.030596708,0.030492845,0.030388935,0.030069729,0.029718839,0.029367802,0.029016621,0.028665299,0.028337273,0.028016935,0.027696477,0.027375903,0.027055215,0.026737954,0.026422592,0.026107126,0.025791558,0.02547589,0.025175827,0.024889327,0.024602742,0.024316075,0.024029325,0.023747484,0.023471918,0.023196278,0.022920567,0.022644785,0.022379866,0.022135011,0.021890098,0.021645127,0.021400099,0.021176985,0.021013097,0.020849174,0.020685216,0.020521224,0.020357199,0.020193141,0.02002905,0.019864928,0.019700774,0.019536591,0.019372377,0.019208134,0.019043862,0.018879562,0.018715234,0.018550878,0.018386496,0.018222088,0.018057653,0.017893194,0.017728709,0.0175642,0.017399667,0.01723511,0.017070529,0.016910071,0.016749861,0.016589631,0.016429378,0.016269106,0.016108812,0.015948499,0.015788165,0.015627813,0.015467441,0.01530705,0.015146641,0.014986213,0.014825768,0.014665304,0.014504824,0.014344326,0.014183812,0.01402328,0.013862733,0.013702169,0.01354159,0.013380995,0.013220385,0.01305976,0.012926434,0.012804938,0.01268343,0.012561912,0.012440383,0.012318844,0.012197295,0.012075735,0.011954165,0.011832586,0.011710996,0.011589398,0.011467789,0.011346172,0.011224545,0.011102909,0.010981265,0.010859611,0.010737949,0.010616279,0.0104946,0.010372912,0.010251217,0.010129513,0.010007801,0.009905915,0.009822614,0.009739306,0.009655994,0.009572677,0.009489355,0.009406027,0.009322695,0.009239358,0.009156016,0.00907267,0.008989318,0.008905963,0.008822602,0.008739238,0.008655868,0.008572495,0.008489117,0.008405735,0.008322349,0.008238959,0.008155564,0.008072166,0.007988763,0.007905357,0.007831931,0.007775079,0.007718225,0.007661368,0.007604508,0.007547646,0.007490782,0.007433915,0.007377046,0.007320174,0.007263301,0.007206424,0.007149546,0.007092665,0.007035782,0.006978897,0.00692201,0.00686512,0.006808228,0.006751335,0.006694439,0.006637541,0.006580641,0.006523739,0.006466836,0.006413651,0.006370786,0.00632792,0.006285052,0.006242182,0.006199312,0.006156439,0.006113566,0.006070691,0.006027815,0.005984937,0.005942059,0.005899179,0.005856297,0.005813415,0.005770531,0.005727646,0.005684759,0.005641872,0.005598983,0.005556093,0.005513202,0.256994592,0.256692142,0.255786574,0.25428319,0.252190651,0.249576903,0.246496352,0.242808088,0.238437147,0.233716721,0.228675711,0.223398816,0.217953762,0.212405007,0.206889672,0.201160315,0.195589665,0.189978947,0.18443938,0.179060412,0.173779746,0.168906537,0.164174684,0.159538205,0.155110639,0.15050607,0.145600883,0.14044191,0.135643117,0.131082346,0.12672071,0.122595523,0.118714914,0.114977521,0.111358414,0.108330966,0.105383529,0.102513232,0.099727049,0.097132292,0.094767375,0.092519043,0.090334712,0.088215122,0.086180626,0.084205376,0.082288878,0.080386691,0.078448465,0.076497214,0.074533564,0.072558106,0.070571395,0.069089174,0.068130391,0.067166945,0.066199048,0.065226899,0.064250687,0.063268162,0.062281325,0.061290921,0.0602971,0.059300007,0.05830427,0.057319412,0.056331723,0.055341315,0.054348297,0.053352772,0.052474853,0.051629456,0.050782176,0.049933084,0.049082248,0.048275919,0.04754366,0.046810065,0.046075182,0.045339055,0.044608917,0.044059482,0.043509216,0.042958147,0.042406302,0.041853707,0.041426061,0.041041761,0.040656989,0.040271763,0.039886095,0.039564862,0.039313341,0.039061559,0.038809524,0.038557244,0.038309916,0.038077897,0.037845672,0.037613248,0.037380631,0.037146067,0.036874198,0.036602121,0.036329844,0.036057371,0.035784707,0.035580752,0.035387769,0.035194661,0.035001433,0.034808088,0.034664803,0.034543426,0.034421981,0.03430047,0.034178895,0.034061198,0.033946732,0.03383221,0.033717633,0.033603003,0.033377136,0.032990034,0.032602766,0.032215333,0.031827741,0.031446263,0.031080492,0.03071458,0.030348532,0.029982349,0.029619283,0.029272075,0.028924749,0.028577306,0.02822975,0.027884139,0.027568692,0.027253148,0.02693751,0.02662178,0.02630596,0.026002119,0.025698614,0.025395027,0.025091361,0.024787616,0.02455042,0.024322552,0.02409463,0.023866653,0.023638623,0.0234486,0.023268462,0.023088285,0.022908069,0.022727815,0.022547524,0.022367197,0.022186834,0.022006436,0.021826003,0.021645536,0.021465037,0.021284504,0.02110394,0.020923344,0.020742717,0.02056206,0.020381374,0.020200658,0.020019913,0.01983914,0.019658339,0.019477511,0.019296657,0.019115776,0.01893407,0.018751378,0.01856866,0.018385918,0.018203151,0.01802036,0.017837545,0.017654707,0.017471847,0.017288964,0.017106059,0.016923132,0.016740183,0.016557214,0.016374224,0.016191214,0.016008183,0.015825133,0.015642063,0.015458975,0.015275867,0.015092741,0.014909596,0.014726434,0.014543254,0.014370146,0.014235734,0.014101309,0.013966872,0.013832423,0.013697962,0.013563489,0.013429005,0.013294509,0.013160002,0.013025484,0.012890955,0.012756416,0.012621866,0.012487305,0.012352735,0.012218154,0.012083563,0.011948962,0.011814352,0.011679732,0.011545103,0.011410464,0.011275816,0.011141159,0.011007424,0.010917681,0.010827933,0.010738179,0.010648419,0.010558654,0.010468883,0.010379107,0.010289326,0.010199539,0.010109747,0.01001995,0.009930148,0.00984034,0.009750528,0.009660711,0.009570889,0.009481063,0.009391232,0.009301396,0.009211555,0.00912171,0.009031861,0.008942007,0.008852149,0.008762287,0.008695672,0.008632328,0.00856898,0.00850563,0.008442276,0.00837892,0.008315561,0.0082522,0.008188835,0.008125468,0.008062099,0.007998726,0.007935351,0.007871974,0.007808594,0.007745212,0.007681827,0.007618439,0.00755505,0.007491658,0.007428263,0.007364867,0.007301467,0.007238066,0.007174663,0.007123189,0.007075427,0.007027664,0.0069799,0.006932134,0.006884366,0.006836597,0.006788826,0.006741054,0.00669328,0.006645504,0.006597728,0.006549949,0.00650217,0.006454389,0.006406606,0.006358822,0.006311037,0.00626325,0.006215462,0.006167673,0.283162828,0.282813774,0.281768725,0.280033959,0.277543884,0.274316943,0.270431978,0.266009743,0.261083569,0.255733771,0.250129646,0.244256269,0.238191235,0.232001253,0.225818627,0.219502517,0.21329346,0.206993477,0.20097493,0.194959762,0.189046994,0.183682055,0.178430175,0.17330416,0.168040684,0.162331462,0.156439038,0.150918022,0.14572836,0.140768862,0.136042964,0.131645292,0.127429213,0.123389507,0.119567246,0.116208235,0.113055185,0.109984117,0.107118044,0.104491403,0.102004761,0.099585246,0.09724967,0.094992789,0.092799385,0.090669455,0.08860255,0.086601199,0.084738896,0.082869213,0.080987063,0.079093041,0.077187705,0.075339196,0.074305538,0.073266614,0.072222662,0.071173908,0.070120565,0.069061629,0.067996439,0.06692722,0.065854145,0.064777375,0.063697064,0.062630162,0.061564402,0.060495578,0.059423814,0.058349224,0.05732403,0.056410088,0.055494022,0.054575913,0.053655838,0.052733869,0.051929688,0.051136202,0.050341264,0.049544925,0.048747235,0.04806231,0.047466919,0.046870623,0.046273453,0.045675438,0.045145877,0.0448198,0.044493308,0.044166414,0.043839131,0.043511471,0.043235482,0.042959899,0.042684029,0.042407879,0.04213146,0.041871814,0.041617591,0.041363141,0.041108471,0.040853587,0.040575486,0.040277589,0.039979464,0.039681117,0.039382553,0.039132857,0.038973384,0.038813805,0.038654123,0.03849434,0.038339212,0.038205347,0.038071406,0.037937388,0.037803297,0.037669358,0.037543104,0.037416785,0.037290404,0.037163962,0.03703746,0.036644083,0.036216888,0.035789507,0.035361942,0.0349342,0.034514504,0.034097237,0.033679808,0.033262221,0.032844479,0.032449507,0.032067136,0.031684633,0.031302,0.030919241,0.030555396,0.030207996,0.029860488,0.029512875,0.02916516,0.028823328,0.028489165,0.02815491,0.027820564,0.027486129,0.027196259,0.026991824,0.026787337,0.026582801,0.026378215,0.026175324,0.025977411,0.025779454,0.025581452,0.025383408,0.025185321,0.024987193,0.024789024,0.024590816,0.024392568,0.024194282,0.023995958,0.023797598,0.023599201,0.023400768,0.0232023,0.023003798,0.022805262,0.022606693,0.022408092,0.022209458,0.022010793,0.021812098,0.021613371,0.021414615,0.02121583,0.021008499,0.02080029,0.020592052,0.020383786,0.020175491,0.019967169,0.019758819,0.019550442,0.019342039,0.01913361,0.018925156,0.018716676,0.018508172,0.018299643,0.01809109,0.017882514,0.017673915,0.017465292,0.017256648,0.017047981,0.016839292,0.016630582,0.016421851,0.016213099,0.016004326,0.015834954,0.015686243,0.015537519,0.015388781,0.015240029,0.015091264,0.014942485,0.014793694,0.01464489,0.014496074,0.014347245,0.014198404,0.01404955,0.013900685,0.013751808,0.01360292,0.01345402,0.01330511,0.013156188,0.013007255,0.012858311,0.012709357,0.012560392,0.012411417,0.012262432,0.012137788,0.012041192,0.011944589,0.011847981,0.011751366,0.011654745,0.011558118,0.011461486,0.011364847,0.011268203,0.011171553,0.011074897,0.010978236,0.010881569,0.010784897,0.010688219,0.010591537,0.010494849,0.010398156,0.010301458,0.010204755,0.010108047,0.010011334,0.009914616,0.009817893,0.009729439,0.009658865,0.009588287,0.009517706,0.009447122,0.009376534,0.009305944,0.00923535,0.009164753,0.009094153,0.00902355,0.008952944,0.008882335,0.008811723,0.008741108,0.00867049,0.00859987,0.008529246,0.00845862,0.008387992,0.00831736,0.008246726,0.008176089,0.00810545,0.008034808,0.007967627,0.007914413,0.007861197,0.007807979,0.007754759,0.007701538,0.007648315,0.00759509,0.007541863,0.007488635,0.007435405,0.007382173,0.00732894,0.007275705,0.007222468,0.00716923,0.00711599,0.007062748,0.007009505,0.006956261,0.006903014,0.312051319,0.311616804,0.310317405,0.308180144,0.305206298,0.301413525,0.297040692,0.291963201,0.286461847,0.280482664,0.274132438,0.267510171,0.260702909,0.253777662,0.24679363,0.239915865,0.232875805,0.226009087,0.219235737,0.212490559,0.206065126,0.199933708,0.194043532,0.188090922,0.181460252,0.174698922,0.168332616,0.162401037,0.156737567,0.151333381,0.146308327,0.141514281,0.136924536,0.13258743,0.128491161,0.124727436,0.121357485,0.118194212,0.115284432,0.112541251,0.109866714,0.107298999,0.104799005,0.102365957,0.100000629,0.097706908,0.0955002,0.093356331,0.091423846,0.08965785,0.087879429,0.086089175,0.084287645,0.082475366,0.081086785,0.079967461,0.078842433,0.077711956,0.076576274,0.075435615,0.07428708,0.073133572,0.071975689,0.070813617,0.069647531,0.068484675,0.067335331,0.066182518,0.065026376,0.063867037,0.062704625,0.06168123,0.06069125,0.059698955,0.058704433,0.057707767,0.056763202,0.055905272,0.055045698,0.054184538,0.053321848,0.052463673,0.051892267,0.051319953,0.050746761,0.050172722,0.049597864,0.049197839,0.048869749,0.048541237,0.048212316,0.047883,0.047565665,0.047264106,0.046962218,0.046660011,0.046357496,0.046059444,0.045781198,0.045502693,0.045223938,0.044944938,0.044665702,0.044379065,0.04409202,0.043804752,0.043517268,0.043229572,0.043044178,0.042887204,0.042730124,0.042572941,0.042415658,0.042264214,0.042116511,0.041968722,0.041820847,0.041672891,0.041528811,0.0413895,0.041250117,0.041110664,0.040971143,0.040727043,0.040245544,0.039763825,0.039281892,0.038799751,0.038320483,0.037855587,0.037390503,0.036925236,0.036459791,0.035996588,0.035575679,0.03515462,0.034733413,0.034312061,0.033890568,0.033505897,0.033123338,0.032740658,0.03235786,0.031974948,0.031632893,0.031298506,0.030964025,0.030629452,0.030294788,0.030055262,0.029848106,0.029640898,0.029433638,0.029226328,0.029012366,0.028794923,0.028577431,0.02835989,0.028142301,0.027924665,0.027706982,0.027489254,0.027271482,0.027053665,0.026835806,0.026617905,0.026399963,0.02618198,0.025963957,0.025745895,0.025527795,0.025309656,0.025091481,0.02487327,0.024655022,0.02443674,0.024218423,0.024000072,0.023781688,0.023557678,0.023320588,0.023083464,0.022846306,0.022609115,0.022371891,0.022134635,0.021897347,0.021660028,0.021422679,0.021185299,0.02094789,0.020710452,0.020472985,0.02023549,0.019997967,0.019760417,0.01952284,0.019285236,0.019047607,0.018809951,0.018572271,0.018334565,0.018096835,0.017859081,0.017624302,0.017463181,0.017302044,0.017140893,0.016979726,0.016818544,0.016657347,0.016496136,0.016334911,0.016173671,0.016012418,0.015851151,0.01568987,0.015528576,0.015367269,0.015205949,0.015044617,0.014883271,0.014721914,0.014560544,0.014399162,0.014237768,0.014076363,0.013914946,0.013753518,0.013592078,0.013476254,0.013368992,0.013261723,0.013154446,0.013047162,0.012939872,0.012832575,0.012725271,0.01261796,0.012510643,0.01240332,0.01229599,0.012188653,0.012081311,0.011973963,0.011866608,0.011759247,0.011651881,0.011544509,0.011437131,0.011329747,0.011222358,0.011114963,0.011007563,0.010900158,0.01081257,0.010733938,0.010655303,0.010576665,0.010498022,0.010419376,0.010340727,0.010262073,0.010183417,0.010104756,0.010026093,0.009947425,0.009868755,0.009790081,0.009711404,0.009632724,0.00955404,0.009475353,0.009396664,0.009317971,0.009239275,0.009160576,0.009081874,0.009003169,0.008924461,0.008856762,0.008797472,0.00873818,0.008678886,0.008619589,0.008560291,0.00850099,0.008441688,0.008382383,0.008323077,0.008263768,0.008204458,0.008145145,0.008085831,0.008026515,0.007967198,0.007907878,0.007848557,0.007789233,0.007729908,0.344211345,0.343713838,0.342224524,0.339752929,0.336314594,0.332068338,0.327042654,0.321340966,0.315003951,0.308275735,0.301125404,0.293668453,0.286002551,0.278209836,0.27035896,0.262587531,0.25474396,0.247100758,0.239440856,0.232077341,0.224866052,0.217794573,0.211131843,0.203449828,0.195648712,0.188288973,0.181473413,0.174973267,0.168778101,0.163009156,0.157532355,0.152294277,0.147335118,0.142674731,0.138203821,0.133934875,0.130447852,0.127241491,0.124227319,0.121294519,0.118466231,0.115703772,0.113010243,0.110387613,0.107868398,0.105417188,0.103033267,0.100716679,0.098490255,0.096852353,0.095202218,0.09354043,0.09186754,0.090184065,0.088538168,0.087333491,0.086122311,0.084904919,0.083681594,0.082452595,0.081217188,0.079974718,0.078727267,0.077475046,0.076218255,0.074957083,0.073710606,0.072467038,0.071219679,0.069968682,0.068714189,0.067499245,0.066429969,0.065358058,0.064283613,0.063206728,0.062127492,0.061168341,0.060239289,0.059308434,0.05837584,0.057441568,0.056686728,0.056178598,0.055669649,0.055159909,0.054649405,0.054153531,0.053794725,0.053435435,0.053075675,0.052715462,0.05235481,0.052019253,0.051688986,0.051358355,0.051027369,0.05069604,0.050379847,0.05007509,0.049770045,0.04946472,0.049159123,0.048872636,0.048622503,0.048372166,0.048121632,0.047870905,0.047631454,0.047458409,0.047285241,0.047111955,0.046938553,0.046765039,0.046601837,0.046438889,0.046275843,0.046112701,0.045949468,0.045793954,0.045640255,0.045486476,0.045332618,0.045178683,0.044765727,0.044216939,0.043667897,0.043118607,0.042569075,0.042039167,0.041527305,0.041015232,0.040502955,0.039990476,0.039497405,0.039033958,0.038570341,0.038106558,0.037642613,0.037190702,0.0367696,0.03634836,0.035926985,0.035505479,0.035103858,0.034795105,0.034486261,0.034177328,0.033868308,0.033565492,0.033335364,0.033105176,0.032874928,0.032644621,0.032414257,0.032175564,0.031936721,0.031697823,0.03145887,0.031219862,0.030980802,0.03074169,0.030502528,0.030263315,0.030024053,0.029784744,0.029545387,0.029305983,0.029066535,0.028827041,0.028587504,0.028347923,0.028108301,0.027868637,0.027628931,0.027389186,0.027149402,0.026909578,0.026669717,0.026429818,0.026171376,0.025901541,0.025631666,0.025361752,0.025091799,0.024821808,0.02455178,0.024281714,0.024011613,0.023741476,0.023471305,0.023201098,0.022930858,0.022660585,0.022390278,0.02211994,0.021849569,0.021579167,0.021308735,0.021038272,0.020767779,0.020497257,0.020226706,0.019956126,0.019685519,0.019448718,0.01927464,0.019100546,0.018926434,0.018752305,0.01857816,0.018403999,0.018229821,0.018055628,0.017881419,0.017707195,0.017532956,0.017358702,0.017184433,0.017010149,0.016835852,0.01666154,0.016487214,0.016312875,0.016138522,0.015964156,0.015789777,0.015615385,0.01544098,0.015266563,0.015100178,0.014980686,0.014861185,0.014741677,0.01462216,0.014502636,0.014383104,0.014263564,0.014144016,0.014024461,0.013904898,0.013785328,0.013665751,0.013546166,0.013426575,0.013306976,0.013187371,0.013067759,0.01294814,0.012828514,0.012708882,0.012589244,0.012469599,0.012349947,0.01223029,0.012110626,0.012022631,0.011935026,0.011847416,0.011759802,0.011672184,0.011584562,0.011496935,0.011409305,0.01132167,0.011234031,0.011146389,0.011058742,0.010971092,0.010883438,0.01079578,0.010708119,0.010620454,0.010532785,0.010445112,0.010357437,0.010269757,0.010182074,0.010094388,0.010006698,0.009919005,0.00984995,0.009783891,0.00971783,0.009651767,0.009585701,0.009519633,0.009453562,0.00938749,0.009321415,0.009255337,0.009189258,0.009123176,0.009057092,0.008991006,0.008924918,0.008858828,0.008792735,0.008726641,0.008660545,0.284879072,0.284602282,0.283773126,0.282395221,0.280474509,0.278019131,0.275039258,0.271620626,0.267964705,0.26386552,0.259337795,0.25478677,0.249882192,0.244817934,0.239667877,0.233939465,0.22721492,0.220391459,0.21368012,0.207036239,0.200417427,0.194068568,0.187743486,0.181616763,0.175696313,0.169881289,0.164265487,0.158923231,0.153803636,0.148901032,0.144326139,0.140506538,0.137206221,0.134056223,0.131042052,0.128124597,0.125307379,0.12263191,0.120037354,0.117521927,0.115116834,0.112796802,0.11053992,0.10833226,0.106190026,0.104473402,0.103121015,0.101753031,0.100370118,0.098972915,0.097562031,0.096138047,0.094931892,0.093718854,0.09249617,0.091264239,0.090023444,0.088774146,0.087515695,0.086249156,0.084975096,0.083693814,0.082405595,0.081110711,0.079830345,0.078547673,0.07725919,0.075965116,0.07466566,0.073374776,0.072264342,0.071149833,0.070031397,0.068909177,0.067783306,0.066721033,0.06574988,0.064775916,0.063799239,0.06281994,0.061838109,0.061342372,0.060925389,0.06050744,0.060088556,0.059668768,0.059262646,0.058879588,0.058495784,0.058111257,0.057726031,0.057340126,0.056985576,0.056631821,0.056277501,0.055922632,0.055567232,0.055228496,0.054901309,0.054573675,0.054245607,0.053917117,0.053621791,0.053422082,0.053222138,0.053021965,0.05282157,0.052620959,0.052432714,0.052244738,0.052056576,0.051868231,0.05167971,0.051499207,0.051322067,0.051144772,0.050967328,0.050789738,0.050616858,0.050449559,0.050282134,0.050114584,0.049946913,0.049671144,0.049054059,0.048436559,0.047818655,0.047200355,0.046584189,0.046027043,0.045469566,0.044911764,0.044353646,0.043795217,0.043282648,0.042777488,0.042272066,0.041766387,0.041260457,0.040786685,0.040327346,0.039867793,0.039408032,0.038948066,0.038588387,0.038316743,0.038044985,0.037773117,0.037501139,0.037236259,0.036982636,0.036728918,0.036475106,0.036221202,0.035965648,0.035705418,0.035445099,0.035184694,0.034924204,0.03466363,0.034402974,0.034142237,0.033881422,0.03362053,0.033359561,0.033098518,0.032837401,0.032576213,0.032314953,0.032053625,0.031792228,0.031530765,0.031269235,0.031007641,0.030745984,0.030484264,0.030222483,0.029960641,0.029698741,0.029436782,0.029144441,0.028839263,0.02853402,0.028228714,0.027923346,0.027617917,0.027312427,0.027006878,0.02670127,0.026395605,0.026089884,0.025784107,0.025478275,0.02517239,0.024866451,0.024560461,0.024254418,0.023948326,0.023642183,0.023335992,0.023029752,0.022723465,0.022417131,0.022110751,0.021804325,0.021533392,0.021346292,0.021159166,0.020972013,0.020784835,0.020597631,0.020410402,0.020223149,0.020035871,0.01984857,0.019661244,0.019473896,0.019286525,0.019099131,0.018911715,0.018724276,0.018536817,0.018349335,0.018161833,0.01797431,0.017786767,0.017599203,0.017411619,0.017224016,0.017036393,0.016848751,0.016715339,0.01658268,0.016450008,0.016317323,0.016184625,0.016051915,0.015919193,0.015786458,0.015653712,0.015520953,0.015388183,0.015255402,0.015122608,0.014989804,0.014856989,0.014724162,0.014591325,0.014458477,0.014325618,0.01419275,0.01405987,0.013926981,0.013794081,0.013661172,0.013528253,0.013421671,0.013324357,0.013227036,0.013129709,0.013032374,0.012935033,0.012837685,0.01274033,0.012642969,0.012545602,0.012448229,0.012350849,0.012253463,0.012156071,0.012058673,0.01196127,0.01186386,0.011766444,0.011669023,0.011571596,0.011474164,0.011376726,0.011279282,0.011181833,0.011084379,0.010999905,0.010926491,0.010853073,0.010779651,0.010706225,0.010632795,0.010559362,0.010485925,0.010412485,0.010339041,0.010265593,0.010192142,0.010118687,0.010045229,0.009971767,0.009898302,0.009824834,0.009751362,0.009677887,0.307941385,0.307623273,0.306670385,0.305087027,0.302880269,0.300231206,0.29703292,0.293285652,0.289004463,0.284478209,0.279625143,0.274331507,0.269139091,0.263675367,0.258482193,0.253535605,0.247285024,0.239700043,0.23224034,0.224735537,0.217565914,0.210393556,0.20343612,0.196707885,0.190087489,0.183709769,0.177589566,0.171703905,0.166084899,0.161111168,0.157268794,0.154311531,0.151491508,0.14820835,0.144824996,0.141568792,0.13847235,0.135472008,0.132565553,0.129795637,0.127119684,0.124522842,0.122021734,0.119622437,0.117270561,0.114999087,0.113689292,0.112363347,0.11102194,0.109665726,0.108295331,0.106911354,0.105551686,0.104229569,0.102896241,0.101552164,0.100197781,0.098833512,0.097459492,0.096075261,0.094682282,0.093280903,0.091871456,0.090454255,0.089035297,0.087630614,0.086219172,0.084801225,0.08337702,0.081946789,0.080599131,0.079376776,0.078149854,0.076918531,0.075682963,0.074443303,0.073462318,0.07257616,0.071687389,0.070796093,0.069902358,0.069075559,0.068628359,0.068180062,0.067730706,0.067280323,0.066828949,0.066392512,0.065963473,0.065533581,0.065102863,0.064671345,0.064247417,0.063851776,0.063455468,0.063058514,0.062660932,0.062262741,0.061891496,0.061524893,0.061157778,0.060790166,0.060422071,0.060126394,0.059902594,0.059678525,0.059454195,0.05922961,0.059007676,0.058797213,0.058586531,0.058375635,0.058164531,0.057953224,0.057753862,0.057555302,0.057356567,0.05715766,0.056958586,0.056682983,0.056370766,0.056058305,0.055745607,0.055432678,0.054952209,0.054268456,0.053584232,0.052899549,0.052214418,0.051545723,0.050928338,0.050310577,0.049692448,0.049073959,0.048458523,0.047899002,0.047339178,0.046779057,0.046218644,0.045657948,0.045194275,0.044743263,0.044292037,0.043840601,0.043388959,0.043044606,0.042741431,0.042438127,0.042134697,0.041831141,0.041539341,0.041256266,0.040973081,0.04068979,0.040406394,0.040117102,0.039820179,0.039523153,0.039226026,0.038928799,0.038631474,0.038334053,0.038036539,0.037738932,0.037441235,0.037143448,0.036845575,0.036547615,0.036249572,0.035951446,0.035653238,0.035354951,0.035056586,0.034758144,0.034459626,0.034161034,0.033862369,0.033563632,0.033264825,0.032965948,0.032667003,0.032344876,0.03201915,0.031693354,0.031367488,0.031041554,0.030715553,0.030389486,0.030063354,0.029737159,0.0294109,0.029084579,0.028758198,0.028431757,0.028105256,0.027778698,0.027452083,0.027125411,0.026798684,0.026471902,0.026145067,0.025818179,0.025491239,0.025164248,0.024837206,0.024510114,0.024238987,0.024036627,0.023834238,0.02363182,0.023429373,0.023226898,0.023024396,0.022821866,0.022619309,0.022416725,0.022214116,0.02201148,0.021808819,0.021606133,0.021403423,0.021200688,0.020997929,0.020795146,0.02059234,0.020389511,0.020186659,0.019983784,0.019780888,0.019577969,0.019375029,0.019178662,0.01902755,0.018876423,0.01872528,0.018574123,0.018422951,0.018271764,0.018120563,0.017969347,0.017818118,0.017666875,0.017515617,0.017364347,0.017213063,0.017061766,0.016910456,0.016759133,0.016607798,0.016456449,0.016305089,0.016153716,0.016002332,0.015850935,0.015699527,0.015548107,0.015396675,0.015280642,0.015169774,0.015058898,0.014948014,0.014837122,0.014726222,0.014615315,0.0145044,0.014393478,0.014282548,0.01417161,0.014060666,0.013949714,0.013838755,0.013727789,0.013616816,0.013505836,0.01339485,0.013283857,0.013172857,0.013061851,0.012950838,0.012839818,0.012728793,0.012617761,0.012530733,0.012455744,0.01238075,0.012305752,0.012230751,0.012155745,0.012080736,0.012005723,0.011930706,0.011855685,0.01178066,0.011705632,0.0116306,0.011555564,0.011480525,0.011405482,0.011330436,0.011255387,0.334050915,0.333692089,0.33261731,0.330831634,0.328343358,0.32529121,0.321609593,0.317433149,0.312830629,0.307674043,0.302154101,0.296756378,0.290930314,0.285512779,0.280059918,0.274552723,0.2689375,0.261464507,0.252938576,0.24478424,0.236593994,0.228675143,0.220974884,0.213386544,0.206126246,0.199102697,0.192296064,0.185853293,0.180288569,0.175789277,0.172385108,0.169147926,0.166083238,0.163111856,0.160128361,0.156673334,0.153188784,0.149818476,0.146622981,0.143523888,0.140519099,0.137641826,0.134870466,0.132178882,0.129575271,0.127078926,0.125212784,0.123948434,0.122668209,0.121372775,0.120062769,0.1187388,0.117401449,0.115979778,0.114529035,0.113065734,0.11159039,0.110103492,0.108605507,0.107096087,0.105575733,0.104045555,0.102505942,0.100957262,0.099399866,0.097849025,0.096305016,0.094753401,0.093194466,0.091628483,0.090055715,0.088636188,0.087291752,0.085942169,0.084587623,0.083228292,0.081864343,0.081074679,0.080304238,0.079531467,0.078756444,0.077979246,0.077310648,0.076830974,0.076350094,0.075868046,0.07538487,0.0749006,0.074420431,0.073940136,0.073458861,0.072976636,0.072493491,0.072026369,0.07158335,0.071139565,0.070695036,0.070249785,0.069804158,0.069394157,0.068983549,0.068572352,0.068160582,0.067748257,0.067442253,0.067191544,0.066940525,0.066689204,0.06643759,0.066191306,0.0659555,0.065719441,0.065483135,0.06524659,0.065010697,0.064788398,0.064565892,0.064343182,0.064120275,0.063897175,0.063461317,0.062973306,0.062484904,0.061996121,0.061506965,0.06086472,0.060107267,0.059349278,0.058590766,0.057831743,0.057099432,0.056415437,0.055731012,0.055046168,0.054360914,0.053686014,0.053066074,0.052445786,0.05182516,0.051204202,0.05058292,0.050144961,0.04970999,0.049274805,0.048839413,0.048403816,0.048047756,0.047709446,0.047370987,0.047032382,0.046693634,0.046370063,0.046054161,0.045738135,0.045421985,0.045105716,0.044777881,0.044439336,0.044100669,0.043761883,0.04342298,0.043083962,0.042744832,0.042405591,0.042066242,0.041726787,0.041387227,0.041047565,0.040707802,0.04036794,0.040027982,0.039687928,0.03934778,0.03900754,0.03866721,0.038326791,0.037986285,0.037645693,0.037305017,0.036964258,0.036623418,0.036282497,0.035936122,0.035589281,0.035242362,0.034895367,0.034548297,0.034201154,0.033853938,0.033506651,0.033159294,0.032811868,0.032464374,0.032116813,0.031769186,0.031421495,0.03107374,0.030725923,0.030378044,0.030030104,0.029682104,0.029334045,0.028985928,0.028637755,0.028289525,0.027941239,0.027592899,0.027309438,0.027091074,0.026872677,0.026654248,0.026435787,0.026217295,0.025998772,0.025780218,0.025561635,0.025343022,0.02512438,0.024905709,0.02468701,0.024468283,0.024249529,0.024030748,0.023811939,0.023593105,0.023374244,0.023155358,0.022936446,0.02271751,0.022498548,0.022279563,0.022060554,0.021849314,0.021677176,0.021505019,0.021332845,0.021160653,0.020988444,0.020816217,0.020643974,0.020471714,0.020299437,0.020127145,0.019954836,0.019782511,0.01961017,0.019437815,0.019265443,0.019093057,0.018920656,0.01874824,0.01857581,0.018403365,0.018230906,0.018058434,0.017885947,0.017713447,0.017540933,0.017410118,0.017283814,0.017157501,0.017031179,0.016904847,0.016778506,0.016652156,0.016525798,0.01639943,0.016273053,0.016146668,0.016020275,0.015893873,0.015767462,0.015641043,0.015514617,0.015388182,0.015261739,0.015135288,0.01500883,0.014882363,0.01475589,0.014629408,0.01450292,0.014376423,0.014285097,0.014209727,0.014134352,0.014058973,0.01398359,0.013908203,0.013832812,0.013757417,0.013682018,0.013606615,0.013531208,0.013455797,0.013380383,0.013304964,0.013229542,0.013154117,0.013078687,0.363798787,0.36339248,0.362175574,0.360154063,0.357337775,0.353824389,0.349663949,0.344850315,0.339542277,0.334025586,0.328296893,0.322054554,0.316283099,0.310274007,0.304189711,0.297954005,0.291712259,0.285362746,0.276572593,0.267137287,0.258100946,0.249211282,0.240441887,0.232154662,0.224036989,0.216133751,0.208730549,0.202292631,0.196889343,0.192976295,0.189248009,0.185634231,0.182140028,0.178918038,0.175798308,0.172714519,0.16957542,0.165981523,0.162375615,0.158883218,0.155569309,0.152353757,0.149233833,0.146241525,0.143359063,0.140557787,0.137844521,0.136558024,0.135361065,0.134148675,0.132921494,0.131680131,0.130425172,0.129114972,0.127540762,0.125951807,0.124348703,0.122732023,0.121102312,0.119460091,0.117804554,0.116137126,0.1144586,0.11276941,0.111069969,0.10936067,0.107665368,0.105970213,0.104266446,0.102554389,0.10083435,0.099106621,0.097671119,0.096284474,0.094892351,0.093494944,0.09209244,0.090766046,0.090057092,0.089345837,0.08863236,0.087916736,0.087199038,0.086579112,0.086059549,0.085538635,0.085016415,0.08449293,0.083968222,0.083438616,0.082907697,0.082375659,0.081842536,0.081308361,0.080793048,0.080297237,0.07980054,0.079302981,0.078804587,0.078308752,0.077849766,0.077390078,0.076929708,0.076468675,0.076006998,0.075675239,0.075394497,0.075113397,0.074831947,0.074550157,0.074275202,0.074011095,0.073746696,0.073482011,0.073217048,0.072943135,0.072588441,0.072233403,0.071878031,0.071522331,0.071166314,0.070613227,0.070019781,0.069425843,0.068831425,0.068236539,0.067497942,0.066659067,0.065819578,0.064979489,0.064138814,0.063328596,0.062570985,0.061812883,0.061054299,0.060295246,0.059555888,0.058917403,0.058278549,0.057639334,0.056999765,0.05635985,0.055898293,0.055440273,0.054982022,0.054523543,0.054064842,0.053671802,0.053294353,0.052916733,0.052538944,0.052160991,0.051799563,0.05144709,0.051094472,0.050741712,0.050388814,0.0500207,0.049637274,0.049253706,0.048869999,0.048486154,0.048102175,0.047718064,0.047333824,0.046949456,0.046564964,0.046180349,0.045795614,0.045410761,0.045025792,0.04464071,0.044255515,0.043870211,0.043484799,0.043099281,0.042713659,0.042327934,0.041942109,0.041556185,0.041170164,0.040784048,0.040397837,0.040025502,0.039654813,0.039284039,0.038913181,0.038542239,0.038171217,0.037800114,0.037428932,0.037057673,0.036686338,0.036314927,0.035943443,0.035571886,0.035200257,0.034828558,0.034456789,0.034084952,0.033713048,0.033341078,0.032969042,0.032596943,0.03222478,0.031852554,0.031480268,0.031107921,0.030795904,0.030560864,0.030325787,0.030090674,0.029855526,0.029620343,0.029385125,0.029149874,0.028914589,0.028679271,0.028443921,0.028208539,0.027973126,0.027737681,0.027502206,0.0272667,0.027031165,0.0267956,0.026560006,0.026324384,0.026088733,0.025853055,0.025617349,0.025381617,0.025145857,0.02491378,0.024717702,0.024521603,0.024325484,0.024129343,0.023933182,0.023737,0.023540799,0.023344578,0.023148337,0.022952078,0.022755799,0.022559502,0.022363186,0.022166852,0.021970499,0.02177413,0.021577742,0.021381337,0.021184915,0.020988476,0.020792021,0.020595549,0.020399061,0.020202556,0.020006036,0.019852626,0.019708746,0.019564854,0.019420951,0.019277038,0.019133113,0.018989178,0.018845232,0.018701276,0.01855731,0.018413333,0.018269346,0.01812535,0.017981343,0.017837327,0.017693301,0.017549266,0.017405221,0.017261167,0.017117103,0.016973031,0.01682895,0.016684859,0.01654076,0.016396653,0.016294213,0.016220052,0.016145887,0.016071717,0.015997544,0.015923366,0.015849184,0.015774997,0.015700807,0.015626613,0.015552415,0.015478213,0.015404007,0.015329797,0.015255584,0.015181366,0.398050397,0.397564938,0.396140401,0.39384199,0.390640778,0.386552823,0.381790877,0.376266363,0.370204161,0.36379048,0.357774924,0.351586953,0.344968435,0.33819057,0.331259567,0.324226181,0.317126473,0.310066967,0.30291096,0.292713149,0.282341254,0.272275515,0.262618655,0.253147025,0.24399575,0.235394424,0.227690056,0.221032037,0.216539459,0.212208899,0.208017476,0.203994497,0.200146074,0.196466889,0.19297193,0.189643242,0.18640957,0.183216671,0.179931809,0.176229941,0.17248042,0.168855703,0.165403971,0.162052268,0.158798481,0.155683186,0.152672057,0.150250351,0.149151505,0.1480467,0.146927227,0.145793602,0.144646401,0.143486173,0.142095878,0.140376046,0.138639501,0.136886914,0.135118924,0.133336142,0.131539153,0.129726747,0.127901181,0.126062994,0.124212676,0.12235069,0.120477482,0.118624043,0.116765546,0.114897234,0.113019471,0.111132605,0.109236968,0.107941481,0.106680224,0.105413783,0.104142342,0.102866078,0.101671262,0.100880846,0.10008776,0.099292095,0.098493939,0.097693375,0.097008688,0.096429006,0.095847756,0.095264989,0.094680753,0.094095096,0.093527529,0.092959347,0.092389916,0.091819277,0.091247465,0.090683856,0.090129305,0.08957372,0.089017133,0.088459573,0.087903407,0.087389865,0.086875505,0.086360351,0.085844424,0.085327747,0.084946917,0.084632695,0.084318055,0.084003008,0.083687564,0.083378514,0.083082838,0.082786819,0.082490468,0.082193793,0.081890068,0.08131686,0.080743072,0.080168721,0.079593821,0.079018384,0.078382334,0.077725408,0.077067914,0.076409868,0.075751281,0.074958877,0.074030117,0.073100649,0.072170489,0.071239653,0.070332891,0.069493981,0.068654505,0.067814473,0.066973899,0.066144646,0.065521422,0.064897822,0.064273854,0.063649527,0.063024848,0.062498248,0.061987404,0.061476291,0.060964913,0.060453278,0.060003349,0.059582326,0.059161104,0.058739686,0.058318077,0.057911064,0.057517865,0.057124497,0.056730965,0.056337271,0.05592963,0.055497224,0.055064651,0.054631914,0.054199017,0.053765961,0.05333275,0.052899387,0.052465875,0.052032217,0.051598415,0.051164471,0.050730389,0.050296171,0.04986182,0.049427337,0.048992725,0.048557986,0.048123123,0.047688137,0.047253032,0.046817808,0.046382468,0.045947015,0.045511449,0.045075772,0.04466823,0.044271307,0.043874288,0.043477175,0.04307997,0.042682674,0.042285289,0.041887815,0.041490256,0.041092611,0.040694883,0.040297072,0.03989918,0.039501208,0.039103158,0.038705031,0.038306827,0.037908548,0.037510196,0.037111771,0.036713274,0.036314707,0.03591607,0.035517366,0.035118593,0.034757269,0.034504987,0.034252663,0.0340003,0.033747897,0.033495455,0.033242974,0.032990456,0.0327379,0.032485308,0.032232679,0.031980015,0.031727315,0.031474581,0.031221812,0.03096901,0.030716174,0.030463306,0.030210405,0.029957472,0.029704508,0.029451512,0.029198486,0.02894543,0.028692344,0.028439228,0.028212766,0.027989412,0.027766034,0.02754263,0.027319203,0.027095752,0.026872276,0.026648778,0.026425256,0.026201712,0.025978145,0.025754556,0.025530946,0.025307313,0.025083659,0.024859984,0.024636289,0.024412572,0.024188836,0.023965079,0.023741302,0.023517506,0.023293691,0.023069857,0.022846003,0.022665375,0.022512576,0.022359764,0.022206941,0.022054105,0.021901257,0.021748397,0.021595526,0.021442643,0.021289749,0.021136843,0.020983926,0.020830999,0.02067806,0.020525111,0.020372151,0.02021918,0.020066199,0.019913208,0.019760207,0.019607195,0.019454174,0.019301143,0.019148102,0.018995052,0.018868658,0.018786672,0.018704681,0.018622686,0.018540685,0.018458679,0.018376669,0.018294654,0.018212634,0.01813061,0.018048581,0.017966548,0.01788451,0.017802468,0.017720422 -0.004173551,0.004165508,0.004141589,0.004102411,0.004048956,0.003982512,0.003904593,0.003816856,0.003721024,0.00361881,0.003511855,0.003401685,0.003289679,0.003177046,0.003064827,0.002953889,0.002844941,0.002738544,0.002635127,0.002535005,0.002439053,0.002348753,0.002263735,0.002182819,0.002104815,0.002029756,0.001957651,0.001888475,0.001822182,0.001758708,0.001697974,0.001639894,0.001584372,0.001531311,0.001480608,0.001432162,0.001385872,0.001341639,0.001299364,0.001258954,0.001220317,0.001183365,0.001148015,0.001114184,0.001081797,0.001050781,0.001021066,0.00100021,0.000986661,0.000973479,0.000960652,0.000948166,0.000936011,0.000924173,0.000912643,0.00090141,0.000890462,0.00087979,0.000869385,0.000859237,0.000849338,0.000839678,0.00083025,0.000821046,0.000812059,0.00080328,0.000794704,0.000786323,0.000778132,0.000770123,0.000762292,0.000754632,0.000747137,0.000739804,0.000732627,0.0007256,0.00071872,0.000711981,0.00070538,0.000698912,0.000692574,0.000686361,0.000680271,0.000674298,0.000668441,0.000662695,0.000657058,0.000651526,0.000646097,0.000640768,0.000635535,0.000630397,0.000625351,0.000620394,0.000615524,0.000610738,0.000606035,0.000601413,0.000596868,0.0005924,0.000588007,0.000583685,0.000579435,0.000575253,0.000571139,0.00056709,0.000563105,0.000559183,0.000555322,0.00055152,0.000547777,0.00054409,0.000540459,0.000536882,0.000533358,0.000529886,0.000526465,0.000523093,0.000519769,0.000516493,0.000513264,0.00051008,0.00050694,0.000503843,0.000500789,0.000497777,0.000494806,0.000491874,0.000488982,0.000486128,0.000483311,0.000480531,0.000477787,0.000475079,0.000472405,0.000469765,0.000467159,0.000464585,0.000462043,0.000459532,0.000457053,0.000454603,0.000452184,0.000449793,0.000447431,0.000445097,0.000442791,0.000440511,0.000438258,0.000436032,0.000433831,0.000431655,0.000429503,0.000427376,0.000425273,0.000423194,0.000421137,0.000419103,0.000417092,0.000415102,0.000413134,0.000411187,0.000409261,0.000407355,0.000405469,0.000403604,0.000401758,0.000399931,0.000398122,0.000396333,0.000394561,0.000392808,0.000391072,0.000389354,0.000387653,0.000385969,0.000384302,0.000382651,0.000381016,0.000379397,0.000377793,0.000376205,0.000374632,0.000373075,0.000371532,0.000370003,0.000368489,0.000366989,0.000365502,0.00036403,0.000362571,0.000361125,0.000359693,0.000358273,0.000356866,0.000355472,0.00035409,0.000352721,0.000351363,0.000350018,0.000348684,0.000347362,0.000346051,0.000344751,0.000343463,0.000342186,0.000340919,0.000339663,0.000338418,0.000337183,0.000335958,0.000334744,0.00033354,0.000332345,0.00033116,0.000329985,0.00032882,0.000327663,0.000326517,0.000325379,0.00032425,0.00032313,0.000322019,0.000320917,0.000319824,0.000318739,0.000317662,0.000316594,0.000315534,0.000314482,0.000313438,0.000312402,0.000311373,0.000310353,0.00030934,0.000308335,0.000307337,0.000306346,0.000305363,0.000304387,0.000303419,0.000302457,0.000301502,0.000300554,0.000299613,0.000298679,0.000297751,0.00029683,0.000295916,0.000295008,0.000294106,0.00029321,0.000292321,0.000291438,0.000290561,0.000289691,0.000288826,0.000287967,0.000287114,0.000286266,0.000285425,0.000284589,0.000283758,0.000282934,0.000282114,0.0002813,0.000280492,0.000279689,0.000278891,0.000278098,0.000277311,0.000276528,0.000275751,0.000274978,0.000274211,0.000273449,0.000272691,0.000271938,0.00027119,0.000270447,0.000269708,0.000268974,0.000268245,0.00026752,0.000266799,0.000266083,0.000265372,0.000264664,0.000263961,0.000263263,0.000262568,0.000261878,0.000261192,0.00026051,0.000259832,0.000259158,0.000258489,0.000257823,0.000257161,0.000256503,0.00474283,0.004733728,0.004706657,0.004662315,0.004601811,0.004526597,0.004438383,0.004339042,0.00423052,0.004114753,0.003993598,0.003868779,0.003741857,0.003614203,0.003486993,0.003361214,0.003237668,0.003116992,0.002999676,0.002886079,0.002777398,0.002675133,0.002578811,0.002487503,0.002399495,0.002314723,0.002233209,0.002154937,0.002079867,0.002007936,0.001939063,0.001873158,0.001810119,0.00174984,0.001692213,0.001637125,0.001584466,0.001534127,0.001485999,0.001439978,0.001395962,0.001353853,0.001313557,0.001274985,0.001238049,0.001202668,0.001168765,0.001143532,0.001128127,0.001113137,0.001098547,0.001084344,0.001070514,0.001057044,0.001043923,0.001031137,0.001018675,0.001006525,0.000994678,0.000983123,0.000971849,0.000960848,0.00095011,0.000939625,0.000929386,0.000919385,0.000909613,0.000900064,0.000890729,0.000881602,0.000872676,0.000863945,0.000855403,0.000847044,0.000838861,0.00083085,0.000823006,0.000815322,0.000807796,0.00080042,0.000793192,0.000786107,0.000779161,0.000772349,0.000765668,0.000759115,0.000752684,0.000746374,0.000740181,0.000734101,0.000728131,0.000722269,0.000716511,0.000710855,0.000705298,0.000699838,0.000694471,0.000689196,0.00068401,0.000678911,0.000673896,0.000668964,0.000664113,0.00065934,0.000654644,0.000650022,0.000645474,0.000640997,0.000636589,0.000632249,0.000627975,0.000623766,0.000619621,0.000615537,0.000611513,0.000607549,0.000603643,0.000599793,0.000595998,0.000592257,0.000588569,0.000584933,0.000581347,0.000577811,0.000574323,0.000570883,0.000567489,0.000564141,0.000560838,0.000557578,0.000554361,0.000551185,0.000548051,0.000544958,0.000541903,0.000538888,0.00053591,0.00053297,0.000530066,0.000527198,0.000524365,0.000521567,0.000518802,0.000516071,0.000513372,0.000510706,0.000508071,0.000505466,0.000502892,0.000500348,0.000497833,0.000495346,0.000492888,0.000490457,0.000488054,0.000485678,0.000483327,0.000481003,0.000478704,0.00047643,0.000474181,0.000471956,0.000469754,0.000467576,0.000465421,0.000463289,0.000461178,0.00045909,0.000457023,0.000454978,0.000452953,0.000450949,0.000448965,0.000447001,0.000445056,0.000443131,0.000441225,0.000439337,0.000437468,0.000435617,0.000433784,0.000431969,0.00043017,0.000428389,0.000426625,0.000424877,0.000423146,0.000421431,0.000419732,0.000418048,0.00041638,0.000414727,0.000413089,0.000411465,0.000409857,0.000408262,0.000406682,0.000405116,0.000403564,0.000402025,0.0004005,0.000398988,0.000397488,0.000396002,0.000394529,0.000393068,0.000391619,0.000390183,0.000388759,0.000387346,0.000385946,0.000384557,0.000383179,0.000381813,0.000380458,0.000379113,0.00037778,0.000376458,0.000375146,0.000373844,0.000372553,0.000371272,0.000370001,0.000368741,0.00036749,0.000366248,0.000365017,0.000363794,0.000362582,0.000361378,0.000360184,0.000358998,0.000357822,0.000356654,0.000355496,0.000354345,0.000353204,0.00035207,0.000350946,0.000349829,0.00034872,0.00034762,0.000346528,0.000345443,0.000344366,0.000343297,0.000342235,0.000341182,0.000340135,0.000339096,0.000338064,0.000337039,0.000336022,0.000335011,0.000334008,0.000333011,0.000332021,0.000331038,0.000330062,0.000329092,0.000328129,0.000327172,0.000326222,0.000325278,0.00032434,0.000323409,0.000322483,0.000321564,0.000320651,0.000319744,0.000318842,0.000317947,0.000317057,0.000316173,0.000315294,0.000314421,0.000313554,0.000312692,0.000311836,0.000310985,0.00031014,0.000309299,0.000308464,0.000307634,0.00030681,0.00030599,0.000305175,0.000304366,0.000303561,0.000302761,0.000301966,0.000301176,0.00030039,0.00029961,0.000298834,0.000298062,0.000297295,0.000296533,0.000295775,0.000295022,0.005376008,0.005365734,0.005335181,0.005285132,0.005216835,0.005131927,0.005032331,0.004920157,0.004797598,0.004666835,0.004529962,0.004388925,0.004245485,0.00410119,0.003957369,0.003815139,0.003675406,0.003538895,0.003406158,0.003277605,0.003154798,0.003039223,0.002930323,0.002827426,0.002728491,0.002633084,0.002541245,0.002452974,0.002368238,0.002286977,0.002209112,0.00213455,0.002063184,0.001994902,0.001929586,0.001867117,0.001807375,0.001750238,0.001695589,0.001643312,0.001593295,0.00154543,0.001499612,0.00145574,0.001413719,0.001373457,0.001334866,0.001304361,0.001286888,0.001269882,0.001253328,0.001237211,0.001221514,0.001206224,0.001191327,0.001176809,0.001162657,0.001148858,0.001135402,0.001122275,0.001109466,0.001096966,0.001084763,0.001072848,0.001061211,0.001049843,0.001038735,0.001027879,0.001017266,0.001006888,0.000996739,0.00098681,0.000977096,0.000967588,0.000958282,0.00094917,0.000940246,0.000931506,0.000922943,0.000914552,0.000906329,0.000898267,0.000890363,0.000882612,0.000875009,0.00086755,0.000860232,0.00085305,0.000846001,0.000839081,0.000832286,0.000825612,0.000819058,0.000812619,0.000806293,0.000800076,0.000793966,0.00078796,0.000782055,0.000776249,0.000770539,0.000764923,0.000759399,0.000753963,0.000748615,0.000743352,0.000738171,0.000733072,0.000728052,0.000723109,0.000718241,0.000713447,0.000708724,0.000704073,0.000699489,0.000694973,0.000690523,0.000686137,0.000681813,0.000677552,0.00067335,0.000669207,0.000665121,0.000661092,0.000657118,0.000653198,0.000649331,0.000645516,0.000641752,0.000638037,0.000634371,0.000630752,0.000627181,0.000623655,0.000620174,0.000616737,0.000613343,0.000609992,0.000606682,0.000603413,0.000600185,0.000596995,0.000593844,0.00059073,0.000587654,0.000584614,0.00058161,0.000578641,0.000575707,0.000572806,0.000569939,0.000567104,0.000564302,0.000561531,0.000558791,0.000556081,0.000553401,0.000550751,0.00054813,0.000545537,0.000542972,0.000540435,0.000537925,0.000535441,0.000532984,0.000530552,0.000528145,0.000525764,0.000523407,0.000521074,0.000518765,0.000516479,0.000514217,0.000511977,0.000509759,0.000507563,0.000505389,0.000503236,0.000501104,0.000498993,0.000496902,0.000494831,0.00049278,0.000490749,0.000488736,0.000486743,0.000484768,0.000482811,0.000480873,0.000478952,0.000477049,0.000475163,0.000473294,0.000471443,0.000469607,0.000467788,0.000465986,0.000464199,0.000462428,0.000460672,0.000458932,0.000457206,0.000455496,0.0004538,0.000452119,0.000450452,0.000448799,0.00044716,0.000445535,0.000443923,0.000442325,0.00044074,0.000439168,0.000437609,0.000436062,0.000434528,0.000433007,0.000431498,0.00043,0.000428515,0.000427042,0.00042558,0.000424129,0.00042269,0.000421263,0.000419846,0.00041844,0.000417045,0.000415661,0.000414287,0.000412924,0.000411571,0.000410228,0.000408895,0.000407573,0.00040626,0.000404957,0.000403663,0.000402379,0.000401104,0.000399839,0.000398583,0.000397336,0.000396097,0.000394868,0.000393648,0.000392436,0.000391232,0.000390038,0.000388851,0.000387673,0.000386503,0.000385342,0.000384188,0.000383042,0.000381904,0.000380774,0.000379652,0.000378537,0.00037743,0.00037633,0.000375238,0.000374153,0.000373075,0.000372004,0.00037094,0.000369884,0.000368834,0.000367791,0.000366755,0.000365726,0.000364703,0.000363687,0.000362677,0.000361674,0.000360677,0.000359687,0.000358703,0.000357725,0.000356753,0.000355787,0.000354828,0.000353874,0.000352926,0.000351984,0.000351048,0.000350117,0.000349193,0.000348274,0.00034736,0.000346452,0.000345549,0.000344652,0.000343761,0.000342874,0.000341993,0.000341117,0.000340246,0.000339381,0.00033852,0.006078762,0.006067199,0.006032807,0.005976467,0.00589958,0.005803982,0.005691833,0.005565503,0.005427455,0.005280141,0.005125915,0.004966967,0.004805277,0.004642592,0.004480409,0.004319985,0.004162347,0.004008311,0.003858505,0.003713393,0.003575099,0.0034449,0.003322165,0.003206324,0.003095499,0.002988487,0.002885355,0.00278612,0.002690763,0.002599232,0.002511451,0.002427326,0.002346749,0.002269603,0.002195762,0.002125099,0.002057484,0.001992787,0.001930878,0.001871631,0.001814924,0.001760636,0.001708652,0.00165886,0.001611155,0.001565435,0.001521601,0.001484638,0.001464865,0.001445616,0.001426876,0.001408625,0.001390849,0.00137353,0.001356654,0.001340205,0.001324168,0.00130853,0.001293277,0.001278397,0.001263876,0.001249702,0.001235865,0.001222352,0.001209154,0.001196259,0.001183659,0.001171342,0.001159301,0.001147527,0.00113601,0.001124743,0.001113718,0.001102927,0.001092364,0.001082021,0.001071891,0.001061969,0.001052247,0.001042721,0.001033383,0.001024229,0.001015254,0.001006452,0.000997818,0.000989347,0.000981036,0.000972879,0.000964872,0.000957011,0.000949292,0.000941712,0.000934266,0.000926951,0.000919763,0.0009127,0.000905758,0.000898934,0.000892224,0.000885627,0.000879138,0.000872756,0.000866478,0.000860301,0.000854223,0.000848242,0.000842354,0.000836558,0.000830852,0.000825233,0.0008197,0.000814251,0.000808883,0.000803595,0.000798385,0.000793251,0.000788192,0.000783205,0.00077829,0.000773444,0.000768667,0.000763957,0.000759312,0.00075473,0.000750212,0.000745755,0.000741357,0.000737019,0.000732738,0.000728514,0.000724344,0.000720229,0.000716167,0.000712158,0.000708199,0.00070429,0.00070043,0.000696619,0.000692854,0.000689136,0.000685464,0.000681835,0.000678251,0.00067471,0.00067121,0.000667752,0.000664335,0.000660958,0.000657619,0.00065432,0.000651058,0.000647833,0.000644644,0.000641492,0.000638374,0.000635292,0.000632243,0.000629228,0.000626245,0.000623295,0.000620377,0.00061749,0.000614633,0.000611807,0.000609011,0.000606244,0.000603505,0.000600795,0.000598113,0.000595458,0.00059283,0.000590229,0.000587654,0.000585105,0.000582581,0.000580082,0.000577608,0.000575157,0.000572731,0.000570328,0.000567948,0.000565591,0.000563257,0.000560944,0.000558654,0.000556384,0.000554136,0.000551909,0.000549702,0.000547516,0.00054535,0.000543203,0.000541076,0.000538967,0.000536878,0.000534807,0.000532755,0.000530721,0.000528705,0.000526706,0.000524724,0.00052276,0.000520813,0.000518882,0.000516968,0.00051507,0.000513188,0.000511322,0.000509471,0.000507636,0.000505816,0.000504011,0.000502221,0.000500446,0.000498685,0.000496938,0.000495206,0.000493487,0.000491782,0.000490091,0.000488413,0.000486748,0.000485096,0.000483457,0.000481831,0.000480218,0.000478617,0.000477028,0.000475452,0.000473887,0.000472334,0.000470793,0.000469264,0.000467746,0.000466239,0.000464744,0.00046326,0.000461786,0.000460324,0.000458872,0.00045743,0.000455999,0.000454579,0.000453168,0.000451768,0.000450378,0.000448997,0.000447627,0.000446266,0.000444914,0.000443572,0.000442239,0.000440916,0.000439602,0.000438296,0.000437,0.000435712,0.000434434,0.000433164,0.000431902,0.000430649,0.000429404,0.000428168,0.00042694,0.00042572,0.000424508,0.000423304,0.000422108,0.00042092,0.000419739,0.000418566,0.000417401,0.000416243,0.000415093,0.00041395,0.000412814,0.000411686,0.000410564,0.00040945,0.000408342,0.000407242,0.000406148,0.000405061,0.000403981,0.000402908,0.000401841,0.00040078,0.000399727,0.000398679,0.000397638,0.000396603,0.000395574,0.000394552,0.000393536,0.000392525,0.000391521,0.000390523,0.00038953,0.000388544,0.000387563,0.006857098,0.006844116,0.006805505,0.00674225,0.006655918,0.006548564,0.006422608,0.006280704,0.006125609,0.005960074,0.005786737,0.005608057,0.005426256,0.005243296,0.00506086,0.004880365,0.004702965,0.004529582,0.004360924,0.004197565,0.004042308,0.00389606,0.003758127,0.003627884,0.003504062,0.003384457,0.003269032,0.003157832,0.003050855,0.002948064,0.002849389,0.00275474,0.002664009,0.002577075,0.002493808,0.002414074,0.002337733,0.002264646,0.002194673,0.002127679,0.002063527,0.002002087,0.001943233,0.001886841,0.001832794,0.00178098,0.00173129,0.001686425,0.001664097,0.001642356,0.001621185,0.001600564,0.001580474,0.001560899,0.00154182,0.001523221,0.001505086,0.001487399,0.001470146,0.001453312,0.001436882,0.001420844,0.001405184,0.00138989,0.001374951,0.001360354,0.001346088,0.001332143,0.001318508,0.001305175,0.001292132,0.001279371,0.001266883,0.00125466,0.001242694,0.001230976,0.001219499,0.001208257,0.001197242,0.001186446,0.001175865,0.001165491,0.001155319,0.001145343,0.001135556,0.001125955,0.001116534,0.001107287,0.00109821,0.001089298,0.001080547,0.001071952,0.00106351,0.001055216,0.001047066,0.001039057,0.001031184,0.001023445,0.001015837,0.001008354,0.001000996,0.000993757,0.000986637,0.000979631,0.000972737,0.000965951,0.000959273,0.000952698,0.000946225,0.000939851,0.000933574,0.000927392,0.000921302,0.000915302,0.000909391,0.000903566,0.000897826,0.000892168,0.000886591,0.000881093,0.000875672,0.000870326,0.000865055,0.000859856,0.000854729,0.00084967,0.00084468,0.000839756,0.000834898,0.000830103,0.000825371,0.000820701,0.00081609,0.000811539,0.000807046,0.000802609,0.000798228,0.000793901,0.000789628,0.000785407,0.000781238,0.000777119,0.00077305,0.00076903,0.000765057,0.000761131,0.000757252,0.000753417,0.000749627,0.000745881,0.000742177,0.000738516,0.000734895,0.000731316,0.000727776,0.000724276,0.000720814,0.00071739,0.000714003,0.000710653,0.000707339,0.000704061,0.000700817,0.000697608,0.000694432,0.00069129,0.00068818,0.000685102,0.000682056,0.000679041,0.000676056,0.000673102,0.000670177,0.000667282,0.000664415,0.000661577,0.000658766,0.000655983,0.000653227,0.000650497,0.000647794,0.000645117,0.000642465,0.000639838,0.000637236,0.000634658,0.000632104,0.000629574,0.000627068,0.000624584,0.000622123,0.000619684,0.000617267,0.000614872,0.000612498,0.000610146,0.000607814,0.000605503,0.000603212,0.000600941,0.000598689,0.000596458,0.000594245,0.000592051,0.000589876,0.00058772,0.000585581,0.000583461,0.000581358,0.000579273,0.000577205,0.000575154,0.00057312,0.000571102,0.000569101,0.000567116,0.000565147,0.000563194,0.000561256,0.000559334,0.000557427,0.000555535,0.000553658,0.000551795,0.000549947,0.000548113,0.000546294,0.000544488,0.000542696,0.000540918,0.000539153,0.000537401,0.000535663,0.000533938,0.000532225,0.000530525,0.000528838,0.000527163,0.000525501,0.00052385,0.000522212,0.000520585,0.00051897,0.000517367,0.000515775,0.000514195,0.000512625,0.000511067,0.00050952,0.000507983,0.000506458,0.000504943,0.000503438,0.000501944,0.00050046,0.000498986,0.000497522,0.000496068,0.000494624,0.00049319,0.000491765,0.00049035,0.000488945,0.000487548,0.000486161,0.000484783,0.000483414,0.000482054,0.000480703,0.000479361,0.000478027,0.000476702,0.000475385,0.000474077,0.000472777,0.000471486,0.000470202,0.000468927,0.00046766,0.0004664,0.000465149,0.000463905,0.000462669,0.000461441,0.00046022,0.000459007,0.000457801,0.000456602,0.000455411,0.000454227,0.00045305,0.00045188,0.000450717,0.000449561,0.000448412,0.00044727,0.000446134,0.000445006,0.000443883,0.000442768,0.00559209,0.005585146,0.005564434,0.005530301,0.005483314,0.005424228,0.005353963,0.005273562,0.005184158,0.005086935,0.004983094,0.004873819,0.004760254,0.004643481,0.004524503,0.004404233,0.004283491,0.004163,0.004043388,0.003925188,0.003808851,0.003694747,0.003583172,0.003474359,0.003368567,0.003267336,0.003170941,0.003079073,0.002991447,0.002907727,0.002826643,0.002747836,0.002671337,0.002597156,0.002525289,0.002455718,0.002388415,0.002323341,0.002260453,0.002199701,0.002141029,0.00208438,0.002029694,0.001976909,0.001925964,0.001894644,0.001871373,0.001848615,0.001826359,0.001804596,0.001783314,0.001762504,0.001742154,0.001722252,0.001702789,0.001683753,0.001665133,0.001646919,0.001629099,0.001611663,0.001594602,0.001577905,0.001561562,0.001545563,0.001529899,0.001514562,0.001499541,0.001484829,0.001470416,0.001456295,0.001442458,0.001428897,0.001415604,0.001402572,0.001389794,0.001377263,0.001364972,0.001352916,0.001341087,0.001329479,0.001318088,0.001306906,0.001295929,0.001285152,0.001274568,0.001264173,0.001253962,0.001243931,0.001234075,0.001224389,0.001214869,0.001205512,0.001196312,0.001187266,0.001178371,0.001169623,0.001161017,0.001152551,0.001144222,0.001136026,0.001127959,0.00112002,0.001112204,0.00110451,0.001096933,0.001089473,0.001082125,0.001074888,0.001067759,0.001060735,0.001053814,0.001046995,0.001040274,0.001033649,0.00102712,0.001020682,0.001014336,0.001008077,0.001001906,0.000995819,0.000989816,0.000983894,0.000978052,0.000972288,0.000966601,0.000960989,0.00095545,0.000949983,0.000944587,0.00093926,0.000934002,0.000928809,0.000923683,0.00091862,0.00091362,0.000908682,0.000903804,0.000898986,0.000894226,0.000889523,0.000884877,0.000880285,0.000875748,0.000871264,0.000866832,0.000862452,0.000858121,0.000853841,0.000849609,0.000845425,0.000841287,0.000837196,0.000833151,0.000829149,0.000825192,0.000821278,0.000817406,0.000813576,0.000809787,0.000806038,0.000802329,0.000798659,0.000795028,0.000791434,0.000787877,0.000784357,0.000780873,0.000777424,0.00077401,0.000770631,0.000767285,0.000763973,0.000760693,0.000757446,0.000754231,0.000751046,0.000747893,0.00074477,0.000741677,0.000738613,0.000735579,0.000732573,0.000729595,0.000726646,0.000723723,0.000720828,0.000717959,0.000715116,0.0007123,0.000709508,0.000706742,0.000704001,0.000701284,0.000698592,0.000695923,0.000693278,0.000690655,0.000688056,0.000685479,0.000682925,0.000680392,0.000677881,0.000675391,0.000672922,0.000670475,0.000668047,0.00066564,0.000663253,0.000660886,0.000658538,0.000656209,0.0006539,0.000651609,0.000649337,0.000647083,0.000644847,0.000642628,0.000640428,0.000638245,0.000636079,0.00063393,0.000631797,0.000629682,0.000627583,0.000625499,0.000623432,0.000621381,0.000619345,0.000617325,0.00061532,0.000613329,0.000611354,0.000609394,0.000607448,0.000605516,0.000603599,0.000601695,0.000599806,0.00059793,0.000596068,0.000594219,0.000592384,0.000590561,0.000588752,0.000586955,0.000585171,0.0005834,0.000581641,0.000579894,0.00057816,0.000576437,0.000574727,0.000573028,0.000571341,0.000569665,0.000568001,0.000566347,0.000564706,0.000563075,0.000561455,0.000559845,0.000558247,0.000556659,0.000555081,0.000553514,0.000551957,0.000550411,0.000548874,0.000547347,0.00054583,0.000544323,0.000542826,0.000541338,0.000539859,0.00053839,0.00053693,0.00053548,0.000534038,0.000532606,0.000531182,0.000529767,0.000528361,0.000526964,0.000525575,0.000524194,0.000522822,0.000521459,0.000520103,0.000518756,0.000517417,0.000516086,0.000514763,0.000513448,0.00051214,0.00051084,0.000509548,0.000508264,0.000506987,0.000505717,0.000504455,0.006301083,0.006293275,0.006269984,0.006231601,0.006178763,0.006112318,0.006033301,0.005942883,0.005842338,0.005732997,0.005616208,0.005493304,0.005365571,0.005234224,0.005100391,0.004965099,0.00482927,0.004693716,0.004559144,0.004426154,0.004295253,0.004166857,0.004041299,0.003918843,0.003799897,0.003686264,0.003578026,0.003474842,0.003376394,0.003282391,0.003191975,0.003104023,0.003018559,0.002935605,0.002855167,0.002777235,0.002701784,0.002628779,0.002558179,0.002489933,0.002423985,0.002360275,0.002298741,0.002239318,0.00218194,0.002143214,0.002117096,0.002091545,0.00206655,0.002042101,0.002018187,0.001994795,0.001971914,0.001949533,0.00192764,0.001906222,0.001885268,0.001864767,0.001844706,0.001825074,0.001805861,0.001787054,0.001768643,0.001750618,0.001732968,0.001715683,0.001698753,0.001682168,0.00166592,0.001649999,0.001634396,0.001619102,0.00160411,0.00158941,0.001574996,0.001560859,0.001546992,0.001533388,0.001520041,0.001506942,0.001494085,0.001481465,0.001469075,0.001456909,0.001444962,0.001433227,0.001421699,0.001410373,0.001399244,0.001388307,0.001377557,0.001366989,0.0013566,0.001346383,0.001336337,0.001326455,0.001316735,0.001307172,0.001297763,0.001288503,0.00127939,0.00127042,0.00126159,0.001252897,0.001244336,0.001235906,0.001227604,0.001219425,0.001211369,0.001203432,0.001195611,0.001187904,0.001180308,0.001172821,0.001165441,0.001158165,0.001150991,0.001143917,0.001136941,0.001130061,0.001123275,0.00111658,0.001109976,0.00110346,0.00109703,0.001090685,0.001084423,0.001078242,0.001072142,0.001066119,0.001060173,0.001054302,0.001048505,0.00104278,0.001037127,0.001031543,0.001026027,0.001020578,0.001015195,0.001009877,0.001004622,0.00099943,0.000994298,0.000989227,0.000984215,0.00097926,0.000974363,0.000969521,0.000964734,0.000960002,0.000955322,0.000950694,0.000946118,0.000941592,0.000937116,0.000932688,0.000928308,0.000923976,0.000919689,0.000915449,0.000911253,0.000907101,0.000902992,0.000898926,0.000894902,0.00089092,0.000886978,0.000883076,0.000879214,0.00087539,0.000871605,0.000867857,0.000864146,0.000860472,0.000856833,0.00085323,0.000849662,0.000846128,0.000842628,0.000839162,0.000835728,0.000832326,0.000828957,0.000825618,0.000822311,0.000819034,0.000815788,0.000812571,0.000809383,0.000806224,0.000803094,0.000799991,0.000796917,0.000793869,0.000790848,0.000787854,0.000784886,0.000781944,0.000779028,0.000776136,0.000773269,0.000770427,0.000767609,0.000764815,0.000762044,0.000759296,0.000756572,0.000753869,0.00075119,0.000748532,0.000745896,0.000743281,0.000740688,0.000738115,0.000735564,0.000733032,0.000730521,0.00072803,0.000725558,0.000723106,0.000720673,0.000718259,0.000715864,0.000713487,0.000711128,0.000708788,0.000706465,0.00070416,0.000701873,0.000699602,0.000697349,0.000695112,0.000692893,0.000690689,0.000688502,0.000686331,0.000684176,0.000682036,0.000679912,0.000677803,0.00067571,0.000673631,0.000671567,0.000669518,0.000667484,0.000665464,0.000663458,0.000661466,0.000659488,0.000657523,0.000655573,0.000653635,0.000651711,0.0006498,0.000647903,0.000646018,0.000644145,0.000642286,0.000640439,0.000638604,0.000636781,0.000634971,0.000633172,0.000631385,0.00062961,0.000627847,0.000626095,0.000624354,0.000622625,0.000620907,0.0006192,0.000617503,0.000615818,0.000614143,0.000612479,0.000610825,0.000609182,0.000607549,0.000605926,0.000604313,0.000602711,0.000601118,0.000599535,0.000597961,0.000596397,0.000594843,0.000593298,0.000591763,0.000590237,0.00058872,0.000587212,0.000585713,0.000584222,0.000582741,0.000581269,0.000579805,0.000578349,0.000576903,0.000575464,0.000574034,0.007086544,0.00707778,0.007051637,0.007008556,0.006949249,0.00687467,0.006785976,0.006684484,0.006571622,0.006448883,0.006317779,0.006179807,0.006036408,0.005888946,0.005738687,0.005586783,0.00543427,0.005282058,0.00513094,0.004981592,0.004834582,0.004690377,0.004549352,0.004411802,0.004278425,0.0041512,0.004029972,0.003914365,0.003804029,0.003698643,0.003597795,0.003499957,0.003404776,0.003312291,0.00322252,0.003135464,0.003051105,0.002969415,0.002890354,0.002813874,0.002739921,0.002668433,0.002599346,0.002532593,0.002468103,0.002420183,0.002390935,0.00236231,0.002334299,0.002306889,0.00228007,0.00225383,0.002228156,0.002203036,0.002178456,0.002154405,0.00213087,0.002107837,0.002085295,0.002063231,0.002041633,0.002020489,0.001999786,0.001979514,0.00195966,0.001940214,0.001921165,0.001902503,0.001884216,0.001866296,0.001848731,0.001831513,0.001814632,0.00179808,0.001781847,0.001765925,0.001750306,0.001734982,0.001719945,0.001705187,0.001690702,0.001676481,0.001662519,0.001648808,0.001635343,0.001622116,0.001609122,0.001596355,0.00158381,0.001571479,0.00155936,0.001547445,0.00153573,0.00152421,0.001512881,0.001501738,0.001490776,0.001479991,0.001469379,0.001458935,0.001448657,0.001438539,0.001428578,0.001418771,0.001409115,0.001399605,0.001390238,0.001381011,0.001371922,0.001362966,0.001354142,0.001345445,0.001336875,0.001328426,0.001320098,0.001311888,0.001303792,0.001295809,0.001287936,0.001280172,0.001272512,0.001264957,0.001257503,0.001250148,0.001242891,0.001235729,0.001228661,0.001221684,0.001214797,0.001207999,0.001201287,0.001194659,0.001188115,0.001181652,0.001175269,0.001168965,0.001162738,0.001156586,0.001150509,0.001144504,0.001138571,0.001132708,0.001126914,0.001121188,0.001115529,0.001109934,0.001104404,0.001098937,0.001093532,0.001088187,0.001082903,0.001077677,0.001072509,0.001067398,0.001062342,0.001057342,0.001052396,0.001047502,0.001042661,0.001037872,0.001033133,0.001028443,0.001023803,0.001019211,0.001014666,0.001010167,0.001005715,0.001001308,0.000996945,0.000992626,0.00098835,0.000984116,0.000979924,0.000975774,0.000971664,0.000967594,0.000963563,0.000959571,0.000955617,0.0009517,0.000947821,0.000943978,0.000940171,0.0009364,0.000932663,0.000928961,0.000925293,0.000921659,0.000918057,0.000914488,0.000910951,0.000907446,0.000903972,0.000900528,0.000897115,0.000893732,0.000890378,0.000887054,0.000883758,0.000880491,0.000877251,0.00087404,0.000870855,0.000867697,0.000864566,0.000861461,0.000858382,0.000855329,0.0008523,0.000849297,0.000846318,0.000843363,0.000840432,0.000837525,0.000834641,0.00083178,0.000828942,0.000826126,0.000823333,0.000820561,0.000817811,0.000815083,0.000812376,0.000809689,0.000807023,0.000804378,0.000801753,0.000799147,0.000796562,0.000793995,0.000791448,0.00078892,0.000786411,0.00078392,0.000781448,0.000778994,0.000776557,0.000774139,0.000771738,0.000769354,0.000766987,0.000764637,0.000762304,0.000759988,0.000757688,0.000755404,0.000753136,0.000750884,0.000748648,0.000746427,0.000744222,0.000742032,0.000739856,0.000737696,0.00073555,0.000733419,0.000731302,0.0007292,0.000727111,0.000725037,0.000722976,0.000720929,0.000718895,0.000716875,0.000714868,0.000712874,0.000710893,0.000708925,0.000706969,0.000705027,0.000703096,0.000701178,0.000699272,0.000697378,0.000695496,0.000693626,0.000691768,0.000689922,0.000688086,0.000686263,0.00068445,0.000682649,0.000680858,0.000679079,0.000677311,0.000675553,0.000673806,0.000672069,0.000670343,0.000668627,0.000666922,0.000665227,0.000663541,0.000661866,0.000660201,0.000658545,0.000656899,0.000655263,0.000653636,0.000652018,0.007955387,0.007945568,0.007916279,0.007868013,0.007801566,0.007718008,0.007618635,0.00750492,0.007378462,0.007240934,0.00709403,0.006939424,0.006778731,0.006613479,0.006445085,0.006274841,0.006103906,0.0059333,0.005763913,0.005596501,0.0054317,0.005270035,0.005111927,0.004957706,0.004808557,0.004666421,0.004530932,0.004401677,0.004278273,0.004160366,0.004047629,0.003939135,0.00383349,0.003730712,0.003630836,0.003533875,0.003439826,0.003348667,0.003260366,0.003174878,0.003092152,0.003012126,0.002934738,0.002859916,0.00278759,0.002728367,0.002695686,0.002663689,0.002632364,0.0026017,0.002571687,0.002542311,0.00251356,0.002485421,0.00245788,0.002430923,0.002404538,0.00237871,0.002353427,0.002328674,0.002304439,0.002280709,0.00225747,0.00223471,0.002212416,0.002190577,0.002169181,0.002148215,0.002127669,0.002107532,0.002087792,0.002068439,0.002049463,0.002030855,0.002012603,0.0019947,0.001977135,0.001959901,0.001942987,0.001926387,0.001910092,0.001894093,0.001878384,0.001862957,0.001847804,0.00183292,0.001818296,0.001803927,0.001789806,0.001775927,0.001762284,0.00174887,0.001735682,0.001722713,0.001709957,0.00169741,0.001685066,0.001672922,0.001660971,0.00164921,0.001637634,0.001626239,0.001615021,0.001603975,0.001593098,0.001582385,0.001571834,0.001561441,0.001551201,0.001541112,0.001531171,0.001521373,0.001511717,0.001502198,0.001492815,0.001483563,0.001474441,0.001465446,0.001456575,0.001447825,0.001439194,0.00143068,0.001422279,0.001413991,0.001405812,0.00139774,0.001389774,0.001381911,0.001374149,0.001366486,0.00135892,0.00135145,0.001344074,0.001336789,0.001329594,0.001322488,0.001315468,0.001308534,0.001301682,0.001294913,0.001288225,0.001281615,0.001275083,0.001268628,0.001262247,0.00125594,0.001249704,0.00124354,0.001237446,0.00123142,0.001225462,0.00121957,0.001213743,0.001207979,0.001202279,0.001196641,0.001191063,0.001185545,0.001180086,0.001174685,0.001169341,0.001164053,0.00115882,0.001153641,0.001148515,0.001143443,0.001138421,0.001133451,0.00112853,0.001123659,0.001118837,0.001114062,0.001109334,0.001104653,0.001100017,0.001095427,0.00109088,0.001086378,0.001081918,0.0010775,0.001073125,0.00106879,0.001064496,0.001060242,0.001056027,0.001051851,0.001047714,0.001043614,0.001039551,0.001035525,0.001031535,0.00102758,0.001023661,0.001019777,0.001015926,0.00101211,0.001008326,0.001004576,0.001000858,0.000997171,0.000993517,0.000989893,0.0009863,0.000982738,0.000979205,0.000975702,0.000972228,0.000968782,0.000965365,0.000961977,0.000958615,0.000955281,0.000951974,0.000948694,0.00094544,0.000942212,0.000939009,0.000935832,0.00093268,0.000929553,0.00092645,0.000923371,0.000920316,0.000917284,0.000914276,0.000911291,0.000908328,0.000905388,0.00090247,0.000899574,0.0008967,0.000893847,0.000891015,0.000888204,0.000885414,0.000882644,0.000879894,0.000877165,0.000874455,0.000871765,0.000869093,0.000866442,0.000863808,0.000861194,0.000858598,0.00085602,0.000853461,0.000850919,0.000848395,0.000845888,0.000843399,0.000840927,0.000838471,0.000836033,0.000833611,0.000831205,0.000828816,0.000826442,0.000824085,0.000821743,0.000819417,0.000817106,0.000814811,0.00081253,0.000810264,0.000808013,0.000805777,0.000803555,0.000801348,0.000799155,0.000796975,0.00079481,0.000792658,0.000790521,0.000788396,0.000786285,0.000784187,0.000782102,0.00078003,0.000777971,0.000775925,0.000773891,0.00077187,0.000769861,0.000767864,0.00076588,0.000763907,0.000761947,0.000759998,0.00075806,0.000756135,0.000754221,0.000752318,0.000750426,0.000748546,0.000746676,0.000744818,0.00074297,0.000741133,0.000739307,0.008914996,0.008904015,0.008871259,0.00881728,0.008742967,0.008649516,0.008538375,0.008411191,0.008269753,0.008115928,0.007951611,0.007778674,0.007598921,0.007414062,0.00722568,0.00703522,0.006843978,0.006653096,0.006463567,0.006276238,0.006091822,0.005910905,0.005733958,0.005561351,0.005395053,0.005236591,0.005085475,0.004941255,0.00480351,0.004671855,0.00454593,0.004425369,0.004308536,0.004194714,0.004083962,0.003976312,0.003871776,0.003770346,0.003671998,0.003576696,0.003484393,0.003395031,0.003308549,0.003224877,0.003143942,0.003070876,0.003034443,0.002998755,0.002963801,0.002929571,0.002896053,0.002863234,0.002831101,0.002799642,0.002768841,0.002738686,0.00270916,0.002680251,0.002651944,0.002624225,0.002597079,0.002570492,0.002544451,0.002518941,0.00249395,0.002469464,0.00244547,0.002421955,0.002398908,0.002376315,0.002354166,0.002332448,0.002311151,0.002290263,0.002269773,0.002249673,0.00222995,0.002210596,0.002191601,0.002172956,0.002154652,0.00213668,0.002119031,0.002101698,0.002084673,0.002067947,0.002051513,0.002035364,0.002019493,0.002003893,0.001988557,0.001973479,0.001958653,0.001944072,0.001929731,0.001915624,0.001901745,0.001888088,0.00187465,0.001861424,0.001848406,0.00183559,0.001822973,0.001810549,0.001798315,0.001786266,0.001774397,0.001762705,0.001751187,0.001739837,0.001728653,0.00171763,0.001706766,0.001696057,0.001685499,0.00167509,0.001664826,0.001654705,0.001644722,0.001634876,0.001625164,0.001615582,0.001606129,0.001596802,0.001587597,0.001578513,0.001569547,0.001560698,0.001551962,0.001543337,0.001534822,0.001526414,0.001518111,0.001509911,0.001501813,0.001493814,0.001485912,0.001478106,0.001470394,0.001462774,0.001455244,0.001447803,0.00144045,0.001433182,0.001425999,0.001418898,0.001411878,0.001404938,0.001398077,0.001391293,0.001384584,0.00137795,0.001371389,0.0013649,0.001358482,0.001352133,0.001345853,0.00133964,0.001333493,0.001327411,0.001321394,0.001315439,0.001309546,0.001303714,0.001297942,0.00129223,0.001286575,0.001280978,0.001275437,0.001269951,0.00126452,0.001259143,0.001253818,0.001248546,0.001243326,0.001238155,0.001233035,0.001227964,0.001222941,0.001217965,0.001213037,0.001208155,0.001203319,0.001198527,0.00119378,0.001189076,0.001184416,0.001179798,0.001175221,0.001170686,0.001166192,0.001161738,0.001157323,0.001152947,0.00114861,0.001144311,0.001140049,0.001135824,0.001131635,0.001127483,0.001123366,0.001119284,0.001115236,0.001111223,0.001107243,0.001103296,0.001099383,0.001095501,0.001091652,0.001087834,0.001084047,0.001080291,0.001076565,0.001072869,0.001069203,0.001065566,0.001061958,0.001058378,0.001054827,0.001051303,0.001047807,0.001044338,0.001040896,0.00103748,0.00103409,0.001030727,0.001027389,0.001024076,0.001020788,0.001017524,0.001014286,0.001011071,0.00100788,0.001004712,0.001001568,0.000998447,0.000995349,0.000992273,0.000989219,0.000986187,0.000983177,0.000980189,0.000977221,0.000974275,0.00097135,0.000968445,0.00096556,0.000962696,0.000959851,0.000957026,0.000954221,0.000951435,0.000948667,0.000945919,0.000943189,0.000940478,0.000937785,0.00093511,0.000932453,0.000929814,0.000927192,0.000924588,0.000922,0.00091943,0.000916876,0.000914339,0.000911819,0.000909314,0.000906826,0.000904354,0.000901898,0.000899457,0.000897032,0.000894622,0.000892227,0.000889847,0.000887483,0.000885133,0.000882797,0.000880476,0.000878169,0.000875877,0.000873598,0.000871334,0.000869083,0.000866846,0.000864622,0.000862412,0.000860215,0.000858031,0.00085586,0.000853702,0.000851557,0.000849425,0.000847305,0.000845197,0.000843102,0.000841019,0.000838948,0.000836889,0.009973192,0.009960933,0.009924365,0.009864102,0.009781138,0.009676807,0.009552723,0.009410726,0.009252809,0.009081059,0.008897587,0.008704484,0.008503763,0.008297332,0.008086957,0.007874253,0.007660664,0.007447467,0.00723577,0.00702652,0.006820512,0.0066184,0.006420713,0.006227958,0.006043022,0.005866713,0.005698501,0.005537894,0.005384436,0.005237706,0.005097311,0.004962887,0.004833842,0.004708267,0.004585897,0.00446679,0.004350979,0.004238472,0.004129262,0.004023323,0.003920616,0.003821091,0.003724689,0.003631346,0.003540988,0.00345354,0.003410552,0.003370839,0.003331923,0.003293794,0.003256441,0.003219852,0.003184013,0.003148912,0.003114533,0.003080863,0.003047886,0.003015587,0.002983952,0.002952965,0.002922611,0.002892876,0.002863743,0.0028352,0.00280723,0.00277982,0.002752957,0.002726625,0.002700812,0.002675504,0.00265069,0.002626355,0.002602487,0.002579076,0.002556108,0.002533574,0.002511461,0.002489758,0.002468457,0.002447545,0.002427014,0.002406853,0.002387053,0.002367606,0.002348503,0.002329734,0.002311291,0.002293167,0.002275354,0.002257844,0.002240629,0.002223702,0.002207058,0.002190687,0.002174585,0.002158745,0.00214316,0.002127825,0.002112734,0.00209788,0.002083259,0.002068866,0.002054694,0.002040739,0.002026997,0.002013461,0.002000129,0.001986994,0.001974054,0.001961303,0.001948737,0.001936353,0.001924146,0.001912114,0.001900251,0.001888554,0.001877021,0.001865647,0.001854429,0.001843364,0.00183245,0.001821682,0.001811057,0.001800574,0.001790229,0.00178002,0.001769943,0.001759996,0.001750176,0.001740482,0.001730911,0.00172146,0.001712127,0.001702909,0.001693805,0.001684813,0.00167593,0.001667155,0.001658485,0.001649919,0.001641454,0.001633089,0.001624821,0.001616651,0.001608574,0.001600591,0.001592698,0.001584896,0.001577181,0.001569553,0.00156201,0.001554551,0.001547173,0.001539877,0.00153266,0.001525521,0.001518459,0.001511473,0.001504561,0.001497722,0.001490955,0.001484258,0.001477632,0.001471074,0.001464583,0.001458158,0.001451799,0.001445504,0.001439273,0.001433104,0.001426996,0.001420948,0.00141496,0.001409031,0.001403159,0.001397344,0.001391585,0.001385881,0.001380232,0.001374636,0.001369093,0.001363602,0.001358162,0.001352772,0.001347433,0.001342142,0.0013369,0.001331705,0.001326558,0.001321457,0.001316401,0.001311391,0.001306425,0.001301503,0.001296624,0.001291788,0.001286993,0.001282241,0.001277529,0.001272858,0.001268226,0.001263634,0.001259081,0.001254566,0.001250089,0.001245649,0.001241246,0.001236879,0.001232548,0.001228253,0.001223993,0.001219767,0.001215575,0.001211417,0.001207293,0.001203201,0.001199141,0.001195114,0.001191118,0.001187154,0.00118322,0.001179317,0.001175444,0.001171601,0.001167787,0.001164002,0.001160246,0.001156519,0.001152819,0.001149147,0.001145503,0.001141886,0.001138295,0.001134731,0.001131193,0.001127681,0.001124194,0.001120733,0.001117297,0.001113885,0.001110498,0.001107135,0.001103796,0.001100481,0.001097189,0.00109392,0.001090674,0.00108745,0.001084249,0.00108107,0.001077913,0.001074777,0.001071663,0.00106857,0.001065498,0.001062447,0.001059416,0.001056406,0.001053416,0.001050445,0.001047494,0.001044563,0.001041651,0.001038758,0.001035884,0.001033029,0.001030192,0.001027374,0.001024573,0.001021791,0.001019026,0.001016279,0.001013549,0.001010837,0.001008141,0.001005463,0.001002801,0.001000156,0.000997527,0.000994915,0.000992318,0.000989738,0.000987173,0.000984624,0.000982091,0.000979572,0.000977069,0.000974581,0.000972108,0.00096965,0.000967206,0.000964777,0.000962362,0.000959962,0.000957575,0.000955203,0.000952844,0.000950499,0.000948168,0.00094585,0.011138189,0.011124528,0.011083775,0.011016617,0.010924158,0.010807885,0.010669596,0.010511338,0.010335334,0.010143904,0.009939405,0.00972416,0.009500416,0.009270296,0.00903577,0.008798635,0.008560501,0.008322792,0.008086742,0.007853407,0.007623673,0.007398272,0.007177791,0.006963198,0.006757983,0.006562236,0.006375383,0.006196892,0.006026271,0.00586306,0.005706834,0.005557195,0.005413776,0.005275673,0.005141,0.00500971,0.004881863,0.004757493,0.00463661,0.004519206,0.004405256,0.004294721,0.004187549,0.00408368,0.003983047,0.003885577,0.003827708,0.003783622,0.003740395,0.003698019,0.003656484,0.003615777,0.003575887,0.003536801,0.003498503,0.003460981,0.003424217,0.003388197,0.003352906,0.003318327,0.003284444,0.003251243,0.003218706,0.003186819,0.003155567,0.003124933,0.003094902,0.003065461,0.003036594,0.003008288,0.002980527,0.002953299,0.00292659,0.002900388,0.002874679,0.00284945,0.002824691,0.002800389,0.002776532,0.00275311,0.002730111,0.002707525,0.002685342,0.002663551,0.002642144,0.00262111,0.00260044,0.002580125,0.002560157,0.002540528,0.002521228,0.00250225,0.002483587,0.002465231,0.002447175,0.00242941,0.002411932,0.002394733,0.002377806,0.002361145,0.002344745,0.002328598,0.0023127,0.002297045,0.002281627,0.002266441,0.002251482,0.002236745,0.002222224,0.002207916,0.002193816,0.002179919,0.00216622,0.002152716,0.002139403,0.002126276,0.002113331,0.002100566,0.002087975,0.002075556,0.002063304,0.002051217,0.002039292,0.002027524,0.002015911,0.00200445,0.001993138,0.001981972,0.001970948,0.001960065,0.001949319,0.001938708,0.00192823,0.001917881,0.00190766,0.001897564,0.00188759,0.001877737,0.001868002,0.001858384,0.001848879,0.001839486,0.001830203,0.001821028,0.001811959,0.001802994,0.001794131,0.001785369,0.001776706,0.001768139,0.001759669,0.001751292,0.001743007,0.001734813,0.001726708,0.00171869,0.001710759,0.001702913,0.00169515,0.001687469,0.001679869,0.001672348,0.001664905,0.001657539,0.001650249,0.001643033,0.001635891,0.001628821,0.001621821,0.001614892,0.001608031,0.001601238,0.001594512,0.001587852,0.001581257,0.001574725,0.001568256,0.001561849,0.001555503,0.001549217,0.00154299,0.001536822,0.001530711,0.001524657,0.001518659,0.001512715,0.001506826,0.001500991,0.001495208,0.001489477,0.001483798,0.001478169,0.00147259,0.001467061,0.00146158,0.001456146,0.00145076,0.001445421,0.001440127,0.001434879,0.001429676,0.001424516,0.001419401,0.001414328,0.001409298,0.00140431,0.001399363,0.001394457,0.001389591,0.001384765,0.001379978,0.00137523,0.00137052,0.001365848,0.001361214,0.001356616,0.001352055,0.001347529,0.00134304,0.001338585,0.001334165,0.001329779,0.001325427,0.001321109,0.001316823,0.001312571,0.00130835,0.001304161,0.001300004,0.001295878,0.001291783,0.001287718,0.001283683,0.001279678,0.001275702,0.001271756,0.001267838,0.001263948,0.001260086,0.001256253,0.001252446,0.001248667,0.001244915,0.001241189,0.001237489,0.001233815,0.001230167,0.001226544,0.001222947,0.001219374,0.001215826,0.001212302,0.001208802,0.001205326,0.001201874,0.001198444,0.001195038,0.001191655,0.001188294,0.001184956,0.001181639,0.001178345,0.001175072,0.00117182,0.00116859,0.001165381,0.001162192,0.001159024,0.001155877,0.001152749,0.001149642,0.001146554,0.001143486,0.001140437,0.001137407,0.001134397,0.001131405,0.001128432,0.001125477,0.00112254,0.001119622,0.001116721,0.001113838,0.001110973,0.001108125,0.001105294,0.001102481,0.001099684,0.001096904,0.001094141,0.001091394,0.001088663,0.001085948,0.00108325,0.001080567,0.0010779,0.001075249,0.001072613,0.001069992,0.001067386,0.012418522,0.012403326,0.012357992,0.012283283,0.01218043,0.01205108,0.011897236,0.011721172,0.011525358,0.011312375,0.011084841,0.010845342,0.010596374,0.010340298,0.010079306,0.009815395,0.009550358,0.009285777,0.009023028,0.008763284,0.008507533,0.008256587,0.008011104,0.007773088,0.007545922,0.007329105,0.00712202,0.006924098,0.006734805,0.006553647,0.006380165,0.006213927,0.006054535,0.005901615,0.005753993,0.005609871,0.005469289,0.005332313,0.005198979,0.005069302,0.004943275,0.004820877,0.004702068,0.004586799,0.00447501,0.004366633,0.004290008,0.004241188,0.004193288,0.0041463,0.004100217,0.004055028,0.004010723,0.003967287,0.003924709,0.003882972,0.003842064,0.003801967,0.003762666,0.003724145,0.003686388,0.003649377,0.003613097,0.003577532,0.003542664,0.003508478,0.003474958,0.003442088,0.003409852,0.003378236,0.003347223,0.0033168,0.003286951,0.003257664,0.003228923,0.003200716,0.003173029,0.00314585,0.003119165,0.003092963,0.003067232,0.00304196,0.003017136,0.002992749,0.002968788,0.002945243,0.002922104,0.00289936,0.002877003,0.002855022,0.00283341,0.002812157,0.002791255,0.002770695,0.002750469,0.00273057,0.00271099,0.002691721,0.002672756,0.002654089,0.002635712,0.00261762,0.002599804,0.00258226,0.002564982,0.002547962,0.002531196,0.002514679,0.002498403,0.002482365,0.00246656,0.002450981,0.002435625,0.002420487,0.002405562,0.002390845,0.002376332,0.00236202,0.002347903,0.002333979,0.002320242,0.002306689,0.002293317,0.002280122,0.0022671,0.002254248,0.002241563,0.002229041,0.002216679,0.002204474,0.002192423,0.002180523,0.002168771,0.002157165,0.002145702,0.002134378,0.002123192,0.002112141,0.002101222,0.002090434,0.002079773,0.002069237,0.002058825,0.002048533,0.002038361,0.002028305,0.002018363,0.002008535,0.001998817,0.001989208,0.001979705,0.001970308,0.001961015,0.001951823,0.00194273,0.001933736,0.001924839,0.001916037,0.001907328,0.001898711,0.001890184,0.001881747,0.001873397,0.001865133,0.001856954,0.001848859,0.001840845,0.001832913,0.00182506,0.001817286,0.001809588,0.001801967,0.001794421,0.001786948,0.001779548,0.001772219,0.001764961,0.001757772,0.001750652,0.001743599,0.001736612,0.001729691,0.001722834,0.001716041,0.001709311,0.001702642,0.001696034,0.001689486,0.001682997,0.001676567,0.001670194,0.001663878,0.001657618,0.001651413,0.001645262,0.001639165,0.001633121,0.001627129,0.001621189,0.0016153,0.001609461,0.001603671,0.00159793,0.001592238,0.001586593,0.001580995,0.001575444,0.001569938,0.001564477,0.001559061,0.001553689,0.001548361,0.001543075,0.001537832,0.001532631,0.001527471,0.001522352,0.001517274,0.001512235,0.001507236,0.001502275,0.001497353,0.001492469,0.001487622,0.001482812,0.001478039,0.001473302,0.001468601,0.001463936,0.001459305,0.001454708,0.001450146,0.001445618,0.001441122,0.00143666,0.00143223,0.001427833,0.001423467,0.001419133,0.00141483,0.001410557,0.001406315,0.001402104,0.001397922,0.001393769,0.001389645,0.001385551,0.001381484,0.001377446,0.001373436,0.001369453,0.001365498,0.001361569,0.001357667,0.001353792,0.001349943,0.001346119,0.001342321,0.001338549,0.001334801,0.001331079,0.00132738,0.001323706,0.001320057,0.00131643,0.001312828,0.001309249,0.001305692,0.001302159,0.001298648,0.00129516,0.001291694,0.001288249,0.001284827,0.001281426,0.001278046,0.001274687,0.001271349,0.001268032,0.001264735,0.001261459,0.001258203,0.001254966,0.00125175,0.001248552,0.001245374,0.001242216,0.001239076,0.001235955,0.001232852,0.001229768,0.001226703,0.001223655,0.001220625,0.001217614,0.001214619,0.001211642,0.001208683,0.00120574,0.001202815,0.013822923,0.013806049,0.013755715,0.013672763,0.013558559,0.013414931,0.0132441,0.01304859,0.012831139,0.012594612,0.012341914,0.012075913,0.01179938,0.011514936,0.011225012,0.010931827,0.010637372,0.010343404,0.010051449,0.009762814,0.009478595,0.009199696,0.008926871,0.008664031,0.008413159,0.008173553,0.007944557,0.007725561,0.007515996,0.007315331,0.007123072,0.006938755,0.00676195,0.006592252,0.006429284,0.006271777,0.006117882,0.005967657,0.005821175,0.005678482,0.005539596,0.005404519,0.005273231,0.005145697,0.005021871,0.004901694,0.004801744,0.00474783,0.00469489,0.00464292,0.004591914,0.004541866,0.004492766,0.004444603,0.004397364,0.004351035,0.004305604,0.004261053,0.004217369,0.004174533,0.004132531,0.004091345,0.004050958,0.004011353,0.003972514,0.003934423,0.003897064,0.003860419,0.003824473,0.003789209,0.003754612,0.003720664,0.003687352,0.003654659,0.003622571,0.003591073,0.003560151,0.003529791,0.00349998,0.003470704,0.00344195,0.003413706,0.003385958,0.003358696,0.003331908,0.003305582,0.003279707,0.003254272,0.003229266,0.003204681,0.003180505,0.003156729,0.003133343,0.003110339,0.003087707,0.00306544,0.003043527,0.003021962,0.003000737,0.002979843,0.002959273,0.00293902,0.002919076,0.002899435,0.002880091,0.002861036,0.002842264,0.002823769,0.002805545,0.002787586,0.002769886,0.002752441,0.002735244,0.00271829,0.002701574,0.002685091,0.002668837,0.002652806,0.002636994,0.002621397,0.00260601,0.002590829,0.00257585,0.002561068,0.00254648,0.002532083,0.002517872,0.002503843,0.002489994,0.00247632,0.002462819,0.002449486,0.00243632,0.002423316,0.002410472,0.002397785,0.002385251,0.002372869,0.002360635,0.002348546,0.0023366,0.002324795,0.002313127,0.002301595,0.002290196,0.002278927,0.002267787,0.002256773,0.002245883,0.002235115,0.002224466,0.002213936,0.002203521,0.002193219,0.00218303,0.00217295,0.002162979,0.002153114,0.002143354,0.002133697,0.002124141,0.002114685,0.002105327,0.002096065,0.002086899,0.002077826,0.002068845,0.002059954,0.002051153,0.002042439,0.002033812,0.00202527,0.002016812,0.002008436,0.002000142,0.001991928,0.001983793,0.001975735,0.001967754,0.001959849,0.001952018,0.00194426,0.001936575,0.00192896,0.001921416,0.001913941,0.001906534,0.001899195,0.001891922,0.001884714,0.00187757,0.00187049,0.001863473,0.001856518,0.001849623,0.001842789,0.001836014,0.001829298,0.001822639,0.001816037,0.001809492,0.001803002,0.001796567,0.001790186,0.001783858,0.001777582,0.001771359,0.001765187,0.001759066,0.001752995,0.001746973,0.001740999,0.001735074,0.001729197,0.001723366,0.001717582,0.001711843,0.00170615,0.001700501,0.001694896,0.001689335,0.001683817,0.001678342,0.001672908,0.001667516,0.001662166,0.001656855,0.001651585,0.001646354,0.001641162,0.001636009,0.001630895,0.001625818,0.001620778,0.001615775,0.001610809,0.001605879,0.001600984,0.001596125,0.001591301,0.001586511,0.001581755,0.001577033,0.001572344,0.001567688,0.001563065,0.001558474,0.001553915,0.001549388,0.001544892,0.001540426,0.001535991,0.001531587,0.001527212,0.001522867,0.001518551,0.001514264,0.001510006,0.001505776,0.001501574,0.0014974,0.001493254,0.001489135,0.001485042,0.001480976,0.001476937,0.001472924,0.001468936,0.001464975,0.001461038,0.001457127,0.00145324,0.001449378,0.00144554,0.001441727,0.001437937,0.001434171,0.001430428,0.001426709,0.001423012,0.001419338,0.001415687,0.001412058,0.001408451,0.001404866,0.001401302,0.00139776,0.001394239,0.001390739,0.001387261,0.001383802,0.001380365,0.001376947,0.00137355,0.001370172,0.001366814,0.001363476,0.001360157,0.001356858,0.001353577,0.015360135,0.015341438,0.015285662,0.01519374,0.015067185,0.014908019,0.0147187,0.014502021,0.014261014,0.013998851,0.013718746,0.013423877,0.013117312,0.012801953,0.012480495,0.012155396,0.011828863,0.011502842,0.011179027,0.010858867,0.010543578,0.010234164,0.009932141,0.009642775,0.009366363,0.009102166,0.008849489,0.008607686,0.008376152,0.008154321,0.007941665,0.007737689,0.007541929,0.007353951,0.007173349,0.006999743,0.006832031,0.006668085,0.006507905,0.006351576,0.006199153,0.006050666,0.005906123,0.005765512,0.005628806,0.005495963,0.005367463,0.005308104,0.005249763,0.005192442,0.00513614,0.005080853,0.005026575,0.004973296,0.004921006,0.004869695,0.004819347,0.004769951,0.00472149,0.004673949,0.004627312,0.004581562,0.004536682,0.004492655,0.004449463,0.004407089,0.004365516,0.004324726,0.004284703,0.004245428,0.004206885,0.004169058,0.00413193,0.004095484,0.004059706,0.004024578,0.003990087,0.003956217,0.003922952,0.00389028,0.003858186,0.003826656,0.003795677,0.003765235,0.003735319,0.003705915,0.003677012,0.003648598,0.00362066,0.003593189,0.003566173,0.003539602,0.003513465,0.003487752,0.003462454,0.00343756,0.003413062,0.003388951,0.003365218,0.003341854,0.003318851,0.003296201,0.003273897,0.00325193,0.003230293,0.003208978,0.00318798,0.00316729,0.003146903,0.003126811,0.003107009,0.003087491,0.003068249,0.00304928,0.003030576,0.003012132,0.002993943,0.002976004,0.00295831,0.002940855,0.002923635,0.002906645,0.00288988,0.002873337,0.00285701,0.002840896,0.002824989,0.002809287,0.002793786,0.00277848,0.002763368,0.002748444,0.002733706,0.002719149,0.002704771,0.002690569,0.002676538,0.002662677,0.002648981,0.002635448,0.002622075,0.002608858,0.002595796,0.002582885,0.002570123,0.002557508,0.002545036,0.002532704,0.002520512,0.002508456,0.002496534,0.002484743,0.002473082,0.002461549,0.00245014,0.002438855,0.002427691,0.002416645,0.002405717,0.002394904,0.002384205,0.002373617,0.002363139,0.002352769,0.002342505,0.002332345,0.002322289,0.002312334,0.002302479,0.002292722,0.002283062,0.002273497,0.002264026,0.002254648,0.00224536,0.002236162,0.002227053,0.00221803,0.002209093,0.002200241,0.002191472,0.002182785,0.002174179,0.002165652,0.002157204,0.002148834,0.00214054,0.002132321,0.002124176,0.002116104,0.002108105,0.002100177,0.002092319,0.00208453,0.002076809,0.002069156,0.002061569,0.002054048,0.002046591,0.002039198,0.002031868,0.0020246,0.002017394,0.002010248,0.002003162,0.001996134,0.001989165,0.001982253,0.001975398,0.001968599,0.001961855,0.001955166,0.00194853,0.001941948,0.001935418,0.00192894,0.001922514,0.001916138,0.001909812,0.001903535,0.001897307,0.001891127,0.001884995,0.00187891,0.001872872,0.001866879,0.001860932,0.001855029,0.001849171,0.001843357,0.001837586,0.001831858,0.001826172,0.001820528,0.001814925,0.001809363,0.001803841,0.00179836,0.001792918,0.001787515,0.00178215,0.001776824,0.001771535,0.001766284,0.001761069,0.001755892,0.00175075,0.001745644,0.001740573,0.001735537,0.001730536,0.001725569,0.001720636,0.001715736,0.00171087,0.001706036,0.001701235,0.001696465,0.001691728,0.001687022,0.001682347,0.001677703,0.001673089,0.001668505,0.001663952,0.001659427,0.001654932,0.001650466,0.001646029,0.00164162,0.001637239,0.001632885,0.00162856,0.001624261,0.00161999,0.001615745,0.001611527,0.001607335,0.001603169,0.001599028,0.001594913,0.001590823,0.001586758,0.001582718,0.001578702,0.001574711,0.001570744,0.0015668,0.00156288,0.001558983,0.00155511,0.001551259,0.001547431,0.001543625,0.001539842,0.001536081,0.001532342,0.001528624,0.001524928,0.001521253,0.013367619,0.013355867,0.013320757,0.013262715,0.013182436,0.013080865,0.012959165,0.012818686,0.012660925,0.012487492,0.012300066,0.012100363,0.011890097,0.011670954,0.011444564,0.011212479,0.01097616,0.010736961,0.010496125,0.010254777,0.010013926,0.009774466,0.009537177,0.009302737,0.009071722,0.008844616,0.00862182,0.008405103,0.008196859,0.0079967,0.007804217,0.007619022,0.007440754,0.007269071,0.007103652,0.006944196,0.006790417,0.006642049,0.006498836,0.006360543,0.006226942,0.006097822,0.005973334,0.005915528,0.005858233,0.00580149,0.005745333,0.005689794,0.005634899,0.005580671,0.005527127,0.005474284,0.005422153,0.005370744,0.005320063,0.005270116,0.005220904,0.005172428,0.005124687,0.00507768,0.005031402,0.004985849,0.004941014,0.004896892,0.004853474,0.004810753,0.00476872,0.004727366,0.004686682,0.004646658,0.004607283,0.004568547,0.00453044,0.004492952,0.004456071,0.004419787,0.004384089,0.004348967,0.004314409,0.004280405,0.004246946,0.004214019,0.004181615,0.004149724,0.004118335,0.004087439,0.004057026,0.004027085,0.003997609,0.003968586,0.003940009,0.003911868,0.003884155,0.00385686,0.003829975,0.003803492,0.003777403,0.0037517,0.003726375,0.00370142,0.003676827,0.003652591,0.003628703,0.003605156,0.003581944,0.00355906,0.003536497,0.00351425,0.003492311,0.003470675,0.003449335,0.003428287,0.003407523,0.00338704,0.003366831,0.00334689,0.003327214,0.003307796,0.003288633,0.003269718,0.003251047,0.003232617,0.003214421,0.003196457,0.003178718,0.003161203,0.003143905,0.003126822,0.003109949,0.003093282,0.003076818,0.003060554,0.003044485,0.003028608,0.003012919,0.002997416,0.002982095,0.002966953,0.002951987,0.002937193,0.002922569,0.002908112,0.002893819,0.002879688,0.002865714,0.002851897,0.002838232,0.002824718,0.002811353,0.002798133,0.002785056,0.00277212,0.002759323,0.002746663,0.002734136,0.002721742,0.002709477,0.002697341,0.00268533,0.002673443,0.002661678,0.002650034,0.002638507,0.002627097,0.002615801,0.002604618,0.002593547,0.002582584,0.00257173,0.002560981,0.002550338,0.002539797,0.002529358,0.002519019,0.002508778,0.002498634,0.002488587,0.002478633,0.002468772,0.002459004,0.002449325,0.002439735,0.002430234,0.002420819,0.002411489,0.002402243,0.00239308,0.002384,0.002375,0.002366079,0.002357237,0.002348473,0.002339785,0.002331172,0.002322634,0.002314169,0.002305777,0.002297456,0.002289206,0.002281025,0.002272913,0.002264869,0.002256892,0.002248981,0.002241135,0.002233354,0.002225636,0.002217981,0.002210388,0.002202856,0.002195384,0.002187973,0.00218062,0.002173326,0.002166089,0.002158909,0.002151785,0.002144717,0.002137703,0.002130744,0.002123838,0.002116984,0.002110183,0.002103434,0.002096736,0.002090088,0.00208349,0.002076941,0.002070441,0.002063989,0.002057584,0.002051226,0.002044915,0.00203865,0.002032431,0.002026256,0.002020125,0.002014039,0.002007996,0.002001996,0.001996038,0.001990122,0.001984248,0.001978415,0.001972623,0.001966871,0.001961158,0.001955485,0.001949851,0.001944255,0.001938697,0.001933178,0.001927695,0.001922249,0.00191684,0.001911467,0.001906129,0.001900827,0.00189556,0.001890328,0.00188513,0.001879966,0.001874835,0.001869738,0.001864674,0.001859642,0.001854643,0.001849675,0.001844739,0.001839835,0.001834961,0.001830118,0.001825306,0.001820523,0.001815771,0.001811048,0.001806354,0.001801689,0.001797052,0.001792445,0.001787865,0.001783313,0.001778789,0.001774292,0.001769822,0.001765378,0.001760962,0.001756572,0.001752207,0.001747869,0.001743556,0.001739269,0.001735006,0.001730769,0.001726556,0.001722368,0.001718203,0.001714063,0.001709947,0.001705854,0.014874585,0.014861484,0.014822342,0.014757636,0.014668145,0.014554923,0.014419273,0.014262702,0.014086885,0.01389362,0.013684783,0.01346229,0.013228054,0.012983958,0.012731818,0.012473366,0.01221023,0.011943919,0.011675816,0.011407174,0.011139115,0.010872632,0.010608595,0.010347752,0.010090745,0.009838111,0.009590512,0.009351452,0.009121659,0.008900667,0.008688039,0.008483364,0.008286252,0.008096339,0.00791328,0.00773675,0.007566443,0.007402068,0.007243354,0.007090041,0.006941887,0.006798661,0.006660145,0.006585925,0.006523792,0.006462162,0.006401082,0.006340593,0.006280728,0.006221517,0.006162988,0.006105161,0.006048055,0.005991685,0.005936062,0.005881196,0.005827093,0.005773758,0.005721193,0.005669398,0.005618373,0.005568115,0.005518621,0.005469884,0.0054219,0.005374662,0.005328162,0.005282392,0.005237342,0.005193005,0.00514937,0.005106427,0.005064166,0.005022576,0.004981647,0.004941367,0.004901727,0.004862714,0.004824319,0.004786529,0.004749334,0.004712724,0.004676687,0.004641212,0.004606289,0.004571908,0.004538057,0.004504727,0.004471908,0.004439589,0.004407761,0.004376414,0.004345539,0.004315127,0.004285167,0.004255652,0.004226572,0.004197918,0.004169684,0.004141859,0.004114436,0.004087407,0.004060764,0.004034499,0.004008606,0.003983076,0.003957903,0.00393308,0.003908599,0.003884455,0.00386064,0.003837149,0.003813974,0.003791111,0.003768552,0.003746292,0.003724326,0.003702648,0.003681252,0.003660133,0.003639286,0.003618705,0.003598387,0.003578326,0.003558516,0.003538955,0.003519636,0.003500557,0.003481711,0.003463096,0.003444706,0.003426539,0.003408589,0.003390854,0.003373328,0.00335601,0.003338894,0.003321978,0.003305258,0.003288731,0.003272392,0.00325624,0.003240271,0.003224482,0.003208869,0.003193431,0.003178163,0.003163063,0.003148129,0.003133357,0.003118745,0.00310429,0.00308999,0.003075843,0.003061845,0.003047995,0.003034289,0.003020727,0.003007305,0.002994021,0.002980874,0.00296786,0.002954979,0.002942227,0.002929604,0.002917106,0.002904733,0.002892481,0.00288035,0.002868338,0.002856443,0.002844662,0.002832995,0.00282144,0.002809995,0.002798658,0.002787428,0.002776303,0.002765283,0.002754364,0.002743547,0.002732829,0.002722209,0.002711686,0.002701259,0.002690925,0.002680684,0.002670534,0.002660475,0.002650505,0.002640622,0.002630826,0.002621116,0.002611489,0.002601946,0.002592485,0.002583105,0.002573804,0.002564583,0.002555439,0.002546372,0.002537381,0.002528464,0.002519622,0.002510852,0.002502155,0.002493528,0.002484972,0.002476485,0.002468066,0.002459715,0.002451431,0.002443213,0.002435059,0.00242697,0.002418945,0.002410982,0.002403081,0.002395242,0.002387463,0.002379743,0.002372083,0.002364481,0.002356937,0.00234945,0.002342019,0.002334644,0.002327324,0.002320058,0.002312846,0.002305687,0.002298581,0.002291527,0.002284524,0.002277571,0.002270669,0.002263817,0.002257014,0.002250259,0.002243552,0.002236892,0.00223028,0.002223714,0.002217194,0.002210719,0.00220429,0.002197904,0.002191563,0.002185265,0.00217901,0.002172798,0.002166628,0.002160499,0.002154412,0.002148366,0.00214236,0.002136393,0.002130467,0.002124579,0.002118731,0.00211292,0.002107148,0.002101413,0.002095715,0.002090054,0.00208443,0.002078841,0.002073289,0.002067771,0.002062289,0.002056841,0.002051428,0.002046048,0.002040702,0.00203539,0.00203011,0.002024863,0.002019649,0.002014466,0.002009315,0.002004196,0.001999108,0.00199405,0.001989023,0.001984027,0.00197906,0.001974123,0.001969215,0.001964337,0.001959487,0.001954666,0.001949873,0.001945109,0.001940372,0.001935663,0.001930981,0.001926326,0.001921698,0.001917096,0.001912521,0.016529864,0.016515277,0.016471694,0.016399649,0.016300012,0.016173961,0.01602295,0.015848662,0.015652968,0.015437874,0.015205472,0.0149579,0.014697291,0.014425743,0.01414528,0.013857831,0.013565208,0.013269089,0.012971013,0.012672373,0.012374414,0.012078241,0.011784816,0.011494972,0.011209418,0.010928749,0.010655212,0.010392131,0.010139083,0.009895578,0.009661152,0.00943537,0.00921782,0.009008111,0.008805877,0.008610769,0.008422461,0.00824064,0.008065015,0.007895306,0.007731252,0.007572604,0.007419125,0.007322608,0.007254652,0.007187988,0.007121901,0.007056347,0.006991372,0.006927017,0.006863316,0.006800299,0.006737992,0.006676418,0.006615594,0.006555536,0.006496256,0.006437764,0.006380065,0.006323165,0.006267066,0.00621177,0.006157274,0.006103578,0.006050676,0.005998565,0.005947239,0.005896691,0.005846913,0.005797898,0.005749636,0.005702119,0.005655336,0.005609277,0.005563933,0.005519292,0.005475344,0.005432078,0.005389482,0.005347546,0.005306259,0.005265608,0.005225584,0.005186174,0.005147369,0.005109156,0.005071525,0.005034465,0.004997966,0.004962017,0.004926607,0.004891727,0.004857365,0.004823513,0.004790161,0.004757298,0.004724915,0.004693004,0.004661554,0.004630558,0.004600005,0.004569888,0.004540198,0.004510928,0.004482067,0.00445361,0.004425548,0.004397873,0.004370578,0.004343656,0.004317099,0.004290901,0.004265055,0.004239554,0.004214391,0.00418956,0.004165056,0.004140871,0.004117,0.004093437,0.004070176,0.004047211,0.004024538,0.004002151,0.003980044,0.003958213,0.003936652,0.003915357,0.003894322,0.003873544,0.003853017,0.003832738,0.003812701,0.003792902,0.003773338,0.003754004,0.003734896,0.00371601,0.003697343,0.00367889,0.003660649,0.003642614,0.003624784,0.003607154,0.003589721,0.003572482,0.003555434,0.003538573,0.003521896,0.003505401,0.003489084,0.003472943,0.003456974,0.003441175,0.003425543,0.003410075,0.00339477,0.003379624,0.003364634,0.003349799,0.003335116,0.003320582,0.003306196,0.003291955,0.003277856,0.003263898,0.003250079,0.003236396,0.003222847,0.003209431,0.003196145,0.003182988,0.003169957,0.003157051,0.003144268,0.003131606,0.003119063,0.003106638,0.003094329,0.003082134,0.003070052,0.003058081,0.00304622,0.003034466,0.003022819,0.003011277,0.002999839,0.002988502,0.002977267,0.00296613,0.002955092,0.00294415,0.002933304,0.002922552,0.002911893,0.002901325,0.002890848,0.00288046,0.00287016,0.002859947,0.002849819,0.002839777,0.002829818,0.002819941,0.002810146,0.002800431,0.002790795,0.002781238,0.002771759,0.002762356,0.002753028,0.002743775,0.002734595,0.002725488,0.002716453,0.002707489,0.002698595,0.00268977,0.002681014,0.002672325,0.002663703,0.002655147,0.002646656,0.00263823,0.002629867,0.002621567,0.002613329,0.002605153,0.002597038,0.002588982,0.002580986,0.002573049,0.00256517,0.002557348,0.002549583,0.002541873,0.00253422,0.002526621,0.002519076,0.002511585,0.002504147,0.002496761,0.002489427,0.002482145,0.002474913,0.002467731,0.002460599,0.002453517,0.002446482,0.002439496,0.002432557,0.002425666,0.002418821,0.002412022,0.002405268,0.00239856,0.002391896,0.002385277,0.002378701,0.002372168,0.002365679,0.002359231,0.002352826,0.002346462,0.002340139,0.002333857,0.002327615,0.002321413,0.002315251,0.002309127,0.002303043,0.002296996,0.002290988,0.002285017,0.002279083,0.002273187,0.002267326,0.002261502,0.002255714,0.002249961,0.002244243,0.00223856,0.002232911,0.002227296,0.002221715,0.002216168,0.002210654,0.002205172,0.002199724,0.002194307,0.002188922,0.002183569,0.002178248,0.002172957,0.002167697,0.002162468,0.002157269,0.0021521,0.00214696,0.00214185,0.018344255,0.018328035,0.018279578,0.018199478,0.018088704,0.017948572,0.017780701,0.017586971,0.017369464,0.017130417,0.016872161,0.016597076,0.016307538,0.016005881,0.015694357,0.015375111,0.015050156,0.014721358,0.014390426,0.014058905,0.013728178,0.013399468,0.013073842,0.012752222,0.012435393,0.012124473,0.011824236,0.011535352,0.01125728,0.01098951,0.010731556,0.010482959,0.010243286,0.010012125,0.009789087,0.009573803,0.009365923,0.009165117,0.008971071,0.008783488,0.008602086,0.008426598,0.008256771,0.008132419,0.008057562,0.007984274,0.007912507,0.007841874,0.007771754,0.007702185,0.007633214,0.007564881,0.007497221,0.007430267,0.007364044,0.007298575,0.00723388,0.007169974,0.007106871,0.00704458,0.006983109,0.006922464,0.006862647,0.00680366,0.006745503,0.006688173,0.006631668,0.006575984,0.006521115,0.006467054,0.006413794,0.006361329,0.006309648,0.006258743,0.006208604,0.006159222,0.006110586,0.006062686,0.006015511,0.005969049,0.00592329,0.005878223,0.005833836,0.005790118,0.005747057,0.005704643,0.005662865,0.00562171,0.005581168,0.005541228,0.00550188,0.005463111,0.005424912,0.005387272,0.005350181,0.005313629,0.005277604,0.005242099,0.005207102,0.005172604,0.005138596,0.005105069,0.005072013,0.005039419,0.005007279,0.004975585,0.004944327,0.004913497,0.004883088,0.004853092,0.0048235,0.004794305,0.0047655,0.004737078,0.00470903,0.004681351,0.004654034,0.004627071,0.004600457,0.004574184,0.004548247,0.004522639,0.004497354,0.004472387,0.004447732,0.004423383,0.004399335,0.004375581,0.004352118,0.00432894,0.004306041,0.004283418,0.004261064,0.004238976,0.004217148,0.004195576,0.004174257,0.004153184,0.004132355,0.004111765,0.00409141,0.004071286,0.004051388,0.004031715,0.004012261,0.003993022,0.003973996,0.003955179,0.003936568,0.003918158,0.003899947,0.003881932,0.00386411,0.003846476,0.003829029,0.003811766,0.003794683,0.003777777,0.003761046,0.003744488,0.003728099,0.003711877,0.003695819,0.003679923,0.003664186,0.003648606,0.00363318,0.003617907,0.003602783,0.003587808,0.003572977,0.003558291,0.003543745,0.003529338,0.003515069,0.003500935,0.003486934,0.003473064,0.003459324,0.003445711,0.003432224,0.003418861,0.00340562,0.0033925,0.003379498,0.003366614,0.003353845,0.003341191,0.003328649,0.003316217,0.003303895,0.003291682,0.003279574,0.003267572,0.003255673,0.003243876,0.003232181,0.003220585,0.003209087,0.003197686,0.003186381,0.003175171,0.003164054,0.003153029,0.003142095,0.00313125,0.003120494,0.003109826,0.003099244,0.003088748,0.003078336,0.003068007,0.00305776,0.003047594,0.003037509,0.003027503,0.003017575,0.003007724,0.00299795,0.002988251,0.002978627,0.002969076,0.002959598,0.002950192,0.002940858,0.002931593,0.002922398,0.002913271,0.002904213,0.002895221,0.002886296,0.002877436,0.002868641,0.00285991,0.002851243,0.002842638,0.002834094,0.002825613,0.002817191,0.00280883,0.002800527,0.002792283,0.002784098,0.002775969,0.002767897,0.002759881,0.002751921,0.002744015,0.002736163,0.002728366,0.002720621,0.002712929,0.002705289,0.0026977,0.002690162,0.002682674,0.002675237,0.002667848,0.002660509,0.002653218,0.002645974,0.002638778,0.002631629,0.002624526,0.002617469,0.002610457,0.00260349,0.002596568,0.00258969,0.002582856,0.002576064,0.002569316,0.00256261,0.002555946,0.002549323,0.002542742,0.002536201,0.002529701,0.00252324,0.002516819,0.002510437,0.002504095,0.00249779,0.002491524,0.002485295,0.002479104,0.002472949,0.002466832,0.00246075,0.002454705,0.002448695,0.002442721,0.002436782,0.002430877,0.002425007,0.00241917,0.002413368,0.002407599,0.002401863,0.00239616,0.020327844,0.020309842,0.020256058,0.020167155,0.020044213,0.019888694,0.019702404,0.01948743,0.019246091,0.018980875,0.018694374,0.018389233,0.018068093,0.017733546,0.017388094,0.017034117,0.016673849,0.01630936,0.015942544,0.015575113,0.015208599,0.014844356,0.014483565,0.014127245,0.013776264,0.013434935,0.013106337,0.012789885,0.012485024,0.012191227,0.011907991,0.01163484,0.011371319,0.011116999,0.01087147,0.010634345,0.010405254,0.010183847,0.009969793,0.009762774,0.009562491,0.009368659,0.009181008,0.009022001,0.008939672,0.008859045,0.008780069,0.008702695,0.008626876,0.008552155,0.008477942,0.008404284,0.008331228,0.008258817,0.008187089,0.008116075,0.008045803,0.0079763,0.007907584,0.007839673,0.007772583,0.007706323,0.007640903,0.00757633,0.007512607,0.007449737,0.007387722,0.007326559,0.007266247,0.007206783,0.007148161,0.007090375,0.00703342,0.006977288,0.006921971,0.00686746,0.006813746,0.00676082,0.006708671,0.006657289,0.006606664,0.006556784,0.006507639,0.006459218,0.006411509,0.006364501,0.006318183,0.006272543,0.006227571,0.006183254,0.006139582,0.006096544,0.006054128,0.006012324,0.005971121,0.005930507,0.005890473,0.005851008,0.005812101,0.005773743,0.005735923,0.005698632,0.00566186,0.005625597,0.005589835,0.005554563,0.005519773,0.005485455,0.005451602,0.005418205,0.005385255,0.005352743,0.005320663,0.005289006,0.005257764,0.00522693,0.005196496,0.005166455,0.0051368,0.005107523,0.005078619,0.00505008,0.005021899,0.004994071,0.004966589,0.004939447,0.004912638,0.004886158,0.004859999,0.004834157,0.004808626,0.0047834,0.004758474,0.004733844,0.004709503,0.004685447,0.004661671,0.00463817,0.00461494,0.004591975,0.004569273,0.004546827,0.004524634,0.004502689,0.00448099,0.00445953,0.004438307,0.004417317,0.004396555,0.004376018,0.004355703,0.004335606,0.004315723,0.004296052,0.004276587,0.004257328,0.004238269,0.004219408,0.004200743,0.004182269,0.004163984,0.004145885,0.004127969,0.004110233,0.004092675,0.004075292,0.004058082,0.004041041,0.004024167,0.004007458,0.003990911,0.003974524,0.003958295,0.003942221,0.003926299,0.003910529,0.003894907,0.003879432,0.003864101,0.003848912,0.003833863,0.003818953,0.00380418,0.00378954,0.003775034,0.003760658,0.003746411,0.003732292,0.003718297,0.003704427,0.003690679,0.003677051,0.003663542,0.00365015,0.003636874,0.003623712,0.003610662,0.003597724,0.003584895,0.003572175,0.003559562,0.003547054,0.00353465,0.003522349,0.003510149,0.00349805,0.00348605,0.003474147,0.003462341,0.00345063,0.003439013,0.003427489,0.003416056,0.003404714,0.003393462,0.003382298,0.003371222,0.003360232,0.003349327,0.003338506,0.003327769,0.003317114,0.00330654,0.003296046,0.003285632,0.003275296,0.003265037,0.003254855,0.003244749,0.003234718,0.003224761,0.003214877,0.003205065,0.003195325,0.003185655,0.003176055,0.003166525,0.003157062,0.003147668,0.00313834,0.003129078,0.003119881,0.003110749,0.003101681,0.003092677,0.003083734,0.003074854,0.003066035,0.003057276,0.003048578,0.003039938,0.003031358,0.003022835,0.003014369,0.003005961,0.002997608,0.002989312,0.00298107,0.002972883,0.002964749,0.002956669,0.002948642,0.002940667,0.002932744,0.002924872,0.002917051,0.00290928,0.002901559,0.002893887,0.002886263,0.002878688,0.002871161,0.00286368,0.002856247,0.00284886,0.002841519,0.002834223,0.002826973,0.002819767,0.002812605,0.002805487,0.002798412,0.00279138,0.00278439,0.002777443,0.002770537,0.002763673,0.002756849,0.002750066,0.002743324,0.002736621,0.002729957,0.002723333,0.002716747,0.002710199,0.00270369,0.002697218,0.002690784,0.002684386,0.002678025 +0.08130720284832435,0.08113846138306216,0.08063673345129681,0.07981520293143023,0.07869486331442972,0.07730317602473619,0.07567242178765242,0.07383792188558198,0.07183629737878226,0.06970390312234619,0.06747552943834864,0.065183417716556,0.06285659504647266,0.06052050197271977,0.058196868105105576,0.05590378163330928,0.05365589843664887,0.05146474165327386,0.04933905071942371,0.04728514801440356,0.04532070421824803,0.04347570185034583,0.04174207551964131,0.040095382266538256,0.0385111384988463,0.036989847624029806,0.035531428288096814,0.034135195824999076,0.03279999310495262,0.0315243016284824,0.030306334694848492,0.029144114643284817,0.028035536180085342,0.02697841771904137,0.02597054251728526,0.02500969121276773,0.024093667182979478,0.023220315960452716,0.022387539766911685,0.02159330806936708,0.020835664919640274,0.02011273371450217,0.01942271990590239,0.018763912098564827,0.018134681894051076,0.017533482774477388,0.016958848263990505,0.016535427873716313,0.0162356435069909,0.01594414744980035,0.015660649702877116,0.015384869677187168,0.01511653627909052,0.014855387907783324,0.014601172382265784,0.014353646812289768,0.014112577425321671,0.013877739359555021,0.01364891643129999,0.013425900883627941,0.01320849312196197,0.012996501441261944,0.012789741748614638,0.012588037284317736,0.012391218343941074,0.012199122003360421,0.012011591848328375,0.011828477709803907,0.011649635405972882,0.01147492649165596,0.01130421801559056,0.011137382285930869,0.010974296644158305,0.010814843247496818,0.010658908859840716,0.010506384651121978,0.010357166005006035,0.010211152334744431,0.010068246906988727,0.009928356673342575,0.009791392109411608,0.00965726706109205,0.009525898597842818,0.009397206872669274,0.009271114988552069,0.00914754887105752,0.009026437146859231,0.008907711027921369,0.008791304201084272,0.00867715272280921,0.008565194918846095,0.008455371288588417,0.008347624413901121,0.008241898872202889,0.008138141153600117,0.008036299581876702,0.007936324239153265,0.007838166894032671,0.007741780933066789,0.007647121295377136,0.00755414441027573,0.0074628081377396144,0.007373071711594816,0.007284895685280843,0.0071982418800655016,0.007113073335590377,0.0070293542626321676,0.006947049997972505,0.006866126961269566,0.006786552613837895,0.0067082954192404474,0.00663132480560544,0.00655561112958549,0.0064811256418766715,0.006407840454226206,0.006335728507854432,0.006264763543224018,0.006194920071093739,0.006126173344792042,0.006058499333657456,0.005991874697587162,0.0059262767626434,0.005861683497667621,0.005798073491856668,0.005735425933253648,0.005673720588114945,0.005612937781110389,0.0055530583763194995,0.005494063758988248,0.005435935818009543,0.005378656929098043,0.005322209938625718,0.005266578148089544,0.005211745299183095,0.005157695559446079,0.005104413508464189,0.005051884124598143,0.005000092772216746,0.004949025189412579,0.004898667476180508,0.004849006083036861,0.004800027800063278,0.004751719746355062,0.004704069359857724,0.004657064387575955,0.004610692876137469,0.004564943162699555,0.004519803866182209,0.00447526387881517,0.004431312357985595,0.004387605678936801,0.004343946437705575,0.004300866849338273,0.004258356500471825,0.004216405221979147,0.004175003081865563,0.004134140378409299,0.004093807633538815,0.004053995586435784,0.004014695187355487,0.003975897591656622,0.003937594154030842,0.0038997764229263044,0.00386243613515631,0.003825565210686445,0.003789155747593301,0.0037532000171888267,0.0037176904593025644,0.003682619677717829,0.0036479804357545773,0.003613765651994071,0.0035799683961404176,0.0035465818850126795,0.003513599478664581,0.0034810146766257027,0.0034488211142604105,0.0034170125592400194,0.003385582908124644,0.0033545261830495465,0.003323836528513955,0.003293508208267422,0.003263535602290776,0.003233913203868656,0.003204635616749288,0.003175697552390042,0.0031470938272846038,0.0031188193603694588,0.003090869170506731,0.00306323837404137,0.003035922182428816,0.003008915899932484,0.0029822149213874585,0.002955814730028575,0.0029297108953811133,0.002903899071210982,0.0028783749935337656,0.002853134478679732,0.0028281734214132426,0.0028034877931051873,0.002779073639955656,0.002754927081266607,0.002731044307761931,0.00270742157995371,0.0026840552265531958,0.0026609416429253375,0.002638077289584639,0.0026154586907322177,0.0025930824328319188,0.0025709451632245093,0.002549043588779095,0.0025273744745797208,0.002505934642647244,0.002484720970694524,0.002463730390914182,0.002442959888798298,0.0024224065019880733,0.0024020673191538756,0.002381939478903788,0.0023620201687201362,0.0023423066239231633,0.0023227961266612273,0.0023034860049260574,0.0022843736315932973,0.002265456423486904,0.00224673184046685,0.002228197384539854,0.0022098505989915232,0.0021916890675405106,0.0021737104135131306,0.0021559122990382454,0.002138292424261709,0.002120848526580109,0.0021035783798925576,0.0020864797938709447,0.0020695506132474783,0.002052788717119194,0.0020361920182692668,0.002019758462503913,0.002003486028005407,0.0019873727247000585,0.0019714165936409837,0.0019556157064054957,0.0019399681645060247,0.0019244720988151206,0.0019091256690034742,0.0018939270629908767,0.0018788744964096822,0.0018639662120807296,0.00184920047950067,0.001834575594341374,0.0018200898779603244,0.0018057416769220501,0.0017915293625304128,0.0017774513303709216,0.0017635059998635776,0.001749691813825416,0.0017360072380427018,0.0017224507608524658,0.001709020892733382,0.0016957161659051602,0.0016825351339369837,0.0016694763713642688,0.0016565384733136176,0.0016437200551360242,0.001631019752047553,0.0016184362187780246,0.0016059681292269693,0.0015936141761268628,0.0015813730707136108,0.0015692435424036315,0.001557224338478,0.0015453142237730263,0.001533511980377286,0.0015218164073348731,0.0015102263203549612,0.0014987405515269727,0.0014873579490419255,0.0014760773769193004,0.001464897714739452,0.0014538178573816095,0.0014428367147668363,0.001431953211606506,0.0014211662871556193,0.0014104748949711264,0.0013998780026750104,0.0013893745917222084,0.001378963657172864,0.0013686442074693302,0.0013584152642174207,0.0013482758619719499,0.0013382250480265842,0.0013282618822075157,0.0013183854366714094,0.001308594795707115,0.0012988890555411887,0.001289267324147308,0.0012797287210590345,0.0012702723771864412,0.0012608974346360689,0.0012516030465343385,0.09149300190982775,0.09130404892155496,0.09074220940454403,0.08982220150347162,0.08856746450700487,0.08700866441329977,0.0851818570487365,0.08312650540838938,0.08088353826946809,0.07849360252097232,0.07599561285376434,0.07342565068778995,0.0708162183995547,0.06819582034385267,0.06558882052100007,0.06301551696924584,0.06049237246004099,0.058032346751327075,0.05564528466634984,0.05333832439254111,0.05113552533251104,0.04906681614694943,0.04712212381476523,0.04528222241259127,0.04351228384866038,0.0418108131910795,0.04017800873679763,0.03861336399451475,0.03711581500073638,0.03568386619360943,0.03431569662965404,0.03300924858444941,0.03176230064868674,0.030572527378296188,0.02943754742779122,0.028354961924145584,0.027322384648039294,0.026337465396341995,0.02539790771434109,0.024501482014702577,0.023646034945132375,0.0228294957296222,0.02204988008856618,0.021305292239924372,0.020593925395768268,0.019914061094028133,0.019264067642755935,0.018761652053866852,0.018423725585692337,0.018095067111110835,0.017775356827346354,0.01746428487959812,0.01716155152149108,0.016866867170182927,0.01657995237619105,0.01630053772480899,0.016028363683208202,0.015763180405014645,0.015504747502182867,0.015252833792313967,0.015007217028184952,0.01476768361504945,0.014534028320289329,0.014306053979156593,0.014083571199632137,0.0138663980688582,0.013654359863089167,0.01344728876270344,0.013245023573473267,0.013047409455008775,0.012854297657041694,0.012665545264041591,0.01248101494847475,0.012300574732896715,0.012124097760960344,0.011951462077326466,0.011782550416409871,0.011617249999822655,0.011455452342341677,0.011297053066192416,0.011141951723417209,0.010990051626070252,0.010841259683983709,0.010695486249825824,0.010552644971177446,0.010412652649350373,0.010275429104666277,0.010140897047930893,0.010008981957829899,0.009879611963986058,0.009752717735426051,0.00962823237420312,0.009506091313945387,0.009386232223093519,0.009268594912608855,0.00915312124793874,0.009039755065037326,0.008928442090242007,0.008819129863825333,0.008711767667040137,0.008606306452489138,0.008502698777659023,0.008400898741460302,0.008300861923632176,0.008202545326868397,0.008105907321533184,0.008010907592840495,0.007917507090378252,0.007825667979859797,0.00773535359699968,0.00764652840340712,0.00755915794440097,0.007473208808654808,0.007388648589580779,0.007305445848373474,0.007223570078631185,0.007142991672480714,0.007063681888135433,0.006985612818815561,0.006908757362971027,0.006833089195742534,0.006758582741604208,0.006685213148132618,0.006612956260851013,0.006541788599096428,0.0064716873328663,0.00640263026059726,0.006334595787834316,0.006267562906751169,0.00620151117648048,0.006136420704221323,0.0060722721270864005,0.006009046594657299,0.005946725752215749,0.0058852917246226205,0.005824727100813223,0.00576501491888577,0.005706138651754407,0.0056480821933435395,0.0055908298453007325,0.0055343663042037375,0.005478676649243737,0.005423746330362272,0.005369561156823417,0.005316107286203867,0.005263371213781111,0.005211339762306106,0.005160000072142465,0.005109339591757835,0.005059346068552901,0.005009772479965752,0.004960100928851828,0.004911086604464896,0.004862717732668935,0.004814982814873285,0.004767870620033892,0.004721370176928901,0.004675470766700386,0.004630161915649709,0.0045854333882773095,0.004541275180557956,0.004497677513440378,0.004454630826565294,0.00441212577219136,0.0043701532093219616,0.004328704198024963,0.00428776999393871,0.004247342042955701,0.004207411976079322,0.004167971604445724,0.0041290129145051336,0.0040905280633572495,0.004052509374233518,0.004014949332122972,0.003977840579534875,0.003941175912393779,0.0039049482760620613,0.0038691507614859876,0.003833776601459305,0.003798819167002255,0.0037642719638504045,0.0037301286290499173,0.0036963829276560247,0.003663028749529663,0.003630060106230755,0.003597471128003373,0.00356525606085023,0.003533409263693183,0.0035019252056174483,0.0034707984631952415,0.0034400237178880406,0.0034095957535234156,0.0033795094538444526,0.0033497598001296777,0.0033203418688799884,0.0032912508295719865,0.0032624819424742586,0.003234030556525073,0.003205892107269752,0.0031780621148546576,0.003150536182077625,0.0031233099924916543,0.00309637930856082,0.0030697399698664802,0.0030433878913626593,0.0030173190616779246,0.0029915295414638297,0.0029660154617872736,0.002940773022565854,0.0029157984910451952,0.0028910882003158945,0.0028666385478703102,0.002842445994196847,0.0028185070614110273,0.0027948183319225317,0.0027713764471360793,0.0027481781061865474,0.0027252200647062074,0.0027024991336236075,0.0026800121779929588,0.0026577561158535523,0.0026357279171173448,0.0026139246024851613,0.0025923432423897055,0.0025709809559649717,0.0025498349100415325,0.0025289023181660846,0.002508180439645737,0.0024876665786154406,0.002467358083128293,0.0024472523442678716,0.0024273467952823937,0.0024076389107391873,0.002388126205700059,0.0023688062349161037,0.002349676592041741,0.0023307349088676466,0.002311978854571319,0.0022934061349858337,0.0022750144918854413,0.0022568017022879397,0.0022387655777734894,0.0022209039638187095,0.0022032147391466976,0.0021856958150917164,0.0021683451349785135,0.0021511606735157432,0.0021341404362034337,0.002117282458753394,0.00210058480652319,0.0020840455739625724,0.0020676628840723436,0.0020514348878754953,0.0020353597638996723,0.0020194357176715138,0.002003660981221958,0.001988033812602447,0.0019725524954116694,0.001957215338332867,0.0019420206746807477,0.0019269668619586492,0.001912052281425022,0.0018972753376692653,0.001882634458196825,0.001868128093022734,0.0018537547142742211,0.0018395128158015305,0.0018254009127969316,0.001811417541421969,0.0017975612584421258,0.0017838306408694883,0.001770224285612666,0.0017567408091340169,0.001743378847113888,0.0017301370541219895,0.0017170141032951153,0.0017040086860218317,0.0016911195116334084,0.0016783453071010017,0.0016656848167391942,0.0016531368019150883,0.0016407000407636639,0.0016283733279086018,0.0016161554741887666,0.0016040453063900539,0.0015920416669827416,0.001580143413863687,0.0015683494201039318,0.0015566585737011123,0.001545069777336668,0.0015335819481379976,0.0015221940174448712,0.0015109049305807038,0.0014997136466280833,0.0014886191382086102,0.001477620391267112,0.001466716404859681,0.0014559061909460444,0.0014451887741857325,0.0014345631917381274,0.10256943122767681,0.10235867030848303,0.10173196812957586,0.1007056891947174,0.09930589785466458,0.09756670067944458,0.09552820834519515,0.09323433481742564,0.09073064111833425,0.08806239280702761,0.08527294638627293,0.08240252257247874,0.07948737360182152,0.07655931336905401,0.07364555509695608,0.07076879027596475,0.0679474419366755,0.06519603151426386,0.06252560848791895,0.059944203167768856,0.05748287140814397,0.05517090593095474,0.05299660780000205,0.050946041855281635,0.04897816795406168,0.04708412069604613,0.04526447351569328,0.043518979731000995,0.041846737371383974,0.04024633100493461,0.03871595222546031,0.037253500824268586,0.0358566688164051,0.034523009485550024,0.033249993509209194,0.03203505406611848,0.03087562263917245,0.029769157029235955,0.02871316290060227,0.027705209995843832,0.026742943990216178,0.02582409480608884,0.024946482076139337,0.024108018329652467,0.023306710378148184,0.022540659292876075,0.021808059296116233,0.021212850567429418,0.02083333298741676,0.02046413474895788,0.02010490527185376,0.019755304342973543,0.019415002375479825,0.01908368054182548,0.018761030803817316,0.018446755859393912,0.018140569022590012,0.01784219405051654,0.017551364928920305,0.01726782562595182,0.016991329822178977,0.016721640623480298,0.016458530262311633,0.016201779791862263,0.015951178776780657,0.015706524983482354,0.015467624072449181,0.01523428929445571,0.01500634119224666,0.014783607308856101,0.014565921903460548,0.014353125675447964,0.014145065497166681,0.013941594155671234,0.013742570103650572,0.0135478572196051,0.013357324577272456,0.013170846224212072,0.012988300969414468,0.012809572179753701,0.012634547585072013,0.01246311909164822,0.01229518260380302,0.012130637853361395,0.011969388236695433,0.011811340659066985,0.011656405385977005,0.01150449590124842,0.011355528771554248,0.01120942351711849,0.011066102488322297,0.010925490747947278,0.010787515958809243,0.01065210827653091,0.010519200247217914,0.010388726709809604,0.010260624702886325,0.010134833375717881,0.010011293903358328,0.009889949405588874,0.009770744869525973,0.009653627075720745,0.009538544527576355,0.009425447383930365,0.009314287394644127,0.009205017839056763,0.009097593467164433,0.008991970443395494,0.008888106292852561,0.00878595984990788,0.008685491209035908,0.0085866616777761,0.008489433731726604,0.00839377097146711,0.008299638081325092,0.008207000789893766,0.008115825832220315,0.008026080913587148,0.007937734674807267,0.007850756658968429,0.007765117279554091,0.007680787789879687,0.00759774025378179,0.007515947517504724,0.007435383182725847,0.0073560215806718725,0.007277837747273666,0.007200807399313013,0.007124906911518249,0.007050113294562493,0.006976404173928569,0.006903757769598875,0.006832152876534903,0.00676156884591112,0.006691985567071319,0.006623383450172972,0.00655574340949358,0.006489046847367277,0.006423275638725855,0.00635841211621886,0.006294439055885578,0.006231339663358997,0.006169097560576583,0.006107696772977467,0.006047121717166624,0.0059873571890238664,0.005928388352242905,0.005870200727279807,0.005812780180695605,0.005756112914876115,0.005700100073383183,0.00564378564704691,0.005588213808813876,0.005533371292273687,0.0054792451407966805,0.0054258226985592194,0.005373091601876149,0.005321039770831265,0.005269655401191917,0.005218926956597271,0.0051688431610103025,0.005119392991421354,0.0050705656707960714,0.005022350661256504,0.004974737657487221,0.004927716580357623,0.0048812775707529595,0.004835410983604554,0.004790107382113977,0.004745357532162339,0.004701152396898299,0.004657483131498828,0.004614341078094716,0.004571717760856998,0.004529604881236737,0.0044879943133534555,0.0044468780995264145,0.004406248445944484,0.004366097718467832,0.004326418438559091,0.004287203279337748,0.004248445061753915,0.004210136750877898,0.004172271452299894,0.0041348424086382,0.004097842996150423,0.004061266721445036,0.004025107218289441,0.003989358244511892,0.003954013678992762,0.003919067518743836,0.003884513876071512,0.0038503469758213323,0.003816561152701813,0.0037831508486833683,0.0037501106104718767,0.003717435087052924,0.0036851190273049584,0.0036531572776794794,0.0036215447799448925,0.003590276568993571,0.0035593477707089407,0.0035287535998910803,0.0034984893582388323,0.0034685504323872227,0.0034389322919970524,0.0034096304878967836,0.0033806406502738156,0.0033519584869140255,0.0033235797814885,0.003295500391884748,0.0032677162485826973,0.0032402233530728223,0.0032130177763156453,0.003186095657241583,0.0031594532012888905,0.0031330866789800564,0.003106992424534304,0.00308116683451564,0.0030556063665152415,0.003030307537867539,0.0030052669243979726,0.002980481159202979,0.002955946931460047,0.0029316609852674653,0.002907620118513201,0.0028838211817709923,0.0028602610772243096,0.002836936757616343,0.0028138452252256503,0.0027909835308666192,0.002768348772914487,0.002745938096353156,0.002723748691846567,0.002701777794831879,0.0026800226846342965,0.0026584806836031823,0.0026371491562679284,0.0026160255085143826,0.0025951071867801236,0.002574391677268674,0.002553876505182168,0.00253355923397126,0.002513437464602862,0.002493508834844486,0.0024737710185649565,0.002454221725051053,0.0024348586983399287,0.002415679716566074,0.002396682591323571,0.0023778651670423655,0.0023592253203785175,0.0023407609596182554,0.0023224700240947905,0.0023043504836185043,0.002286400337919451,0.0022686176161021425,0.0022510003761121865,0.002233546704214838,0.0022162547144843055,0.0021991225483046725,0.002182148373881247,0.002165330385762465,0.0021486668043722078,0.0021321558755516582,0.00211579587011131,0.002099585083392259,0.002083521834836693,0.002067604467567711,0.002051831347977378,0.002036200865323935,0.00202071143133705,0.002005361479831353,0.0019901494663278826,0.0019750738676835326,0.0019601331817276487,0.001945325926906505,0.0019306506419347479,0.0019161058854539736,0.0019016902356983494,0.0018874022901665915,0.0018732406653009298,0.0018592039961722897,0.00184529093617176,0.0018315001567082002,0.0018178303469119845,0.0018042802133442185,0.0017908484797120676,0.0017775338865894507,0.0017643351911432092,0.001751251166864778,0.001738280603306698,0.001725422305824587,0.0017126750953238988,0.0017000378080115628,0.0016875092951525335,0.0016750884228306328,0.0016627740717143204,0.0016505651368266894,0.0016384605273198894,0.11455781549196999,0.1143236475280906,0.11362732278845025,0.11248696220702238,0.11093143138058599,0.10899850969041511,0.10673263841337241,0.10418248793844798,0.1013985728177637,0.09843110150339494,0.09532818832096597,0.09213449213816559,0.08889029017871065,0.08563095300669225,0.08238675998071748,0.0791829822318015,0.0760401593295426,0.07297450252623851,0.06999836834364949,0.06712077549391797,0.06438348075672881,0.061811203237876484,0.05939089761283552,0.057110713650817685,0.05493329517691545,0.0528347166508216,0.050816046149940966,0.048877400657024526,0.047018129311439685,0.04523697232762635,0.043532197008942744,0.04190171278562513,0.040343167447432604,0.038854026801824586,0.037431639927183055,0.036073292053964943,0.03477624692779992,0.03353778031120256,0.03235520608058158,0.031225896182997495,0.030147295538392977,0.029116932811332638,0.028132427832518583,0.02719149632443527,0.02629195247665311,0.025431709822882127,0.024608780792543392,0.02390300932235385,0.02347829269847961,0.02306501798705075,0.02266280325124794,0.022271277169284176,0.021890079421962798,0.021518860929196817,0.02115728396249091,0.02080502215623734,0.020461760437052615,0.020127194887355572,0.019801032556785034,0.01948299123282919,0.019172799180198312,0.01887019485685079,0.01857492661325299,0.018286752380321313,0.01800543935051021,0.01773076365573603,0.01746251004510779,0.017200471564886147,0.016944449242597845,0.016694251776838524,0.016449695233942085,0.01621060275243836,0.015976804255962405,0.015748136175097575,0.015524441178473387,0.015305567913295681,0.01509137075540023,0.014881709568809747,0.014676449474719262,0.014475460629771493,0.014278618013444627,0.014085801224328306,0.013896894285057774,0.01371178545563668,0.013530367054877198,0.013352535289676337,0.013178190091833773,0.013007234962131319,0.0128395768213776,0.012675125868135904,0.012513795442855209,0.012355501898123872,0.012200164474786184,0.012047705183655267,0.011898048692572912,0.011751122218571733,0.011606855424908148,0.011465180322734277,0.011326031177199963,0.011189344417772201,0.011055058552574151,0.010923114086556366,0.010793453443312468,0.010666020890373716,0.010540762467811415,0.010417625919991423,0.010296560630330447,0.010177517558912623,0.010060449182825282,0.00994530943909126,0.009832053670069391,0.009720638571207365,0.00961102214103774,0.009503163633305669,0.009397023511134644,0.009292563403129348,0.009189746061326491,0.009088535320908643,0.008988896061594467,0.008890794170633183,0.008794196507324839,0.008699070868997471,0.008605385958373762,0.008513111352265006,0.008422217471528185,0.008332675552233512,0.008244457617984135,0.008157536453337215,0.00807188557827828,0.007987479223697844,0.007904292307830942,0.007822300413612943,0.0077414797669129315,0.007661807215605519,0.007583260209445789,0.007505816780709177,0.007429455525567583,0.007354155586166506,0.007279896633374484,0.007206658850177087,0.0071344229156847325,0.007063169989732848,0.006992881698046172,0.006923540117944585,0.0068551277645688535,0.006787627577602003,0.006721022908469348,0.006655297507995055,0.0065904355144974485,0.006526421442304749,0.0064632401706757,0.0063997475157838,0.006336954249375587,0.006274982310502056,0.006213817148108005,0.006153444548216593,0.00609385062423593,0.006035021807598518,0.005976944838717696,0.005919606758249657,0.005862994898649043,0.005807096876007601,0.005751900582162688,0.005697394177068413,0.0056435660814170615,0.005590404969502226,0.005537899762315065,0.005486039620862876,0.005434813939704593,0.005384212340692863,0.005334224666915961,0.005284840976832727,0.005236051538591375,0.005187846824528447,0.00514021750583899,0.005093154447412859,0.005046648702830754,0.005000691509515173,0.004955274284028692,0.004910388617517068,0.004866026271290023,0.004822179172535603,0.004778839410163992,0.004735999230774448,0.004693651034743611,0.004651787372429141,0.004610400940485212,0.004569484578286878,0.004529031264457657,0.004489034113499238,0.004449486372518158,0.0044103814180468355,0.004371712752955656,0.004333474003453663,0.004295658916173377,0.004258261355339094,0.004221275300014274,0.004184694841426049,0.0041485141803648835,0.004112727624655257,0.00407732958669734,0.004042314581075698,0.004007677222233558,0.003973412222210418,0.003939514388441397,0.003905978621615143,0.003872799913590298,0.003839973345367145,0.003807494085113455,0.003775357386243064,0.0037435585855442877,0.0037120931013585306,0.0036809564318060805,0.003650144153058148,0.003619651917654247,0.0035894754528621163,0.003559610559080785,0.0035300531082840553,0.0035007990425038452,0.003471844372351924,0.0034431851755794833,0.003414817595672178,0.003386737840481184,0.0033589421808881115,0.0033314269495030445,0.0033041885393953058,0.0032772234028546838,0.003250528050183917,0.003224099048520285,0.003197933020686035,0.0031720266440665892,0.0031463766495162552,0.003120979820289528,0.003095832990998723,0.0030709330465961693,0.0030462769213805696,0.003021861598027246,0.0029976841066405827,0.0029737415238294154,0.0029500309718036907,0.0029265496174922094,0.002903294671681176,0.002880263388172007,0.002857453062959184,0.002834861033426681,0.002812484677562777,0.002790321413192714,0.0027683686972290555,0.0027466240249383682,0.002725084929225032,0.0027037489799307804,0.002682613783149906,0.0026616769805599735,0.0026409362487668344,0.0026203892986646155,0.002600033874809569,0.002579867754807647,0.0025598887487154358,0.0025400946984543774,0.0025204834772371313,0.0025010529890069143,0.0024818011678885634,0.002462725977651431,0.0024438254111839725,0.0024250974899790194,0.0024065402636304673,0.002388151809340352,0.002369930231436308,0.002351873660899363,0.0023339802549011625,0.0023162481963512685,0.0022986756934536613,0.0022812609792724104,0.0022640023113062765,0.002246897971072297,0.0022299462636973873,0.002213145517518746,0.0021964940836921784,0.002179990335808308,0.002163632669516792,0.0021474195021576204,0.0021313492724002597,0.002115420439889795,0.0020996314849000826,0.0020839809079940294,0.002068467229690148,0.0020530889901360957,0.0020378447487884345,0.0020227330840986765,0.002007752593205424,0.0019929018916327074,0.00197817961299372,0.0019635844087007416,0.001949114947680388,0.0019347699160943313,0.0019205480170656057,0.001906447970409657,0.00189246851237096,0.0018786083953643848,0.0018648663877215148,0.12747103022407577,0.1272118755587106,0.12644122533835755,0.1251790629652687,0.12345722520000862,0.12131738858127535,0.11880859193131285,0.1159845585197585,0.11290106917622458,0.10961359190101738,0.10617530860101056,0.1026356103894981,0.09903907136531066,0.09542486408379161,0.09182655041124438,0.08827216782102087,0.08478453004384377,0.08138166824049645,0.07807735072401269,0.07488258258378296,0.07185178321488189,0.06900202906051199,0.06631917168628222,0.06379040440260114,0.06139063768184673,0.05907675627314859,0.05684785695733726,0.05470454641291031,0.05264653500638482,0.050672813703432046,0.04878180673603411,0.04697150175270731,0.0452395595444745,0.0435834055875783,0.042000305641843455,0.04048742754395663,0.03904189117644436,0.03766080840420866,0.03634131457047861,0.03508059294647759,0.033875893341551014,0.03272454590821579,0.0316239710215241,0.030571685974809585,0.029565309114255606,0.028602561931072055,0.027681269541590545,0.026843978902672216,0.026370364117739523,0.02590938143044425,0.02546061754795501,0.025023669805268885,0.024598146717328642,0.024183668350706105,0.023779866546091332,0.023386385018120612,0.02300287935495273,0.022629016936546544,0.02226447678760864,0.021908949378627356,0.021562136386284424,0.021223750422659456,0.020893514741105106,0.020571162925349797,0.020256438567237058,0.01994909493760577,0.01964889465397,0.019355609348007393,0.0190690193352851,0.01878891328917814,0.018515087920516315,0.018247347664186005,0.017985504373601663,0.017729377023744098,0.01747879142326467,0.017233579935978863,0.016993581211964127,0.016758639928341677,0.016528606539747286,0.016303337038419918,0.01608269272378105,0.015866539981320732,0.015654750070592936,0.01544719892207003,0.015243766942603067,0.015044338829216278,0.014848803390944049,0.014657053378434252,0.014468985321017081,0.014284499370953009,0.014103499154573292,0.013925891630022011,0.013751586951330731,0.013580498338547438,0.013412541953657335,0.013247636782039177,0.013085704519211367,0.012926669462622256,0.01277045840826347,0.012617000551878005,0.012466227394552947,0.012318072652495625,0.012172472170791714,0.012029363840967451,0.011888687522171568,0.011750384965809156,0.01161439974346483,0.01148067717796257,0.01134916427740877,0.011219809672086108,0.011092563554058434,0.01096737761936131,0.010844205012658547,0.01072300027424462,0.010603719289289375,0.01048631923921632,0.010370758555116438,0.01025699687310467,0.010144994991524806,0.010034714829923397,0.009926119389707245,0.009819172716408467,0.009713839863483866,0.009610086857579964,0.009507880665193317,0.009407189160668473,0.009307981095469535,0.009210226068669322,0.00911389449860335,0.009018957595632593,0.00892538733597172,0.008833156436531351,0.008742238330731813,0.008652607145245161,0.008564237677626896,0.008477105374794697,0.008391186312323145,0.008306457174515105,0.008222895235218452,0.00814047833935698,0.008059184885142515,0.007978993806943344,0.007899884558778589,0.007821837098413505,0.0077448318720313184,0.007668849799455237,0.007593872259901823,0.007519881078240844,0.007446858511742405,0.007374787237290931,0.0073036503390487605,0.00723244802156822,0.0071617321314815015,0.00709193812546879,0.007023049715362797,0.006955050989483484,0.006887926401833876,0.0068216607616655555,0.006756239223396921,0.0066916472768714505,0.006627870737942475,0.006564895739372852,0.006502708722034967,0.006441296426402965,0.00638064588432364,0.006320744411056183,0.0062615795975715345,0.00620313930309923,0.00614541164791574,0.006088385006362789,0.0060320480000882444,0.005976389491501964,0.005921398577436409,0.005867064583007832,0.005813377055668363,0.005760325759442936,0.005707900669344393,0.0056560919659609755,0.005604890030208124,0.005554285438241604,0.005504268956524044,0.005454831537040328,0.005405964312657328,0.005357658592620826,0.005309905858187732,0.005262697758386833,0.005216026105904331,0.005169882873090704,0.005124260188082607,0.0050791503310387365,0.005034545730483764,0.004990438959757488,0.004946822733565588,0.004903689904629147,0.004861033460428018,0.004818846520037268,0.004777122331051941,0.004735854266597789,0.004695035822425781,0.00465466061408599,0.0046147223741805545,0.004575214949691497,0.004536132299381728,0.004497468491266601,0.004459217700154528,0.004421374205252848,0.004383932387839048,0.004346886728993635,0.004310231807393403,0.004273962297163647,0.004238072965785999,0.004202558672062231,0.00416741436413077,0.004132635077534893,0.004098215933341431,0.00406415213630708,0.004030438973092796,0.003997071810523388,0.003964046093891576,0.003931357345304927,0.003899001162075063,0.0038669732151464485,0.003835269247565457,0.003803885072987149,0.003772816574219183,0.003742059701802151,0.0037116104726240134,0.0036814649685694384,0.003651619335201637,0.0036220697804764264,0.0035928125734873153,0.003563844043241321,0.003535160577463383,0.003506758621430198,0.00347863467683147,0.003450785300658191,0.0034232071041176205,0.0033958967515730176,0.003368850959509048,0.003342066495520991,0.0033155401773274536,0.0032892688718063577,0.0032632494940524367,0.0032374790064572086,0.0032119544178095863,0.0031866727824171235,0.003161631199247185,0.003136826811087946,0.003112256803727517,0.0030879184051523386,0.003063808884763125,0.003039925552608262,0.003016265758634673,0.0029928268919544878,0.0029696063801286465,0.0029466016884658465,0.002923810319336933,0.0029012298115041932,0.00287885773946549,0.002856691712811999,0.002834729375600435,0.0028129684057384293,0.0027914065143830715,0.0027700414453525907,0.0027488709745499616,0.0027278929093992473,0.0027071050882936324,0.0026865053800549715,0.002666091683405015,0.0026458619264470656,0.002625814066158984,0.0026059460878964445,0.002586256004906482,0.0025667418578509955,0.0025474017143403286,0.002528233668475789,0.002509235840402057,0.0024904063758684016,0.0024717434457987766,0.0024532452458708148,0.002434909996102801,0.002416735940449383,0.0023987213464051246,0.002380864504615918,0.0023631637284983547,0.002345617353866109,0.002328223738564166,0.0023109812621099853,0.0022938883253417032,0.00227694335007318,0.002260144778755934,0.0022434910741471713,0.002226980718984698,0.002210612215667812,0.002194384085944327,0.0021782948706038194,0.00216234312917622,0.0021465274396366067,0.0021308463981153398,0.0021152986186137018,0.09980608292140744,0.0996714562185753,0.09926991001803762,0.09860834229950655,0.09769791254492464,0.096553565173246,0.09519341672567481,0.09363805273671584,0.09190978306079274,0.09003190215332565,0.08802799439613469,0.08592131541424167,0.08373426998021817,0.08148799691735675,0.07920206243826582,0.07689425622785513,0.07458047954856793,0.07227471164642242,0.06998903949473127,0.06773373604544773,0.06551737325781047,0.0633469578638556,0.061228079800357244,0.059165065251218577,0.05716271375813911,0.055249917752364264,0.053431615768234894,0.05170164425343591,0.050054333345239024,0.04848312999199021,0.04696395225181126,0.04548999223692348,0.0440616872564778,0.042679121818836464,0.04134208331130458,0.0400501117216018,0.0388025436477909,0.037598550940016365,0.036437174375801594,0.035317352800014974,0.034237948168025986,0.03319776692255513,0.03219557811592598,0.03123012866368571,0.030300156085973143,0.029684027973741985,0.029197375778834255,0.028721572302363472,0.028256410272481238,0.027801673826182555,0.027357140728271348,0.0269225842858536,0.02649777499393931,0.026082481944153836,0.025676474025199625,0.025279520940671592,0.024891394066974958,0.02451186717156452,0.02414071700940681,0.023777723813473657,0.023422671693245162,0.02307534895349527,0.022735548344180338,0.022403067250921248,0.02207770783439184,0.02175927712591902,0.021447587085656514,0.02114245462890511,0.02084370162543827,0.02055115487606855,0.020264646070127575,0.019984011727077474,0.019709093125016917,0.019439736218494107,0.019175791547709563,0.01891711414089507,0.018663563411429347,0.018415003051010393,0.018171300920026893,0.017932328936102082,0.017697962961642808,0.01746808269108596,0.017242571538450872,0.017021316525684928,0.016804208172220555,0.016591140386092208,0.016382010356884205,0.01617671845075004,0.015975168107676192,0.015777265741133157,0.015582920640226143,0.015392044874412526,0.0152045532008509,0.015020362974403666,0.014839394060310063,0.014661568749525063,0.01448681167671178,0.014315049740853895,0.014146212028462045,0.013980229739324019,0.013817036114752617,0.013656566368280191,0.013498757618734423,0.01334354882564601,0.01319088072691748,0.013040695778693108,0.012892938097364212,0.01274755340364672,0.012604488968660505,0.01246369356195329,0.012325117401399103,0.012188712104910125,0.012054430643900986,0.011922227298439433,0.011792057614030446,0.011663878359970233,0.011537647489214766,0.011413324099709505,0.011290868397121206,0.011170241658926395,0.011051406199801148,0.010934325338265119,0.010818963364531867,0.010705285509521677,0.0105932579149882,0.010482847604722399,0.010374022456788281,0.0102667511767524,0.010161003271870575,0.010056749026190612,0.009953959476541782,0.009852606389372891,0.00975266223840759,0.009654100183085578,0.009556894047760923,0.009461018301624317,0.00936644803932727,0.009273158962277145,0.00918112736057881,0.009090330095599631,0.009000744583130162,0.00891234877712313,0.008825121153984766,0.008739040697399171,0.008654086883666577,0.00857023966753272,0.008487479468495538,0.0084057871575678,0.008325144044480237,0.008245531865308008,0.008166605350080354,0.008087419654657415,0.008009252692972302,0.007932086815197796,0.00785590476851141,0.0077806896861129776,0.007706425076596385,0.00763309481366685,0.0075606831261878,0.007489174588546881,0.007418554111328709,0.007348806932285023,0.007279918607587979,0.0072118750033609074,0.007144662287473239,0.00707826692159158,0.007012675653478404,0.006947875509527071,0.006883853787528555,0.006820598049658863,0.006758096115680405,0.006696336056350896,0.006635306187029727,0.006574995061478646,0.006515391465847443,0.006456484412839339,0.0063982631360494785,0.00634071708447187,0.006283835917166477,0.0062276094980842165,0.006172027891042426,0.006117081354846271,0.006062760338552232,0.0060090554768663885,0.005955957585676541,0.0059034576577109334,0.0058515468583206064,0.005800216521381956,0.005749458145313257,0.005699263389204624,0.005649624069055341,0.005600532154116051,0.005551979763332351,0.005503959161887031,0.005456462757836063,0.0054094830988380225,0.005363012868971857,0.005317044885641093,0.0052715720965622334,0.005226587576832995,0.005182084526080253,0.005138056265683471,0.005094496236072094,0.00505139799409416,0.005008755210454953,0.004966561667221621,0.004924811255394143,0.004883497972538917,0.0048426159204836465,0.004802159303072332,0.004762122423976737,0.004722499684565012,0.004683285581824113,0.004644474706334892,0.004606061740298988,0.00456804145561423,0.004530408711999467,0.004493158455165589,0.004456285715032268,0.004419785603988605,0.004383653315197407,0.0043478841209399505,0.004312473371002334,0.00427741649110073,0.004242708981344747,0.004208346414738573,0.0041743244357172,0.004140638758718753,0.004107285166790458,0.0040742595102279166,0.004041557705246556,0.0040091757326849295,0.003977109636737614,0.003945355523718755,0.003913909560853961,0.0038827679751004224,0.003851927051994714,0.0038213831345263656,0.003791132622038211,0.0037611719691515145,0.003731497684715614,0.003702106330781881,0.003672994521600064,0.003644158922638175,0.0036155962496239565,0.0035873032676079055,0.0035592767900471715,0.0035315136779101586,0.0035040108388002464,0.003476765226099591,0.0034497738381313865,0.003423033717340469,0.0033965419494922326,0.003370295662888164,0.0033442920275991534,0.0033185282547150185,0.0032930015956101964,0.003267709341225155,0.0032426488213635057,0.0032178174040033425,0.0031932124946239455,0.003168831535546318,0.0031446720052876356,0.0031207314179296,0.0030970073224993056,0.003073497302363674,0.003050198974636191,0.0030271099895958307,0.0030042280301183907,0.002981550811118771,0.002959076079005405,0.002936801611145452,0.0029147252153409672,0.0028928447293155844,0.0028711580202119406,0.002849662984098557,0.0028283575454872392,0.002807239656859845,0.002786307298204458,0.0027655584765610653,0.0027449912255757,0.002724603605063903,0.002704393700582481,0.0026843596230097314,0.0026644995081340503,0.0026448115162500596,0.0026252938317631266,0.002605944662801197,0.002586762240834268,0.0025677448203010084,0.002548890678242886,0.0025301981139447083,0.0025116654485825363,0.0024932910248780236,0.002475073206759301,0.002457010379028462,0.0024391009470348577,0.002421343336354967,0.0024037359924779893,0.0023862773804973875,0.11066148362345102,0.11051261868085674,0.11006860225974624,0.10933705500326715,0.10833030562762502,0.10706486459361397,0.10556074729886596,0.10384069751935222,0.10192936495792547,0.09985248824837581,0.09763612768532808,0.09530598185338209,0.09288681089908725,0.09040197794356493,0.08787311022460044,0.08531987368783675,0.0827598491922443,0.08020849518399377,0.07767918032165184,0.07518326968231744,0.0727302493915935,0.07032787638529003,0.06798234218467322,0.06569844179016182,0.06348365556268774,0.06137132958738958,0.05936265283383792,0.05745092170972326,0.05562996379890021,0.053894088721561303,0.05222720706600014,0.050608464159609734,0.04903817245487009,0.047516637172733446,0.046043819116323846,0.04461938974813848,0.043242780255826715,0.041913224900232526,0.0406297990201745,0.039391452115004215,0.0381970364464346,0.03704533160240627,0.035935065453469965,0.034864931910523235,0.03383360586549908,0.033097263964406945,0.03255947642371091,0.032033472009878765,0.03151904078167506,0.031015961712395047,0.030524005263938475,0.030042935617535613,0.02957251260023806,0.029112493342514822,0.028662633698708993,0.028222689458851907,0.027792417377248583,0.027371576040493468,0.02695992659504587,0.02655723335219267,0.026163264286206113,0.025777791439623877,0.025400591247949727,0.025031444794605694,0.02467013800563786,0.024316461792550047,0.023970212150583543,0.023631190218861543,0.02329920230801666,0.022974059900210113,0.02265557962581072,0.022343583220485082,0.022037897465929893,0.021738354117077596,0.021444789818224896,0.02115704601019722,0.020874968830398494,0.020598409007318387,0.020327221750866622,0.02006126663970214,0.01980040750656552,0.01954451232245957,0.01929345308042135,0.019047105679489185,0.01880534980938879,0.018568068836375077,0.018335149690580657,0.018106482755181414,0.01788196175760962,0.01766148366301331,0.017444948570115693,0.017232259609583026,0.017023322844999227,0.01681804717649794,0.01661634424709285,0.016418128351723724,0.01622331634902455,0.01603182757579137,0.01584358376414159,0.0156585089613204,0.015476529452119116,0.015297573683859676,0.015121572193886414,0.014948457539518066,0.014778164230394028,0.014610628663155057,0.014445789058394694,0.014283585399818726,0.01412395937554063,0.01396685432145749,0.013812215166632731,0.013659988380624087,0.013510121922694367,0.013362565192835253,0.013217268984550971,0.013074185439333669,0.012933268002774057,0.012794471382250292,0.01265775150613322,0.012523065484460263,0.012390371571018863,0.012259629126790097,0.012130798584700767,0.012003841415638644,0.011878720095677014,0.01175539807447158,0.011633839744779564,0.01151401041306084,0.011395876271121857,0.011279404368757937,0.011164562587362875,0.011051319614463923,0.01093964491914963,0.010829508728355442,0.010720882003976709,0.010613736420773246,0.01050804434504126,0.010403778814019344,0.010300913516002102,0.01019942277113632,0.010099281512869413,0.010000465270031572,0.009902950149523306,0.009806712819587227,0.009711730493643659,0.00961798091466461,0.009525442340071898,0.009434093527135643,0.009343913718856199,0.009254882630311136,0.009166980435451881,0.009078486722741646,0.008991047093837377,0.008904723480975311,0.008819496708020277,0.008735348026722283,0.008652259104970443,0.008570212015427157,0.008489189224525595,0.008409173581818075,0.00833014830966422,0.008252096993242973,0.008175003570881504,0.008098852324686425,0.008023627871467673,0.007949315153944444,0.007875899432224522,0.007803366275543917,0.007731701554262366,0.007660891432102161,0.007590922358623256,0.007521781061927204,0.007453454541579143,0.007385930061744335,0.007319195144528936,0.007253237563519052,0.007188045337511234,0.007123606724428752,0.0070599102154149315,0.006996944529100875,0.006934698606039451,0.006873161603300498,0.006812322889223097,0.00675217203831687,0.006692698826310963,0.0066338932253433135,0.006575745399286627,0.006518245699206052,0.0064613846589457735,0.00640515299083735,0.006349541581529538,0.006294541487933009,0.006240143933277341,0.006186340303277298,0.006133122142402668,0.006080481150251516,0.006028409178021352,0.005976898225075664,0.005925940435603951,0.005875528095369808,0.005825653628547509,0.005776309594641991,0.005727488685490707,0.005679183722344469,0.005631387653025696,0.005584093549159754,0.005537294603479815,0.005490984127200977,0.0054451555474623785,0.00539980240483576,0.005354918350896672,0.005310497145859011,0.0052665326562690365,0.005223018852757871,0.005179949807851327,0.00513731969383348,0.005095122780665012,0.005053353433952819,0.005012006112970094,0.004971075368725367,0.004930555842079553,0.0048904422619081575,0.004850729443309466,0.004811412285855801,0.00477248577188716,0.004733944964846609,0.004695785007654673,0.004658001121123636,0.004620588602409312,0.004583542823499567,0.004546859229738643,0.004510533338386755,0.004474560737212509,0.004438937083119297,0.0044036581008032386,0.004368719581442238,0.004334117381415923,0.004299847421054103,0.004265905683414902,0.004232288213090416,0.004198991115039543,0.004166010553447853,0.004133342750612213,0.0041009839858515825,0.00406893059444172,0.004037178966573875,0.004005725546336535,0.003974566830720308,0.003943699368643823,0.003913119760002094,0.0038828246547352716,0.0038528107519178114,0.003823074798867887,0.0037936135902753233,0.0037644239673492686,0.0037355028169837896,0.003706847070941493,0.0036784537050545394,0.0036503197384431555,0.003622442232749849,0.003594818291390773,0.0035674450588223743,0.0035403197198235785,0.003513439498793318,0.003486801659061998,0.0034604035022180774,0.0034342423674481844,0.0034083156308909444,0.00338262070500439,0.0033571550379457257,0.0033319161129644137,0.0033069014478073412,0.0032821085941361094,0.0032575351369560196,0.0032331786940570173,0.0032090369154650746,0.0031851074829053385,0.0031613881092756244,0.0031378765381303783,0.003114570543175251,0.003091467927770945,0.003068566524447549,0.0030458641944280567,0.0030233588271612695,0.0030010483398637787,0.0029789306770711364,0.0029570038101971075,0.002935265737102084,0.002913714481669467,0.0028923480933901826,0.0028711646469554656,0.0028501622418568035,0.0028293390019940644,0.0028086930752907456,0.002788222633316562,0.0027679258709172897,0.002747801005851121,0.0027278462784323097,0.002708059951181192,0.0026884403084807824,0.12227488137598806,0.12211082737037447,0.1216215044939548,0.1208153040334931,0.11970580155136698,0.11831117746789516,0.11665347198867485,0.11475773022255492,0.1126510967781254,0.11036191636194581,0.10791888910703017,0.10535031824428118,0.10268347514750165,0.09994409440460172,0.09715600066217697,0.09434086033126816,0.09151804513027348,0.08870459079851653,0.08591523280569732,0.08316250104451064,0.0804568568286522,0.07780685757058182,0.07521933690497154,0.07269959046938129,0.07026022301624057,0.06793716558195106,0.06572722388018919,0.06362315328604398,0.06161827604983637,0.05970642969986454,0.05787985507160381,0.056110686993856164,0.05439239128866729,0.052725560379917366,0.05111038892305673,0.04954673437943576,0.04803417137239098,0.04657204004130371,0.04515948871783779,0.04379551131709774,0.042478979873674445,0.0412086726667384,0.03998329837523525,0.03880151668912975,0.03766195577963657,0.036781732786728964,0.036189679787703016,0.035610349721369096,0.03504353482635881,0.034489013191763764,0.033946551738131124,0.03341590881262369,0.03289683644102763,0.032389082275388476,0.031892391272280815,0.03140650713327516,0.030931173535855203,0.03046613518007871,0.03001113867353002,0.029565933274604456,0.02913027151194646,0.0287039096958007,0.02828660833522627,0.02787813247350254,0.02747825195256822,0.027086741616081766,0.02670338145949937,0.026327956734560738,0.025960258014669894,0.025600081226849904,0.02524722765523082,0.024901503920439775,0.024562721938667084,0.02423069886372719,0.023905257014997718,0.023586223793730078,0.023273431589923125,0.022966717681632425,0.022665924128350924,0.0223708976598651,0.02208148956180553,0.02179755555891664,0.02151895569695487,0.021245554223962605,0.020977219471564612,0.020713823736839235,0.020455243165208574,0.020201357634747143,0.019952050642212817,0.01970720919106502,0.019466723681681182,0.019230487803930035,0.01899839843224376,0.018770355523277146,0.018546262016227884,0.018326023735862965,0.01810954929828202,0.017896750019416888,0.017687539826275037,0.017481835170899376,0.017279554947020503,0.01708062040936688,0.016884955095581695,0.01669248475070806,0.016503137254179952,0.01631684254926592,0.016133532574902475,0.015953141199859248,0.015775604159163955,0.015600858992732286,0.015428844986130697,0.015259503113408823,0.015092775981938754,0.014928607779190764,0.01476694422138974,0.014607732503983754,0.01445092125386551,0.014296460483287515,0.014144301545407151,0.013994397091411355,0.013846701029159268,0.013701168483290857,0.013557755756747392,0.013416420293655465,0.013277120643518244,0.01313981642667444,0.013004468300971577,0.012871037929611896,0.012739487950127396,0.012609781944438566,0.012481884409962075,0.012355760731723675,0.012231377155440763,0.012108700761537588,0.011987699440060135,0.011868341866452352,0.011750597478167578,0.011634436452079714,0.011519829682665116,0.011406748760928677,0.011295165954041118,0.011185054185667582,0.011076387016956839,0.010969138628168661,0.010863283800916248,0.010758797900997652,0.010655656861799326,0.01055383716824686,0.010453315841284653,0.010354070422863838,0.010256078961422384,0.01015797583668444,0.01006047617451849,0.009964216729717541,0.0098691762555354,0.009775333977990377,0.009682669582927636,0.0095911632034989,0.009500795408040498,0.009411547188336648,0.009323399948255755,0.009236335492742113,0.009150336017155796,0.009065384096944346,0.008981462677636116,0.008898555065143567,0.008816644916366705,0.008735716230082992,0.008655753338118242,0.008576740896785146,0.008498663878581655,0.008421507564140871,0.00834525753442098,0.008269899663131117,0.008195420109381846,0.008121805310554,0.008049041975378127,0.007977117077218437,0.00790601784755164,0.007835731769637817,0.00776624657237437,0.007697550224327493,0.007629630927936622,0.00756247711388305,0.0074960774356213,0.007430420764064937,0.007365496182423042,0.007301292981182019,0.007237800653229116,0.007175008889110442,0.007112907572422741,0.007051486775331981,0.006990736754215462,0.006930647945424726,0.006871210961162475,0.006812416585473656,0.006754255770344347,0.0066967196319061536,0.006639799446743385,0.006583486648297681,0.006527772823370037,0.006472649708715047,0.0064181091877253535,0.006364143287203327,0.006310744174218175,0.006257904153043696,0.006205615662177187,0.006153871271434878,0.006102663679122312,0.006051985709278199,0.006001830308987362,0.005952190545763628,0.0059030596049984485,0.0058544307874740355,0.005806297506939862,0.0057586532877484985,0.005711491762551962,0.005664806670054671,0.005618591852822184,0.005572841255144014,0.005527548920949498,0.005482708991773514,0.00543831570477305,0.005394363390791369,0.005350846472468988,0.005307759462400799,0.005265096961336275,0.0052228536564238775,0.005181024319496702,0.005139603805398991,0.0050985870503519725,0.005057969070358863,0.005017744959646082,0.004977909889142096,0.004938459104991009,0.004899387927100727,0.00486069174772515,0.004822366030077936,0.00478440630697907,0.004746808179531938,0.004709567315830352,0.004672679449695512,0.004636140379440427,0.0045999459666631656,0.0045640921350666485,0.004528574869304911,0.0044933902138549085,0.004458534271913883,0.00442400320432004,0.004389793228497994,0.004355900617426874,0.004322321698630887,0.004289052853192442,0.004256090514785624,0.004223431168731593,0.004191071351073802,0.004159007647673145,0.00412723669332238,0.004095755170879868,0.004064559810420794,0.004033647388407228,0.004003014726875261,0.003972658692639163,0.00394257619651271,0.003912764192545784,0.0038832196772778083,0.0038539396890061328,0.0038249213070695467,0.003796161651146953,0.0037676578805695853,0.0037394071936480704,0.00371140682701284,0.0036836540549679163,0.0036561461888577535,0.003628880576447206,0.0036018546013131584,0.0035750656822490946,0.0035485112726811982,0.003522188860096017,0.0034960959654798374,0.00347023014276844,0.003444588978308337,0.0034191700903282865,0.00339397112842116,0.0033689897730358478,0.0033442237349793997,0.0033196707549280687,0.003295328602948491,0.0032711950780277585,0.0032472680076124695,0.003223545247156904,0.0032000246796791694,0.0031767042153264427,0.0031535817909480388,0.003130655369676607,0.003107922940517491,0.003085382517945116,0.0030630321415076197,0.0030408698754384365,0.003018893808275243,0.1346432942359355,0.13446310931816252,0.13392567053344884,0.1330401873743117,0.13182155917769453,0.13028973931135998,0.1284689175911306,0.12638658221437493,0.12407252626910113,0.12155786083928286,0.11887408816976218,0.1160522761530086,0.11312236159301846,0.11011259612041456,0.10704913666902523,0.10395577292660858,0.10085377746976495,0.09776186029991543,0.09469620784476539,0.09167058666884632,0.08869649360192049,0.08578333624509399,0.08293863043750054,0.08016820394831219,0.07749314015040548,0.07494792422661727,0.0725256111759719,0.0702184145530704,0.06801914857495531,0.06592117446664968,0.06391835214990378,0.06199395842556781,0.060123094920916643,0.05830594599965421,0.056543011501366584,0.05483440011035809,0.053179889099843156,0.051578977891568366,0.05003093567606001,0.04853484343408658,0.04708963075859384,0.04569410790734493,0.04434699352619593,0.04304693847718751,0.041792546189252225,0.04074189052340409,0.04009262479021146,0.03945700892110006,0.03883484359739415,0.03822591161913448,0.03762998134949063,0.03704680972746696,0.03647614489508416,0.03591772848124661,0.03537129758061812,0.03483658646223832,0.0343133280391135,0.03380125512686815,0.0333001015166019,0.03280960288437485,0.03232949755735123,0.03185952715435875,0.03139943711664962,0.03094897714284967,0.03050790154043702,0.030075969504703856,0.02965294533481174,0.02923859859543937,0.02883270423148949,0.02843504264242862,0.028045399722004535,0.027663566868423552,0.027289340969395934,0.026922524365929214,0.02656292479826503,0.026210355336890753,0.025864634301230354,0.025525585168231942,0.025193036472809835,0.024866821701825192,0.024546779183071004,0.024232751970510193,0.023924587726871782,0.023622138604522627,0.02332526112541945,0.023033816060826745,0.02274766831136452,0.022466686787892255,0.022190744293626698,0.02191971740783779,0.02165348637141032,0.021391934974488446,0.02113495044640584,0.02088242334803417,0.020634247466668885,0.020390319713533736,0.020150540023967593,0.01991481126031999,0.019683039117587495,0.01945513203178612,0.01923100109105008,0.019010559949441543,0.018793724743429698,0.01858041401101456,0.018370548613440344,0.01816405165945259,0.017960848432044336,0.017760866317635564,0.017564034737619503,0.017370285082223963,0.01717955064661609,0.016991766569190873,0.016806869771979913,0.01662479890310984,0.016445494281256582,0.016268897842024052,0.01609495308618762,0.015923605029743285,0.015754800155694814,0.015588486367529181,0.015424612944315231,0.015263130497372298,0.015103990928452304,0.014947147389385042,0.014792554243127427,0.01464016702617545,0.01448994241228352,0.014341838177445266,0.014195813166092726,0.014051827258463023,0.013909841339098205,0.013769817266429932,0.01363171784341285,0.013495506789165895,0.013361148711587719,0.013228609080903892,0.01309785420411972,0.012968851200339233,0.012841567976920239,0.012715973206436589,0.01259203630441254,0.012469727407807621,0.012349017354219645,0.01222987766178037,0.012112280509721116,0.011996198719577897,0.011881605737019688,0.011768475614272415,0.011656782993118177,0.011546503088448942,0.011437611672355845,0.01132928423322354,0.011220911890042418,0.011113913465887653,0.011008265493798658,0.010903945027477347,0.010800929627087204,0.010699197345508409,0.010598726715028694,0.01049949673445524,0.010401486856633106,0.010304676976356272,0.01020904741865432,0.010114578927446077,0.010021252654543948,0.009929050148997432,0.009837953346765547,0.009747944560702845,0.009659006470853245,0.009571122115036985,0.009484274879722213,0.00939844849117248,0.009313627006857032,0.009229794807119813,0.009146936587094786,0.00906503734886072,0.008984082393826769,0.008904057315342646,0.008824947991522246,0.00874674057827835,0.008669421502557877,0.008592977455772205,0.008517395387417187,0.008442662498873554,0.008368766237385776,0.008295694290210731,0.008223434578931505,0.008151975253931977,0.00808130468902416,0.008011411476227201,0.007942284420690412,0.007873912535756719,0.007806285038161855,0.007739391343365963,0.007673221061010968,0.007607763990502926,0.007543010116713413,0.00747894960579638,0.0074155728011184915,0.007352870219296257,0.007290832546340497,0.007229450633902136,0.007168715495617229,0.007108618303547913,0.007049150384717408,0.006990303217733687,0.006932068429502423,0.006874437792024163,0.006817403219274035,0.006760956764162153,0.006705090615570255,0.006649797095465162,0.0065950686560847,0.0065408978771946385,0.006487277463415215,0.006434200241613299,0.006381659158360871,0.006329647277456014,0.006278157777505314,0.006227183949565705,0.006176719194844896,0.006126757022456597,0.006077291047231764,0.006028314987582332,0.005979822663416451,0.005931807994104577,0.005884264996493077,0.005837187782966411,0.005790570559554951,0.005744407624087565,0.005698693364387825,0.0056534222565131475,0.005608588863033958,0.005564187831354297,0.0055202138920707085,0.005476661857369286,0.005433526619460146,0.005390803149046785,0.005348486493831586,0.0053065717770548766,0.005265054196067132,0.005223929020934084,0.0051831915930721905,0.005142837323915758,0.005102861693613516,0.005063260249754243,0.0050240286061206335,0.0049851624414712714,0.004946657498348445,0.00490850958191315,0.004870714558805141,0.00483326835602778,0.00479616695985773,0.004759406414777138,0.00472298282242993,0.004686892340600061,0.004651131182211664,0.004615695614350594,0.004580581957307124,0.004545786583638043,0.004511305917249507,0.004477136432498716,0.004443274653314431,0.004409717152336338,0.004376460550071403,0.00434350151406865,0.004310836758110584,0.004278463041421201,0.004246377167890819,0.004214575985315771,0.004183056384654593,0.004151815299298767,0.00412084970435849,0.00409015661596261,0.00405973309057317,0.0040295762243128305,0.0039996831523065445,0.003970051048035961,0.003940677122706636,0.003911558624628134,0.0038826928386055982,0.0038540770853440188,0.0038257087208638228,0.0037975851359278506,0.0037697037554798437,0.003742062038093105,0.003714657475430524,0.0036874875917146635,0.0036605499432080745,0.0036338421177034936,0.003607361734024121,0.0035811064415327038,0.003555073919650594,0.0035292618773855727,0.003503668052868564,0.003478290212899394,0.0034531261525003122,0.0034281736944786023,0.0034034306889969422,0.0033788950131517777,0.14839664184258367,0.14819854845051245,0.14760769162221463,0.14663418934397998,0.14529441077032756,0.14361027774825058,0.1416083666749921,0.13931887802458165,0.13677454501880104,0.1340095495725457,0.1310585042361538,0.1279555454483953,0.12473356824377925,0.12142361763905543,0.11805443878486672,0.11465217754001922,0.1112402157685026,0.10783912127826278,0.10446669050923155,0.10113806227776713,0.09786588249526823,0.09466050225139394,0.0915301945326189,0.08848137779127188,0.08554856769289754,0.08275832354032507,0.08010159897455114,0.07757003645120139,0.07515591280057017,0.07285208378994817,0.07065193404048743,0.06854876319490971,0.06651378520331389,0.06453437440569919,0.06261142308547177,0.06074537030974598,0.058936267250717746,0.05718383626009634,0.055487523828028275,0.05384654768594774,0.052259938398432966,0.05072657584173404,0.04924522099330551,0.04781454346392219,0.046433145197175174,0.04517618596378879,0.04446392565787779,0.0437662698939749,0.043083034969549364,0.04241401469023121,0.0417589843560522,0.041117704265104735,0.04048992278424298,0.03987537903252021,0.03927380521913621,0.0386849286739729,0.03810847360516397,0.037544162614820666,0.03699171800091137,0.03645086287038025,0.03592132208599114,0.035402823066926326,0.03489509646100058,0.0343978767043787,0.03391090248286788,0.033433917107305484,0.03296666881407513,0.03250891100053573,0.03206040240398696,0.031620907231786545,0.0311901952493048,0.030768041831636003,0.030354227984232086,0.029948540337014388,0.029550771115959426,0.029160718095636563,0.028778184535778694,0.028402979104538876,0.028034915790772018,0.027673813807367727,0.027319497487408417,0.02697179617466847,0.026630544109802767,0.026295580313356815,0.025966748466593692,0.025643896790990696,0.025326877927121405,0.02501554881356217,0.02470977056633726,0.024409408359352278,0.024114331306194326,0.023824412343598455,0.023539528116853208,0.023259558867342385,0.022984388322397256,0.022713903587588548,0.022447995041565593,0.022186556233504743,0.021929483783234754,0.02167667728405815,0.021428039208288674,0.02118347481550692,0.020942892063512093,0.02070620152196207,0.02047331628865803,0.020244151908441636,0.020018626294656863,0.01979665965313215,0.01957817440861926,0.01936309513364548,0.019151348479710804,0.01894286311077237,0.01873756963895823,0.018535400562438208,0.018336290205401586,0.018140174660069862,0.017946991730684904,0.017756680879413785,0.017569183174100427,0.01738444123781558,0.017202399200136984,0.01702300265010547,0.016846198590799367,0.01667193539547491,0.01650016276521035,0.016330831688013043,0.016163894399328884,0.01599930434390889,0.015837016138985593,0.015676985538707142,0.015519169399791883,0.01536352564835401,0.01521001324785993,0.015058592168174142,0.014909223355657638,0.014761868704274216,0.014616491027677021,0.014473054032232861,0.01433152229095271,0.014191861218297113,0.014054037045819609,0.013918016798624165,0.013783768272602671,0.013651260012425098,0.01352046129025747,0.013391342085175579,0.013263873063256474,0.013138025558317928,0.013013771553284943,0.012891083662159332,0.01276993511257354,0.012650277913328789,0.012529675207401387,0.012410596428252374,0.012293015624814094,0.012176907420072559,0.012062246995466779,0.011949010075786873,0.011837172914548012,0.011726712279825538,0.01161760544053423,0.011509830153137616,0.011403364648768156,0.011298187620749361,0.011194278212501723,0.011091616005820395,0.010990181009512948,0.01088995364838097,0.01079091475253877,0.010693045547053692,0.01059632764189826,0.01050074302220503,0.010406274038809608,0.010312903399077455,0.010220614158001094,0.01012938970955998,0.010039213778333635,0.009950070411361502,0.009861943970237033,0.009774819123433516,0.009688680838850345,0.009603514376573363,0.00951930528184368,0.009436039378224674,0.009353702760965161,0.009272281790549107,0.009191763086426845,0.009112133520923044,0.009033380213312802,0.00895549052406419,0.008878452049239451,0.008802252615050462,0.008726880272563662,0.008652323292550562,0.008578570160476518,0.008505609571627343,0.008433430426366472,0.0083620218255196,0.008291373065884039,0.008221473635855583,0.008152313211173724,0.008083881650778195,0.008016168992775009,0.007949165450507917,0.007882861408733632,0.007817247419894544,0.0077523142004898744,0.00768805262753964,0.007624453735139368,0.007561508711104008,0.007499208893695463,0.007437545768435162,0.007376510964996246,0.007316096254173998,0.0072562935449331884,0.007197094881527521,0.007138492440692366,0.007080478528906308,0.007023045579720378,0.00696618615115298,0.006909892923149211,0.0068541586951006974,0.006798976383427313,0.006744339019216562,0.006690239745919931,0.006636671817105358,0.006583628594261913,0.006531103544658293,0.0064790902392515195,0.006427582350645084,0.006376573651095215,0.0063260580105644485,0.006276029394819539,0.006226481863574844,0.006177409568678216,0.00612880675233879,0.006080667745396261,0.006032986965628486,0.005985758916099158,0.005938978183542373,0.005892639436783883,0.005846737425198627,0.005801266977201763,0.005756222998774756,0.005711600472023803,0.005667394453770511,0.0056236000741736345,0.005580212535381936,0.005537227110215527,0.005494639140877258,0.005452444037691731,0.005410637277871823,0.005369214404312475,0.005328171024409425,0.005287502808904626,0.005247205490755727,0.0052072748640300225,0.005167706782821723,0.005128497160192869,0.005089641967135494,0.005051137231556828,0.005012979037285262,0.004975163523097068,0.0049376868817640925,0.004900545359120022,0.004863735253147271,0.004827252913081957,0.004791094738537493,0.004755257178646542,0.004719736731219569,0.00468452994192149,0.0046496334034645355,0.00461504375481758,0.004580757680431276,0.004546771909479235,0.00451308321511346,0.004479688413735586,0.0044465843642821365,0.004413767967523955,0.004381236165379928,0.004348985940243255,0.004317014314322001,0.0042853183489919115,0.004253895144161933,0.004222741837652529,0.004191855604585072,0.004161233656784,0.004130873242189916,0.004100771644284152,0.004070926181524167,0.004041334206790116,0.004011993106841159,0.0039829003017828254,0.0039540532445440525,0.003925449420364037,0.003897086346289134,0.003868961570678303,0.0038410726727186656,0.0038134172619495366,0.003785992977795426,0.1640445809065123,0.16382613540170354,0.1631745716411065,0.16210104030658976,0.16062358127314305,0.15876635385421348,0.15655864703167327,0.15403374389254249,0.15122771905068663,0.14817824413428954,0.14492346604225143,0.1415010078866681,0.137947125817134,0.134296038481228,0.1305794314003517,0.12682612705411117,0.12306190336607031,0.1193094384627551,0.11558835758744768,0.11191535827413947,0.10830439166417807,0.10476688057328938,0.10131195808983876,0.09794835861146965,0.09472614597500559,0.09165897987976078,0.08873715258528445,0.08595168805099339,0.08329427910778421,0.0807572304918914,0.07833340717822966,0.07601618750090511,0.07379507525342544,0.07163697265076492,0.06953720923081805,0.06749665320101812,0.0655157188258055,0.06359443130917643,0.06173248550683472,0.05992929860942191,0.05818405705721677,0.056495758026711924,0.05486324587828161,0.053285243978846174,0.051760382320146764,0.0502872213463509,0.04946809064246814,0.04870051832897718,0.04794839024000469,0.04721151922722802,0.04648969453582355,0.045782685892269734,0.045090247105660265,0.04441211923170457,0.043748033344718766,0.04309771295923518,0.04246087613910543,0.04183723732854662,0.04122650893628188,0.040628402700829375,0.04004263086221568,0.039468907162716164,0.038906947696880516,0.03835647162891982,0.03781720179354289,0.037288865194595795,0.03677119341421474,0.03626392294378983,0.035766795446741294,0.035279557961970485,0.03480196305578578,0.034333768929243086,0.03387473948697163,0.03342464437286011,0.03298325897733586,0.032550364420370355,0.03212574751388605,0.03170920070674334,0.03130052201512157,0.03089951494074348,0.03050598837909169,0.030119756519474225,0.029740638738584797,0.029368459488962533,0.029003048183579492,0.028644239077628572,0.028291871148410377,0.02794578797413227,0.027605837612279267,0.027271872478141748,0.026943749223996113,0.026621328619341956,0.026304475432560852,0.02599305831427846,0.02568694968267264,0.025386025610924685,0.025090165716975532,0.024799253055698574,0.024513174013601705,0.024231818206115672,0.023955078377519954,0.023682850303542936,0.023415032696633368,0.023151527113922297,0.022892237867849816,0.022637071939438556,0.022385938894184717,0.02213875080053051,0.021895422150866376,0.021655869785028755,0.02142001281623041,0.021187772559373905,0.020959072461692797,0.020733838035653516,0.02051199679407023,0.02029347818736268,0.02007821354289977,0.019866136006370258,0.01965718048511101,0.019451283593345057,0.01924838359925992,0.019048420373872603,0.01885133534162053,0.018657071432626744,0.018465573036574853,0.018276785958150545,0.01809065737398902,0.01790713579107926,0.01772617100657771,0.01754771406897486,0.017371717240578045,0.01719813396125674,0.01702691881340832,0.01685802748810185,0.01669141675235938,0.01652704441752832,0.016364869308715228,0.016204851235236267,0.016046950962050312,0.01589113018214184,0.015737351489813214,0.015585578354862347,0.015435775097607825,0.01528790686473336,0.015141939605924066,0.01499784005126041,0.014855575689350916,0.014715114746171078,0.014576426164585873,0.014439479584530873,0.014304245323830369,0.014170694359625053,0.014037099357576521,0.013904133678557442,0.013772835227887841,0.01364317584615017,0.013515127991690128,0.013388664723975326,0.013263759687475644,0.013140387096048737,0.013018521717814405,0.012898138860496013,0.012779214357218965,0.012661724552745791,0.012545646290134032,0.012430956897802357,0.01231763417699215,0.012205656389606611,0.01209500224642044,0.011985650895642994,0.01187758191182429,0.011770775285093654,0.011665211410715505,0.0115608710789573,0.011457735465254769,0.011355786120666464,0.011255004962606886,0.011155374265851344,0.011056876653798535,0.01095949508998858,0.01086321286986358,0.010768013612764126,0.010673881254155693,0.01058080003807303,0.010488754509781113,0.010397729508641419,0.010307710161178802,0.010218681874341716,0.010130630328951302,0.010043541473329549,0.009957401517105696,0.009872196925191796,0.009787914411922907,0.009704540935358594,0.009622063691736333,0.009540470110077517,0.009459747846937422,0.009379884781295915,0.009300869009585789,0.00922268884085102,0.009145332792035554,0.009068789583395184,0.008993048134030263,0.008918097557534956,0.008843927157761146,0.008770526424689873,0.008697885030411873,0.008625992825210342,0.008554839833744247,0.008484416251330099,0.00841471244031622,0.008345718926550968,0.00827742639593898,0.008209825691084072,0.008142907808016978,0.008076663893002937,0.008011085239430336,0.007946163284775399,0.007881889607641914,0.007818255924873273,0.007755254088736224,0.00769287608417115,0.007631114026111086,0.007569960156864432,0.007509406843560701,0.007449446575658424,0.007390071962510784,0.007331275730990866,0.007273050723172411,0.007215389894065357,0.00715828630940459,0.007101733143491226,0.007045723677082697,0.006990251295333463,0.006935309485782647,0.006880891836388102,0.00682699203360639,0.006773603860515257,0.006720721194980447,0.006668338007863367,0.006616448361269446,0.006565046406836638,0.006514126384061006,0.006463682618661184,0.0064137095209786995,0.006364201584413875,0.006315153383896357,0.0062665595743900075,0.006218414889429258,0.006170714139688995,0.006123452211584914,0.006076624065904288,0.0060302247364671414,0.005984249328814926,0.005938693018928794,0.005893551051974664,0.0058488187410751765,0.005804491466107749,0.005760564672528668,0.005717033870220817,0.005673894632366923,0.005631142594345804,0.005588773452651716,0.005546782963836797,0.005505166943474287,0.005463921265144432,0.005423041859440595,0.005382524712995951,0.005342365867530501,0.005302561418916608,0.005263107516264453,0.005224000361025624,0.005185236206114866,0.0051468113550493765,0.005108722161105953,0.0050709650264938975,0.005033536401545472,0.004996432783921902,0.004959650717835081,0.004923186793285176,0.004887037645312185,0.004851199953263159,0.004815670440073234,0.004780445871560838,0.004745523055736306,0.004710898842124524,0.004676570121099553,0.004642533823233064,0.004608786918654725,0.004575326416424808,0.004542149363919215,0.004509252846225232,0.004476633985549602,0.0044442899406373455,0.004412217906201428,0.00438041511236362,0.004348878824104853,0.004317606340726713,0.004286594995322461,0.0042558421542579225,0.18122330255610367,0.18098256426280585,0.18026450481202666,0.1790814058987353,0.17745313713869817,0.17540630819863218,0.17297317862150502,0.17019040712397204,0.16709772715159965,0.1637366313912505,0.16014913649417603,0.15637668296637705,0.1524592067574112,0.14843440096983626,0.14433717017190398,0.14019926715353748,0.13604909305331023,0.13191163648332743,0.12780852509490423,0.12375816327968717,0.11977593166147309,0.11587442703629662,0.11206372491261929,0.10836036250326342,0.104824207729804,0.1014562965270993,0.0982462611462852,0.09518449785525242,0.09226210346054478,0.08947081745441722,0.0868029692952496,0.08425143036410614,0.08180957017546242,0.07946172680084865,0.0771756304251663,0.07495036135615103,0.07278680650466507,0.07068539466141623,0.06864616100213838,0.06666880555247427,0.06475274574735795,0.06289716333353335,0.06110104594071386,0.0593632236943338,0.057682401267827615,0.056057185779542114,0.05501095359255339,0.05416762741713708,0.05334074750326799,0.05253015734547349,0.05173567054174497,0.050957075558005265,0.05019413994838479,0.04944661408350893,0.0487142344353974,0.047996726464003873,0.04729380714673086,0.04660518718875188,0.045930572948603775,0.04526966811025953,0.044622175129959536,0.043987796483228425,0.04336623573496665,0.0427571984531515,0.04216039298448266,0.04157553110842623,0.041002328584261276,0.04044050560417825,0.03988978716401971,0.03934990336196984,0.03882058963430483,0.038301586936332586,0.03779264187566615,0.037293506804174446,0.03680393987422028,0.03632370506409939,0.035852572177074646,0.035390316817811254,0.03493672034960434,0.034491569835357755,0.0340546579649292,0.03362578297109974,0.03320474853619746,0.0327913636910966,0.03238544270812501,0.03198680498921424,0.031595274950424385,0.031210681903872557,0.030832859937908057,0.030461647796290767,0.03009688875701657,0.02973843051132448,0.029386125043375438,0.029039828510982166,0.02869940112773321,0.028364707046786477,0.028035614246571177,0.027711994418573634,0.027393722857378087,0.027080678353069872,0.026772743086100205,0.02646980252468442,0.026171745324769968,0.02587846323262221,0.025589850990029202,0.025305806242132207,0.025026229447871674,0.024751023793031686,0.024480095105845607,0.024213351775142968,0.023950704670985857,0.023692067067753883,0.02343735456963261,0.023186485038442978,0.02293937852377157,0.02269595719533613,0.022456145277530783,0.02221986898609877,0.021987056466861967,0.0217576377364633,0.02153154462505242,0.021308710720862142,0.021089071316614475,0.02087256335770516,0.020659125392100557,0.020448697521904147,0.020241221356529625,0.02003663996743139,0.01983489784434308,0.019635940852965526,0.019439716194066814,0.01924617236393822,0.01905525911616243,0.018866927424649307,0.01868112944789742,0.01849781849443189,0.01831694898938794,0.018138476442192467,0.01796235741530795,0.017788549494004356,0.017617011257115026,0.017447702248752247,0.01728058295094204,0.017115614757146715,0.016952759946648573,0.016791981659755626,0.016633243873810523,0.016476511379967963,0.016321749760715307,0.016168925368110574,0.01601800530271458,0.015868957393186604,0.01572119550515591,0.015572758795004788,0.015426177329345007,0.015281419868205883,0.01513845585472361,0.014997255396817726,0.014857789249438787,0.014720028797369123,0.014583946038556797,0.014449513567966648,0.014316704561924817,0.014185492762947269,0.014055852465029807,0.013927758499385918,0.013801186220618667,0.013676111493306775,0.013552510678997515,0.013430360623587446,0.013309638645080056,0.01319032252170837,0.013072390480406227,0.012955821185622711,0.012840593728463051,0.0127266876161478,0.012614082761778505,0.012502759474401813,0.01239269844935758,0.01228388075890779,0.012176287843132422,0.01206990150108513,0.011964703882201892,0.01186067747794984,0.01175780511371442,0.011656069940913002,0.011555455429328794,0.01145594535965991,0.011357523816272204,0.011260175180154883,0.011163884122068788,0.011068635595882486,0.010974414832090074,0.010881207331506238,0.010788998859129591,0.010697775438173757,0.010607523344257588,0.010518229099750701,0.010429879468270668,0.010342461449323862,0.01025596227309015,0.010170369395343696,0.010085670492506991,0.010001853456833706,0.009918906391718012,0.009836817607122883,0.009755575615128577,0.009675169125594454,0.009595587041931483,0.009516818456983798,0.009438852649012385,0.009361679077782549,0.00928528738074873,0.009209667369335034,0.009134809025309661,0.00906070249724742,0.008987338097082055,0.008914706296742536,0.008842797724872264,0.00877160316362854,0.008701113545560888,0.008631319950563387,0.008562213602902762,0.008493785868317037,0.00842602825118397,0.008358932391758115,0.008292490063471896,0.008226693170302599,0.008161533744200708,0.008097003942579,0.008033096045860489,0.007969802455084395,0.007907115689566355,0.007845028384614436,0.0077835332892972845,0.007722623264263577,0.007662291279612294,0.00760253041281016,0.007543333846657972,0.007484694867302432,0.007426606862292807,0.0073690633186821565,0.00731205782116965,0.007255584050285871,0.007199635780617878,0.007144206879073735,0.007089291303185281,0.007034883099449006,0.00698097640170193,0.006927565429534369,0.006874644486736693,0.006822207959779635,0.0067702503163283734,0.0067187661037870685,0.006667749947876184,0.006617196551239478,0.00656710069208091,0.0065174572228303,0.006468261068837999,0.006419507227095686,0.006371190764985426,0.006323306819054339,0.006275850593814699,0.006228817360569829,0.006182202456262899,0.006136001282350889,0.006090209303701066,0.00604482204751007,0.0059998351022458075,0.005955244116609596,0.005911044798520646,0.005867232914120468,0.00582380428679753,0.005780754796231348,0.005738080377456332,0.005695777019943168,0.005653840766699615,0.005612267713388597,0.005571054007463676,0.005530195847322187,0.005489689481473807,0.005449531207726542,0.0054097173723880445,0.005370244369482478,0.005331108639983012,0.005292306671058195,0.005253834995333722,0.005215690190168055,0.005177868876941805,0.005140367720360692,0.005103183427772166,0.005066312748494002,0.005029752473156606,0.004993499433057102,0.004957550499525647,0.004921902583304014,0.004886552633934763,0.004851497639162825,0.004816734624347569,0.004782260651885903,0.20006485205438992,0.19979972518835318,0.19900891853268465,0.19770595070332175,0.19591269235369782,0.1936584328262911,0.19097868012214197,0.1879137842403426,0.1845074794402916,0.18080543646299302,0.17685390312851157,0.17269849377188373,0.1683831676887198,0.16394941682681877,0.15943566542067988,0.15487687035933115,0.15030430128047204,0.14574547356092443,0.14122420497932908,0.13676076711137727,0.13237210467971258,0.12807209938690253,0.1238718586048107,0.11980545095001434,0.1159302194246052,0.11223703577166547,0.10871488487846191,0.10535354204810192,0.10214350993087923,0.09907596067652752,0.09614268291182555,0.09333603316364705,0.09064889136665441,0.08807462011690466,0.0855931866272608,0.08317415926386082,0.08081809285944272,0.07852594284481546,0.07629819843851245,0.07413494685304733,0.0720359316437997,0.07000060531317549,0.06802817639399857,0.06611765131264766,0.0642678713811763,0.06247754529408309,0.06115030950295594,0.06022516893403146,0.05931741978336497,0.058426951335958315,0.0575536152493154,0.05669723109699127,0.05585759130722878,0.05503446555105672,0.054227604631146814,0.053436743919489736,0.052661606388458716,0.05190190527640998,0.05115734642560904,0.05042763032694905,0.04971245390291117,0.04901151205719872,0.048324499016814675,0.04765110948979383,0.046991039659450465,0.0463439880339262,0.0457096561678061,0.045087749270840964,0.04447797671719492,0.04388005246719631,0.04329369541223118,0.042718629652298126,0.04215458471463429,0.04160129572090075,0.041058503509578834,0.04052595471943141,0.040003401839269766,0.03949060322860405,0.038987323113255555,0.038493331559516716,0.03800840443003055,0.03753232332415726,0.03706487550530742,0.03660585381737151,0.036155056592147836,0.035712287549424765,0.03527735569115082,0.034850075190980385,0.03443026528027818,0.03401775013154778,0.03361235874011943,0.0332139248048004,0.03282228660812922,0.03243728689675078,0.03205877276237125,0.03168659552368257,0.031320610609586526,0.0309606774439811,0.030606659332357403,0.03025842335038229,0.029915840234624045,0.029578784275550638,0.02924713321287899,0.028920768133371244,0.028599573371111065,0.028283436410303685,0.02797224779061458,0.027665901015059828,0.027364292460428017,0.027067321290237745,0.026774889370192418,0.026486901186109517,0.026203263764289744,0.02592388659427473,0.025648681553964367,0.02537756283703418,0.02511044688260579,0.02484725230712274,0.02458789983836581,0.024332312251568674,0.02408041430756679,0.023832132692928557,0.023587395962011672,0.023346134480892136,0.023108280373102322,0.022873767467135216,0.022642531245652422,0.022414508796344677,0.02218963876439768,0.021967861306501024,0.021749118046364327,0.021533352031681236,0.021320507692497978,0.021110530800938908,0.02090336843224691,0.020698968927086732,0.020497281855079003,0.02029825797951679,0.020101849223224826,0.019908008635527948,0.019716690360280138,0.019527849604931063,0.01934144261058434,0.01915742662301794,0.018975759864634983,0.01879640150730564,0.018619311646079786,0.018444451273732627,0.018271782256117294,0.018101267308296608,0.017932869971428542,0.017766554590373886,0.017602286292009536,0.017437679746430186,0.017274061504343446,0.01711247287214126,0.01695287995180582,0.016795249580276075,0.0166395493099123,0.01648574738956461,0.016333812746225092,0.016183714967245022,0.016035424283092008,0.015888911550636976,0.01574414823694647,0.015601106403565204,0.01545975869127463,0.0153200783053047,0.015182039000992322,0.015045615069864748,0.014910781326136347,0.014777513093606151,0.014645786192937877,0.014515576929316425,0.014386862080463535,0.014259618885002304,0.014133825031158837,0.01400945864579194,0.013886498283734613,0.013764922917444501,0.013644711926947951,0.013525845090069726,0.013408302572941011,0.013292064920771632,0.013177113048884831,0.01306342823400091,0.012950992105763944,0.012839786638504836,0.012729794143229183,0.012620997259828407,0.012513378949503126,0.012406922487393574,0.012301611455410038,0.012197429735259058,0.012094361501654698,0.011992391215715242,0.01189150361853504,0.011791683724927646,0.011692916817336566,0.011595188439904137,0.011498484392699281,0.011402790726095484,0.011308093735295677,0.011214379954999512,0.011121636154210008,0.011029849331171748,0.01093900670844177,0.010849095728085387,0.010760104046994597,0.010672019532326653,0.010584830257055566,0.010498524495638387,0.01041309071978877,0.01032851759435652,0.010244793973310889,0.010161908895821076,0.010079851582436166,0.009998611431357845,0.009918178014804678,0.009838541075465215,0.009759690523038336,0.009681616430855352,0.009604309032585842,0.009527758719021654,0.00945195603493806,0.009376891676030737,0.009302556485923638,0.009228941453249827,0.009156037708800044,0.009083836522738678,0.009012329301884732,0.008941507587057026,0.008871363050479442,0.008801887493248015,0.008733072842855577,0.008664911150773265,0.008597394590088318,0.008530515453194097,0.008464266149534142,0.008398639203396736,0.008333627251758936,0.008269223042180248,0.008205419430741372,0.008142209380031037,0.008079585957176547,0.008017542331918105,0.007956071774725498,0.007895167654957179,0.007834823439057727,0.007775032688796654,0.0077157890595444,0.0076570862985859195,0.00759891824347141,0.0075412788204008655,0.007484162042644984,0.0074275620089989764,0.007371472902269461,0.0073158889877932435,0.007260804611988298,0.0072062142009336515,0.0071521122589806385,0.007098493367392466,0.007045352183012124,0.006992683436958664,0.006940481933349111,0.006888742548048116,0.006837460227442593,0.006786629987241487,0.00673624691130077,0.006686306150470922,0.006636802921469151,0.0065877325057738,0.006539090248541044,0.0064908715575432985,0.00644307190212945,0.006395686812204608,0.006348711877231299,0.006302142745249885,0.006255975121918291,0.0062102047695713055,0.006164827506296957,0.0061198392050323,0.006075235792676134,0.00603101324921898,0.005987167606890447,0.005943694949321931,0.005900591410726467,0.005857853175093858,0.005815476475401187,0.00577345759283825,0.005731792856048344,0.005690478640382134,0.005649511367166881,0.005608887502988694,0.0055686035589883245,0.005528656090170626,0.005489041694725775,0.005449757013364143,0.005410798728663018,0.005372163564425365,0.22070694515094333,0.22041517934876484,0.21954491270966967,0.21811101399007127,0.21613753800756966,0.21365669894941514,0.21070755039474925,0.20733447114816397,0.20358556201622832,0.19951105366605304,0.19516181179908856,0.19058800610375812,0.1858379871201702,0.18095739322244528,0.17598849063953417,0.17096973415300143,0.16593552534988498,0.1609161389187956,0.15593778485690302,0.15102277477647583,0.14618976288238728,0.14145403582951283,0.13682824562634457,0.1323783373910103,0.1281373581089466,0.12409279471500263,0.12023300957654662,0.11654717423302727,0.1130252080120079,0.10965772126951571,0.10643596298377471,0.10335177242340196,0.10039753461140861,0.09756613931263368,0.09485094328195552,0.092230516032823,0.08967390117407416,0.08718194085159298,0.08475571523594198,0.08239582608105558,0.0801024606839289,0.07787545022722955,0.07571432257953987,0.07361834973990725,0.07158659019226535,0.06961792648682619,0.06794660506562773,0.06693353109930712,0.06593868754228979,0.06496202894799279,0.06400346280270615,0.06306285595534922,0.062140040380988915,0.06123481833322938,0.06034696693833284,0.05947624228138094,0.05862238303171066,0.05778511365173314,0.05696414723006085,0.05615918797658646,0.05536993341415594,0.05459607629839463,0.05383730629445623,0.053093311436810786,0.0523637793956583,0.051648398571328843,0.05094685903584761,0.05025885333894213,0.04958407719398092,0.04892223005774767,0.04827301561643685,0.047636142189017246,0.04701132305784363,0.046398276735354925,0.04579672717473976,0.045206403931541995,0.04462704228245757,0.04405838330682833,0.043500173935737345,0.04295216697305018,0.042414121092257485,0.041885800812498354,0.04136697645680238,0.040857424095184995,0.04035692547494118,0.039865267940213375,0.03938224434262025,0.03890765294457599,0.03844129731667174,0.03798298623035355,0.03753253354697555,0.037089758104138434,0.0366544836001581,0.036226538477344424,0.03580575580471352,0.035391973160655704,0.03498503251601916,0.034584780117978525,0.034191066375043065,0.03380374574346229,0.03342267661527158,0.033047721208175,0.03267874545741144,0.03231561890975089,0.03195821461971107,0.031606409048078585,0.031260081962791016,0.030919116342228364,0.03058339828092514,0.030252816897734455,0.02992726424643214,0.029606635228756863,0.02929082750987339,0.02897974143622249,0.02867327995574415,0.028371348540427194,0.028073855111148963,0.027780709964766823,0.027491825703404422,0.027207117165900085,0.0269265013613566,0.0266498974047454,0.026377226454513288,0.026108411652143032,0.025843378063604122,0.025582052622656816,0.025324364075945557,0.025070242929833488,0.024819621398930354,0.02457243335625298,0.02432861428498154,0.024088101231752784,0.023850832761446294,0.023616748913414618,0.02338579115911655,0.023157902361097056,0.022933026733284432,0.022711109802551966,0.022492098371505235,0.02227594048245838,0.02206258538255072,0.021851983489977612,0.021644086361289897,0.021438846659728734,0.021236218124564353,0.02103615554139628,0.02083861471339386,0.020643552433437372,0.020450926457132354,0.020260695476666726,0.02007281909548535,0.019887257803746696,0.01970397295454559,0.019522395739791705,0.019339779626839013,0.01915942179226121,0.018981284635245826,0.018805331367236874,0.01863152599045623,0.018459833277084326,0.018290218749079348,0.018122648658607275,0.017957089969070215,0.017793510336706873,0.01763187809274804,0.01747216222610805,0.017314332366596213,0.017158358768625072,0.017004212295406565,0.016851864403614553,0.016701287128499498,0.016552453069442717,0.01640533537592918,0.016259907733934226,0.016116144352702994,0.015974019951913575,0.015833509749209388,0.015694589448092194,0.015557235226157144,0.015421423723667355,0.015287132032450895,0.01515433768511164,0.015023018644546188,0.014893153293751045,0.01476472042591863,0.01463769923480697,0.014512069305377014,0.01438781060468825,0.01426490347304646,0.014143328615390765,0.014023067092919228,0.013904100314940472,0.013786410030945967,0.013669978322897961,0.013554787597721251,0.013440820579999324,0.013328060304863587,0.013216490111071297,0.013106093634268394,0.012996854800426573,0.01288875781945579,0.012781787178982094,0.012675927638288013,0.01257116422240947,0.012467482216387032,0.012364867159661926,0.012263304840618702,0.01216278129126585,0.012063282782051592,0.011964795816812491,0.011867307127846763,0.011770803671114155,0.01167527262155465,0.011580701368523974,0.01148707751134385,0.011394388854959645,0.011302623405707818,0.011211769367186004,0.011121815136224294,0.011032749298954552,0.0109445606269764,0.010857238073613315,0.010770770770261688,0.010685148022825885,0.010600359308238922,0.010516394271066924,0.010433242720191973,0.010350894625575669,0.010269340115097609,0.010188569471468546,0.01010857312921513,0.010029341671736367,0.009950865828425715,0.009873136471862276,0.009796144615065344,0.009719881408811944,0.009644338139016925,0.009569506224170353,0.009495377212835318,0.009421942781201129,0.009349194730691762,0.00927712498562879,0.009205725590944708,0.009134988709949167,0.009064906622143624,0.00899547172108476,0.008926676512294625,0.008858513611217618,0.008790975741220257,0.008724055731636572,0.008657746515854783,0.00859204112944554,0.00852693270833138,0.008462414486993695,0.008398479796719887,0.008335122063887104,0.00827233480828248,0.008210111641458902,0.00814844626512635,0.008087332469575258,0.008026764132134724,0.007966735215662048,0.007907239767063735,0.0078482719158479,0.007789825872705114,0.00773189592811999,0.007674476451010509,0.007617561887395174,0.0075611467590881954,0.007505225662419464,0.007449793266982147,0.007394844314404746,0.007340373617147986,0.00728637605732567,0.0072328465855498614,0.0071797802197975345,0.007127172044301248,0.007075017208460943,0.007023310925777297,0.006972048472806658,0.0069212251881350315,0.006870836471373575,0.0068208777821728425,0.006771344639256333,0.006722232619472536,0.006673537356865988,0.006625254541764717,0.006577379919886553,0.006529909291461817,0.0064828385103726325,0.006436163483309327,0.006389880168941278,0.006343984577104835,0.006298472768005794,0.006253340851436708,0.006208584986009544,0.006164201378401285,0.00612018628261475,0.006076535999252495,0.006033246874804202,0.24329091057845278,0.24297010751355658,0.24201322646200116,0.24043660615839502,0.23826667942358357,0.2355388448192718,0.2322960160639492,0.22858695816906047,0.22446452586369614,0.21998391435688455,0.21520101717242293,0.21017096403942656,0.2049468872706211,0.19957894096275355,0.19411357617365932,0.18859305845472712,0.1830552023135074,0.17753329017848982,0.17205614057369792,0.1666482905731242,0.16133026022836747,0.15611887066039515,0.151039438590009,0.14618006575970832,0.14154508219272113,0.13712138685584177,0.13289675906565568,0.1288597964286541,0.12499985665648095,0.12130700319136836,0.11777195452513832,0.11438603706017975,0.11114114133835513,0.10802968145158737,0.105044557442002,0.10217912049941189,0.09941489631731351,0.09671663039644536,0.09408416552590011,0.09151876964618653,0.089021215917948,0.08659184642858327,0.08423063058764871,0.08193721823239408,0.07971098758015888,0.07755108824723823,0.07546399331737219,0.0743570069900698,0.07326891764809654,0.07219976983789099,0.0711495496142896,0.07011819196018207,0.06910558748222637,0.06811158843609415,0.06713601413385384,0.0661786557845972,0.06523928081712319,0.06431763673097993,0.0634134545193345,0.06252645170416261,0.0616563350213664,0.06080280279042489,0.059965547000370885,0.05914425514118749,0.058338611807083315,0.057548300095766836,0.05677300282551494,0.05601240358977598,0.05526618766711606,0.05453404280256128,0.05381565987472735,0.05311073346173679,0.052418962317506514,0.05174004976881444,0.051073704042472946,0.05041963853088676,0.04977757200346057,0.049147228770455915,0.04852833880519976,0.04792063782990154,0.04732386736975642,0.04673777477946431,0.04616211324588444,0.04559664177006987,0.04504112513158923,0.04449533383771149,0.04395904405969678,0.04343203755823459,0.0429141015997708,0.04240502886529471,0.041904617352965606,0.0414126702757629,0.04092899595524598,0.0404534077123329,0.039985723755912014,0.03952576706999225,0.039073365300014366,0.038628350638834005,0.03819055971286307,0.03775983346874656,0.037336017060919005,0.036918959740334975,0.0365085147446005,0.03610453918973537,0.03570689396371616,0.035315443621950396,0.03493005628479187,0.03455060353719286,0.034176960330548165,0.03380900488680328,0.03344661860484689,0.033089685969214515,0.03273809446112021,0.03239173447180038,0.03205049921818208,0.031714284660843375,0.031382989424249386,0.031056514719241115,0.030734764267728486,0.030417644229571113,0.03010506313159313,0.0297969317986955,0.02949316328701878,0.029193672819117056,0.028898377721081645,0.028607197361585214,0.028320053092783747,0.02803686819303295,0.02775756781137317,0.027482078913723333,0.027210330230750406,0.026942252207355563,0.026677776953733415,0.02641683819795718,0.026159371240047385,0.025905312907468617,0.025654601512024876,0.02540717680809886,0.025162979952197198,0.02492195346376337,0.024684041187208204,0.024449188255132193,0.0242173410526912,0.023988447183072963,0.023762455434049673,0.023539315745563835,0.02331897917832557,0.023101397883378498,0.022886525072606807,0.022674314990151025,0.022464722884706172,0.022257704982663964,0.022053218462083822,0.021851221427455794,0.02164945024787522,0.021448155918803904,0.021249332551406888,0.021052939339062004,0.020858936348863353,0.020667284498751055,0.020477945535336727,0.02029088201239271,0.020106057269994596,0.019923435414286806,0.01974298129785367,0.019564660500674975,0.019388439311649904,0.019214284710662596,0.0190421643511819,0.018872046543369953,0.018703900237685582,0.018537695008968673,0.018373401040982503,0.018210989111408855,0.018050430577273718,0.017891697360793015,0.017734761935623185,0.01757959731350671,0.01742617703129327,0.01727447513833278,0.017124466184222278,0.016976125206897903,0.01682942772106183,0.01668434970692888,0.01654086759928992,0.016398958276875895,0.016258599052016383,0.01611976766058151,0.01598244225220182,0.01584660138075047,0.01571222399508852,0.015579289430058447,0.015447777397720873,0.015317667978828275,0.015188941614523464,0.015061579098262709,0.014935561567951837,0.014810870498290182,0.014687487693318025,0.014565395279156214,0.01444457569693911,0.014325011695929767,0.014206686326814133,0.014089582935168377,0.013973685155095778,0.013858976903023793,0.013745442371662555,0.013633066024115886,0.01352183258814119,0.013411727050556184,0.013302734651783086,0.013194840880532653,0.013088031468619319,0.012982292385905416,0.01287760983537196,0.012773970248308305,0.01267136027962279,0.012569766803267003,0.012469176907771778,0.012369577891891503,0.01227095726035528,0.012173302719717768,0.012076602174312475,0.011980843722300627,0.01188601565181427,0.011792106437192192,0.011699104735302472,0.011606999381954291,0.01151577938839279,0.011425433937876123,0.011335952382332176,0.01124732423909426,0.011159539187709622,0.01107258706682431,0.010986457871138259,0.010901141748430009,0.010816628996650599,0.010732910061081034,0.010649975531556496,0.010567816139751973,0.010486422756528928,0.010405786389342525,0.010325898179704314,0.010246749400703782,0.010168331454583514,0.010090635870368134,0.010013654301545185,0.009937378523797936,0.009861800432785438,0.00978691204197313,0.009712705480509318,0.009639172991147565,0.009566306928214864,0.009494099755621212,0.009422544044913923,0.009351632473372267,0.009281357822142743,0.009211712974413606,0.009142690913628898,0.009074284721737907,0.009006487577483355,0.008939292754724121,0.008872693620793057,0.008806683634889553,0.008741256346503535,0.008676405393873652,0.008612124502476223,0.008548407483544969,0.00848524823262183,0.008422640728135393,0.008360579030009857,0.008299057278301028,0.00823806969186011,0.008177610567023815,0.008117674276331656,0.008058255267266884,0.007999348061024201,0.007940947251300961,0.007883047503111945,0.00782564355162855,0.00776873020103879,0.007712302323431233,0.007656354857699799,0.0076008828084699045,0.00754588124504521,0.007491345300375386,0.007437270170042087,0.007383651111265924,0.007330483441931481,0.00727776253963095,0.00722548384072654,0.007173642839429111,0.00712223508689563,0.007071256190342766,0.007020701812177105,0.006970567669142228,0.0069208495314802415,0.006871543222110196,0.006822644615821044,0.006774149638479433,0.20574233280312076,0.20554439954602563,0.20495307099601498,0.2039756811565289,0.20262419268361767,0.20091482236457245,0.19886754815006102,0.19650552550021336,0.1938544441545775,0.190941857217286,0.18779651285602542,0.18444771537434607,0.18092473750701255,0.17725630012997107,0.17347012976333584,0.16959259876964125,0.165648448369648,0.16166059073364245,0.15764998353915993,0.15363556849673732,0.14963426433203061,0.14566100443136176,0.14172880964401366,0.13784888742456006,0.1340307494463715,0.13028234089887558,0.12661017579923647,0.12304321757581005,0.11962055424677825,0.11633541618387848,0.11318068323045556,0.11014967270145903,0.10723610952406992,0.10443409848138674,0.10173809842652531,0.09914289833801375,0.09664359509192355,0.094235572831731,0.0919144838228454,0.08967623068528727,0.08751694990412762,0.08543299652394964,0.08342537593224207,0.08235453444552196,0.08129304815974575,0.08024167946708932,0.07920109477048298,0.07817187184888114,0.07715450692579327,0.07614942140820687,0.07515696827391943,0.07417743809461828,0.07321106468955876,0.07225803041083759,0.07131847106606404,0.07039248048806933,0.06948011476406955,0.06858139613877612,0.06769631660740799,0.066824841215337,0.06596691108168264,0.06512244616415555,0.06429134778234775,0.06347350091626835,0.06266877629636079,0.061877032300643814,0.06109811667382165,0.0603318680824529,0.05957811751946579,0.05883668957046928,0.058107403553484184,0.05739007454296064,0.0566845142881274,0.05599053203499062,0.05530793526061284,0.05463653032756489,0.05397612306590408,0.05332651928934526,0.052687525251789595,0.052058948049839224,0.0514405959764545,0.05083227883043693,0.050233808186057965,0.049644997626727805,0.049065662946271855,0.04849562232106499,0.04793469645595181,0.047382708706658096,0.0468394851811061,0.046304854821843086,0.04577864947159528,0.0452607039237326,0.044750855959318714,0.044248946372205146,0.04375481898352491,0.04326832064679302,0.04278930124472057,0.04231761367870893,0.04185311385194545,0.041395660646883804,0.0409451158978397,0.04050134435936009,0.04006421367093385,0.03963359431859537,0.03920935959387336,0.038791385550518795,0.038379550959386104,0.03797373726181638,0.037573828521807386,0.0371797113772634,0.03679127499054908,0.03640841099856786,0.03603101346255848,0.03565897881776278,0.03529220582313458,0.034930595511203276,0.034574051138214136,0.03422247813464738,0.03387578405619195,0.033533878535266834,0.033196673233140794,0.03286408179271304,0.03253601979199907,0.03221240469836731,0.03189315582354556,0.03157819427944259,0.031267442934792083,0.030960826372640794,0.030658270848696725,0.030359704250533078,0.03006505605767044,0.02977425730252618,0.029487240532235198,0.02920393977133831,0.028924290485337192,0.02864822954509744,0.028375695192107385,0.028106627004571314,0.02784096586432953,0.02757865392459781,0.027319634578501877,0.027063852428409026,0.02681125325603082,0.026561783993287368,0.026315392693920994,0.026072028505833355,0.025831641644146353,0.025594183364958927,0.025359605939789334,0.02512786263068671,0.024898907665998275,0.024672696216769045,0.02444918437377065,0.02422832912513385,0.024006107667534717,0.023785895149708032,0.023568325070108094,0.023353355295287682,0.023140944549100595,0.022931052391861956,0.022723639200070964,0.022518666146685556,0.022316095181923394,0.022115889014587234,0.02191801109389142,0.021722425591778085,0.021529097385711883,0.02133799204193225,0.021149075799160727,0.020962315552742323,0.020777678839211444,0.020595133821273242,0.020414649273180024,0.02023619456650261,0.020059739656277137,0.019885255067520074,0.01971271188209928,0.019542081725954855,0.01937333675665147,0.01920644965126305,0.01904139359457303,0.018878142267583116,0.018716669836324477,0.018556950940955937,0.01839896068514968,0.018242674625749508,0.018088068762696766,0.017935119529217784,0.017783803782259015,0.017634098793172046,0.017485982238633967,0.017339432191800182,0.017194427113680896,0.017050945844738805,0.01690896759669465,0.016768471944543166,0.016629438818767814,0.01649184849775021,0.01635568160037086,0.016220919078790766,0.01608754221141514,0.015955532596029953,0.015824872143107682,0.01569554306927741,0.015567527890956655,0.015440809418135212,0.015315370748313897,0.015191195260588703,0.015068266609877926,0.014946568721290422,0.01482608578462567,0.014706802249009117,0.014588702817653993,0.014471772442747725,0.014355996320461433,0.014241359886074077,0.014127848809215018,0.014015448989216512,0.013904146550575555,0.013793927838521243,0.013684779414686852,0.013576688052879295,0.013469640734949254,0.01336362464675514,0.01325862717421949,0.01315463589947738,0.013051638597109545,0.012949623230464122,0.01284857794806037,0.01274849108007374,0.012649351134900028,0.012551146795797715,0.01245386691760283,0.012357500523519773,0.012262036801982013,0.012167465103582168,0.012073774938071425,0.011980955971422149,0.011888998022957517,0.011797891062542512,0.011707625207836359,0.011618190721605467,0.01152957800909227,0.011441777615443224,0.01135478022319087,0.011268576649789915,0.01118315784520591,0.011098514889556309,0.01101463899079919,0.010931521482473238,0.010849153821484075,0.010767527585937249,0.010686634473017634,0.010606466296910776,0.010527014986769724,0.010448272584723091,0.010370231243924099,0.010292883226640044,0.010216220902381687,0.010140236746068983,0.01006492333623627,0.009990273353272964,0.009916279577699793,0.009842934888480993,0.009770232261368385,0.009698164767280675,0.00962672557071427,0.009555907928185755,0.009485705186706253,0.009416110782284047,0.00934711823845897,0.009278721164864225,0.009210913255817129,0.009143688288936833,0.0090770401237902,0.009010962700562017,0.008945450038752849,0.00888049623590119,0.008816095466330122,0.008752241979919018,0.008688930100896986,0.008626154226660972,0.00856390882661561,0.008502188441035025,0.008440987679946953,0.00838030122203621,0.008320123813570583,0.00826045026734571,0.00820127546165017,0.008142594339249359,0.008084401906389236,0.008026693231816855,0.007969463445820432,0.007912707739286482,0.007856421362774039,0.007800599625606673,0.007745237894979541,0.0076903315950840765,0.00763587620624784,0.007581867264090144,0.22757706800298627,0.22735768235604678,0.22670227561121517,0.2256190092761477,0.22412119438308414,0.22222687281731926,0.2199582664171121,0.2173411250155331,0.21440400832810128,0.21117753742839201,0.20769364972286208,0.20398488732281286,0.20008374316685185,0.19602208287799472,0.1918306538109433,0.1875386866101479,0.18317358925988317,0.17876072930385897,0.17432329673334354,0.16988223796146698,0.16545625020130053,0.1610618252809122,0.1567133322747464,0.15242312912284706,0.14820169448403242,0.14405777228763691,0.14000210578477293,0.13609181569278633,0.13233837027862416,0.1287337407837817,0.1252703787797642,0.121941185136228,0.11873948091937912,0.1156589801421345,0.1126937642796262,0.10983825845953954,0.10708720923505656,0.10443566384831789,0.10187895089361976,0.09941266229250886,0.09703263649580579,0.09473494283144956,0.09251586692111853,0.0911998769061668,0.09005541943060627,0.08892012933202981,0.08779485106920136,0.08668032828033845,0.08557721116896096,0.0844860636312885,0.08340737008626167,0.08234154198078403,0.08128892395241223,0.08024979963976751,0.07922439713748568,0.07821289409796504,0.0772154224862715,0.0762320729979199,0.0752628991516946,0.07430792107141755,0.0733671289718772,0.07244048636479045,0.07152793300109206,0.07062938756590308,0.0697447501423221,0.06887390445987991,0.06801671994292985,0.06717305357368415,0.06634275158389918,0.06552565098852321,0.06472158097381082,0.06393036415173213,0.06315181769167555,0.062385754339735484,0.0616319833351793,0.06089031123292068,0.06016054264027654,0.059442480875552366,0.058735928555466374,0.05804068811785247,0.057356562285564607,0.05668335447698271,0.056020869168137734,0.055368912210977964,0.054727291111955685,0.054095815274741575,0.053474296210520134,0.052862547719064026,0.05226038604344725,0.0516676300010378,0.05108410109316185,0.05050962359559767,0.04994402463189951,0.04938713423132855,0.04883878537302353,0.04829881401788761,0.04776705912954166,0.04724336268552762,0.04672756967989974,0.046219528118167125,0.04571908900549697,0.0452261063289999,0.044740437034804736,0.04426194100061774,0.04379048100433748,0.043325922689275986,0.04286813452646429,0.04241698777448584,0.0419723564372128,0.041534117219816626,0.041102149483353924,0.040676335198212066,0.04025655889667379,0.03984270762480789,0.03943467089391078,0.039032340631655914,0.03863561113312117,0.03824437901183378,0.03785854315094336,0.0374780046546532,0.03710266679998823,0.03673243498899048,0.036367216701411055,0.03600692144796999,0.035651460724219645,0.035300747965080675,0.03495469850007248,0.03461322950927669,0.034276259980064235,0.03394371066459473,0.03361550403812269,0.03329156425811043,0.032971817124161786,0.03265619003878199,0.0323446119689697,0.032037013408631625,0.03173332634183369,0.03143348420687179,0.03113742186116229,0.030845075546947924,0.0305563828577999,0.030271282705921932,0.029989715290233563,0.02971162206522712,0.029436945710587522,0.029165630101552584,0.02889762028001568,0.02863286242634553,0.028371303831913493,0.02811289287231332,0.027857578981263273,0.02760531262516497,0.02735604527831973,0.027109729398775543,0.026865761891365598,0.026620071827290794,0.02637731958076736,0.026137458518479068,0.02590044294948762,0.025666228102592874,0.025434770104291394,0.025206025957321267,0.024979953519767846,0.02475651148472955,0.024535659360518013,0.024317357451381735,0.02410156683874303,0.023888249362923965,0.023677367605361273,0.023468884871286788,0.023262765172864835,0.023058973212775422,0.02285747436822391,0.022658234675375706,0.022461220814195833,0.02226640009368597,0.02207374043750625,0.021883210369975002,0.021694779002427028,0.02150841601993169,0.021324091668352765,0.02114177674174268,0.02096144257006489,0.020783061007227394,0.02060660441942855,0.020432045673799203,0.020259358127335474,0.020088515616116093,0.019919492444789223,0.0197522633763312,0.019586803622062065,0.019423088831913512,0.019261095084941792,0.01910079888008078,0.018942177127122626,0.018785207137927733,0.018629866617851765,0.018476133657385495,0.0183239867240037,0.018173404654211578,0.018024366645790695,0.017876852250233596,0.017730841365363823,0.017586314228136,0.017443251407612593,0.017301633798107553,0.017161442612499578,0.017022659375704734,0.016885265918305838,0.016749244370336647,0.016614577155210607,0.016481246983798065,0.016349236848642396,0.016218530018312555,0.016089110031891247,0.015960960693588946,0.015834066067487548,0.015708410472405565,0.01558397847688283,0.015460754894281652,0.015338724778003044,0.015217873416809776,0.015098186330260594,0.014979649264247366,0.014862248186634197,0.014745969282997476,0.014630798952459693,0.014516723803620327,0.01440373065057735,0.014291806509038324,0.014180938592518264,0.014071114308624335,0.013962321255419803,0.01385454721787197,0.013747780164377298,0.01364200824336289,0.01353721977996439,0.013433403272773592,0.013330547390660093,0.01322864096966059,0.013127673009935852,0.013027632672794689,0.012928509277779348,0.012830292299816578,0.012732971366427849,0.012636536254999794,0.01254097689011236,0.012446283340924852,0.012352445818614772,0.012259454673873044,0.012167300394450879,0.012075973602757493,0.011985465053509873,0.0118957656314283,0.011806866348982597,0.011718758344183459,0.01163143287841973,0.011544881334339676,0.01145909521377691,0.011374066135716336,0.011289785834303626,0.011206246156894117,0.011123439062140972,0.011041356618123041,0.010959991000508167,0.010879334490755272,0.010799379474351443,0.010720118439083971,0.010641543973347725,0.010563648764483903,0.010486425597153551,0.010409867351742062,0.010333967002795126,0.01025871761748486,0.01018411235410706,0.01011014446060528,0.01003680727312571,0.009964094214598753,0.009891998793347933,0.009820514601726432,0.009749635314777665,0.009679354688923354,0.009609666560675453,0.009540564845372641,0.009472043535941258,0.009404096701678013,0.009336718487057164,0.009269903110559152,0.009203644863521165,0.00913793810900897,0.009072777280710516,0.009008156881848091,0.008944071484112361,0.008880515726615126,0.0088174843148611,0.008754972019739451,0.008692973676531893,0.008631484183940457,0.008570498503132032,0.00851001165680031,0.25160777212621077,0.25136465074113135,0.2506383478859634,0.24943794777928657,0.24777826465167294,0.24567937442042123,0.24316599867904812,0.2402667760408166,0.23701346003507567,0.2334400836494402,0.22958212849873003,0.22547573204021013,0.22115695998462892,0.21666116387262976,0.21202243644780838,0.2072731705805491,0.2024437215302027,0.19756216754070852,0.19265416024286985,0.1877428540471115,0.18284890252014688,0.17799050945767134,0.173183522784501,0.16844156032431093,0.1637761577011116,0.15919693000865273,0.15474033012606134,0.15046013697957739,0.14634893847670966,0.14239829801957724,0.13860026354251218,0.13494733844689916,0.1314324540461961,0.12804894351139393,0.12479051728897086,0.12165123995017856,0.11862550842120469,0.11570803153739713,0.1128938108605699,0.11017812269658396,0.10755650124932131,0.10502472284773313,0.1025787911837231,0.10093186927385864,0.09968639699294263,0.09846445515614796,0.09725294821717491,0.09605109497571655,0.09485973332125948,0.09367960239719493,0.09251134973668168,0.09135553814543725,0.09021265229710745,0.08908310501704443,0.08796724323889273,0.08686535362561927,0.0857776678524701,0.0847043675541533,0.08364558894236211,0.08260142710266032,0.08157193998209641,0.08055715208045816,0.07955705785923113,0.07857162488307866,0.07760079670891795,0.07664449553788073,0.07570262464519967,0.07477507060280544,0.0738617053089666,0.07296238783878353,0.07207696612867887,0.07120527850748097,0.07034715508590653,0.06950241901563149,0.0686708876284334,0.06785237346516895,0.06704668520376326,0.06625362849468161,0.06547300671176762,0.06470462162575129,0.06394827400717724,0.06320376416495001,0.06247089242626461,0.061749459563170274,0.06103926717061818,0.060340118000451366,0.059651816255382316,0.05897416784673082,0.05830698061930686,0.05765006454657292,0.05700323189894642,0.05636629738781787,0.05573907828769807,0.055121394538629916,0.05451306883085338,0.05391392667350901,0.05332379644903291,0.05274250945469575,0.05216989993267721,0.05160580508987381,0.05105006510856506,0.050502523148953885,0.049963025344478634,0.04943142079075361,0.048907561528871914,0.04839130252375753,0.047882501638181335,0.047381019603006586,0.0468867199841446,0.04639946914670198,0.0459191362167103,0.045445593040809966,0.04497871414423005,0.04451837668733952,0.04406446042106671,0.043616847641403673,0.043175423143220364,0.042740074173585496,0.04231069038474533,0.04188716378694067,0.04146938870117679,0.041057261712074945,0.04065068162090961,0.04024954939893045,0.03985376814103619,0.03946324301989439,0.03907788124055106,0.03869759199559217,0.03832228642090877,0.03795187755208739,0.03758628028148343,0.03722541131598694,0.03686918913551294,0.03651753395223033,0.036170367670551325,0.0358276138478778,0.03548919765613095,0.0351550458440553,0.03482508670030426,0.03449925001731223,0.03417746705593645,0.033859670510885204,0.03354579447691188,0.033235774415773106,0.03292954712394913,0.03262705070110242,0.03232822451928385,0.03203300919286236,0.031741346549172454,0.03145317959986541,0.031168452512959237,0.030887110585559742,0.030609100217258087,0.030334368884180368,0.03006286511367747,0.029792987681749677,0.02952211207158147,0.029254451222911756,0.02898995457367062,0.028728572571775392,0.02847025665125901,0.028214959209006883,0.02796263358209943,0.02771323402573726,0.027466715691736237,0.02722303460757781,0.02698214765600448,0.026744012555135876,0.02650858783910519,0.026275832839193148,0.026045707665449426,0.02581817318879096,0.025593191023556738,0.025370723510517983,0.025150733700322746,0.02493318533736745,0.024718042844081748,0.024505271305619858,0.024294836454937956,0.024086704658259774,0.02388084290091008,0.02367721877350944,0.023475800458523724,0.02327655671714893,0.023079456876535034,0.022884470817329854,0.022691568961538258,0.022500722260686928,0.022311902184289332,0.022125080708594747,0.02194023030562439,0.021757323932478718,0.02157633502091127,0.021397237467163693,0.021220005622048763,0.02104461428128256,0.02087103867605339,0.020699254463822488,0.020529237719353145,0.020360964925954135,0.02019441296694188,0.020029559117308412,0.019866381035591494,0.01970485675594144,0.019544964680381513,0.019386683571250313,0.019229992543829903,0.019074871059148134,0.01892129891695282,0.018769256248855126,0.018618723511631404,0.018469681480687786,0.018322111243676675,0.018175994194263263,0.01803131202604049,0.01788804672658184,0.017746180571636908,0.017605696119459918,0.01746657620526959,0.017328803935836898,0.017192362684199235,0.01705723608449174,0.016923408026901204,0.016790862652732507,0.016659584349587756,0.0165295577466562,0.016400767710106956,0.016273199338589048,0.016146837958830894,0.01602166912133826,0.01589767859618819,0.015774852368917916,0.015653176636501533,0.015532637803419088,0.015413222477810514,0.015294917467713793,0.015177709777387517,0.015061586603710014,0.014946535332660126,0.014832543535872952,0.014719598967269579,0.014607689559761303,0.014496803422021299,0.014386928835328659,0.014278054250478154,0.014170168284755903,0.014063259718979067,0.013957317494599388,0.013852330710865045,0.013748288622044644,0.013645180634708322,0.013542996305065258,0.013441725336358016,0.013341357576308277,0.013241883014617971,0.013143291780520523,0.013045574140382828,0.01294872049535582,0.01285272137907443,0.012757567455401722,0.01266324951622139,0.012569758479273408,0.012477085386033591,0.012385221399636794,0.012294157802839174,0.012203885996023837,0.01211439749524464,0.01202568393030911,0.01193773704290018,0.011850548684732749,0.011764110815748859,0.011678415502346816,0.01159345491564552,0.011509221329781891,0.011425707120242939,0.0113429047622275,0.01126080682904192,0.011179405990525554,0.011098695011506416,0.01101866675028737,0.01093931415715902,0.010860630272943003,0.010782608227561859,0.01070524123863601,0.010628522610107025,0.01055244573088768,0.010477004073535223,0.010402191192951495,0.010328000725106087,0.010254426385783347,0.010181461969353298,0.010109101347563388,0.01003733846835443,0.009966167354697086,0.009895582103449742,0.009825576884238064,0.009756145938353082,0.009687283577670899,0.009618984183591214,0.009551242205994884,0.27801838857518857,0.2777490503441862,0.2769444433224596,0.27561467892195424,0.27377624440804105,0.2714514787875971,0.26866788370326417,0.26545730876028323,0.26185505534638376,0.25789894394929375,0.25362838753065176,0.24908350832093348,0.24430432829771834,0.23933005550831132,0.23419848014218939,0.22894548654849034,0.22360468072522943,0.2182071274739975,0.21278118751486208,0.20735244234327957,0.20194369332815268,0.1965750212808103,0.19126389323184015,0.18602530420158356,0.1808719431361973,0.1758218658992826,0.170952223547735,0.1662733507331155,0.1617759434043648,0.15745120472081736,0.15329081818608933,0.14928692163246954,0.14543208216677048,0.14171927215117963,0.13814184626214535,0.1346935196473958,0.13136834718262622,0.12816070381566183,0.12506526597512818,0.12207699401326853,0.11919111564660638,0.11640311035466125,0.11370869469439072,0.11165374142993102,0.11028749033528903,0.1089497226476037,0.10763957101377428,0.10634995160801393,0.10506956846480102,0.10379911309897041,0.10253943237726963,0.10129127577889074,0.10005530226819788,0.0988320869306078,0.09762212733958019,0.0964258496320097,0.095243614277034,0.0940757215298933,0.09292241656791403,0.09178389431007578,0.0906603039252595,0.08955175303699421,0.08845831163468312,0.08738001570293029,0.08631687058158749,0.08526885407003992,0.08423591928949806,0.08321799731730993,0.08221499960722344,0.08122682020929299,0.08025333780275816,0.07929441755482626,0.07834991281770201,0.07741966667567578,0.07650351335349236,0.07560127949654705,0.07471278533292398,0.07383784572659767,0.07297627113055273,0.07212786844797797,0.07129244180914987,0.07046979327101201,0.06965972344604948,0.06886203206646231,0.06807651848924053,0.06730298214731868,0.06654122295151267,0.06579104164767194,0.06505224013302167,0.06432462173540815,0.06360799145883801,0.0629021561983925,0.06220692492739974,0.06152210885943976,0.06084752158757849,0.06018297920300355,0.05952830039506417,0.05888330653450157,0.05824782174157049,0.0576216729405291,0.05700468990188998,0.056396705273695204,0.055797554602930406,0.05520707634815768,0.0546251118842813,0.05405150550032398,0.053486104390985334,0.05292875864270673,0.052379321214859415,0.05183764791667327,0.05130359738041218,0.05077703103128005,0.0502578130545044,0.049745810359960785,0.04924089254472804,0.04874293185386686,0.04825180313972222,0.04776738382001196,0.04728955383491862,0.04681819560341778,0.0463531939790154,0.04589443620506656,0.045441811869826834,0.04499521286137813,0.044554533322529684,0.044119669605824245,0.04369052022873001,0.04326698582910187,0.04284896912099643,0.04243637485088369,0.04202910975433891,0.041627082513241986,0.04123020371353639,0.04083838580358039,0.04045154305312777,0.04006959151294671,0.03969244897512177,0.03932003493403762,0.038952270548065104,0.038589078601964935,0.0382303834700004,0.03787611107978555,0.037526188876856006,0.0371805457899671,0.03683911219712406,0.036501819892326835,0.03616860205304378,0.03583939320839478,0.03551412920804314,0.03519274719178591,0.034875185559840996,0.03456138394380637,0.03425128317830196,0.03394482527326846,0.033641953386917625,0.03334261179932737,0.03304460883359704,0.03274588463660156,0.03245067922758467,0.03215893778602286,0.03187060657282516,0.03158563290523829,0.03130396513237016,0.031025552611332358,0.030750345683977127,0.030478295654217627,0.030209354765922087,0.02994347618135587,0.029680613960174476,0.029420723038941398,0.029163759211162828,0.02890967910782844,0.028658440178436453,0.028410000672503374,0.02816431962153692,0.02792135682146319,0.027681072815495953,0.027443428877440144,0.02720838699540834,0.026975909855953127,0.026745960828594092,0.02651850395073238,0.02629350391294664,0.0260709260446492,0.0258507363001073,0.025632901244809304,0.0254173880421698,0.025204164440568454,0.02499319876070344,0.024784459883264602,0.02457791723690742,0.024373540786524282,0.024171301021803558,0.02397116894607246,0.023773116065407374,0.02357711437801613,0.023383136363875862,0.023191154974623786,0.023001143623695028,0.0228130761766947,0.022626926942007224,0.02244267066162967,0.022260282502225497,0.022079738046392534,0.021901013284142064,0.021724084604576175,0.021548928787767763,0.02137552299683105,0.021203844770179326,0.02103387201396778,0.020865582994709402,0.020698956332068863,0.02053397099182245,0.02037060627898242,0.02020884183108337,0.02004865761161992,0.019890033903640598,0.01973295130348722,0.019577390714678636,0.01942333334193438,0.01927076068533683,0.019119654534622325,0.018969996963606267,0.018821770324732253,0.018674957243744437,0.01852954061448195,0.01838550359378598,0.018242829596524936,0.01810150229072886,0.017961505592831977,0.017822823663020928,0.017685440900687396,0.017549341939977262,0.017414511645441656,0.017280935107780705,0.017148597639681087,0.017017484771745476,0.01688758224850693,0.016758876024533076,0.016631352260612572,0.016504997320023616,0.01637979776488418,0.016255740352576663,0.016132812032252492,0.016010999941408834,0.015890291402538458,0.015770673919849848,0.015652135176058,0.015534663029239266,0.015418245509755225,0.015302870817239102,0.015188527317644765,0.015075203540358392,0.014962888175366888,0.014851570070487373,0.01474123822865231,0.014631881805250246,0.014523490105520643,0.014416052582003127,0.014309558832035506,0.014203998595305183,0.01409936175144858,0.013995638317698747,0.01389281844658143,0.013790892423654296,0.013689850665294013,0.013589683716525833,0.013490382248895974,0.013391937058387492,0.013294339063374279,0.013197579302617857,0.013101648933301971,0.01300653922910576,0.012912241578313992,0.01281874748196532,0.012726048552033433,0.012634136509646007,0.01254300318333637,0.012452640507328812,0.012363040519857477,0.012274195361515012,0.012186097273634929,0.012098738596703124,0.012012111768799513,0.011926209324069993,0.011841023891224637,0.011756548192066387,0.011672775040045774,0.011589697338842837,0.011507308080974917,0.011425600346431362,0.011344567301330962,0.011264202196606302,0.011184498366711128,0.011105449228350984,0.01102704827923838,0.010949289096867989,0.010872165337316341,0.010795670734061989,0.010719799096827068,0.30698929247913775,0.30669107339271,0.3058002084097582,0.304327949377816,0.302292640575951,0.2997191320437094,0.2966380085815766,0.29308467882426725,0.2890983739450383,0.2847211065305771,0.27999663732362456,0.27496949160079387,0.2696840588988479,0.26418380065165625,0.25851058101228813,0.2527041274885362,0.24680162057397334,0.24083740562718703,0.23484281594367779,0.2288460932145202,0.22287239019157587,0.21694384013272025,0.2110796782138063,0.20529640130284366,0.19960798405104338,0.19408400168517895,0.18877372016590788,0.18366705990420765,0.17875444976197677,0.17402680557871916,0.16947550845905984,0.1650923831077953,0.1608696764350904,0.1568000366023618,0.1528764926362333,0.14909243470343927,0.14544159511149876,0.14191803007745366,0.13851610228874658,0.13523046426643603,0.13205604252945685,0.12898802255009434,0.12602183448426085,0.12346409423047218,0.12196651032422555,0.12049971450698554,0.11906279094941058,0.11765485737090524,0.11627506374097046,0.11491511458419723,0.11356425299081145,0.11222334976529727,0.11089327730162148,0.10957481125674481,0.1082686371474098,0.10697535673577299,0.10569549417237689,0.10442950187360467,0.10317776611797533,0.1019406123517997,0.1007183101999142,0.09951107818137417,0.09831908813348819,0.09714246935028495,0.09598131244362866,0.09483567293689647,0.09370557460222569,0.0925910125531979,0.09149195610534812,0.09040835141712456,0.08934012392393924,0.08828718057793764,0.08724941190574569,0.0862266938962007,0.08521888972961496,0.08422585135961827,0.08324742095819682,0.08228343223391638,0.08133371163282485,0.08039807943097403,0.0794763507269549,0.07856833634227411,0.0776738436369639,0.07679267724722683,0.07592463975150136,0.07506953227086759,0.07422715500923821,0.0733973077384621,0.07257979023299005,0.07177440265844702,0.07098094591812143,0.07019922196101239,0.06942903405487101,0.06867018702731796,0.06792248747791599,0.0671857439638144,0.06645976716139995,0.06574437000613152,0.06503936781262118,0.06434457837680017,0.0636598220618639,0.06298492186957354,0.06231970349829755,0.06166399538913592,0.06101762876128148,0.06038043763771368,0.05975225886221001,0.05913293210858659,0.058522299882961926,0.05792020751983071,0.05732650317259672,0.05674103779920188,0.05616366514341602,0.05559424171228099,0.055032626750204816,0.05447868221010484,0.05393227272199187,0.053393265559350624,0.05286153060360832,0.052336940307005184,0.05181936965410648,0.051308696122190287,0.050804799640726,0.05030756255013453,0.04981686955998321,0.049332607706794436,0.048854666311585034,0.04838293693726599,0.04791731334601741,0.04745769145671961,0.04700396930255032,0.046556046988808504,0.0461138266510379,0.045677212413510936,0.04524611034812988,0.04482042843377532,0.04440007651616611,0.04398496626824436,0.04357501115112464,0.043170126375636615,0.04277022886446258,0.04237523721491445,0.04198507166234292,0.041599654044197326,0.041218907764750096,0.04084275776047429,0.04047113046609987,0.04010395378133524,0.039741157038258604,0.03938267096937736,0.03902842767635775,0.038678360599405145,0.03833240448731123,0.03799049536814569,0.037652570520590775,0.03731856844591661,0.036988428840573274,0.03666002491918194,0.03633047411945717,0.036004776138780614,0.03568287154409944,0.035364702058843796,0.03505021053664449,0.034739340935689644,0.0344320382936937,0.03412824870347194,0.033827919289109595,0.03353099818270158,0.033237434501666684,0.03294717832661031,0.032660180679728035,0.03237639350374104,0.032095769641339277,0.031818262815136215,0.03154382760811144,0.03127241944453325,0.031003994571349277,0.030738510040036846,0.030475923688892022,0.030216194125760477,0.02995928071118767,0.029705143541983017,0.029453743435189715,0.02920504191244031,0.02895900118470185,0.028715584137390233,0.02847475431584852,0.028236475911181943,0.028000713746431632,0.027767433263091387,0.027536600507947973,0.027308182120241924,0.02708214531913784,0.026858457891500986,0.02663708817996244,0.026418005071277867,0.026201177984962905,0.02598657686220119,0.025774172155021098,0.02556393481572475,0.025355836286575163,0.025149848489725842,0.02494594381738976,0.02474409512224062,0.024544275708043895,0.02434645932050292,0.024150620138325803,0.023956732764499285,0.023764772217766527,0.023574713924306805,0.02338653370960348,0.02320020779050574,0.02301571276747251,0.022833025616994403,0.022652123684193854,0.022472984675589572,0.02229558665203205,0.022119908021798362,0.02194592753384422,0.02177362427120962,0.021602977644575885,0.021433967385963752,0.021266573542578358,0.02110077647079009,0.020936556830250443,0.020773895578141653,0.020612773963549876,0.020453173521968022,0.020295076069918313,0.020138463699693597,0.01998331877421464,0.019829623922002222,0.019677362032255123,0.01952651625003991,0.019377069971583175,0.019229006839666298,0.01908231073912148,0.018936965792421368,0.018792956355367207,0.018650267012867826,0.018508882574808493,0.01836878807201032,0.018229968752271196,0.018092410076494776,0.017956097714899203,0.01782101754330625,0.017687155639507825,0.017554498279710586,0.017423031935050754,0.017292743268185896,0.017163619129954507,0.017035646556105673,0.016908812764097447,0.016783105149957577,0.016658511285212264,0.01653501891387579,0.01641261594950189,0.016291290472294603,0.016171030726279508,0.016051825116528393,0.01593366220644348,0.01581653071509428,0.015700419514607655,0.015585317627611943,0.01547121422472807,0.015358098622114165,0.015245960279056926,0.015134788795610228,0.015024573910281995,0.014915305497763135,0.01480697356670396,0.014699568257532134,0.01459307984031366,0.014487498712654683,0.014382815397645228,0.01427902054183981,0.014176104913279383,0.014074059399549864,0.0139728750058775,0.01387254285326208,0.013773054176642473,0.013674400323099634,0.013576572750092306,0.013479563023725511,0.013383362817053046,0.01328796390840892,0.013193358179772548,0.013099537615162716,0.01300649429906198,0.012914220414869433,0.012822708243383305,0.012731950161309121,0.01264193863979731,0.012552666243006372,0.012464125626692187,0.012376309536824014,0.012289210808223166,0.012202822363228614,0.012117137210385232,0.012032148443155987 +0.09154924045302677,0.09138181259525248,0.09088373778479016,0.09006736917229759,0.08895241814532165,0.0875647484936505,0.0859348867150156,0.08409640284939304,0.08208431046621115,0.07993360915907648,0.07767805602764566,0.07534921258059354,0.07297577719911438,0.07058318508478022,0.06819343911858936,0.06582512579129268,0.06349356855580818,0.0612110743345431,0.05898723530669015,0.056829255732802265,0.054756455115131476,0.05280154237008069,0.05095718136442819,0.04919835903557117,0.04749960448864599,0.04586199031139689,0.04428596878696612,0.04277133984526459,0.04131738155201091,0.039922962247390656,0.038586635761152385,0.03730672137319399,0.036081370270677766,0.03490862022670724,0.033786440130743126,0.032712765866837266,0.031685528882656404,0.030702678634491432,0.02976219993993708,0.028862126126469927,0.02800054873335957,0.02717562440785618,0.026385579534191354,0.025628713045126147,0.02490339778959102,0.024208080764973376,0.02354128246772582,0.022901595569820774,0.022287683089912472,0.021698276196001443,0.021132171749672555,0.02058822967999923,0.020065370257082354,0.01956257132033797,0.01907886550447238,0.018613337496255683,0.01816512134711902,0.01773339786016013,0.01731739206492221,0.01691637078912237,0.016529640333232794,0.0161565442511564,0.01579646123821997,0.015448803126114278,0.015113012983188524,0.014788563317623146,0.014474954380316022,0.014171712563857707,0.013878388893654822,0.013594557607074337,0.01331981481636577,0.013053777251129684,0.012796081076106943,0.01254638078016149,0.01230434813244158,0.012069671201826183,0.011842053435942,0.011621212796174235,0.011406880945276332,0.011172694876792226,0.010912858633937105,0.01066112212266747,0.010417164126769204,0.010180678779080951,0.00995137471761785,0.009728974292967783,0.00951321282364929,0.009303837896358694,0.009100608708207369,0.008903295448253329,0.008711678715808581,0.008525548973156065,0.008344706030488785,0.008168958561007727,0.007998123644264409,0.007832026335957669,0.007670499262516247,0.00751338223890123,0.007360521908181815,0.007211771401518917,0.007066990017290258,0.006926042918174863,0.006788800845084566,0.006655139846917454,0.006524941025162648,0.00639809029245667,0.006274478144248049,0.006153999442784358,0.00603655321268033,0.005922042447384137,0.0058103739258931406,0.005701458039116892,0.005595208625324677,0.005491542814144315,0.005390380878623222,0.005291646094883035,0.005195264608934844,0.005101165310248688,0.005009279711690798,0.004919541835475946,0.004831888104793755,0.00474625724079529,0.00466259016464249,0.004580829904343562,0.004500921506108784,0.0044228119499857355,0.004346450069538884,0.004271786475357248,0.004198773482186602,0.004127365039490262,0.0040575166652614845,0.00398918538291347,0.003922329661087346,0.0038569093562261575,0.00379288565777302,0.003730221035856,0.003668879191336074,0.0036088250080959106,0.0035500245074565565,0.0034924448046165647,0.0034360540670097875,0.0033808214744898727,0.003326717181248853,0.003273712279385495,0.0032217787640434693,0.003170889500041142,0.0031210181899234608,0.0030721393433658993,0.00302422824786648,0.0029772609406644294,0.0029312141818283173,0.0028860654284569025,0.002841792809943017,0.002798375104249391,0.002755791715150108,0.0027140226503939865,0.0026730485007458536,0.0026328504198682287,0.002593410105003485,0.002554709778421217,0.0025167321695969084,0.0024794604980878775,0.0024428784570775944,0.002406970197557414,0.002371720313118391,0.002337113825326275,0.0023031361696550976,0.002269773181953697,0.0022370110854241657,0.0022048364780890358,0.002173236320726814,0.0021421979252564567,0.0021117089435506754,0.002081757356661793,0.002052331464441603,0.002023419875539552,0.0019950114977633276,0.001967095528787533,0.001939661447194991,0.0019126990038387994,0.0018861982135108758,0.0018601493469051383,0.0018345429228638515,0.001809369700894733,0.0017846206739495195,0.0017602870614526662,0.0017363603025706345,0.0017128320497123517,0.0016896941622521731,0.0016669387004657255,0.0016445579196717802,0.0016225442645712194,0.0016008903637759109,0.0015795890245205737,0.0015586332275498035,0.0015380161221747904,0.0015177310214926324,0.001497771397762213,0.0014781308779313873,0.001458803239308799,0.0014397824053762659,0.0014210624417356637,0.0014026375521857702,0.0013845020749242165,0.0013666504788703358,0.0013490773601037662,0.001331777438415718,0.0013147455539680643,0.0012979766640567115,0.0012814658399757802,0.0012652082639783434,0.001249199226331236,0.0012334341224600124,0.0012179084501810677,0.0012026178070182027,0.0011875578875999752,0.0011727244811360071,0.001158113468968857,0.0011437208221991384,0.0011295425993813363,0.0011155749442881555,0.0011018140837404928,0.001088256325501651,0.0010748980562330318,0.0010617357395094713,0.0010487659138924276,0.0010359851910585606,0.0010233902539826198,0.0010109778551722953,0.0009987448149535963,0.000986688019805017,0.000974804420739105,0.00096309103172945,0.000951544928182255,0.0009401632454505899,0.0009289431773901383,0.0009178819749552652,0.0009069769448336815,0.0008962254481190856,0.0008856248990201717,0.0008751727636049765,0.0008648665585796381,0.0008547038501000677,0.0008446822526160827,0.0008347994277465848,0.0008250530831849862,0.0008154409716339289,0.000805960889768555,0.0007966106772270545,0.0007873882156282242,0.0007782914276148036,0.0007693182759219562,0.000760466762470285,0.0007517349274822579,0.000743120848621855,0.000734622640156387,0.0007262384521399726,0.000717966469617993,0.0007098049118520533,0.0007017520315645125,0.0006938061142024646,0.0006859654772202692,0.0006782284693802182,0.00067059347007092,0.0006630588886425673,0.0006556231637590594,0.0006482847627661421,0.0006410421810752583,0.0006338939415627366,0.0006268385939836154,0.0006198747144000489,0.0006130009046236493,0.0006062157916714421,0.0005995180272350416,0.0005929062871628072,0.0005863792709543181,0.0005799357012672148,0.0005735743234357905,0.0005672939050011085,0.0005610932352523942,0.000554971124779189,0.0005489264050342605,0.0005429579279067611,0.0005370645653054577,0.0005312452087517188,0.0005254987689820983,0.0005198241755600366,0.0005142203764967331,0.0005086863378807348,0.0005032210435160669,0.0004978234945687766,0.0004924927092214365,0.0004872277223356996,0.00048202758512247716,0.00047689136481960927,0.0004718181443769155,0.00046680702214821953,0.00046185711159044574,0.0004569675409694104,0.0004521374530722009,0.11157165976462197,0.11136951272107888,0.11076815376944683,0.10978249871816871,0.10843634525479384,0.1067609135908591,0.10479304445443433,0.10257324173943086,0.10014373986910642,0.09754674500918296,0.09482295434616132,0.09201040901221866,0.0891436922903177,0.0862534506869971,0.08336619325164035,0.08050431350458026,0.0776862763245412,0.07492691637124263,0.07223780243436977,0.06962763136739304,0.06712451843193736,0.06476377064733112,0.06253533673036102,0.060418420598082355,0.05837381285636034,0.056400406616795275,0.05449905306367535,0.052669791906726875,0.050912008450698154,0.04922456932668289,0.047605938356303015,0.046054274367265516,0.044567512924428426,0.04314343394767612,0.041779717104295705,0.040473986725839836,0.03922384783329626,0.03802691467789193,0.03688083302986849,0.035783297281826665,0.034732063280564385,0.03372495766420773,0.03275988436012914,0.03183482879324688,0.0309478602630682,0.030097132869573318,0.029280885301729672,0.028497439746397703,0.027745200128303685,0.027022649852549065,0.026328349188334047,0.0256609324055205,0.025019104753250525,0.024401639351433243,0.023807374050747298,0.023235208304522092,0.022684100085727826,0.022153062874169883,0.02164116273238382,0.021147515483384744,0.02067128399922967,0.02021167560591997,0.01976793960753767,0.019339364930418254,0.018925277886529358,0.018525040054035137,0.018138046272066933,0.01776372274607139,0.017401525259631387,0.017050937488350727,0.016711469411185485,0.016382655814556724,0.01606405488453415,0.01575524688245042,0.015455832899400838,0.01516543368519489,0.014883688547507923,0.014610254317121447,0.01434480437533531,0.014065291590031176,0.013741983395410542,0.01342865696118704,0.01312491959685279,0.012830397238738585,0.012544733433763406,0.012267588384361622,0.011998638050691391,0.011737573306496848,0.011484099145201534,0.011237933933042102,0.010998808706261647,0.010766466509554462,0.010540661773167722,0.010321159726207093,0.01010773584386969,0.00990017532647265,0.00969827260828959,0.00950183089432681,0.009310661723312894,0.009124584555270964,0.008943426382159362,0.008767021360166834,0.008595210462330498,0.008427841150249533,0.008264767063730081,0.008105847727283197,0.007950948272463591,0.007799939175105727,0.007652696006566045,0.00750909919815212,0.00736903381795659,0.007232389359373062,0.0070990595406156725,0.006968942114600502,0.0068419386885993656,0.006717954553101429,0.006596898519360512,0.006478682765137453,0.006363222688171746,0.00625043676695607,0.006140246428402226,0.006032575922019118,0.0059273522002433925,0.005824504804587954,0.005723965757287347,0.0056256694581479725,0.005529552586319137,0.005435554006722819,0.005343614680895567,0.005253677582005325,0.0051656876138285995,0.005079591533477,0.004995337877679779,0.004912876892437595,0.004832160465876109,0.004753142064131685,0.004675776670120186,0.004600020725039085,0.004525832072467163,0.004453169904932479,0.004381994712823141,0.004312268235528831,0.004243953414700681,0.0041770143495265324,0.004111416253925006,0.004047125415562282,0.0039841091566080785,0.003922335796144542,0.003861774614150733,0.0038023958169878004,0.0037441705043151125,0.003687070637367999,0.003631069008537076,0.0035761392121862723,0.0035222556166535366,0.0034693933373806268,0.0034175282111184985,0.003366636771162345,0.0033166962235677525,0.0032676844243047453,0.0032195798573085507,0.0031723616133851255,0.003126009369936761,0.0030805033714693102,0.0030358244108480586,0.002991953811269272,0.0029488734089172107,0.0029065655362754696,0.0028650130060668046,0.0028241990957931203,0.0027841075328507202,0.0027447224801970195,0.002706028522544178,0.00266801065305959,0.0026306542605507724,0.002593945117115192,0.0025578693662356836,0.002522413511303936,0.0024875644045530285,0.0024533092363845004,0.0024196355250725434,0.002386531106830662,0.002353984126226884,0.002321983026932126,0.0022905165427905987,0.002259573689197997,0.002229143754776098,0.0021992162933320188,0.0021697811160915426,0.0021408282841947662,0.0021123481014455386,0.0020843311073038733,0.002056768070112375,0.002029649980548284,0.002002968045291418,0.0019767136809014825,0.0019508785078957303,0.0019254543450199521,0.0019004332037059306,0.001875807282707451,0.001851568962909787,0.001827710802305095,0.0018042255311283184,0.0017811060471474654,0.0017583454111032074,0.001735936842291425,0.0017138737142848321,0.0016921495507878697,0.0016707580216203798,0.0016496929388258492,0.001628948252898937,0.0016085180491293553,0.0015883965440570591,0.0015685780820352973,0.0015490571318979877,0.001529828283727039,0.0015108862457173216,0.0014922258411350564,0.001473842005366863,0.00145572978305626,0.0014378843253249549,0.0014203008870753572,0.0014029748243725977,0.0013859015919026607,0.0013690767405043314,0.001352495914772814,0.0013361548507318946,0.0013200493735733897,0.0013041753954609828,0.0012885289133966148,0.0012731060071473148,0.0012579028372308248,0.0012429156429574584,0.001228140740527218,0.0012135745211798586,0.0011992134493963558,0.0011850540611503845,0.0011710929622076468,0.0011573268264723176,0.0011437523943785648,0.0011303664713259302,0.001117165926157429,0.0011041476896784083,0.0010913087532157652,0.0010786461672156577,0.0010661570398787668,0.0010538385358319212,0.001041687874835171,0.001029702330522724,0.0010178792291774426,0.0010062159485373133,0.0009947099166332204,0.000983358610657106,0.0009721595558592958,0.0009611103244746329,0.0009502085346761669,0.0009394518495557815,0.0009288379761308719,0.0009183646643765347,0.000908029706282064,0.0008978309349316523,0.0008877662236081403,0.0008778334849193486,0.0008680306699464107,0.0008583557674131402,0.0008488068028763302,0.0008393818379360309,0.0008300789694653269,0.0008208963288592409,0.0008118320813018194,0.0008028844250514002,0.0007940515907432073,0.0007853318407088982,0.0007767234683125931,0.0007682247973030303,0.0007598341811810951,0.000751550002582741,0.0007433706726765539,0.0007352946305756469,0.0007273203427636636,0.000719446302534113,0.0007116710294431856,0.000703993068775279,0.000696410991021126,0.0006889233913680441,0.000681528889202198,0.0006742261276221709,0.0006670137729640296,0.0006598905143372282,0.0006528550631711565,0.000645906152772227,0.0006390425378908428,0.0006322629942984327,0.0006255663183740077,0.0006189513267000417,0.0006124168556675951,0.0006059617610901104,0.0005995849178260633,0.0005932852194099446,0.000587061577691496,0.13601737570210815,0.1357730977428659,0.135046411127369,0.13385535614708108,0.1322287109628954,0.13020422107948687,0.1278264144388252,0.1251442300815016,0.12220867911766485,0.11907071872945385,0.11577946499112349,0.11238081103018356,0.10891646369263681,0.10542337071258069,0.10193348369792758,0.09847378916986184,0.09506653771596946,0.09172960664146614,0.08847694110667167,0.08531903003276113,0.08229490420234842,0.07944209769161241,0.07674787473144519,0.07419648147269728,0.07173796131390396,0.06936198333170933,0.06706996650600117,0.06486232043303994,0.06273863407988184,0.060697839881102805,0.05873835462294327,0.056858199049791745,0.055055098364485036,0.053326565852766586,0.05166997180206926,0.05008259975056651,0.048561691926649976,0.047104485544681995,0.045708241425498945,0.04437026622018508,0.04308792933842119,0.041858675522068976,0.04068003386138697,0.039549623925399596,0.038465159568826075,0.03742445088393984,0.0364254046856403,0.03546602385007609,0.034544405769828715,0.033658740140725285,0.03280730625511848,0.031988469943152915,0.03120068027583527,0.030442466120881473,0.029712432623437642,0.0290092576683999,0.0283316883683307,0.027678537610717327,0.02704868068994315,0.02644105204253648,0.02585464209888532,0.025288494260173256,0.024741702005866555,0.024213406134336177,0.02370279213703205,0.02320908770501682,0.02273156036535885,0.022269515243969654,0.021822292950771958,0.021389267582625014,0.020969844839083245,0.020563460245933873,0.020169577481331063,0.019787686799370013,0.019417303546005536,0.019057966762307213,0.01870923787022161,0.01837069943614505,0.018041954007815948,0.017710651342563933,0.017308328880130397,0.016918306994426414,0.016540105714807542,0.016173267665182296,0.015817356841203913,0.015471957460350528,0.01513667288031217,0.014811124581421812,0.014494951209094643,0.014187807672513226,0.013889364296031825,0.013599306019982207,0.01331733164780331,0.013043153136587464,0.012776494928339974,0.012517093319417938,0.012264695865784048,0.012019060821849859,0.01177995661085289,0.011547161324820443,0.011320462252313276,0.011099655432260403,0.010884545232292108,0.01067494395010359,0.010470671436454646,0.01027155473851452,0.010077427762337433,0.00988813095333841,0.009703510993698776,0.0095234205157179,0.009347717830172303,0.0091762666688114,0.009008935940176356,0.008845599497967501,0.00868613592125253,0.008530428305834562,0.008378364066150503,0.00822983474710976,0.008084735845309794,0.007942966639115359,0.007804430027103992,0.00766903237442024,0.0075366833666040585,0.007407295870489135,0.007280785801782737,0.007157071998974357,0.007036076103229376,0.006917722443950295,0.006801937929707751,0.0066886519442531335,0.006577796247353689,0.006469304880194026,0.0063631140751096394,0.00625916216942885,0.006157389523214599,0.0060577384407032135,0.0059601530952590204,0.005864579457663031,0.00577096522757101,0.005679259767983733,0.005589414042576932,0.0055013805557550385,0.005415113295291901,0.0053305676774332966,0.0052477004943438064,0.0051664698637812236,0.00508683518089668,0.005008757072055782,0.004932197350586433,0.004857118974362056,0.004783486005135529,0.004711263569539183,0.004640417821677739,0.00457091590723766,0.0045027259290444065,0.004435816914002598,0.004370158781353348,0.004305722312193273,0.004242479120195581,0.004180401623480646,0.004119463017585679,0.004059637249482623,0.004000898992601333,0.003943223622811712,0.0038865871953240585,0.0038309664224675482,0.0037763386523099207,0.0037226818480802152,0.003669974568363079,0.0036181959480299846,0.003567325679876805,0.003517343996938861,0.0034682316554530755,0.003419969918443078,0.003372540539899454,0.003325925749531458,0.003280108238066558,0.0032350711430761845,0.003190798035304576,0.0031472729054828103,0.0031044801516067143,0.0030624045666608124,0.003021031326771025,0.0029803459797675337,0.0029403344341438677,0.0029009829483950637,0.0028622781207206806,0.002824206879078388,0.0027867564715751266,0.002749914457181386,0.002713668696758184,0.0026780073443834125,0.002642918838966602,0.002608391896141807,0.0025744155004265956,0.002540978897639178,0.002508071587562663,0.002475683316847665,0.002443804072144969,0.002412424073458496,0.0023815337677121945,0.002351123822521844,0.002321185120164798,0.0022917087517403925,0.00226268601151465,0.002234108391441493,0.0022059675758556883,0.0021782554363304575,0.002150964026694054,0.0021240855782003383,0.0020976124948466897,0.002071537348835673,0.0020458528761743535,0.0020205519724068605,0.0019956276884759722,0.001971073226708268,0.001946881936919976,0.0019230473126384511,0.0018995629874357304,0.0018764227313702673,0.0018536204475336094,0.0018311501686975287,0.0018090060540596148,0.0017871823860829963,0.0017656735674275218,0.0017444741179695712,0.0017235786719068406,0.0017029819749463733,0.0016826788815723825,0.0016626643523915228,0.0016429334515530656,0.001623481344241913,0.0016043032942412551,0.0015853946615637792,0.0015667509001484356,0.001548367555620956,0.0015302402631163683,0.0015123647451608306,0.0014947368096119235,0.0014773523476547677,0.0014602073318526647,0.001443297814250588,0.0014266199245293741,0.0014101698682098894,0.001393943924905027,0.0013779384466182717,0.0013621498560874204,0.0013465746451723104,0.0013312093732845483,0.0013160506658589672,0.001301095212864764,0.0012863397673554702,0.001271781144056773,0.0012574162179904388,0.0012432419231341182,0.0012292552511153705,0.0012154532499391265,0.0012018330227475656,0.0011883917266116986,0.0011751265713531452,0.0011620348183960238,0.0011491137796474948,0.0011363608164063567,0.001123773338299066,0.001111348802241851,0.0010990847114289131,0.001086978614345459,0.0010750281038049837,0.0010632308160103934,0.001051584429637705,0.0010400866649424212,0.0010287352828874349,0.0010175280842920657,0.0010064629090015909,0.0009955376350768955,0.0009847501780032182,0.0009740984899180917,0.0009635805588575292,0.0009531944080200468,0.000942938095048276,0.0009328097113271723,0.0009228073812990151,0.0009129292617942941,0.000903173541378235,0.00089353843971249,0.0008840222069317628,0.0008746231230345719,0.0008653394972883106,0.000856169667647824,0.0008471120001873096,0.0008381648885452912,0.0008293267533819641,0.0008205960418490958,0.0008119712270717784,0.0008034508076418604,0.0007950333071228608,0.0007867172735657524,0.0007785012790357509,0.0007703839191495663,0.0007623638126228872,0.16587652025117722,0.16558103911050606,0.16470204566609936,0.16326140100804437,0.16129397121979042,0.15884547328241222,0.1559698188100851,0.15272623399707944,0.14917642235276174,0.14538198979911274,0.14140228421733805,0.13729272904239426,0.13310366551417302,0.12887966831606965,0.12465926723250273,0.12047499197484322,0.11635365506190087,0.11231679441323332,0.10838120918009589,0.10455955867809717,0.10090850462699444,0.09746284123756262,0.09420705869204991,0.09112700518649323,0.0881736294381968,0.0853154087535409,0.0825545648039036,0.07989206287382865,0.07732783833540124,0.07486099485160728,0.0724899756126711,0.07021270959268952,0.06802673517925914,0.06592930366663878,0.0639174650844464,0.06198813871493252,0.06013817047291148,0.05836437911318662,0.056663593010969224,0.05503267904510416,0.05346856490979847,0.051968255993316136,0.05052884779356481,0.049147534691292176,0.047821615771410295,0.04654849827008744,0.045325699128599406,0.04415084505257678,0.04302167140544817,0.0419360202062557,0.040891837452612406,0.03988716994849292,0.038920161782265324,0.037989050571986316,0.037092163571429373,0.03622791371106524,0.0353947956322029,0.034591381759543724,0.0338163184467645,0.03306832222106248,0.03234617614568495,0.03164872631374955,0.03097487848218324,0.03032359485102447,0.029693890990435127,0.02908483291562701,0.028495534308105096,0.02792515388037138,0.027372892880227494,0.02683799273012194,0.02631973279645644,0.02581742828349585,0.02533042824628547,0.024858113716931994,0.024399895938603804,0.02395521470165553,0.023523536776441804,0.023104354437496293,0.02269718407396262,0.022301564881351463,0.021807584186015277,0.021321975041809625,0.02085093936173815,0.02039391790396417,0.01995037735663733,0.019519808954280585,0.0191017271755214,0.018695668517164477,0.01830119033986372,0.017917869780966527,0.017545302730371443,0.01718310286548358,0.016830900741628692,0.016488342934485766,0.016155091231333168,0.01583082186810195,0.015515224809429427,0.01520800306906532,0.01490887206818496,0.014617559029290026,0.014333802403542695,0.014057351329517895,0.013787965121471159,0.013525412785368925,0.013269472561013325,0.013019931488714954,0.012776584999061643,0.012539236524426626,0.012307697130932556,0.012081785169692464,0.011861325946198945,0.011646151406816895,0.011436099841401114,0.011231015601107728,0.011030748830548064,0.010835155213464606,0.010644095731171891,0.010457436433050462,0.010275048218415114,0.01009680662913874,0.009922591652431449,0.009752287533222312,0.009585782595619874,0.009422969072962467,0.009263742945989003,0.009108003788704314,0.008955654621522698,0.008806601771306,0.008660754737935906,0.008518026067071166,0.008378331228776405,0.008241588501711982,0.008107718862601141,0.007976645880703046,0.007848295617039189,0.007722596528126855,0.007599479373999744,0.007478877130295726,0.007360724904210877,0.007244959854129913,0.007131521112746837,0.0070203497135115575,0.006911388520235382,0.006804582159703797,0.006699876957153453,0.006597220874471415,0.006496563450992499,0.0063978557467677605,0.006301050288188878,0.0062061010158573435,0.0061129632345958,0.006021593565497689,0.0059319498999266486,0.005843991355372213,0.005757678233078234,0.005672971977365071,0.005589835136564915,0.005508231325502989,0.005428125189451751,0.0053494823694939546,0.005272269469232,0.005196454022785488,0.0051220044640173795,0.005048890096939588,0.00497708106724354,0.004906548334908686,0.0048372636478431355,0.004769199516510017,0.00470232918950116,0.004636626630015479,0.004572066493204922,0.0045086241043525285,0.004446275437845405,0.004384997096913261,0.0043247662940982205,0.004265560832427157,0.004207359087257348,0.004150139988769356,0.004093883005078305,0.0040385681259421935,0.003984175847040695,0.003930687154802767,0.0038780835117619146,0.0038263468424162175,0.0037754595195760737,0.00372540435117875,0.0036761645675518827,0.0036277238091096593,0.003580066114462792,0.003533175908929057,0.0034870379934273106,0.003441637533741117,0.0033969600501376684,0.003352991407329632,0.0033097178047649485,0.0032671257672350585,0.0032252021357877243,0.0031839340589339803,0.003143308984138812,0.003103314649583565,0.0030639390761924737,0.0030251705599118957,0.0029869976642340136,0.002949409212955786,0.002912394283165539,0.0028759421984473647,0.002840042522297819,0.002804685051745736,0.002769859811168677,0.0027355570462994625,0.0027017672184148273,0.002668480998701723,0.002635689262793771,0.0026033830854723656,0.0025715537355274144,0.0025401926707706826,0.002509291533198602,0.0024788421442979254,0.002448836500490101,0.002419266768709456,0.0023901252821112414,0.002361404535903982,0.0023330971833036363,0.0023051960316043466,0.002277694038362329,0.002250584307689599,0.0022238600866527655,0.0021975147617750955,0.002171541855637233,0.0021459350235739885,0.002120688050463869,0.0020957948476088405,0.002071249449700423,0.0020470460118707356,0.0020231788068247897,0.0019996422220518164,0.001976430757113481,0.001953539021005595,0.001930961729592358,0.0019086937031098635,0.0018867298637371638,0.001865065233232963,0.0018436949306351736,0.0018226141700225047,0.0018018182583353908,0.0017813025932547335,0.0017610626611366835,0.0017410940350020521,0.0017213923725779014,0.0017019534143908673,0.0016827729819098533,0.0016638469757369217,0.0016451713738451642,0.0016267422298614732,0.0016085556713938526,0.0015906078984012873,0.0015728951816051248,0.0015554138609407844,0.0015381603440488471,0.001521131104803686,0.001504322681879529,0.0014877316773521903,0.001471354755335622,0.0014551886406526202,0.0014392301175379743,0.0014234760283740545,0.0014079232724573019,0.001392568804794915,0.0013774096349311465,0.0013624428258017514,0.0013476654926166296,0.001333074801769273,0.0013186679697725192,0.0013044422622198197,0.0012903949927715753,0.0012765235221652235,0.0012628252572492685,0.0012492976500399803,0.0012359381968003998,0.0012227444371411523,0.0012097139531420367,0.0011968443684944687,0.0011841333476637701,0.001171578595070868,0.0011591778542931498,0.0011469289072834055,0.00113482957360705,0.0011228777096967092,0.0011110712081238477,0.0010994079968869416,0.0010878860387160275,0.0010765033303926275,0.0010652579020853526,0.0010541478167003055,0.0010431711692460322,0.0010323260862128434,0.0010216107249656416,0.0010110232731505478,0.0010005619481145314,0.0009902249963378584,0.2023650346658176,0.20200721398676347,0.20094280084310132,0.19919834469923742,0.19681617826562228,0.19385178824604649,0.19037057608308308,0.18644435004259688,0.1821478746857609,0.1775557453075954,0.17273977158868672,0.1677669656570544,0.16269815032340001,0.15758714266578489,0.15248042949763232,0.14741723297558443,0.14242986240525918,0.13754425699971604,0.13278063909998533,0.128155592391916,0.12374927966098506,0.11958864631030804,0.11565525949794443,0.11193238821030918,0.10838485530226294,0.10495011589636605,0.101627664259181,0.09841927855223377,0.09532544378514865,0.09234559083286546,0.08947830436089182,0.08672150158915408,0.08407258437081404,0.08152856731723447,0.07908618475029042,0.07674197917731444,0.07449237381302704,0.07233373145471186,0.07026240177780856,0.06827475887773832,0.06636723065084237,0.06453632139066583,0.06277862877870236,0.06109085627246061,0.05946982173890699,0.057912463046018006,0.05641584120884171,0.05497714158661428,0.0535936735424957,0.05226286890578213,0.05098227951574965,0.0497495740756178,0.04856253450262635,0.04741905192493404,0.04631712244660946,0.04525484277784088,0.04423040580732014,0.04324209617736414,0.04228828590879299,0.041367430111504795,0.0404780628077904,0.03961879288803232,0.03878830021261306,0.037985331869134914,0.03720869859022119,0.03645727133429587,0.03572997802928958,0.035025800477475735,0.03434377141823083,0.033682971744492626,0.033042527867896306,0.03242160922711023,0.03181942593347702,0.031235226547909185,0.030668295982893466,0.030117953523436932,0.02958355096091197,0.029064470833828678,0.02856012476976217,0.028069951922844026,0.02748596222818692,0.026881191725134264,0.026294390798554522,0.025724875688526213,0.02517199408502297,0.024635123464512066,0.02411366952324369,0.023607064701393232,0.023114766792499148,0.02263625763300308,0.022171041867006122,0.021718645781628774,0.02127861620868575,0.020850519488612114,0.02043394049285249,0.02002848170115248,0.019633762330426702,0.019249417512059497,0.01887509751473604,0.01851046701004184,0.01815520437826951,0.017809001052030184,0.017471560895400993,0.017142599616517006,0.01682184421161385,0.016509032438674354,0.016203912318939837,0.015906241664664925,0.015615787631575489,0.015332326294618403,0.015055642245648693,0.014785528211800165,0.014521784693364332,0.014264219620059039,0.014012648024662603,0.01376689173302806,0.013526779069564608,0.013292144577330134,0.013062828751917248,0.012838677788385962,0.01261954334052076,0.012405282291744299,0.012195756537055383,0.01199083277540201,0.011790382311921373,0.011594280869532665,0.01140240840937961,0.011214648959658489,0.011030890452395773,0.010851024567752325,0.010674946585476252,0.010502555243126259,0.010333752600723422,0.010168443911501651,0.010006537498451209,0.009847944636356031,0.00969257943905869,0.009540358751685766,0.00939120204758977,0.009245031329777192,0.009101771036596696,0.008961347951487614,0.008823691116585857,0.008688731750003436,0.008556403166606575,0.008426640702120802,0.008299381640411729,0.008174565143786653,0.008052132186177015,0.007932025489066696,0.007814189460040748,0.0076985701338281925,0.0075851151157310965,0.007473773527326127,0.007364495954336571,0.007257234396578288,0.007151942219882126,0.007048574109909788,0.006947086027774747,0.006847435167390073,0.006749579914466496,0.006653479807089851,0.0065590954978052745,0.006466388717147978,0.006375322238554334,0.006285859844595189,0.006197966294476309,0.0061116072927484034,0.006026749459180429,0.00594336029974353,0.0058614081786606724,0.005780862291478277,0.005701692639114493,0.005623870002848047,0.0055473659202060375,0.005472152661715048,0.005398203208480142,0.0053254912305596615,0.0052539910661005855,0.005183677701208105,0.005114526750517173,0.005046514438439257,0.004979617581058409,0.004913813568648562,0.0048490803487914284,0.004785396410068729,0.004722740766307678,0.0046610929413591455,0.004600432954385399,0.004540741305641635,0.004481998962729803,0.004424187347307861,0.004367288322237174,0.004311284179152463,0.004256157626436114,0.004201891777585129,0.004148470139953859,0.00409587660385927,0.0040440954320365,0.003993111249429459,0.003942909033307484,0.0038934741036938296,0.0038447921140958756,0.003796849042525835,0.0037496311828024475,0.003703125136121679,0.00365731780288958,0.0036121963748061117,0.0035677483271917684,0.0035239614115491692,0.003480823648349638,0.003438323320039373,0.003396448964255858,0.0033551893672479237,0.003314533557493079,0.003274470799503637,0.003234990587817565,0.0031960826411661625,0.003157736896813243,0.003119943505059845,0.0030826928239097223,0.0030459754138885847,0.0030097820330141543,0.0029741036319104693,0.0029389313490623147,0.0029042565062056733,0.0028700706038481917,0.0028363653169175855,0.0028031324905322904,0.002770364135891064,0.0027380524262774807,0.0027061896931762693,0.002674768422496641,0.0026437812509008483,0.0026132209622335223,0.0025830804840489257,0.0025533528842336035,0.002524031367720102,0.002495109273290662,0.002466580070466855,0.0024384373564829507,0.002410674853340779,0.00238328640494252,0.002356265974300508,0.0023296076408207,0.002303305597657823,0.002277354149140164,0.00225174770826216,0.0022264807942417265,0.0022015480301418905,0.002176944140553733,0.002152663949339091,0.0021287023774318003,0.0021050544406945315,0.0020817152478310964,0.002058679998351576,0.0020359439805890593,0.002013502569766493,0.00199135122611249,0.001969485493023803,0.0019479009952743677,0.0019265934372686075,0.0019055586013381686,0.0018847923460810507,0.0018642906047410836,0.0018440493836278213,0.001824064760574803,0.0018043328834354817,0.0017848499686158974,0.0017656122996424655,0.0017466162257648216,0.0017278581605920315,0.0017093345807615559,0.0016910420246400127,0.001672977091055095,0.001655136438057108,0.0016375167817103207,0.0016201148949125698,0.0016029276062425842,0.0015859517988345818,0.0015691844092786602,0.0015526224265472292,0.00153626289094615,0.0015201028930900955,0.0015041395729017604,0.0014883701186336152,0.0014727917659124858,0.001457401796805759,0.0014421975389088241,0.0014271763644532138,0.0014123356894350863,0.001397672972762928,0.0013831857154248453,0.001368871459674268,0.0013547277882338337,0.0013407523235172076,0.001326942726867734,0.001313296697814355,0.0012998119733437167,0.0012864863271883002,0.18316822310211953,0.18295808270200026,0.18233115252705145,0.1812977533030087,0.1798745910253965,0.17808405662646098,0.1759533247492831,0.17351331860068836,0.1707976120357976,0.16784133679117005,0.16468015353441845,0.16134933217215036,0.1578829718648904,0.15431337642581008,0.15067058774018646,0.14698206945621475,0.14327252582859185,0.13956383615496368,0.1358750833415123,0.13222265522066828,0.12862039873737374,0.12507980948093733,0.12161024182235641,0.11821912778238554,0.11491481728815182,0.11174581074421512,0.10872148265965775,0.10583280164752079,0.10307144081224336,0.10042746925267826,0.09786114721582273,0.09536148246128517,0.09292968361383612,0.09056638773826348,0.08827174444225719,0.08604549149689539,0.08388702224875602,0.08179544525240502,0.07976963665004182,0.07780828587967342,0.07590993531441055,0.07407301443291057,0.0722958691013904,0.07057678651663477,0.06891401632174411,0.06730578836462206,0.065750327526482,0.06424586600518736,0.06279065339732852,0.06138296488455666,0.06002110779382482,0.05870342676854789,0.05742830775799847,0.05619418100560317,0.05499952319294528,0.05384285887527916,0.052722761325601844,0.05163785288803247,0.05058680492689758,0.04956833744538172,0.048581218436821595,0.047624263022185524,0.04669633241921005,0.045796332781592584,0.04492321394055695,0.0440759680759729,0.04325362833966383,0.042455267449762135,0.04167999627169687,0.04092696239861787,0.04019534874165919,0.03948437213850789,0.038793281986959555,0.038121358908758535,0.037467913447796194,0.03683228480569885,0.036213839617037634,0.03561197076563222,0.03502092531658377,0.03427202226356667,0.033544435083714456,0.032837403170203186,0.03215019766668641,0.03148212002773866,0.030832500642652867,0.0302006975207384,0.029586095036103034,0.028988102729892582,0.028406154167846205,0.027839705851036012,0.027288236177666746,0.0267512444537813,0.026228249950813496,0.02571879100790844,0.025222424177016037,0.024738723408803096,0.024267279277501982,0.02380769824285054,0.02335960194738771,0.02292262654739206,0.02249642207584267,0.022080651835852817,0.021674991823062324,0.02127913017559217,0.020892766650177107,0.020515612123189437,0.020147388115311863,0.01978782633868797,0.01943666826541468,0.019093664716329287,0.018758575469063368,0.01843116888440564,0.018111221550062218,0.01779851794093385,0.0174928500951027,0.01719401730473359,0.016901825821151305,0.016616088573394767,0.01633662489956757,0.016063260290367795,0.015795826144184334,0.015534159533196023,0.015278102979930364,0.015027504243775407,0.014782216116948221,0.014542096229473604,0.014307006862725853,0.014076814771123193,0.01385139101158559,0.013630610780373262,0.013414353256966187,0.013202501454639153,0.012994942077418518,0.012791565383117936,0.012592265052169834,0.012396938061972266,0.012205484566504837,0.012017807780960043,0.011833813871160294,0.011653411847542448,0.011476513463492021,0.01130303311783854,0.011132887761314342,0.010965996806799893,0.010802282043186654,0.010641667552687951,0.010484079631452417,0.010329446713325894,0.01017769929662513,0.010028769873788559,0.009882592863780702,0.009739104547122918,0.009598243003444506,0.009459948051438264,0.009324161191118873,0.009190825548286687,0.00905988582109693,0.008931288228652027,0.008804980461525252,0.008680911634136944,0.008559032238903749,0.008439294102089568,0.008321650341281408,0.008206055324430013,0.00809246463038502,0.007980835010865566,0.00787112435380828,0.007763291648032446,0.007657296949174861,0.0075531013468384,0.007450666932907109,0.007349956770982536,0.007250934866892269,0.007153566140233761,0.00705781639690851,0.0069636523026090505,0.006871041357221059,0.0067799518701064454,0.0066903529362294135,0.006602214413097778,0.006515506898484742,0.006430201708902269,0.006346270858798583,0.006263687040448721,0.00618242360451695,0.006102454541261761,0.006023754462360859,0.005946298583334164,0.005870062706538964,0.005795023204720799,0.005721157005096188,0.00564844157394885,0.00557685490172058,0.00550637548857971,0.005436982330446994,0.005368654905466399,0.005301373160901782,0.005235117500445359,0.005169868771924144,0.005105608255387386,0.005042317651565515,0.0049799790706844035,0.004918575021624011,0.004858088401408649,0.00479850248501876,0.004739800915510227,0.0046819676944342544,0.004624987172544747,0.004568844040784508,0.004513523321541244,0.004459010360162172,0.004405290816721365,0.004352350658029216,0.00430017614987663,0.0042487538495067576,0.0041980705983047035,0.004148113514700758,0.004098869987278026,0.004050327668078612,0.00400247446610151,0.003955298540986943,0.003908788296878871,0.0038629323764628374,0.003817719655171231,0.003773139235551576,0.003729180441793004,0.0036858328144042233,0.0036430861050404328,0.0036009302714729114,0.003559355472697318,0.0035183520641761516,0.003477910593212043,0.00343802179444583,0.003398676585478127,0.003359866062608605,0.0033215814966901162,0.003283814329094632,0.00324655616778598,0.003209798783498223,0.003173534106014954,0.0031377542205470077,0.003102451364206031,0.003067617922569643,0.003033246426337439,0.002999329548073562,0.0029658600990339723,0.002932831026075691,0.002900235408646129,0.002868066455848829,0.0028363175035852096,0.0028049820117686643,0.002774053561609529,0.0027435258529691425,0.002713392701779769,0.0026836480375303172,0.002654285900814507,0.002625300440940379,0.002596685913599153,0.002568436678592258,0.0025405471976137333,0.0025130120320879874,0.0024858258410601717,0.002458983379138192,0.0024324794944851668,0.0024063091268599276,0.0023804673057056087,0.0023549491482840555,0.0023297498578549614,0.0023048647218990572,0.002280289110382969,0.0022560184740660575,0.0022320483428470905,0.0022083743241500206,0.0021849921013477225,0.00216189743222314,0.002139086147465661,0.0021165541492033438,0.002094297409568867,0.002072311969298726,0.0020505939363651094,0.0020291394846386752,0.0020079448525825746,0.001987006341976101,0.00196632031666742,0.0019458832013549495,0.0019256914803957674,0.0019057416966415193,0.0018860304503002428,0.0018665543978238037,0.001847310250820167,0.0018282947749901936,0.0018095047890875479,0.0017909371639022145,0.0017725888212661728,0.0017544567330810123,0.0017365379203671395,0.0017188294523333304,0.0017013284454670348,0.001684032062644299,0.0016669375122590037,0.18427529444305865,0.1840651729438164,0.18343831448877623,0.18240508312019382,0.18098225149172578,0.17919229305261192,0.17706247182765283,0.1746237979113805,0.17190992091917087,0.16895603018662206,0.1657978209468884,0.16247057214716445,0.15900836626199674,0.15544346645230833,0.15180585323421883,0.1481229123812736,0.1444192584346589,0.14071667382678965,0.13703414181908768,0.1333879516487402,0.12979185587201225,0.12625726233591608,0.12279344605609564,0.11940776918739952,0.11611173737839574,0.1129557901239057,0.10994287104640882,0.1070640928344942,0.10431125916034541,0.10167680098120699,0.09913717621063484,0.09666118929994696,0.09424973759268612,0.0919037375952077,0.08962360213002243,0.08740931544334275,0.08526050053264421,0.08317647901995837,0.08115632401243558,0.07919890646191766,0.07730293557033104,0.07546699379671615,0.07368956701199782,0.07196907032469234,0.07030387006968393,0.06869230241584993,0.06713268900979254,0.06562335003388191,0.06416261501844213,0.06274883171155836,0.061380373275605644,0.06005564404804506,0.058773084075129975,0.057531172601077575,0.056328430671735825,0.0551634229909944,0.05403475914953055,0.05294109432920518,0.05188112957203582,0.050853611690045784,0.04985733288140618,0.04889113010863395,0.047953884286372254,0.04704451931910417,0.04616200102289948,0.04530533596002653,0.04447357021059486,0.04366578810147106,0.04288111090933229,0.04211869555182539,0.0413777332782886,0.040657448369469586,0.03995709685379132,0.03927596524626215,0.03861336931481635,0.03796865287777349,0.037341186635236584,0.036730367036432884,0.03613561518439702,0.035412192247034596,0.034669535360647236,0.03394763784388311,0.03324577084776989,0.032563235498679205,0.03189936155888194,0.031253506145108315,0.030625052503431855,0.030013408838747115,0.02941800719696759,0.028838302398062038,0.02827377101801577,0.027723910417770985,0.027188237817261943,0.026666289412632275,0.026157619534783086,0.025661799847434184,0.025178418582938955,0.024707079814109585,0.024247402760426685,0.02379902112700155,0.02336158247475823,0.02293474762035571,0.02251819006440701,0.022111595446655318,0.021714661026783585,0.02132709518961567,0.020948616973516875,0.020578955620861556,0.020217850149469634,0.01986504894400159,0.01952030936631277,0.019183397383837265,0.018854087215118564,0.018532160991626776,0.018217408435078766,0.017909626549483495,0.017608619327194052,0.0173141974682819,0.017026178112567354,0.016744384583704176,0.016468646144716093,0.01619879776443325,0.015934679894295534,0.015676138255026235,0.015423023632686036,0.015175191683670661,0.014932502748211089,0.01469482167197213,0.014462017635365981,0.014233963990203703,0.014010538103349447,0.013791621207036104,0.013577098255533451,0.013366857787868232,0.013160791796317482,0.012958795600397343,0.012760767726103277,0.012566609790151438,0.012376226388992877,0.012189524992384935,0.012006415841303533,0.011826811850009682,0.011650628512073945,0.011477783810183455,0.011308198129563575,0.011141794174845386,0.01097849689023566,0.01081823338283507,0.010660932848969105,0.010506526503397728,0.010354947511281357,0.010206130922775584,0.010060013610149816,0.009916534207314457,0.009775633051654785,0.009637252128075154,0.009501335015153415,0.009367826833323519,0.009236674194995069,0.00910782515653039,0.00898122917200289,0.008856837048657364,0.008734600904008483,0.00861447412450481,0.008496411325695662,0.008380368313839155,0.008266302048894239,0.008154170608835592,0.008043933155245125,0.007935549900122942,0.007828982073871438,0.007724191894406663,0.007621142537348104,0.0075197981072498915,0.007420123609828499,0.007322084925149225,0.007225648781733767,0.007130782731554668,0.007037455125878531,0.0069456350919302355,0.006855292510343371,0.006766397993367595,0.0066789228638059845,0.006592839134650529,0.006508119489394863,0.006424737262994961,0.006342666423455112,0.006261881554015398,0.006182357835920073,0.00610407103174169,0.006026997469245289,0.0059511140257696455,0.005876398113107619,0.0058028276628689195,0.00573038111230452,0.005659037390580282,0.005588775905480979,0.005519576530529873,0.0054514195925105995,0.005384285859373984,0.0053181565285201375,0.0052530132154398656,0.0051888379427039695,0.005125613129288118,0.005063321580222507,0.005001946476552711,0.004941471365604473,0.004881880151539412,0.004823157086192655,0.004765286760183733,0.0047082540942888565,0.004652044331069319,0.004596643026744846,0.00454203604330455,0.004488209540848491,0.0044351499701497,0.004382844065432751,0.004331278837359209,0.004280441566214266,0.004230319795287796,0.004180901324444075,0.004132174203872329,0.004084126728014892,0.00403674742966518,0.0039900250742308414,0.003943948654157455,0.0038985073835057925,0.003853690692680194,0.0038094882233017,0.003765889823221835,0.0037228855416726924,0.0036804656245496034,0.0036386205098206223,0.003597340823061244,0.0035566173731087186,0.0035164411478329875,0.0034768033100210337,0.003437695193369868,0.0033991082985866824,0.003361034289591665,0.0033234649898205982,0.0032863923786251147,0.003249808587765823,0.0032137058979978543,0.0031780767357444083,0.003142913669856372,0.003108209408455309,0.0030739567958578645,0.0030401488095779176,0.003006778557405915,0.002973839274562036,0.002941324320921185,0.002909227178308463,0.002877541447861635,0.0028462608474604206,0.002815379209219585,0.0027848904770442075,0.002754788704245578,0.002725068051216229,0.002695722783161305,0.0026667472678863972,0.002638135973638936,0.002609883467002151,0.0025819844108404557,0.002554433562293737,0.0025272257708207216,0.002500355976288927,0.0024738192071103223,0.0024476105784217665,0.002421725290308007,0.002396158626067435,0.002370905950518486,0.0023459627083458907,0.0023213244224856663,0.002296986692548202,0.0022729451932773717,0.0022491956730461247,0.002225733952386553,0.0022025559225538516,0.002179657544123645,0.0021570348456207886,0.0021346839221801765,0.002112600934237671,0.002090782106250885,0.0020692237254487573,0.002047922140609716,0.002026873760866667,0.0020060750545393643,0.0019855225479925892,0.0019652128245197776,0.0019451425232516323,0.001925308338088469,0.00190570701665654,0.0018863353592871188,0.0018671902180179784,0.001848268495616904,0.001829567144626029,0.001811083166427412,0.0017928136103286256,0.0017747555726681204,0.18551901216067068,0.1853085223465329,0.18468058547496122,0.1836456426880608,0.18222058719049547,0.18042804561488535,0.17829545465305915,0.17585400263108253,0.17313750976977782,0.17018131715140558,0.16702124444745986,0.16369266244662925,0.1602297107052599,0.15666467531070266,0.15302752835617325,0.14934562019463898,0.14564350819641517,0.14194290144189803,0.13826269909123984,0.13461910049581877,0.13102576683223682,0.12749401659009232,0.12403304017381818,0.12065012184678851,0.11736255835875557,0.11421957605007485,0.1112179723261163,0.10834900370079599,0.10560460419193368,0.10297732303564391,0.10045741362905179,0.09800709947950793,0.09561774725620316,0.09329057353675102,0.09102627404191628,0.08882509809250302,0.08668691576902804,0.08461127798597877,0.0825974698271874,0.0806445575764569,0.07875142992747702,0.07691683387920364,0.07513940582390065,0.07341769832128489,0.07175020302857005,0.07013537022581794,0.06857162534233666,0.0670573828545546,0.06559105789041789,0.06417107584123496,0.0627958802492219,0.06146393920874148,0.060173750491195076,0.05892384557809677,0.05771279276372833,0.056539199468268055,0.055401713883733654,0.05429902605884683,0.05322986851450068,0.05219301646880777,0.051187287739693485,0.05021154238323006,0.04926468211750185,0.04834564957448121,0.04745342741596733,0.04658703734424717,0.04574553903329914,0.04492802900231272,0.04413363944978874,0.043361537063452624,0.04261092181860054,0.041881025775366,0.04117111188341011,0.040480472800995655,0.03980842973402436,0.0391543312994251,0.03851755241636281,0.03789749322784891,0.03729357805467767,0.036609092831513125,0.035850720578036954,0.03511332001391939,0.034396162313949034,0.033698548274248244,0.033019807011880134,0.03235929471872258,0.03171639346827801,0.031090510074014997,0.030481074997657814,0.029887541305805877,0.029309383673204716,0.028746097430939466,0.02819719765785905,0.027662218313492786,0.027140711410768795,0.02663224622685691,0.02613640855050721,0.025652799964260453,0.025181037160005696,0.024720751286354717,0.02427158732638432,0.023833203504346256,0.023405270719974253,0.022987472009112702,0.022579502029400386,0.022181066569825388,0.021791882083001486,0.021411675239083133,0.021040182500257923,0.02067714971484229,0.020322331730016355,0.01997549202229643,0.019636402344889753,0.019304842391097334,0.018980599473001864,0.01866346821468543,0.018353250259276373,0.01804975398915647,0.01775279425868119,0.017462192138821175,0.01717777467313853,0.016899374644555556,0.016626830352395306,0.01635998539920521,0.016098688486883835,0.015842793221682167,0.015592157927644157,0.015346645468091221,0.015106123074770996,0.014870462184300772,0.014639538281574058,0.014413230749794064,0.014191422726829443,0.013974000967595025,0.013760855712182846,0.013551880559467936,0.013346972345948921,0.013146031029574269,0.012948959578329288,0.012755663863369756,0.012566052556487881,0.012380037031726005,0.0121975312709426,0.012018451773157478,0.011842717467508427,0.011670249629653037,0.011500971801472047,0.011334809713921387,0.0111716912128987,0.011011546187990478,0.010854306503977956,0.010699905934975409,0.010548280101096104,0.01039936640753091,0.010253103985938549,0.010109433638050976,0.009968297781394185,0.009829640397043258,0.009693406979319762,0.00955954448735272,0.009428001298427365,0.009298727163041616,0.009171673161607607,0.00904679166272502,0.00892403628296383,0.008803361848094894,0.008684724355710993,0.00856808093917764,0.008453389832866792,0.008340610338616964,0.00822970279337281,0.008120628537958691,0.008013349886936945,0.007907830099514417,0.0078040333514515095,0.007701924707936404,0.00760147009738681,0.007502636286144701,0.007405390854025676,0.007309702170695692,0.007215539372839744,0.007122872342093312,0.0070316716837095705,0.006941908705930407,0.0068535554000402595,0.006766584421073297,0.00668096906915127,0.006596683271428326,0.00651370156462152,0.006431999078102475,0.006351551517533963,0.0062723351490284115,0.006194326783810299,0.006117503763365784,0.006041843945058288,0.0059673256881982075,0.005893927840546981,0.005821629725241417,0.005750411128124342,0.005680252285464325,0.005611133872054823,0.005543036989676538,0.0054759431559116035,0.005409834293297021,0.005344692718806756,0.005280501133648495,0.005217242613368001,0.005154900598247796,0.005093458883991244,0.005032901612683087,0.004973213264014703,0.004914378646768673,0.00485638289055131,0.004799211437765908,0.004742850035819465,0.004687284729552935,0.004632501853890596,0.004578488026699326,0.004525230141851608,0.004472715362485615,0.0044209311144566155,0.004369865079971637,0.004319505191404235,0.004269839625281509,0.004220856796438643,0.004172545352336302,0.004124894167533736,0.0040778923383153805,0.00403152917746415,0.003985794209177691,0.003940677164122771,0.0038961679746244704,0.0038522567699839205,0.00380893387192339,0.0037661897901527107,0.003724015218054141,0.0036824010284826018,0.0036413382696759886,0.0036008181612746703,0.0035608320904450715,0.0035213716081048466,0.003482428425247158,0.0034439944093594696,0.003406061580936218,0.003368622110081047,0.003331668313196501,0.003295192649758486,0.003259187719173655,0.003223646257715714,0.003188561135540438,0.0031539253537756166,0.0031197320416842546,0.003085974453899405,0.0030526459677271724,0.0030197400805179074,0.0029872504071020664,0.0029551706772896853,0.002923494733431344,0.002892216528039506,0.002861330121467203,0.002830829679644166,0.002800709471867635,0.0027709638686466112,0.0027415873395986233,0.002712574451396226,0.0026839198657635783,0.0026556183375205135,0.002627664712673129,0.0026000539265501475,0.0025727810019825657,0.0025458410475269564,0.002519229255730226,0.002492940901434985,0.002466971340124466,0.002441316006306295,0.0024159704119330206,0.002390930144859855,0.0023661908673376125,0.002341748314540249,0.0023175982931264126,0.0022937366798331887,0.0022701594201024492,0.002246862526738043,0.0022238420785933815,0.0022010942192884873,0.0021786151559562345,0.0021564011580159454,0.002134448555975021,0.002112753740256919,0.0020913131600550647,0.0020701233222124474,0.002049180790125277,0.0020284821826713237,0.002008024173161435,0.001987803488313889,0.0019678169072514682,0.0019480612605195682,0.0019285334291262598,0.0019092303436026496,0.0018901489830835826,0.18691578743240875,0.18670448636222312,0.18607415561119905,0.18503535261639506,0.18360515360703775,0.1818064202141157,0.17966685806203994,0.17721793907327013,0.17449376321437887,0.1715299313513331,0.16836249040230528,0.1650269973839372,0.161557732694728,0.15798707722258415,0.15434505419276454,0.15065902600995323,0.14695352899791062,0.1432502247296565,0.1395679450870112,0.1359228086672049,0.13232838802240263,0.12879590990130702,0.125334473697268,0.12195127635293734,0.11867239498545536,0.11554087194198363,0.11254920015779034,0.10968876869710377,0.10695163179612609,0.10433044786169747,0.1018184248706323,0.09939534543898915,0.09703034765183502,0.09472399866956488,0.09247729798619118,0.09029078000709445,0.08816458088694183,0.08609849870716087,0.08409204723352207,0.08214450360060353,0.08025495033625274,0.07842231217553128,0.07664538812684794,0.07492287924932352,0.07325341258513267,0.0716355616670464,0.07006786399314888,0.06854883582973684,0.06707698467144217,0.0656508196560957,0.06426886020118332,0.06292964309994586,0.06163172828824827,0.06037370346864495,0.0591541877554614,0.05797183448452458,0.056825333312787975,0.055713411716930894,0.05463483598557956,0.053588411786991516,0.052572984382957065,0.051587438549724605,0.05063069825822446,0.04970172615837641,0.048799522905673014,0.04792312636269017,0.04707161070315088,0.04624408544200563,0.045439694411301225,0.04465761469847996,0.043897055560987754,0.04315725732883073,0.042437490304635374,0.041737053669110596,0.041055274398361014,0.04039150619819891,0.03974512845964646,0.039115545238825516,0.03850218426374402,0.03786593525054735,0.03709118531089604,0.03633762677919628,0.03560453095898588,0.0348911983951203,0.03419695761538157,0.03352116392230271,0.03286319823426686,0.032222465974829355,0.03159839600899641,0.030990439625122414,0.03039806956101342,0.029820779072731844,0.02925808104462887,0.028709507139049597,0.02817460698419467,0.027652947398617015,0.02714411165086242,0.026647698752759484,0.02616332278494563,0.02569061225320846,0.025229209474279698,0.02477876998977359,0.02433896200697155,0.02390946586525034,0.02348997352694988,0.02308018809155151,0.022679823332075043,0.022288603252652025,0.021906261666262142,0.021532541791695795,0.02116719586881222,0.02080998479122786,0.020460677755604978,0.020119051926733886,0.019784892117671753,0.019457990484202263,0.01913814623293557,0.018825165342400488,0.018518860296493862,0.01821904982971406,0.01792555868360356,0.017638217373872087,0.01735686196768901,0.017081333870669072,0.016811479623078614,0.016547150704842892,0.016288203348928172,0.016034498362707768,0.015785900956941858,0.015542280582003808,0.015303510771029899,0.015069468989659376,0.014840036492064432,0.014615098182977796,0.01439454248544594,0.014178261214035795,0.013966149453258572,0.013758105440963649,0.013554030456479814,0.013353828713292912,0.013157407256046656,0.012964675861683983,0.012775546944536005,0.012589935465185222,0.01240775884293873,0.012228936871744074,0.012053391639407014,0.011881047449958462,0.01171183074903705,0.011545670052154898,0.01138249587572487,0.011222240670723884,0.011064838758887679,0.010910226271322966,0.010758341089436126,0.010609122788082364,0.010462512580835841,0.010318453267299774,0.010176889182365458,0.010037766147341028,0.009901031422872669,0.009766633663585359,0.009634522874368317,0.009504650368244319,0.00937696872575328,0.009251431755790818,0.009127994457844273,0.009006612985565427,0.00888724461163303,0.008769847693848597,0.00865438164241869,0.008540806888377894,0.00842908485310338,0.00831917791888438,0.00821104940050088,0.00810466351777417,0.007999985369051355,0.007896980905589263,0.007795616906799313,0.007695860956326353,0.0075976814189249705,0.007501047418105336,0.00740592881452039,0.007312296185062783,0.007220120802650413,0.007129374616671144,0.007040030234063382,0.006952060901010511,0.0068654404852229655,0.006780143458791304,0.006696144881586073,0.006613420385185754,0.006531946157313731,0.0064516989267669154,0.006372655948815562,0.006294794991061469,0.006218094319735496,0.006142532686419462,0.006068089315179073,0.005994743890089983,0.005922476543147592,0.005851267842544169,0.00578109878130178,0.005711950766248439,0.005643805607326783,0.005576645507221035,0.005510453051295495,0.005445211197830702,0.005380903268548681,0.005317512939418007,0.005255024231727005,0.005193421503419461,0.00513268944068157,0.0050728130497727794,0.0050137776490930775,0.004955568861476854,0.0048981726067088465,0.00484157509425281,0.004785762816186694,0.004730722540337691,0.0046764413036112585,0.004622906405505984,0.004570105401811112,0.0045180260984788575,0.004466656545666604,0.004415985031944393,0.004366000078660426,0.004316690434462309,0.004268045069967295,0.004220053172577516,0.004172704141435604,0.0041259875825171224,0.0040798933038535615,0.004034411310884665,0.003989531801934036,0.003945245163805066,0.0039015419674940945,0.003858412964015399,0.003815849080337194,0.003773841415423409,0.00373238123637868,0.0036914599746942314,0.003651069222589715,0.003611200729450645,0.003571846398356802,0.0035329982826996825,0.003494648582886148,0.003456789643126461,0.0034194139483025906,0.003382514120916628,0.0033460829181155027,0.0033101132287901504,0.0032745980707477892,0.0032395305879534073,0.0032049040478407606,0.0031707118386892666,0.0031369474670656303,0.003103604555328109,0.003070676839192269,0.0030381581653551913,0.003006042489178226,0.0029743238724253746,0.0029429964810562532,0.002912054583072501,0.002881492546414877,0.002851304836911502,0.0028214860162743874,0.0027920307401435103,0.0027629337561775303,0.0027341899021885918,0.0027057941043217926,0.0026777413752767697,0.0026500268125708554,0.002622645596842525,0.002595592990194512,0.0025688643345743866,0.0025424550501931993,0.002516360633979963,0.002490576658071518,0.0024650987683371116,0.0024399226829358313,0.0024150441909073215,0.0023904591507940575,0.0023661634892945017,0.0023421531999468707,0.0023184243418416274,0.002294973038363296,0.0022717954759599365,0.0022488879029398884,0.002226246628295028,0.0022038680205502302,0.0021817485066374146,0.002159884570794857,0.00213827275349015,0.002116909650366643,0.0020957919112128878,0.0020749162389538368,0.002054279388664321,0.0020338781666034175,0.0020137094292695004,0.18848473052732004,0.18827210763406024,0.1876378669785862,0.18659272825923623,0.18515402392462896,0.1833449463214371,0.18119358241516234,0.17873181046805825,0.17599413697756627,0.17301654769022698,0.16983543537448426,0.1664866517100856,0.16300471371455305,0.15942217882464277,0.15576918871745182,0.15207317111564062,0.14835868145089653,0.14464736214371884,0.14095799586539298,0.13730662981714087,0.13370675011677863,0.13016948823170857,0.12670384456564163,0.12331691745109859,0.12004733369380545,0.11692542467076952,0.11394198544418102,0.11108852446057983,0.10835720432977354,0.10574078196071769,0.10323255496637139,0.10082566168285328,0.09848774730600444,0.09620465466034368,0.09397770985280192,0.0918077545271097,0.08969521215060679,0.08764014813624212,0.08564232392158613,0.08370124525275811,0.08181620500556734,0.079986320928219,0.0782105687166521,0.07648781084134587,0.07481682153855544,0.07319630836323905,0.07162493067889746,0.07010131543367198,0.06862407054399391,0.06719179617862935,0.06580309420767914,0.06445657605404495,0.06315086915925874,0.06188462225180582,0.060656509584114615,0.059465234284600293,0.05830953095302893,0.057188167611390145,0.05609994710806493,0.055043708060224,0.05401832540817317,0.05302271064530676,0.052055811778622084,0.05111661306709143,0.05020413457843387,0.04931743159909059,0.04845559392703212,0.04761774507269288,0.04680304138947861,0.046010671152016264,0.04523985359742633,0.044489837942513,0.04375990238758529,0.043049353115849245,0.042357523295755255,0.041683772092317155,0.041027483692350875,0.0403880663475407,0.03976495143846459,0.03915759256198799,0.03839588377975748,0.0376254548247694,0.036875716373852875,0.03614596884344285,0.03543554026584276,0.03474378512224743,0.034070083221049284,0.033413838620755934,0.032774478596601826,0.03215145264982942,0.03154423155850882,0.030952306468647602,0.0303751880243444,0.02981240553564126,0.029263506182746816,0.028728054255274606,0.02820563042516243,0.027695831051913148,0.02719826751887287,0.026712565599232494,0.026238364850500216,0.02577531803622287,0.025323090573744596,0.024881360006876987,0.0244498155023425,0.024028157368928615,0.02361609659831201,0.023213354426567984,0.022819661915392593,0.022434759552146067,0.02205839686782487,0.021690332072129507,0.02133033170483372,0.020978170302672444,0.020633630081041052,0.02029650062979163,0.019966578622468697,0.01964366753835463,0.01932757739670747,0.019018124502635715,0.01871513120404782,0.01841842565916187,0.018127841614076504,0.017843218189938437,0.01756439967924186,0.017291235350853116,0.01702357926333744,0.016761290086209878,0.016504230928742824,0.01625226917597156,0.016005276331579117,0.015763127867333276,0.01552570307877915,0.015292884946900072,0.015064560005478109,0.014840618213885708,0.014620952835075307,0.014405460318522294,0.01419404018790213,0.013986594933291886,0.013783029907685873,0.0135832532276445,0.01338717567788449,0.013194710619639905,0.013005773902630002,0.012820283780468258,0.012638160829373057,0.012459327870028025,0.012283709892459938,0.012111233983801529,0.011941829258819599,0.01177542679308206,0.011611959558661702,0.011451362362261125,0.011293571785659973,0.011138526128388383,0.010986165352526578,0.010836431029551343,0.01068926628913745,0.010544615769835852,0.010402425571550434,0.010262643209742248,0.010125217571284418,0.00999009887190887,0.009857238615174268,0.009726589552896034,0.009598105646981325,0.009471742032607788,0.009347454982699519,0.009225201873643663,0.009104941152200233,0.00898663230356045,0.008870235820503294,0.008755713173614147,0.008643026782519719,0.008532139988101777,0.008423017025651347,0.008315622998929498,0.008209923855095521,0.008105886360475307,0.008003478077134366,0.007902667340226127,0.007803423236088021,0.0077057155810535925,0.007609514900959078,0.007514792411315195,0.00742151999812053,0.007329670199294665,0.0072392161867044225,0.007150131748766601,0.007062391273603005,0.0069759697327288015,0.006890842665255033,0.006806986162588041,0.006724376853604759,0.0066429918902916425,0.0065628089338272706,0.0064838061410943905,0.006405962151607392,0.006329256074837208,0.006253667477924722,0.00617917637376547,0.006105763209454476,0.006033408855078313,0.005962094592843777,0.005891802106528867,0.005822513471248746,0.005754211143523599,0.005686877951638873,0.00562049708628912,0.005555052091493346,0.005490526855776335,0.00542690560360465,0.005364172887069526,0.0053023135778097735,0.0052413128591639714,0.005181156218548182,0.005121829440048955,0.005063318597226175,0.005005610046118236,0.00494869041844426,0.004892546614994646,0.004837165799207107,0.004782535390919969,0.004728643060297872,0.0046754767219254504,0.004623024529061043,0.004571274868048885,0.0045202163528823835,0.0044698378199147385,0.004420128322712067,0.004371077127045548,0.004322673706016228,0.004274907735311141,0.004227769088584836,0.004181247832963048,0.004135334224665647,0.004090018704743133,0.00404529189492612,0.004001144593582276,0.003957567771778305,0.00391455256944443,0.0038720902916365902,0.0038301724048957807,0.0037887905337000327,0.0037479364570069318,0.0037076021048838893,0.003667779555224273,0.00362846103054526,0.003589638894867226,0.003551305650670793,0.0035134539359297774,0.0034760765212184133,0.0034391663068892497,0.0034027163203217436,0.0033667197132379507,0.003331169759084233,0.0032960598504767763,0.0032613834967097533,0.003227134321323005,0.0031933060597294804,0.003159892556899355,0.0031268877650997133,0.0030942857416888297,0.0030620806469621046,0.0030302667420500674,0.0029988383868657675,0.0029677900381005627,0.0029371162472674964,0.0029068116587897073,0.0028768710081343305,0.0028472891199894505,0.0028180609064834355,0.002789181365445395,0.002760645578706144,0.002732448710437413,0.002704586005529878,0.0026770527880078418,0.002649844459480019,0.002622956497625774,0.0025963844547148606,0.0025701239561613308,0.0025441706991094553,0.0025185204510513232,0.0024931690484757754,0.002468112395546486,0.002443346462810278,0.0024188672859334717,0.0023946709644662523,0.0023707536606340867,0.002347111598155944,0.0023237410610876474,0.002300638392691056,0.0022777999943274737,0.0022552223243749937,0.002232901897169463,0.0022108352819676315,0.002189019101933139,0.0021674500331438427,0.002146124803620339,0.1902478156442236,0.19003327874137957,0.18939337019629393,0.1883390264021542,0.1868879226084297,0.1850636949116834,0.18289494407111123,0.18041409892384244,0.17765622099727227,0.17465782688557777,0.17145579299905508,0.16808639103927295,0.1645844847487264,0.16098290148841132,0.1573119777024337,0.15359926626003878,0.1498693862642558,0.1461439919126512,0.1424418358015785,0.13877890296750509,0.13516859424532043,0.13162194057617482,0.1281478332315972,0.1247549201253112,0.12149391969169343,0.11837928848998794,0.1154019275346372,0.1125534484888408,0.10982610777981304,0.10721274769409989,0.10470674363160055,0.1023019568018311,0.09998815637290054,0.09773131226195808,0.09552679675334202,0.09337578273260815,0.09127900430228982,0.08923681660485848,0.08724925005305059,0.08531605910341883,0.08343676581280435,0.08161069848672367,0.0798370257703721,0.0781147865535058,0.07644291606540196,0.07482026852919454,0.07324563673020952,0.07171776883281594,0.07023538275694755,0.06879717840067529,0.06740184796970744,0.06604808464983615,0.06473458983432293,0.06346007909563908,0.06222328706981551,0.06102297140247466,0.059857915887792795,0.058726932915797274,0.05762886532905026,0.056562587776897814,0.05552700764418708,0.0545210656211445,0.0535437359722773,0.052594026554307546,0.051670978626234196,0.05077366648867974,0.049901196984345995,0.04905270888686844,0.04822737220136362,0.047424387396524735,0.04664298458507025,0.04588242266684718,0.04514198844656626,0.04442099573625964,0.043718784450891994,0.043034719704080654,0.04236819090973015,0.04171861089425815,0.04108541502324219,0.04046806034552916,0.03976992884588149,0.03898186551997965,0.03821472838691583,0.03746781793482805,0.0367404618632442,0.036032013961351264,0.035341853027139235,0.034669381827183356,0.03401402609652395,0.03337523357797141,0.032752473100014265,0.032145233692366444,0.031553023738156535,0.030975370161650723,0.030411817650380615,0.02986192791051344,0.0293252789542958,0.028801464418364637,0.028290092911780085,0.02779078739258981,0.027303184571783663,0.02682693434352402,0.026361699240524207,0.025907153913539444,0.02546298463390576,0.025028888818129036,0.024604574573552796,0.0241897602641689,0.023784174095653483,0.023387553718782903,0.022999645850376393,0.022620205910974,0.022248997678486086,0.021885792957066802,0.021530371260529285,0.02118251950961628,0.020842031742490733,0.020508708837838553,0.020182358249985512,0.01986279375548949,0.01954983521066297,0.019243308319525212,0.018943044411698525,0.018648880229794332,0.018360657725839155,0.018078223866338044,0.017801430445567503,0.01753013390672243,0.017264195170561266,0.017003479471194554,0.016747856198706237,0.016497198748285195,0.016251384375574905,0.016010294057960166,0.01577381236152484,0.015541827313416383,0.015314230279387603,0.015090915846273886,0.014871781709189586,0.014656728563236302,0.014445659999514653,0.014238482405261554,0.014035104867922423,0.013835439082989315,0.013639399265442958,0.013446902064633889,0.013257866482464893,0.013072213794723637,0.012889867475433739,0.0127107531240942,0.012534798395685954,0.012361932933322096,0.012192088303438549,0.012025197933411528,0.011861197051501883,0.011700022629031968,0.01154161332469486,0.011385909430916438,0.011232852822179604,0.01108238690523153,0.010934456571098967,0.010789008148832454,0.01064598936091652,0.01050534928027306,0.01036703828879593,0.010231008037354865,0.010097211407211917,0.009965602472789355,0.009836136465742136,0.009708769740278837,0.00958345973968344,0.009460164963992877,0.009338844938780322,0.009219460185008101,0.009101972189904032,0.008986343378823852,0.008872537088061287,0.008760517538571792,0.008650249810570434,0.008541699818977186,0.008434834289673267,0.008329620736539589,0.00822602743924958,0.008124023421784258,0.008023578431648387,0.007924662919757705,0.007827248020974446,0.007731305535266753,0.007636807909471155,0.0075437282196320786,0.007452040153902974,0.0073617179959850985,0.007272736609085832,0.007185071420379476,0.007098698405948778,0.007013594076195505,0.006929735461699651,0.006847100099512638,0.0067656660198711464,0.006685411733312832,0.006606316218185032,0.00652835890852943,0.006451519682331158,0.006375778850119278,0.006301117143908366,0.006227515706465977,0.0061549560808997076,0.006083420200549552,0.006012890379176698,0.005943349301439678,0.005874780013645501,0.005807165914770523,0.005740490747739281,0.005674738590953848,0.0056098938500662955,0.005545941249983874,0.005482865827102668,0.005420652921759992,0.005359288170899277,0.005298757500940466,0.005239047120850371,0.00518014351540398,0.005122033438634243,0.005064703907461623,0.005008142195498883,0.004952335827026181,0.004897272571128932,0.004842940435996476,0.004789327663374295,0.004736422723165816,0.004684214308179148,0.004632691329015015,0.004581842909089406,0.004531658379789956,0.0044821272757595045,0.004433239330304085,0.004384984470922042,0.004337352814948692,0.004290334665315832,0.0042439205064206,0.004198101000101185,0.0041528669817168466,0.004108209456327249,0.004064119594970787,0.00402058873103713,0.003977608356731901,0.003935170119630768,0.003893265819320869,0.0038518874041254376,0.0038110269679115715,0.003770676746976988,0.0037308291170141095,0.0036914765901498434,0.0036526118120573364,0.003614227559139746,0.0035763167357824475,0.0035388723716724847,0.0035018876191829948,0.0034653557508216165,0.0034292701567395036,0.0033936243423012195,0.0033584119257125335,0.003323626635704829,0.003289262309275177,0.0032553128894791004,0.0032217724232765175,0.003188635059427981,0.0031558950464403565,0.0031235467305610705,0.0030915845538182656,0.003060003052107433,0.0030287968533219646,0.0029979606755269938,0.0029674893251751904,0.0029373776953639614,0.0029076207641316426,0.0028782135927934026,0.002849151324314577,0.00282042918172079,0.0027920424665444183,0.0027639865573052683,0.0027362569080260062,0.00270884904678052,0.0026817585742746745,0.0026549811624584706,0.002628512553169401,0.0026023485568049667,0.0025764850510251636,0.0025509179794830543,0.0025256433505831235,0.0025006572362670353,0.002475955770825105,0.0024515351497341837,0.0024273916285203266,0.002403521521645938,0.002379921201421133,0.0023565870969377437,0.002333515693026725,0.0023107035292373925,0.002288147198838388,0.1922304445421223,0.1920133019960228,0.1913656729046806,0.19029877550354835,0.18883073133276,0.18698575508946333,0.1847931189433301,0.18228597340373698,0.17950011052072332,0.17647274947973704,0.17324141163925189,0.16984293462825284,0.16631265621983898,0.1626837808322077,0.1589869264354503,0.15524983828932262,0.151497248498286,0.1477508565065856,0.14402940470842035,0.14034882453911404,0.13672243098488698,0.13316114675345525,0.12967374088628117,0.12627507715004765,0.12302021480699085,0.11991059231620425,0.11693720823901985,0.11409176290145867,0.11136659341944655,0.1087546155983658,0.10624927189962942,0.10384448476947687,0.10153461471425088,0.0993053953868805,0.09712652691494589,0.09499732666484022,0.09291886534651474,0.09089181305047828,0.08891649337540757,0.08699293251417684,0.08512090343149395,0.08329996535450783,0.08152949885608092,0.07980873684528683,0.07813679179692111,0.0765126795550739,0.07493534003961701,0.07340365517122278,0.07191646431264806,0.07047257750367497,0.06907078674499326,0.06770987556411483,0.06638862707438135,0.0651058307170315,0.06386028785623757,0.06265081637854611,0.061476254430888326,0.06033546341572665,0.059227330347748866,0.058150769663667105,0.05710472456536629,0.056088167966346636,0.05510010310242203,0.05413956385964069,0.053205614865267696,0.05229735138158793,0.05141389903672381,0.050554413421975176,0.04971807958099972,0.048904111412546795,0.04811175100524713,0.047340267920307946,0.04658895843549748,0.045857144761787656,0.04514417424224687,0.044449418541182666,0.0437722728303001,0.043112154977402097,0.042468504742245144,0.04184078298328725,0.041220376125020546,0.040413823421037075,0.03962844141784876,0.03886353093274459,0.03811841954368802,0.03739246051780028,0.03668503177581185,0.03599553489272972,0.03532339413460127,0.03466805553109557,0.03402898598342409,0.03340567240695085,0.03279762090778557,0.032204355992496686,0.031625419810055774,0.031060371425052958,0.030508786121204664,0.029970254734118986,0.029444383012322852,0.02893079100550231,0.028429112478941018,0.027938994353149758,0.027460096167669437,0.026992089568099176,0.026534657815370587,0.026087495316348006,0.02565030717484897,0.025222808762213125,0.024804725306558598,0.024395791499930524,0.0239957511225361,0.02360435668331514,0.0232213690761225,0.022846557250807118,0.022479697898538348,0.022120575150722206,0.021768980290895027,0.021424711479013918,0.02108757348756418,0.02075737744896618,0.02043394061375305,0.020117086119035156,0.019806642766779233,0.019502444811463234,0.019204331756665617,0.01891214816020089,0.018625743447400252,0.0183449717321736,0.018069691645502765,0.017799766171020116,0.017535062487367692,0.017275451817020906,0.017020809281290204,0.016771013761224078,0.016525947764152605,0.016285497295610955,0.016049551736416902,0.015818003724664603,0.015590749042420112,0.015367686506916233,0.015148717866038136,0.014933747697925973,0.014722683314505542,0.014515434668778688,0.01431191426571511,0.014112037076580066,0.013915720456562837,0.013722884065556136,0.013533449791954486,0.013347341679343677,0.01316448585596081,0.012984810466801085,0.012808245608270262,0.012634723265268552,0.012464177250607486,0.012296543146664767,0.012131758249178164,0.01196976151309941,0.011810493500416575,0.011653896329867647,0.01149991362846703,0.011348490484774825,0.01119957340383144,0.01105311026369969,0.010909050273543454,0.010767343933183982,0.010627942994076982,0.010490800421648771,0.010355870358945663,0.010223108091539198,0.010092470013640532,0.009963913595378493,0.00983739735119094,0.009712880809294116,0.009590324482182468,0.00946968983812267,0.009350939273602612,0.00923403608670155,0.009118944451341636,0.009005629392394373,0.008894056761604832,0.008784193214305217,0.008676006186889906,0.008569463875019011,0.008464535212530102,0.008361189851027346,0.008259398140125194,0.00815913110832384,0.00806036044448981,0.00796305847992513,0.007867198171,0.007772753082330517,0.007679697370481394,0.007588005768176782,0.007497653568997201,0.0074086166125510045,0.007320871270099489,0.007234394430621559,0.0071491634873035,0.0070651563244359394,0.006982351304708491,0.0069007272568850486,0.006820263463847994,0.0067409396509985715,0.006662735975002407,0.006585633012865537,0.0065096117513338365,0.006434653576602294,0.006360740264324356,0.006287853969912801,0.006215977219119223,0.006145092898887125,0.006075184248466586,0.006006234850783016,0.005938228624052568,0.00587114981363347,0.005804982984109476,0.005739713011595002,0.005675325076256171,0.005611804655040286,0.005549137514608419,0.005487309704461837,0.005426307550259805,0.0053661176473200276,0.005306726854297038,0.005248122287033631,0.005190291312577601,0.0051332215433619955,0.0050769008315412765,0.0050213172634796695,0.0049664591543867485,0.004912315043096527,0.0048588736869837204,0.004806124057015712,0.004754055332934143,0.004702656898562879,0.004651918337239251,0.004601829427362917,0.004552380138061465,0.004503560624967385,0.004455361226103767,0.004407772457876128,0.004360785011165443,0.004314389747521807,0.004268577695454198,0.004223340046813963,0.004178668153269383,0.0041345535228692176,0.004090987816691006,0.004047962845574032,0.004005470566932823,0.003963503081649397,0.00392205263104277,0.0038811115939116287,0.003840672483650607,0.0038007279454362365,0.0037612707534814267,0.003722293808356318,0.0036837901343743013,0.0036457528770398135,0.0036081753005583546,0.0035710507854054747,0.0035343728259535126,0.003498135028155263,0.003462331107281237,0.0034269548857113414,0.003392000290777773,0.0033574613526584952,0.003323332202320239,0.0032896070695083482,0.003256280280784152,0.0032233462576071402,0.003190799514461354,0.0031586346570246764,0.0031268463803803457,0.003095429467268356,0.003064378786377436,0.003033689290675214,0.003003356015776082,0.0029733740783461173,0.0029437386745429536,0.0029144450784913166,0.002885488640792082,0.00285686478706441,0.0028285690165205527,0.0028005969005712723,0.00277294408146269,0.002745606270942646,0.0027185792489562346,0.00269185886236969,0.002665441023722287,0.0026393217100045803,0.0026134969614636815,0.0025879628804338505,0.0025627156301922136,0.0025377514338392076,0.002513066573202239,0.002488657387763265,0.0024645202736088066,0.002440651682402104,0.19446228782164393,0.19424172518651298,0.19358395917476498,0.19250056877344596,0.1910102469818419,0.18913794984062843,0.18691381059720502,0.18437190657985633,0.18154896986874378,0.1784831262352826,0.17521273246460817,0.17177536324803483,0.16820697854873243,0.16454128338818755,0.16080927621183563,0.15703897029232128,0.15325526515319415,0.1494799413151548,0.14573175103061037,0.14202657922472964,0.13837765178679173,0.13479577197163445,0.13128956946026737,0.12788706194578187,0.12463619904487984,0.12152959337706778,0.11855832865949678,0.1157141826812068,0.1129895631111023,0.11037745008939288,0.1078713448070998,0.1054652233793056,0.10315349540495214,0.10093096668205882,0.09878079041515173,0.0966768521978101,0.0946197781559239,0.0926105819310075,0.0906499080458541,0.08873808103650692,0.08687515006585991,0.08506092913797128,0.08329503310870376,0.08157690973936585,0.07990586807102494,0.07828110341226786,0.07670171923679507,0.07516674628211215,0.07367515912930021,0.07222589052878434,0.07081784371913594,0.06944990296699176,0.06812094253671476,0.06682983427919972,0.06557545401061501,0.06435668683438736,0.06317243154319754,0.06202160422260365,0.06090314116403296,0.059816001182151725,0.05875916742035434,0.05773164871772467,0.05673248060177229,0.05576072596306059,0.05481547546058181,0.05389584770044106,0.053000989224670336,0.05213007434210991,0.051282304828915166,0.05045690952246188,0.049653143829041436,0.0488702891629161,0.048107652331692535,0.04736456488080858,0.046640382408024365,0.04593448385709852,0.04524627079847219,0.04457516670346407,0.04392061621745277,0.043282084436579576,0.04265905619172238,0.04193036507808213,0.041125763326927425,0.040341888781843735,0.039578069152970845,0.03883365738844372,0.03810803068967785,0.03740058955788273,0.03671075687217803,0.03603797699946373,0.03538171493596382,0.034741455480146184,0.03411670243663134,0.03350697785052019,0.032911821271504126,0.03233078904704145,0.0317634536438261,0.03120940299670794,0.030668239884242905,0.030139581329977957,0.029623058028597684,0.029118313796054233,0.02862500504277497,0.02814280026910783,0.02767137958211561,0.0272104342328876,0.026759666173535798,0.026318787633079797,0.02588752071141626,0.02546559699063908,0.02505275716295424,0.0246487506744873,0.024253335384300863,0.023866277237945425,0.02348734995493099,0.023116334729491067,0.022753019944058643,0.02239720089489668,0.022048679529328395,0.021707264194071783,0.021372769394167972,0.021045015562037726,0.020723828836211256,0.020409040849304002,0.0201004885248134,0.019798013882358884,0.019501463850975655,0.01921069009010664,0.01892554881795458,0.018645900646853238,0.018371610425362804,0.018102547086778442,0.017838583503773157,0.0175795963489018,0.017325465960712785,0.017076076215209065,0.016831314402438315,0.016591071107977747,0.016355240099101775,0.016123718215433926,0.015896405263876617,0.01567320391764827,0.015454019619239562,0.01523876048712455,0.015027337226068152,0.014819663040867225,0.014615653553391417,0.014415226722774824,0.014218302768628273,0.014024804097144709,0.013834655229978617,0.01364778273577611,0.01346411516425561,0.013283582982725344,0.01310611851493944,0.012931655882199198,0.012760130946599517,0.012591481256342602,0.012425645993028412,0.012262565920843035,0.012102183337568892,0.011944442027345303,0.011789287215102915,0.011636665522613962,0.01148652492608775,0.011338814715252008,0.011193485453864034,0.011050488941589187,0.010909778177201184,0.010771307323046934,0.010635031670729093,0.01050090760796057,0.01036889258654087,0.010238945091418638,0.01011102461079312,0.009985091607217566,0.009861107489666255,0.00973903458653003,0.009618836119501454,0.009500476178322127,0.00938391969635617,0.009269132426959665,0.009156080920619517,0.009044732502827637,0.008935055252670788,0.008827017982104602,0.008720590215888856,0.008615742172161697,0.008512444743624874,0.008410669479324716,0.008310388567002534,0.008211574815996282,0.008114201640673464,0.008018243044377968,0.007923673603868777,0.007830468454239,0.007738603274294218,0.007648054272375477,0.007558798172613242,0.0074708122015932675,0.007384074075425563,0.007298561987198838,0.007214254594808844,0.007131131009147577,0.007049170782642352,0.006968353898129781,0.0068886607580578765,0.006810072174002063,0.006732569356485678,0.006656133905096127,0.006580747798883622,0.00650639338703765,0.006433053379828714,0.0063607108398079934,0.006289349173257496,0.006218952121879476,0.006149503754721708,0.006080988460327834,0.006013390939106856,0.005946696195914528,0.0058808895328409634,0.005815956542195184,0.005751883099684143,0.005688655357777445,0.005626259739252719,0.005564682930917124,0.005503911877496813,0.005443933775692561,0.005384736068394123,0.005326306439049281,0.00526863280618254,0.005211703318060121,0.005155506347494106,0.005100030486785032,0.005045264542796159,0.0049911975321564744,0.004937818676589197,0.004885117398359892,0.004833083315843581,0.004781706239205219,0.004730976166190849,0.004680883278026942,0.0046314179354226504,0.004582570674674874,0.004534332203870904,0.004486693399186825,0.004439645301278586,0.004393179111763844,0.00434728618979013,0.004301958048689438,0.004257186352714768,0.004212962913857079,0.004169279688741033,0.004126128775595253,0.004083502411297768,0.004041392968492516,0.003999792952775698,0.003958694999949907,0.003918091873344754,0.003877976461200504,0.0038383417741152956,0.003799180942552412,0.003760487214406724,0.0037222539526290334,0.003684474632905254,0.003647142841391194,0.003610252272499551,0.003573796726738647,0.0035377701086017187,0.0035021664245040653,0.0034669797807687593,0.0034322043816581585,0.003397834527450591,0.0033638646125608122,0.0033302891237037735,0.0032971026380990364,0.0032642998217166934,0.0032318754275623873,0.0031998242940007877,0.0031681413431170974,0.00313682157911415,0.0031058600867460992,0.0030752520297863397,0.0030449926495292987,0.0030150772633256505,0.0029855012631488246,0.0029562601141937123,0.0029273493535055817,0.002898764588638813,0.002870501496344658,0.0028425558212877727,0.0028149233747895522,0.0027876000335993107,0.0027605817386912755,0.0027338644940873573,0.002707444365705252,0.002681317480230285,0.002655480024011821,0.002629928241982576,0.002604658436600696,0.19697821574637614,0.1967532652806967,0.19608249223679902,0.19497793317963374,0.19345900590085405,0.1915516066510639,0.18928696075588738,0.18670032118482444,0.18382961290017485,0.18071411302519913,0.17739324077663599,0.1739055102665371,0.17028767724366378,0.1665740905243174,0.1627962421908647,0.15898249852521742,0.15515798614519016,0.1513446043780642,0.14756113467081355,0.14382341984566943,0.14014458937777738,0.1365353108722781,0.1330043696255735,0.12960149353389852,0.1263517057282484,0.12324539834730015,0.12027372280487568,0.11742851858389089,0.11470224964496606,0.11208794754883326,0.10957916050673808,0.10716990767233085,0.10485463807466532,0.10262819366682589,0.1004857760293738,0.09841084348485303,0.0963790773802367,0.09439124421828066,0.09244833962599154,0.0905510158897892,0.0886996267004329,0.08689426787413923,0.08513481414617263,0.08342095220193833,0.08175221015723276,0.0801279837279118,0.07854755934424087,0.07701013446965353,0.07551483538023723,0.07406073265265067,0.07264685459540222,0.0712721988436384,0.06993574232125797,0.06863644975749388,0.06737328092830243,0.06614519677684803,0.06495116455180883,0.06379016208777039,0.06266118133857429,0.06156323126199159,0.06049534014297779,0.059456557432398034,0.05844595516897588,0.057462629043962994,0.05650569916059148,0.0555743105339043,0.05466763337064976,0.053784863163828224,0.052925220631916625,0.05208795152882803,0.05127232634708168,0.05047763993367846,0.04970321103539371,0.04894838178787892,0.048212517160921634,0.047495004370369485,0.04679525226573548,0.046112690701084376,0.045446769895653834,0.04479695978963983,0.04416274939970296,0.04353908224037856,0.04271421364656667,0.04191033812332015,0.04112678393355797,0.04036290405980438,0.039618075277323674,0.038891697252815105,0.03818319166959068,0.037492001379880346,0.036817589584641784,0.03615943904096994,0.03551705129709634,0.034889945954723535,0.03427765995836747,0.033679746911248934,0.03309577641720962,0.03252533344802273,0.03196801773548046,0.03142344318753487,0.030891237327783552,0.0303710407575637,0.029862506639885943,0.029365300204476433,0.02887909827315636,0.028403588804816877,0.027938470459248382,0.027483452179104393,0.027038252789271244,0.026602600612971483,0.026176233103906973,0.025758896493790623,0.025350345454632824,0.024950342775151596,0.02455865905073057,0.024175072386335737,0.023799368111840597,0.023431338509232305,0.02307078255117304,0.022717505650441755,0.02237131941977233,0.022032041441637666,0.021699495047547278,0.021373509106445802,0.021053917821801483,0.020740560537021963,0.02043328154881986,0.020131929928183512,0.01983635934862451,0.019546427921371446,0.019261998037222186,0.018982936214751275,0.01870911295460147,0.01844040259959115,0.018176683200390783,0.01791783638651425,0.01766374724241063,0.017414304188424854,0.017169398866420216,0.01692892602986678,0.016692783438193158,0.016460871755232916,0.016233094451581116,0.016009357710697593,0.015789570338601684,0.015573643676997007,0.015361491519693628,0.015153030032180874,0.014948177674221685,0.01474685512534158,0.014548985213095179,0.014354492843986806,0.014163304936946898,0.013975350359250092,0.013790559864778638,0.013608866034536938,0.013430203219318688,0.013254507484448846,0.0130817165565098,0.012911769771973529,0.01274460802766646,0.012580173732986526,0.012418410763812006,0.01225926441802804,0.012102681372610226,0.011948609642202686,0.011796998539134981,0.011647798634815323,0.011500961722454848,0.01135644078106555,0.011214189940684774,0.011074164448780864,0.010936320637789395,0.010800615893744484,0.01066700862595792,0.010535458237708824,0.01040592509790515,0.010278370513682914,0.010152756703902418,0.010029046773515793,0.009907204688767992,0.009787195253202244,0.009668984084442353,0.009552537591718467,0.009437822954115655,0.009324808099514128,0.009213461684198634,0.009103753073111655,0.008995652320729648,0.008889130152535327,0.008784157947071089,0.00868070771854826,0.008578752099994291,0.008478264326920375,0.008379218221487066,0.008281588177156223,0.008185349143808167,0.008090476613309435,0.00799694660551706,0.00790473565470033,0.007813820796370953,0.007724179554504311,0.007635789929139486,0.007548630384345266,0.0074626798365411764,0.0073779176431579795,0.007294323591631181,0.007211877888713086,0.007130561150093723,0.0070503543903219544,0.006971239013013469,0.0068931968013405415,0.006816209908791396,0.0067402608501914065,0.006665332492978609,0.006591408048722532,0.006518471064882327,0.006446505416793884,0.006375495299879495,0.006305425222072978,0.0062362799964543495,0.006168044734084743,0.006100704837039197,0.006034245991628078,0.005968654161802394,0.005903915582738198,0.005840016754591916,0.005776944436424732,0.00571468564028843,0.005653227625468742,0.00559255789288102,0.0055326641796147775,0.005473534453619956,0.005415156908534118,0.005357519958643826,0.005300612233976954,0.005244422575523094,0.005188940030575532,0.005134153848194707,0.005080053474787016,0.005026628549796465,0.004973868901506653,0.004921764542947538,0.004870305667907076,0.004819482647042375,0.004769286024088416,0.0047197065121613365,0.0046707349901543,0.004622362499221353,0.0045745802393494595,0.004527379566014236,0.004480751986917649,0.004434689158806074,0.0043891828843645505,0.0043442251091876175,0.004299807918822821,0.004255923535885402,0.00421256431724232,0.0041697227512640656,0.004127391455140884,0.0040855631722639,0.0040442307696676415,0.004003387235532937,0.0039630256767490026,0.003923139316531597,0.003883721492097876,0.0038447656523948165,0.003806265355880245,0.003768214268355812,0.0037306061608486903,0.003693434907543057,0.00365669448375831,0.003620378963973542,0.0035844825198967705,0.0035489994185784503,0.0035139240205665136,0.0034792507781040076,0.0034449742333665925,0.0034110890167394986,0.0033775898451332614,0.0033444715203360654,0.0033117289274033758,0.003279357033082706,0.0032473508842730927,0.00321570560651828,0.0031844164025333186,0.003153478550762264,0.0031228874039682148,0.0030926383878533436,0.0030627269997087394,0.003033148807093729,0.0030038994465426587,0.0029749746223001706,0.002946370105083015,0.0029180817308681562,0.00289010539970697,0.0028624370745636684,0.002835072780178949,0.00280800860195713,0.002781240684876629,0.19981967460672972,0.19958917440072446,0.1989019498606609,0.1977706156794191,0.1962155049808994,0.19426370064585158,0.19194780523546406,0.1893045530684956,0.1863733708836561,0.1831949841712492,0.17981014789465832,0.1762585570146429,0.172577967965965,0.16880354020349853,0.16496738918416234,0.16109832956403408,0.1572217799020132,0.15335979707229735,0.14953120887953678,0.1457518159641754,0.1420346380099653,0.1383901837434002,0.13483502460446384,0.13142994010663162,0.12817739276348677,0.12506782321525114,0.12209242724119436,0.11924308495575617,0.11651229757160259,0.11389313083599403,0.11137916436040121,0.10896444616170223,0.1066434518184731,0.10441104772024379,0.10226245795165387,0.10019323440948719,0.09819034244207335,0.09622839205888006,0.09430732300885462,0.09242814683086471,0.0905915526520004,0.08879794805911927,0.08704749641457084,0.0853401506834903,0.08367568390392346,0.0820537164748225,0.08047374046515043,0.07893514116292508,0.07743721608909113,0.07597919170018613,0.07456023799741225,0.07317948125000294,0.07183601502855956,0.07052890973054826,0.0692572207658372,0.06801999555598491,0.06681627948682044,0.06564512094047176,0.06450557552023645,0.06339670956974645,0.062317603076982656,0.06126735204352747,0.06024507039030274,0.05924989146276769,0.058280969190999864,0.05733747895348332,0.056418618187350826,0.05552360678254205,0.0546516872925997,0.053802124990648896,0.052974207795350295,0.052167246088451066,0.05138057244258954,0.05061354127553713,0.049865528444863375,0.0491359307950056,0.04842416566712216,0.04772967038055707,0.04705190169348064,0.04639033524915168,0.04574446501326879,0.04511380270699947,0.04440150267413757,0.04357653132165758,0.04277215668658004,0.04198773236529046,0.04122263520573036,0.04047626446636969,0.03974804099576498,0.039037406433923075,0.03834382243635914,0.037666769921413,0.037005748341224394,0.036360274976504445,0.03572988425510419,0.03511412709423667,0.034512570266106136,0.033924795786562045,0.03335040032638852,0.032788994644712764,0.03224020304400543,0.031703662846106095,0.03117902388865286,0.030665948041328623,0.030164108741267136,0.029673190546995937,0.02919288871027298,0.02872290876518956,0.028262966133892353,0.027812785748329606,0.027372101687394606,0.026940656828873612,0.02651820251562661,0.02610449823541388,0.025699311313843166,0.025302416619885377,0.024913596283449965,0.024532639424525965,0.024159341893390685,0.023793506021443502,0.023434940382202927,0.023083459562043086,0.022738883940253217,0.022401039478031997,0.022069757516018227,0.021744874580014638,0.02142623219453913,0.021113676703872403,0.02080705910028584,0.020506234859128343,0.02021106378049527,0.019921409837185097,0.019637141028678463,0.01935812924088127,0.019084250111389763,0.01881538290002952,0.018551410364460154,0.01829221864061755,0.018037697127792563,0.01778773837815249,0.017542237990507602,0.017301094508156922,0.0170642093206308,0.016831486569171338,0.016602833055795428,0.016378158155782526,0.016157373733457114,0.015940394061118083,0.015727135740990723,0.015517517630073262,0.015311460767763744,0.015108888306143235,0.014909725442819788,0.014713899356218712,0.014521339143223627,0.014331975759075598,0.01414574195943092,0.013962572244502118,0.013782402805189897,0.013605171471130101,0.013430817660581788,0.013259282332075607,0.01309050793776337,0.012924438378394769,0.012761018959859805,0.012600196351235155,0.012441918544279255,0.012286134814312523,0.012132795682438661,0.011981852879048908,0.011833259308561913,0.011686969015355063,0.011542937150834875,0.011401119941612201,0.011261474658734345,0.01112395958793694,0.010988534000876541,0.010855158127309927,0.010723793128179138,0.010594401069576558,0.010466944897551858,0.010341388413732073,0.010217696251726577,0.010095833854283625,0.009975767451177873,0.009857464037797276,0.009740891354406998,0.009626017866064446,0.009512812743165103,0.009401245842591369,0.009291287689449878,0.009182909459371502,0.009076082961356237,0.008970780621145301,0.008866975465097486,0.008764641104558537,0.008663751720702018,0.008564282049826791,0.008466207369097182,0.008369503482706236,0.008274146708453684,0.008180113864719927,0.008087382257824795,0.0079959296697575,0.007905734346266896,0.007816774985296236,0.007729030725756019,0.007642481136620442,0.007557106206337143,0.007472886332542272,0.007389802312066512,0.007307835331227766,0.007226966956397513,0.007147179124833417,0.0070684541357703265,0.006990774641758622,0.006914123640245944,0.00683848446539167,0.006763840780107721,0.006690176568318576,0.00661747612743442,0.006545724061028025,0.006474905271712884,0.006405004954213452,0.0063360085886225515,0.006267901933840919,0.006200671021190876,0.006134302148202139,0.006068781872562085,0.006004097006226247,0.00594023460968424,0.0058771819863770655,0.005814926677259024,0.005753456455503117,0.005692759321343172,0.005632823497049585,0.005573637422035429,0.005515189748086596,0.005457469334715804,0.005400465244634202,0.005344166739338113,0.0052885632748082044,0.005233644497315621,0.005179400239335092,0.005125820515559579,0.005072895519014456,0.005020615617268192,0.004968971348737623,0.004917953419082851,0.004867552697692372,0.004817760214253471,0.004768567155406466,0.0047199648614809605,0.0046719448233098065,0.004624498679121494,0.004577618211506586,0.004531295344457027,0.0044855221404761746,0.004440290797758188,0.00439559364743318,0.004351423150878752,0.004307771897094264,0.004264632600136781,0.004221998096617683,0.004179861343256411,0.004138215414492319,0.004097053500151256,0.004056368903166035,0.004016155037349895,0.003976405425219939,0.00393711369587148,0.003898273582900089,0.003859878922371195,0.0038219236508352664,0.00378440180338848,0.003747307511775826,0.003710635002537789,0.0036743785951979377,0.0036385327004908063,0.0036030918186296178,0.0035680505376113206,0.003533403531559983,0.0034991455591060886,0.0034652714618013955,0.0034317761625683955,0.003398654664183855,0.0033659020477944434,0.0033335134714652863,0.0033014841687594213,0.0032698094473477077,0.0032384846876490074,0.003207505341498499,0.0031768669308451995,0.0031465650464767114,0.003116595346770928,0.0030869535564744853,0.0030576354655060607,0.0030286369277856017,0.0029999538600875364,0.002971582240918042,0.16203131045567884,0.1619030830051732,0.16152005630030644,0.1608871394168257,0.16001232516278238,0.1589064198090245,0.15758268966080285,0.1560564462325272,0.1543445940092368,0.15246516484788528,0.15043686123188865,0.1482786272820196,0.14600926218757485,0.14364708610285068,0.14120966404175994,0.13871358926782246,0.13617432435431148,0.1336060955900107,0.1310218347289873,0.12843316115350029,0.12585039721309155,0.12328260967794555,0.12073767075871442,0.1182223328700352,0.11574231214626125,0.11330237657386592,0.11090643542789813,0.10857318009618606,0.10632820536566966,0.10416725842132762,0.1020858798392329,0.10007991217176132,0.09814547537092001,0.09627894452362383,0.09447692965442928,0.09273625737976858,0.0910539542225149,0.08942723141749742,0.08785347105758971,0.08633021344688374,0.08485514554198607,0.08342609037560457,0.08203862876095218,0.0806766056735753,0.07933791613787716,0.07802313164870793,0.0767326820692216,0.0754668705261394,0.07422588725958992,0.07300982243047462,0.07181867790515317,0.07065237805028861,0.06951077958004385,0.06839368050437873,0.06730082823129976,0.06623192687824715,0.06518664384847161,0.06416461572784427,0.06316545355628404,0.06218874752590006,0.06123407115568281,0.060300984989707394,0.059389039862991946,0.058497779776138854,0.0576267444168673,0.05677547136366736,0.055943498003885865,0.05513036319584981,0.05433560870206308,0.05355878041805155,0.05279942941915401,0.0520571128454843,0.0513313946432927,0.050621846179174375,0.04992804674195106,0.04924958394548002,0.048586054044369956,0.04793706217324539,0.04730222251912454,0.0466811584354367,0.04607350250528925,0.045284688000443114,0.04448272869078476,0.04369929722423633,0.04293388282057651,0.04218598896755407,0.041455133201313416,0.04074084686319335,0.04004267483719202,0.0393601752718988,0.03869291929022944,0.038040490689841576,0.03740248563680499,0.036778512354701635,0.03616819081108325,0.035571152402932016,0.03498703964255923,0.0344155058451344,0.03385621481891878,0.03330884055905751,0.0327730669456783,0.03224858744692087,0.031735104827383114,0.03123233086242658,0.030739986058646408,0.030257799380774626,0.029785507985202197,0.0293228569602692,0.028869599073390144,0.02842549452508871,0.027990310709934223,0.02756382198436795,0.027145809441378933,0.026736060691943887,0.0263343696531689,0.025940536343012573,0.025554366681481203,0.025175672298174294,0.024804270346031564,0.02443998332115905,0.02408263888857277,0.023732069713715533,0.023388113299590937,0.0230506118293665,0.022719412014274274,0.022394364946674638,0.022075325958111982,0.021762154482215496,0.02145471392229633,0.02115287152347844,0.020856498249234807,0.020565468662170086,0.020279660808914496,0.01999895610898877,0.01972323924751099,0.019452398071600503,0.01918632349036837,0.018924909378357672,0.01866805248231639,0.018415652331190416,0.018167611149210762,0.0179238337719809,0.017684227565445736,0.017448702347643362,0.017217170313143088,0.016989545960062816,0.016765746019587593,0.01654568938788744,0.016329297060353166,0.016116492068065133,0.015907199416416613,0.015701346025806695,0.015498860674338153,0.015299673942439855,0.015103718159346819,0.014910927351373242,0.014721237191905802,0.014534584953066152,0.0143509094589737,0.014170151040555037,0.01399225149184251,0.013817154027712362,0.013644803243002308,0.013475145072969727,0.013308126755035217,0.013143696791767506,0.01298180491506819,0.012822402051506943,0.01266544028877494,0.012510872843210698,0.012358654028362202,0.01220873922455151,0.01206108484939949,0.011915648329286252,0.011772388071707553,0.011631263438499068,0.011492234719896686,0.011355263109407286,0.011220310679455017,0.011087340357784616,0.010956315904590123,0.010827201890345419,0.010699963674314856,0.01057456738371537,0.010450979893514647,0.010329168806838944,0.010209102435971422,0.010090749783922996,0.009974080526550988,0.009859064995214625,0.009745674159943643,0.009633879613105719,0.009523653553554766,0.009414968771246729,0.009307798632302258,0.009202117064508289,0.009097898543238973,0.00899511807778437,0.00889375119807448,0.008793773941782101,0.008695162841797483,0.008597894914058853,0.008501947645728784,0.008407298983705071,0.00831392732345702,0.008221811498172462,0.008130930768211487,0.008041264810852796,0.007952793710325083,0.00786549794811545,0.007779358393542886,0.007694356294593042,0.007610473269002843,0.0075276912955882,0.0074459927058087415,0.007365360175558381,0.007285776717180024,0.007207225671693481,0.007129690701231979,0.007053155781680132,0.00697760519550892,0.006903023524798227,0.006829395644445685,0.0067567067155532064,0.006684942178986656,0.006614087749104963,0.006544129407650094,0.006475053397797668,0.006406846218360192,0.006339494618139637,0.0062729855904248375,0.0062073063676303325,0.0061424444160698985,0.0060783874308646575,0.006015123330978961,0.005952640254381343,0.005890926553327955,0.005829970789762212,0.005769761730830896,0.005710288344510806,0.005651539795343758,0.005593505440277574,0.005536174824607766,0.005479537678020244,0.005423583910729949,0.005368303609713474,0.0053136870350330755,0.005259724616250127,0.005206406948923616,0.0051537247911940505,0.005101669060448481,0.005050230830064883,0.004999401326234858,0.004949171924859888,0.004899534148522429,0.004850479663527593,0.004802000277014118,0.004754087934132964,0.004706734715292114,0.004659932833464049,0.004613674631556884,0.00456795257984541,0.004522759273461204,0.00447808742994085,0.004433929886828937,0.004390279599336782,0.004347129638053723,0.004304473186710097,0.00426230353999129,0.004220614101399633,0.004179398381165476,0.004138649994204157,0.004098362658118666,0.00405853019124641,0.004019146510749785,0.0039802056307476795,0.0039417016604891145,0.0039036288025663646,0.0038659813511670894,0.0038287536903649894,0.003791940292446539,0.0037555357162749243,0.0037195346056887258,0.0036839316879350437,0.0036487217721366707,0.0036138997477910234,0.003579460583302006,0.003545399324542597,0.0035117110934478673,0.0034783910866376783,0.0034454345740687646,0.0034128368977141763,0.003380593470271222,0.003348699773895949,0.003317151358963846,0.0032859438428567227,0.003255072908773758,0.0032245343045678807,0.0031943238416056244,0.003164437393650461,0.17081750280031877,0.17068077968842668,0.1702724206718397,0.16959779163576702,0.1686656233260469,0.16748770803284488,0.16607850375701955,0.16445467088104979,0.1626345687863329,0.16063773975950138,0.15848440522424456,0.15619499536026882,0.15378972817889408,0.15128824876665356,0.148709334246074,0.1460706654548443,0.14338866266690706,0.14067837997566132,0.13795345120985572,0.13522607935220918,0.13250706122414738,0.12980583951547,0.1271305749098687,0.12448823193990873,0.12188467318172615,0.11932475738197032,0.11681465791863878,0.11438944465038135,0.11205616576266936,0.10980986864211825,0.10764594126023407,0.10556008403543457,0.10354828437922738,0.10160679363937546,0.09973210618637907,0.0979209404191709,0.0961702214917246,0.09447706558486167,0.09283876556719105,0.09125277790676559,0.08971671071007756,0.088228312778567,0.0867854635847038,0.08538605256260064,0.08401665277287962,0.0826695255867305,0.08134530179618048,0.08004447104861312,0.07876739612772654,0.07751432628887651,0.07628540964177775,0.07508070459080353,0.07390019035636412,0.07274377661077054,0.0716113122690682,0.07050259348027253,0.06941737086724079,0.0683553560649382,0.06731622760707769,0.06629963621038759,0.06530520950449044,0.06433255625339883,0.06338127011246845,0.062450932962181294,0.0615411178575204,0.06065139162911956,0.05978131716968119,0.05893045543662348,0.058098367199403415,0.05728461455761539,0.056488762253654144,0.0557103788016906,0.05494903745265813,0.05420431701313629,0.05347580253433823,0.052763085885771534,0.05206576622680134,0.05138345038793734,0.05071575317251045,0.05006229758830658,0.04942271501772973,0.048759444556803484,0.04790849900893201,0.04707687960342028,0.04626406737326541,0.04546955698342562,0.04469285660153425,0.0439334877361198,0.04319098504741454,0.042464896135288026,0.041754781308299065,0.04106021333736108,0.040380777197144876,0.039716069797908676,0.03906569971013954,0.03842928688407834,0.03780646236595163,0.03719686801244352,0.03660015620481414,0.03601598956379834,0.03544404066630299,0.03488399176476892,0.03433553450989596,0.03379836967738004,0.03327220689914245,0.03275676439948731,0.032251768736522336,0.031756954549124146,0.03127206430964305,0.030796848082527518,0.030331063288968365,0.029874474477636036,0.029426853101559045,0.02898797730113014,0.02855763169325001,0.028135607166544393,0.027721700682608662,0.027315715083203115,0.026917458903297897,0.026526746189888643,0.026143396326456264,0.0257672338629618,0.02539808835125056,0.025035794185746207,0.02468019044928654,0.024331120763990213,0.023988433147004024,0.02365197987100007,0.023321617329292728,0.022997205905426223,0.022678609847117986,0.022365697144410557,0.022058339411907907,0.021756411774965373,0.021459792759710602,0.021168364186761348,0.020882011068534476,0.020600621510014287,0.020324086612870478,0.02005230038281581,0.019785159640083098,0.01952256393292937,0.019264415454053024,0.019010618959827225,0.018761081692255023,0.018515713303541532,0.018274425783206,0.018037133387634522,0.017803752571991273,0.017574201924405067,0.017348402102354502,0.017126275771164375,0.016907747544552522,0.01669274392714337,0.016481193258884433,0.016273025661298728,0.016068172985501505,0.015866568761928997,0.015668148151711282,0.015472847899633537,0.015280606288629324,0.015091363095754491,0.014905059549581653,0.014721638288976147,0.014541043323196681,0.01436321999327656,0.014188114934643715,0.01401567604092807,0.01384585242892522,0.013678594404667956,0.013513853430570398,0.013351582093608969,0.013191734074497963,0.01303426411783403,0.012879128003169416,0.012726282516984877,0.012575685425530088,0.012427295448504539,0.012281072233544226,0.012136976331494133,0.011994969172434516,0.011855013042436706,0.011717071061026221,0.01158110715932309,0.011447086058844768,0.01131497325094282,0.01118473497685538,0.011056338208355327,0.010929750628969549,0.010804940615757857,0.010681877221626786,0.010560530158163705,0.010440869778972775,0.010322867063498551,0.010206493601316485,0.010091721576881417,0.009978523754714289,0.0098668734650149,0.00975674458968794,0.009648111548764816,0.009540949287214558,0.009435233262126717,0.009330939430256327,0.009228044235918872,0.009126524599225673,0.009026357904644986,0.008927521989884089,0.008829995135077855,0.008733756052276167,0.008638783875221634,0.008545058149404889,0.008452558822394223,0.008361266234427076,0.00827116110925646,0.008182224545246013,0.008094438006702462,0.008007783315442656,0.007922242642585009,0.007837798500559693,0.007754433735330502,0.007672131518823637,0.007590875341553456,0.0075106490054442565,0.007431436616838486,0.007353222579687227,0.007275991588918674,0.007199728623975859,0.0071244189425233116,0.007050048074314235,0.006976601815214911,0.0069040662213813485,0.006832427603584999,0.006761672521680129,0.006691787779212863,0.006622760418164889,0.006554577713828803,0.006487227169812568,0.00642069651316625,0.006354973689631539,0.006290046859007938,0.006225904390632866,0.006162534858973712,0.006099927039325908,0.0060380699036177606,0.0059769526163161,0.00591656453043145,0.005856895183619281,0.005797934294375944,0.005739671758324063,0.005682097644588238,0.005625202192256366,0.0055689758069246975,0.005513409057325569,0.005458492672032893,0.005404217536246603,0.005350574688651652,0.005297555318350391,0.005245150761866092,0.0051933525002167335,0.0051421521560547825,0.00509154149087446,0.005041512402282152,0.004992056921329441,0.004943167209907469,0.004894835558199246,0.004847054382190926,0.004799816221238688,0.0047531137356902784,0.004706939704560568,0.00466128702325779,0.004616148701361766,0.0045715178604507686,0.004527387731976691,0.004483751655186953,0.004440603075092761,0.004397935540480703,0.004355742701969032,0.004314018310105661,0.004272756213507541,0.0042319503570409115,0.0041915947800396135,0.004151683614562977,0.004112211083690465,0.00407317149985282,0.004034559263199321,0.003996368859998666,0.003958594861074835,0.003921231920275451,0.003884274772972483,0.0038477182345943834,0.0038115571991893978,0.0037757866380179134,0.003740401598175022,0.003705397201241235,0.003670768641961058,0.0036365111869493165,0.003602620173423113,0.003569091007960732,0.003535919165285424,0.0035031001870740653,0.18038296214670715,0.18023633991991156,0.17979847303596413,0.17907528662144204,0.17807641366838206,0.17681484971738107,0.17530650330692038,0.17356967147786997,0.1716244722670076,0.16949226576229354,0.1671950923341083,0.16475515177960803,0.1621943411242165,0.1595338624997783,0.15679390652552885,0.1539934114314928,0.15114989406009602,0.14827934595189574,0.14539618591360087,0.14251325963379305,0.1396418768567074,0.13679187713666435,0.1339717160802557,0.13118856507135152,0.12844841863572293,0.12575620474155308,0.12313273678178135,0.12060924792270594,0.11818112058058797,0.11584321759938995,0.11359075554020509,0.11141927540905718,0.10932461618158718,0.10730289082498198,0.1053504645526099,0.10346393507757802,0.10164011465838718,0.09987601375342454,0.09816882612159324,0.09651591522471661,0.09491480180310252,0.09336315250982281,0.09185876950159846,0.09039958089502857,0.08898363200670519,0.087605973099596,0.08625126096860843,0.08491824959208777,0.08360750436086521,0.08231946270379813,0.0810544469324756,0.07981267622954076,0.07859427777953372,0.07739929705504184,0.07622770728157509,0.07507941811259183,0.07395428355170809,0.07285210916294065,0.0717726586120936,0.07071565958336246,0.06968080911538267,0.06866777840015978,0.06767621708708245,0.06670575713259118,0.06575601623401316,0.06482660088405567,0.0639171090800928,0.06302713272014075,0.06215625971512679,0.06130407584483565,0.06047016638269867,0.059654117512622944,0.05885551755899252,0.05807395804919344,0.05730903462627291,0.05656034782769498,0.05582750374473538,0.05511011457561802,0.054407799084257885,0.05372018297531399,0.05304689919519701,0.052387588167679244,0.05164797924512062,0.05076475802726529,0.04990115081267996,0.04905664589754613,0.048230744273806934,0.04742295957068949,0.046632817959022334,0.04585985802373828,0.0451036306093469,0.0443636986425798,0.04363963693600368,0.042931031975886616,0.04223748169726251,0.04155859524876567,0.04089399274952494,0.04024330504007282,0.03960617342905877,0.03898224943725774,0.038371194540211886,0.03777267991065977,0.037186386161727376,0.036612003091764767,0.03604922943153873,0.03549777259441128,0.03495734843002886,0.03442768098197115,0.03390850224970119,0.03339955195514326,0.03290057731411013,0.03241133281276829,0.031931579989296265,0.031461087220814095,0.030999629515682667,0.030546988311186716,0.030102951276624622,0.029667312121797806,0.029239870410851253,0.028820431381444356,0.028408805769172325,0.028004809637171828,0.027608264210827994,0.027218995717494858,0.02683683523111822,0.026461618521677943,0.026093185909324582,0.025731382123106265,0.025376056164177593,0.025027061173358105,0.02468425430294749,0.024347496592663248,0.024016652849593118,0.023691591532042325,0.023372184637168458,0.023058307592276114,0.022749839149677355,0.02244666128499536,0.02214865909880656,0.021855720721521192,0.02156773722138418,0.02128460251551338,0.02100621328386318,0.020732468886021056,0.020463271280747704,0.020198524948157676,0.019938136814466895,0.0196820161792102,0.0194300746448488,0.019182226048685868,0.018938386397015974,0.01869847380142119,0.018462408417153957,0.018230112383526408,0.018001509766238485,0.01777652650158289,0.017555090342452104,0.017337130806098163,0.017122579123574712,0.01691136819080767,0.01670343252123962,0.016498708199986514,0.016297132839464323,0.016098645536428147,0.01590318683037713,0.015710698663277282,0.015521124340561018,0.015334408493350209,0.015150497041872147,0.014969337160019329,0.01479087724101704,0.014615066864162043,0.014441856762590157,0.014271198792046013,0.014103045900614364,0.013937352099383018,0.013774072434004817,0.013613162957131155,0.01345458070168044,0.013298283654923288,0.013144230733349176,0.012992381758291406,0.01284269743228689,0.012695139316139884,0.012549669806674718,0.012406252115148321,0.012264850246303334,0.012125428978039757,0.011987953841687243,0.011852391102852074,0.01171870774282868,0.01158687144055004,0.011456850555063207,0.01132861410851272,0.011202131769611936,0.011077373837592124,0.010954311226609649,0.010832915450598104,0.010713158608552369,0.010595013370226457,0.010478452962238113,0.010363451154562782,0.010249982247406282,0.010138021058443669,0.01002754291041461,0.009918523619060017,0.009810939481394476,0.009704767264300232,0.009599984193433978,0.009496567942438288,0.00939449662244387,0.009293748771859673,0.009194303346437444,0.009096139709604208,0.00899923762305529,0.008903577237596638,0.008809139084233612,0.00871590406549529,0.008623853446988594,0.008532968849174784,0.00844323223936353,0.008354625923913794,0.008267132540640917,0.008180735051419854,0.008095416734979896,0.008011161179886784,0.00792795227770278,0.007845774216324585,0.00776461147349023,0.007684448810451377,0.007605271265806088,0.007527064149488364,0.007449813036907036,0.0073735037632339075,0.007298122417833701,0.007223655338832793,0.007150089107824013,0.00707741054470033,0.007005606702618102,0.00693466486308314,0.006864572531157176,0.006795317430782229,0.006726887500216995,0.006659270887585631,0.0065924559465332525,0.006526431231986262,0.006461185496014225,0.006396707683791604,0.00633298692965402,0.00627001255325001,0.006207774055783008,0.0061462611163419015,0.006085463588319053,0.006025371495910229,0.005965975030698262,0.005907264548315309,0.005849230565182743,0.005791863755326441,0.00573515494726605,0.005679095120974332,0.005623675404907748,0.005568887073103946,0.005514721542345319,0.005461170369387749,0.005408225248250391,0.005355878007568076,0.005304120608002409,0.005252945139710927,0.005202343819873271,0.00515230899027116,0.005102833114923338,0.005053908777772064,0.00500552868042086,0.004957685639921603,0.004910372586610922,0.004863582561992392,0.00481730871666609,0.0047715443083024825,0.004726282699660093,0.004681517356646475,0.004637241846419619,0.0045934498355312894,0.004550135088109381,0.0045072914640790235,0.004464912917421419,0.004422993494469975,0.004381527332241339,0.004340508656802588,0.004299931781672036,0.004259791106253634,0.004220081114304307,0.00418079637243222,0.004141931528627108,0.0041034813108204796,0.0040654405254754045,0.0040278040562058345,0.003990566862423013,0.003953723978010695,0.00391727051002665,0.003881201637430663,0.19084583209948194,0.1906875429105986,0.1902149108015293,0.18943455593572572,0.18835723097933452,0.1869974213971313,0.18537282661075646,0.18350375701502578,0.18141248474254287,0.179122585290272,0.1766583032275595,0.174043969075317,0.17130348709221271,0.16845990609496495,0.16553507836712533,0.16254940572266147,0.15952166717669736,0.15646891950450403,0.15340646013757386,0.1503478411459504,0.14730492323235217,0.14428795945512643,0.1413056995696297,0.13836550723621346,0.13547348374196425,0.13263879961669503,0.12990391317659972,0.12727395462958432,0.1247431729498148,0.12230622007381659,0.11995811699136534,0.11769422312604756,0.11551020864830373,0.11340202940634102,0.11136590419695885,0.10939829413094242,0.10749588387577019,0.10565556458328142,0.10387441833153102,0.10214970392934047,0.10047884394859229,0.09885941286423738,0.097289126194899,0.09576583054845317,0.0942874944871014,0.09285220013542149,0.09145813546278345,0.09009701747217229,0.0887564362765685,0.08743677441793583,0.08613855987144241,0.08486220307779145,0.08360800854067527,0.08237618565948074,0.08116685879774634,0.0799800765995843,0.07881582057511621,0.07767401298270533,0.07655452404054285,0.07545717850331456,0.07438176164166309,0.07332802466298197,0.07229568961215613,0.07128445379034486,0.07029399372873205,0.0693239687529186,0.06837402417181694,0.06744379412318084,0.06653290410595707,0.06564097322767842,0.06476761619314818,0.0639124450587905,0.0630750707751103,0.062255104537951994,0.06145215896754734,0.060665849132682775,0.05989579343588347,0.05914161437402977,0.05840293918754651,0.057679400410080905,0.05697063632948442,0.056276291369830256,0.05559601640334093,0.05479586348845326,0.05387789270467845,0.0529798333442683,0.05210118244210161,0.05124144865122884,0.05040015226616199,0.0495768252034851,0.04877101094548393,0.04798226445184592,0.04721015204400614,0.04645425126613829,0.045714150726394814,0.04498944992157731,0.04427975904807354,0.04358469880153173,0.042903900167526134,0.042237004205128895,0.04158366182511683,0.04094353356433043,0.04031628935747519,0.03970160830756123,0.039099178455949776,0.03850869655289927,0.03792986782935255,0.03736240577062864,0.03680603189254584,0.03626047552048024,0.03572547357173433,0.03520077034155098,0.03468611729306015,0.034181272851351564,0.03368600220188639,0.03320007709335804,0.03272327564511685,0.03225538215923277,0.03179618693722484,0.03134548610150297,0.030903081421506454,0.030468780144527998,0.030042394831191872,0.029623743195548426,0.029212647949712123,0.028808936653000113,0.028412441565485978,0.02802299950588929,0.027640451713728118,0.02726464371562386,0.02689542519569334,0.026532649869912838,0.026176175364366703,0.025825863097279987,0.025481578164742075,0.025143189230007724,0.024810568416297984,0.02448359120298602,0.02416213632507716,0.023846085675890978,0.023535324212836106,0.023229739866203785,0.022929223450873924,0.02263366858084822,0.02234297158652585,0.02205703143462456,0.021775749650677495,0.021499030244012358,0.021226779635137534,0.020958906585455055,0.02069532212923012,0.020435939507730566,0.020180674105481227,0.01992944338855111,0.01968216684481041,0.01943876592609499,0.01919916399220442,0.018963286256686432,0.018731059734336874,0.018502413190363335,0.018277277091153194,0.018055583556598073,0.01783726631391145,0.017622260652902767,0.017410503382648653,0.0172019327895186,0.016996488596511677,0.016794111923851166,0.016594745250807518,0.016398332378698744,0.016204818395032287,0.01601414963875198,0.01582627366654621,0.01564113922019128,0.015458696194888245,0.015278895608562751,0.015101689572095218,0.014927031260453017,0.014754874884687434,0.014585175664776871,0.014417889803280437,0.014252974459777858,0.01409038772607281,0.013930088602126,0.013772036972705107,0.013616193584720061,0.013462520025223964,0.013310978700060079,0.013161532813127543,0.013014146346254227,0.012868784039650605,0.01272541137292863,0.012583994546666453,0.01244450046450421,0.012306896715747355,0.01217115155846977,0.012037233903094592,0.0119051132964396,0.011774759906214356,0.011646144505949401,0.01151923846035073,0.011394013711061749,0.011270442762820892,0.011148498670002914,0.011028155023533413,0.01090938593815999,0.010792166040075815,0.010676470454879933,0.01056227479586524,0.01044955515262572,0.010338288079969083,0.0102284505871306,0.01012002012727574,0.010012974587283074,0.009907292277801457,0.009802951923568294,0.009699932653987088,0.00959821399395217,0.009497775854914957,0.009398598526183976,0.009300662666453333,0.009203949295549005,0.009108439786391642,0.009014115857165945,0.008920959563691284,0.008828953291989733,0.00873807975104124,0.008648321965726092,0.00855966326994533,0.00847208729991531,0.00838557798763132,0.00830011955449644,0.008215696505107617,0.008132293621199332,0.00804989595573634,0.007968488827153224,0.007888057813737024,0.007808588748146145,0.007730067712065616,0.007652481030992271,0.00757581526914674,0.007500057224510078,0.007425193923978351,0.007351212618636361,0.007278100779143581,0.007205846091231123,0.007134436451305859,0.00706385996216012,0.006994104928781133,0.006925159854261576,0.006857013435805343,0.006789654560827071,0.006723072303143993,0.006657255919254646,0.006592194844705871,0.006527878690543126,0.006464297239842979,0.006401440444325067,0.006339298421042796,0.006277861449147893,0.006217119966730401,0.006157064567729591,0.006097685998914897,0.006038975156935638,0.005980923085435632,0.005923520972234029,0.0058667601465683655,0.005810632076399001,0.0057551283657742815,0.005700240752252354,0.005645961104381472,0.005592281419234979,0.005539193820000397,0.005486690553621103,0.005434763988490168,0.005383406612192688,0.0053326110292985715,0.005282369959202135,0.005232676234008302,0.0051835227964646185,0.005134902697936366,0.005086809096425979,0.005039235254633987,0.004992174538060964,0.004945620413150239,0.0048995664454684566,0.004854006297925498,0.004808933729031069,0.004764342591187851,0.004720226829019845,0.004676580477736185,0.004633397661527389,0.004590672591995987,0.004548399566618729,0.004506572967240294,0.004465187258598407,0.004424236986877718,0.004383716778294296,0.0043436213377081945,0.004303945447264023,0.20235072605678572,0.2021785115295853,0.20166440156637389,0.20081589493963425,0.1996451572830605,0.19816854944453716,0.19640601740129132,0.19438038655899212,0.19211660640801057,0.1896409900602528,0.18698048791630717,0.18416202679504123,0.1812119366129391,0.17815547734893067,0.175016470538834,0.17181703254048264,0.16857740159560466,0.1653158473047994,0.1620486493462341,0.158790131811138,0.155552740060697,0.1523471482008042,0.1491823868397299,0.14606598251204508,0.14300411798960364,0.1400329223264986,0.1371776587932695,0.134431852453479,0.13178949065432186,0.12924498343133398,0.12679312781550614,0.12442907561366505,0.12214830428425083,0.11994659057561556,0.11781998663289422,0.11576479831384184,0.11377756548398382,0.11185504408767989,0.10999418981459208,0.10819214320144864,0.10644621602658913,0.10475387887045959,0.10311274972900988,0.10152058357902657,0.09997526280523457,0.0984747884084352,0.09701727192234125,0.0956009279742533,0.09422406743123059,0.09287771827197215,0.0915507812876594,0.09024378776884949,0.08895725281129968,0.08769158204214857,0.08644708213721833,0.0852239706645315,0.08402238525324952,0.08284239209744867,0.08168399381193195,0.08054713666319359,0.079431717203009,0.07833758833499534,0.07726456484638743,0.07621242843817747,0.07518093228696689,0.07416980517160252,0.07317875519680149,0.07220747314490511,0.07125563548557072,0.07032290707170107,0.06940894354827831,0.06851339349921712,0.06763590035558206,0.06677610408695431,0.06593364269610089,0.0651081535355293,0.06429927446310359,0.06350664485241764,0.06272990647234425,0.061968704248932374,0.06122268692166914,0.06049150760501771,0.059774824265215604,0.059072300121323064,0.05823352044110604,0.057278145712402265,0.05634298332736953,0.05542754113734755,0.05453133735164346,0.0536539006561351,0.052794770282768834,0.05195349603598132,0.051129638281541476,0.05032276790266018,0.04953246622774952,0.04875832493372858,0.047999945928387425,0.047256941214883434,0.04652893274118168,0.04581555223688542,0.045116441039642255,0.04443124991309267,0.0437596388580429,0.04310127691842528,0.04245584198335586,0.04182302058648005,0.041202507703639195,0.04059400654977348,0.03999722837582501,0.03941189226636565,0.038837724938512896,0.038274460542661815,0.03772184046547361,0.03717961313547495,0.036647533831612816,0.03612536449500624,0.0356128735441196,0.035109835693543597,0.034616031776502305,0.03413124857122498,0.0336552786312452,0.03318792011968805,0.032728976647585485,0.03227825711623751,0.03183557556360523,0.0314007510147457,0.03097360733624317,0.030553973094607834,0.03014168141859964,0.029736569865408843,0.02933848029065462,0.028947258722120024,0.028562755237158684,0.028184823843699625,0.027813322364777706,0.027448112326496785,0.027089058849365567,0.026736030542908067,0.026388899403472877,0.026047540715163676,0.025711832953790696,0.025381657693784983,0.02505689951797534,0.024737445930153073,0.024423187270350352,0.024114016632737247,0.02380982978608005,0.023510525096670398,0.023216003453655425,0.022926168196694734,0.02264092504587727,0.022360182033815484,0.022083849439865622,0.021811839726395138,0.021544067477035654,0.02128044933686367,0.02102090395443495,0.020765351925628436,0.02051371573923119,0.020265919724211285,0.020021889998623553,0.019781554420098917,0.019544842537856006,0.019311685546198606,0.019082016239440613,0.01885576896821532,0.018632879597126936,0.018413285463690823,0.018196925338533006,0.017983739386798387,0.0177736691307314,0.017566657413393014,0.017362648363469197,0.01716158736114576,0.016963421005006803,0.016768097079926388,0.01657556452592026,0.01638577340792904,0.01619867488649522,0.016014221189315204,0.015832365583629777,0.015653062349429113,0.015476266753448029,0.01530193502391842,0.015130024326064818,0.014960492738311133,0.014793299229178858,0.014628403634856284,0.014465766637410603,0.014305349743631882,0.014147115264481045,0.013991026295126344,0.013837046695548175,0.013685141071696974,0.013535274757180405,0.013387413795471573,0.013241524922615707,0.013097575550421486,0.012955533750124279,0.012815368236500185,0.01267704835242517,0.012540544053859218,0.012405825895245085,0.012272865015307674,0.012141633123244228,0.012012102485287968,0.01188424591164057,0.011758036743757166,0.011633448841974942,0.011510456573476432,0.011389034800572503,0.011269158869301828,0.011150804598332807,0.011033948268159904,0.010918566610587805,0.010804636798489593,0.010692136435837319,0.010581043547992287,0.010471336572249022,0.010362994348624924,0.010255996110890361,0.010150321477827389,0.010045950444716654,0.009942863375041208,0.009841040992402537,0.009740464372644062,0.009641114936171789,0.009542974440472208,0.009446024972817635,0.009350248943154964,0.009255629077172667,0.009162148409541842,0.009069790277323202,0.00897853831353993,0.008888376440908107,0.008799288865721695,0.008711260071888806,0.008624274815111365,0.008538318117209183,0.008453375260580842,0.008369431782798413,0.00828647347133428,0.008204486358412047,0.008123456715983513,0.008043371050824309,0.007964216099746775,0.007885978824926046,0.007808646409337943,0.0077322062523020995,0.007656645965132267,0.007581953366887037,0.007508116480220109,0.007435123527327985,0.007362962925989562,0.00729162328569943,0.007221093403889131,0.007151362262235466,0.007082419023053019,0.007014253025770102,0.006946853783482691,0.006880210979588634,0.0068143144644967355,0.00674915425241011,0.006684720518182566,0.006621003594243479,0.006557993967593248,0.006495682276864401,0.006434059309447981,0.0063731159986842425,0.006312843421113528,0.0062532327937890675,0.0061942754716478865,0.006135962944939181,0.006078286836708303,0.006021238900336286,0.005964811017130861,0.005908995193970858,0.005853783561000543,0.005799168369373164,0.005745141989043556,0.005691696906606068,0.005638825723179904,0.005586521152338391,0.00553477601808193,0.0054835832528542326,0.005432935895598664,0.005382827089856662,0.00533325008190492,0.005284198218931578,0.0052356649472497675,0.005187643810548865,0.005140128448180329,0.005093112593480008,0.005046590072124084,0.005000554800518575,0.0049550007842221015,0.004909922116399518,0.0048653129763078715,0.004821167627812327,0.004777480417932012 +0.09154924045302677,0.09138181259525248,0.09088373778479016,0.09006736917229759,0.08895241814532165,0.0875647484936505,0.0859348867150156,0.08409640284939304,0.08208431046621115,0.07993360915907648,0.07767805602764566,0.07534921258059354,0.07297577719911438,0.07058318508478022,0.06819343911858936,0.06582512579129268,0.06349356855580818,0.0612110743345431,0.05898723530669015,0.056829255732802265,0.054756455115131476,0.05280154237008069,0.05095718136442819,0.04919835903557117,0.04749960448864599,0.04586199031139689,0.04428596878696612,0.04277133984526459,0.04131738155201091,0.039922962247390656,0.038586635761152385,0.03730672137319399,0.036081370270677766,0.03490862022670724,0.033786440130743126,0.032712765866837266,0.031685528882656404,0.030702678634491432,0.02976219993993708,0.028862126126469927,0.02800054873335957,0.02717562440785618,0.026385579534191354,0.025628713045126147,0.02490339778959102,0.024208080764973376,0.02354128246772582,0.022901595569820774,0.022287683089912472,0.021698276196001443,0.021132171749672555,0.02058822967999923,0.020065370257082354,0.01956257132033797,0.01907886550447238,0.018613337496255683,0.01816512134711902,0.01773339786016013,0.01731739206492221,0.01691637078912237,0.016529640333232794,0.0161565442511564,0.01579646123821997,0.015448803126114278,0.015113012983188524,0.014788563317623146,0.014474954380316022,0.014171712563857707,0.013878388893654822,0.013594557607074337,0.01331981481636577,0.013053777251129684,0.012796081076106943,0.01254638078016149,0.01230434813244158,0.012069671201826183,0.011842053435942,0.011621212796174235,0.011406880945276332,0.011172694876792226,0.010912858633937105,0.01066112212266747,0.010417164126769204,0.010180678779080951,0.00995137471761785,0.009728974292967783,0.00951321282364929,0.009303837896358694,0.009100608708207369,0.008903295448253329,0.008711678715808581,0.008525548973156065,0.008344706030488785,0.008168958561007727,0.007998123644264409,0.007832026335957669,0.007670499262516247,0.00751338223890123,0.007360521908181815,0.007211771401518917,0.007066990017290258,0.006926042918174863,0.006788800845084566,0.006655139846917454,0.006524941025162648,0.00639809029245667,0.006274478144248049,0.006153999442784358,0.00603655321268033,0.005922042447384137,0.0058103739258931406,0.005701458039116892,0.005595208625324677,0.005491542814144315,0.005390380878623222,0.005291646094883035,0.005195264608934844,0.005101165310248688,0.005009279711690798,0.004919541835475946,0.004831888104793755,0.00474625724079529,0.00466259016464249,0.004580829904343562,0.004500921506108784,0.0044228119499857355,0.004346450069538884,0.004271786475357248,0.004198773482186602,0.004127365039490262,0.0040575166652614845,0.00398918538291347,0.003922329661087346,0.0038569093562261575,0.00379288565777302,0.003730221035856,0.003668879191336074,0.0036088250080959106,0.0035500245074565565,0.0034924448046165647,0.0034360540670097875,0.0033808214744898727,0.003326717181248853,0.003273712279385495,0.0032217787640434693,0.003170889500041142,0.0031210181899234608,0.0030721393433658993,0.00302422824786648,0.0029772609406644294,0.0029312141818283173,0.0028860654284569025,0.002841792809943017,0.002798375104249391,0.002755791715150108,0.0027140226503939865,0.0026730485007458536,0.0026328504198682287,0.002593410105003485,0.002554709778421217,0.0025167321695969084,0.0024794604980878775,0.0024428784570775944,0.002406970197557414,0.002371720313118391,0.002337113825326275,0.0023031361696550976,0.002269773181953697,0.0022370110854241657,0.0022048364780890358,0.002173236320726814,0.0021421979252564567,0.0021117089435506754,0.002081757356661793,0.002052331464441603,0.002023419875539552,0.0019950114977633276,0.001967095528787533,0.001939661447194991,0.0019126990038387994,0.0018861982135108758,0.0018601493469051383,0.0018345429228638515,0.001809369700894733,0.0017846206739495195,0.0017602870614526662,0.0017363603025706345,0.0017128320497123517,0.0016896941622521731,0.0016669387004657255,0.0016445579196717802,0.0016225442645712194,0.0016008903637759109,0.0015795890245205737,0.0015586332275498035,0.0015380161221747904,0.0015177310214926324,0.001497771397762213,0.0014781308779313873,0.001458803239308799,0.0014397824053762659,0.0014210624417356637,0.0014026375521857702,0.0013845020749242165,0.0013666504788703358,0.0013490773601037662,0.001331777438415718,0.0013147455539680643,0.0012979766640567115,0.0012814658399757802,0.0012652082639783434,0.001249199226331236,0.0012334341224600124,0.0012179084501810677,0.0012026178070182027,0.0011875578875999752,0.0011727244811360071,0.001158113468968857,0.0011437208221991384,0.0011295425993813363,0.0011155749442881555,0.0011018140837404928,0.001088256325501651,0.0010748980562330318,0.0010617357395094713,0.0010487659138924276,0.0010359851910585606,0.0010233902539826198,0.0010109778551722953,0.0009987448149535963,0.000986688019805017,0.000974804420739105,0.00096309103172945,0.000951544928182255,0.0009401632454505899,0.0009289431773901383,0.0009178819749552652,0.0009069769448336815,0.0008962254481190856,0.0008856248990201717,0.0008751727636049765,0.0008648665585796381,0.0008547038501000677,0.0008446822526160827,0.0008347994277465848,0.0008250530831849862,0.0008154409716339289,0.000805960889768555,0.0007966106772270545,0.0007873882156282242,0.0007782914276148036,0.0007693182759219562,0.000760466762470285,0.0007517349274822579,0.000743120848621855,0.000734622640156387,0.0007262384521399726,0.000717966469617993,0.0007098049118520533,0.0007017520315645125,0.0006938061142024646,0.0006859654772202692,0.0006782284693802182,0.00067059347007092,0.0006630588886425673,0.0006556231637590594,0.0006482847627661421,0.0006410421810752583,0.0006338939415627366,0.0006268385939836154,0.0006198747144000489,0.0006130009046236493,0.0006062157916714421,0.0005995180272350416,0.0005929062871628072,0.0005863792709543181,0.0005799357012672148,0.0005735743234357905,0.0005672939050011085,0.0005610932352523942,0.000554971124779189,0.0005489264050342605,0.0005429579279067611,0.0005370645653054577,0.0005312452087517188,0.0005254987689820983,0.0005198241755600366,0.0005142203764967331,0.0005086863378807348,0.0005032210435160669,0.0004978234945687766,0.0004924927092214365,0.0004872277223356996,0.00048202758512247716,0.00047689136481960927,0.0004718181443769155,0.00046680702214821953,0.00046185711159044574,0.0004569675409694104,0.0004521374530722009,0.11157165976462197,0.11136951272107888,0.11076815376944683,0.10978249871816871,0.10843634525479384,0.1067609135908591,0.10479304445443433,0.10257324173943086,0.10014373986910642,0.09754674500918296,0.09482295434616132,0.09201040901221866,0.0891436922903177,0.0862534506869971,0.08336619325164035,0.08050431350458026,0.0776862763245412,0.07492691637124263,0.07223780243436977,0.06962763136739304,0.06712451843193736,0.06476377064733112,0.06253533673036102,0.060418420598082355,0.05837381285636034,0.056400406616795275,0.05449905306367535,0.052669791906726875,0.050912008450698154,0.04922456932668289,0.047605938356303015,0.046054274367265516,0.044567512924428426,0.04314343394767612,0.041779717104295705,0.040473986725839836,0.03922384783329626,0.03802691467789193,0.03688083302986849,0.035783297281826665,0.034732063280564385,0.03372495766420773,0.03275988436012914,0.03183482879324688,0.0309478602630682,0.030097132869573318,0.029280885301729672,0.028497439746397703,0.027745200128303685,0.027022649852549065,0.026328349188334047,0.0256609324055205,0.025019104753250525,0.024401639351433243,0.023807374050747298,0.023235208304522092,0.022684100085727826,0.022153062874169883,0.02164116273238382,0.021147515483384744,0.02067128399922967,0.02021167560591997,0.01976793960753767,0.019339364930418254,0.018925277886529358,0.018525040054035137,0.018138046272066933,0.01776372274607139,0.017401525259631387,0.017050937488350727,0.016711469411185485,0.016382655814556724,0.01606405488453415,0.01575524688245042,0.015455832899400838,0.01516543368519489,0.014883688547507923,0.014610254317121447,0.01434480437533531,0.014065291590031176,0.013741983395410542,0.01342865696118704,0.01312491959685279,0.012830397238738585,0.012544733433763406,0.012267588384361622,0.011998638050691391,0.011737573306496848,0.011484099145201534,0.011237933933042102,0.010998808706261647,0.010766466509554462,0.010540661773167722,0.010321159726207093,0.01010773584386969,0.00990017532647265,0.00969827260828959,0.00950183089432681,0.009310661723312894,0.009124584555270964,0.008943426382159362,0.008767021360166834,0.008595210462330498,0.008427841150249533,0.008264767063730081,0.008105847727283197,0.007950948272463591,0.007799939175105727,0.007652696006566045,0.00750909919815212,0.00736903381795659,0.007232389359373062,0.0070990595406156725,0.006968942114600502,0.0068419386885993656,0.006717954553101429,0.006596898519360512,0.006478682765137453,0.006363222688171746,0.00625043676695607,0.006140246428402226,0.006032575922019118,0.0059273522002433925,0.005824504804587954,0.005723965757287347,0.0056256694581479725,0.005529552586319137,0.005435554006722819,0.005343614680895567,0.005253677582005325,0.0051656876138285995,0.005079591533477,0.004995337877679779,0.004912876892437595,0.004832160465876109,0.004753142064131685,0.004675776670120186,0.004600020725039085,0.004525832072467163,0.004453169904932479,0.004381994712823141,0.004312268235528831,0.004243953414700681,0.0041770143495265324,0.004111416253925006,0.004047125415562282,0.0039841091566080785,0.003922335796144542,0.003861774614150733,0.0038023958169878004,0.0037441705043151125,0.003687070637367999,0.003631069008537076,0.0035761392121862723,0.0035222556166535366,0.0034693933373806268,0.0034175282111184985,0.003366636771162345,0.0033166962235677525,0.0032676844243047453,0.0032195798573085507,0.0031723616133851255,0.003126009369936761,0.0030805033714693102,0.0030358244108480586,0.002991953811269272,0.0029488734089172107,0.0029065655362754696,0.0028650130060668046,0.0028241990957931203,0.0027841075328507202,0.0027447224801970195,0.002706028522544178,0.00266801065305959,0.0026306542605507724,0.002593945117115192,0.0025578693662356836,0.002522413511303936,0.0024875644045530285,0.0024533092363845004,0.0024196355250725434,0.002386531106830662,0.002353984126226884,0.002321983026932126,0.0022905165427905987,0.002259573689197997,0.002229143754776098,0.0021992162933320188,0.0021697811160915426,0.0021408282841947662,0.0021123481014455386,0.0020843311073038733,0.002056768070112375,0.002029649980548284,0.002002968045291418,0.0019767136809014825,0.0019508785078957303,0.0019254543450199521,0.0019004332037059306,0.001875807282707451,0.001851568962909787,0.001827710802305095,0.0018042255311283184,0.0017811060471474654,0.0017583454111032074,0.001735936842291425,0.0017138737142848321,0.0016921495507878697,0.0016707580216203798,0.0016496929388258492,0.001628948252898937,0.0016085180491293553,0.0015883965440570591,0.0015685780820352973,0.0015490571318979877,0.001529828283727039,0.0015108862457173216,0.0014922258411350564,0.001473842005366863,0.00145572978305626,0.0014378843253249549,0.0014203008870753572,0.0014029748243725977,0.0013859015919026607,0.0013690767405043314,0.001352495914772814,0.0013361548507318946,0.0013200493735733897,0.0013041753954609828,0.0012885289133966148,0.0012731060071473148,0.0012579028372308248,0.0012429156429574584,0.001228140740527218,0.0012135745211798586,0.0011992134493963558,0.0011850540611503845,0.0011710929622076468,0.0011573268264723176,0.0011437523943785648,0.0011303664713259302,0.001117165926157429,0.0011041476896784083,0.0010913087532157652,0.0010786461672156577,0.0010661570398787668,0.0010538385358319212,0.001041687874835171,0.001029702330522724,0.0010178792291774426,0.0010062159485373133,0.0009947099166332204,0.000983358610657106,0.0009721595558592958,0.0009611103244746329,0.0009502085346761669,0.0009394518495557815,0.0009288379761308719,0.0009183646643765347,0.000908029706282064,0.0008978309349316523,0.0008877662236081403,0.0008778334849193486,0.0008680306699464107,0.0008583557674131402,0.0008488068028763302,0.0008393818379360309,0.0008300789694653269,0.0008208963288592409,0.0008118320813018194,0.0008028844250514002,0.0007940515907432073,0.0007853318407088982,0.0007767234683125931,0.0007682247973030303,0.0007598341811810951,0.000751550002582741,0.0007433706726765539,0.0007352946305756469,0.0007273203427636636,0.000719446302534113,0.0007116710294431856,0.000703993068775279,0.000696410991021126,0.0006889233913680441,0.000681528889202198,0.0006742261276221709,0.0006670137729640296,0.0006598905143372282,0.0006528550631711565,0.000645906152772227,0.0006390425378908428,0.0006322629942984327,0.0006255663183740077,0.0006189513267000417,0.0006124168556675951,0.0006059617610901104,0.0005995849178260633,0.0005932852194099446,0.000587061577691496,0.13601737570210815,0.1357730977428659,0.135046411127369,0.13385535614708108,0.1322287109628954,0.13020422107948687,0.1278264144388252,0.1251442300815016,0.12220867911766485,0.11907071872945385,0.11577946499112349,0.11238081103018356,0.10891646369263681,0.10542337071258069,0.10193348369792758,0.09847378916986184,0.09506653771596946,0.09172960664146614,0.08847694110667167,0.08531903003276113,0.08229490420234842,0.07944209769161241,0.07674787473144519,0.07419648147269728,0.07173796131390396,0.06936198333170933,0.06706996650600117,0.06486232043303994,0.06273863407988184,0.060697839881102805,0.05873835462294327,0.056858199049791745,0.055055098364485036,0.053326565852766586,0.05166997180206926,0.05008259975056651,0.048561691926649976,0.047104485544681995,0.045708241425498945,0.04437026622018508,0.04308792933842119,0.041858675522068976,0.04068003386138697,0.039549623925399596,0.038465159568826075,0.03742445088393984,0.0364254046856403,0.03546602385007609,0.034544405769828715,0.033658740140725285,0.03280730625511848,0.031988469943152915,0.03120068027583527,0.030442466120881473,0.029712432623437642,0.0290092576683999,0.0283316883683307,0.027678537610717327,0.02704868068994315,0.02644105204253648,0.02585464209888532,0.025288494260173256,0.024741702005866555,0.024213406134336177,0.02370279213703205,0.02320908770501682,0.02273156036535885,0.022269515243969654,0.021822292950771958,0.021389267582625014,0.020969844839083245,0.020563460245933873,0.020169577481331063,0.019787686799370013,0.019417303546005536,0.019057966762307213,0.01870923787022161,0.01837069943614505,0.018041954007815948,0.017710651342563933,0.017308328880130397,0.016918306994426414,0.016540105714807542,0.016173267665182296,0.015817356841203913,0.015471957460350528,0.01513667288031217,0.014811124581421812,0.014494951209094643,0.014187807672513226,0.013889364296031825,0.013599306019982207,0.01331733164780331,0.013043153136587464,0.012776494928339974,0.012517093319417938,0.012264695865784048,0.012019060821849859,0.01177995661085289,0.011547161324820443,0.011320462252313276,0.011099655432260403,0.010884545232292108,0.01067494395010359,0.010470671436454646,0.01027155473851452,0.010077427762337433,0.00988813095333841,0.009703510993698776,0.0095234205157179,0.009347717830172303,0.0091762666688114,0.009008935940176356,0.008845599497967501,0.00868613592125253,0.008530428305834562,0.008378364066150503,0.00822983474710976,0.008084735845309794,0.007942966639115359,0.007804430027103992,0.00766903237442024,0.0075366833666040585,0.007407295870489135,0.007280785801782737,0.007157071998974357,0.007036076103229376,0.006917722443950295,0.006801937929707751,0.0066886519442531335,0.006577796247353689,0.006469304880194026,0.0063631140751096394,0.00625916216942885,0.006157389523214599,0.0060577384407032135,0.0059601530952590204,0.005864579457663031,0.00577096522757101,0.005679259767983733,0.005589414042576932,0.0055013805557550385,0.005415113295291901,0.0053305676774332966,0.0052477004943438064,0.0051664698637812236,0.00508683518089668,0.005008757072055782,0.004932197350586433,0.004857118974362056,0.004783486005135529,0.004711263569539183,0.004640417821677739,0.00457091590723766,0.0045027259290444065,0.004435816914002598,0.004370158781353348,0.004305722312193273,0.004242479120195581,0.004180401623480646,0.004119463017585679,0.004059637249482623,0.004000898992601333,0.003943223622811712,0.0038865871953240585,0.0038309664224675482,0.0037763386523099207,0.0037226818480802152,0.003669974568363079,0.0036181959480299846,0.003567325679876805,0.003517343996938861,0.0034682316554530755,0.003419969918443078,0.003372540539899454,0.003325925749531458,0.003280108238066558,0.0032350711430761845,0.003190798035304576,0.0031472729054828103,0.0031044801516067143,0.0030624045666608124,0.003021031326771025,0.0029803459797675337,0.0029403344341438677,0.0029009829483950637,0.0028622781207206806,0.002824206879078388,0.0027867564715751266,0.002749914457181386,0.002713668696758184,0.0026780073443834125,0.002642918838966602,0.002608391896141807,0.0025744155004265956,0.002540978897639178,0.002508071587562663,0.002475683316847665,0.002443804072144969,0.002412424073458496,0.0023815337677121945,0.002351123822521844,0.002321185120164798,0.0022917087517403925,0.00226268601151465,0.002234108391441493,0.0022059675758556883,0.0021782554363304575,0.002150964026694054,0.0021240855782003383,0.0020976124948466897,0.002071537348835673,0.0020458528761743535,0.0020205519724068605,0.0019956276884759722,0.001971073226708268,0.001946881936919976,0.0019230473126384511,0.0018995629874357304,0.0018764227313702673,0.0018536204475336094,0.0018311501686975287,0.0018090060540596148,0.0017871823860829963,0.0017656735674275218,0.0017444741179695712,0.0017235786719068406,0.0017029819749463733,0.0016826788815723825,0.0016626643523915228,0.0016429334515530656,0.001623481344241913,0.0016043032942412551,0.0015853946615637792,0.0015667509001484356,0.001548367555620956,0.0015302402631163683,0.0015123647451608306,0.0014947368096119235,0.0014773523476547677,0.0014602073318526647,0.001443297814250588,0.0014266199245293741,0.0014101698682098894,0.001393943924905027,0.0013779384466182717,0.0013621498560874204,0.0013465746451723104,0.0013312093732845483,0.0013160506658589672,0.001301095212864764,0.0012863397673554702,0.001271781144056773,0.0012574162179904388,0.0012432419231341182,0.0012292552511153705,0.0012154532499391265,0.0012018330227475656,0.0011883917266116986,0.0011751265713531452,0.0011620348183960238,0.0011491137796474948,0.0011363608164063567,0.001123773338299066,0.001111348802241851,0.0010990847114289131,0.001086978614345459,0.0010750281038049837,0.0010632308160103934,0.001051584429637705,0.0010400866649424212,0.0010287352828874349,0.0010175280842920657,0.0010064629090015909,0.0009955376350768955,0.0009847501780032182,0.0009740984899180917,0.0009635805588575292,0.0009531944080200468,0.000942938095048276,0.0009328097113271723,0.0009228073812990151,0.0009129292617942941,0.000903173541378235,0.00089353843971249,0.0008840222069317628,0.0008746231230345719,0.0008653394972883106,0.000856169667647824,0.0008471120001873096,0.0008381648885452912,0.0008293267533819641,0.0008205960418490958,0.0008119712270717784,0.0008034508076418604,0.0007950333071228608,0.0007867172735657524,0.0007785012790357509,0.0007703839191495663,0.0007623638126228872,0.16587652025117722,0.16558103911050606,0.16470204566609936,0.16326140100804437,0.16129397121979042,0.15884547328241222,0.1559698188100851,0.15272623399707944,0.14917642235276174,0.14538198979911274,0.14140228421733805,0.13729272904239426,0.13310366551417302,0.12887966831606965,0.12465926723250273,0.12047499197484322,0.11635365506190087,0.11231679441323332,0.10838120918009589,0.10455955867809717,0.10090850462699444,0.09746284123756262,0.09420705869204991,0.09112700518649323,0.0881736294381968,0.0853154087535409,0.0825545648039036,0.07989206287382865,0.07732783833540124,0.07486099485160728,0.0724899756126711,0.07021270959268952,0.06802673517925914,0.06592930366663878,0.0639174650844464,0.06198813871493252,0.06013817047291148,0.05836437911318662,0.056663593010969224,0.05503267904510416,0.05346856490979847,0.051968255993316136,0.05052884779356481,0.049147534691292176,0.047821615771410295,0.04654849827008744,0.045325699128599406,0.04415084505257678,0.04302167140544817,0.0419360202062557,0.040891837452612406,0.03988716994849292,0.038920161782265324,0.037989050571986316,0.037092163571429373,0.03622791371106524,0.0353947956322029,0.034591381759543724,0.0338163184467645,0.03306832222106248,0.03234617614568495,0.03164872631374955,0.03097487848218324,0.03032359485102447,0.029693890990435127,0.02908483291562701,0.028495534308105096,0.02792515388037138,0.027372892880227494,0.02683799273012194,0.02631973279645644,0.02581742828349585,0.02533042824628547,0.024858113716931994,0.024399895938603804,0.02395521470165553,0.023523536776441804,0.023104354437496293,0.02269718407396262,0.022301564881351463,0.021807584186015277,0.021321975041809625,0.02085093936173815,0.02039391790396417,0.01995037735663733,0.019519808954280585,0.0191017271755214,0.018695668517164477,0.01830119033986372,0.017917869780966527,0.017545302730371443,0.01718310286548358,0.016830900741628692,0.016488342934485766,0.016155091231333168,0.01583082186810195,0.015515224809429427,0.01520800306906532,0.01490887206818496,0.014617559029290026,0.014333802403542695,0.014057351329517895,0.013787965121471159,0.013525412785368925,0.013269472561013325,0.013019931488714954,0.012776584999061643,0.012539236524426626,0.012307697130932556,0.012081785169692464,0.011861325946198945,0.011646151406816895,0.011436099841401114,0.011231015601107728,0.011030748830548064,0.010835155213464606,0.010644095731171891,0.010457436433050462,0.010275048218415114,0.01009680662913874,0.009922591652431449,0.009752287533222312,0.009585782595619874,0.009422969072962467,0.009263742945989003,0.009108003788704314,0.008955654621522698,0.008806601771306,0.008660754737935906,0.008518026067071166,0.008378331228776405,0.008241588501711982,0.008107718862601141,0.007976645880703046,0.007848295617039189,0.007722596528126855,0.007599479373999744,0.007478877130295726,0.007360724904210877,0.007244959854129913,0.007131521112746837,0.0070203497135115575,0.006911388520235382,0.006804582159703797,0.006699876957153453,0.006597220874471415,0.006496563450992499,0.0063978557467677605,0.006301050288188878,0.0062061010158573435,0.0061129632345958,0.006021593565497689,0.0059319498999266486,0.005843991355372213,0.005757678233078234,0.005672971977365071,0.005589835136564915,0.005508231325502989,0.005428125189451751,0.0053494823694939546,0.005272269469232,0.005196454022785488,0.0051220044640173795,0.005048890096939588,0.00497708106724354,0.004906548334908686,0.0048372636478431355,0.004769199516510017,0.00470232918950116,0.004636626630015479,0.004572066493204922,0.0045086241043525285,0.004446275437845405,0.004384997096913261,0.0043247662940982205,0.004265560832427157,0.004207359087257348,0.004150139988769356,0.004093883005078305,0.0040385681259421935,0.003984175847040695,0.003930687154802767,0.0038780835117619146,0.0038263468424162175,0.0037754595195760737,0.00372540435117875,0.0036761645675518827,0.0036277238091096593,0.003580066114462792,0.003533175908929057,0.0034870379934273106,0.003441637533741117,0.0033969600501376684,0.003352991407329632,0.0033097178047649485,0.0032671257672350585,0.0032252021357877243,0.0031839340589339803,0.003143308984138812,0.003103314649583565,0.0030639390761924737,0.0030251705599118957,0.0029869976642340136,0.002949409212955786,0.002912394283165539,0.0028759421984473647,0.002840042522297819,0.002804685051745736,0.002769859811168677,0.0027355570462994625,0.0027017672184148273,0.002668480998701723,0.002635689262793771,0.0026033830854723656,0.0025715537355274144,0.0025401926707706826,0.002509291533198602,0.0024788421442979254,0.002448836500490101,0.002419266768709456,0.0023901252821112414,0.002361404535903982,0.0023330971833036363,0.0023051960316043466,0.002277694038362329,0.002250584307689599,0.0022238600866527655,0.0021975147617750955,0.002171541855637233,0.0021459350235739885,0.002120688050463869,0.0020957948476088405,0.002071249449700423,0.0020470460118707356,0.0020231788068247897,0.0019996422220518164,0.001976430757113481,0.001953539021005595,0.001930961729592358,0.0019086937031098635,0.0018867298637371638,0.001865065233232963,0.0018436949306351736,0.0018226141700225047,0.0018018182583353908,0.0017813025932547335,0.0017610626611366835,0.0017410940350020521,0.0017213923725779014,0.0017019534143908673,0.0016827729819098533,0.0016638469757369217,0.0016451713738451642,0.0016267422298614732,0.0016085556713938526,0.0015906078984012873,0.0015728951816051248,0.0015554138609407844,0.0015381603440488471,0.001521131104803686,0.001504322681879529,0.0014877316773521903,0.001471354755335622,0.0014551886406526202,0.0014392301175379743,0.0014234760283740545,0.0014079232724573019,0.001392568804794915,0.0013774096349311465,0.0013624428258017514,0.0013476654926166296,0.001333074801769273,0.0013186679697725192,0.0013044422622198197,0.0012903949927715753,0.0012765235221652235,0.0012628252572492685,0.0012492976500399803,0.0012359381968003998,0.0012227444371411523,0.0012097139531420367,0.0011968443684944687,0.0011841333476637701,0.001171578595070868,0.0011591778542931498,0.0011469289072834055,0.00113482957360705,0.0011228777096967092,0.0011110712081238477,0.0010994079968869416,0.0010878860387160275,0.0010765033303926275,0.0010652579020853526,0.0010541478167003055,0.0010431711692460322,0.0010323260862128434,0.0010216107249656416,0.0010110232731505478,0.0010005619481145314,0.0009902249963378584,0.2023650346658176,0.20200721398676347,0.20094280084310132,0.19919834469923742,0.19681617826562228,0.19385178824604649,0.19037057608308308,0.18644435004259688,0.1821478746857609,0.1775557453075954,0.17273977158868672,0.1677669656570544,0.16269815032340001,0.15758714266578489,0.15248042949763232,0.14741723297558443,0.14242986240525918,0.13754425699971604,0.13278063909998533,0.128155592391916,0.12374927966098506,0.11958864631030804,0.11565525949794443,0.11193238821030918,0.10838485530226294,0.10495011589636605,0.101627664259181,0.09841927855223377,0.09532544378514865,0.09234559083286546,0.08947830436089182,0.08672150158915408,0.08407258437081404,0.08152856731723447,0.07908618475029042,0.07674197917731444,0.07449237381302704,0.07233373145471186,0.07026240177780856,0.06827475887773832,0.06636723065084237,0.06453632139066583,0.06277862877870236,0.06109085627246061,0.05946982173890699,0.057912463046018006,0.05641584120884171,0.05497714158661428,0.0535936735424957,0.05226286890578213,0.05098227951574965,0.0497495740756178,0.04856253450262635,0.04741905192493404,0.04631712244660946,0.04525484277784088,0.04423040580732014,0.04324209617736414,0.04228828590879299,0.041367430111504795,0.0404780628077904,0.03961879288803232,0.03878830021261306,0.037985331869134914,0.03720869859022119,0.03645727133429587,0.03572997802928958,0.035025800477475735,0.03434377141823083,0.033682971744492626,0.033042527867896306,0.03242160922711023,0.03181942593347702,0.031235226547909185,0.030668295982893466,0.030117953523436932,0.02958355096091197,0.029064470833828678,0.02856012476976217,0.028069951922844026,0.02748596222818692,0.026881191725134264,0.026294390798554522,0.025724875688526213,0.02517199408502297,0.024635123464512066,0.02411366952324369,0.023607064701393232,0.023114766792499148,0.02263625763300308,0.022171041867006122,0.021718645781628774,0.02127861620868575,0.020850519488612114,0.02043394049285249,0.02002848170115248,0.019633762330426702,0.019249417512059497,0.01887509751473604,0.01851046701004184,0.01815520437826951,0.017809001052030184,0.017471560895400993,0.017142599616517006,0.01682184421161385,0.016509032438674354,0.016203912318939837,0.015906241664664925,0.015615787631575489,0.015332326294618403,0.015055642245648693,0.014785528211800165,0.014521784693364332,0.014264219620059039,0.014012648024662603,0.01376689173302806,0.013526779069564608,0.013292144577330134,0.013062828751917248,0.012838677788385962,0.01261954334052076,0.012405282291744299,0.012195756537055383,0.01199083277540201,0.011790382311921373,0.011594280869532665,0.01140240840937961,0.011214648959658489,0.011030890452395773,0.010851024567752325,0.010674946585476252,0.010502555243126259,0.010333752600723422,0.010168443911501651,0.010006537498451209,0.009847944636356031,0.00969257943905869,0.009540358751685766,0.00939120204758977,0.009245031329777192,0.009101771036596696,0.008961347951487614,0.008823691116585857,0.008688731750003436,0.008556403166606575,0.008426640702120802,0.008299381640411729,0.008174565143786653,0.008052132186177015,0.007932025489066696,0.007814189460040748,0.0076985701338281925,0.0075851151157310965,0.007473773527326127,0.007364495954336571,0.007257234396578288,0.007151942219882126,0.007048574109909788,0.006947086027774747,0.006847435167390073,0.006749579914466496,0.006653479807089851,0.0065590954978052745,0.006466388717147978,0.006375322238554334,0.006285859844595189,0.006197966294476309,0.0061116072927484034,0.006026749459180429,0.00594336029974353,0.0058614081786606724,0.005780862291478277,0.005701692639114493,0.005623870002848047,0.0055473659202060375,0.005472152661715048,0.005398203208480142,0.0053254912305596615,0.0052539910661005855,0.005183677701208105,0.005114526750517173,0.005046514438439257,0.004979617581058409,0.004913813568648562,0.0048490803487914284,0.004785396410068729,0.004722740766307678,0.0046610929413591455,0.004600432954385399,0.004540741305641635,0.004481998962729803,0.004424187347307861,0.004367288322237174,0.004311284179152463,0.004256157626436114,0.004201891777585129,0.004148470139953859,0.00409587660385927,0.0040440954320365,0.003993111249429459,0.003942909033307484,0.0038934741036938296,0.0038447921140958756,0.003796849042525835,0.0037496311828024475,0.003703125136121679,0.00365731780288958,0.0036121963748061117,0.0035677483271917684,0.0035239614115491692,0.003480823648349638,0.003438323320039373,0.003396448964255858,0.0033551893672479237,0.003314533557493079,0.003274470799503637,0.003234990587817565,0.0031960826411661625,0.003157736896813243,0.003119943505059845,0.0030826928239097223,0.0030459754138885847,0.0030097820330141543,0.0029741036319104693,0.0029389313490623147,0.0029042565062056733,0.0028700706038481917,0.0028363653169175855,0.0028031324905322904,0.002770364135891064,0.0027380524262774807,0.0027061896931762693,0.002674768422496641,0.0026437812509008483,0.0026132209622335223,0.0025830804840489257,0.0025533528842336035,0.002524031367720102,0.002495109273290662,0.002466580070466855,0.0024384373564829507,0.002410674853340779,0.00238328640494252,0.002356265974300508,0.0023296076408207,0.002303305597657823,0.002277354149140164,0.00225174770826216,0.0022264807942417265,0.0022015480301418905,0.002176944140553733,0.002152663949339091,0.0021287023774318003,0.0021050544406945315,0.0020817152478310964,0.002058679998351576,0.0020359439805890593,0.002013502569766493,0.00199135122611249,0.001969485493023803,0.0019479009952743677,0.0019265934372686075,0.0019055586013381686,0.0018847923460810507,0.0018642906047410836,0.0018440493836278213,0.001824064760574803,0.0018043328834354817,0.0017848499686158974,0.0017656122996424655,0.0017466162257648216,0.0017278581605920315,0.0017093345807615559,0.0016910420246400127,0.001672977091055095,0.001655136438057108,0.0016375167817103207,0.0016201148949125698,0.0016029276062425842,0.0015859517988345818,0.0015691844092786602,0.0015526224265472292,0.00153626289094615,0.0015201028930900955,0.0015041395729017604,0.0014883701186336152,0.0014727917659124858,0.001457401796805759,0.0014421975389088241,0.0014271763644532138,0.0014123356894350863,0.001397672972762928,0.0013831857154248453,0.001368871459674268,0.0013547277882338337,0.0013407523235172076,0.001326942726867734,0.001313296697814355,0.0012998119733437167,0.0012864863271883002,0.18316822310211953,0.18295808270200026,0.18233115252705145,0.1812977533030087,0.1798745910253965,0.17808405662646098,0.1759533247492831,0.17351331860068836,0.1707976120357976,0.16784133679117005,0.16468015353441845,0.16134933217215036,0.1578829718648904,0.15431337642581008,0.15067058774018646,0.14698206945621475,0.14327252582859185,0.13956383615496368,0.1358750833415123,0.13222265522066828,0.12862039873737374,0.12507980948093733,0.12161024182235641,0.11821912778238554,0.11491481728815182,0.11174581074421512,0.10872148265965775,0.10583280164752079,0.10307144081224336,0.10042746925267826,0.09786114721582273,0.09536148246128517,0.09292968361383612,0.09056638773826348,0.08827174444225719,0.08604549149689539,0.08388702224875602,0.08179544525240502,0.07976963665004182,0.07780828587967342,0.07590993531441055,0.07407301443291057,0.0722958691013904,0.07057678651663477,0.06891401632174411,0.06730578836462206,0.065750327526482,0.06424586600518736,0.06279065339732852,0.06138296488455666,0.06002110779382482,0.05870342676854789,0.05742830775799847,0.05619418100560317,0.05499952319294528,0.05384285887527916,0.052722761325601844,0.05163785288803247,0.05058680492689758,0.04956833744538172,0.048581218436821595,0.047624263022185524,0.04669633241921005,0.045796332781592584,0.04492321394055695,0.0440759680759729,0.04325362833966383,0.042455267449762135,0.04167999627169687,0.04092696239861787,0.04019534874165919,0.03948437213850789,0.038793281986959555,0.038121358908758535,0.037467913447796194,0.03683228480569885,0.036213839617037634,0.03561197076563222,0.03502092531658377,0.03427202226356667,0.033544435083714456,0.032837403170203186,0.03215019766668641,0.03148212002773866,0.030832500642652867,0.0302006975207384,0.029586095036103034,0.028988102729892582,0.028406154167846205,0.027839705851036012,0.027288236177666746,0.0267512444537813,0.026228249950813496,0.02571879100790844,0.025222424177016037,0.024738723408803096,0.024267279277501982,0.02380769824285054,0.02335960194738771,0.02292262654739206,0.02249642207584267,0.022080651835852817,0.021674991823062324,0.02127913017559217,0.020892766650177107,0.020515612123189437,0.020147388115311863,0.01978782633868797,0.01943666826541468,0.019093664716329287,0.018758575469063368,0.01843116888440564,0.018111221550062218,0.01779851794093385,0.0174928500951027,0.01719401730473359,0.016901825821151305,0.016616088573394767,0.01633662489956757,0.016063260290367795,0.015795826144184334,0.015534159533196023,0.015278102979930364,0.015027504243775407,0.014782216116948221,0.014542096229473604,0.014307006862725853,0.014076814771123193,0.01385139101158559,0.013630610780373262,0.013414353256966187,0.013202501454639153,0.012994942077418518,0.012791565383117936,0.012592265052169834,0.012396938061972266,0.012205484566504837,0.012017807780960043,0.011833813871160294,0.011653411847542448,0.011476513463492021,0.01130303311783854,0.011132887761314342,0.010965996806799893,0.010802282043186654,0.010641667552687951,0.010484079631452417,0.010329446713325894,0.01017769929662513,0.010028769873788559,0.009882592863780702,0.009739104547122918,0.009598243003444506,0.009459948051438264,0.009324161191118873,0.009190825548286687,0.00905988582109693,0.008931288228652027,0.008804980461525252,0.008680911634136944,0.008559032238903749,0.008439294102089568,0.008321650341281408,0.008206055324430013,0.00809246463038502,0.007980835010865566,0.00787112435380828,0.007763291648032446,0.007657296949174861,0.0075531013468384,0.007450666932907109,0.007349956770982536,0.007250934866892269,0.007153566140233761,0.00705781639690851,0.0069636523026090505,0.006871041357221059,0.0067799518701064454,0.0066903529362294135,0.006602214413097778,0.006515506898484742,0.006430201708902269,0.006346270858798583,0.006263687040448721,0.00618242360451695,0.006102454541261761,0.006023754462360859,0.005946298583334164,0.005870062706538964,0.005795023204720799,0.005721157005096188,0.00564844157394885,0.00557685490172058,0.00550637548857971,0.005436982330446994,0.005368654905466399,0.005301373160901782,0.005235117500445359,0.005169868771924144,0.005105608255387386,0.005042317651565515,0.0049799790706844035,0.004918575021624011,0.004858088401408649,0.00479850248501876,0.004739800915510227,0.0046819676944342544,0.004624987172544747,0.004568844040784508,0.004513523321541244,0.004459010360162172,0.004405290816721365,0.004352350658029216,0.00430017614987663,0.0042487538495067576,0.0041980705983047035,0.004148113514700758,0.004098869987278026,0.004050327668078612,0.00400247446610151,0.003955298540986943,0.003908788296878871,0.0038629323764628374,0.003817719655171231,0.003773139235551576,0.003729180441793004,0.0036858328144042233,0.0036430861050404328,0.0036009302714729114,0.003559355472697318,0.0035183520641761516,0.003477910593212043,0.00343802179444583,0.003398676585478127,0.003359866062608605,0.0033215814966901162,0.003283814329094632,0.00324655616778598,0.003209798783498223,0.003173534106014954,0.0031377542205470077,0.003102451364206031,0.003067617922569643,0.003033246426337439,0.002999329548073562,0.0029658600990339723,0.002932831026075691,0.002900235408646129,0.002868066455848829,0.0028363175035852096,0.0028049820117686643,0.002774053561609529,0.0027435258529691425,0.002713392701779769,0.0026836480375303172,0.002654285900814507,0.002625300440940379,0.002596685913599153,0.002568436678592258,0.0025405471976137333,0.0025130120320879874,0.0024858258410601717,0.002458983379138192,0.0024324794944851668,0.0024063091268599276,0.0023804673057056087,0.0023549491482840555,0.0023297498578549614,0.0023048647218990572,0.002280289110382969,0.0022560184740660575,0.0022320483428470905,0.0022083743241500206,0.0021849921013477225,0.00216189743222314,0.002139086147465661,0.0021165541492033438,0.002094297409568867,0.002072311969298726,0.0020505939363651094,0.0020291394846386752,0.0020079448525825746,0.001987006341976101,0.00196632031666742,0.0019458832013549495,0.0019256914803957674,0.0019057416966415193,0.0018860304503002428,0.0018665543978238037,0.001847310250820167,0.0018282947749901936,0.0018095047890875479,0.0017909371639022145,0.0017725888212661728,0.0017544567330810123,0.0017365379203671395,0.0017188294523333304,0.0017013284454670348,0.001684032062644299,0.0016669375122590037,0.18427529444305865,0.1840651729438164,0.18343831448877623,0.18240508312019382,0.18098225149172578,0.17919229305261192,0.17706247182765283,0.1746237979113805,0.17190992091917087,0.16895603018662206,0.1657978209468884,0.16247057214716445,0.15900836626199674,0.15544346645230833,0.15180585323421883,0.1481229123812736,0.1444192584346589,0.14071667382678965,0.13703414181908768,0.1333879516487402,0.12979185587201225,0.12625726233591608,0.12279344605609564,0.11940776918739952,0.11611173737839574,0.1129557901239057,0.10994287104640882,0.1070640928344942,0.10431125916034541,0.10167680098120699,0.09913717621063484,0.09666118929994696,0.09424973759268612,0.0919037375952077,0.08962360213002243,0.08740931544334275,0.08526050053264421,0.08317647901995837,0.08115632401243558,0.07919890646191766,0.07730293557033104,0.07546699379671615,0.07368956701199782,0.07196907032469234,0.07030387006968393,0.06869230241584993,0.06713268900979254,0.06562335003388191,0.06416261501844213,0.06274883171155836,0.061380373275605644,0.06005564404804506,0.058773084075129975,0.057531172601077575,0.056328430671735825,0.0551634229909944,0.05403475914953055,0.05294109432920518,0.05188112957203582,0.050853611690045784,0.04985733288140618,0.04889113010863395,0.047953884286372254,0.04704451931910417,0.04616200102289948,0.04530533596002653,0.04447357021059486,0.04366578810147106,0.04288111090933229,0.04211869555182539,0.0413777332782886,0.040657448369469586,0.03995709685379132,0.03927596524626215,0.03861336931481635,0.03796865287777349,0.037341186635236584,0.036730367036432884,0.03613561518439702,0.035412192247034596,0.034669535360647236,0.03394763784388311,0.03324577084776989,0.032563235498679205,0.03189936155888194,0.031253506145108315,0.030625052503431855,0.030013408838747115,0.02941800719696759,0.028838302398062038,0.02827377101801577,0.027723910417770985,0.027188237817261943,0.026666289412632275,0.026157619534783086,0.025661799847434184,0.025178418582938955,0.024707079814109585,0.024247402760426685,0.02379902112700155,0.02336158247475823,0.02293474762035571,0.02251819006440701,0.022111595446655318,0.021714661026783585,0.02132709518961567,0.020948616973516875,0.020578955620861556,0.020217850149469634,0.01986504894400159,0.01952030936631277,0.019183397383837265,0.018854087215118564,0.018532160991626776,0.018217408435078766,0.017909626549483495,0.017608619327194052,0.0173141974682819,0.017026178112567354,0.016744384583704176,0.016468646144716093,0.01619879776443325,0.015934679894295534,0.015676138255026235,0.015423023632686036,0.015175191683670661,0.014932502748211089,0.01469482167197213,0.014462017635365981,0.014233963990203703,0.014010538103349447,0.013791621207036104,0.013577098255533451,0.013366857787868232,0.013160791796317482,0.012958795600397343,0.012760767726103277,0.012566609790151438,0.012376226388992877,0.012189524992384935,0.012006415841303533,0.011826811850009682,0.011650628512073945,0.011477783810183455,0.011308198129563575,0.011141794174845386,0.01097849689023566,0.01081823338283507,0.010660932848969105,0.010506526503397728,0.010354947511281357,0.010206130922775584,0.010060013610149816,0.009916534207314457,0.009775633051654785,0.009637252128075154,0.009501335015153415,0.009367826833323519,0.009236674194995069,0.00910782515653039,0.00898122917200289,0.008856837048657364,0.008734600904008483,0.00861447412450481,0.008496411325695662,0.008380368313839155,0.008266302048894239,0.008154170608835592,0.008043933155245125,0.007935549900122942,0.007828982073871438,0.007724191894406663,0.007621142537348104,0.0075197981072498915,0.007420123609828499,0.007322084925149225,0.007225648781733767,0.007130782731554668,0.007037455125878531,0.0069456350919302355,0.006855292510343371,0.006766397993367595,0.0066789228638059845,0.006592839134650529,0.006508119489394863,0.006424737262994961,0.006342666423455112,0.006261881554015398,0.006182357835920073,0.00610407103174169,0.006026997469245289,0.0059511140257696455,0.005876398113107619,0.0058028276628689195,0.00573038111230452,0.005659037390580282,0.005588775905480979,0.005519576530529873,0.0054514195925105995,0.005384285859373984,0.0053181565285201375,0.0052530132154398656,0.0051888379427039695,0.005125613129288118,0.005063321580222507,0.005001946476552711,0.004941471365604473,0.004881880151539412,0.004823157086192655,0.004765286760183733,0.0047082540942888565,0.004652044331069319,0.004596643026744846,0.00454203604330455,0.004488209540848491,0.0044351499701497,0.004382844065432751,0.004331278837359209,0.004280441566214266,0.004230319795287796,0.004180901324444075,0.004132174203872329,0.004084126728014892,0.00403674742966518,0.0039900250742308414,0.003943948654157455,0.0038985073835057925,0.003853690692680194,0.0038094882233017,0.003765889823221835,0.0037228855416726924,0.0036804656245496034,0.0036386205098206223,0.003597340823061244,0.0035566173731087186,0.0035164411478329875,0.0034768033100210337,0.003437695193369868,0.0033991082985866824,0.003361034289591665,0.0033234649898205982,0.0032863923786251147,0.003249808587765823,0.0032137058979978543,0.0031780767357444083,0.003142913669856372,0.003108209408455309,0.0030739567958578645,0.0030401488095779176,0.003006778557405915,0.002973839274562036,0.002941324320921185,0.002909227178308463,0.002877541447861635,0.0028462608474604206,0.002815379209219585,0.0027848904770442075,0.002754788704245578,0.002725068051216229,0.002695722783161305,0.0026667472678863972,0.002638135973638936,0.002609883467002151,0.0025819844108404557,0.002554433562293737,0.0025272257708207216,0.002500355976288927,0.0024738192071103223,0.0024476105784217665,0.002421725290308007,0.002396158626067435,0.002370905950518486,0.0023459627083458907,0.0023213244224856663,0.002296986692548202,0.0022729451932773717,0.0022491956730461247,0.002225733952386553,0.0022025559225538516,0.002179657544123645,0.0021570348456207886,0.0021346839221801765,0.002112600934237671,0.002090782106250885,0.0020692237254487573,0.002047922140609716,0.002026873760866667,0.0020060750545393643,0.0019855225479925892,0.0019652128245197776,0.0019451425232516323,0.001925308338088469,0.00190570701665654,0.0018863353592871188,0.0018671902180179784,0.001848268495616904,0.001829567144626029,0.001811083166427412,0.0017928136103286256,0.0017747555726681204,0.18551901216067068,0.1853085223465329,0.18468058547496122,0.1836456426880608,0.18222058719049547,0.18042804561488535,0.17829545465305915,0.17585400263108253,0.17313750976977782,0.17018131715140558,0.16702124444745986,0.16369266244662925,0.1602297107052599,0.15666467531070266,0.15302752835617325,0.14934562019463898,0.14564350819641517,0.14194290144189803,0.13826269909123984,0.13461910049581877,0.13102576683223682,0.12749401659009232,0.12403304017381818,0.12065012184678851,0.11736255835875557,0.11421957605007485,0.1112179723261163,0.10834900370079599,0.10560460419193368,0.10297732303564391,0.10045741362905179,0.09800709947950793,0.09561774725620316,0.09329057353675102,0.09102627404191628,0.08882509809250302,0.08668691576902804,0.08461127798597877,0.0825974698271874,0.0806445575764569,0.07875142992747702,0.07691683387920364,0.07513940582390065,0.07341769832128489,0.07175020302857005,0.07013537022581794,0.06857162534233666,0.0670573828545546,0.06559105789041789,0.06417107584123496,0.0627958802492219,0.06146393920874148,0.060173750491195076,0.05892384557809677,0.05771279276372833,0.056539199468268055,0.055401713883733654,0.05429902605884683,0.05322986851450068,0.05219301646880777,0.051187287739693485,0.05021154238323006,0.04926468211750185,0.04834564957448121,0.04745342741596733,0.04658703734424717,0.04574553903329914,0.04492802900231272,0.04413363944978874,0.043361537063452624,0.04261092181860054,0.041881025775366,0.04117111188341011,0.040480472800995655,0.03980842973402436,0.0391543312994251,0.03851755241636281,0.03789749322784891,0.03729357805467767,0.036609092831513125,0.035850720578036954,0.03511332001391939,0.034396162313949034,0.033698548274248244,0.033019807011880134,0.03235929471872258,0.03171639346827801,0.031090510074014997,0.030481074997657814,0.029887541305805877,0.029309383673204716,0.028746097430939466,0.02819719765785905,0.027662218313492786,0.027140711410768795,0.02663224622685691,0.02613640855050721,0.025652799964260453,0.025181037160005696,0.024720751286354717,0.02427158732638432,0.023833203504346256,0.023405270719974253,0.022987472009112702,0.022579502029400386,0.022181066569825388,0.021791882083001486,0.021411675239083133,0.021040182500257923,0.02067714971484229,0.020322331730016355,0.01997549202229643,0.019636402344889753,0.019304842391097334,0.018980599473001864,0.01866346821468543,0.018353250259276373,0.01804975398915647,0.01775279425868119,0.017462192138821175,0.01717777467313853,0.016899374644555556,0.016626830352395306,0.01635998539920521,0.016098688486883835,0.015842793221682167,0.015592157927644157,0.015346645468091221,0.015106123074770996,0.014870462184300772,0.014639538281574058,0.014413230749794064,0.014191422726829443,0.013974000967595025,0.013760855712182846,0.013551880559467936,0.013346972345948921,0.013146031029574269,0.012948959578329288,0.012755663863369756,0.012566052556487881,0.012380037031726005,0.0121975312709426,0.012018451773157478,0.011842717467508427,0.011670249629653037,0.011500971801472047,0.011334809713921387,0.0111716912128987,0.011011546187990478,0.010854306503977956,0.010699905934975409,0.010548280101096104,0.01039936640753091,0.010253103985938549,0.010109433638050976,0.009968297781394185,0.009829640397043258,0.009693406979319762,0.00955954448735272,0.009428001298427365,0.009298727163041616,0.009171673161607607,0.00904679166272502,0.00892403628296383,0.008803361848094894,0.008684724355710993,0.00856808093917764,0.008453389832866792,0.008340610338616964,0.00822970279337281,0.008120628537958691,0.008013349886936945,0.007907830099514417,0.0078040333514515095,0.007701924707936404,0.00760147009738681,0.007502636286144701,0.007405390854025676,0.007309702170695692,0.007215539372839744,0.007122872342093312,0.0070316716837095705,0.006941908705930407,0.0068535554000402595,0.006766584421073297,0.00668096906915127,0.006596683271428326,0.00651370156462152,0.006431999078102475,0.006351551517533963,0.0062723351490284115,0.006194326783810299,0.006117503763365784,0.006041843945058288,0.0059673256881982075,0.005893927840546981,0.005821629725241417,0.005750411128124342,0.005680252285464325,0.005611133872054823,0.005543036989676538,0.0054759431559116035,0.005409834293297021,0.005344692718806756,0.005280501133648495,0.005217242613368001,0.005154900598247796,0.005093458883991244,0.005032901612683087,0.004973213264014703,0.004914378646768673,0.00485638289055131,0.004799211437765908,0.004742850035819465,0.004687284729552935,0.004632501853890596,0.004578488026699326,0.004525230141851608,0.004472715362485615,0.0044209311144566155,0.004369865079971637,0.004319505191404235,0.004269839625281509,0.004220856796438643,0.004172545352336302,0.004124894167533736,0.0040778923383153805,0.00403152917746415,0.003985794209177691,0.003940677164122771,0.0038961679746244704,0.0038522567699839205,0.00380893387192339,0.0037661897901527107,0.003724015218054141,0.0036824010284826018,0.0036413382696759886,0.0036008181612746703,0.0035608320904450715,0.0035213716081048466,0.003482428425247158,0.0034439944093594696,0.003406061580936218,0.003368622110081047,0.003331668313196501,0.003295192649758486,0.003259187719173655,0.003223646257715714,0.003188561135540438,0.0031539253537756166,0.0031197320416842546,0.003085974453899405,0.0030526459677271724,0.0030197400805179074,0.0029872504071020664,0.0029551706772896853,0.002923494733431344,0.002892216528039506,0.002861330121467203,0.002830829679644166,0.002800709471867635,0.0027709638686466112,0.0027415873395986233,0.002712574451396226,0.0026839198657635783,0.0026556183375205135,0.002627664712673129,0.0026000539265501475,0.0025727810019825657,0.0025458410475269564,0.002519229255730226,0.002492940901434985,0.002466971340124466,0.002441316006306295,0.0024159704119330206,0.002390930144859855,0.0023661908673376125,0.002341748314540249,0.0023175982931264126,0.0022937366798331887,0.0022701594201024492,0.002246862526738043,0.0022238420785933815,0.0022010942192884873,0.0021786151559562345,0.0021564011580159454,0.002134448555975021,0.002112753740256919,0.0020913131600550647,0.0020701233222124474,0.002049180790125277,0.0020284821826713237,0.002008024173161435,0.001987803488313889,0.0019678169072514682,0.0019480612605195682,0.0019285334291262598,0.0019092303436026496,0.0018901489830835826,0.18691578743240875,0.18670448636222312,0.18607415561119905,0.18503535261639506,0.18360515360703775,0.1818064202141157,0.17966685806203994,0.17721793907327013,0.17449376321437887,0.1715299313513331,0.16836249040230528,0.1650269973839372,0.161557732694728,0.15798707722258415,0.15434505419276454,0.15065902600995323,0.14695352899791062,0.1432502247296565,0.1395679450870112,0.1359228086672049,0.13232838802240263,0.12879590990130702,0.125334473697268,0.12195127635293734,0.11867239498545536,0.11554087194198363,0.11254920015779034,0.10968876869710377,0.10695163179612609,0.10433044786169747,0.1018184248706323,0.09939534543898915,0.09703034765183502,0.09472399866956488,0.09247729798619118,0.09029078000709445,0.08816458088694183,0.08609849870716087,0.08409204723352207,0.08214450360060353,0.08025495033625274,0.07842231217553128,0.07664538812684794,0.07492287924932352,0.07325341258513267,0.0716355616670464,0.07006786399314888,0.06854883582973684,0.06707698467144217,0.0656508196560957,0.06426886020118332,0.06292964309994586,0.06163172828824827,0.06037370346864495,0.0591541877554614,0.05797183448452458,0.056825333312787975,0.055713411716930894,0.05463483598557956,0.053588411786991516,0.052572984382957065,0.051587438549724605,0.05063069825822446,0.04970172615837641,0.048799522905673014,0.04792312636269017,0.04707161070315088,0.04624408544200563,0.045439694411301225,0.04465761469847996,0.043897055560987754,0.04315725732883073,0.042437490304635374,0.041737053669110596,0.041055274398361014,0.04039150619819891,0.03974512845964646,0.039115545238825516,0.03850218426374402,0.03786593525054735,0.03709118531089604,0.03633762677919628,0.03560453095898588,0.0348911983951203,0.03419695761538157,0.03352116392230271,0.03286319823426686,0.032222465974829355,0.03159839600899641,0.030990439625122414,0.03039806956101342,0.029820779072731844,0.02925808104462887,0.028709507139049597,0.02817460698419467,0.027652947398617015,0.02714411165086242,0.026647698752759484,0.02616332278494563,0.02569061225320846,0.025229209474279698,0.02477876998977359,0.02433896200697155,0.02390946586525034,0.02348997352694988,0.02308018809155151,0.022679823332075043,0.022288603252652025,0.021906261666262142,0.021532541791695795,0.02116719586881222,0.02080998479122786,0.020460677755604978,0.020119051926733886,0.019784892117671753,0.019457990484202263,0.01913814623293557,0.018825165342400488,0.018518860296493862,0.01821904982971406,0.01792555868360356,0.017638217373872087,0.01735686196768901,0.017081333870669072,0.016811479623078614,0.016547150704842892,0.016288203348928172,0.016034498362707768,0.015785900956941858,0.015542280582003808,0.015303510771029899,0.015069468989659376,0.014840036492064432,0.014615098182977796,0.01439454248544594,0.014178261214035795,0.013966149453258572,0.013758105440963649,0.013554030456479814,0.013353828713292912,0.013157407256046656,0.012964675861683983,0.012775546944536005,0.012589935465185222,0.01240775884293873,0.012228936871744074,0.012053391639407014,0.011881047449958462,0.01171183074903705,0.011545670052154898,0.01138249587572487,0.011222240670723884,0.011064838758887679,0.010910226271322966,0.010758341089436126,0.010609122788082364,0.010462512580835841,0.010318453267299774,0.010176889182365458,0.010037766147341028,0.009901031422872669,0.009766633663585359,0.009634522874368317,0.009504650368244319,0.00937696872575328,0.009251431755790818,0.009127994457844273,0.009006612985565427,0.00888724461163303,0.008769847693848597,0.00865438164241869,0.008540806888377894,0.00842908485310338,0.00831917791888438,0.00821104940050088,0.00810466351777417,0.007999985369051355,0.007896980905589263,0.007795616906799313,0.007695860956326353,0.0075976814189249705,0.007501047418105336,0.00740592881452039,0.007312296185062783,0.007220120802650413,0.007129374616671144,0.007040030234063382,0.006952060901010511,0.0068654404852229655,0.006780143458791304,0.006696144881586073,0.006613420385185754,0.006531946157313731,0.0064516989267669154,0.006372655948815562,0.006294794991061469,0.006218094319735496,0.006142532686419462,0.006068089315179073,0.005994743890089983,0.005922476543147592,0.005851267842544169,0.00578109878130178,0.005711950766248439,0.005643805607326783,0.005576645507221035,0.005510453051295495,0.005445211197830702,0.005380903268548681,0.005317512939418007,0.005255024231727005,0.005193421503419461,0.00513268944068157,0.0050728130497727794,0.0050137776490930775,0.004955568861476854,0.0048981726067088465,0.00484157509425281,0.004785762816186694,0.004730722540337691,0.0046764413036112585,0.004622906405505984,0.004570105401811112,0.0045180260984788575,0.004466656545666604,0.004415985031944393,0.004366000078660426,0.004316690434462309,0.004268045069967295,0.004220053172577516,0.004172704141435604,0.0041259875825171224,0.0040798933038535615,0.004034411310884665,0.003989531801934036,0.003945245163805066,0.0039015419674940945,0.003858412964015399,0.003815849080337194,0.003773841415423409,0.00373238123637868,0.0036914599746942314,0.003651069222589715,0.003611200729450645,0.003571846398356802,0.0035329982826996825,0.003494648582886148,0.003456789643126461,0.0034194139483025906,0.003382514120916628,0.0033460829181155027,0.0033101132287901504,0.0032745980707477892,0.0032395305879534073,0.0032049040478407606,0.0031707118386892666,0.0031369474670656303,0.003103604555328109,0.003070676839192269,0.0030381581653551913,0.003006042489178226,0.0029743238724253746,0.0029429964810562532,0.002912054583072501,0.002881492546414877,0.002851304836911502,0.0028214860162743874,0.0027920307401435103,0.0027629337561775303,0.0027341899021885918,0.0027057941043217926,0.0026777413752767697,0.0026500268125708554,0.002622645596842525,0.002595592990194512,0.0025688643345743866,0.0025424550501931993,0.002516360633979963,0.002490576658071518,0.0024650987683371116,0.0024399226829358313,0.0024150441909073215,0.0023904591507940575,0.0023661634892945017,0.0023421531999468707,0.0023184243418416274,0.002294973038363296,0.0022717954759599365,0.0022488879029398884,0.002226246628295028,0.0022038680205502302,0.0021817485066374146,0.002159884570794857,0.00213827275349015,0.002116909650366643,0.0020957919112128878,0.0020749162389538368,0.002054279388664321,0.0020338781666034175,0.0020137094292695004,0.18848473052732004,0.18827210763406024,0.1876378669785862,0.18659272825923623,0.18515402392462896,0.1833449463214371,0.18119358241516234,0.17873181046805825,0.17599413697756627,0.17301654769022698,0.16983543537448426,0.1664866517100856,0.16300471371455305,0.15942217882464277,0.15576918871745182,0.15207317111564062,0.14835868145089653,0.14464736214371884,0.14095799586539298,0.13730662981714087,0.13370675011677863,0.13016948823170857,0.12670384456564163,0.12331691745109859,0.12004733369380545,0.11692542467076952,0.11394198544418102,0.11108852446057983,0.10835720432977354,0.10574078196071769,0.10323255496637139,0.10082566168285328,0.09848774730600444,0.09620465466034368,0.09397770985280192,0.0918077545271097,0.08969521215060679,0.08764014813624212,0.08564232392158613,0.08370124525275811,0.08181620500556734,0.079986320928219,0.0782105687166521,0.07648781084134587,0.07481682153855544,0.07319630836323905,0.07162493067889746,0.07010131543367198,0.06862407054399391,0.06719179617862935,0.06580309420767914,0.06445657605404495,0.06315086915925874,0.06188462225180582,0.060656509584114615,0.059465234284600293,0.05830953095302893,0.057188167611390145,0.05609994710806493,0.055043708060224,0.05401832540817317,0.05302271064530676,0.052055811778622084,0.05111661306709143,0.05020413457843387,0.04931743159909059,0.04845559392703212,0.04761774507269288,0.04680304138947861,0.046010671152016264,0.04523985359742633,0.044489837942513,0.04375990238758529,0.043049353115849245,0.042357523295755255,0.041683772092317155,0.041027483692350875,0.0403880663475407,0.03976495143846459,0.03915759256198799,0.03839588377975748,0.0376254548247694,0.036875716373852875,0.03614596884344285,0.03543554026584276,0.03474378512224743,0.034070083221049284,0.033413838620755934,0.032774478596601826,0.03215145264982942,0.03154423155850882,0.030952306468647602,0.0303751880243444,0.02981240553564126,0.029263506182746816,0.028728054255274606,0.02820563042516243,0.027695831051913148,0.02719826751887287,0.026712565599232494,0.026238364850500216,0.02577531803622287,0.025323090573744596,0.024881360006876987,0.0244498155023425,0.024028157368928615,0.02361609659831201,0.023213354426567984,0.022819661915392593,0.022434759552146067,0.02205839686782487,0.021690332072129507,0.02133033170483372,0.020978170302672444,0.020633630081041052,0.02029650062979163,0.019966578622468697,0.01964366753835463,0.01932757739670747,0.019018124502635715,0.01871513120404782,0.01841842565916187,0.018127841614076504,0.017843218189938437,0.01756439967924186,0.017291235350853116,0.01702357926333744,0.016761290086209878,0.016504230928742824,0.01625226917597156,0.016005276331579117,0.015763127867333276,0.01552570307877915,0.015292884946900072,0.015064560005478109,0.014840618213885708,0.014620952835075307,0.014405460318522294,0.01419404018790213,0.013986594933291886,0.013783029907685873,0.0135832532276445,0.01338717567788449,0.013194710619639905,0.013005773902630002,0.012820283780468258,0.012638160829373057,0.012459327870028025,0.012283709892459938,0.012111233983801529,0.011941829258819599,0.01177542679308206,0.011611959558661702,0.011451362362261125,0.011293571785659973,0.011138526128388383,0.010986165352526578,0.010836431029551343,0.01068926628913745,0.010544615769835852,0.010402425571550434,0.010262643209742248,0.010125217571284418,0.00999009887190887,0.009857238615174268,0.009726589552896034,0.009598105646981325,0.009471742032607788,0.009347454982699519,0.009225201873643663,0.009104941152200233,0.00898663230356045,0.008870235820503294,0.008755713173614147,0.008643026782519719,0.008532139988101777,0.008423017025651347,0.008315622998929498,0.008209923855095521,0.008105886360475307,0.008003478077134366,0.007902667340226127,0.007803423236088021,0.0077057155810535925,0.007609514900959078,0.007514792411315195,0.00742151999812053,0.007329670199294665,0.0072392161867044225,0.007150131748766601,0.007062391273603005,0.0069759697327288015,0.006890842665255033,0.006806986162588041,0.006724376853604759,0.0066429918902916425,0.0065628089338272706,0.0064838061410943905,0.006405962151607392,0.006329256074837208,0.006253667477924722,0.00617917637376547,0.006105763209454476,0.006033408855078313,0.005962094592843777,0.005891802106528867,0.005822513471248746,0.005754211143523599,0.005686877951638873,0.00562049708628912,0.005555052091493346,0.005490526855776335,0.00542690560360465,0.005364172887069526,0.0053023135778097735,0.0052413128591639714,0.005181156218548182,0.005121829440048955,0.005063318597226175,0.005005610046118236,0.00494869041844426,0.004892546614994646,0.004837165799207107,0.004782535390919969,0.004728643060297872,0.0046754767219254504,0.004623024529061043,0.004571274868048885,0.0045202163528823835,0.0044698378199147385,0.004420128322712067,0.004371077127045548,0.004322673706016228,0.004274907735311141,0.004227769088584836,0.004181247832963048,0.004135334224665647,0.004090018704743133,0.00404529189492612,0.004001144593582276,0.003957567771778305,0.00391455256944443,0.0038720902916365902,0.0038301724048957807,0.0037887905337000327,0.0037479364570069318,0.0037076021048838893,0.003667779555224273,0.00362846103054526,0.003589638894867226,0.003551305650670793,0.0035134539359297774,0.0034760765212184133,0.0034391663068892497,0.0034027163203217436,0.0033667197132379507,0.003331169759084233,0.0032960598504767763,0.0032613834967097533,0.003227134321323005,0.0031933060597294804,0.003159892556899355,0.0031268877650997133,0.0030942857416888297,0.0030620806469621046,0.0030302667420500674,0.0029988383868657675,0.0029677900381005627,0.0029371162472674964,0.0029068116587897073,0.0028768710081343305,0.0028472891199894505,0.0028180609064834355,0.002789181365445395,0.002760645578706144,0.002732448710437413,0.002704586005529878,0.0026770527880078418,0.002649844459480019,0.002622956497625774,0.0025963844547148606,0.0025701239561613308,0.0025441706991094553,0.0025185204510513232,0.0024931690484757754,0.002468112395546486,0.002443346462810278,0.0024188672859334717,0.0023946709644662523,0.0023707536606340867,0.002347111598155944,0.0023237410610876474,0.002300638392691056,0.0022777999943274737,0.0022552223243749937,0.002232901897169463,0.0022108352819676315,0.002189019101933139,0.0021674500331438427,0.002146124803620339,0.1902478156442236,0.19003327874137957,0.18939337019629393,0.1883390264021542,0.1868879226084297,0.1850636949116834,0.18289494407111123,0.18041409892384244,0.17765622099727227,0.17465782688557777,0.17145579299905508,0.16808639103927295,0.1645844847487264,0.16098290148841132,0.1573119777024337,0.15359926626003878,0.1498693862642558,0.1461439919126512,0.1424418358015785,0.13877890296750509,0.13516859424532043,0.13162194057617482,0.1281478332315972,0.1247549201253112,0.12149391969169343,0.11837928848998794,0.1154019275346372,0.1125534484888408,0.10982610777981304,0.10721274769409989,0.10470674363160055,0.1023019568018311,0.09998815637290054,0.09773131226195808,0.09552679675334202,0.09337578273260815,0.09127900430228982,0.08923681660485848,0.08724925005305059,0.08531605910341883,0.08343676581280435,0.08161069848672367,0.0798370257703721,0.0781147865535058,0.07644291606540196,0.07482026852919454,0.07324563673020952,0.07171776883281594,0.07023538275694755,0.06879717840067529,0.06740184796970744,0.06604808464983615,0.06473458983432293,0.06346007909563908,0.06222328706981551,0.06102297140247466,0.059857915887792795,0.058726932915797274,0.05762886532905026,0.056562587776897814,0.05552700764418708,0.0545210656211445,0.0535437359722773,0.052594026554307546,0.051670978626234196,0.05077366648867974,0.049901196984345995,0.04905270888686844,0.04822737220136362,0.047424387396524735,0.04664298458507025,0.04588242266684718,0.04514198844656626,0.04442099573625964,0.043718784450891994,0.043034719704080654,0.04236819090973015,0.04171861089425815,0.04108541502324219,0.04046806034552916,0.03976992884588149,0.03898186551997965,0.03821472838691583,0.03746781793482805,0.0367404618632442,0.036032013961351264,0.035341853027139235,0.034669381827183356,0.03401402609652395,0.03337523357797141,0.032752473100014265,0.032145233692366444,0.031553023738156535,0.030975370161650723,0.030411817650380615,0.02986192791051344,0.0293252789542958,0.028801464418364637,0.028290092911780085,0.02779078739258981,0.027303184571783663,0.02682693434352402,0.026361699240524207,0.025907153913539444,0.02546298463390576,0.025028888818129036,0.024604574573552796,0.0241897602641689,0.023784174095653483,0.023387553718782903,0.022999645850376393,0.022620205910974,0.022248997678486086,0.021885792957066802,0.021530371260529285,0.02118251950961628,0.020842031742490733,0.020508708837838553,0.020182358249985512,0.01986279375548949,0.01954983521066297,0.019243308319525212,0.018943044411698525,0.018648880229794332,0.018360657725839155,0.018078223866338044,0.017801430445567503,0.01753013390672243,0.017264195170561266,0.017003479471194554,0.016747856198706237,0.016497198748285195,0.016251384375574905,0.016010294057960166,0.01577381236152484,0.015541827313416383,0.015314230279387603,0.015090915846273886,0.014871781709189586,0.014656728563236302,0.014445659999514653,0.014238482405261554,0.014035104867922423,0.013835439082989315,0.013639399265442958,0.013446902064633889,0.013257866482464893,0.013072213794723637,0.012889867475433739,0.0127107531240942,0.012534798395685954,0.012361932933322096,0.012192088303438549,0.012025197933411528,0.011861197051501883,0.011700022629031968,0.01154161332469486,0.011385909430916438,0.011232852822179604,0.01108238690523153,0.010934456571098967,0.010789008148832454,0.01064598936091652,0.01050534928027306,0.01036703828879593,0.010231008037354865,0.010097211407211917,0.009965602472789355,0.009836136465742136,0.009708769740278837,0.00958345973968344,0.009460164963992877,0.009338844938780322,0.009219460185008101,0.009101972189904032,0.008986343378823852,0.008872537088061287,0.008760517538571792,0.008650249810570434,0.008541699818977186,0.008434834289673267,0.008329620736539589,0.00822602743924958,0.008124023421784258,0.008023578431648387,0.007924662919757705,0.007827248020974446,0.007731305535266753,0.007636807909471155,0.0075437282196320786,0.007452040153902974,0.0073617179959850985,0.007272736609085832,0.007185071420379476,0.007098698405948778,0.007013594076195505,0.006929735461699651,0.006847100099512638,0.0067656660198711464,0.006685411733312832,0.006606316218185032,0.00652835890852943,0.006451519682331158,0.006375778850119278,0.006301117143908366,0.006227515706465977,0.0061549560808997076,0.006083420200549552,0.006012890379176698,0.005943349301439678,0.005874780013645501,0.005807165914770523,0.005740490747739281,0.005674738590953848,0.0056098938500662955,0.005545941249983874,0.005482865827102668,0.005420652921759992,0.005359288170899277,0.005298757500940466,0.005239047120850371,0.00518014351540398,0.005122033438634243,0.005064703907461623,0.005008142195498883,0.004952335827026181,0.004897272571128932,0.004842940435996476,0.004789327663374295,0.004736422723165816,0.004684214308179148,0.004632691329015015,0.004581842909089406,0.004531658379789956,0.0044821272757595045,0.004433239330304085,0.004384984470922042,0.004337352814948692,0.004290334665315832,0.0042439205064206,0.004198101000101185,0.0041528669817168466,0.004108209456327249,0.004064119594970787,0.00402058873103713,0.003977608356731901,0.003935170119630768,0.003893265819320869,0.0038518874041254376,0.0038110269679115715,0.003770676746976988,0.0037308291170141095,0.0036914765901498434,0.0036526118120573364,0.003614227559139746,0.0035763167357824475,0.0035388723716724847,0.0035018876191829948,0.0034653557508216165,0.0034292701567395036,0.0033936243423012195,0.0033584119257125335,0.003323626635704829,0.003289262309275177,0.0032553128894791004,0.0032217724232765175,0.003188635059427981,0.0031558950464403565,0.0031235467305610705,0.0030915845538182656,0.003060003052107433,0.0030287968533219646,0.0029979606755269938,0.0029674893251751904,0.0029373776953639614,0.0029076207641316426,0.0028782135927934026,0.002849151324314577,0.00282042918172079,0.0027920424665444183,0.0027639865573052683,0.0027362569080260062,0.00270884904678052,0.0026817585742746745,0.0026549811624584706,0.002628512553169401,0.0026023485568049667,0.0025764850510251636,0.0025509179794830543,0.0025256433505831235,0.0025006572362670353,0.002475955770825105,0.0024515351497341837,0.0024273916285203266,0.002403521521645938,0.002379921201421133,0.0023565870969377437,0.002333515693026725,0.0023107035292373925,0.002288147198838388,0.1922304445421223,0.1920133019960228,0.1913656729046806,0.19029877550354835,0.18883073133276,0.18698575508946333,0.1847931189433301,0.18228597340373698,0.17950011052072332,0.17647274947973704,0.17324141163925189,0.16984293462825284,0.16631265621983898,0.1626837808322077,0.1589869264354503,0.15524983828932262,0.151497248498286,0.1477508565065856,0.14402940470842035,0.14034882453911404,0.13672243098488698,0.13316114675345525,0.12967374088628117,0.12627507715004765,0.12302021480699085,0.11991059231620425,0.11693720823901985,0.11409176290145867,0.11136659341944655,0.1087546155983658,0.10624927189962942,0.10384448476947687,0.10153461471425088,0.0993053953868805,0.09712652691494589,0.09499732666484022,0.09291886534651474,0.09089181305047828,0.08891649337540757,0.08699293251417684,0.08512090343149395,0.08329996535450783,0.08152949885608092,0.07980873684528683,0.07813679179692111,0.0765126795550739,0.07493534003961701,0.07340365517122278,0.07191646431264806,0.07047257750367497,0.06907078674499326,0.06770987556411483,0.06638862707438135,0.0651058307170315,0.06386028785623757,0.06265081637854611,0.061476254430888326,0.06033546341572665,0.059227330347748866,0.058150769663667105,0.05710472456536629,0.056088167966346636,0.05510010310242203,0.05413956385964069,0.053205614865267696,0.05229735138158793,0.05141389903672381,0.050554413421975176,0.04971807958099972,0.048904111412546795,0.04811175100524713,0.047340267920307946,0.04658895843549748,0.045857144761787656,0.04514417424224687,0.044449418541182666,0.0437722728303001,0.043112154977402097,0.042468504742245144,0.04184078298328725,0.041220376125020546,0.040413823421037075,0.03962844141784876,0.03886353093274459,0.03811841954368802,0.03739246051780028,0.03668503177581185,0.03599553489272972,0.03532339413460127,0.03466805553109557,0.03402898598342409,0.03340567240695085,0.03279762090778557,0.032204355992496686,0.031625419810055774,0.031060371425052958,0.030508786121204664,0.029970254734118986,0.029444383012322852,0.02893079100550231,0.028429112478941018,0.027938994353149758,0.027460096167669437,0.026992089568099176,0.026534657815370587,0.026087495316348006,0.02565030717484897,0.025222808762213125,0.024804725306558598,0.024395791499930524,0.0239957511225361,0.02360435668331514,0.0232213690761225,0.022846557250807118,0.022479697898538348,0.022120575150722206,0.021768980290895027,0.021424711479013918,0.02108757348756418,0.02075737744896618,0.02043394061375305,0.020117086119035156,0.019806642766779233,0.019502444811463234,0.019204331756665617,0.01891214816020089,0.018625743447400252,0.0183449717321736,0.018069691645502765,0.017799766171020116,0.017535062487367692,0.017275451817020906,0.017020809281290204,0.016771013761224078,0.016525947764152605,0.016285497295610955,0.016049551736416902,0.015818003724664603,0.015590749042420112,0.015367686506916233,0.015148717866038136,0.014933747697925973,0.014722683314505542,0.014515434668778688,0.01431191426571511,0.014112037076580066,0.013915720456562837,0.013722884065556136,0.013533449791954486,0.013347341679343677,0.01316448585596081,0.012984810466801085,0.012808245608270262,0.012634723265268552,0.012464177250607486,0.012296543146664767,0.012131758249178164,0.01196976151309941,0.011810493500416575,0.011653896329867647,0.01149991362846703,0.011348490484774825,0.01119957340383144,0.01105311026369969,0.010909050273543454,0.010767343933183982,0.010627942994076982,0.010490800421648771,0.010355870358945663,0.010223108091539198,0.010092470013640532,0.009963913595378493,0.00983739735119094,0.009712880809294116,0.009590324482182468,0.00946968983812267,0.009350939273602612,0.00923403608670155,0.009118944451341636,0.009005629392394373,0.008894056761604832,0.008784193214305217,0.008676006186889906,0.008569463875019011,0.008464535212530102,0.008361189851027346,0.008259398140125194,0.00815913110832384,0.00806036044448981,0.00796305847992513,0.007867198171,0.007772753082330517,0.007679697370481394,0.007588005768176782,0.007497653568997201,0.0074086166125510045,0.007320871270099489,0.007234394430621559,0.0071491634873035,0.0070651563244359394,0.006982351304708491,0.0069007272568850486,0.006820263463847994,0.0067409396509985715,0.006662735975002407,0.006585633012865537,0.0065096117513338365,0.006434653576602294,0.006360740264324356,0.006287853969912801,0.006215977219119223,0.006145092898887125,0.006075184248466586,0.006006234850783016,0.005938228624052568,0.00587114981363347,0.005804982984109476,0.005739713011595002,0.005675325076256171,0.005611804655040286,0.005549137514608419,0.005487309704461837,0.005426307550259805,0.0053661176473200276,0.005306726854297038,0.005248122287033631,0.005190291312577601,0.0051332215433619955,0.0050769008315412765,0.0050213172634796695,0.0049664591543867485,0.004912315043096527,0.0048588736869837204,0.004806124057015712,0.004754055332934143,0.004702656898562879,0.004651918337239251,0.004601829427362917,0.004552380138061465,0.004503560624967385,0.004455361226103767,0.004407772457876128,0.004360785011165443,0.004314389747521807,0.004268577695454198,0.004223340046813963,0.004178668153269383,0.0041345535228692176,0.004090987816691006,0.004047962845574032,0.004005470566932823,0.003963503081649397,0.00392205263104277,0.0038811115939116287,0.003840672483650607,0.0038007279454362365,0.0037612707534814267,0.003722293808356318,0.0036837901343743013,0.0036457528770398135,0.0036081753005583546,0.0035710507854054747,0.0035343728259535126,0.003498135028155263,0.003462331107281237,0.0034269548857113414,0.003392000290777773,0.0033574613526584952,0.003323332202320239,0.0032896070695083482,0.003256280280784152,0.0032233462576071402,0.003190799514461354,0.0031586346570246764,0.0031268463803803457,0.003095429467268356,0.003064378786377436,0.003033689290675214,0.003003356015776082,0.0029733740783461173,0.0029437386745429536,0.0029144450784913166,0.002885488640792082,0.00285686478706441,0.0028285690165205527,0.0028005969005712723,0.00277294408146269,0.002745606270942646,0.0027185792489562346,0.00269185886236969,0.002665441023722287,0.0026393217100045803,0.0026134969614636815,0.0025879628804338505,0.0025627156301922136,0.0025377514338392076,0.002513066573202239,0.002488657387763265,0.0024645202736088066,0.002440651682402104,0.19446228782164393,0.19424172518651298,0.19358395917476498,0.19250056877344596,0.1910102469818419,0.18913794984062843,0.18691381059720502,0.18437190657985633,0.18154896986874378,0.1784831262352826,0.17521273246460817,0.17177536324803483,0.16820697854873243,0.16454128338818755,0.16080927621183563,0.15703897029232128,0.15325526515319415,0.1494799413151548,0.14573175103061037,0.14202657922472964,0.13837765178679173,0.13479577197163445,0.13128956946026737,0.12788706194578187,0.12463619904487984,0.12152959337706778,0.11855832865949678,0.1157141826812068,0.1129895631111023,0.11037745008939288,0.1078713448070998,0.1054652233793056,0.10315349540495214,0.10093096668205882,0.09878079041515173,0.0966768521978101,0.0946197781559239,0.0926105819310075,0.0906499080458541,0.08873808103650692,0.08687515006585991,0.08506092913797128,0.08329503310870376,0.08157690973936585,0.07990586807102494,0.07828110341226786,0.07670171923679507,0.07516674628211215,0.07367515912930021,0.07222589052878434,0.07081784371913594,0.06944990296699176,0.06812094253671476,0.06682983427919972,0.06557545401061501,0.06435668683438736,0.06317243154319754,0.06202160422260365,0.06090314116403296,0.059816001182151725,0.05875916742035434,0.05773164871772467,0.05673248060177229,0.05576072596306059,0.05481547546058181,0.05389584770044106,0.053000989224670336,0.05213007434210991,0.051282304828915166,0.05045690952246188,0.049653143829041436,0.0488702891629161,0.048107652331692535,0.04736456488080858,0.046640382408024365,0.04593448385709852,0.04524627079847219,0.04457516670346407,0.04392061621745277,0.043282084436579576,0.04265905619172238,0.04193036507808213,0.041125763326927425,0.040341888781843735,0.039578069152970845,0.03883365738844372,0.03810803068967785,0.03740058955788273,0.03671075687217803,0.03603797699946373,0.03538171493596382,0.034741455480146184,0.03411670243663134,0.03350697785052019,0.032911821271504126,0.03233078904704145,0.0317634536438261,0.03120940299670794,0.030668239884242905,0.030139581329977957,0.029623058028597684,0.029118313796054233,0.02862500504277497,0.02814280026910783,0.02767137958211561,0.0272104342328876,0.026759666173535798,0.026318787633079797,0.02588752071141626,0.02546559699063908,0.02505275716295424,0.0246487506744873,0.024253335384300863,0.023866277237945425,0.02348734995493099,0.023116334729491067,0.022753019944058643,0.02239720089489668,0.022048679529328395,0.021707264194071783,0.021372769394167972,0.021045015562037726,0.020723828836211256,0.020409040849304002,0.0201004885248134,0.019798013882358884,0.019501463850975655,0.01921069009010664,0.01892554881795458,0.018645900646853238,0.018371610425362804,0.018102547086778442,0.017838583503773157,0.0175795963489018,0.017325465960712785,0.017076076215209065,0.016831314402438315,0.016591071107977747,0.016355240099101775,0.016123718215433926,0.015896405263876617,0.01567320391764827,0.015454019619239562,0.01523876048712455,0.015027337226068152,0.014819663040867225,0.014615653553391417,0.014415226722774824,0.014218302768628273,0.014024804097144709,0.013834655229978617,0.01364778273577611,0.01346411516425561,0.013283582982725344,0.01310611851493944,0.012931655882199198,0.012760130946599517,0.012591481256342602,0.012425645993028412,0.012262565920843035,0.012102183337568892,0.011944442027345303,0.011789287215102915,0.011636665522613962,0.01148652492608775,0.011338814715252008,0.011193485453864034,0.011050488941589187,0.010909778177201184,0.010771307323046934,0.010635031670729093,0.01050090760796057,0.01036889258654087,0.010238945091418638,0.01011102461079312,0.009985091607217566,0.009861107489666255,0.00973903458653003,0.009618836119501454,0.009500476178322127,0.00938391969635617,0.009269132426959665,0.009156080920619517,0.009044732502827637,0.008935055252670788,0.008827017982104602,0.008720590215888856,0.008615742172161697,0.008512444743624874,0.008410669479324716,0.008310388567002534,0.008211574815996282,0.008114201640673464,0.008018243044377968,0.007923673603868777,0.007830468454239,0.007738603274294218,0.007648054272375477,0.007558798172613242,0.0074708122015932675,0.007384074075425563,0.007298561987198838,0.007214254594808844,0.007131131009147577,0.007049170782642352,0.006968353898129781,0.0068886607580578765,0.006810072174002063,0.006732569356485678,0.006656133905096127,0.006580747798883622,0.00650639338703765,0.006433053379828714,0.0063607108398079934,0.006289349173257496,0.006218952121879476,0.006149503754721708,0.006080988460327834,0.006013390939106856,0.005946696195914528,0.0058808895328409634,0.005815956542195184,0.005751883099684143,0.005688655357777445,0.005626259739252719,0.005564682930917124,0.005503911877496813,0.005443933775692561,0.005384736068394123,0.005326306439049281,0.00526863280618254,0.005211703318060121,0.005155506347494106,0.005100030486785032,0.005045264542796159,0.0049911975321564744,0.004937818676589197,0.004885117398359892,0.004833083315843581,0.004781706239205219,0.004730976166190849,0.004680883278026942,0.0046314179354226504,0.004582570674674874,0.004534332203870904,0.004486693399186825,0.004439645301278586,0.004393179111763844,0.00434728618979013,0.004301958048689438,0.004257186352714768,0.004212962913857079,0.004169279688741033,0.004126128775595253,0.004083502411297768,0.004041392968492516,0.003999792952775698,0.003958694999949907,0.003918091873344754,0.003877976461200504,0.0038383417741152956,0.003799180942552412,0.003760487214406724,0.0037222539526290334,0.003684474632905254,0.003647142841391194,0.003610252272499551,0.003573796726738647,0.0035377701086017187,0.0035021664245040653,0.0034669797807687593,0.0034322043816581585,0.003397834527450591,0.0033638646125608122,0.0033302891237037735,0.0032971026380990364,0.0032642998217166934,0.0032318754275623873,0.0031998242940007877,0.0031681413431170974,0.00313682157911415,0.0031058600867460992,0.0030752520297863397,0.0030449926495292987,0.0030150772633256505,0.0029855012631488246,0.0029562601141937123,0.0029273493535055817,0.002898764588638813,0.002870501496344658,0.0028425558212877727,0.0028149233747895522,0.0027876000335993107,0.0027605817386912755,0.0027338644940873573,0.002707444365705252,0.002681317480230285,0.002655480024011821,0.002629928241982576,0.002604658436600696,0.19697821574637614,0.1967532652806967,0.19608249223679902,0.19497793317963374,0.19345900590085405,0.1915516066510639,0.18928696075588738,0.18670032118482444,0.18382961290017485,0.18071411302519913,0.17739324077663599,0.1739055102665371,0.17028767724366378,0.1665740905243174,0.1627962421908647,0.15898249852521742,0.15515798614519016,0.1513446043780642,0.14756113467081355,0.14382341984566943,0.14014458937777738,0.1365353108722781,0.1330043696255735,0.12960149353389852,0.1263517057282484,0.12324539834730015,0.12027372280487568,0.11742851858389089,0.11470224964496606,0.11208794754883326,0.10957916050673808,0.10716990767233085,0.10485463807466532,0.10262819366682589,0.1004857760293738,0.09841084348485303,0.0963790773802367,0.09439124421828066,0.09244833962599154,0.0905510158897892,0.0886996267004329,0.08689426787413923,0.08513481414617263,0.08342095220193833,0.08175221015723276,0.0801279837279118,0.07854755934424087,0.07701013446965353,0.07551483538023723,0.07406073265265067,0.07264685459540222,0.0712721988436384,0.06993574232125797,0.06863644975749388,0.06737328092830243,0.06614519677684803,0.06495116455180883,0.06379016208777039,0.06266118133857429,0.06156323126199159,0.06049534014297779,0.059456557432398034,0.05844595516897588,0.057462629043962994,0.05650569916059148,0.0555743105339043,0.05466763337064976,0.053784863163828224,0.052925220631916625,0.05208795152882803,0.05127232634708168,0.05047763993367846,0.04970321103539371,0.04894838178787892,0.048212517160921634,0.047495004370369485,0.04679525226573548,0.046112690701084376,0.045446769895653834,0.04479695978963983,0.04416274939970296,0.04353908224037856,0.04271421364656667,0.04191033812332015,0.04112678393355797,0.04036290405980438,0.039618075277323674,0.038891697252815105,0.03818319166959068,0.037492001379880346,0.036817589584641784,0.03615943904096994,0.03551705129709634,0.034889945954723535,0.03427765995836747,0.033679746911248934,0.03309577641720962,0.03252533344802273,0.03196801773548046,0.03142344318753487,0.030891237327783552,0.0303710407575637,0.029862506639885943,0.029365300204476433,0.02887909827315636,0.028403588804816877,0.027938470459248382,0.027483452179104393,0.027038252789271244,0.026602600612971483,0.026176233103906973,0.025758896493790623,0.025350345454632824,0.024950342775151596,0.02455865905073057,0.024175072386335737,0.023799368111840597,0.023431338509232305,0.02307078255117304,0.022717505650441755,0.02237131941977233,0.022032041441637666,0.021699495047547278,0.021373509106445802,0.021053917821801483,0.020740560537021963,0.02043328154881986,0.020131929928183512,0.01983635934862451,0.019546427921371446,0.019261998037222186,0.018982936214751275,0.01870911295460147,0.01844040259959115,0.018176683200390783,0.01791783638651425,0.01766374724241063,0.017414304188424854,0.017169398866420216,0.01692892602986678,0.016692783438193158,0.016460871755232916,0.016233094451581116,0.016009357710697593,0.015789570338601684,0.015573643676997007,0.015361491519693628,0.015153030032180874,0.014948177674221685,0.01474685512534158,0.014548985213095179,0.014354492843986806,0.014163304936946898,0.013975350359250092,0.013790559864778638,0.013608866034536938,0.013430203219318688,0.013254507484448846,0.0130817165565098,0.012911769771973529,0.01274460802766646,0.012580173732986526,0.012418410763812006,0.01225926441802804,0.012102681372610226,0.011948609642202686,0.011796998539134981,0.011647798634815323,0.011500961722454848,0.01135644078106555,0.011214189940684774,0.011074164448780864,0.010936320637789395,0.010800615893744484,0.01066700862595792,0.010535458237708824,0.01040592509790515,0.010278370513682914,0.010152756703902418,0.010029046773515793,0.009907204688767992,0.009787195253202244,0.009668984084442353,0.009552537591718467,0.009437822954115655,0.009324808099514128,0.009213461684198634,0.009103753073111655,0.008995652320729648,0.008889130152535327,0.008784157947071089,0.00868070771854826,0.008578752099994291,0.008478264326920375,0.008379218221487066,0.008281588177156223,0.008185349143808167,0.008090476613309435,0.00799694660551706,0.00790473565470033,0.007813820796370953,0.007724179554504311,0.007635789929139486,0.007548630384345266,0.0074626798365411764,0.0073779176431579795,0.007294323591631181,0.007211877888713086,0.007130561150093723,0.0070503543903219544,0.006971239013013469,0.0068931968013405415,0.006816209908791396,0.0067402608501914065,0.006665332492978609,0.006591408048722532,0.006518471064882327,0.006446505416793884,0.006375495299879495,0.006305425222072978,0.0062362799964543495,0.006168044734084743,0.006100704837039197,0.006034245991628078,0.005968654161802394,0.005903915582738198,0.005840016754591916,0.005776944436424732,0.00571468564028843,0.005653227625468742,0.00559255789288102,0.0055326641796147775,0.005473534453619956,0.005415156908534118,0.005357519958643826,0.005300612233976954,0.005244422575523094,0.005188940030575532,0.005134153848194707,0.005080053474787016,0.005026628549796465,0.004973868901506653,0.004921764542947538,0.004870305667907076,0.004819482647042375,0.004769286024088416,0.0047197065121613365,0.0046707349901543,0.004622362499221353,0.0045745802393494595,0.004527379566014236,0.004480751986917649,0.004434689158806074,0.0043891828843645505,0.0043442251091876175,0.004299807918822821,0.004255923535885402,0.00421256431724232,0.0041697227512640656,0.004127391455140884,0.0040855631722639,0.0040442307696676415,0.004003387235532937,0.0039630256767490026,0.003923139316531597,0.003883721492097876,0.0038447656523948165,0.003806265355880245,0.003768214268355812,0.0037306061608486903,0.003693434907543057,0.00365669448375831,0.003620378963973542,0.0035844825198967705,0.0035489994185784503,0.0035139240205665136,0.0034792507781040076,0.0034449742333665925,0.0034110890167394986,0.0033775898451332614,0.0033444715203360654,0.0033117289274033758,0.003279357033082706,0.0032473508842730927,0.00321570560651828,0.0031844164025333186,0.003153478550762264,0.0031228874039682148,0.0030926383878533436,0.0030627269997087394,0.003033148807093729,0.0030038994465426587,0.0029749746223001706,0.002946370105083015,0.0029180817308681562,0.00289010539970697,0.0028624370745636684,0.002835072780178949,0.00280800860195713,0.002781240684876629,0.19981967460672972,0.19958917440072446,0.1989019498606609,0.1977706156794191,0.1962155049808994,0.19426370064585158,0.19194780523546406,0.1893045530684956,0.1863733708836561,0.1831949841712492,0.17981014789465832,0.1762585570146429,0.172577967965965,0.16880354020349853,0.16496738918416234,0.16109832956403408,0.1572217799020132,0.15335979707229735,0.14953120887953678,0.1457518159641754,0.1420346380099653,0.1383901837434002,0.13483502460446384,0.13142994010663162,0.12817739276348677,0.12506782321525114,0.12209242724119436,0.11924308495575617,0.11651229757160259,0.11389313083599403,0.11137916436040121,0.10896444616170223,0.1066434518184731,0.10441104772024379,0.10226245795165387,0.10019323440948719,0.09819034244207335,0.09622839205888006,0.09430732300885462,0.09242814683086471,0.0905915526520004,0.08879794805911927,0.08704749641457084,0.0853401506834903,0.08367568390392346,0.0820537164748225,0.08047374046515043,0.07893514116292508,0.07743721608909113,0.07597919170018613,0.07456023799741225,0.07317948125000294,0.07183601502855956,0.07052890973054826,0.0692572207658372,0.06801999555598491,0.06681627948682044,0.06564512094047176,0.06450557552023645,0.06339670956974645,0.062317603076982656,0.06126735204352747,0.06024507039030274,0.05924989146276769,0.058280969190999864,0.05733747895348332,0.056418618187350826,0.05552360678254205,0.0546516872925997,0.053802124990648896,0.052974207795350295,0.052167246088451066,0.05138057244258954,0.05061354127553713,0.049865528444863375,0.0491359307950056,0.04842416566712216,0.04772967038055707,0.04705190169348064,0.04639033524915168,0.04574446501326879,0.04511380270699947,0.04440150267413757,0.04357653132165758,0.04277215668658004,0.04198773236529046,0.04122263520573036,0.04047626446636969,0.03974804099576498,0.039037406433923075,0.03834382243635914,0.037666769921413,0.037005748341224394,0.036360274976504445,0.03572988425510419,0.03511412709423667,0.034512570266106136,0.033924795786562045,0.03335040032638852,0.032788994644712764,0.03224020304400543,0.031703662846106095,0.03117902388865286,0.030665948041328623,0.030164108741267136,0.029673190546995937,0.02919288871027298,0.02872290876518956,0.028262966133892353,0.027812785748329606,0.027372101687394606,0.026940656828873612,0.02651820251562661,0.02610449823541388,0.025699311313843166,0.025302416619885377,0.024913596283449965,0.024532639424525965,0.024159341893390685,0.023793506021443502,0.023434940382202927,0.023083459562043086,0.022738883940253217,0.022401039478031997,0.022069757516018227,0.021744874580014638,0.02142623219453913,0.021113676703872403,0.02080705910028584,0.020506234859128343,0.02021106378049527,0.019921409837185097,0.019637141028678463,0.01935812924088127,0.019084250111389763,0.01881538290002952,0.018551410364460154,0.01829221864061755,0.018037697127792563,0.01778773837815249,0.017542237990507602,0.017301094508156922,0.0170642093206308,0.016831486569171338,0.016602833055795428,0.016378158155782526,0.016157373733457114,0.015940394061118083,0.015727135740990723,0.015517517630073262,0.015311460767763744,0.015108888306143235,0.014909725442819788,0.014713899356218712,0.014521339143223627,0.014331975759075598,0.01414574195943092,0.013962572244502118,0.013782402805189897,0.013605171471130101,0.013430817660581788,0.013259282332075607,0.01309050793776337,0.012924438378394769,0.012761018959859805,0.012600196351235155,0.012441918544279255,0.012286134814312523,0.012132795682438661,0.011981852879048908,0.011833259308561913,0.011686969015355063,0.011542937150834875,0.011401119941612201,0.011261474658734345,0.01112395958793694,0.010988534000876541,0.010855158127309927,0.010723793128179138,0.010594401069576558,0.010466944897551858,0.010341388413732073,0.010217696251726577,0.010095833854283625,0.009975767451177873,0.009857464037797276,0.009740891354406998,0.009626017866064446,0.009512812743165103,0.009401245842591369,0.009291287689449878,0.009182909459371502,0.009076082961356237,0.008970780621145301,0.008866975465097486,0.008764641104558537,0.008663751720702018,0.008564282049826791,0.008466207369097182,0.008369503482706236,0.008274146708453684,0.008180113864719927,0.008087382257824795,0.0079959296697575,0.007905734346266896,0.007816774985296236,0.007729030725756019,0.007642481136620442,0.007557106206337143,0.007472886332542272,0.007389802312066512,0.007307835331227766,0.007226966956397513,0.007147179124833417,0.0070684541357703265,0.006990774641758622,0.006914123640245944,0.00683848446539167,0.006763840780107721,0.006690176568318576,0.00661747612743442,0.006545724061028025,0.006474905271712884,0.006405004954213452,0.0063360085886225515,0.006267901933840919,0.006200671021190876,0.006134302148202139,0.006068781872562085,0.006004097006226247,0.00594023460968424,0.0058771819863770655,0.005814926677259024,0.005753456455503117,0.005692759321343172,0.005632823497049585,0.005573637422035429,0.005515189748086596,0.005457469334715804,0.005400465244634202,0.005344166739338113,0.0052885632748082044,0.005233644497315621,0.005179400239335092,0.005125820515559579,0.005072895519014456,0.005020615617268192,0.004968971348737623,0.004917953419082851,0.004867552697692372,0.004817760214253471,0.004768567155406466,0.0047199648614809605,0.0046719448233098065,0.004624498679121494,0.004577618211506586,0.004531295344457027,0.0044855221404761746,0.004440290797758188,0.00439559364743318,0.004351423150878752,0.004307771897094264,0.004264632600136781,0.004221998096617683,0.004179861343256411,0.004138215414492319,0.004097053500151256,0.004056368903166035,0.004016155037349895,0.003976405425219939,0.00393711369587148,0.003898273582900089,0.003859878922371195,0.0038219236508352664,0.00378440180338848,0.003747307511775826,0.003710635002537789,0.0036743785951979377,0.0036385327004908063,0.0036030918186296178,0.0035680505376113206,0.003533403531559983,0.0034991455591060886,0.0034652714618013955,0.0034317761625683955,0.003398654664183855,0.0033659020477944434,0.0033335134714652863,0.0033014841687594213,0.0032698094473477077,0.0032384846876490074,0.003207505341498499,0.0031768669308451995,0.0031465650464767114,0.003116595346770928,0.0030869535564744853,0.0030576354655060607,0.0030286369277856017,0.0029999538600875364,0.002971582240918042,0.16203131045567884,0.1619030830051732,0.16152005630030644,0.1608871394168257,0.16001232516278238,0.1589064198090245,0.15758268966080285,0.1560564462325272,0.1543445940092368,0.15246516484788528,0.15043686123188865,0.1482786272820196,0.14600926218757485,0.14364708610285068,0.14120966404175994,0.13871358926782246,0.13617432435431148,0.1336060955900107,0.1310218347289873,0.12843316115350029,0.12585039721309155,0.12328260967794555,0.12073767075871442,0.1182223328700352,0.11574231214626125,0.11330237657386592,0.11090643542789813,0.10857318009618606,0.10632820536566966,0.10416725842132762,0.1020858798392329,0.10007991217176132,0.09814547537092001,0.09627894452362383,0.09447692965442928,0.09273625737976858,0.0910539542225149,0.08942723141749742,0.08785347105758971,0.08633021344688374,0.08485514554198607,0.08342609037560457,0.08203862876095218,0.0806766056735753,0.07933791613787716,0.07802313164870793,0.0767326820692216,0.0754668705261394,0.07422588725958992,0.07300982243047462,0.07181867790515317,0.07065237805028861,0.06951077958004385,0.06839368050437873,0.06730082823129976,0.06623192687824715,0.06518664384847161,0.06416461572784427,0.06316545355628404,0.06218874752590006,0.06123407115568281,0.060300984989707394,0.059389039862991946,0.058497779776138854,0.0576267444168673,0.05677547136366736,0.055943498003885865,0.05513036319584981,0.05433560870206308,0.05355878041805155,0.05279942941915401,0.0520571128454843,0.0513313946432927,0.050621846179174375,0.04992804674195106,0.04924958394548002,0.048586054044369956,0.04793706217324539,0.04730222251912454,0.0466811584354367,0.04607350250528925,0.045284688000443114,0.04448272869078476,0.04369929722423633,0.04293388282057651,0.04218598896755407,0.041455133201313416,0.04074084686319335,0.04004267483719202,0.0393601752718988,0.03869291929022944,0.038040490689841576,0.03740248563680499,0.036778512354701635,0.03616819081108325,0.035571152402932016,0.03498703964255923,0.0344155058451344,0.03385621481891878,0.03330884055905751,0.0327730669456783,0.03224858744692087,0.031735104827383114,0.03123233086242658,0.030739986058646408,0.030257799380774626,0.029785507985202197,0.0293228569602692,0.028869599073390144,0.02842549452508871,0.027990310709934223,0.02756382198436795,0.027145809441378933,0.026736060691943887,0.0263343696531689,0.025940536343012573,0.025554366681481203,0.025175672298174294,0.024804270346031564,0.02443998332115905,0.02408263888857277,0.023732069713715533,0.023388113299590937,0.0230506118293665,0.022719412014274274,0.022394364946674638,0.022075325958111982,0.021762154482215496,0.02145471392229633,0.02115287152347844,0.020856498249234807,0.020565468662170086,0.020279660808914496,0.01999895610898877,0.01972323924751099,0.019452398071600503,0.01918632349036837,0.018924909378357672,0.01866805248231639,0.018415652331190416,0.018167611149210762,0.0179238337719809,0.017684227565445736,0.017448702347643362,0.017217170313143088,0.016989545960062816,0.016765746019587593,0.01654568938788744,0.016329297060353166,0.016116492068065133,0.015907199416416613,0.015701346025806695,0.015498860674338153,0.015299673942439855,0.015103718159346819,0.014910927351373242,0.014721237191905802,0.014534584953066152,0.0143509094589737,0.014170151040555037,0.01399225149184251,0.013817154027712362,0.013644803243002308,0.013475145072969727,0.013308126755035217,0.013143696791767506,0.01298180491506819,0.012822402051506943,0.01266544028877494,0.012510872843210698,0.012358654028362202,0.01220873922455151,0.01206108484939949,0.011915648329286252,0.011772388071707553,0.011631263438499068,0.011492234719896686,0.011355263109407286,0.011220310679455017,0.011087340357784616,0.010956315904590123,0.010827201890345419,0.010699963674314856,0.01057456738371537,0.010450979893514647,0.010329168806838944,0.010209102435971422,0.010090749783922996,0.009974080526550988,0.009859064995214625,0.009745674159943643,0.009633879613105719,0.009523653553554766,0.009414968771246729,0.009307798632302258,0.009202117064508289,0.009097898543238973,0.00899511807778437,0.00889375119807448,0.008793773941782101,0.008695162841797483,0.008597894914058853,0.008501947645728784,0.008407298983705071,0.00831392732345702,0.008221811498172462,0.008130930768211487,0.008041264810852796,0.007952793710325083,0.00786549794811545,0.007779358393542886,0.007694356294593042,0.007610473269002843,0.0075276912955882,0.0074459927058087415,0.007365360175558381,0.007285776717180024,0.007207225671693481,0.007129690701231979,0.007053155781680132,0.00697760519550892,0.006903023524798227,0.006829395644445685,0.0067567067155532064,0.006684942178986656,0.006614087749104963,0.006544129407650094,0.006475053397797668,0.006406846218360192,0.006339494618139637,0.0062729855904248375,0.0062073063676303325,0.0061424444160698985,0.0060783874308646575,0.006015123330978961,0.005952640254381343,0.005890926553327955,0.005829970789762212,0.005769761730830896,0.005710288344510806,0.005651539795343758,0.005593505440277574,0.005536174824607766,0.005479537678020244,0.005423583910729949,0.005368303609713474,0.0053136870350330755,0.005259724616250127,0.005206406948923616,0.0051537247911940505,0.005101669060448481,0.005050230830064883,0.004999401326234858,0.004949171924859888,0.004899534148522429,0.004850479663527593,0.004802000277014118,0.004754087934132964,0.004706734715292114,0.004659932833464049,0.004613674631556884,0.00456795257984541,0.004522759273461204,0.00447808742994085,0.004433929886828937,0.004390279599336782,0.004347129638053723,0.004304473186710097,0.00426230353999129,0.004220614101399633,0.004179398381165476,0.004138649994204157,0.004098362658118666,0.00405853019124641,0.004019146510749785,0.0039802056307476795,0.0039417016604891145,0.0039036288025663646,0.0038659813511670894,0.0038287536903649894,0.003791940292446539,0.0037555357162749243,0.0037195346056887258,0.0036839316879350437,0.0036487217721366707,0.0036138997477910234,0.003579460583302006,0.003545399324542597,0.0035117110934478673,0.0034783910866376783,0.0034454345740687646,0.0034128368977141763,0.003380593470271222,0.003348699773895949,0.003317151358963846,0.0032859438428567227,0.003255072908773758,0.0032245343045678807,0.0031943238416056244,0.003164437393650461,0.17081750280031877,0.17068077968842668,0.1702724206718397,0.16959779163576702,0.1686656233260469,0.16748770803284488,0.16607850375701955,0.16445467088104979,0.1626345687863329,0.16063773975950138,0.15848440522424456,0.15619499536026882,0.15378972817889408,0.15128824876665356,0.148709334246074,0.1460706654548443,0.14338866266690706,0.14067837997566132,0.13795345120985572,0.13522607935220918,0.13250706122414738,0.12980583951547,0.1271305749098687,0.12448823193990873,0.12188467318172615,0.11932475738197032,0.11681465791863878,0.11438944465038135,0.11205616576266936,0.10980986864211825,0.10764594126023407,0.10556008403543457,0.10354828437922738,0.10160679363937546,0.09973210618637907,0.0979209404191709,0.0961702214917246,0.09447706558486167,0.09283876556719105,0.09125277790676559,0.08971671071007756,0.088228312778567,0.0867854635847038,0.08538605256260064,0.08401665277287962,0.0826695255867305,0.08134530179618048,0.08004447104861312,0.07876739612772654,0.07751432628887651,0.07628540964177775,0.07508070459080353,0.07390019035636412,0.07274377661077054,0.0716113122690682,0.07050259348027253,0.06941737086724079,0.0683553560649382,0.06731622760707769,0.06629963621038759,0.06530520950449044,0.06433255625339883,0.06338127011246845,0.062450932962181294,0.0615411178575204,0.06065139162911956,0.05978131716968119,0.05893045543662348,0.058098367199403415,0.05728461455761539,0.056488762253654144,0.0557103788016906,0.05494903745265813,0.05420431701313629,0.05347580253433823,0.052763085885771534,0.05206576622680134,0.05138345038793734,0.05071575317251045,0.05006229758830658,0.04942271501772973,0.048759444556803484,0.04790849900893201,0.04707687960342028,0.04626406737326541,0.04546955698342562,0.04469285660153425,0.0439334877361198,0.04319098504741454,0.042464896135288026,0.041754781308299065,0.04106021333736108,0.040380777197144876,0.039716069797908676,0.03906569971013954,0.03842928688407834,0.03780646236595163,0.03719686801244352,0.03660015620481414,0.03601598956379834,0.03544404066630299,0.03488399176476892,0.03433553450989596,0.03379836967738004,0.03327220689914245,0.03275676439948731,0.032251768736522336,0.031756954549124146,0.03127206430964305,0.030796848082527518,0.030331063288968365,0.029874474477636036,0.029426853101559045,0.02898797730113014,0.02855763169325001,0.028135607166544393,0.027721700682608662,0.027315715083203115,0.026917458903297897,0.026526746189888643,0.026143396326456264,0.0257672338629618,0.02539808835125056,0.025035794185746207,0.02468019044928654,0.024331120763990213,0.023988433147004024,0.02365197987100007,0.023321617329292728,0.022997205905426223,0.022678609847117986,0.022365697144410557,0.022058339411907907,0.021756411774965373,0.021459792759710602,0.021168364186761348,0.020882011068534476,0.020600621510014287,0.020324086612870478,0.02005230038281581,0.019785159640083098,0.01952256393292937,0.019264415454053024,0.019010618959827225,0.018761081692255023,0.018515713303541532,0.018274425783206,0.018037133387634522,0.017803752571991273,0.017574201924405067,0.017348402102354502,0.017126275771164375,0.016907747544552522,0.01669274392714337,0.016481193258884433,0.016273025661298728,0.016068172985501505,0.015866568761928997,0.015668148151711282,0.015472847899633537,0.015280606288629324,0.015091363095754491,0.014905059549581653,0.014721638288976147,0.014541043323196681,0.01436321999327656,0.014188114934643715,0.01401567604092807,0.01384585242892522,0.013678594404667956,0.013513853430570398,0.013351582093608969,0.013191734074497963,0.01303426411783403,0.012879128003169416,0.012726282516984877,0.012575685425530088,0.012427295448504539,0.012281072233544226,0.012136976331494133,0.011994969172434516,0.011855013042436706,0.011717071061026221,0.01158110715932309,0.011447086058844768,0.01131497325094282,0.01118473497685538,0.011056338208355327,0.010929750628969549,0.010804940615757857,0.010681877221626786,0.010560530158163705,0.010440869778972775,0.010322867063498551,0.010206493601316485,0.010091721576881417,0.009978523754714289,0.0098668734650149,0.00975674458968794,0.009648111548764816,0.009540949287214558,0.009435233262126717,0.009330939430256327,0.009228044235918872,0.009126524599225673,0.009026357904644986,0.008927521989884089,0.008829995135077855,0.008733756052276167,0.008638783875221634,0.008545058149404889,0.008452558822394223,0.008361266234427076,0.00827116110925646,0.008182224545246013,0.008094438006702462,0.008007783315442656,0.007922242642585009,0.007837798500559693,0.007754433735330502,0.007672131518823637,0.007590875341553456,0.0075106490054442565,0.007431436616838486,0.007353222579687227,0.007275991588918674,0.007199728623975859,0.0071244189425233116,0.007050048074314235,0.006976601815214911,0.0069040662213813485,0.006832427603584999,0.006761672521680129,0.006691787779212863,0.006622760418164889,0.006554577713828803,0.006487227169812568,0.00642069651316625,0.006354973689631539,0.006290046859007938,0.006225904390632866,0.006162534858973712,0.006099927039325908,0.0060380699036177606,0.0059769526163161,0.00591656453043145,0.005856895183619281,0.005797934294375944,0.005739671758324063,0.005682097644588238,0.005625202192256366,0.0055689758069246975,0.005513409057325569,0.005458492672032893,0.005404217536246603,0.005350574688651652,0.005297555318350391,0.005245150761866092,0.0051933525002167335,0.0051421521560547825,0.00509154149087446,0.005041512402282152,0.004992056921329441,0.004943167209907469,0.004894835558199246,0.004847054382190926,0.004799816221238688,0.0047531137356902784,0.004706939704560568,0.00466128702325779,0.004616148701361766,0.0045715178604507686,0.004527387731976691,0.004483751655186953,0.004440603075092761,0.004397935540480703,0.004355742701969032,0.004314018310105661,0.004272756213507541,0.0042319503570409115,0.0041915947800396135,0.004151683614562977,0.004112211083690465,0.00407317149985282,0.004034559263199321,0.003996368859998666,0.003958594861074835,0.003921231920275451,0.003884274772972483,0.0038477182345943834,0.0038115571991893978,0.0037757866380179134,0.003740401598175022,0.003705397201241235,0.003670768641961058,0.0036365111869493165,0.003602620173423113,0.003569091007960732,0.003535919165285424,0.0035031001870740653,0.18038296214670715,0.18023633991991156,0.17979847303596413,0.17907528662144204,0.17807641366838206,0.17681484971738107,0.17530650330692038,0.17356967147786997,0.1716244722670076,0.16949226576229354,0.1671950923341083,0.16475515177960803,0.1621943411242165,0.1595338624997783,0.15679390652552885,0.1539934114314928,0.15114989406009602,0.14827934595189574,0.14539618591360087,0.14251325963379305,0.1396418768567074,0.13679187713666435,0.1339717160802557,0.13118856507135152,0.12844841863572293,0.12575620474155308,0.12313273678178135,0.12060924792270594,0.11818112058058797,0.11584321759938995,0.11359075554020509,0.11141927540905718,0.10932461618158718,0.10730289082498198,0.1053504645526099,0.10346393507757802,0.10164011465838718,0.09987601375342454,0.09816882612159324,0.09651591522471661,0.09491480180310252,0.09336315250982281,0.09185876950159846,0.09039958089502857,0.08898363200670519,0.087605973099596,0.08625126096860843,0.08491824959208777,0.08360750436086521,0.08231946270379813,0.0810544469324756,0.07981267622954076,0.07859427777953372,0.07739929705504184,0.07622770728157509,0.07507941811259183,0.07395428355170809,0.07285210916294065,0.0717726586120936,0.07071565958336246,0.06968080911538267,0.06866777840015978,0.06767621708708245,0.06670575713259118,0.06575601623401316,0.06482660088405567,0.0639171090800928,0.06302713272014075,0.06215625971512679,0.06130407584483565,0.06047016638269867,0.059654117512622944,0.05885551755899252,0.05807395804919344,0.05730903462627291,0.05656034782769498,0.05582750374473538,0.05511011457561802,0.054407799084257885,0.05372018297531399,0.05304689919519701,0.052387588167679244,0.05164797924512062,0.05076475802726529,0.04990115081267996,0.04905664589754613,0.048230744273806934,0.04742295957068949,0.046632817959022334,0.04585985802373828,0.0451036306093469,0.0443636986425798,0.04363963693600368,0.042931031975886616,0.04223748169726251,0.04155859524876567,0.04089399274952494,0.04024330504007282,0.03960617342905877,0.03898224943725774,0.038371194540211886,0.03777267991065977,0.037186386161727376,0.036612003091764767,0.03604922943153873,0.03549777259441128,0.03495734843002886,0.03442768098197115,0.03390850224970119,0.03339955195514326,0.03290057731411013,0.03241133281276829,0.031931579989296265,0.031461087220814095,0.030999629515682667,0.030546988311186716,0.030102951276624622,0.029667312121797806,0.029239870410851253,0.028820431381444356,0.028408805769172325,0.028004809637171828,0.027608264210827994,0.027218995717494858,0.02683683523111822,0.026461618521677943,0.026093185909324582,0.025731382123106265,0.025376056164177593,0.025027061173358105,0.02468425430294749,0.024347496592663248,0.024016652849593118,0.023691591532042325,0.023372184637168458,0.023058307592276114,0.022749839149677355,0.02244666128499536,0.02214865909880656,0.021855720721521192,0.02156773722138418,0.02128460251551338,0.02100621328386318,0.020732468886021056,0.020463271280747704,0.020198524948157676,0.019938136814466895,0.0196820161792102,0.0194300746448488,0.019182226048685868,0.018938386397015974,0.01869847380142119,0.018462408417153957,0.018230112383526408,0.018001509766238485,0.01777652650158289,0.017555090342452104,0.017337130806098163,0.017122579123574712,0.01691136819080767,0.01670343252123962,0.016498708199986514,0.016297132839464323,0.016098645536428147,0.01590318683037713,0.015710698663277282,0.015521124340561018,0.015334408493350209,0.015150497041872147,0.014969337160019329,0.01479087724101704,0.014615066864162043,0.014441856762590157,0.014271198792046013,0.014103045900614364,0.013937352099383018,0.013774072434004817,0.013613162957131155,0.01345458070168044,0.013298283654923288,0.013144230733349176,0.012992381758291406,0.01284269743228689,0.012695139316139884,0.012549669806674718,0.012406252115148321,0.012264850246303334,0.012125428978039757,0.011987953841687243,0.011852391102852074,0.01171870774282868,0.01158687144055004,0.011456850555063207,0.01132861410851272,0.011202131769611936,0.011077373837592124,0.010954311226609649,0.010832915450598104,0.010713158608552369,0.010595013370226457,0.010478452962238113,0.010363451154562782,0.010249982247406282,0.010138021058443669,0.01002754291041461,0.009918523619060017,0.009810939481394476,0.009704767264300232,0.009599984193433978,0.009496567942438288,0.00939449662244387,0.009293748771859673,0.009194303346437444,0.009096139709604208,0.00899923762305529,0.008903577237596638,0.008809139084233612,0.00871590406549529,0.008623853446988594,0.008532968849174784,0.00844323223936353,0.008354625923913794,0.008267132540640917,0.008180735051419854,0.008095416734979896,0.008011161179886784,0.00792795227770278,0.007845774216324585,0.00776461147349023,0.007684448810451377,0.007605271265806088,0.007527064149488364,0.007449813036907036,0.0073735037632339075,0.007298122417833701,0.007223655338832793,0.007150089107824013,0.00707741054470033,0.007005606702618102,0.00693466486308314,0.006864572531157176,0.006795317430782229,0.006726887500216995,0.006659270887585631,0.0065924559465332525,0.006526431231986262,0.006461185496014225,0.006396707683791604,0.00633298692965402,0.00627001255325001,0.006207774055783008,0.0061462611163419015,0.006085463588319053,0.006025371495910229,0.005965975030698262,0.005907264548315309,0.005849230565182743,0.005791863755326441,0.00573515494726605,0.005679095120974332,0.005623675404907748,0.005568887073103946,0.005514721542345319,0.005461170369387749,0.005408225248250391,0.005355878007568076,0.005304120608002409,0.005252945139710927,0.005202343819873271,0.00515230899027116,0.005102833114923338,0.005053908777772064,0.00500552868042086,0.004957685639921603,0.004910372586610922,0.004863582561992392,0.00481730871666609,0.0047715443083024825,0.004726282699660093,0.004681517356646475,0.004637241846419619,0.0045934498355312894,0.004550135088109381,0.0045072914640790235,0.004464912917421419,0.004422993494469975,0.004381527332241339,0.004340508656802588,0.004299931781672036,0.004259791106253634,0.004220081114304307,0.00418079637243222,0.004141931528627108,0.0041034813108204796,0.0040654405254754045,0.0040278040562058345,0.003990566862423013,0.003953723978010695,0.00391727051002665,0.003881201637430663,0.19084583209948194,0.1906875429105986,0.1902149108015293,0.18943455593572572,0.18835723097933452,0.1869974213971313,0.18537282661075646,0.18350375701502578,0.18141248474254287,0.179122585290272,0.1766583032275595,0.174043969075317,0.17130348709221271,0.16845990609496495,0.16553507836712533,0.16254940572266147,0.15952166717669736,0.15646891950450403,0.15340646013757386,0.1503478411459504,0.14730492323235217,0.14428795945512643,0.1413056995696297,0.13836550723621346,0.13547348374196425,0.13263879961669503,0.12990391317659972,0.12727395462958432,0.1247431729498148,0.12230622007381659,0.11995811699136534,0.11769422312604756,0.11551020864830373,0.11340202940634102,0.11136590419695885,0.10939829413094242,0.10749588387577019,0.10565556458328142,0.10387441833153102,0.10214970392934047,0.10047884394859229,0.09885941286423738,0.097289126194899,0.09576583054845317,0.0942874944871014,0.09285220013542149,0.09145813546278345,0.09009701747217229,0.0887564362765685,0.08743677441793583,0.08613855987144241,0.08486220307779145,0.08360800854067527,0.08237618565948074,0.08116685879774634,0.0799800765995843,0.07881582057511621,0.07767401298270533,0.07655452404054285,0.07545717850331456,0.07438176164166309,0.07332802466298197,0.07229568961215613,0.07128445379034486,0.07029399372873205,0.0693239687529186,0.06837402417181694,0.06744379412318084,0.06653290410595707,0.06564097322767842,0.06476761619314818,0.0639124450587905,0.0630750707751103,0.062255104537951994,0.06145215896754734,0.060665849132682775,0.05989579343588347,0.05914161437402977,0.05840293918754651,0.057679400410080905,0.05697063632948442,0.056276291369830256,0.05559601640334093,0.05479586348845326,0.05387789270467845,0.0529798333442683,0.05210118244210161,0.05124144865122884,0.05040015226616199,0.0495768252034851,0.04877101094548393,0.04798226445184592,0.04721015204400614,0.04645425126613829,0.045714150726394814,0.04498944992157731,0.04427975904807354,0.04358469880153173,0.042903900167526134,0.042237004205128895,0.04158366182511683,0.04094353356433043,0.04031628935747519,0.03970160830756123,0.039099178455949776,0.03850869655289927,0.03792986782935255,0.03736240577062864,0.03680603189254584,0.03626047552048024,0.03572547357173433,0.03520077034155098,0.03468611729306015,0.034181272851351564,0.03368600220188639,0.03320007709335804,0.03272327564511685,0.03225538215923277,0.03179618693722484,0.03134548610150297,0.030903081421506454,0.030468780144527998,0.030042394831191872,0.029623743195548426,0.029212647949712123,0.028808936653000113,0.028412441565485978,0.02802299950588929,0.027640451713728118,0.02726464371562386,0.02689542519569334,0.026532649869912838,0.026176175364366703,0.025825863097279987,0.025481578164742075,0.025143189230007724,0.024810568416297984,0.02448359120298602,0.02416213632507716,0.023846085675890978,0.023535324212836106,0.023229739866203785,0.022929223450873924,0.02263366858084822,0.02234297158652585,0.02205703143462456,0.021775749650677495,0.021499030244012358,0.021226779635137534,0.020958906585455055,0.02069532212923012,0.020435939507730566,0.020180674105481227,0.01992944338855111,0.01968216684481041,0.01943876592609499,0.01919916399220442,0.018963286256686432,0.018731059734336874,0.018502413190363335,0.018277277091153194,0.018055583556598073,0.01783726631391145,0.017622260652902767,0.017410503382648653,0.0172019327895186,0.016996488596511677,0.016794111923851166,0.016594745250807518,0.016398332378698744,0.016204818395032287,0.01601414963875198,0.01582627366654621,0.01564113922019128,0.015458696194888245,0.015278895608562751,0.015101689572095218,0.014927031260453017,0.014754874884687434,0.014585175664776871,0.014417889803280437,0.014252974459777858,0.01409038772607281,0.013930088602126,0.013772036972705107,0.013616193584720061,0.013462520025223964,0.013310978700060079,0.013161532813127543,0.013014146346254227,0.012868784039650605,0.01272541137292863,0.012583994546666453,0.01244450046450421,0.012306896715747355,0.01217115155846977,0.012037233903094592,0.0119051132964396,0.011774759906214356,0.011646144505949401,0.01151923846035073,0.011394013711061749,0.011270442762820892,0.011148498670002914,0.011028155023533413,0.01090938593815999,0.010792166040075815,0.010676470454879933,0.01056227479586524,0.01044955515262572,0.010338288079969083,0.0102284505871306,0.01012002012727574,0.010012974587283074,0.009907292277801457,0.009802951923568294,0.009699932653987088,0.00959821399395217,0.009497775854914957,0.009398598526183976,0.009300662666453333,0.009203949295549005,0.009108439786391642,0.009014115857165945,0.008920959563691284,0.008828953291989733,0.00873807975104124,0.008648321965726092,0.00855966326994533,0.00847208729991531,0.00838557798763132,0.00830011955449644,0.008215696505107617,0.008132293621199332,0.00804989595573634,0.007968488827153224,0.007888057813737024,0.007808588748146145,0.007730067712065616,0.007652481030992271,0.00757581526914674,0.007500057224510078,0.007425193923978351,0.007351212618636361,0.007278100779143581,0.007205846091231123,0.007134436451305859,0.00706385996216012,0.006994104928781133,0.006925159854261576,0.006857013435805343,0.006789654560827071,0.006723072303143993,0.006657255919254646,0.006592194844705871,0.006527878690543126,0.006464297239842979,0.006401440444325067,0.006339298421042796,0.006277861449147893,0.006217119966730401,0.006157064567729591,0.006097685998914897,0.006038975156935638,0.005980923085435632,0.005923520972234029,0.0058667601465683655,0.005810632076399001,0.0057551283657742815,0.005700240752252354,0.005645961104381472,0.005592281419234979,0.005539193820000397,0.005486690553621103,0.005434763988490168,0.005383406612192688,0.0053326110292985715,0.005282369959202135,0.005232676234008302,0.0051835227964646185,0.005134902697936366,0.005086809096425979,0.005039235254633987,0.004992174538060964,0.004945620413150239,0.0048995664454684566,0.004854006297925498,0.004808933729031069,0.004764342591187851,0.004720226829019845,0.004676580477736185,0.004633397661527389,0.004590672591995987,0.004548399566618729,0.004506572967240294,0.004465187258598407,0.004424236986877718,0.004383716778294296,0.0043436213377081945,0.004303945447264023,0.20235072605678572,0.2021785115295853,0.20166440156637389,0.20081589493963425,0.1996451572830605,0.19816854944453716,0.19640601740129132,0.19438038655899212,0.19211660640801057,0.1896409900602528,0.18698048791630717,0.18416202679504123,0.1812119366129391,0.17815547734893067,0.175016470538834,0.17181703254048264,0.16857740159560466,0.1653158473047994,0.1620486493462341,0.158790131811138,0.155552740060697,0.1523471482008042,0.1491823868397299,0.14606598251204508,0.14300411798960364,0.1400329223264986,0.1371776587932695,0.134431852453479,0.13178949065432186,0.12924498343133398,0.12679312781550614,0.12442907561366505,0.12214830428425083,0.11994659057561556,0.11781998663289422,0.11576479831384184,0.11377756548398382,0.11185504408767989,0.10999418981459208,0.10819214320144864,0.10644621602658913,0.10475387887045959,0.10311274972900988,0.10152058357902657,0.09997526280523457,0.0984747884084352,0.09701727192234125,0.0956009279742533,0.09422406743123059,0.09287771827197215,0.0915507812876594,0.09024378776884949,0.08895725281129968,0.08769158204214857,0.08644708213721833,0.0852239706645315,0.08402238525324952,0.08284239209744867,0.08168399381193195,0.08054713666319359,0.079431717203009,0.07833758833499534,0.07726456484638743,0.07621242843817747,0.07518093228696689,0.07416980517160252,0.07317875519680149,0.07220747314490511,0.07125563548557072,0.07032290707170107,0.06940894354827831,0.06851339349921712,0.06763590035558206,0.06677610408695431,0.06593364269610089,0.0651081535355293,0.06429927446310359,0.06350664485241764,0.06272990647234425,0.061968704248932374,0.06122268692166914,0.06049150760501771,0.059774824265215604,0.059072300121323064,0.05823352044110604,0.057278145712402265,0.05634298332736953,0.05542754113734755,0.05453133735164346,0.0536539006561351,0.052794770282768834,0.05195349603598132,0.051129638281541476,0.05032276790266018,0.04953246622774952,0.04875832493372858,0.047999945928387425,0.047256941214883434,0.04652893274118168,0.04581555223688542,0.045116441039642255,0.04443124991309267,0.0437596388580429,0.04310127691842528,0.04245584198335586,0.04182302058648005,0.041202507703639195,0.04059400654977348,0.03999722837582501,0.03941189226636565,0.038837724938512896,0.038274460542661815,0.03772184046547361,0.03717961313547495,0.036647533831612816,0.03612536449500624,0.0356128735441196,0.035109835693543597,0.034616031776502305,0.03413124857122498,0.0336552786312452,0.03318792011968805,0.032728976647585485,0.03227825711623751,0.03183557556360523,0.0314007510147457,0.03097360733624317,0.030553973094607834,0.03014168141859964,0.029736569865408843,0.02933848029065462,0.028947258722120024,0.028562755237158684,0.028184823843699625,0.027813322364777706,0.027448112326496785,0.027089058849365567,0.026736030542908067,0.026388899403472877,0.026047540715163676,0.025711832953790696,0.025381657693784983,0.02505689951797534,0.024737445930153073,0.024423187270350352,0.024114016632737247,0.02380982978608005,0.023510525096670398,0.023216003453655425,0.022926168196694734,0.02264092504587727,0.022360182033815484,0.022083849439865622,0.021811839726395138,0.021544067477035654,0.02128044933686367,0.02102090395443495,0.020765351925628436,0.02051371573923119,0.020265919724211285,0.020021889998623553,0.019781554420098917,0.019544842537856006,0.019311685546198606,0.019082016239440613,0.01885576896821532,0.018632879597126936,0.018413285463690823,0.018196925338533006,0.017983739386798387,0.0177736691307314,0.017566657413393014,0.017362648363469197,0.01716158736114576,0.016963421005006803,0.016768097079926388,0.01657556452592026,0.01638577340792904,0.01619867488649522,0.016014221189315204,0.015832365583629777,0.015653062349429113,0.015476266753448029,0.01530193502391842,0.015130024326064818,0.014960492738311133,0.014793299229178858,0.014628403634856284,0.014465766637410603,0.014305349743631882,0.014147115264481045,0.013991026295126344,0.013837046695548175,0.013685141071696974,0.013535274757180405,0.013387413795471573,0.013241524922615707,0.013097575550421486,0.012955533750124279,0.012815368236500185,0.01267704835242517,0.012540544053859218,0.012405825895245085,0.012272865015307674,0.012141633123244228,0.012012102485287968,0.01188424591164057,0.011758036743757166,0.011633448841974942,0.011510456573476432,0.011389034800572503,0.011269158869301828,0.011150804598332807,0.011033948268159904,0.010918566610587805,0.010804636798489593,0.010692136435837319,0.010581043547992287,0.010471336572249022,0.010362994348624924,0.010255996110890361,0.010150321477827389,0.010045950444716654,0.009942863375041208,0.009841040992402537,0.009740464372644062,0.009641114936171789,0.009542974440472208,0.009446024972817635,0.009350248943154964,0.009255629077172667,0.009162148409541842,0.009069790277323202,0.00897853831353993,0.008888376440908107,0.008799288865721695,0.008711260071888806,0.008624274815111365,0.008538318117209183,0.008453375260580842,0.008369431782798413,0.00828647347133428,0.008204486358412047,0.008123456715983513,0.008043371050824309,0.007964216099746775,0.007885978824926046,0.007808646409337943,0.0077322062523020995,0.007656645965132267,0.007581953366887037,0.007508116480220109,0.007435123527327985,0.007362962925989562,0.00729162328569943,0.007221093403889131,0.007151362262235466,0.007082419023053019,0.007014253025770102,0.006946853783482691,0.006880210979588634,0.0068143144644967355,0.00674915425241011,0.006684720518182566,0.006621003594243479,0.006557993967593248,0.006495682276864401,0.006434059309447981,0.0063731159986842425,0.006312843421113528,0.0062532327937890675,0.0061942754716478865,0.006135962944939181,0.006078286836708303,0.006021238900336286,0.005964811017130861,0.005908995193970858,0.005853783561000543,0.005799168369373164,0.005745141989043556,0.005691696906606068,0.005638825723179904,0.005586521152338391,0.00553477601808193,0.0054835832528542326,0.005432935895598664,0.005382827089856662,0.00533325008190492,0.005284198218931578,0.0052356649472497675,0.005187643810548865,0.005140128448180329,0.005093112593480008,0.005046590072124084,0.005000554800518575,0.0049550007842221015,0.004909922116399518,0.0048653129763078715,0.004821167627812327,0.004777480417932012 +0.15799797083335357,0.15770969158000941,0.15685208723521504,0.15544638933161203,0.15352647838565875,0.15113681430296635,0.14832987915276258,0.14516339703344103,0.14169758596758786,0.13799265354488546,0.1341066848896471,0.1300940029065492,0.12600401851497836,0.1218805401472032,0.11776147998627833,0.11367887843764184,0.1096591651401609,0.10572358055272454,0.10188869306618255,0.09816695965185288,0.09459173997730151,0.09121950482498652,0.08803765739852602,0.08500309314041421,0.08207189959847146,0.07924595430207641,0.07652606411517952,0.073911909410994,0.07140226883004665,0.06899521251198062,0.06668826623479641,0.06447854931675652,0.062362889281425325,0.06033791624510967,0.05840013982564015,0.05654601114298512,0.05477197222049948,0.0530744948254414,0.05145011052418813,0.04989543348139112,0.04840717730767708,0.04698216706030736,0.045617347325119295,0.04430978715530075,0.04305668251141678,0.04185535673520379,0.04070325949510781,0.039597964562020235,0.03853716670701077,0.037518677957558574,0.03654042340267948,0.03560043669941637,0.034696855401869606,0.03382791620828892,0.032991950200711447,0.032187378134643015,0.03141270582229765,0.030666519641766376,0.029947482195451704,0.02925432813384907,0.02858586015508338,0.027940945185993212,0.027318510747050523,0.026717541500634732,0.0261370759800531,0.025576203495160252,0.02503406120922577,0.024509831380893726,0.024002738764520685,0.023512048161846665,0.02303706211774532,0.02257711875281081,0.022131589725542706,0.021699878317053455,0.021281417631410858,0.020875668904933562,0.020482119918061526,0.02010028350365703,0.01972969614590318,0.01932477481724956,0.018875496332560297,0.01844021641869504,0.01801838026236836,0.01760945954145773,0.017212950969937982,0.016828374931112017,0.016455274193446185,0.01609321270372802,0.01574177445256073,0.01540056240755744,0.015069197509902836,0.014747317730210848,0.014434577179914105,0.014130645274634026,0.013835205946236611,0.013547956900491478,0.01326860891746169,0.012996885191927621,0.012732520711353897,0.012475261669047272,0.012224864910324278,0.011981097409652124,0.011743735776846365,0.011512565790558964,0.011287381957384395,0.011067987095032972,0.01085419193811801,0.010645814765202344,0.010442681045826255,0.010244623106339517,0.010051479813419249,0.009863096274235171,0.009679323552292056,0.009500018398029768,0.009325042993337624,0.009154264709174782,0.008987555875549837,0.008824793563158932,0.0086658593760155,0.008510639254463487,0.008359023287985407,0.008210905537264192,0.008066183864985647,0.007924759774903728,0.0077865382587105295,0.007651427650295168,0.007519339486985832,0.007390188377401864,0.007263891875564658,0.007140370360928997,0.007019546924029639,0.0069013472574426605,0.0067856995517861125,0.006672534396497648,0.006561784685144266,0.006453385525026985,0.006347274150866907,0.006243389842361719,0.006141673845417606,0.006042069296874551,0.005944521152545802,0.005848976118412833,0.005755382584815724,0.0056636905634935685,0.005573851627336646,0.005485818852715497,0.00539954676426679,0.005314991282015005,0.005232109670719455,0.0051508604913406125,0.005071203554526905,0.0049930998760240805,0.004916511633921182,0.004841402127645089,0.004767735738623447,0.004695477892540597,0.004624595023110485,0.004555054537301681,0.004486824781945665,0.004419875011667349,0.00435417535807936,0.0042896968001812285,0.004226411135913599,0.004164290954813967,0.004103309611726723,0.004043441201521052,0.003984660534774166,0.003926943114375581,0.00387026511301613,0.003814603351521636,0.003759935277996051,0.0037062389477404848,0.003653493003913406,0.003601676658903902,0.0035507696763859013,0.003500752354026312,0.003451605506819539,0.0034033104510236807,0.0033558489886716236,0.0033092033926365983,0.003263356392227479,0.003218291159293389,0.0031739912948177537,0.003130440815980401,0.0030876241436716195,0.003045526090438588,0.0030041318488476954,0.002963426980246487,0.0029233974039102415,0.002884029386556535,0.0028453095322159934,0.002807224772443752,0.0027697623568592126,0.0027329098440021585,0.002696655092491668,0.002660986252478401,0.002625891757377971,0.002591360315874997,0.0025573809041887375,0.0025239427585887694,0.002491035368153699,0.0024586484677623834,0.0024267720313098664,0.0023953962651395893,0.0023645116016846454,0.002334108693309144,0.0023041784063443814,0.002274711815311433,0.0022457001973240297,0.002217135026665756,0.0021890079695341697,0.0021613108789476014,0.002134035789807797,0.0021071749141132823,0.0020807206363187367,0.0020546655088340446,0.0020290022476598777,0.0020037237281539176,0.0019788229809237536,0.0019542931878420043,0.00193012767817995,0.0019063199248546346,0.0018828635407870482,0.0018597522753666259,0.0018369800110188618,0.0018145407598729793,0.0017924286605253738,0.001770637974896958,0.001749163085180381,0.0017279984908746056,0.0017071388059038545,0.001686578755818531,0.0016663131750746748,0.0016463370043905152,0.0016266452881768421,0.0016072331720391154,0.001588095900349314,0.0015692288138845212,0.0015506273475311917,0.0015322870280522957,0.0015142034719155932,0.0014963723831813989,0.001478789551447279,0.0014614508498488794,0.001444352233114436,0.001427489735671607,0.0014108594698049569,0.001394457623862816,0.0013782804605113126,0.0013623243150351226,0.0013465855936827954,0.0013310607720555634,0.0013157463935385876,0.0013006390677726828,0.001285735469166211,0.001271032335445309,0.001256526466241582,0.0012422147217160723,0.0012280940212186966,0.001214161341981525,0.001200413717845695,0.001186848238020421,0.0011734620458733534,0.0011602523377515917,0.001147216361831893,0.0011343514170000278,0.0011216548517578486,0.001109124063157521,0.001096756495762282,0.0010845496406325192,0.0010725010343370647,0.0010606082579885895,0.0010488689363025497,0.0010372807366789917,0.0010258413683068108,0.0010145485812893167,0.0010034001657911887,0.0009923939512057455,0.000981527805342165,0.0009707996336321889,0.0009602073783554532,0.0009497490178834177,0.0009394225659410161,0.0009292260708857384,0.0009191576150035789,0.0009092153138215843,0.0008993973154361759,0.0008897017998573338,0.0008801269783678537,0.0008706710928973775,0.0008613324154109856,0.0008521092473115441,0.0008429999188559847,0.0008340027885847717,0.0008251162427643237,0.0008163386948422031,0.0008076685849143706,0.0007991043792046676,0.0007906445695558795,0.0007822876729321989,0.18997545844282301,0.1896321750730435,0.18861093787244265,0.18693702600055503,0.18465077448643058,0.18180510467567634,0.17846247427639372,0.17469156364393373,0.17056400281084566,0.16615139163272166,0.16152278959409527,0.1567427696568939,0.15187005622940217,0.14695670971125385,0.1420477824225819,0.13718135198590514,0.13238883471973162,0.12769548865835476,0.1231210289639678,0.11868029413035194,0.11442117244852718,0.11040381312216252,0.10661118938538539,0.10300797364540891,0.09952747448238142,0.09616784287715421,0.09293056219279125,0.08981573359702294,0.0868223428552636,0.08394849098579035,0.08119159124507251,0.07854853550662258,0.07601583334916005,0.07358972718662002,0.07126628663446835,0.06904148507617057,0.0669112611140842,0.0648715672913629,0.06291840817584672,0.06104786961660748,0.05925614072537799,0.05753952990280076,0.05589447602380471,0.05431755571680205,0.052805487516582116,0.05135513353789692,0.0499634992041091,0.0486277314700598,0.04734511589826939,0.04611307288090305,0.0449291532441411,0.043791033425545675,0.04269651037685785,0.041643496313306334,0.04063001340466314,0.0396541884823359,0.03871424781949998,0.03780851202739029,0.036935391099602526,0.036093379627124965,0.03528105219964794,0.03449705900282693,0.03374012161666422,0.03300902901658939,0.03230263377601518,0.031619848467099226,0.030959642254790965,0.030321037678119656,0.029703107611855344,0.029104972401141696,0.02852579716133453,0.02796478923518616,0.027421195799429723,0.026894301612928488,0.02638342689870948,0.025887925352383802,0.025407182269760645,0.024940612786694072,0.024487660224530004,0.024010704042128603,0.023459006619529616,0.022924332527128746,0.022406012545145137,0.021903409168491882,0.021415914878457624,0.020942950518275202,0.02048396376597454,0.020038427698372382,0.019605839440396504,0.019185718894333934,0.018777607543948013,0.018381067328700713,0.017995679583678356,0.01762104404105832,0.017256777889252672,0.016902514886110435,0.01655790452280374,0.016222611235225698,0.015896313659968672,0.015578703932112815,0.015269487022253008,0.01496838011036214,0.01467511199422798,0.014389422530378584,0.014111062105517404,0.013839791136635495,0.01357537959808025,0.013317606573976943,0.013066259834487965,0.012821135434516732,0.012582037333526594,0.012348777035245232,0.01212117324610141,0.01189905155130209,0.011682244107547445,0.011470589351423477,0.011263931722583921,0.011062121400886752,0.010865014056692752,0.010672470613600831,0.010484357022919607,0.010300544049229974,0.010120907066426835,0.009945325863670348,0.009773684460700248,0.00960587093201615,0.009441777239440539,0.009281299072618057,0.009124335697031454,0.00897078980913028,0.008820567398207038,0.008673577614661483,0.008529732644324014,0.00838894758852324,0.008251140349606126,0.008116231521624924,0.007984144285937196,0.007854804311463797,0.007728139659373697,0.0076040806919753165,0.0074825599856008194,0.007363512247292243,0.007246874235098302,0.007132584681806193,0.007020584221944086,0.006910815321890462,0.006803222212948063,0.0066977508272354595,0.0065943487362644816,0.006492965092075904,0.006393550570814565,0.006296057318625732,0.006200438899770482,0.006106650246852894,0.006014647613063627,0.005924388526348495,0.005835831745410975,0.005748937217470228,0.005663666037692076,0.0055799804102190445,0.005497843610729547,0.005417219950454497,0.005338074741592353,0.005260374264056998,0.005184085733502238,0.005109177270566745,0.005035617871287968,0.004963377378631852,0.004892426455094401,0.004822736556326751,0.004754279905741312,0.004687029470058439,0.004620958935751723,0.0045560426863577716,0.004492255780612145,0.00442957393137827,0.004367973485336372,0.004307431403402534,0.00424792524184542,0.004189433134076007,0.004131933773080502,0.004075406394471602,0.004019830760134241,0.003965187142439652,0.003911456309008758,0.0038586195080005745,0.0038066584539062738,0.0037555553138287926,0.0037052926942300053,0.0036558536281253748,0.0036072215627115634,0.00355938034740854,0.0035123142223009067,0.0034660078069641276,0.003420446089659078,0.0033756144168838017,0.0033314984832670397,0.0032880843217916217,0.00324535829433598,0.003203307082520273,0.003161917678848512,0.0031211773781337285,0.003081073769197008,0.0030415947268299048,0.003002728404011634,0.0029644632243701566,0.002926787874880563,0.0028896912987908504,0.002853162688767428,0.002817191480253186,0.0027817673450290636,0.0027468801849742006,0.0027125201260159715,0.002678677512264099,0.002645342900322761,0.0026125070537732597,0.0025801609378232966,0.0025482957141156823,0.0025169027356917225,0.0024859735421038495,0.002455499854672935,0.002425473571884213,0.002395886764918873,0.002366731673315531,0.0023380007007576795,0.002309686410983437,0.0022817815238122645,0.0022542789112865165,0.0022271715939228705,0.0022004527370705004,0.0021741156473724065,0.002148153769327074,0.0021225606819461024,0.0020973300955061396,0.002072455848391176,0.002047931904022559,0.0020237523478743745,0.0019999113845704697,0.0019764033350619004,0.0019532226338813087,0.0019303638264721455,0.0019078215665908182,0.0018855906137783755,0.001863665830901105,0.0018420421817568013,0.0018207147287451408,0.0017996786306001078,0.0017789291401829267,0.0017584616023327976,0.0017382714517748942,0.0017183542110829455,0.0016987054886952499,0.0016793209769825354,0.0016601964503656218,0.0016413277634822379,0.0016227108494008729,0.0016043417178806128,0.001586216453675434,0.0015683312148820493,0.001550682231329235,0.0015332658030084733,0.0015160782985439417,0.0014991161537010386,0.0014823758699324706,0.001465854012960241,0.0014495472113933616,0.001433452155379675,0.0014175655952909547,0.0014018843404406615,0.0013864052578327149,0.001371125270941329,0.0013560413585204014,0.001341150553441854,0.0013264499415620952,0.0013119366606160268,0.0012976078991372693,0.001283460895404686,0.0012694929364138897,0.0012557013568732086,0.0012420835382237463,0.001228636907682192,0.0012153589373066443,0.001202247143084135,0.0011892990840396552,0.0011765123613658901,0.0011638846175734394,0.0011514135356603648,0.0011390968383013394,0.001126932287055312,0.0011149176815913357,0.001103050858932389,0.0010913296927160662,0.0010797520924724492,0.0010683160029182385,0.0010570194032667986,0.0010458603065539795,0.0010348367589787502,0.0010239468392589414,0.0010131886580012146,0.0010025603570851206,0.2284861782776623,0.2280770736368527,0.22686003186800174,0.22486519970953328,0.22214067147913535,0.21874953516597007,0.21476622648352836,0.21027257077609146,0.2053538774814629,0.20009538865836793,0.19457929166759655,0.1888824073967331,0.18307457647642525,0.17721769725273312,0.17136532467442897,0.16556271732182193,0.15984721604006888,0.15424884640483522,0.1487910531779027,0.1434914936900913,0.13841574308585147,0.13362689790234925,0.1291036824411117,0.12481973810186037,0.12069125155572259,0.1167009219222035,0.11285117608415303,0.10914274525779176,0.1055749811200293,0.10214613077733642,0.09885357295743404,0.09569401863177046,0.09266367967919042,0.08975840930550193,0.08697381783786193,0.08430536729231775,0.08174844782188333,0.0792984388298479,0.07695075720458658,0.07470089481562155,0.07254444711507005,0.07047713442041778,0.06849481721519225,0.06659350659366806,0.06476937079320198,0.0630187386004041,0.06133810028323131,0.05972410658725736,0.05817356623827477,0.05668344231298822,0.05525084777206275,0.05387304039386282,0.05254741730069971,0.05127150923102546,0.050042974679282315,0.04885959399926708,0.04771926354545514,0.046619989909469826,0.04555988429477578,0.04453715706120367,0.043550112461845175,0.042597143587374264,0.041676727527063626,0.04078742075112105,0.039927854715301976,0.039096731686023796,0.03829282078198704,0.03751495422675032,0.03676202380551223,0.036032977518563436,0.03532681642326745,0.03464259165619532,0.033979401626811116,0.033336389374137604,0.032712740077923554,0.03210767871597226,0.03152046785958247,0.030950405599269155,0.030396823593270127,0.029838925306495626,0.02916141934914268,0.02850461311766432,0.027867699620278883,0.027249909812649128,0.026650510546991853,0.026068802643215653,0.02550411907443652,0.024955823259751313,0.024423307457526064,0.02390599125291147,0.023403320133690432,0.022914764148910007,0.02243981664515115,0.021977993075572938,0.021528829877208538,0.02109188341227253,0.02066672896952244,0.020252959821948895,0.01985018633735305,0.019458035138550475,0.01907614831017572,0.018704182649258688,0.018341808956904446,0.0179887113686175,0.017644586720933785,0.01730914395219692,0.016982103535443042,0.016663196941499727,0.01635216613050373,0.016048763070189053,0.015752749279370797,0.015463895395164596,0.015181980762577587,0.01490679304517115,0.014638127855608855,0.014375788404946717,0.014119585169609924,0.013869335575066045,0.013624863695249009,0.013385999966872935,0.013152580917800876,0.012924448908700592,0.012701451887257919,0.012483443154269214,0.012270281140960805,0.012061829196943246,0.01185795538822326,0.011658532304740349,0.011463436876927902,0.011272550200815093,0.011085757371234174,0.010902947322703308,0.010724012677591103,0.010548849601187417,0.010377357663329954,0.010209439706245993,0.01004500171830487,0.00988395271337592,0.009726204615515105,0.009571672148716265,0.009420272731470756,0.009271926375907156,0.009126555591281019,0.008984085291604488,0.008844442707218288,0.008707557300109792,0.00857336068280603,0.00844178654066577,0.008312770557411886,0.00818625034375087,0.008062165368936872,0.007940456895138195,0.007821067914483087,0.007703943088656463,0.007589028690932098,0.007476272550531209,0.007365623999196855,0.007257033819890798,0.0071504541975126994,0.007045838671553136,0.006943142090595787,0.006842320568583202,0.006743331442773951,0.006646133233313229,0.0065506856043484425,0.00645694932662235,0.006364886241481637,0.006274459226236755,0.006185632160820155,0.006098369895684464,0.006012638220889411,0.005928403836328726,0.005845634323046094,0.005764298115599423,0.005684364475426704,0.005605803465173606,0.005528585923943096,0.005452683443430617,0.005378068344906034,0.005304713657012164,0.005232593094344088,0.005161681036779156,0.005091952509528685,0.005023383163880048,0.004955949258605658,0.004889627642010044,0.004824395734591065,0.004760231512291268,0.004697113490317448,0.004635020707504159,0.004573932711203607,0.004513829542679486,0.004454691722986366,0.0043965002393172485,0.004339236531799145,0.004282882480723193,0.00422742039419082,0.004172832996161209,0.0041191034148860385,0.004066215171715157,0.004014152170262385,0.003962898685916355,0.003912439355684566,0.0038627591683584885,0.003813843454988967,0.0037656778796587827,0.0037182484305443913,0.003671541411254916,0.0036255434324387868,0.003580241403649698,0.0035356225254606364,0.003491674281819983,0.003448384432639382,0.003405741006605988,0.0033637322942119663,0.003322346840992071,0.003281573440964445,0.0032414011302661907,0.0032018191809775874,0.003162817095128559,0.0031243845988818135,0.003086511636885166,0.0030491883667896733,0.0030124051539262764,0.0029761525661364755,0.0029404213687522526,0.002905202519719106,0.002870487164859271,0.0028362666332693294,0.002802532432848247,0.0027692762459515493,0.0027364899251681855,0.0027041654892146793,0.0026722951189447177,0.002640871153469182,0.0026098860863835133,0.0025793325620995264,0.0025492033722771122,0.0025194914523544087,0.0024901898781719846,0.00246129186268887,0.0024327907527875964,0.002404680026164618,0.0023769532883049344,0.002349604269537248,0.0023226268221675788,0.002296014917688922,0.002269762644065036,0.0022438642030849815,0.0022183139077879394,0.002193106179954861,0.002168235547665552,0.002143696642919483,0.0021194841993174346,0.0020955930498035703,0.0020720181244651605,0.0020487544483886173,0.0020257971395701525,0.0020031414068798197,0.0019807825480764353,0.0019587159478732206,0.0019369370760517059,0.0019154414856228953,0.0018942248110346306,0.0018732827664229002,0.0018526111439071112,0.0018322058119271717,0.0018120627136214414,0.0017921778652448342,0.001772547354624953,0.0017531673396564305,0.001734034046831531,0.0017151437698063573,0.0016964928680015762,0.0016780777652370485,0.0016598949483986212,0.0016419409661372526,0.001624212427598887,0.001606706001184365,0.0015894184133389774,0.001572346447369975,0.0015554869422923618,0.0015388367917014607,0.0015223929426718228,0.001506152394681679,0.001490112198562571,0.0014742694554727774,0.0014586213158948446,0.0014431649786558812,0.0014278976899703036,0.001412816742504608,0.0013979194744629805,0.001383203268694061,0.0013686655518176825,0.001354303793371277,0.0013401155049756392,0.0013260982395189875,0.001312249590359582,0.001298567190545961,0.001285048712054425,0.2748822509635198,0.27439425842175325,0.2729425550036221,0.27056315940974984,0.26731352227422406,0.26326898300878326,0.25851839981263147,0.2531594102376812,0.2472937604874745,0.24102306460338482,0.23444524396890318,0.22765177854473972,0.22072579445357912,0.21374093048599252,0.2067608732085755,0.19983942474691885,0.19302096343583583,0.18634116852414195,0.17982789952550987,0.17350218073786122,0.16745790025517132,0.16175279153755387,0.15636130886665908,0.15126013620799467,0.1463681288176646,0.14163313747920053,0.1370588974993039,0.132647062902109,0.12839758037381002,0.12430901670433027,0.12037884183067694,0.11660367072234394,0.11297946795989842,0.10950171909246671,0.10616557283541361,0.10296595797838258,0.09989767858275826,0.09695549070564285,0.09413416352805627,0.09142852741105656,0.08883351106803095,0.08634416973339815,0.08395570593047237,0.0816634841953925,0.0794630408993539,0.07735009012515448,0.07532052639453238,0.07337042490675416,0.07149603983351141,0.0696938011182627,0.0679603101464348,0.06629233458491461,0.06468680263250126,0.06314079687596409,0.061651547907316216,0.060216427825992784,0.05883294372305552,0.05749873122303995,0.05621154814139009,0.05496926830099442,0.053769875539841375,0.05261145793229612,0.051492202239039886,0.050410388594734935,0.049364385437641205,0.048352644681827324,0.047373697129601156,0.04642614811967229,0.0455086734048657,0.04462001525203723,0.04375897875593794,0.04292442835831048,0.04211528456308285,0.041330520838432416,0.04056916069647774,0.03983027494142559,0.039112979077254306,0.038416430866190156,0.03773982802957213,0.03708240608300528,0.03626151219807586,0.03545450920856171,0.03467170511363461,0.03391217227309778,0.03317502600311065,0.032459422287679465,0.031764555624414534,0.03108965699632181,0.03043399196182128,0.02979685885570265,0.0291775870941672,0.0285755355775042,0.027990091184404025,0.027420667352236843,0.026866702738012116,0.02632765995506013,0.025803024380805728,0.02529230303126485,0.02479502349822865,0.024310732945306068,0.023838997159268946,0.023379399653371737,0.022931540819504125,0.022495037126280624,0.022069520360311998,0.02165463690810307,0.02125004707617783,0.02085542444718973,0.020470455269895636,0.020094837881044617,0.019728282157315494,0.019370508995575717,0.01902124981984335,0.01868024611341209,0.018347248974731344,0.01802201869568421,0.017704324361010795,0.01739394346769906,0.017090661563220054,0.01679427190158365,0.01650457511622135,0.016221378908781302,0.015944497752968623,0.015673752612621408,0.01540897067324547,0.015149985086302718,0.014896634725563724,0.014648763954889059,0.014406222406842962,0.014168864771560468,0.013936550595349503,0.013709144088513092,0.01348651394192201,0.013268533151888112,0.013055078852919927,0.01284603215795259,0.012641278005687635,0.012440705014678151,0.012244205343826378,0.012051674558979144,0.011863011505312573,0.011678118185233823,0.011496899641522918,0.011319263845463385,0.011145121589724655,0.010974386385760626,0.010806974365518918,0.010642804187250027,0.01048179694522556,0.010323876083181168,0.010168967311314064,0.010016998526662912,0.009867899736723253,0.009721602986143463,0.009578042286362685,0.009437153548059737,0.009298874516279334,0.009163144708123992,0.009029905352890825,0.008899099334546724,0.008770671136438297,0.00864456678814005,0.008520733814342013,0.008399121185695291,0.008279679271525068,0.008162359794333118,0.008047115786013852,0.007933901545706787,0.007822672599221824,0.007713385659966541,0.007605998591313983,0.007500470370351959,0.0073967610529522875,0.007294831740111172,0.00719464454550383,0.007096162564205684,0.006999349842531633,0.006904171348950091,0.006810592946023922,0.006718581363342909,0.006628104171403528,0.006539129756400259,0.006451627295893105,0.006365566735313453,0.006280918765279975,0.006197654799689792,0.006115746954555299,0.006035168027559644,0.005955891478299518,0.005877891409193222,0.0058011425470257776,0.005725620225107868,0.005651300366025062,0.005578159464956591,0.005506174573538925,0.005435323284258317,0.0053655837153493095,0.005296934496181887,0.0052293547531199365,0.005162824095831146,0.005097322604035666,0.005032830814674623,0.004969329709484731,0.00490680070296379,0.004845225630714356,0.004784586738149281,0.004724866669549986,0.0046660484574622,0.004608115512418398,0.004551051612976079,0.004494840896058644,0.0044394678475914336,0.004384917293420497,0.004331174390504952,0.004278224618374567,0.00422605377084096,0.004174647947957144,0.004123993548214409,0.004074077260969755,0.004024886059095667,0.00397640719184567,0.003928628177926478,0.0038815367987725426,0.003835121092014368,0.003789369345134837,0.003744270089308057,0.0036998120934128506,0.003655984358217825,0.0036127761107304247,0.003570176798705635,0.003528176085308823,0.00348676384392853,0.0034459301531327494,0.0034056652917663997,0.003365959734183821,0.003326804145612626,0.0032881893776453603,0.003250106463853303,0.0032125466155208072,0.0031755012174947937,0.003138961824146512,0.0031029201554423854,0.0030673680931193516,0.0030322976769633064,0.0029977011011861738,0.0029635707108990835,0.002929898998678694,0.0028966786012243136,0.002863902296101767,0.002831562998573243,0.0027996537585092164,0.0027681677573804806,0.002737098305328288,0.0027064388383090977,0.0026761829153134,0.002646324215655259,0.002616856536330866,0.0025877737894441544,0.002559069999697838,0.0025307393019469064,0.0025027759388142915,0.0024751742583658805,0.002447928711843383,0.0024210338514539863,0.00239448432821395,0.002368274889846118,0.002342400378728809,0.002316855729894916,0.002291635969080211,0.0022667362108184795,0.0022421516565835076,0.002217877592975628,0.00219390938995203,0.0021702424990994525,0.0021468724519485838,0.00212379485832792,0.0021010054047574615,0.0020784998528800753,0.0020562740379299494,0.002034323867237311,0.002012645318767677,0.001991234439695795,0.001970087345012553,0.0019492002161641815,0.001928569299723308,0.0019081909060900647,0.0018880614082236104,0.001868177240402505,0.0018485348970134344,0.0018291309313674367,0.0018099619545433585,0.001791024634256873,0.0017723156937555801,0.0017538319107386945,0.0017355701163009438,0.0017175271939003475,0.0016997000783484564,0.0016820857548235394,0.001664681257905388,0.0016474836706314418,0.33080202043730234,0.3302193034226019,0.3284858513472454,0.3256447927862365,0.321764901269694,0.3169363314180477,0.31126536484714856,0.30486871880266436,0.2978679459176662,0.2903843589998246,0.28253477994779,0.2744282677375468,0.26616385173054347,0.2578291983013566,0.2495000760145742,0.2412404547768771,0.23310307064207045,0.22513030188050037,0.21735522571507546,0.20980500237178024,0.20261062773964728,0.19581627097641058,0.1893920032127456,0.1833106511609927,0.1775148816355723,0.1719026036621653,0.1664730591823501,0.161229221714759,0.15617195115442967,0.1513003830279189,0.14661226730471147,0.14210425985690667,0.13777217055617663,0.13361117242000128,0.12961597630805172,0.12578097553624532,0.12210036450320887,0.11856823507334964,0.11517865407510965,0.1119257248828736,0.10880363567392369,0.10580669660072631,0.10292936779906353,0.10016627986636313,0.0975122481930587,0.09496228230980146,0.09251159122408724,0.09015558555732278,0.08788987715494406,0.08571027672534681,0.08361278996441725,0.08159361253979655,0.07964912423965488,0.07777588253312878,0.07597061574147565,0.07423021597952885,0.07255173199404143,0.07093236199867767,0.06936944658322844,0.06786046175647069,0.06640301216749898,0.06499482453821392,0.06363374133009178,0.062317714660594464,0.061044800478269254,0.0598131530008529,0.05862101941665132,0.05746673484658149,0.05634871756192497,0.055265464451145316,0.05421554672779771,0.05319760587078544,0.05221034978751643,0.051252549190236744,0.050323034175645716,0.04942069099784606,0.04854445902487127,0.04769332786913641,0.04686633468247188,0.046062561606686786,0.04510492400937793,0.04411317977100029,0.04315087417833422,0.04221688845789092,0.04131015521692156,0.040429655730919695,0.039574417388413746,0.03874351128358846,0.03793604994772185,0.03715118521101367,0.036388106186875914,0.035646037371197314,0.034924236849618234,0.03422199460621472,0.03353863092743693,0.032873494895514874,0.03222596296592521,0.03159543762380695,0.030981346114606213,0.030383139244456722,0.02980029024612895,0.029232293706638338,0.02867866455281934,0.028138937091460762,0.027612664100755725,0.027099415970058962,0.026598779885118152,0.026110359056138555,0.025633771986171054,0.025168651777523764,0.024714645473989792,0.024271413436847293,0.02383862875271595,0.02341597667144603,0.023003154072370028,0.022599868957309754,0.02220583996884995,0.02182079593248183,0.02144447542128284,0.021076626341913998,0.02071700554075631,0.0203653784290965,0.02002151862633003,0.019685207620219674,0.019356234443282192,0.019034395364463847,0.018719493595283337,0.018411339009684016,0.01810974787688384,0.017814542606531963,0.01752555150555481,0.017242608546074078,0.016965553143837644,0.016694229946624974,0.016428488632127515,0.016168183714815203,0.01591317436135424,0.01566332421413928,0.015418501222541754,0.015178577481497564,0.014943429077064804,0.014712935938624933,0.014486981697395785,0.014265453550955773,0.014048242133493356,0.01383524139150111,0.013626348464666949,0.013421463571709466,0.01322048990092839,0.013023333505249335,0.012829903201557887,0.012640110474116287,0.012453869381886317,0.0122710964695725,0.01209171068221848,0.011915633283198881,0.011742787775447022,0.01157309982578288,0.011406497192196531,0.011242909653959191,0.011082268944436608,0.010924508686488603,0.01076956433033621,0.010617373093797603,0.010467873904784727,0.010321007345965291,0.01017671560150012,0.010034942405761563,0.009895632993957362,0.009758734054573536,0.00962419368356296,0.009491961340208022,0.00936198780458308,0.009234225136557746,0.009108626636272791,0.00898514680603035,0.008863741313540476,0.00874436695647145,0.008626981628246122,0.008511544285041278,0.008398014913937078,0.008286354502172877,0.008176525007466904,0.008068489329353912,0.007962211281506957,0.007857655565000307,0.007754787742478976,0.007653574213201123,0.007553982188915615,0.0074559796705487,0.007359535425664803,0.007264618966673622,0.007171200529755347,0.00707925105447841,0.006988742164079924,0.006899646146389764,0.006811935935370449,0.006725585093251334,0.006640567793236909,0.006556858802764312,0.006474433467295301,0.006393267694619349,0.006313337939651368,0.006234621189705596,0.006157094950230166,0.0060807372309825735,0.006005526532634974,0.0059314418337909095,0.00585846257840003,0.005786568663558111,0.005715740427675822,0.00564595863900762,0.005577204484525265,0.005509459559125246,0.0054427058551596635,0.00537692575227662,0.005312102007563532,0.005248217745980333,0.005185256451073924,0.005123201955964018,0.005062038434592622,0.005001750393225616,0.004942322662201687,0.004883740387917707,0.0048259890250439905,0.004769054328962535,0.004712922348418486,0.004657579418381426,0.004603012153107104,0.004549207439394248,0.00449615243002981,0.00444383453741761,0.004392241427382444,0.004341361013146774,0.0042911814494727115,0.004241691126964558,0.004192878666527834,0.004144732913977646,0.004097242934794641,0.004050398009021888,0.004004187626299122,0.0039586014810306415,0.003913629467681011,0.003869261676197095,0.003825488387550919,0.0037823000694000852,0.0037396873718624425,0.003697641123401944,0.0036561523268207035,0.0036152121553565514,0.003574811948881113,0.0035349432101959536,0.003495597601424743,0.0034567669404965895,0.003418443197720397,0.0033806184924458542,0.0033432850898090947,0.0033064353975605547,0.0032700619629731495,0.0032341574698270033,0.0031987147354705756,0.0031637267079543847,0.0031291864632360055,0.0030950872024546067,0.003061422249271657,0.003028185047277971,0.002995369157463687,0.0029629682557500243,0.0029309761305813522,0.0028993866805748503,0.0028681939122276903,0.0028373919376789495,0.002806974972525286,0.002776937333688748,0.002747273437335732,0.0027179777968445304,0.0026890450208217707,0.0026604698111652417,0.0026322469611721826,0.002604371353692331,0.002576837959323278,0.0025496418346485634,0.002522778120516304,0.002496242040357569,0.0024700288985438786,0.0024441340787817027,0.002418553042544413,0.0023932813275397056,0.002368314546211887,0.0023436483842781113,0.002319278599298002,0.002295201019274815,0.002271411541288737,0.002247906130160395,0.002224680817144212,0.002201731698651184,0.0021790549349992735,0.0021566467491921475,0.0021345034257244672,0.002112621309413489,0.29568009889331637,0.2953420482369449,0.2943334990668217,0.2926710156955008,0.29038141188912037,0.28750062871808746,0.2840722903461378,0.28014604494417855,0.2757758046333738,0.27101799321688946,0.26592989569207753,0.26056818239683033,0.2549876566666924,0.24924025124280244,0.24337427779227128,0.23743391725946497,0.23145892694422662,0.22548453306273378,0.21954147446755576,0.21365616331320358,0.20785093081972605,0.20214433004712085,0.19655147203546117,0.19108437624551722,0.18575654822999693,0.1806462501151726,0.17576867560233678,0.17110933346468224,0.16665486010273817,0.16238929608827485,0.15824857487208505,0.15421499333119076,0.1502905315797459,0.14647624754540906,0.1427724122233464,0.13917863134045125,0.13569395385912217,0.13231696800010948,0.12904588562297326,0.12587861589183522,0.12281282918949943,0.11984601224003043,0.11697551536936895,0.11419859278459228,0.11151243669257699,0.10891420601231185,0.10640105036692081,0.1039701299735798,0.10161863198404743,0.09934378376706361,0.09714286356637734,0.09501320891582726,0.09295222314524543,0.09095738026816758,0.08902622850400659,0.087156392653601,0.08534557551688605,0.08359155851522866,0.08189220165787182,0.08024544297175074,0.07864929749658185,0.07710185593176279,0.0756012830086146,0.07414581565009688,0.07273376097031388,0.07136349415784586,0.07003345627959855,0.06874215203576968,0.06748814749123914,0.06627006780419767,0.06508659496894385,0.06393646558664767,0.06281846867498911,0.06173144352534004,0.060674277614173544,0.059645904573695493,0.058645302225395386,0.05767149067898003,0.056715163686041854,0.05550337976047299,0.05432604453960656,0.05318193075197378,0.05206986225082196,0.05098871170303098,0.049937398379182665,0.04891488604188666,0.04792018092919298,0.04695232982990056,0.046010418247376984,0.045093568648515624,0.04420093879446264,0.0433317201496924,0.04248513636616005,0.041660441839220796,0.04085692033213977,0.040073883666076705,0.03931067047254343,0.038566645005388325,0.037841196009536386,0.037133735643747584,0.03644369845480259,0.035770540400638,0.0351137379200073,0.0344727870464333,0.03384720256423464,0.03323651720456556,0.032640280879478345,0.03205805995213101,0.03148943654131913,0.030934007858652676,0.0303913855767286,0.0298611952267628,0.029343075624218097,0.02883667832101519,0.028341667083030184,0.027857717391601828,0.027384515967862462,0.026921760318769687,0.0264691583037448,0.026026427720926972,0.025593295912057886,0.02516949938509065,0.024754783453649863,0.024348901892528273,0.023951616608421454,0.023562697325182624,0.023181921282878236,0.02280907294998399,0.022443943748094972,0.022086331788533975,0.02173604162031139,0.02139288398888049,0.021056675605182977,0.02072723892449729,0.02040440193463386,0.02008799795302538,0.01977786543231601,0.01947384777404043,0.01917579315002303,0.018883554331145667,0.018596988523132938,0.018315957209051416,0.018040325998204085,0.01776996448113499,0.017504746090471687,0.017244547967332352,0.016989250833062897,0.016738738866056063,0.01649289958343168,0.016251623727361286,0.01601480515583794,0.015782340737685873,0.015554130251639186,0.015330076289302694,0.015110084161830949,0.014894061810168323,0.014681919718688851,0.014473570832103209,0.014268930475484528,0.01406791627728618,0.013870448095223132,0.013676447944901755,0.013485839931074214,0.013298550181420439,0.013114506782744232,0.012933639719488198,0.012755880814473926,0.012581163671769952,0.012409423621611123,0.01224059766727894,0.0120746244338666,0.011911444118855738,0.011750998444425764,0.011593230611435978,0.011438085255008147,0.011285508401648865,0.011135447427850654,0.010987851020116983,0.010842669136349615,0.010699852968553561,0.010559354906803542,0.010421128504425177,0.010285128444346736,0.010151310506571093,0.010019631536733718,0.009890049415699478,0.00976252303016164,0.009637012244207644,0.009513477871809834,0.009391881650214718,0.009272186214191954,0.009154355071113668,0.009038352576833488,0.00892414391233777,0.008811695061136493,0.008700972787373466,0.008591944614625285,0.008484578805366093,0.008378844341075966,0.008274710902965344,0.008172148853300313,0.008071129217302448,0.007971623665605663,0.007873604497249309,0.007777044623191353,0.007681917550318835,0.007588197365944533,0.0074958587227686255,0.007404876824291291,0.007315227410661757,0.00722688674494562,0.007139831599801,0.007054039244546301,0.006969487432607732,0.0068861543893348615,0.006804018800168799,0.006723059799155811,0.006643256957791571,0.006564590274186668,0.006487040162542182,0.006410587442927006,0.006335213331343339,0.006260899430075868,0.006187627718311868,0.0061153805430250105,0.006044140610115129,0.005973890975793112,0.005904615038206803,0.005836296529297739,0.005768919506882314,0.00570246834695009,0.005636927736173763,0.005572282664621042,0.00550851841866642,0.005445620574093344,0.005383574989382325,0.0053223677991798895,0.005261985407940466,0.005202414483739142,0.005143641952247795,0.005085654990870467,0.0050284410230339045,0.004971987712626282,0.004916282958583003,0.004861314889612545,0.004807071859059453,0.004753542439899961,0.004700715419867236,0.004648579796700319,0.004597124773516066,0.004546339754298196,0.0044962143395010775,0.004446738321765299,0.004397901681739885,0.00434969458401101,0.0043021073731317715,0.004255130569751301,0.0042087548668398875,0.004162971126008321,0.004117770373916818,0.004073143798773618,0.004029082746918683,0.003985578719491039,0.003942623369177778,0.003900208497040797,0.003858326049421432,0.00381696811491924,0.0037761269214431938,0.0037357948333342065,0.0036959643485551035,0.003656628095948564,0.0036177788325595446,0.0035794094410210296,0.0035415129270012255,0.003504082416711317,0.0034671111544702744,0.0034305925003277,0.003394519927741259,0.0033588870213079615,0.0033236874745483564,0.003288915087740728,0.0032545637658059237,0.003220627516240109,0.0031871004470946534,0.0031539767650023724,0.003121250773247537,0.0030889168698804235,0.00305696954587382,0.0030254033833210024,0.002994213053673934,0.002963393316021158,0.002932939015403135,0.002902845081165802,0.0028731065253500094,0.002843718441116477,0.0028146760012057468,0.0027859744564310324,0.0027576091342047257,0.0027295754370966273,0.002701868841423495,0.2974609963985053,0.2971229878011862,0.29611458881942726,0.29445243301739554,0.2921634407051119,0.2892836847921329,0.2858569321554521,0.28193296954633945,0.2775658296882491,0.2728120277279531,0.26772890293381113,0.2623731388481826,0.25679951062619794,0.2510598842762214,0.24520247140591045,0.23927132634707235,0.2333060607417837,0.22734174364709636,0.22140895229539953,0.21553393892919484,0.20973888165473656,0.2040421911535565,0.19845884963473373,0.19300076306029634,0.18768652431648356,0.18259752035299623,0.17773857470293655,0.17309542777329162,0.16865492596829662,0.1644049199696265,0.1603074812843987,0.1563123147627528,0.15242089627605085,0.14863473281043782,0.14495451849692403,0.1413802554269401,0.1379113619977492,0.13454676930185627,0.13128500626205009,0.12812427432784945,0.12506251260670537,0.12209745431887849,0.11922667545027171,0.1164476364415083,0.11375771770232769,0.11115424968252839,0.10863453816925311,0.10619588541803038,0.10383560766361363,0.10155104949846523,0.09933959555165633,0.0971986798503632,0.09512579319977803,0.09311848887537931,0.09117438688372989,0.08929117701458439,0.08746662087709688,0.08569855308675199,0.08398488174649399,0.0823235883452088,0.08071272717919463,0.07915042438670836,0.0776348766724062,0.07616434978693049,0.0747371768168182,0.07335175633140717,0.07200655042588913,0.07070008269332465,0.06943093615297997,0.06819775115766702,0.06699922329870946,0.06583410132388544,0.06470118508065403,0.06359932349461593,0.06252741259103835,0.06148439356549431,0.06046925090825919,0.059481010585782576,0.05851873828157316,0.057348246861673675,0.056146592616371505,0.054978486683721475,0.05384275308189732,0.05273826409327294,0.05166393811416699,0.05061873759719244,0.049601667083583996,0.048611771322788454,0.04764813347636667,0.04670987340323553,0.04579614602322249,0.04490613975584749,0.04403907503134191,0.043194202870864604,0.04237080353296906,0.04156818522342784,0.04078568286560981,0.04002265692862962,0.03927849231067506,0.038552597274906265,0.03784440243547768,0.03715335979131799,0.036478941805359245,0.03582064052707233,0.03517796675618991,0.03455044924562859,0.033937633941700796,0.033339083259802615,0.0327543753938169,0.032183103657612885,0.03162487585703917,0.031079313690919513,0.030546052179634953,0.030024739119911808,0.02951503456455801,0.029016610325899157,0.028529149501760553,0.028052346022896194,0.027585904220794617,0.02712953841489468,0.02668297251824334,0.02624593966070851,0.02581818182889017,0.025399449521931405,0.02498950142244169,0.024588104081830098,0.024195031619339148,0.023810065434129103,0.0234329939297959,0.02306361225071624,0.02270172202968033,0.022347131146263185,0.02199965349543711,0.021659108765941723,0.02132532222796276,0.020998124529672594,0.02067735150223933,0.020362843972901702,0.020054447585741802,0.019752012629808618,0.01945539387424375,0.019164450410108697,0.018879045498597584,0.01859904642535255,0.018324324360611457,0.01805475422491568,0.01779021456014717,0.01753058740564602,0.017275758179190186,0.017025615562621357,0.016780051391919768,0.016538960551522035,0.016302240872713234,0.016069793035907023,0.01584152047664979,0.01561732929519319,0.015397128169473702,0.015180828271367033,0.014968343186069998,0.01475958883448198,0.014554483398462766,0.014352947248839,0.01415490287605619,0.013960274823359204,0.013768989622399955,0.013580975731172997,0.013396163474186472,0.013214484984770052,0.013035874149444973,0.012860266554264107,0.012687599433047236,0.012517811617437475,0.012350843488700098,0.012186636931203847,0.012025135287512487,0.011866283315025426,0.011710027144106759,0.011556314237647452,0.011405093351998996,0.011256314499233977,0.011109928910677072,0.010965889001659467,0.010824148337453016,0.010684661600332714,0.010547384557733866,0.010412274031456552,0.010279287867880718,0.010148384909153619,0.010019524965316278,0.009892668787328265,0.00976777804096556,0.009644815281554298,0.00952374392951136,0.009404528246664927,0.009287133313321377,0.009171525006058445,0.009057669976214296,0.008945535629048422,0.00883509010355317,0.008726302252887534,0.008619141625417817,0.008513578446339405,0.008409583599860958,0.008307128611931346,0.008206185633491798,0.008106727424231285,0.008008727336833448,0.007912159301694005,0.007816997812094134,0.007723217909815776,0.007630795171179703,0.00753970569349786,0.0074499260819218425,0.007361433436675729,0.0072742053406619316,0.0071882198474235715,0.007103455469457239,0.007019891166860311,0.006937506336303757,0.006856280800319438,0.006776194796892573,0.006697228969346821,0.006619364356516552,0.006542582383194007,0.006466864850843513,0.006392193928575573,0.006318552144369327,0.0062459223765395045,0.006174287845437616,0.006103632105380655,0.0060339390368003894,0.005965192838607129,0.0058973780207587185,0.005830479397032117,0.005764482077988551,0.005699371464127323,0.005635133239223174,0.005571753363839427,0.005509218069014501,0.005447513850114638,0.005386627460848032,0.005326545907437007,0.005267256442940507,0.005208746561726123,0.00515100399408454,0.005094016700983305,0.005037772868955455,0.004982260905119984,0.004927469432328075,0.004873387284434293,0.004820003501687213,0.0047673073262363705,0.004715288197753216,0.004663935749160555,0.004613239802470088,0.0045631903647232845,0.004513777624032832,0.004464991945722255,0.004416823868561242,0.0043692641010921575,0.004322303518047955,0.0042759331568567914,0.004230144214231707,0.004184928042843582,0.004140276148073232,0.004096180184842955,0.00405263195452348,0.004009623401914934,0.003967146612300254,0.0039251938085675476,0.0038837573484016125,0.003842829721541315,0.0038024035471014325,0.003762471570957236,0.0037230266631907392,0.003684061815595283,0.0036455701392391405,0.0036075448620849853,0.003569979326664209,0.0035328669878052447,0.003496201410412873,0.0034599762672993355,0.003424185337064209,0.003388822502022645,0.003353881746180169,0.0033193571532538317,0.003285242904736751,0.003251533278006989,0.003218222644478242,0.0031853054677917158,0.0031527763020484482,0.003120629790080093,0.0030888606617584828,0.0030574637323420896,0.0030264339008587177,0.0029957661485238802,0.0029654555371929118,0.0029354972078474402,0.0029058863791142997,0.002876618345816447,0.299461637909721,0.2991230498940944,0.29811295511698566,0.2964481105398071,0.29415562939691314,0.291271829711461,0.2878407545901089,0.2839124758198745,0.2795412988214967,0.27478398109240043,0.26969806035723687,0.2643403662404571,0.25876576413837593,0.2530261554329885,0.24716973674602888,0.24124050405498618,0.23527797571126588,0.22931710149665557,0.22338832211788678,0.21751774402753013,0.2117273971825505,0.20603554741701072,0.20045703978260196,0.19500365395560998,0.18970331893280284,0.18463546462432573,0.17979500426870237,0.17516790951417552,0.17074123641974648,0.166503025989845,0.16243760837048418,0.15848407803979356,0.15462853350262887,0.15087296395186472,0.147218518287912,0.14366562486352175,0.14021409953612401,0.13686324235901387,0.1336119234604467,0.13045865880170654,0.1274016765865489,0.12443897513104428,0.12156837300542549,0.11878755223824759,0.1160940953358607,0.11348551682194605,0.11095928994823498,0.10851286917117398,0.10614370893274762,0.10384927922907244,0.10162707839805471,0.09947464350891197,0.09738955869139954,0.09536946170178301,0.09341204898546243,0.09151507946322152,0.08967637723826231,0.08789383339509198,0.0861654070381289,0.08448912569745669,0.08286308521143185,0.0812854491801206,0.0797544480700046,0.07826837803861511,0.07682559953739644,0.07542453574240335,0.07406367085463353,0.0727415483052646,0.07145676889540228,0.07020798889504959,0.06899391812178637,0.06781331801620284,0.06666499972792173,0.06554782222354828,0.06446069042565203,0.06340255338995544,0.06237240252641654,0.06136926986845241,0.06039222639348463,0.05928479853524874,0.058057786391622235,0.05686466252088218,0.05570425113987013,0.0545754241501911,0.053477099051338364,0.052408236940383705,0.05136784059616756,0.05035495264580112,0.04936865381099512,0.04840806123166914,0.047472326864193254,0.04656063595152635,0.045672205562571906,0.0448062831979921,0.04396214545979433,0.0431390967820229,0.04233646821996237,0.041553616295265244,0.040789921894573575,0.04004478921919193,0.03931764478349904,0.03860793645986116,0.03791513256785658,0.0372387210057727,0.036578208422348685,0.035933119426870115,0.03530299583577436,0.03468739595403355,0.03408589388961429,0.03349807889945403,0.03292355476540825,0.03236193919872325,0.03181286327166306,0.03127597087495185,0.030750918199808425,0.030237373243360125,0.029735015336311742,0.029243534691795976,0.028762631974365436,0.028292017888176545,0.02783141278342256,0.027380546280145,0.026939156908586375,0.026506991765299276,0.02608380618423986,0.02566936342215715,0.025263434357578104,0.024865797202752803,0.024476237227949154,0.02409454649750266,0.02372052361708782,0.02335397349167041,0.022994707093650226,0.022642541240716157,0.022297298382971238,0.021958806398884367,0.021626898399682397,0.02130141254178137,0.020982191846894965,0.020669084029475208,0.02036194133114039,0.020060620361793038,0.019764981947112917,0.01947489098214641,0.019190216290721946,0.018910830490423615,0.01863660986289155,0.01836743422920277,0.018103186830116188,0.017843754210966126,0.017589026111007874,0.017338895357011542,0.017093257760935655,0.01685201202149465,0.01661505962945789,0.01638230477652429,0.01615365426761181,0.015929017436431075,0.01570830606419479,0.015491434301335918,0.015278318592112494,0.015068877601969788,0.01486303214755882,0.014660705129293154,0.014461821466343094,0.014266308033968193,0.014074093603095299,0.013885108782044435,0.013699285960326565,0.013516559254422512,0.013336864455466859,0.01316013897876374,0.012986321815054836,0.012815353483480833,0.012647175986162478,0.012481732764340902,0.012318968656016565,0.012158829855030993,0.012001263871529397,0.011846219493760062,0.011693646751153612,0.01154349687863469,0.011395722282122664,0.011250276505169757,0.01110711419670255,0.010966191079819493,0.01082746392160765,0.010690890503940387,0.010556429595221796,0.01042404092303803,0.010293685147689507,0.010165323836566702,0.010038919439340523,0.00991443526394022,0.009791835453284617,0.009671084962747446,0.009552149538324839,0.009434995695482354,0.009319590698658793,0.009205902541399153,0.009093899927100958,0.008983552250347904,0.008874829578812344,0.008767702635706321,0.008662142782764021,0.008558122003733081,0.008455612888363205,0.008354588616870832,0.00825502294486525,0.008156890188721854,0.008060165211383398,0.00796482340858072,0.007870840695454446,0.00777819349356595,0.007686858718286031,0.007596813766545004,0.007508036504937275,0.007420505258165357,0.007334198797813487,0.0072490963314399285,0.007165177491978812,0.007082422327438372,0.007000811290890506,0.0069203252307390335,0.006840945381258829,0.006762653353398546,0.006685431125835099,0.006609261036276552,0.006534125773002289,0.0064600083666344465,0.006386892182132859,0.006314760911008073,0.006243598563742353,0.00617338946241667,0.0061041182335341004,0.006035769801034766,0.005968329379497493,0.005901782467519546,0.005836114841273065,0.00577131254822988,0.005707361901050738,0.005644249471634866,0.005581962085322487,0.005520486815249244,0.005459810976845564,0.005399922122477512,0.005340808036224867,0.005282456728793358,0.005224856432554613,0.0051679955967135136,0.005111862882596782,0.005056447159060128,0.0050017374980113275,0.00494772317004363,0.0048943936401795035,0.004841738563719066,0.004789747782191466,0.004738411319405762,0.004687719377599552,0.004637662333680384,0.004588230735560176,0.004539415298578101,0.0044912069020100216,0.004443596585662866,0.00439657554654955,0.004350135135644931,0.004304266854718643,0.004258962353243243,0.004214213425376405,0.0041700120070132605,0.004126350172909318,0.004083220133870535,0.004040614234009143,0.003998524948063441,0.00395694487878054,0.0039158667543585796,0.003875283425949181,0.0038351878652169097,0.00379557316195471,0.003756432521754445,0.003717759263729517,0.0036795468182902876,0.0036417887249694464,0.0036044786302965423,0.003567610285720254,0.003531177545577914,0.0034951743651093045,0.0034595947985158583,0.003424432997062509,0.003389683207221535,0.0033553397688579653,0.003321397113453991,0.003287849762373275,0.003254692325162844,0.0032219194978919266,0.0031895260615275793,0.003157506880344392,0.003125856900369705,0.0030945711478617276,0.0030636447278205615,0.30170839562639457,0.3013685173155148,0.300354615524519,0.2986836334298443,0.2963829773214623,0.2934893414778491,0.2900471995564447,0.286107077310963,0.2817237278726744,0.27695432436842565,0.27185676791090774,0.26648818567015015,0.26090366774031787,0.2551552662999046,0.24929125867180166,0.24335565880153548,0.23738794987759393,0.2314230040456072,0.22549115264839492,0.2196183711618259,0.213826545963519,0.20813379434958318,0.20255481406231918,0.19710124346160793,0.19181516634291845,0.18676604225283738,0.18194184420284787,0.17732875700230144,0.17291403012051762,0.16868588027074724,0.16463340419351716,0.16072403132340454,0.15690800111616393,0.1531862529968817,0.14956042417191096,0.1460314014085633,0.14259942854628482,0.1392642033316945,0.1360249639563783,0.1328805658481373,0.12982954937406205,0.12687019917325057,0.12400059585912429,0.12121866082620478,0.11852219487231358,0.11590891130993594,0.11337646419557824,0.1109224722565804,0.10854453904379366,0.10624026978812853,0.10400728538989189,0.10184323392369705,0.09974579999856982,0.0977127122732572,0.0957417493904643,0.09383074456133418,0.09197758900194736,0.0901802343976398,0.08843669454773509,0.08674504632269135,0.08510343004782217,0.08351004941174488,0.08196317098396709,0.0804611234139645,0.07900229637347551,0.07758513929481155,0.07620815994987663,0.07486992290787678,0.07356904790374325,0.07230420814424203,0.07107412857427903,0.06987758412229401,0.06871339794026857,0.06758043965119373,0.06647762361449991,0.06540390721784496,0.0643582892021092,0.0633398080248343,0.06234754026622933,0.06131821453083322,0.06006477919426546,0.05884558383530836,0.05765945304666424,0.05650525848413848,0.05538191684790764,0.054288387943806936,0.053223672823201625,0.05218681199982068,0.05117688374157961,0.050193002435297784,0.04923431702209032,0.04830000950106111,0.047389293498968935,0.046501412903404135,0.04563564055707143,0.0447912770107626,0.04396764933264886,0.04316410997151394,0.0423800356716772,0.041614826437342496,0.04086790454419825,0.0401387135961819,0.03942671762533467,0.038731400232825564,0.038052263769219954,0.03738882855218678,0.036740632119898135,0.036107228518452494,0.0354881876216995,0.03488309448196597,0.0342915487101921,0.03371316388409111,0.03314756698300215,0.032594397848142824,0.03205330866707961,0.031523963481235706,0.03100603771534462,0.03049921772780934,0.03000320038094753,0.029517692630203256,0.029042411131401248,0.028577081865195378,0.02812143977788961,0.02767522843786717,0.027238199706867864,0.02681011342543963,0.026390737111879278,0.02597984567403371,0.02557722113336692,0.02518265236070188,0.024795934823117798,0.024416870341467074,0.024045266858028696,0.023680938213827704,0.02332370393518321,0.02297338902904705,0.022629823786752604,0.022292843595776195,0.021962288759152553,0.02163800432220481,0.0213198399062455,0.021007649548954885,0.020701291551125506,0.020400628329494054,0.020105526275396024,0.0198158556189733,0.019531490298708362,0.019252307836038797,0.018978189214836946,0.018709018765541537,0.018444684053744914,0.01818507577303381,0.017930087641915254,0.01767961630464352,0.017433561235785665,0.017191824648370886,0.01695431140546312,0.016720928935026417,0.016491587147936287,0.016266198359009304,0.016044677210926388,0.015826940600932083,0.015612907610189226,0.015402499435691023,0.015195639324617942,0.014992252511044087,0.014792266154900221,0.01459560928309526,0.01440221273272076,0.014212009096247103,0.014024932668635987,0.01384091939629519,0.013659906827796487,0.013481834066297493,0.0133066417235937,0.01313427187574048,0.012964668020183711,0.012797775034343487,0.01263353913558866,0.012471907842558768,0.012312829937774432,0.012156255431491061,0.012002135526750383,0.011850422585578847,0.01170107009629863,0.01155403264190398,0.011409265869464882,0.011266726460522914,0.011126372102436666,0.010988161460649985,0.010852054151843949,0.010718010717942334,0.01058599260093973,0.010455962118524448,0.010327882440462902,0.010201717565725044,0.010077432300319843,0.009954992235816832,0.009834363728532039,0.009715513879349524,0.009598410514163179,0.009483022164912447,0.009369318051193256,0.009257268062423767,0.009146842740547908,0.009038013263253347,0.008930751427693298,0.008825029634689521,0.008720820873402858,0.008618098706456145,0.00851683725549073,0.0084170111871475,0.00831859569945416,0.008221566508606898,0.008125899836134496,0.00803157239642875,0.007938561384634113,0.00784684446488138,0.0077563997588552805,0.007667205834685435,0.007579241696150922,0.0074924867721855035,0.0074069209066782845,0.007322524348557043,0.007239277742146368,0.007157162117793181,0.00707615888274779,0.0069962498122969445,0.006917417041137846,0.006839643054986745,0.006762910682414587,0.006687203086904043,0.006612503759117711,0.006538796509375537,0.006466065460331699,0.006394295039846161,0.006323469974045833,0.006253575280566719,0.006184596261975617,0.006116518499362996,0.006049327846102825,0.0059830104217756955,0.005917552606247138,0.005852941033900666,0.005789162588017987,0.005726204395303287,0.005664053820547013,0.0056026984614262,0.005542126143434661,0.00548232491494286,0.005423283042381176,0.0053649890055437206,0.005307431493010424,0.005250599397681113,0.005194481812422117,0.005139068025819462,0.00508434751803685,0.005030309956775016,0.0049769451933306,0.004924243258749561,0.004872194360075442,0.0048207888766875675,0.004770017356727639,0.0047198705136128165,0.004670339222630816,0.004621414517617812,0.004573087587714483,0.004525349774199015,0.004478192567395583,0.004431607603654229,0.004385586662402973,0.0043401216632681615,0.0042952046632620715,0.00425082785403571,0.004206983559195877,0.0041636642316828214,0.004120862451209547,0.004078570921759098,0.004036782469139163,0.003995490038592833,0.003954686692462563,0.0039143656079080056,0.003874520074674943,0.0038351434929141982,0.0037962293710501033,0.0037577713236954667,0.0037197630696140325,0.0036821984297276743,0.0036450713251677852,0.0036083757753695603,0.0035721058962087074,0.0035362558981779585,0.0035008200846045013,0.003465792849905672,0.0034311686778826836,0.0033969421400515945,0.0033631078940094825,0.0033296606818367085,0.003296595328532993,0.003263906740486986,0.3042319754383903,0.30388998747399343,0.30286984571679837,0.3011887532257856,0.29887452665766706,0.29596438996673813,0.29250342755426584,0.2885428159271848,0.28413795922715296,0.27934664684291793,0.2742273335384676,0.2688376180291033,0.2632329688457039,0.25746572023660474,0.25158433838346456,0.24563294083357687,0.23965104022347752,0.23367347674692518,0.2277305015593106,0.22184797435290493,0.21604764160430956,0.21034746653843708,0.20476198691496666,0.19930268177208857,0.19403186518807652,0.18899850566128917,0.18418783859306964,0.17958624084085048,0.17518113628752938,0.17096090024015803,0.16691477381855593,0.16303173537324822,0.15925962380913009,0.15557562281283352,0.15198189458269437,0.148479819892672,0.1450701046928979,0.1417528768326102,0.13852777309375094,0.1353940169270998,0.132350487419414,0.12939578010462216,0.126528260275905,0.12374610946874721,0.12104736577627502,0.11842995863354036,0.11589173867248244,0.11343050320812165,0.11104401787178785,0.10873003486173635,0.10648630823625842,0.10431060663108928,0.10220072374187483,0.10015448687435358,0.09816976382968508,0.09624446836059915,0.0943765644049426,0.0925640692773685,0.09080505597676891,0.08909765474638859,0.08744005400551402,0.08583050075545172,0.0842673005484945,0.08274881709624639,0.08127347158279814,0.07983974173899905,0.07844616072572973,0.07709131586709385,0.0757738472682386,0.07449244634722656,0.0732458543057197,0.07203286055938435,0.07085230114540214,0.06970305712160747,0.06858405296925545,0.06749425500921402,0.06643266983964426,0.06539834280155007,0.0643903564773206,0.0634078292262187,0.06217556917498817,0.06092915634766698,0.05971617278627215,0.0585354901072808,0.057386024370880626,0.05626673420909843,0.055176619026063925,0.0541147172693994,0.05308010477132387,0.05207189315788226,0.05108922832453385,0.0501312889761395,0.049197285229386885,0.048286457275529056,0.047398074101336486,0.04653143226611366,0.04568585473266362,0.04486068975003956,0.044055309786041656,0.04326911050736704,0.042501509805417295,0.041751946865815244,0.04101988127969741,0.04030479219498565,0.03960617750581931,0.03892355307845022,0.03825645201193658,0.03760442393206065,0.036967034316914095,0.0363438638527243,0.03573450781849217,0.03513857549810755,0.03455568961866953,0.0339854858137574,0.0334276121105181,0.03288172843942511,0.032347506165653836,0.031824627641063634,0.031312785775795535,0.030811683628594783,0.030321034014955395,0.029840559132260698,0.029369990201118638,0.028909067122145932,0.02845753814745393,0.02801515956618375,0.027581695403409975,0.027156917131806083,0.026740603395480594,0.02633253974540741,0.02593251838593837,0.025540337931871295,0.025155803175597274,0.024778724863864714,0.02440891948372804,0.0240462090572493,0.023690420944577302,0.023341387655010776,0.022998946665692865,0.022662940247599298,0.022333215298481743,0.022009623182475138,0.02169201957606028,0.02138026432010679,0.02107422127773274,0.020773758197713856,0.020478746583217897,0.020189061565619136,0.01990458178318039,0.01962518926438877,0.019350769315752463,0.019081210413855035,0.01881640410150252,0.018556244887777008,0.01830063015183757,0.018049460050313552,0.01780263742812893,0.017560067732630108,0.01732165893086876,0.017087321429913895,0.01685696800006689,0.01663051370086505,0.0164078758097496,0.016188973753303602,0.015973729040945482,0.01576206520098322,0.015553907718936747,0.01534918397803017,0.015147823201778354,0.014949756398577069,0.014754916308219734,0.014563237350269055,0.014374655574202077,0.014189108611270632,0.014006535628003013,0.013826877281286747,0.013650075674970187,0.013476074317928624,0.013304818083531435,0.013136253170466506,0.012970327064864437,0.012806988503675218,0.012646187439253042,0.012487875005097841,0.012332003482718873,0.012178526269573099,0.012027397848040192,0.011878573755398983,0.011732010554762197,0.011587665806942912,0.011445498043213282,0.011305466738925313,0.011167532287962459,0.011031655977994251,0.01089779996650005,0.010765927257542128,0.010636001679255774,0.010507987862033578,0.010381851217381123,0.010257557917415115,0.010135074874989465,0.010014369724421567,0.009895410802800746,0.009778167131857994,0.00966260840037989,0.009548704947143537,0.009436427744360732,0.009325748381610247,0.00921663905024278,0.009109072528244432,0.009003022165539156,0.0088984618697213,0.00879536609219988,0.008693709814742085,0.008593468536404877,0.008494618260837333,0.008397135483947682,0.008300997181918488,0.00820618079956115,0.008112664238997638,0.008020425848660796,0.007929444412599336,0.00783969914008272,0.007751169655492746,0.007663835988494001,0.007577678564475927,0.007492678195253791,0.007408816070025908,0.007326073746575283,0.00724443314270959,0.0071638765279315834,0.007084386515334457,0.007005946053711741,0.006928538419879595,0.006852147211202068,0.006776756338313777,0.006702350018035686,0.006628912766474497,0.006556429392304818,0.006484884990225231,0.006414264934584216,0.006344554873171946,0.006275740721170183,0.006207808655259303,0.006140745107875201,0.006074536761612718,0.0060091705437709956,0.005944633621037808,0.005880913394306033,0.005817997493622173,0.005755873773260382,0.005694530306919443,0.005633955383039842,0.005574137500235212,0.005515065362838212,0.005456727876554937,0.005399114144226168,0.005342213461691908,0.005286015313757224,0.00523050937025449,0.005175685482202261,0.005121533678055916,0.0050680441600481985,0.005015207300618124,0.0049630136389234745,0.004911453877437579,0.004860518878625988,0.0048101996617014985,0.004760487399456211,0.004711373415166429,0.004662849179571214,0.004614906307920631,0.004567536557092547,0.0045207318227760245,0.004474484136720275,0.004428785664045478,0.0043836287006165,0.0043390056704758675,0.004294909123335222,0.004251331732124152,0.004208266290593248,0.004165705710972457,0.004123643021681284,0.0040820713650902354,0.004040983995333013,0.004000374276165875,0.003960235678875945,0.003920561780234902,0.003881346260498016,0.0038425829014469854,0.0038042655844761682,0.0037663882887194627,0.0037289450892190575,0.003691930155133356,0.0036553377479836696,0.003619162219939149,0.003583398012137631,0.003548039653043456,0.0035130817568398277,0.0034785190218555068,0.30706767968988474,0.30672263179833836,0.3056934290200492,0.3039976215302672,0.3016635751126549,0.2987292245663019,0.29524047735103937,0.29124939195936755,0.286812261650601,0.2819877261688832,0.2768350149634738,0.2714123994411848,0.2657759033006549,0.2599782927974915,0.25406834557685054,0.2480903789687601,0.24208400676312625,0.23608408703835404,0.23012082167296194,0.22421996958477658,0.21840313937909378,0.2126881319573201,0.2070893089648616,0.20162064704441668,0.19636395104815624,0.1913426003296061,0.18654200072102303,0.18194869521037998,0.17755025875075572,0.1733352041901273,0.1692928980157264,0.16541348477354004,0.16168050167564937,0.1580390768369272,0.15448176515441656,0.15101047996333516,0.147626426793919,0.14433019958983345,0.14112186796315015,0.13800105569781476,0.13496701088126734,0.13201866815609042,0.1291547036513858,0.1263735831873541,0.12367360435514026,0.12105293306348519,0.11850963512063398,0.11604170338805016,0.11364708100528444,0.11132368114581327,0.10906940372290087,0.10688214942476788,0.10475983141987391,0.10270038503694194,0.10070177569041919,0.09876200529129386,0.09687911735457494,0.09505120098929754,0.09327639393385855,0.09155288477879484,0.08987891450098849,0.0882527774168603,0.08667282164790398,0.0851374491792747,0.08364511558101283,0.08219432945191864,0.08078365163750366,0.07941169426613397,0.07807711964104111,0.07677863902032948,0.07551501131218646,0.07428504170846502,0.07308758027605199,0.07192152052239224,0.07078579794885448,0.06967938860324221,0.06860130764089256,0.06755060790198049,0.0665263785112751,0.06552774350531872,0.06439840833474746,0.06312354947337957,0.06188249708800694,0.060674123087681574,0.05949734316383345,0.05835111499177205,0.057234436497203015,0.05614634418745199,0.055085911546590684,0.05405224749344321,0.05304449490120479,0.052061829177170296,0.0511034569010147,0.050168614519881666,0.049256567098502145,0.04836660712250574,0.04749805335307499,0.04665024973102905,0.045822564328519645,0.04501438834644599,0.04422513515577375,0.04345423938098282,0.0427011560238468,0.04196535962589296,0.04124634346784377,0.04054361880444677,0.03985671413314113,0.03918517449506529,0.038528560806937964,0.03788644922246128,0.03725843052187988,0.0366441095284296,0.03604310455045279,0.03545504684798256,0.03487958012270316,0.03431636003018651,0.03376505371338619,0.03322533935641433,0.032696905757642315,0.03217945192126099,0.03167268666642563,0.031176328253182624,0.03069010402439805,0.03021375006295929,0.02974701086352678,0.029289639018189848,0.02884139491537146,0.02840204645137824,0.0279713687540245,0.027549143917759873,0.027135160749801313,0.026729214526751085,0.026331106761230967,0.02594064497808103,0.025557642499694916,0.02518191824006676,0.024813296507180577,0.024451606813353115,0.024096683693182214,0.023748366528767204,0.02340649938186591,0.02307093083270194,0.02274151382511538,0.022418105517785062,0.022100567141261317,0.021788763860544142,0.021482564642984793,0.021181842131267378,0.02088647252125854,0.020596335444515515,0.020311313855257355,0.020031293921600468,0.019756164920892248,0.019485819138959574,0.01922015177311131,0.01895906083874278,0.018702447079380645,0.018450213880040284,0.018202267183749378,0.017958515411110126,0.01771886938277946,0.01748324224473936,0.017251549396256123,0.01702370842041113,0.016799639017103133,0.016579262938422275,0.01636250392630437,0.016149287652366996,0.01593954165985141,0.015733195307580466,0.015530179715855075,0.015330427714216941,0.015133873790996644,0.014940454044588979,0.01475010613638086,0.014562769245271721,0.01437838402372423,0.014196892555290651,0.014018238313550967,0.013842366122419661,0.013669222117762598,0.01349875371027705,0.013330909549590323,0.01316563948952519,0.013002894554497619,0.01284262690699889,0.012684789816124784,0.012529337627112894,0.012376225731854143,0.012225410540336715,0.012076849452997343,0.011930500833941286,0.011786323985001911,0.011644279120612137,0.01150432734345267,0.011366430620858316,0.01123055176194923,0.011096654395463505,0.010964702948269636,0.010834662624528394,0.010706499385489949,0.010580179929898546,0.010455671674986304,0.010332942738034903,0.010211961918488645,0.010092698680594285,0.009975123136557478,0.009859206030192674,0.00974491872105237,0.009632233169020706,0.009521121919351757,0.00941155808814382,0.009303515348230802,0.009196967915478535,0.009091890535474307,0.008988258470592517,0.008886047487429763,0.0087852338445937,0.008685794280835322,0.008587706003513718,0.008490946677384025,0.008395494413694242,0.008301327759586766,0.008208425687790663,0.00811676758659732,0.008026333250111473,0.00793710286876552,0.007849057020093843,0.007762176659755476,0.007676443112798714,0.007591838065160117,0.0075083435553918625,0.007425941966606977,0.007344616018640942,0.007264348760418913,0.00718512356252423,0.007106924109962891,0.007029734395114866,0.006953538710871219,0.006878321643948107,0.006804068068373618,0.0067307631391433425,0.006658392286036611,0.006586941207592871,0.006516395865240481,0.006446742477574534,0.006377967514779381,0.006310057693192393,0.006242999970002349,0.006176781538082344,0.006111389820950469,0.006046812467855624,0.0059830373489857865,0.005920052550792732,0.005857846371433287,0.0057964073163212955,0.0057357240937884,0.0056757856108499444,0.005616580969074417,0.00555809946055096,0.005500330563955357,0.005443263940709776,0.005386889431234069,0.005331197051287157,0.0052761769883937,0.005221819598356812,0.005168115401852155,0.0051150550811020455,0.005062629476628185,0.0050108295840786445,0.004959646551130082,0.004909071674461058,0.004859096396795357,0.004809712304013271,0.0047609111223298325,0.004712684715536215,0.004665025082305334,0.004617924353558095,0.004571374789889145,0.004525368779051445,0.004479898833496229,0.004434957587969219,0.004390537797160112,0.004346632333404532,0.004303234184436785,0.0042603364511931375,0.004217932345662276,0.004176015188784271,0.004134578408395024,0.004093615537215677,0.004053120210886368,0.004013086166041632,0.0039735072384285385,0.003934377361064949,0.0038956905624374155,0.0038574409647382634,0.0038196227821393255,0.0037822303191035866,0.003745257968732124,0.0037087002111462724,0.3102563107162992,0.3099070931310678,0.30886553567750025,0.30714964004508266,0.30478848699419075,0.30182093829335577,0.2982939770992885,0.29426081817255356,0.28977892526477267,0.28490806389342854,0.2797084969339321,0.2742394025876834,0.26855756404939723,0.262716351603112,0.2567649937361894,0.2507481156620612,0.2447055117020944,0.23867211175695296,0.23267810054680427,0.22674915017660088,0.22090673067629563,0.21516846843967496,0.2095485281404818,0.20407090508006034,0.19882440126080708,0.19381141363440793,0.18901750507185722,0.1844293613665853,0.1800346874954641,0.17582211483216434,0.1717811180292903,0.1679019404483599,0.16417552715805928,0.16057889949748871,0.1570631977592974,0.1536273396769781,0.1502730720818174,0.14700149553147435,0.143813151376943,0.140708100747496,0.13768599566216008,0.1347461426187377,0.13188755910586417,0.12910902354030823,0.1264091191600406,0.12378627240939166,0.1212387863431504,0.11876486955560454,0.11636266111213137,0.11403025192855397,0.11176570300818461,0.10956706091100386,0.10743237079417031,0.10535968732927217,0.10334708376958614,0.10139265941098216,0.09949454566240341,0.09765091091680919,0.09585996439073617,0.09411995907997996,0.0924291939607177,0.09078601554883056,0.08918881891573645,0.08763604824618013,0.08612619701195574,0.08465780782574717,0.08322947203031,0.08183982907066766,0.08048756569024376,0.07917141498604038,0.07789015535279468,0.07664260934176748,0.07542764245583806,0.07424416189932756,0.07309111529810344,0.07196748940294632,0.07087230878716642,0.06980463454745281,0.06876356301546298,0.06774822448624197,0.06674468814635333,0.06544000827417937,0.06416952606605583,0.06293211414904352,0.061726688196322425,0.06055220521008113,0.0594076618615,0.05829209288829911,0.057204569549724964,0.0561441981385875,0.055110118549633255,0.054101502903259116,0.053117554223476145,0.052157505168776395,0.051220616814511094,0.05030617748526956,0.04941350163571616,0.04854192877824817,0.047690822455899194,0.04685956925882401,0.046047577882753134,0.04525427822781667,0.04447912053611687,0.04372157456654048,0.042981128805249555,0.04225728971038361,0.04154958098952739,0.04085754290855265,0.04018073163045797,0.039518718582935826,0.038871089853378796,0.03823744561012332,0.03761739954877331,0.03701057836245854,0.036416621234988136,0.035835179355846514,0.035265915456049776,0.034708503363932865,0.03416262757993742,0.033627982869570826,0.03310427387368861,0.032591214735323795,0.03208852874230547,0.03159594798496264,0.03111321302820452,0.030640072597354573,0.030176283277093985,0.029721609222930306,0.029275821884629263,0.028838699741053703,0.02841002804592024,0.0279895985839657,0.02757720943706281,0.027172664759840592,0.026775774564389936,0.02638635451363582,0.02600422572301238,0.02562921457005901,0.025261152511591917,0.024899875908126097,0.024545225855211784,0.024197048021406018,0.023855192492575256,0.023519513622258202,0.023189869887834016,0.02286612375222943,0.02254814153094743,0.022235793264176233,0.021928952593765996,0.02162749664486747,0.021331305912038585,0.02104026414961938,0.020754258266212643,0.020473178223086266,0.020196916936338603,0.019925370182673926,0.01965843650862857,0.019396017143120316,0.019138015913173687,0.018884339162696613,0.018634895674182146,0.018389596593222514,0.018148355355710303,0.017911087617633905,0.017677711187352604,0.017448145960256532,0.017222313855719748,0.01700013875624688,0.016781546448739637,0.016566464567790366,0.01635482254092763,0.016146551535740333,0.015941584408799208,0.015739855656318632,0.015541301366482305,0.015345859173374079,0.015153468212450833,0.01496406907750274,0.014777603779036887,0.014594015704041303,0.014413249577069846,0.01423525142260175,0.014059968528630978,0.013887349411432309,0.013717343781471145,0.01354990251040753,0.013384977599157464,0.013222522146974737,0.013062490321510195,0.012904837329821965,0.012749519390295954,0.012596493705446864,0.012445718435567412,0.012297152673198555,0.012150756418384982,0.012006490554697428,0.01186431682598793,0.011724197813855412,0.011586096915798089,0.011449978324023991,0.011315807004904027,0.011183548679040239,0.011053169801930286,0.010924637545207444,0.010797919778438504,0.010672985051455792,0.010549802577211925,0.010428342215135328,0.010308574454970767,0.01019047040109116,0.010074001757259653,0.009959140811834043,0.009845860423394021,0.00973413400677909,0.009623935519525373,0.009515239448683602,0.009408020798012597,0.00930225507553093,0.009197918281417786,0.009094986896250785,0.008993437869572142,0.008893248608768277,0.008794396968258867,0.008696861238981179,0.008600620138162145,0.008505652799370223,0.008411938762834616,0.008319457966028822,0.008228190734506372,0.008138117772982616,0.008049220156654662,0.007961479322753325,0.007874877062316972,0.007789395512184797,0.007705017147199744,0.007621724772615791,0.0075395015167046735,0.007458330823552762,0.007378196446046828,0.007299082439039877,0.007220973152692878,0.007143853225988163,0.007067707580406466,0.006992521413766831,0.006918280194221849,0.006844969654404617,0.006772575785722927,0.006701084832797494,0.006630483288037185,0.006560757886351273,0.006491895599991981,0.006423883633524371,0.006356709418921253,0.006290360610776466,0.006224825081637218,0.0061600909174491635,0.0060961464131123275,0.006032980068144459,0.005970580582449758,0.005908936852187617,0.005848037965741992,0.005787873199786172,0.005728432015441064,0.005669704054525495,0.005611679135893306,0.005554347251858476,0.00549769856470308,0.005441723403267168,0.0053864122596187156,0.0053317557857994165,0.005277744790647359,0.005224370236692221,0.005171623237122002,0.005119495052819186,0.0050679770894652264,0.005017060894709591,0.004966738155404452,0.004917000694901213,0.004867840470407996,0.0048192495704071445,0.004771220212129265,0.004723744739085006,0.0046768156186510566,0.004630425439709724,0.004584566910341354,0.004539232855566312,0.004494416215137841,0.004450110041382644,0.0044063074970887555,0.004363001853439228,0.004320186487991227,0.0042778548826976955,0.0042360006219728415,0.004194617390798553,0.0041536989728715125,0.004113239248790326,0.004073232194280221,0.0040336718784564785,0.003994552462124186,0.0039558681961137845,0.3138455199309619,0.31349082594251654,0.31243303688945934,0.3106907324189152,0.3082939088469049,0.30528261572272786,0.301705215892185,0.29761640923007454,0.2930751658721134,0.2881427042274604,0.2828806261142786,0.2773492910968218,0.27160647965343193,0.26570636446404133,0.259698783817141,0.2536287923805148,0.24753645257865012,0.24145682389068443,0.23542010632894642,0.22945189681323788,0.22357352181609838,0.21780241542690237,0.2121525180394545,0.20666902482316687,0.20142928120563636,0.19642146009463257,0.19163126156032032,0.1870454962648758,0.18265198297246216,0.17843945686710377,0.17439748741377115,0.1705164046583701,0.16678723300061393,0.16320163159454418,0.15973245402143038,0.15633758912263263,0.15301806447134816,0.14977553319276427,0.14661105295119314,0.14352516498681822,0.14051796590806417,0.13758917242624333,0.13473817934277993,0.1319641111820026,0.1292658679129055,0.12664216522808788,0.1240915698543673,0.12161253036174495,0.119203403919631,0.11686247942533122,0.11458799740131201,0.11237816702750177,0.11023118064378702,0.10814522602709753,0.10611849671766559,0.10414920064102308,0.10223556724577432,0.1003758533528711,0.09856834788984462,0.09681137566299734,0.0951033003024589,0.09344252649830857,0.09182750163142034,0.09025671688951688,0.08872870794723778,0.08724205527889828,0.08579538416337223,0.08438736443266844,0.08301671000871504,0.08168217826676728,0.08038256925840326,0.07911672482252372,0.07788352760855867,0.07668190003259419,0.07551080318405981,0.0743692356978554,0.07325623260460443,0.07217086416958773,0.07111223472925284,0.07007948153266924,0.0690717735940346,0.06789312516686856,0.0665916450443938,0.06532364435455343,0.06408803917275266,0.06288378616642305,0.06170988101739009,0.060565356893752885,0.05944928297194564,0.058360763009285686,0.05729893396693341,0.05626296468283793,0.05525205459409117,0.054265432507816576,0.053302355419606894,0.052362107378394224,0.051443998396540055,0.05054736340382111,0.04967156124401694,0.04881597371268244,0.0479800046347236,0.04716307898038338,0.0463646420181985,0.045584158503593035,0.04482111190169367,0.0440750036430424,0.04334535241087938,0.042631693458726944,0.041933577956990646,0.04125057236740679,0.04058225784412774,0.03992822966032344,0.039288096659207704,0.038661480728406666,0.03804801629668969,0.03744734985205637,0.03685913948025088,0.03628305442281042,0.035718774653759014,0.03516599047415307,0.0346244021236599,0.03409371940842308,0.033573661344484924,0.03306395581608095,0.03256433924812411,0.03207455629227305,0.0315943595259591,0.031123509163801112,0.030661772780865803,0.030208925047225457,0.029764747473339747,0.02932902816576191,0.02890156159272126,0.028482148359143217,0.02807059499069955,0.02766671372647338,0.027270322319885396,0.026881243847504017,0.02649930652539903,0.02612434353271946,0.025756192842163593,0.025394697057067026,0.025039703254805926,0.024691062836251314,0.024348631381019246,0.024012268508255098,0.023681837742736564,0.023357206386055606,0.023038245392669823,0.022724829250618073,0.022416835866708514,0.022114146455980553,0.021816645435279575,0.021524220320761185,0.021236761629166843,0.020954162782720463,0.020676320017484786,0.020403132295052237,0.020134501217424258,0.01987033094495229,0.0196105281172177,0.019355001776735662,0.019103663295359403,0.018856426303291773,0.01861320662058993,0.018373922191067694,0.01813849301850517,0.017906841105064943,0.017678890391841513,0.01745456670145145,0.017233797682589185,0.017016512756474172,0.016802643065109,0.016592121421290792,0.016384882260299743,0.01618086159320509,0.015979996961726823,0.01578222739459639,0.015587493365353793,0.015395736751536684,0.015206900795203482,0.015020930064741709,0.014837770417918781,0.014657368966120299,0.014479674039743973,0.014304635154698531,0.014132202979970549,0.013962329306223207,0.013794967015381998,0.013630070051182564,0.013467593390638393,0.0133074930163989,0.013149725889965647,0.012994249925738879,0.012841023965858471,0.012690007755821067,0.012541161920839046,0.012394447942918038,0.012249828138630604,0.012107265637555542,0.011966724361368426,0.011828169003555045,0.011691565009728979,0.011556878558532286,0.011424076543101623,0.011293126553075412,0.011163996857131476,0.01103665638603179,0.01091107471615939,0.010787222053533167,0.010665069218279253,0.010544587629551367,0.010425749290879907,0.010308526775937868,0.01019289321471174,0.010078822280059064,0.00996628817464727,0.009855265618256373,0.009745729835435863,0.00963765654350419,0.009531021940881589,0.00942580269574128,0.009321975934975106,0.00921951923345934,0.009118410603612606,0.009018628485238527,0.008920151735639939,0.008822959620001796,0.008727031802030674,0.008632348334844444,0.008538889652103867,0.0084466365593808,0.008355570225751353,0.008265672175612991,0.008176924280714508,0.008089308752394206,0.00800280813402101,0.007917405293629056,0.007833083416744642,0.0077498259993965925,0.007667616841305569,0.007586440039248392,0.007506279980588749,0.007427121336974232,0.007348949058191181,0.007271748366174419,0.007195504749166822,0.007120203956025804,0.007045831990669318,0.006972375106661738,0.006899819801932246,0.0068281528136233385,0.006757361113066723,0.006687431900879806,0.0066183526021837726,0.00655011086193663,0.006482694540379267,0.006416091708591091,0.006350290644153319,0.006285279826914157,0.006221047934856848,0.0061575838400648964,0.006094876604782993,0.0060329154775716366,0.005971689889550471,0.005911189450731599,0.005851403946437307,0.0057923233338015925,0.0057339377383534475,0.005676237450677541,0.005619212923153549,0.0055628547667695314,0.0055071537480084485,0.005452100785805463,0.00539768694857537,0.005343903451305749,0.0052907416527173175,0.005238193052487543,0.0051862492885364755,0.005134902134374139,0.005084143496505488,0.005033965411894623,0.0049843600454843665,0.004935319687770666,0.0048868367524310735,0.004838903774003907,0.004791513405619461,0.0047446584167801535,0.0046983316911889195,0.004652526224624567,0.0046072351228637195,0.00456245159964613,0.004518168974685038,0.004474380671719347,0.004431080216607495,0.004388261235462324,0.0043459174528244025,0.00430404268987506,0.004262630862686551,0.004221675980509028,0.3178912995120058,0.317529576613611,0.3164509514952381,0.31467473690383935,0.31223209040557,0.30916456801051023,0.3055222824672801,0.3013618175947716,0.29674405526916753,0.29173205926323864,0.28638913441835145,0.28077714630632444,0.2749551512865344,0.2689783543371963,0.26289738533636164,0.25675786505180154,0.25060022005698657,0.2444597002546656,0.2383665522768962,0.23234630521588545,0.2264201305082258,0.22060524418366023,0.2149158380379624,0.2094320942666972,0.20419441484581904,0.19918739446177938,0.1943968424234847,0.18980966900181048,0.1854137838982444,0.18119800541068123,0.17715197904690377,0.1732661044938382,0.16953146998737206,0.1659397932464593,0.16248336823795098,0.15913553721954937,0.15585708348300994,0.15264925947963937,0.1495136876714322,0.14645143666359695,0.14346309318678457,0.14054882762732496,0.13770845325611952,0.13494147941788695,0.13224715901793593,0.12962453069011884,0.12707245605419637,0.12458965247842779,0.12217472175808577,0.11982617510706103,0.11754245483945366,0.11532195309451443,0.11316302793222763,0.11106401710017788,0.10902324974545358,0.10703905631963433,0.10510977689996466,0.10323376812663247,0.10140940893456729,0.09963510523811496,0.09790929370909607,0.09623044477210084,0.09459706492618841,0.09300769848888756,0.09146092884643632,0.08995537928379546,0.08848971345846068,0.08706263557389264,0.08567289030103699,0.08431926249001394,0.08300057670828764,0.08171569663682053,0.08046352435123273,0.07924299951124326,0.07805309847837746,0.07689283337894884,0.07576125112692204,0.07465743241897477,0.07358049071222504,0.07252957119343653,0.07150384974710315,0.07049515025298639,0.06916098840960988,0.06786073125371221,0.066593295953726,0.06535763942428255,0.06415275684227864,0.06297768020330924,0.06183147692001699,0.060713248463457506,0.059622129048143346,0.05855728436097148,0.05751791033406638,0.05650323196117155,0.05551250215710357,0.0545450006595665,0.05360003297251627,0.05267692935009137,0.051775043820144535,0.05089375324623588,0.050032456426971336,0.04919057323152225,0.0483675437701085,0.04756282759828636,0.046775902953816284,0.04600626602493146,0.04525343024882805,0.04451692563923137,0.04379629814187558,0.04309110901682659,0.04240093424653951,0.041725363968612005,0.04106400193222072,0.040416464977232426,0.03978238253506933,0.03916139615038643,0.038553159022680236,0.03795733556698509,0.03737360099281499,0.036801640900590654,0.0362411508947767,0.035691836213006756,0.03515341137050395,0.03462559981913482,0.03410813362043819,0.03360075313204693,0.033103206706897446,0.03261525040467357,0.03213664771495817,0.031667169291561666,0.031206592697565826,0.0307547021605955,0.030311288337883355,0.029876148090696445,0.02944908426772852,0.029029905497049136,0.028618425986265877,0.02821446533052659,0.027817848328029682,0.027428404802727034,0.027045969433894135,0.02667038159229601,0.026301485182652445,0.025939128492139554,0.025583164044678013,0.025233448460748393,0.02488984232252001,0.02455221004405743,0.024220419746396715,0.023894343137287166,0.023573855395410435,0.023258835058877787,0.022949163917847848,0.022644726911080826,0.022345412026274075,0.022051110204027533,0.02176171524528014,0.021477123722092258,0.021197234891627906,0.020921950613211036,0.020651175268337728,0.020384815683514565,0.020122781055825975,0.019864982881111156,0.019611334884652845,0.01936175295427715,0.01911615507577484,0.018874461270543107,0.018636593535375227,0.018402475784305265,0.018172033792432186,0.017945195141649956,0.017721889168202384,0.01750204691200511,0.017285601067658984,0.01707248593709431,0.016862637383783873,0.01665599278846953,0.016452491006336938,0.01625207232559665,0.016054678427410943,0.01586025234711925,0.015668738436717886,0.015480082328540146,0.015294230900103463,0.015111132240073377,0.014930735615308046,0.014752991438942377,0.0145778512394783,0.014405267630837569,0.014235194283353136,0.014067585895658217,0.013902398167444145,0.013739587773058776,0.013579112335909341,0.013420930403650758,0.013265001424125419,0.013111285722030906,0.012959744476292816,0.012810339698112015,0.012663034209671659,0.012517791623476132,0.012374576322301788,0.012233353439739103,0.012094088841308363,0.0119567491061239,0.011821301509096388,0.011687714003649813,0.011555955204937584,0.011425994373543724,0.011297801399647624,0.011171346787644148,0.011046601641199425,0.010923537648729827,0.010802127069291883,0.010682342718865496,0.010564157957023911,0.010447546673973756,0.010332483277954798,0.010218942682987984,0.010106900296962117,0.009996332010044306,0.009887214183410202,0.009779523638279159,0.00967323764524668,0.00956833391390638,0.009464790582748213,0.009362586209330103,0.009261699760710446,0.009162110604135415,0.009063798497972413,0.008966743582884289,0.008870926373232628,0.008776327748708956,0.008682928946182883,0.00859071155176195,0.008499657493058593,0.008409749031653695,0.00832096875575655,0.008233299573051387,0.008146724703726333,0.008061227673680825,0.00797679230790244,0.007893402724013322,0.0078110433259776044,0.007729698797966508,0.007649354098376488,0.0075699944539970076,0.007491605354320716,0.00741417254599616,0.007337682027415906,0.0072621200434372256,0.007187473080232744,0.007113727860264348,0.007040871337380951,0.0069688906920338,0.006897773326606942,0.006827506860859793,0.006758079127479434,0.006689478167737029,0.006621692227249253,0.006554709751839085,0.006488519383494192,0.006423109956421107,0.006358470493190102,0.006294590200971806,0.006231458467860423,0.006169064859282142,0.006107399114487517,0.006046451143122703,0.005986211021881227,0.005926668991231377,0.005867815452218432,0.005809640963339288,0.005752136237488766,0.005695292138973061,0.005639099680592161,0.005583550020786725,0.005528634460848838,0.005474344442195498,0.0054206715437013124,0.0053676074790915875,0.005315144094392218,0.005263273365435775,0.005211987395422114,0.005161278412533072,0.005111138767597485,0.0050615609318085475,0.005012537494489676,0.00496406116090866,0.004916124750139486,0.004868721192968605,0.004821843529847346,0.004775484908887207,0.004729638583897769,0.00468429791246681,0.004639456354079587,0.004595107468279026,0.004551244912863838,0.0045078624421244825,0.3224601886524787,0.3220895730436975,0.3209845865698303,0.3191654682158336,0.316664842085922,0.3135261655033027,0.30980175809155236,0.3055505775860115,0.30083591276598015,0.29572314898533786,0.29027773243408045,0.2845634219928558,0.2786408787238778,0.2725666077733606,0.26639223902702414,0.2601641126785438,0.25392312384367904,0.24770477536576854,0.24153938838643937,0.23545242437535782,0.22946487857150077,0.22359371194119768,0.21786566309244265,0.21237872522504736,0.2071369497015029,0.20212500972455708,0.19732878647341062,0.19273525608516995,0.18833238868961447,0.1841090580767918,0.18005496075706906,0.17616054332940123,0.17241693720877407,0.16881589988185994,0.16534976196167173,0.16201137940105328,0.15877975014203727,0.15561392725185455,0.15251382770228855,0.14948109806621204,0.14651686485839358,0.14362180028702218,0.14079618230353827,0.1380399490555178,0.13535274795049174,0.1327339796093998,0.1301828370341373,0.12769834033910868,0.12527936740679832,0.12292468082619602,0.12063295146297594,0.11840277899493228,0.11623270972673623,0.11412125197656953,0.1120668893043168,0.11006809182833438,0.10812332585511733,0.10623106202474118,0.10438978215448808,0.10259798494390791,0.10085419068707627,0.09915694512148271,0.09750482252829978,0.09589642818548856,0.09433040026305618,0.0928054112391707,0.0913201689060614,0.089873417026129,0.08846393569106227,0.08709054143003156,0.08575208710698357,0.0844474616419611,0.08317558958658823,0.0819354305798764,0.08072597870696441,0.07954626178017217,0.07839534055916329,0.07727230792450818,0.07617628801690147,0.07510643535247978,0.07406193392310607,0.0730419962890688,0.07188999389243929,0.0705557200457362,0.06925470853936858,0.06798591748295943,0.06674834236578397,0.06554101471081034,0.06436300076114083,0.06321340020088022,0.06209134491191599,0.060995997767571676,0.059926551463825334,0.05888222738835838,0.0578622745274771,0.056865968410712675,0.05589261009273824,0.054941525172018106,0.054012062845592436,0.053103594999191976,0.0522155153318594,0.051347238514186704,0.050498199379190215,0.049667852144896045,0.04885566966759582,0.04806114272478606,0.04728377932677015,0.046523104055926044,0.0457786574326105,0.045049995306752605,0.04433668827413821,0.04363832111643972,0.04295449226407999,0.042284813280992636,0.04162890837044088,0.040986413901012216,0.04035697795197595,0.03974025987721364,0.03913592988692562,0.038543668646405585,0.0379631668911442,0.03739412505758268,0.03683625292884975,0.03628926929485997,0.03575290162613472,0.03522688576079614,0.03471096560414722,0.034204892840307574,0.03370842665539766,0.03322133347175606,0.0327433866927456,0.032274366457675834,0.031814059406416184,0.03136225845328473,0.03091876256982414,0.03048337657606644,0.030055910939952007,0.029636181584536507,0.029224009702662458,0.028819221578784467,0.028421648417630264,0.02803112617943101,0.027647495421427713,0.027270601145398133,0.026900292650954692,0.02653642339435938,0.026178850852646575,0.025827436392816303,0.025482045145897633,0.025142545885676486,0.024808810911904042,0.024480715937786085,0.024158139981599727,0.02384096526225316,0.023529077098634724,0.023222363812602214,0.022920716635452074,0.02262402961774744,0.02233219954235619,0.02204512584057676,0.021762710511232977,0.02148485804260742,0.021211475337118386,0.020942471638621164,0.02067775846223448,0.020417249526592886,0.020160860688435898,0.019908509879431595,0.01966011704516365,0.019415604086188115,0.019174894801083798,0.018937914831424825,0.018704591608591305,0.018474854302362544,0.018248633771215862,0.01802586251427102,0.01780647462481731,0.017590405745368538,0.01737759302417985,0.01716797507318489,0.016961491927291864,0.01675808500499207,0.016557697070235505,0.016360272195519585,0.016165755726158026,0.015974094245678753,0.015785235542314823,0.015599128576546594,0.01541572344966242,0.01523497137329294,0.015056824639895617,0.014881236594147827,0.014708161605219917,0.014537555039899543,0.014369373236530428,0.014203573479747315,0.014040113975972343,0.013878953829649,0.013720053020190946,0.013563372379614353,0.013408873570839938,0.013256519066634833,0.013106272129175908,0.01295809679021272,0.012811957831812585,0.012667820767662086,0.012525651824914852,0.012385417926562111,0.012247086674309406,0.012110626331946648,0.011976005809188194,0.011843194645976217,0.011712162997226185,0.011582881618002555,0.011455321849112096,0.011329455603096818,0.011205255350620232,0.011082694107229712,0.010961745420484668,0.010842383357438956,0.010724582492467723,0.010608317895423526,0.010493565120117765,0.010380300193112523,0.010268499602815036,0.010158140288866453,0.010049199631812104,0.009941655443049991,0.00983548595504516,0.00973066981180301,0.00962718605959388,0.00952501413792244,0.00942413387073066,0.009324525457832957,0.009226169466572239,0.009129046823691988,0.009033138807419173,0.00893842703974764,0.00884489347892175,0.008752520412110202,0.00866129044826599,0.00857118651116815,0.008482191832636436,0.00839428994591901,0.008307464679244286,0.008221700149533717,0.008136980756270663,0.008053291175522191,0.007970616354105793,0.007888941503902078,0.0078082520963053004,0.007728533856809476,0.007649772759727215,0.0075719550230341015,0.007495067103340007,0.007419095690980139,0.007344027705223923,0.00726985028959827,0.007196550807323073,0.0071241168368530155,0.007052536167526751,0.006981796795317579,0.006911886918683901,0.006842794934517725,0.006774509434185681,0.0067070191996639545,0.006640313199761795,0.006574380586432173,0.006509210691168153,0.006444793021480156,0.00638111725745551,0.006318173248395203,0.006255951009527586,0.006194440718795762,0.006133632713718611,0.006073517488320436,0.006014085690131124,0.005955328117252504,0.005897235715489852,0.005839799575547891,0.005783010930287148,0.00572686115204239,0.005671341749999086,0.005616444367627504,0.005562160780172715,0.005508482892199771,0.005455402735190801,0.005402912465195379,0.005351004360530899,0.005299670819532219,0.005248904358350295,0.005198697608796344,0.005149043316233256,0.005099934337511055,0.005051363638946032,0.0050033242943430855,0.004955809483058341,0.004908812488103688,0.0048623266942901255,0.004816345586410089,0.26166602952855333,0.2614596111636221,0.2608430160584238,0.25982413134842663,0.2584157990583315,0.25663538246742457,0.2545041990065975,0.25204685456941833,0.2492905176862963,0.24626417213014298,0.24299788358199412,0.23952211068722873,0.23586708404467252,0.2320622692711146,0.228135923051862,0.2241147446168791,0.22002361975146345,0.21588545043730664,0.2117210605236903,0.20754916633085235,0.20338640058927548,0.1992473783925186,0.19514479465986193,0.19108954376316017,0.1870908533021146,0.18315642538272053,0.17929258007230323,0.17552948152270278,0.1719084398928415,0.16842263006144434,0.16506489032483504,0.16182854297374355,0.15870735497782154,0.15569550236185878,0.15278753788398944,0.14997836167158068,0.14726319450994818,0.14463755351372853,0.14209722994099935,0.13963826893714187,0.13725695101857316,0.13494977512740508,0.13270961870867284,0.13051040727584992,0.1283487482805516,0.12622557055149553,0.12414157432458554,0.12209725522823596,0.12009292659049514,0.11812874007185539,0.11620470465483494,0.11432070404249743,0.11247651253321321,0.11067180944959866,0.10890619220625154,0.10717918810472382,0.10549026494531143,0.10383884054464014,0.10222429124605106,0.1006459595064736,0.09910316063987124,0.0975951887927565,0.09612132222276228,0.09468082794642607,0.09327296581750426,0.09189699209251856,0.09055216253554849,0.08923773510994225,0.08795297230049091,0.08669714310565513,0.08546952473577347,0.08426940404984978,0.08309607876030337,0.08194885843220276,0.08082706530089326,0.07973003492939862,0.07865711672492436,0.07760767433163646,0.07658108591515397,0.07557674435252118,0.07459405733994764,0.07331836324108768,0.07202136262453247,0.07075427971575221,0.06951629156422579,0.0683065981174241,0.06712442187511258,0.06596900750501941,0.0648396214268191,0.06373555137058665,0.06265610591512966,0.06160061401086224,0.06056842449139735,0.05955890557738883,0.05857144437575421,0.057605446376953605,0.05666033495266013,0.05573555085576322,0.05483055172445686,0.053944811591807,0.053077820402021525,0.05222908353444499,0.051398121336077005,0.050584468663341604,0.04978767443361357,0.04900730118694707,0.04824292465831767,0.04749413336062949,0.046760528178605563,0.04604172197369113,0.04533733919996607,0.044647015531056135,0.04397039749798508,0.043307142137838255,0.04265691665314292,0.042019398081778576,0.04139427297724622,0.040781237099105944,0.04017999511334824,0.03959026030250622,0.0390117542852527,0.03844420674525395,0.0378873551690317,0.037340944592599,0.03680472735659612,0.036278462869713195,0.0357619173801262,0.03525486375471248,0.03475708126580831,0.034268355385248486,0.033788477585483485,0.03331724514751956,0.03285446097546599,0.03239993341746479,0.03195347609279672,0.031514907724931096,0.03108405198034292,0.030660737312877936,0.030244796813477998,0.029836068065086256,0.029434393002530413,0.029039617777233063,0.028651592626559152,0.028270171747641827,0.02789521317553194,0.02752657866549942,0.02716413357936115,0.026807746775671687,0.026457290503646168,0.026112640300679075,0.025773674893332637,0.02544027610165853,0.025112328746748895,0.024789720561387472,0.02447234210369343,0.024160086673653738,0.02385285023242723,0.023550531324338493,0.0232530310014503,0.02296025275062867,0.02267210242300799,0.02238848816577634,0.022109320356184282,0.02183451153771489,0.0215639763583257,0.021297631510692097,0.021035395674385216,0.020777189459904703,0.020522935354514757,0.020272557669809448,0.020025982490949185,0.019783137627514078,0.019543952565905708,0.0193083584232582,0.019076287902794503,0.018847675250582615,0.018622456213640497,0.018400567999348496,0.018181949236112882,0.01796653993525095,0.017754281454046315,0.01754511645993694,0.017338988895800284,0.01713584394629011,0.016935628005199373,0.016738288643807366,0.01654377458017961,0.016352035649392038,0.016163022774639192,0.01597668793920905,0.015792984159286094,0.015611865457559588,0.015433286837608189,0.015257204259039182,0.015083574613349344,0.014912355700494232,0.014743506206134684,0.014576985679541637,0.014412754512139359,0.01425077391666031,0.01409100590690041,0.013933413278049039,0.013777959587577469,0.013624609136667524,0.013473326952165885,0.0133240787690401,0.013176831013330045,0.013031550785572091,0.012888205844683498,0.01274676459229445,0.012607196057508154,0.012469469882083082,0.012333556306018793,0.01219942615353442,0.012067050819430204,0.011936402255813734,0.01180745295918836,0.011680175957886132,0.011554544799837689,0.01143053354066769,0.011308116732108568,0.01118726941071737,0.011067967086893558,0.010950185734184072,0.01083390177886807,0.010719092089815526,0.01060573396860579,0.010493805139905738,0.010383283742094592,0.01027414831813009,0.010166377806648712,0.010059951533294538,0.009954849202265787,0.009851050888078835,0.009748537027538813,0.009647288411912376,0.009547286179298406,0.009448511807186569,0.009350947105204179,0.009254574208041683,0.009159375568553396,0.009065333951029488,0.008972432424630822,0.008880654356987044,0.00878998340794984,0.008700403523498115,0.008611898929790864,0.00852445412736475,0.00843805388546914,0.008352683236539194,0.008268327470800222,0.00818497213100022,0.008102603007269147,0.0080212061320971,0.007940767775433507,0.007861274439900479,0.007782712856118143,0.007705069978139439,0.007628332978991891,0.0075524892463207744,0.0074775263781352245,0.007403432178651206,0.0073301946542300555,0.007257802009410978,0.007186242643032105,0.007115505144441731,0.007045578289794564,0.006976451038431531,0.006908112529342227,0.0068405520777047426,0.006773759171505014,0.00670772346823046,0.006642434791637453,0.006577883128590189,0.0065140586259704114,0.006450951587653293,0.00638855247155155,0.0063268518867233715,0.006265840590543462,0.006205509485936438,0.006145849618668531,0.006086852174699524,0.006028508477590881,0.005970809985969581,0.005913748291047073,0.005857315114189562,0.005801502304541612,0.005746301836699434,0.005691705808433416,0.005637706438458687,0.005584296064253176,0.005531467139920006,0.005479212234095931,0.0054275240279027664,0.005376395312941222,0.0053258189893270755,0.00527578806376649,0.005226295647672291,0.005177334955318241,0.0051288993020312855,0.27580781516231473,0.2755877840316572,0.27493059821923027,0.27384487609896163,0.2723446409715653,0.27044883455820107,0.2681806820502921,0.2655669488112969,0.2626371327106814,0.259422635920548,0.25595595632001905,0.252269932292484,0.24839706670853737,0.2443689473054609,0.24021577240242775,0.23596598359964496,0.2316460012103452,0.227280053834509,0.22289009067044083,0.21849576370805635,0.21411446660806965,0.20976141756940475,0.20544977455835411,0.20119077268326457,0.19699387506085933,0.1928669300930269,0.18881990883396177,0.1849093822344964,0.18114675204185465,0.17752406818019922,0.17403392617914754,0.17066942218399864,0.1674241122498272,0.16429197546193988,0.1612673804784577,0.15834505513782768,0.15552005881512387,0.1527877572469451,0.15014379957599291,0.14758409739452466,0.14510480558982117,0.1427023048163995,0.14037318543864255,0.13811405277108044,0.13590324093792375,0.13372826314138028,0.13159014350694323,0.12948967841559744,0.12742745949395043,0.1254038950870305,0.12341923020164408,0.1214735649360392,0.11956687143300881,0.11769900940961227,0.11586974032815753,0.11407874028111764,0.11232561166722861,0.11060989373852811,0.10893107209850279,0.10728858723039397,0.10568184213270956,0.10411020913584319,0.10257303597025083,0.10106965115269122,0.09959936875285785,0.09816149259860193,0.09675531997363226,0.09538014485751783,0.09403526075378248,0.09271996314811433,0.09143355163499892,0.0901753317478092,0.0889446165240872,0.08774072783484155,0.08656299750398307,0.08541076824138624,0.08428339441090886,0.08318024265243491,0.08210069237514764,0.08104413613746911,0.08000997992750043,0.078937489850248,0.07756148597567,0.07621668041545336,0.07490223740760785,0.07361734304428397,0.07236120507232702,0.07113305264090047,0.06993213600439606,0.06875772618796959,0.06760911462216478,0.06648561275228436,0.0653865516275684,0.06431128147454002,0.06325917125838391,0.0622296082357208,0.0612219975017378,0.06023576153416611,0.05927033973639356,0.05832518798155674,0.057399778159272614,0.0564935977264219,0.05560614926312562,0.05473695003497606,0.05388553156230946,0.05305143919723738,0.05223423170898811,0.051433480878023984,0.05064877109925943,0.04987969899468033,0.04912587303553583,0.04838691317422958,0.0476624504859967,0.046952126820352096,0.04625559446233395,0.04557251580344531,0.04490256302222684,0.044245417774342134,0.043600770892019074,0.04296832209272483,0.04234777969687543,0.04173886035440864,0.041141288780021594,0.04055479749688504,0.039979126588598306,0.03941402345921067,0.0388592426010692,0.038314545370285974,0.03777969976961736,0.03725448023851766,0.03673866745018436,0.03623204811535993,0.035734414792692154,0.035245565705443904,0.03476530456435691,0.03429344039645449,0.03382978737961489,0.0333741646827039,0.03292639631109117,0.0324863109573746,0.03205374185711962,0.031628526649466006,0.031210507242419205,0.030799529682671127,0.0303954440297989,0.02999810423467359,0.02960736802195545,0.029223096776516185,0.028845155433656695,0.02847341237298653,0.02810773931584219,0.02774801122610385,0.027394106214312906,0.02704590544495601,0.026703293046812907,0.026366156026260766,0.026034384183419607,0.025707870031055055,0.025386508716129186,0.025070197943909838,0.024758837904548043,0.024452331202040607,0.024150582785481458,0.02385349988253896,0.023560991935067704,0.023272970536784027,0.022989349372937836,0.022710044161898067,0.02243497259860198,0.02216405429979002,0.0218972107509698,0.021634365255051524,0.021375442882586915,0.021120370423570213,0.02086907634073675,0.020621490724312144,0.0203775452481604,0.020137173127287352,0.01990030907664373,0.019666889271195365,0.019436851307209357,0.019210134164716862,0.018986678171116756,0.018766424965871772,0.018549317466273488,0.018335299834229823,0.01812431744404587,0.017916316851165997,0.017711245761837274,0.017509053003676063,0.017309688497097544,0.01711310322758506,0.01691924921876915,0.016728079506293674,0.016539548112435427,0.01635361002146289,0.0161702211557024,0.015989338352291882,0.01581091934060169,0.015634922720294393,0.015461307940012613,0.015290035276667354,0.01512106581531092,0.014954361429574802,0.014789884762657291,0.014627599208836863,0.014467468895503863,0.014309458665687209,0.01415353406106334,0.013999661305434338,0.013847807288653867,0.013697939550996562,0.0135500262679499,0.013404036235418143,0.013259938855327565,0.013117704121615247,0.012977302606596691,0.012838705447695945,0.012701884334529023,0.012566811496329208,0.012433459689706683,0.012301802186726243,0.01217181276330177,0.012043465687891794,0.011916735710489592,0.011791598051900809,0.011668028393294508,0.011546002866027165,0.011425498041726052,0.011306490922626573,0.01118895893215569,0.01107287990575612,0.010958232081939493,0.010844994093568431,0.01073314495935617,0.010622664075579005,0.010513531207997298,0.010405726483974132,0.010299230384792432,0.010194023738160524,0.01009008771090195,0.009987403801826061,0.009885953834770122,0.009785719951813826,0.009686684606656832,0.009588830558157159,0.009492140864024912,0.009396598874668951,0.009302188227188278,0.009208892839509377,0.009116696904661917,0.009025584885189845,0.008935541507696156,0.00884655175751333,0.008758600873501424,0.008671674342966713,0.00858575789669891,0.008500837504123481,0.00841689936856752,0.00833392992263231,0.00825191582367503,0.00817084394939255,0.008090701393506459,0.008011475461547282,0.007933153666732386,0.007855723725939229,0.007779173555768528,0.007703491268695823,0.0076286651693103875,0.007554683750636063,0.007481535690536224,0.007409209848197337,0.007337695260690674,0.007266981139609604,0.00719705686778184,0.0071279119960517825,0.007059536240135121,0.006991919477540927,0.006925051744560636,0.006858923233323155,0.0067935242889115574,0.00672884540654373,0.006664877228812527,0.006601610542984935,0.00653903627835965,0.0064771455036790465,0.006415929424597742,0.006355379381203702,0.006295486845591677,0.006236243419487502,0.006177640831922796,0.006119670936956647,0.006062325711446168,0.006005597252862616,0.005949477777152549,0.005893959616643916,0.00583903521799355,0.005784697140178338,0.005730938052526584,0.005677750732789617,0.29119929837233516,0.29096340838992774,0.2902589492926594,0.28909543456374154,0.2874883316458899,0.2854585082454343,0.283031511445554,0.2802367265478608,0.2771064668064316,0.2736750446506464,0.2699778702655116,0.26605061559615456,0.26192847225058347,0.2576455216475036,0.25323422615479046,0.24872504165144618,0.24414614536426574,0.23952326812727767,0.2348796173055102,0.23023587528008294,0.22561025829388434,0.22101862126963528,0.21647459562287458,0.2119897488309118,0.20757375637721948,0.20323457851501622,0.19900578573337555,0.19493775949465095,0.19102309772193227,0.187253556756365,0.18362145939752555,0.18011964811482614,0.17674144272140271,0.1734806020332284,0.17033128909201933,0.16728803957940297,0.16434573309270975,0.16149956699024598,0.15874503254662187,0.15607789318790874,0.15349416460146847,0.15099009653786777,0.14856215614194027,0.14620701266733957,0.1439215234445546,0.141697710044344,0.13951081345994415,0.1373588278407721,0.13524267138471335,0.1331630558285687,0.13112050712472523,0.12911538474359324,0.12714789959935932,0.1252181306190079,0.12332603999173201,0.12147148714880426,0.11965424153306374,0.11787399422337579,0.11613036848310995,0.11442292930328607,0.11275119201132772,0.11111463001513353,0.10951268175022322,0.10794475689512815,0.10641024191690332,0.10490850500541692,0.10343890045129725,0.10200077251883322,0.10059345886145153,0.09921629352383406,0.09786860957117513,0.09654974138292363,0.09525902664503481,0.09399580807189842,0.09275943488631042,0.09154926408320714,0.090364661500597,0.08920500271880957,0.08806967380718984,0.0869580719354976,0.08586960586556676,0.08480369633717522,0.0836079306261353,0.08217992583289611,0.08078357698199118,0.0794180603147517,0.07808257240750678,0.07677633008636968,0.07549857028153195,0.07424854982977414,0.07302554523292751,0.07182885237908224,0.07065778623268192,0.06951168049882119,0.06838988726651493,0.0672917766351052,0.06621673632751666,0.06516417129353178,0.0641335033059886,0.06312417055232288,0.06213562722362796,0.061167343103110235,0.06021880315552592,0.059289507119039186,0.05837896910066046,0.05748671717629427,0.056612292996254865,0.055755251396985436,0.05491516001954338,0.05409159893538825,0.053284160279839655,0.052492447893519235,0.0517160769720349,0.05095467372404226,0.05020787503784975,0.049475328156597526,0.04875669036205422,0.048051628667026204,0.04735981951630788,0.046680948496144695,0.04601471005208607,0.04536080721512591,0.04471895133600227,0.04408886182751848,0.04347026591471108,0.04286289839273446,0.04226650139226451,0.04168082415225624,0.041105622799884715,0.04054066013745814,0.03998570543615666,0.039440534236382684,0.038904928154551516,0.03837867469613144,0.037861567074762174,0.0373534040372478,0.03685398969427443,0.036363133356656654,0.03588064937694546,0.03540635699623797,0.034940080195999805,0.03448164755476778,0.03403089210955347,0.03358765122179986,0.03315176644774795,0.03272308341304827,0.03230145169149935,0.031886724687758064,0.031478759523893264,0.0310774169296517,0.030682561136317326,0.03029405977402372,0.029911783772423883,0.029535607264588593,0.029165407494024492,0.02880106472471273,0.028442462154047832,0.02808948582859807,0.027742024562573735,0.0273999698589174,0.02706321583292789,0.026731659138319364,0.026405198895647453,0.026083736623009945,0.025767176168947362,0.025455423647465978,0.02514838737511759,0.024845977810050084,0.024548107492979785,0.024254690990006735,0.023965644837214795,0.023680887486997655,0.02340033925604287,0.023123922274930882,0.022851560439283748,0.02258317936241537,0.022318706329430844,0.02205807025273063,0.021801201628860716,0.02154803249667935,0.021298496396783717,0.021052528332159134,0.020810064730013168,0.020571043404744683,0.020335403522024034,0.02010308556393719,0.019874031295162957,0.01964818373014772,0.019425487101249018,0.0192058868278059,0.018989329486120057,0.018775762780306078,0.01856513551398886,0.01835739756282036,0.01815249984778352,0.017950394309266905,0.017751033881878573,0.017554372469977732,0.017360364923903467,0.017168967016871067,0.016980135422524762,0.016793827693118824,0.016610002238309867,0.01642861830454,0.01624963595499552,0.016073016050116337,0.01589872022864739,0.015726710889209128,0.015556951172372836,0.015389404943227866,0.015224036774418226,0.015060811929643881,0.014899696347605214,0.014740656626379934,0.014583660008220662,0.014428674364755142,0.0142756681825842,0.014124610549260199,0.013975471139636405,0.013828220202575618,0.013682828548009975,0.013539267534334817,0.013397509056135586,0.013257525532231465,0.013119289894028243,0.012982775574173884,0.012847956495501496,0.012714807060259577,0.012583302139615131,0.012453417063424012,0.012325127610260484,0.012198409997700005,0.012073240872843203,0.011949597303081103,0.011827456767089305,0.011706797146046435,0.011587596715072417,0.011469834134874967,0.011353488443605404,0.011238539048912925,0.011124965720193381,0.01101274858102858,0.010901868101806565,0.010792305092523529,0.01068404069575819,0.010577056379815503,0.010471333932034513,0.010366855452257549,0.010263603346452252,0.010161560320487806,0.0100607093740571,0.009961033794741954,0.009862517152219766,0.009765143292602502,0.009668896332911042,0.009573760655676535,0.00947972090366724,0.009386761974737262,0.009294869016794844,0.009204027422883933,0.009114222826380873,0.009025441096299342,0.008937668332701971,0.00885089086221741,0.008765095233656097,0.008680268213727164,0.008596396782850306,0.008513468131061505,0.008431469654010905,0.008350388949047674,0.008270213811393779,0.008190932230401047,0.008112532385891123,0.008035002644575243,0.00795833155655364,0.007882507851889112,0.007807520437257055,0.007733358392667291,0.0076600109682566095,0.007587467581151357,0.007515717812395416,0.007444751403945995,0.0073745582557324975,0.007305128422778048,0.007236452112382081,0.007168519681363192,0.007101321633358464,0.007034848616181247,0.006969091419233318,0.006904040970971359,0.006839688336426716,0.006776024714775198,0.006713041436958657,0.006650729963354995,0.006589081881495936,0.0065280889038326195,0.006467742865544945,0.0064080357223975995,0.006348959548638534,0.00629050653494033,0.30802948046457795,0.30777490278094394,0.30701475772184655,0.30575967108824603,0.3040269022534516,0.3018397034740377,0.29922648816544684,0.2962198641859683,0.2928555928176926,0.28917153290224656,0.2852066233666845,0.28099994757091185,0.27658991114023557,0.2720135527658796,0.2673059961287827,0.2625000415067018,0.25762588822623134,0.2527109740310471,0.24777991449086395,0.2428545244429844,0.23795390372997632,0.23309457075571532,0.22829062925320373,0.2235539558288357,0.21889439808572456,0.21432675355877767,0.20991947188005575,0.20568086607474179,0.2016017118762322,0.19767343001345716,0.19388803203821067,0.1902380713985789,0.18671659918983846,0.18331712408185938,0.18003357598030964,0.17686027303081986,0.1737918916199389,0.17082343906632289,0.16795022872994037,0.16516785729776332,0.16247218403074046,0.15985931178060922,0.15732556960566763,0.15486749683294126,0.1524818284303271,0.1501654815665904,0.14791554324968287,0.1457186549321014,0.14355479341290042,0.14142458123154966,0.1393288757968482,0.13726834490154802,0.13524348538929992,0.13325464059447373,0.13130201655506626,0.12938569701781286,0.12750565726888344,0.12566177683443747,0.12385385110304171,0.12208160192710685,0.12034468726374202,0.1186427099167922,0.11697522544198696,0.11534174927633009,0.11374176315100659,0.11217472084509861,0.11064005333450817,0.10913717338772447,0.10766547965696041,0.1062243603100343,0.10481319624521532,0.10343136392824469,0.10207823788764754,0.10075319290163359,0.09945560590715832,0.09818485765904873,0.09694033416479712,0.095721427918243,0.09452753895331537,0.09335807573703661,0.09221245591922075,0.09109010695455415,0.08999046661136867,0.088697004258858,0.08721302895423938,0.08576118183542045,0.08434065354690166,0.08295065332106301,0.08159040902478602,0.08025916713679973,0.0789561926649506,0.07768076901155503,0.07643219779422641,0.07520979862864095,0.07401290887906944,0.07284088338181989,0.07169309414618219,0.07056893003687326,0.06946779644163448,0.06838911492708445,0.06733232288562992,0.06629687317589683,0.0652822337587758,0.0642878873310249,0.06331333095800484,0.06235807570699924,0.0614216462823278,0.06050358066333428,0.05960342974610989,0.05872075698977577,0.05785513806793865,0.05700616052587059,0.05617342344388486,0.05535653710722856,0.054555122682843606,0.05376881190318155,0.05299724675726456,0.05224007918911918,0.05149697080363543,0.05076759257993161,0.05005162459220453,0.0493487557380533,0.048658683474230795,0.04798111355976721,0.047315759806352005,0.046662343835910156,0.04602059484523827,0.04539024937757707,0.044771051101005585,0.04416275059348264,0.04356510513443346,0.042977878502698456,0.04240084078070616,0.04183376816471056,0.04127644278094554,0.04072865250751512,0.040190190801896994,0.03966085653387573,0.039140453823761356,0.03862879188574643,0.038125684876226876,0.037630951746968996,0.037144416102952695,0.03666590606475435,0.036195254135334635,0.03573229707107562,0.03527687575695575,0.03482883508571358,0.0343880238408793,0.03395429458354589,0.03352750354276745,0.0331075105094459,0.032694178733617796,0.032287374825009874,0.031886968656762334,0.03149283327221973,0.031104844794671235,0.03072288233996432,0.03034682793187844,0.029976566420175377,0.02961198540123117,0.029252975141172633,0.02889942850141698,0.02855124086655547,0.028208310074486105,0.0278705363487265,0.02753782223283746,0.02721007252687176,0.026887194225800735,0.026569096459836808,0.02625569043659424,0.025946889385029582,0.02564260850109132,0.025342764895036955,0.02504727754035028,0.024756067224210126,0.0244690564994578,0.02418616963801784,0.02390733258571208,0.023632472918437262,0.023361519799648643,0.023094403939110664,0.02283105755287801,0.02257141432445276,0.022315409367097083,0.022062979187250493,0.021814061649020146,0.0215685959397127,0.021326522536363534,0.021087783173244924,0.020852320810310902,0.02062007960255322,0.020391004870237362,0.020165043069995035,0.01994214176673501,0.01972224960636012,0.019505316289254532,0.01929129254452042,0.019080130104943208,0.018871781682653715,0.018666200945476358,0.01846334249393459,0.018263161838894683,0.018065615379828443,0.01787066038367814,0.01767825496429671,0.017488358062456622,0.017300929426402177,0.017115929592930294,0.01693331986898677,0.01675306231375508,0.016575119721231442,0.016399455603265927,0.01622603417305576,0.016054820329081457,0.015885779639464283,0.01571887832674218,0.01555408325304473,0.015391361905657945,0.015230682382966432,0.015072013380764339,0.014915324178917909,0.014760584628377626,0.01460776513852377,0.014456836664836967,0.014307770696887464,0.014160539246626467,0.01401511483697999,0.013871470490730045,0.013729579719676884,0.013589416514074484,0.013450955332332594,0.013314171090972911,0.01317903915483956,0.013045535327550482,0.01291363584218583,0.01278331735220745,0.012654556922598547,0.012527332021223476,0.012401620510397454,0.01227740063866104,0.012154651032756043,0.012033350689791859,0.011913478969604322,0.011795015587295819,0.011677940605954748,0.01156223442954809,0.011447877795984591,0.011334851770338985,0.01122313773823969,0.01111271739941026,0.01100357276136233,0.010895686133237806,0.010789040119791276,0.01068361761551519,0.010579401798899633,0.010476376126824812,0.010374524329082094,0.010273830403022172,0.010174278608322606,0.010075853461877326,0.009978539732800676,0.009882322437544654,0.009787186835127323,0.009693118422466113,0.009600102929818098,0.00950812631632085,0.00941717476563259,0.009327234681670326,0.009238292684439733,0.009150335605959445,0.009063350486273785,0.008977324569552985,0.008892245300278294,0.008808100319511564,0.008724877461243098,0.008642564748821122,0.008561150391456905,0.00848062278080524,0.008400970487618988,0.008322182258473247,0.00824424701256125,0.008167153838557298,0.008090891991546034,0.008015450890017631,0.007940820112924168,0.007866989396799608,0.007793948632939107,0.007721687864637464,0.0076501972844843745,0.007579467231717154,0.007509488189625833,0.007440250783013883,0.007371745775709978,0.0073039640681307125,0.007236896694894102,0.007170534822479619,0.007104869746937679,0.007039892891644588,0.006975595805102764,0.3265296378093164,0.32625275924884334,0.3254261886510674,0.3240619577079154,0.32217958677543757,0.31980532912858695,0.31697119330705065,0.313713812106627,0.31007323182779867,0.306091693087879,0.3018124660770757,0.2972787904780032,0.2925329554779764,0.28761554033635517,0.2825648223724255,0.2774163480199975,0.27220265423395923,0.26695312206084526,0.26169394131159873,0.25644816452801605,0.25123582927303734,0.2460741296733756,0.24097762064721176,0.235958440996109,0.23102657025443135,0.22624023561715978,0.22164018179251224,0.21721602858702163,0.21295813537483713,0.20885753787313538,0.20490589113767024,0.20109541809562473,0.19741886301436198,0.193869449376165,0.19044084169091705,0.1871271108332686,0.18392270253846502,0.18082240873276262,0.17782134141077283,0.17491490880453744,0.17209879361713734,0.1693689331186006,0.16672150092382268,0.16415289029144914,0.16165969879987277,0.159238714271527,0.15688690183003026,0.15460139198666134,0.15237946966302102,0.15020666514223693,0.14806507213842598,0.1459555528314279,0.14387894340549467,0.14183590346966937,0.139826932983636,0.13785238810257366,0.13591249593922858,0.13400736825788737,0.1321370141274999,0.13030135157076458,0.12850021825304345,0.1267333812596344,0.12500054601302496,0.12330136438324187,0.12163544204476467,0.12000234513305934,0.11840160625241634,0.11683272988509207,0.1152951972496297,0.11378847065382777,0.11231199738521223,0.11086521317938558,0.10944754530379025,0.10805841529192503,0.10669724136043403,0.1053634405389702,0.10405643054047681,0.10277563139715211,0.10152046688531387,0.10029036576037481,0.09908476282128605,0.09790309982202461,0.09674482624621605,0.0956093999593778,0.09425370910590776,0.09270950712742156,0.09119791030818389,0.08971812706739585,0.0882693823708179,0.0868509179309725,0.08546199232776348,0.08410188105923834,0.0827698765313636,0.08146528799463831,0.08018744143462145,0.07893567942266781,0.07770936093254763,0.07650786112791862,0.07533057112519848,0.07417689773579364,0.07304626319122326,0.07193810485432181,0.07085187491924615,0.06978704010281976,0.06874308132933968,0.06771949341077727,0.06671578472405122,0.06573147688685967,0.06476610443331457,0.06381921449055679,0.06289036645727118,0.06197913168496193,0.06108509316270858,0.06020784520598222,0.059346993150086375,0.05850215304862002,0.05767295137733223,0.05685902474367609,0.05606001960225977,0.05527559197642457,0.05450540718605728,0.05374913958174042,0.05300647228531066,0.0522770969368591,0.05156071344815557,0.050857029762518165,0.05016576162105839,0.049486632335260204,0.04881937256582791,0.048163720107696525,0.047519419681145786,0.0468862227288892,0.04626388721903698,0.045652177453817035,0.045050863883939966,0.04445972292846054,0.04387853680004144,0.04330709333546329,0.042745185831260954,0.04219261288436277,0.041649178237573185,0.041114690629806445,0.040588963650911934,0.04007181560097156,0.03956306935395126,0.03906255222555495,0.038570095845189376,0.038085536031895496,0.0376087126741348,0.03713946961331202,0.036677654530927514,0.03622311883922648,0.03577571757526431,0.03533530929826045,0.03490175599014321,0.03447492295919237,0.034054678746661154,0.03364089503630695,0.03323344656672094,0.03283221104637161,0.03243706907127368,0.03204790404520389,0.031664602102364735,0.03128705203243835,0.030915145207936437,0.030548775513777326,0.030187839279022487,0.02983223521068658,0.029481864329573948,0.029136629908060103,0.02879643740976033,0.028461194431027174,0.028130810644204817,0.02780519774260019,0.027484269387101863,0.027167941154398176,0.026856130486741084,0.02654875664320999,0.026245740652414803,0.025947005266608404,0.02565247491714931,0.02536207567127632,0.025075735190156254,0.02479338268815109,0.02451494889328262,0.024240366008842575,0.02396956767611705,0.023702488938191966,0.023439066204794457,0.023179237218152595,0.02292294101982837,0.022670117918499183,0.022420709458655274,0.0221746583901887,0.021931908638835346,0.021692405277456927,0.021456094498126455,0.021222923584995074,0.02099284088791967,0.020765795796817314,0.02054173871673737,0.020320621043618897,0.0201023951407166,0.01988701431567281,0.019674432798219715,0.019464605718483876,0.019257489085885576,0.01905303976860676,0.018851215473613136,0.018651974727216213,0.018455276856150896,0.018261081969163793,0.01806935093908922,0.017880045385400382,0.01769312765722472,0.01750856081680148,0.017326308623378712,0.01714633551752931,0.016968606605876492,0.016793087646215517,0.016619745033023617,0.01644854578333875,0.016279457523006597,0.016112448473277637,0.015947487437746766,0.015784543789627657,0.015623587459345467,0.01546458892244775,0.015307519187818084,0.015152349786185647,0.014999052758922554,0.014847600647122216,0.014697966480945466,0.014550123769234577,0.014404046489381551,0.014259709077446062,0.014117086418517532,0.013976153837308833,0.013836887088983058,0.013699262350201318,0.013563256210386466,0.013428845663200345,0.01329600809822129,0.013164721292825138,0.013034963404258094,0.0129067129618987,0.012779948859702742,0.012654650348828749,0.012530797030433388,0.01240836884863998,0.012287346083669295,0.012167709345130963,0.012049439565472416,0.01193251799357619,0.011816926188508572,0.011702646013410409,0.011589659629528496,0.011477949490382958,0.011367498336069513,0.011258289187687625,0.011150305341898403,0.011043530365603434,0.010937948090743645,0.010833542609216104,0.010730298267901554,0.01062819966380589,0.010527231639307839,0.010427379277512007,0.010328627897705877,0.010230963050914098,0.010134370515552786,0.010038836293177708,0.0099443466043254,0.009850887884444107,0.00975844677991449,0.009667010144153502,0.009576565033804661,0.009487098705008872,0.009398598609754904,0.009311052392309092,0.009224447885718301,0.009138773108389552,0.009054016260740627,0.008970165721921233,0.008887210046604267,0.008805137961841732,0.00872393836398882,0.008643600315690574,0.00856411304293161,0.008485465932146245,0.008407648527389597,0.008330650527564537,0.008254461783707662,0.008179072296329594,0.00810447221280957,0.0080306518248438,0.007957601565943698,0.007885312008986423,0.007813773863813836,0.007742977974879854 +0.12952957862556205,0.12929515308698308,0.12859779621426448,0.12745487374989234,0.1258940665280991,0.12395164080060717,0.1216703204650936,0.1190969873264214,0.11628042438965748,0.11326927746331619,0.1101103545077738,0.1068473230596537,0.10351981384475811,0.10016289931196101,0.09680689111464248,0.09347738928590922,0.09019551503191589,0.0869782652157255,0.08383893652970065,0.08078757857563759,0.07785154107866957,0.07507745343951902,0.07245537911776383,0.06995017162127222,0.06752581339317669,0.06518403760255621,0.06292573541569729,0.06075089888039009,0.05865879654338672,0.056648124438942994,0.05471713443913635,0.05286374224515546,0.051085617382005066,0.04938025750598485,0.047745049195723775,0.04617731721163302,0.04467436400100775,0.04323350101470312,0.04185207319733734,0.04052747782340609,0.039257178679472066,0.0380387164396192,0.03686971594708331,0.03574789099863155,0.03467104712848844,0.03363708280344829,0.032643989368854744,0.0316898500245449,0.03077283805899122,0.029891214527622598,0.029043325525978433,0.028227599179219156,0.02744254244540546,0.026686737810119442,0.025958839933659987,0.025257572298796528,0.024581723896090125,0.0239301459749993,0.023301748881805116,0.022695498999576146,0.022110415800808334,0.021545569019599278,0.02100007594731448,0.020473098853373912,0.019963842530964112,0.01947155196612721,0.018995510127587777,0.01853503587391419,0.018089481974045453,0.017658233236836105,0.017240704744996265,0.016836340188714046,0.016444610294153943,0.01606501134206708,0.015697063771820105,0.015340310866235477,0.014994317512812948,0.01465866903702285,0.014332970103554108,0.014016843681577924,0.013709930070274885,0.013411885981045549,0.013122383673039428,0.012841110138788666,0.012567766336927641,0.012302066469153355,0.012043737298726528,0.011792517508005331,0.011548157092622373,0.011310416790077339,0.011079067540655067,0.010853889978690636,0.010634673952352852,0.010421218070206316,0.010213329272934895,0.010010822428708262,0.009813519950770195,0.009621251435907918,0.009433853322564125,0.009251168567413627,0.009073046339310642,0.008899341729582611,0.008729915477700518,0.008564633711433657,0.008403367700636781,0.008245993623880296,0.008092392347179655,0.007942449214130504,0.007796053846790503,0.007653099956702729,0.00751348516548094,0.007377110834418393,0.007243881902616254,0.007113706733150604,0.006986496966839001,0.006862167383181587,0.006740635768084388,0.006621822787996563,0.006505651870107098,0.006392049088281776,0.006280943054425543,0.006172264814983449,0.006065947752306089,0.005961927490624429,0.005860141806387241,0.005760530542739554,0.005663035527922052,0.005567600497390764,0.005474171019467146,0.005382694424334119,0.0052931197362135795,0.005205397608560698,0.005119480262124927,0.005035321425734394,0.00495287627966946,0.004872101401494393,0.004792954714230816,0.004715395436755574,0.004639384036315565,0.004564882183058815,0.004491852706481747,0.004420259553705158,0.0043500677494890784,0.004281243357905502,0.004213753445591838,0.0041475660465087865,0.004082650128136034,0.004018975559037026,0.003956513077730766,0.003895234262810544,0.0038351115042540786,0.0037761179758686687,0.0037182276088235265,0.0036614150662184555,0.0036056557186433065,0.003550925620685438,0.0034972014883409143,0.003444460677293129,0.0033926811620187047,0.0033418415156856356,0.0032919208908101932,0.0032428990006381354,0.003194756101221854,0.0031474729741621265,0.0031010309099871406,0.0030554116921417203,0.003010597581562187,0.002966571301810489,0.0029233160247470586,0.002880815356718361,0.002839053325238717,0.002798014366146793,0.0027576833112158746,0.0027180453762018887,0.002679086149309882,0.0026407915800630228,0.0026031479685578104,0.0025661419550909535,0.0025297605101416887,0.0024939909246977595,0.002458820800910013,0.002424238043063564,0.0023902308488536316,0.0023567877009530408,0.0023238973588620812,0.002291548851028626,0.002259731467228754,0.00222843475119802,0.0021976484935044157,0.0021673627246526737,0.002137567708413175,0.0021082539353657376,0.0020794121166509134,0.0020510331779215038,0.002023108253485927,0.001995628680637873,0.001968585994164587,0.001941971921027463,0.0019157783752094461,0.0018899974527219318,0.0018646214267671554,0.0018396427430494204,0.00181505401523033,0.001790848020522922,0.0017670176954202204,0.0017435561315525306,0.0017204565716704057,0.0016977124057479416,0.0016753171672025916,0.0016532645292278985,0.0016315483012343203,0.0016101624253957525,0.001589100973297286,0.0015683581426810987,0.0015479282542874898,0.0015278057487870384,0.0015079851838020175,0.001488461231013272,0.0014692286733500855,0.001450282402260215,0.001431617415057827,0.0014132288123459716,0.0013951117955123048,0.0013772616642948434,0.0013596738144158417,0.0013423437352818315,0.0013252670077469662,0.0013084393019387195,0.0012918563751431304,0.001275514069748136,0.001259408311243003,0.0012435351062723998,0.0012278905407427851,0.001212470777980312,0.0011972720569380746,0.0011822906904513679,0.0011675230635396824,0.001152965631753462,0.0011386149195650149,0.001124467518801667,0.001110520087120118,0.0010967693465209023,0.001083212081901222,0.0010698451396457715,0.0010566654262538508,0.0010436699070019238,0.001030855604640507,0.0010182195981246205,0.0010057590213762286,0.000993471062078546,0.0009813529605006547,0.0009694020083518038,0.0009576155476646834,0.0009459909697063349,0.0009345257139165879,0.000923217266872737,0.0009120631612799205,0.0009010609749863894,0.0008902083300231974,0.0008795028916671074,0.0008689423675267336,0.0008585245066507742,0.00084824709865791,0.0008381079728878726,0.0008281049975727191,0.0008182360790282824,0.0008084991608648485,0.0007988922232166736,0.0007894132819899547,0.0007800603881283585,0.0007708316268961777,0.0007617251171782245,0.0007527390107961768,0.00074387149184091,0.0007351207760204944,0.0007264851100231116,0.0007179627708949741,0.0007095520654324727,0.0007012513295883253,0.0006930589278914522,0.0006849732528798996,0.0006769927245468956,0.0006691157897993988,0.0006613409219289174,0.0006536666200942603,0.0006460914088160328,0.0006386138374822512,0.0006312324798652476,0.0006239459336492171,0.0006167528199682759,0.0006096517829548523,0.0006026414892978542,0.0005957206278107692,0.0005888879090091364,0.0005821420646972781,0.0005754818475641337,0.0005689060307877083,0.0005624134076482795,0.00055600279114988,0.0005496730136499542,0.14082457890073555,0.14057265331915791,0.1398232344292957,0.13859497201019577,0.13691759000193765,0.1348300246738247,0.13237813552388578,0.12961223293949467,0.1265846542600441,0.12334757664416482,0.1199511946366482,0.1164423265014964,0.11286345718231182,0.10925218353372926,0.10564100113852236,0.102057360162191,0.09852391704997475,0.09505891565590373,0.09167664216799105,0.088387910296769,0.0852282086641296,0.08224247458892264,0.07941854211578257,0.07673056446070221,0.0741290918564489,0.07161294163459046,0.06918346174531466,0.06684100478802084,0.06458511600188444,0.0624146958015582,0.060328138691772504,0.058323450771199055,0.0563983481816689,0.05455033884820582,0.05277678974359401,0.05107498174050484,0.0494421539136058,0.047875538943930124,0.046372391071168084,0.04493000784497287,0.04354574674778354,0.042217037601707245,0.04094139153070681,0.039716407126085054,0.038539774357119104,0.037409276677581725,0.036322791701646394,0.035278290757312564,0.03427383757045172,0.03330758628666952,0.0323777789996558,0.0314827429228347,0.03062088731463255,0.02979070024584086,0.028990745279460783,0.028219658118707056,0.02747614326662145,0.026758970730886268,0.026066972799361224,0.02539904090528008,0.02475412259583127,0.024131218613525223,0.023529380096397615,0.022947705900394667,0.022385340045131586,0.021841469282612325,0.02131532078717002,0.020806159963946174,0.020313288372503836,0.019836041761664605,0.019373788211273262,0.018925926376423725,0.018491883829506256,0.0180711154954254,0.017663102175356535,0.017267349154458097,0.0168833848891025,0.016510759769283172,0.016149044952028093,0.015797831261814808,0.015456728154154286,0.015125362738676549,0.014803378858259764,0.014490436220890739,0.014186209581139156,0.013890387968296657,0.013602673958382874,0.013322782987407482,0.013050442703401843,0.012785392354895031,0.012527382213651482,0.012276173029598247,0.012031535516028024,0.011793249863250933,0.011561105278997919,0.011334899553977276,0.011114438651090106,0.01089953631689032,0.010690013713983893,0.010485699073123326,0.010286427363841097,0.010092039982539672,0.00990238445701015,0.009717314166436267,0.009536688075979086,0.009360370485105837,0.009188230788872962,0.009020143251427302,0.008855986791023436,0.008695644775915971,0.008539004830507348,0.00838595865117977,0.008236401831273495,0.008090233694698832,0.007947357137713669,0.007807678478412968,0.0076711073135116055,0.007537556382026377,0.007406941435479657,0.007279181114281784,0.00715419682995716,0.0070319126529056804,0.006912255205406689,0.006795153559592369,0.006680539140125864,0.006568345631346482,0.0064585088886465435,0.006350966853864009,0.00624565947448749,0.006142528626475512,0.0060415180405132786,0.005942573231530237,0.005845641431317176,0.005750671524088158,0.005657613984844032,0.0055664208203954416,0.005477045512921042,0.005389442965933705,0.005303569452539882,0.005219382565883117,0.00513684117166382,0.005055905362641422,0.004976536415021843,0.00489869674664264,0.004822349876873367,0.004747460388147685,0.0046739938890566395,0.004601916978927712,0.004531197213823336,0.00446180307389384,0.004393703932024604,0.0043268700237166,0.0042612724181488116,0.00419688299036711,0.004133674394550779,0.004071620038309976,0.004010694057966615,0.003950871294779068,0.0038921272720673235,0.0038344381732006807,0.0037777808204118306,0.003722132654399486,0.0036674717146895817,0.0036137766207204602,0.0035610265536225694,0.003509201238663595,0.003458280928331893,0.003408246386030058,0.003359078870356007,0.0033107601199457593,0.003263272338855506,0.0032165981824618293,0.0031707207438573448,0.0031256235407243075,0.0030812905026653095,0.003037705958973642,0.002994854626825627,0.0029527215998792268,0.00291129233726102,0.002870552652928974,0.0028304887053946007,0.0027910869877912077,0.0027523343182755742,0.0027142178307486367,0.002676724965885234,0.0026398434624595917,0.002603561348956081,0.002567866935454335,0.0025327488057791123,0.0024981958099035174,0.0024641970565983298,0.002430741906316738,0.0023978199643065585,0.0023654210739418907,0.0023335353102650436,0.002302152973732909,0.002271264584159019,0.0022408608748448375,0.0022109327868938956,0.0021814714637010137,0.0021524682456122383,0.0021239146647480103,0.0020958024399846072,0.0020681234720879614,0.0020408698389952394,0.0020140337912377226,0.0019876077475018627,0.0019615842903224563,0.0019359561619040032,0.0019107162600660566,0.0018858576343074992,0.0018613734819870108,0.0018372571446148753,0.0018135021042527285,0.0017901019800179814,0.0017670505246884939,0.0017443416214055053,0.0017219692804705889,0.0016999276362340081,0.0016782109440713175,0.0016568135774457477,0.001635730025052698,0.0016149548880448983,0.00159448287733476,0.0015743088109717541,0.0015544276115927456,0.0015348343039420685,0.0015155240124603518,0.0014964919589390432,0.0014777334602389313,0.0014592439260705744,0.0014410188568350119,0.0014230538415221656,0.0014053445556661134,0.0013878867593548245,0.001370676295292844,0.0013537090869156572,0.0013369811365533761,0.0013204885236432625,0.0013042274029888875,0.0012881940030647734,0.0012723846243653948,0.0012567956377965417,0.0012414234831086735,0.0012262646673704062,0.0012113157634811612,0.0011965734087217676,0.0011820343033421992,0.0011676952091846788,0.0011535529483420218,0.0011396044018495124,0.0011258465084096503,0.0011122762631489173,0.0010988907164051758,0.0010856869725454864,0.0010726621888130262,0.0010598135742024286,0.001047138388362709,0.0010346339405272167,0.0010222975884693316,0.0010101267374838787,0.000998118839393027,0.0009862713915762017,0.0009745819360234793,0.0009630480584113212,0.0009516673872007423,0.000940437592756765,0.0009293563864887676,0.0009184215200113094,0.000907630784324422,0.0008969820090134657,0.0008864730614675446,0.0008761018461162103,0.0008658663036838599,0.0008557644104615686,0.0008457941775954591,0.0008359536503917328,0.0008262409076375178,0.0008166540609372388,0.000807191254064267,0.000797850662327026,0.0007886304919497426,0.0007795289794670185,0.0007705443911320923,0.0007616750223383284,0.0007529191970537878,0.0007442752672681403,0.0007357416124521425,0.0007273166390289519,0.0007189987798571252,0.0007107864937251225,0.0007026782648566796,0.0006946726024272252,0.0006867680400907503,0.0006789631355169578,0.0006712564699385746,0.0006636466477082156,0.0006561322958650345,0.0006487120637105704,0.0006413846223937092,0.1530456499512205,0.1527748648849773,0.15196934573908696,0.15064914329420243,0.14884620906949098,0.14660238728697778,0.14396694768795573,0.14099392324070814,0.13773950287917988,0.1342596821378872,0.13060830875712565,0.12683559120356472,0.12298707742321446,0.11910306582576932,0.11521838244223948,0.11136244576849887,0.10755954042425594,0.10382922829886783,0.10018683760287038,0.0966439833384197,0.09324455340854453,0.09003118378784729,0.08699015201693999,0.08410428277634906,0.0813175080227929,0.0786183872247913,0.07600881017272079,0.07348956583250886,0.07106054309889834,0.06872090542149789,0.06646924091722661,0.06430369006278397,0.06222205328221711,0.060221880786736466,0.0583005469473001,0.056455311331249175,0.05468336834529149,0.05298188722150691,0.05134804387607037,0.04977904597239637,0.048272152336380846,0.046824687705055545,0.04543405364184102,0.044097736321530044,0.04281331177544043,0.04157844908998963,0.04039091196912233,0.039248559000649594,0.038149342907073926,0.03709130901163289,0.03607259310833438,0.035091418889921476,0.03414609505862044,0.03323501222046248,0.032356639643976746,0.031509521947713844,0.030692275767429996,0.02990358644273027,0.029142204753889556,0.02840694373212697,0.02769667556068562,0.02701032857912471,0.026346884399370656,0.025705375138932614,0.025084880774167664,0.024484526614570665,0.02390348089747451,0.02334095250139415,0.02279618877533507,0.02226847348074014,0.021757124842227103,0.021261493703002118,0.020780961780568836,0.020314940018270788,0.019862867028167527,0.019424207620740264,0.018998451417034188,0.018585111538903243,0.018183723373173775,0.017793843405681596,0.017415048121302974,0.017046932966240616,0.01668911136903772,0.016341213816922488,0.01600288698427901,0.015673792910209462,0.015353608222292156,0.015042023403837533,0.014738742102059785,0.01444348047475049,0.014155966573178809,0.013875939759061344,0.013603150153600068,0.013337358116679604,0.01307833375444626,0.012825856453592873,0.012579714440781355,0.012339704365715746,0.012105630906494263,0.011877306395929044,0.011654550467615281,0.011437189720608192,0.01122505740162182,0.01101799310375371,0.010815842480777485,0.01061845697611888,0.010425693565678198,0.010237414513718847,0.010053487141077613,0.009873783605015528,0.009698180690052623,0.009526559609177676,0.009358805814863024,0.009194808819336847,0.009034462023616645,0.008877662554819355,0.008724311111302159,0.008574311815214663,0.008427572072058164,0.008284002436887558,0.008143516486796782,0.008006030699359512,0.00787146433671128,0.007739739334981596,0.007610780198792435,0.007484513900569182,0.007360869784411812,0.007239779474294957,0.007121176786379192,0.007004997645220855,0.006891180003691346,0.006779663766415731,0.006670390716558177,0.006563304445787903,0.0064583502872717245,0.006355475251540701,0.00625462796509743,0.006155758611626892,0.006058818875687879,0.005963761888767228,0.005870542177581171,0.005779115614522477,0.005689439370149151,0.005601471867620178,0.005515172738989368,0.005430502783267539,0.005347423926176879,0.005265899181516242,0.005185892614065853,0.005107369303961076,0.0050302953124707565,0.00495463764911382,0.004880364240059048,0.004807443897747957,0.004735846291688059,0.004665541920366181,0.004596502084230124,0.004528698859696318,0.004462105074136338,0.004396694281801133,0.004332440740644191,0.004269319390002461,0.004207305829102585,0.004146376296355155,0.004086507649404942,0.004027677345905574,0.0039698634249895086,0.00391304448940237,0.003857199688277594,0.0038023087005230097,0.0037483517187952907,0.0036953094340392944,0.0036431630205675286,0.0035918941216609664,0.0035414848356684647,0.003491917702585845,0.003443175691095536,0.0033952421860495995,0.0033481009763767517,0.003301736243399789,0.003256132549545424,0.003211274827432273,0.00316714836932308,0.0031237388169255286,0.00308103215153092,0.003039014684476095,0.002997673047917329,0.0029569941859042006,0.0029169653457431126,0.0028775740696379538,0.0028388081866000427,0.002800655804615791,0.0027631053030631996,0.0027261453253688644,0.002689764771894956,0.0026539527930502928,0.0026186987826157396,0.002583992371276862,0.002549823420357018,0.002516182015742357,0.002483058461993836,0.0024504432766383564,0.0024183271846333395,0.002386701112998502,0.0023555561856096665,0.0023248837181476492,0.0022946752131986895,0.002264922355500015,0.0022356170073259494,0.0022067512040103133,0.0021783171495993,0.0021503072126320025,0.002122713922043252,0.002095529963185009,0.0020687481739628186,0.002042361541082392,0.0020163631964042134,0.0019907464134015247,0.0019655046037187845,0.0019406313138271754,0.0019161202217744902,0.0018919651340252855,0.0018681599823898733,0.001844698821038158,0.00182157582359613,0.0017987852803226115,0.0017763215953628202,0.0017541792840776052,0.0017323529704450487,0.0017108373845325818,0.0016896273600372272,0.0016687178318923798,0.0016481038339380178,0.0016277804966537289,0.0016077430449516574,0.0015879867960279224,0.001568507157270947,0.00154929962422422,0.0015303597786029246,0.0015116832863619827,0.0014932658958143206,0.0014751034357980506,0.0014571918138904358,0.0014395270146681728,0.0014221050980120177,0.0014049221974545977,0.0013879745185702132,0.00137125833740558,0.0013547699989496721,0.0013385059156424948,0.0013224625659209253,0.0013066364928008287,0.0012910243024946437,0.0012756226630627294,0.0012604283030984516,0.0012454380104453663,0.0012306486309458602,0.001216057067220319,0.001201660277476181,0.001187455274345462,0.0011734391237507545,0.001159608943798323,0.0011459619036977777,0.0011324952227077258,0.0011192061691061908,0.0011060920591858445,0.0010931502562728207,0.0010803781697686732,0.0010677732542150355,0.001055333008379809,0.0010430549743650653,0.001030936736735512,0.0010189759216671977,0.001007170196115883,0.000995517267004702,0.000984014880430178,0.0009726608208867121,0.0009614529105086122,0.0009503890083293535,0.0009394670095577765,0.0009286848448703425,0.0009180404797196073,0.0009075319136580934,0.0008971571796772956,0.000886914343561418,0.0008768015032556065,0.0008668167882479133,0.0008569583589651925,0.0008472244061821556,0.0008376131504434096,0.0008281228414982829,0.0008187517577477057,0.000809498205703392,0.0008003605194586286,0.0007913370601704928,0.000782426215553363,0.000773626399383067,0.0007649360510118951,0.0007563536348938598,0.0007478776401200764,0.1662598252261087,0.16596868669251327,0.16510263114440224,0.16368324389784963,0.1617449143108665,0.15933266508698188,0.15649948745310333,0.1533034687687465,0.14980498339449788,0.1460641657025808,0.1421388122873016,0.138082785319961,0.13394492343024508,0.12976841777760306,0.12559058108340662,0.12144292443098825,0.1173514566369345,0.113337129446928,0.10941636467891706,0.10560163615311843,0.10194965348176227,0.09849575559675061,0.09522509751327049,0.09212415888628908,0.08914411491897087,0.08625350237377427,0.08345485651418963,0.08074949549671573,0.07813773425038716,0.07561907176591093,0.07319235310722176,0.0708559080609836,0.06860766865272318,0.06644526786641204,0.06436612187297391,0.06236749795355441,0.06044657013187348,0.05860046433319988,0.05682629468331597,0.05512119236135052,0.05348232823231093,0.05190693031314741,0.05039229697159935,0.048935806620324845,0.0475349245495384,0.04618720743789716,0.044890305992715034,0.04364196609492803,0.0424400287599471,0.041282429171479194,0.04016719499968361,0.039092444176935186,0.038056382272545174,0.03705729958126523,0.036093568018279745,0.03516363789524825,0.0342660346367566,0.03339935548417827,0.032562266223728334,0.031753497967077715,0.030971844006155682,0.030216156758124245,0.029485344812045577,0.028778370085143317,0.028094245093586535,0.02743203034048874,0.026790831821894404,0.02616979865014081,0.025568120792847645,0.0249850269249592,0.024419782390597836,0.023871687271090975,0.023340074555163483,0.022824308407120242,0.022323782528730164,0.02183791861046066,0.02136616486777464,0.02090799465821407,0.020462905175119967,0.020030416213942255,0.01961006900724181,0.019201425124607145,0.018804065433909632,0.018417589120436825,0.018041612760632788,0.017675769447331135,0.017319707963509446,0.016973092001783745,0.01663559942697637,0.016306921579261134,0.015986762615524636,0.015674838886704404,0.015370878349021178,0.015074620007116202,0.014785813387238052,0.01450421803872696,0.014229603062156848,0.013961746662575615,0.013700435726405393,0.013445465420625432,0.013196638812957436,0.012953766511851133,0.012716666325126585,0.01248516293622306,0.012259087597044268,0.012038277836464328,0.011822577183611373,0.011611834905102642,0.011405905755442546,0.011204649739863733,0.01100793188891331,0.010815622044139512,0.01062759465427342,0.010443728581324066,0.010263906916060038,0.010088016802361563,0.009915949269969459,0.00974759907518403,0.009582864549083386,0.00942164745287305,0.009263852839984056,0.009109388924568806,0.008958166956060665,0.008810101099485188,0.008665108321220976,0.00852310827993806,0.00838402322244462,0.008247777884194368,0.008114299394222162,0.007983517184279301,0.00785536290196708,0.007729770327664313,0.007606675295063919,0.007486015615140805,0.0073677310033854445,0.0072517630101398165,0.007138054953892402,0.007026551857385382,0.006917200386401258,0.006809948791103383,0.006704746849804953,0.006601545815058733,0.00650029836195432,0.006400958538522169,0.006303481718148053,0.00620782455390195,0.006113944934698637,0.0060218019432032345,0.0059313558154042096,0.005842567901778075,0.005755400629976524,0.005669817468964208,0.0055857828945480295,0.005503262356232872,0.005422222245347083,0.0053426298643835645,0.005264453397499964,0.00518766188213319,0.005112225181676536,0.005038113959175639,0.0049652996519997505,0.004893754447448114,0.004823451259249305,0.004754363704920242,0.0046864660839460014,0.004619733356747803,0.0045541411244072235,0.004489665609113351,0.004426283635306775,0.004363972611489653,0.004302710512675804,0.004242475863456059,0.004183247721651701,0.004125005662536105,0.004067729763599499,0.004011400589836626,0.003955999179536338,0.0039015070305547066,0.0038479060870504293,0.0037951787266679456,0.0037433077481486025,0.003692276359354473,0.003642068165689672,0.0035926671589021943,0.003544057706254613,0.0034962245400478238,0.0034491527474852703,0.0034028277608657838,0.003357235348090875,0.003312361603477478,0.003268192938863142,0.0032247160749936496,0.003181918033182703,0.0031397861272345257,0.0030983079556180693,0.0030574713938864,0.0030172645873305115,0.0029776759438600972,0.002938694127103626,0.0029003080497184896,0.0028625068669060395,0.0028252799701226996,0.002788616980981103,0.0027525077453343944,0.0027169423275380674,0.002681911004881769,0.002647404262187256,0.0026134127865653422,0.0025799274623270964,0.0025469393660444554,0.002514439761753847,0.0024824200963000256,0.00245087199481401,0.0024197872563211046,0.0023891578494753115,0.002358975908414523,0.0023292337287343966,0.0022999237635757236,0.002271038619822155,0.002242571054404528,0.002214513970708902,0.0021868604150837626,0.0021596035734448562,0.0021327367679733174,0.002106253453904638,0.00208014721640589,0.002054411767537416,0.0020290409432977574,0.002004028700748195,0.0019793691152148415,0.0019550563775657687,0.0019310847915612734,0.0019074487712740416,0.0018841428385784097,0.0018611616207056586,0.0018384998478636367,0.0018161523509191357,0.0017941140591401655,0.0017723799979975949,0.001750945287023482,0.0017298051377247147,0.0017089548515505822,0.0016883898179119064,0.0016681055122512807,0.0016480974941621535,0.0016283614055556006,0.0016088929688733605,0.001589687985346072,0.0015707423332946481,0.001552051966474599,0.0015336129124612766,0.001515421271075179,0.0014974732128463658,0.001479764977516222,0.0014622928725764026,0.0014450532718433046,0.0014280426140672372,0.0014112574015753465,0.0013946941989475539,0.0013783496317239378,0.0013622203851436435,0.0013463032029136966,0.001330594886007206,0.0013150922914903298,0.001299792331376586,0.0012846919715086376,0.0012697882304661564,0.0012550781784993015,0.0012405589364872889,0.001226227674920823,0.0012120816129085512,0.0011981180172062618,0.0011843342012685231,0.0011707275243220637,0.0011572953904605567,0.001144035247759694,0.0011309445874127398,0.0011180209428855346,0.0011052618890905516,0.0010926650415797867,0.0010802280557553607,0.0010679486260981857,0.0010558244854136404,0.0010438534040940306,0.0010320331893975516,0.0010203616847428813,0.0010088367690196038,0.0009974563559136365,0.0009862183932474507,0.0009751208623346526,0.0009641617773487631,0.0009533391847053818,0.0009426511624580075,0.000932095819706736,0.0009216712960196523,0.0009113757608667839,0.0009012074130658359,0.0008911644802400159,0.0008812452182872446,0.0008714479108606013,0.18053722922325563,0.1802240878789533,0.17929260063499647,0.17776604095825596,0.1756814775005927,0.17308742129330368,0.17004094026936828,0.16660455319771916,0.16284319714898918,0.15882150520995014,0.15460155239387183,0.15024114577282585,0.1457926637579935,0.14130239699444253,0.1368103114964944,0.13235014120892577,0.12794971770622754,0.1236314542870053,0.11941291589509441,0.11530864597992199,0.1113900001192064,0.10768158426507665,0.10416775250731257,0.10083433458084033,0.09765053039129495,0.0945606631423966,0.09156458303445446,0.0886642451379946,0.08586048693534733,0.08315322870557515,0.08054164806011876,0.07802433028957931,0.0755993966057056,0.07326461255242683,0.07101747888645388,0.06885530714764844,0.06677528199293815,0.06477451218529462,0.06285007193179704,0.06099903406687065,0.05921849638653135,0.057505602263051916,0.055857556509222604,0.05427163731818784,0.052745204979157606,0.05127570795932011,0.04986068684771209,0.04849777657548853,0.04718470725771043,0.04591930394316551,0.044699485508966616,0.04352326289502889,0.042388736838468555,0.04129409523875076,0.04023761025991912,0.039217635256079866,0.03823260158935142,0.03728101539564646,0.03636145434213006,0.035472564410701124,0.03461305673416639,0.03378170450531781,0.032977339974003775,0.03219885154307385,0.03144518097061266,0.03071532068324346,0.0300083112029912,0.029323238688522168,0.028659232590192592,0.02801546341729455,0.02739114061504174,0.026785510548298013,0.026197854588545438,0.02562748730032249,0.025073754723159977,0.024536032744900196,0.024013725562294506,0.023506264224730934,0.023013105257024116,0.02253372935727648,0.022067640165931924,0.021614363102243066,0.02117344426456136,0.020744449390947575,0.020326962876790027,0.019920586846260933,0.01952494027457173,0.019139658158184216,0.018764390730235236,0.01839880271860563,0.018042572644198535,0.017695392157109587,0.017356965408532026,0.017027008456332572,0.016705248702367597,0.016391424359716987,0.01608528394812417,0.01578658581601376,0.015495097687584765,0.01521059623353457,0.014932866664073853,0.01466170234297007,0.014396904421418524,0.014138281490636864,0.013885649252119152,0.013638830204564993,0.013397653346551073,0.013161953894075026,0.012931573012137038,0.01270635755959991,0.012486159846588074,0.012270837403744243,0.012060252762701708,0.011854273247156067,0.011652770773977405,0.011455621663815804,0.011262706460696704,0.01107390976013124,0.01088912004528455,0.010708229530788252,0.010531134013790704,0.010357732731870536,0.010187928227458584,0.010021626218435192,0.00985873547458019,0.009699167699586661,0.009542837418349789,0.009389661869267377,0.009239560901302964,0.009092456875567626,0.00894827457120542,0.008806941095363292,0.008668385797048187,0.00853254018468068,0.008399337847168278,0.008268714378322724,0.008140607304468476,0.008014956015084472,0.007891701696336975,0.007770787267368753,0.0076521573192101285,0.007535758056196128,0.007421537239768275,0.007309444134552698,0.007199429456611214,0.007091445323761792,0.00698544520788019,0.006881383889088723,0.006779217411749125,0.006678903042178192,0.006580399228011248,0.0064836655591362785,0.006388662730135193,0.00629535250416214,0.006203697678197465,0.006113662049619067,0.00602521038403077,0.005938308384298485,0.005852922660739086,0.005769020702414598,0.005686570849484579,0.005605542266573471,0.005525904917107234,0.005447629538583496,0.005370687618733205,0.005295051372538295,0.005220693720071192,0.005147588265119815,0.005075709274570278,0.00500503165851346,0.004935530951047856,0.004867183291751511,0.004799965407793681,0.00473385459666493,0.004668828709498232,0.004604866134959268,0.004541945783683336,0.004480047073238742,0.004419149913593767,0.0043592346930713425,0.004300282264770242,0.004242273933435944,0.004185191442764864,0.004129016963123393,0.004073733079669233,0.004019322780857815,0.003965769447320122,0.003913056841099133,0.0038611690952292787,0.0038100907036495656,0.003759806511435734,0.003710301705340967,0.003661561804633643,0.003613572652222333,0.003566320406055694,0.003519791530790176,0.0034739727897141206,0.003428851236919742,0.003384414209715073,0.0033406493212655075,0.0032975444534594314,0.003255087749988402,0.003213267609635185,0.0031720726797622428,0.003131491849994525,0.003091514246088285,0.0030521292239818303,0.003013326364020411,0.002975095465349955,0.002937426540474536,0.0029003098099705015,0.002863735697354266,0.0028276948240969864,0.002792178004781951,0.0027571762424004197,0.00272268072377996,0.002688682815142912,0.0026551740577893546,0.0026221461639011046,0.002589591012462724,0.002557500645296305,0.0025258672632050795,0.0024946832222242335,0.0024639410299741485,0.0024336333421133382,0.00240375295888842,0.002374292821776713,0.002345246010220432,0.002316605738448246,0.002288365352382131,0.0022605183266266433,0.0022330582615386393,0.0022059788803737925,0.0021792740265091414,0.002152937660738206,0.002126963858636921,0.0021013468079985657,0.0020760808063345812,0.002051160258440779,0.0020265796740259034,0.0020023336654010366,0.0019784169452284907,0.001954824324327352,0.0019315507095353929,0.001908591101624726,0.0018859405932700353,0.0018635943670677485,0.0018415476936050517,0.0018197959295763897,0.0017983345159473581,0.0017771589761636907,0.0017562649144043862,0.0017356480138780387,0.0017153040351602477,0.001695228814572162,0.0016754182625981033,0.0016558683623415838,0.001636575168018453,0.0016175348034866042,0.0015987434608102963,0.001580197398859318,0.0015618929419411749,0.0015438264784657125,0.0015259944596415233,0.0015083933982025653,0.00149101986716509,0.001473870498613439,0.0014569419825141104,0.001440231065557588,0.0014237345500265047,0.001407449292690393,0.0013913722037255864,0.0013755002456599156,0.0013598304323414686,0.0013443598279310172,0.001329085545916881,0.0013140047481524802,0.0012991146439153747,0.001284412488987425,0.0012698955847557643,0.0012555612773334022,0.0012414069566998348,0.0012274300558604565,0.0012136280500245928,0.0011999984558018128,0.0011865388304155137,0.0011732467709341004,0.001160119913518753,0.0011471559326876025,0.0011343525405958204,0.0011217074863314525,0.0011092185552260725,0.0010968835681806075,0.0010847003810054174,0.0010726668837744778,0.001060781000193465,0.0010490406869809342,0.0010374439332629212,0.0010259887599801416,0.0010146732193076994,0.15672634620837791,0.1565502361118523,0.15602477337938433,0.1551584353385815,0.15396494357188825,0.15246268834471377,0.1506739886887733,0.14862424364315546,0.14634103340665486,0.14385322621865085,0.1411901388907811,0.13838078780251034,0.13545325471521133,0.1324341796032338,0.12934838207611843,0.12621860459898215,0.12306536486659214,0.11990690123961209,0.1167591937595349,0.11363604345597683,0.11054919396144464,0.1075084814147245,0.10452200090815175,0.10159628004841674,0.09873872242758414,0.09599166926741555,0.09336384795848539,0.09084803473879523,0.08843756571463395,0.08612431942734991,0.08387393912578328,0.08167705954192707,0.07953499862641243,0.0774485889043192,0.07541824545817652,0.07344402730249672,0.07152569233572419,0.06966274618079046,0.06785448530613017,0.06610003486544051,0.06439838171445343,0.06274840306406898,0.06114889121661572,0.059598574810156915,0.0580961369683933,0.056640230722804774,0.05522949204174618,0.0538625507691925,0.05253803974478175,0.05125460234753191,0.05001089867808765,0.048805610569221856,0.0476374455913376,0.046505140199003335,0.045407462145934094,0.04434321227937876,0.04331122581009688,0.04231037314123201,0.04133956032798668,0.040397729229996154,0.0394838574096647,0.03859695782202935,0.03773607833519274,0.036900301114600104,0.036088741899455754,0.03530054919534712,0.03453490340337285,0.03379101590292184,0.0330681281025008,0.03236551047065457,0.03168246155697256,0.031018307011513334,0.030372398609426376,0.029744113286338945,0.029132852188993457,0.028538039744682327,0.027959122752306765,0.02739556949718346,0.026846868891198715,0.02631252963944199,0.025792079434072187,0.02528506417581553,0.02479104722328585,0.024309608670038445,0.023840344649123,0.0233828666647559,0.02293680095058616,0.02250178785398687,0.022077481245686034,0.02166354795402104,0.02125966722306868,0.02086553019384384,0.020480839407792273,0.020105308331750706,0.01973866090357375,0.01938063109762131,0.019030962509320175,0.018689407958005742,0.01835572910730116,0.01802969610227595,0.017711087222666615,0.017399688551464485,0.01709529365817857,0.016797703296140255,0.016506725113204872,0.01622217337525143,0.01594386870189726,0.015671637813873422,0.015405313291516216,0.015144733343876695,0.014889741587948254,0.01464018683754807,0.014395922901407452,0.014156808390035558,0.013922706530961539,0.013693484991957279,0.013469015711872452,0.013249174738733384,0.01303384207475877,0.012822901527984374,0.012616240570182211,0.012413750200787627,0.012215324816555342,0.01202086208668474,0.01183026283315599,0.011643430916047626,0.011460273123601643,0.01128069906682153,0.011104621078400463,0.010931954115775877,0.01076261566813376,0.01059652566717818,0.010433606401499372,0.010273782434379233,0.010116980524883376,0.009963129552087108,0.009812160442305972,0.00966400609919143,0.009518601336568339,0.009375882813896124,0.009235788974233458,0.009098259984605846,0.008963237678665845,0.008830665501549841,0.008700488456838459,0.008572653055525625,0.008447107266917981,0.00832380047137726,0.00820268341483067,0.008083708164973521,0.007966828069095893,0.007851997713460538,0.0077391728841742025,0.007628310529486025,0.007519368723455616,0.007412306630936635,0.007307084473817271,0.007203663498473264,0.007102005944379061,0.007002075013833369,0.006903834842752933,0.006807250472494135,0.006712287822657426,0.00661891366484093,0.006527095597302103,0.00643680202049304,0.006348002113436609,0.0062606658109070085,0.006174763781388601,0.00609026740577945,0.00600714875681195,0.00592538057916477,0.005844936270235965,0.005765789861556989,0.005687916000820157,0.005611289934497714,0.005535887491030049,0.005461685064563247,0.005388659599212383,0.005316788573835265,0.005246049987295135,0.005176422344195064,0.005107884641068165,0.005040416353003974,0.00497399742069941,0.004908608237915857,0.0048442296393289615,0.004780842888758191,0.004718429667759736,0.0046569720645736655,0.004596452563410211,0.00453685403406423,0.004478159721846338,0.004420353237820367,0.004363418549334396,0.004307339970838336,0.0042521021549758896,0.004197690083942292,0.004144089061099661,0.0040912847028387435,0.004039262930682033,0.003988009963617724,0.003937512310657745,0.0038877567636120837,0.0038387303900731893,0.0037904205266012674,0.003742814772106721,0.0036959009814211976,0.0036496672590518578,0.0036041019531133597,0.0035591936494300904,0.0035149311658056034,0.0034713035464520366,0.00342830005657495,0.0033859101771093656,0.003344123599600305,0.003302930221225701,0.003262320139955409,0.00322228364984277,0.0031828112364443105,0.003143893572364371,0.003105521512919019,0.0030676860919178297,0.003030378517558272,0.0029935901684297528,0.002957312589624555,0.002921537488950875,0.002886256733246778,0.002851462344790761,0.002817146497806376,0.002783301515058047,0.0027499198645359207,0.002716994156225612,0.0026845171389623247,0.0026524816973653668,0.002620880848851202,0.0025897077407232424,0.0025589556473346463,0.0025286179673240225,0.002498688220920325,0.002469160047315671,0.0024400272021042925,0.002411283554784683,0.0023829230863246266,0.002354939886786263,0.0023273281530098015,0.0023000821863542265,0.0022731963904937097,0.0022466652692672063,0.0022204834245810575,0.0021946455543621624,0.0021691464505606225,0.0021439809972008755,0.0021191441684788553,0.0020946310269054583,0.0020704367214938292,0.0020465564859898635,0.0020229856371444996,0.0019997195730270946,0.001976753771377838,0.0019540837879994093,0.0019317052551858602,0.0019096138801881195,0.0018878054437153366,0.001866275798470322,0.0018450208677192896,0.0018240366438942175,0.0018033191872271132,0.0017828646244158128,0.001762669147319481,0.0017427290116842895,0.0017230405358975775,0.001703600099770152,0.0016844041433458155,0.0016654491657378454,0.0016467317239908688,0.0016282484319685637,0.001609995959265743,0.0015919710301444817,0.0015741704224939046,0.0015565909668123232,0.001539229545212123,0.0015220830904461137,0.0015051485849550661,0.0014884230599361051,0.0014719035944307664,0.0014555873144332077,0.001439471392017265,0.0014235530444823177,0.0014078295335172829,0.0013922981643826656,0.0013769562851094856,0.0013618012857156067,0.0013468305974383744,0.0013320416919833705,0.0013174320807891342,0.0013029993143068514,0.0012887409812954295,0.001274654708131043,0.0012607381581310109,0.17221716559411587,0.17202553750259825,0.17145378125953212,0.17051114336904336,0.16921258767055924,0.1675781639593664,0.1656321968751272,0.1634023563085193,0.1609186740486661,0.15821256801179323,0.15531592654468696,0.15226029293904203,0.14907617650334626,0.14579250314506112,0.14243620676644145,0.13903195365640245,0.13560198573302085,0.1321660648155052,0.12874149867982457,0.12534322995679315,0.12198397042598651,0.1186743654602993,0.11542317589402011,0.11223746713222596,0.10912831111967022,0.10614378169099946,0.10328737500981153,0.1005513804554147,0.09792868241885906,0.09541270473803233,0.09298150535346403,0.0906055871987781,0.08828608666486407,0.08602417791489661,0.0838205663924585,0.08167555498682837,0.07958910361462851,0.07756088246360682,0.07559031924757587,0.07367664088569935,0.07181891005326596,0.07001605706251456,0.06826690752721219,0.06657020624818451,0.06492463773321146,0.06332884373600445,0.061781438168110187,0.06028101970594017,0.058826182383733897,0.057415524433371744,0.056047655603462,0.054721203163871406,0.05343481677767712,0.05218717240059336,0.05097697534803869,0.049802962652393756,0.04866390481707265,0.047558607060101066,0.04648591012750531,0.04544469074589455,0.04443386177416358,0.04345237210580534,0.042499206366089004,0.04157338444202516,0.0406739608774803,0.0398000241611064,0.0389506959305472,0.038125130112834804,0.03732251201781335,0.036542057398768445,0.03578301149211236,0.03504464804609727,0.03432626834674958,0.033627200247841285,0.032946797210455965,0.03228443735663955,0.031639522540778266,0.03101147744152905,0.030399748676521413,0.029803803941482885,0.02922313117500194,0.028657237749717072,0.0281056496904608,0.02756791091955393,0.027043582529264584,0.026532242081257807,0.026033482932686508,0.025546913588505974,0.025072157079445212,0.024608850365028027,0.02415664376097344,0.023715200390242233,0.023284195657007713,0.02286331674276794,0.022452262123830172,0.022050741109386592,0.021658473399414263,0.021275188661607734,0.020900626126617163,0.020534534200825745,0.020176670095949333,0.019826799474756587,0.019484696112206858,0.01915014157136116,0.01882292489340915,0.018502842301196507,0.018189696915654578,0.01788329848456141,0.017583463123069437,0.017290013065488018,0.017002776427798398,0.016721586980419596,0.01644628393076351,0.016176711715121545,0.015912719799473323,0.015654162488798164,0.015400898744505771,0.015152792009618268,0.014909710041339744,0.014671524750689805,0.014438112048868829,0.01420935170005285,0.013985127180323608,0.013765325542460313,0.01354983728631649,0.013338556234543185,0.013131379413407343,0.012928206938478884,0.012728941904971402,0.012533490282518711,0.012341760814201248,0.012153664919623924,0.011969116601869502,0.011788032358154817,0.011610331094028788,0.011435934040950599,0.011264764677107974,0.011096748651328385,0.010931813709949958,0.010769889626526637,0.010610908134238128,0.010454802860897458,0.010301509266438079,0.010150964582776565,0.010003107755952685,0.00985787939044323,0.009715221695566927,0.009575078433886006,0.009437394871523437,0.009302117730314974,0.009169195141722774,0.009038576602431299,0.008910212931564196,0.008784056229450334,0.008660059837877031,0.008538178301772257,0.008418367332252739,0.008300583770989394,0.008184785555832682,0.008070931687648806,0.007958982198320438,0.007848898119860837,0.007740641454604037,0.0076341751464240265,0.007529463052944228,0.00742646991869891,0.007325161349210529,0.007225503785943687,0.007127464482108032,0.007031011479272727,0.006936113584763605,0.0068427403498142365,0.006750862048438622,0.006660449657003609,0.006571474834471055,0.00648390990328602,0.006397727830886834,0.006312902211815238,0.006229407250401233,0.006147217744005919,0.006066309066798954,0.0059866571540518,0.005908238486929805,0.005831030077761366,0.005755009455771666,0.005680154653261221,0.005606444192214489,0.005533857071323004,0.00546237275340986,0.005391971153237878,0.005322632625692817,0.005254337954324787,0.005187068340237146,0.005120805391311313,0.005055531111753453,0.004991227891955585,0.004927878498657739,0.004865466065401695,0.004803974083267573,0.004743386391880844,0.004683687170684497,0.004624860930464561,0.004566892505121924,0.004509767043681781,0.004453470002533792,0.0043979871378932054,0.0043433044984786525,0.004289408418397329,0.004236285510231577,0.004183922658321184,0.004132307012232695,0.004081425980412869,0.004031267224018206,0.003981818650915503,0.00393306840984891,0.003885004884766051,0.0038376166893010003,0.0037908926614071653,0.0037448218581361686,0.0036993935505580154,0.0036545972188188423,0.003610422547330227,0.0035668594200884344,0.0035238979161177873,0.0034815283050350643,0.0034397410427317414,0.003398526767168857,0.003357876294283356,0.0033177806140008864,0.0032782308863525543,0.0032392184376923,0.0032007347570125974,0.0031627714923538964,0.0031253204473072616,0.0030883735776058526,0.0030519229878031725,0.003015960928036088,0.0029804797908685866,0.0029454721082160695,0.0029109305483462607,0.0028768479129550485,0.002843217134315654,0.0028100312724975464,0.0027772835126550744,0.002744967162382384,0.00271307564913336,0.002681602517704548,0.0026505414277798876,0.0026198861515341317,0.0025896305712951413,0.0025597686772621123,0.0025302945652785984,0.002501202434659269,0.0024724865860676713,0.0024441414194452853,0.0024161614319891983,0.0023885412161776367,0.0023612754578418442,0.002334358934283537,0.0023077865124356252,0.0022815531470664996,0.0022556538790255835,0.0022300838335295114,0.002204838218488141,0.0021799123228683263,0.002155301515095834,0.002131001241493405,0.0021070070247543454,0.00208331446245101,0.0020599192255763717,0.0020368170571190844,0.0020140037706701534,0.0019914752490609354,0.001969227443031357,0.0019472563699281147,0.0019255581124310603,0.0019041288173083574,0.001882964694198713,0.0018620620144203636,0.001841417109806384,0.0018210263715648272,0.001800886249164206,0.0017809932492428527,0.0017613439345419031,0.0017419349228611771,0.0017227628860377626,0.0017038245489459309,0.001685116688518892,0.0016666361327911405,0.0016483797599610482,0.0016303444974735894,0.0016125273211218603,0.0015949252541679812,0.0015775353664821642,0.001560354773699803,0.001543380636396281,0.0015266101592785147,0.0015100405903936453,0.0014936692203538632,0.0014774933815772165,0.1893002131315525,0.18909143502787237,0.1884685219876274,0.1874415861638066,0.18602698855657693,0.18424664363911292,0.18212712675785708,0.17969865224959153,0.17699399391764042,0.17404741557292416,0.17089366935548436,0.1675671057179306,0.16410092360344045,0.1605265745219472,0.15687332140464752,0.15316794314682156,0.14943456889845938,0.14569462225132693,0.14196685403543943,0.1382674428883059,0.1346101444935749,0.13100647286870779,0.12746589988547483,0.12399606201848033,0.1206150132355413,0.11737399862220983,0.1142705558066209,0.11129646196755222,0.10844412601331903,0.10570652977148653,0.10307418909651637,0.10050813951609892,0.09799966837021816,0.09555036437230552,0.09316129001202433,0.09083305268272152,0.08856586914206886,0.08635962346235897,0.0842139187569095,0.08212812305526863,0.08010140975089344,0.07813279306997918,0.07622115901514703,0.07436529222863497,0.0725638992010287,0.07081562822623239,0.06911908647465682,0.06747285452594858,0.06587549867150502,0.06432558126682197,0.06282166938453962,0.061362341991894824,0.05994619585095244,0.058571850316899175,0.057237951188545654,0.055943173746391496,0.05468622509646921,0.05346584592315049,0.05228081174065753,0.05112993372111625,0.050012059166639526,0.04892607168366761,0.0478708911098058,0.04684547323640376,0.04584880936392888,0.04487992572197668,0.04393788278103583,0.043021774479161716,0.04213072738325018,0.04126389980158194,0.04042048086169253,0.039599689565472544,0.038800773831373675,0.03802300953201637,0.03726569953405665,0.03652817274592066,0.035809783178043564,0.03510990901929076,0.03442795173252655,0.03376333517163309,0.03311550472175711,0.032483926464054125,0.03186808636588343,0.031267489497015855,0.030681659272171504,0.03011013671999135,0.029552479778313368,0.029008262615536805,0.028477074977670186,0.027958521560597645,0.027452221407008003,0.02695780732735286,0.02647492534419223,0.026003234159210627,0.02554240464218804,0.02509211934118601,0.02465207201321511,0.02422196717461747,0.023801519670452013,0.023390454262130315,0.02298850523259068,0.022595416008310342,0.022210938797451122,0.021834834243489615,0.02146687109366556,0.02110682588162498,0.020754482623645164,0.020409632527860915,0.02007207371591044,0.019741610956474222,0.019418055410170384,0.019101224385305756,0.01879094110400608,0.018487034478250272,0.0181893388953814,0.017897694012658828,0.01761194456045091,0.017331940153682685,0.017057535111158772,0.016788588282421257,0.016524962881794957,0.01626652632930052,0.016013150098127586,0.01576470956837787,0.015521083886787792,0.015282155832177652,0.015047811686361746,0.014817941110281068,0.014592437025128214,0.014371195498236542,0.014154115633534161,0.01394109946635248,0.013732051862403186,0.013526880420738607,0.013325495380525682,0.013127809531459155,0.012933738127667276,0.012743198804950772,0.01255611150121416,0.01237239837995521,0.012191983756673653,0.012014794028085266,0.01184075760401442,0.011669804841854337,0.011501867983489044,0.011336881094567094,0.011174780006037282,0.011015502257845585,0.010858987044706888,0.010705175163863444,0.010554008964752528,0.010405432300497286,0.010259390481155602,0.010115830228648717,0.009974699633304114,0.009835948111948838,0.009699526367485892,0.009565386349901638,0.00943348121864158,0.009303765306302099,0.00917619408358826,0.009050724125481989,0.008927313078580898,0.008805919629556519,0.008686503474690332,0.008569025290446017,0.008453446705039126,0.008339730270961578,0.008227839438430964,0.008117738529724396,0.008009392714365526,0.007902767985133492,0.007797831134859033,0.007694549733983875,0.007592892108850922,0.00749282732069952,0.007394325145339731,0.007297356053481929,0.00720189119169384,0.007107902363967526,0.007015362013870365,0.006924243207259957,0.006834519615544215,0.00674616549946329,0.00665915569337963,0.006573465590054615,0.006489071125895785,0.006405948766657935,0.006324075493583225,0.006243428789961949,0.006163986628103407,0.006085727456699888,0.006008630188570652,0.005932674188774774,0.005857839263076145,0.005784105646753716,0.005711453993741477,0.005639865366088607,0.00556932122372962,0.0054998034145513925,0.005431294164751154,0.005363776069472589,0.005297232083712405,0.005231645513487672,0.0051670000072568745,0.005103279547583319,0.0050404684430369094,0.004978551320323765,0.004917513116637082,0.004857339072223352,0.0047980147231540754,0.004739525894300133,0.004681858692499617,0.0046249994999141,0.004568934967567911,0.004513652009062564,0.004459137794463868,0.004405379744354005,0.0043523655240444836,0.004300083037944654,0.004248520424081731,0.004197666048765843,0.004147508501398226,0.004098036589416277,0.0040492393333719035,0.004001105962139979,0.003953625908250776,0.0039067888033455294,0.003860584473749338,0.0038150029361588267,0.0037700343934407477,0.0037256692305391763,0.003681898010486141,0.0036387114705151817,0.003596100518272985,0.003554056228126817,0.003512569837565642,0.0034716327436904422,0.0034312364997934374,0.0033913728120220678,0.0033520335361257618,0.0033132106742837695,0.0032748963720100814,0.003237082915135469,0.0031997627268628534,0.0031629283648945683,0.0031265725186293055,0.0030906880064274626,0.00305526777294143,0.0030203048865110717,0.002985792536621073,0.0029517240314190078,0.002918092795292883,0.0028848923665051648,0.0028521163948836666,0.0028197586395662328,0.0027878129667985134,0.0027562733477830403,0.0027251338565789157,0.0026943886680493275,0.002664032055857476,0.0026340583905082246,0.0026044621374347694,0.002575237855129583,0.0025463801933171084,0.0025178838911689345,0.0024897437755589643,0.0024619547593580397,0.0024345118397673506,0.0024074100966885188,0.002380644691130837,0.0023542108636537855,0.0023281039328440635,0.0023023192938264594,0.002276852416807852,0.0022516988456526125,0.00222685419648994,0.002202314156351335,0.0021780744818377484,0.002154130997816047,0.002130479596143079,0.0021071162344179165,0.002084036934760635,0.002061237782617404,0.00203871492559104,0.002016464572296828,0.001994482991242043,0.001972766509729849,0.0019513115127860448,0.0019301144421084188,0.0019091717950384577,0.001888480123554018,0.0018680360332836027,0.0018478361825408495,0.0018278772813790356,0.0018081560906655111,0.0017886694211745185,0.0017694141326993834,0.0017503871331824878,0.0017315853778631903,0.20815734416061646,0.20792954181296083,0.2072498883363654,0.20612947646543486,0.2045862487034015,0.20264422793489295,0.20033253077629498,0.197684239474975,0.19473521209794745,0.19152290611440698,0.18808527910001813,0.18445981468892436,0.18068270470646663,0.17678820190823133,0.17280814357278365,0.16877163526397015,0.16470487665493197,0.1606311071582349,0.156570647691909,0.15254101555819338,0.1485570914428673,0.14463132036523974,0.14077393155143408,0.13699316532514583,0.13331857268642125,0.12979916610013248,0.1264274885160671,0.12319476792256163,0.12009290345677356,0.11711440309917892,0.11425232811584417,0.11148431420739455,0.10877555984335513,0.1061270454525257,0.10354026894901466,0.1010162140924002,0.09855541999627151,0.09615804403546185,0.09382391835126058,0.09155260026657186,0.08934341699523046,0.08719550507153702,0.08510784494421166,0.08307929117967307,0.08110859870811742,0.07919444552564936,0.07733545224030966,0.07553019882124948,0.07377723888027425,0.07207511178506446,0.070422352873938,0.06881750201419576,0.06725911071987879,0.065745748020576,0.06427600525062657,0.0628484999080907,0.06146187871450819,0.06011481999028982,0.05880603544605137,0.057534271477217305,0.05629831003795876,0.055096969160327296,0.05392910317567159,0.05279360268767438,0.051689394339465816,0.05061544041148533,0.049570738281446175,0.04855431977334651,0.0475652504185274,0.046602628648407696,0.04566558493552277,0.0447532808970616,0.04386490837278394,0.04299968848736495,0.04215687070559134,0.04133573188734595,0.04053557534823655,0.03975572993056037,0.03899554908849403,0.03825440999060005,0.03753171264211776,0.03682687902891238,0.03613935228456536,0.03546859588160944,0.034814092847633746,0.03417534500669696,0.033551872246212394,0.03294321180934572,0.032348917612737775,0.031768559589267845,0.031201723055469126,0.030648008103086287,0.030107029014258293,0.029578413699694658,0.029061803159214316,0.0285568509639707,0.028063222759682423,0.027580595790145462,0.02710865844034721,0.026647109798459672,0.026195659236011932,0.025754026005561217,0.025321938855159647,0.02489913565897733,0.024485363063411262,0.024080376148054146,0.023683938100907694,0.0232958199072469,0.02291580005154789,0.022543664231940735,0.022179205086636112,0.02182222193181537,0.02147252051049083,0.021129912751845437,0.020794216540613402,0.02046525549604744,0.020142858760056483,0.019826860794116052,0.01951710118455091,0.01921342445583883,0.018915679891569216,0.01862372136272456,0.01833740716295901,0.01805659985057285,0.017781166096874343,0.017510976540664507,0.017245905648565762,0.016985831580939765,0.016730636063155453,0.016480204261962072,0.016234424666759298,0.015993188975540654,0.01575639198531227,0.015523931486791665,0.015295708163206195,0.015071625493004542,0.014851589656327152,0.014635509445064787,0.014423296176355465,0.014214863609376764,0.014010127865285497,0.013809007350182801,0.013611422680969794,0.013417296613974415,0.013226553976237768,0.013039121599339754,0.012854928255671009,0.012673904597040767,0.012495983095528872,0.01232109798648828,0.012149185213613268,0.011980182375982569,0.011814028677006557,0.011650664875194729,0.011490033236672888,0.011332077489381953,0.011176742778885015,0.011023975625727359,0.010873723884281879,0.010725936703023508,0.010580564486176483,0.0104375588566825,0.010296872620433143,0.010158459731725182,0.010022275259885728,0.0098882753570245,0.009756417226871693,0.00962665909465473,0.009498960177982225,0.009373280658690657,0.009249581655620745,0.00912782519828934,0.009007974201418861,0.008889992440299203,0.008773844526946175,0.008659495887029228,0.008546912737539783,0.00843606206517463,0.008326911605404368,0.008219429822207568,0.008113585888442723,0.00800934966683629,0.007906691691566256,0.007805583150415968,0.007705995867483406,0.007607902286422431,0.007511275454198468,0.0074160890053420565,0.0073223171466789945,0.007229934642525592,0.007138916800329621,0.0070492394567424005,0.006960878964107366,0.006873812177352083,0.006788016441266602,0.006703469578159558,0.006620149875876117,0.0065380360761664496,0.006457107363394464,0.006377343353571851,0.006298724083711279,0.006221230001484968,0.006144841955179577,0.006069541183937713,0.005995309308277726,0.005922128320879636,0.005849980577632795,0.00577884878893382,0.005708716011227675,0.0056395656387851715,0.005571381395706474,0.005504147328147255,0.00543784779675768,0.005372467469328412,0.005307991313638038,0.005244404590493065,0.005181692846957944,0.005119841909766656,0.005058837878911274,0.0049986671214017776,0.004939316265192816,0.004880772193269964,0.004823022037893751,0.0047660531749944635,0.0047098532187137285,0.0046544100160895744,0.004599711641877987,0.004545746393510374,0.004492502786180237,0.0044399695480564555,0.0043881356156189565,0.004336990129114159,0.004286522428124452,0.004236722047251378,0.004187578711906912,0.004139082334210669,0.004091223008990352,0.004043991009880776,0.003997376785521109,0.003951370955845671,0.003905964308466208,0.0038611477951437574,0.0038169125283456433,0.0037732497778877904,0.0037301509676579917,0.003687607672418765,0.003645611614687198,0.0036041546616904937,0.0035632288223932528,0.0035228262445969856,0.0034829392121080434,0.0034435601419726533,0.0034046815817779935,0.0033662962070155284,0.0033283968185075087,0.0032909763398929304,0.00325402781517232,0.0032175444063093726,0.003181519390888606,0.0031459461598260336,0.003110818215133487,0.0030761291677335947,0.0030418727353246967,0.0030080427402948435,0.002974633107682006,0.0029416378631815358,0.0029090511311978266,0.002876867132939882,0.0028450801845598624,0.0028136846953322517,0.0027826751658744267,0.002752046186406138,0.002721792435047623,0.002691908676154964,0.0026623897586924863,0.002633230614639875,0.002604426257434851,0.002575971780449237,0.002547862355498125,0.0025200932313815248,0.0024926597324566395,0.002465557257241609,0.002438781277048651,0.0024123273346463893,0.002386191042950948,0.0023603680837440935,0.0023348542064191027,0.002309645226752762,0.002284737025703127,0.0022601255482324533,0.002235806802154959,0.00221177685700791,0.0021880318429467883,0.00216456794966292,0.002141381425323496,0.002118468575533615,0.0020958257623189844,0.0020734494031300504,0.002051335969866065,0.002029481987919064,0.228995715433218,0.2287467202678064,0.22800386765919292,0.22677936922586045,0.22509297053288743,0.2229710952925468,0.22044574916240078,0.2175532683070192,0.21433300203947028,0.21082601332986453,0.20707386788720317,0.20311756477983836,0.19899664216143512,0.19474847318061142,0.1904077513998409,0.18600615302344023,0.18157215518354744,0.17713098515481174,0.17270467402118805,0.16831218923088967,0.16396962288045167,0.15969041580387286,0.15548560108855153,0.1513640541248299,0.14737333020275767,0.1435514223344561,0.13988818863638292,0.13637426576872114,0.13300100411568055,0.12976040168628486,0.1266450451620219,0.12364724411551649,0.12072734334796295,0.11786807919810696,0.11507147763374827,0.1123389844117368,0.10967153968725514,0.10706964604859716,0.10453343005858075,0.10206269752786994,0.09965698284389149,0.09731559274191248,0.09503764493964353,0.09282210207038798,0.09066780134804046,0.0885734803842387,0.08653779955754726,0.08455936130944959,0.08263672671393799,0.08076842963867838,0.07895298878665646,0.07718891787916775,0.07547473421421279,0.07380896580930965,0.07219015731442006,0.07061687485958151,0.06908770998233442,0.06760128276267649,0.06615624427761505,0.06475127847332966,0.06338510354064039,0.062056472868337535,0.06076417563925276,0.05950703712538832,0.05828391873080292,0.0570937178244748,0.05593536739944517,0.05480783558958012,0.05371012507084546,0.05264127237017294,0.05160034710160521,0.050586451146604094,0.04959871779279395,0.04863631084328843,0.04769842370686614,0.04678427847757976,0.04589312501107058,0.04502424000355494,0.04417692607846963,0.043350510884837636,0.04254434621068101,0.041757807114090086,0.040990291074085104,0.040241217162846156,0.03951002524052967,0.03879617517353904,0.03809914607679203,0.03741843558035119,0.0367535591205095,0.03610404925529231,0.035469455004196994,0.03484934121184024,0.034243287935150635,0.03365088985360706,0.033071755702004324,0.032505507725161635,0.03195178115397668,0.03141022370216073,0.030880495083037984,0.030362266545720207,0.02985522043000212,0.029359049739317203,0.028873457731074345,0.02839815752375361,0.027932871720096515,0.027477332045775283,0.027031279002923465,0.02659446153794043,0.026166636722970385,0.02574756945051963,0.02533703214064926,0.02493480446022395,0.024540673053716714,0.024154431285062696,0.023775878990115122,0.023404822239234863,0.023041073109584743,0.022684449466716466,0.02233477475503521,0.021991877796779597,0.021655592599132988,0.021325758169122525,0.021002218335964877,0.020684821580544757,0.020373420871701103,0.0200678735090485,0.019768040972034082,0.019473788774968907,0.01918498632777829,0.018901506802213877,0.018623227003308457,0.018350027245837643,0.018081791235577734,0.017818405955154926,0.017559761554293576,0.017305751244266577,0.017056271196383994,0.016811220444338602,0.01657050079024961,0.016334016714251998,0.01610167528747451,0.01587338608827615,0.01564906112159694,0.015428614741297437,0.015211963575365558,0.014999026453863985,0.014789724339518069,0.014583980260826539,0.014381719247596908,0.014182868268804725,0.013987356172687022,0.013795113628971345,0.013606073073165626,0.013420168652817947,0.013237336175671705,0.013057513059641876,0.012880638284534103,0.012706652345447477,0.012535497207787788,0.012367116263831286,0.012201454290777347,0.01203845741023596,0.01187807304908703,0.01172024990166831,0.011564937893234435,0.011412088144640602,0.011261652938206709,0.011113585684711106,0.010967840891479792,0.010824374131523566,0.010683142013686584,0.010544102153770106,0.010407213146589961,0.010272434538941009,0.010139726803429167,0.010009051313142272,0.009880370317127792,0.009753646916650921,0.009628845042199114,0.009505929431213547,0.009384865606516215,0.009265619855409643,0.00914815920942676,0.009032451424703434,0.008918464962957963,0.008806168973051583,0.008695533273111221,0.00858652833319646,0.008479125258487622,0.008373295772982547,0.008269012203680601,0.008166247465238759,0.00806497504508314,0.007965168988962545,0.007866803886924274,0.007769854859704401,0.007674297545513676,0.007580108087207845,0.0074872631198307366,0.007395739758513701,0.0073055155867250785,0.00721656864485438,0.007128877419121522,0.007042420830800282,0.006957178225747257,0.006873129364222631,0.006790254410998395,0.006708533925741124,0.0066279488536618554,0.006548480516425522,0.006470110603308555,0.006392821162601294,0.006316594593244001,0.00624141363669046,0.006167261368993174,0.006094121193099932,0.0060219768313596244,0.005950812318227569,0.005880611993165524,0.0058113604937302535,0.00574304274884566,0.0056756439722503976,0.005609149656119404,0.005543545564851166,0.005478817729016785,0.005414952439467013,0.005351936241589646,0.0052897559297166,0.005228398541673516,0.005167851353468701,0.005108101874117214,0.005049137840596733,0.004990947212929469,0.004933518169389171,0.004876839101827646,0.0048208986111179285,0.004765685502711564,0.004711188782304448,0.004657397651611315,0.004604301504243359,0.004551889921686887,0.004500152669380973,0.004449079692889044,0.0043986611141648,0.004348887227907506,0.004299748498005305,0.004251235554063574,0.004203339188016931,0.004156050350820658,0.004109360149221848,0.004063259842606335,0.004017740839919804,0.003972794696661934,0.0039284131119494674,0.003884587925649136,0.0038413111155764694,0.0037985747947596204,0.0037563712087661867,0.003714692733092075,0.00367353187060904,0.0036328812490716575,0.0035927336186804405,0.003553081849700265,0.0035139189301331255,0.0034752379634422218,0.0034370321663283136,0.003399294866555174,0.0033620195008235996,0.0033251996126932256,0.003288828850549253,0.003252900965615209,0.0032174098100088387,0.003182349334840803,0.003147713588354843,0.003113496714108921,0.003079692949194942,0.0030462966224980314,0.003013302152992752,0.0029807040480761987,0.0029484969019370837,0.002916675393958931,0.0028852342871581254,0.0028541684266547456,0.002823472738175695,0.0027931422265899735,0.0027631719744738294,0.0027335571407069202,0.0027042929590973524,0.0026753747370355466,0.00264679785417594,0.002618557761146401,0.00259064997828361,0.0025630700943951165,0.0025358137655465676,0.0025088767138736847,0.0024822547264189026,0.0024559436539908753,0.0024299394100479495,0.0024042379696038,0.002378835368155202,0.2520518587610764,0.25177914241502164,0.25096556278577253,0.24962461848945525,0.24777812711753291,0.24545526749817062,0.24269135459251345,0.23952644344469487,0.23600386295210554,0.23216877353884707,0.22806682761015604,0.22374299130227968,0.2192405639779749,0.21460041106610855,0.20986040824672073,0.20505508170715225,0.200215420460693,0.19536883212945225,0.19053921238159469,0.1857470994838777,0.18100988830905995,0.17634208187941944,0.17175556255785757,0.16726207346739522,0.16292952948045114,0.15877834341901248,0.15479767202881028,0.15097751111817467,0.14730861662396302,0.14378243434686794,0.14039103727522806,0.13712706956639215,0.13397751395062393,0.13089667056774362,0.12787863195279037,0.1249254070013355,0.12203843065618925,0.11921863710253794,0.1164665265053611,0.11378222539502854,0.11116554093691408,0.10861600940973565,0.1061329392731733,0.10371544923565505,0.10136250174456754,0.09907293231787336,0.09684547512312032,0.09467878518982073,0.09257145761676472,0.0905220441092888,0.08852906715359761,0.08659103210771109,0.08470643746167714,0.0828737834941697,0.08109157952843102,0.07935834996854041,0.07767263927631941,0.07603301603078011,0.0744380761951979,0.07288644570170837,0.071376782449983,0.06990777780433101,0.06847815766299781,0.06708668316393752,0.06573215108293613,0.06441339397271074,0.06312928008503833,0.06187871311235472,0.06066063178027915,0.059474009318207906,0.05831785283124351,0.05719120259356013,0.056093131280293765,0.055022743152618035,0.05397917320849208,0.05296158630961439,0.051969176293598436,0.05100116507885317,0.050056801768506444,0.04913536175862313,0.048236145855078114,0.047358479402621875,0.046501711429074076,0.04566521380693867,0.04484838043426579,0.04405062643618856,0.04327138738813816,0.04251011856153235,0.04176629419238229,0.04103940677310225,0.04032896636761489,0.039634499949661776,0.03895555076416159,0.0382916777112993,0.037642454752974744,0.03700747034116473,0.03638632686770904,0.03577864013495314,0.0351840388467123,0.03460216411893695,0.03403266900947581,0.033475218066334175,0.03292948689377254,0.0323951617356651,0.03187193907547331,0.031359525252234094,0.03085763609196626,0.030365996553908474,0.0298843403909995,0.02941240982406607,0.028949955229152842,0.028496734837475786,0.028052514447490094,0.027617067148561426,0.027190173055786436,0.026771619055482566,0.026361198560909925,0.025958711277802964,0.02556396297928324,0.025176765289781446,0.024796935477571752,0.024424296255562097,0.02405867558998729,0.02369990651667788,0.023347826964568226,0.023002279586156256,0.022663111594606235,0.022330174607217538,0.022003324494994515,0.021682421238045833,0.021367328786584903,0.021057914927282324,0.020754051154748453,0.020455612547930917,0.020162477651224205,0.019874528360082182,0.01959164981096166,0.019313730275404565,0.019040661058090286,0.01877233639869756,0.018508653377407046,0.01824951182390957,0.017994814229764202,0.01774446566397373,0.017498373691648226,0.0172564482956214,0.017018601800913528,0.016784748801915175,0.01655480609218669,0.016328692596766753,0.016106329306892847,0.01588763921702921,0.015672547264121987,0.01546098026898454,0.01525286687973184,0.01504813751718673,0.01484672432217142,0.014648561104622735,0.014453583294451898,0.01426172789408349,0.014072933432611998,0.01388713992150594,0.013704288811810598,0.013524322952784872,0.01334718655192024,0.013172825136289612,0.013001185515177939,0.012832215743940079,0.012665865089049166,0.012502083994284385,0.012340824048018317,0.012182037951565333,0.012025679488545712,0.011871703495236818,0.011720065831869173,0.011570723354835557,0.011423633889779222,0.011278756205532387,0.011136049988867996,0.010995475820044323,0.010856995149107923,0.010720570272929861,0.010586164312951979,0.010453741193611973,0.010323265621431404,0.010194703064737754,0.010068019734001009,0.0099431825627627,0.009820159189139232,0.009698917937874394,0.009579427802929582,0.009461658430588115,0.00934558010305799,0.009231163722557998,0.00911838079586599,0.009007203419320521,0.008897604264255846,0.008789556562857275,0.008683034094425317,0.008578011172029516,0.008474462629546247,0.00837236380906296,0.008271690548638837,0.00817241917040971,0.00807452646902819,0.007977989700423516,0.007882786570876883,0.0077888952263980545,0.007696294242394632,0.00760496261362689,0.007514879744434312,0.0074260254392313416,0.007338379893259513,0.007251923683589761,0.007166637760367691,0.007082503438291703,0.006999502388320498,0.006917616629600362,0.006836828521606256,0.0067571207564900695,0.006678476351631197,0.006600878642379721,0.006524311274991184,0.006448758199743634,0.006374203664232741,0.006300632206840877,0.0062280286503716455,0.006156378095849266,0.0060856659164749746,0.006015877751736909,0.005946999501668714,0.005879017321253722,0.00581191761496757,0.0057456870314592234,0.005680312458363336,0.005615781017241456,0.005552080058649037,0.0054891971573222086,0.00542712010748438,0.005365836918266589,0.0053053358092395005,0.005245605206054568,0.005186633736188902,0.00512841022479425,0.005070923690644882,0.005014163342182358,0.004958118573654522,0.004902778961346873,0.004848134259901452,0.004794174398724216,0.004740889478475856,0.004688269767644812,0.004636305699200965,0.004584987867325576,0.004534307024218482,0.0044842540769781765,0.004434820084553808,0.004385996254766924,0.00433777394140186,0.004290144641361059,0.004243099991886199,0.004196631767841505,0.004150731879058285,0.00410539236773966,0.004060605405922134,0.004016363292995087,0.003972658453274637,0.0039294834336314356,0.0038868309011712257,0.003844693640965476,0.0038030645538327345,0.0037619366541680925,0.0037213030678199806,0.0036811570300129106,0.00364149188331587,0.003602301075653278,0.0035635781583600048,0.003525316784277404,0.003487510705890074,0.0034501537735028617,0.0034132399334554924,0.0033767632263760608,0.00334071778547082,0.0033050978348500987,0.0032698976878891466,0.0032351117456237777,0.003200734495178468,0.0031667605082280866,0.003133184439490914,0.0031000010252529324,0.0030672050819227424,0.003034791504615426,0.0030027552657661085,0.002971091413771468,0.002939795071658796,0.0029088614357824887,0.0028782857745460345,0.002848063427150603,0.0028181898023683307,0.002788660377340271,0.27759691843825895,0.2772975087174183,0.2764043558232193,0.2749324519479753,0.27290601673747,0.2703574179241038,0.26732579287131264,0.2638554811617412,0.25999438285628546,0.25579234885136004,0.25129969186952683,0.24656588299951684,0.24163847337162198,0.23656225685773333,0.23137866990864006,0.22612540993311003,0.2208362441515878,0.21554097609596373,0.21026553595042105,0.20503216268398342,0.19985964940912246,0.19476362777011072,0.189756871782086,0.18486115971607453,0.1801568028102441,0.1756473467902213,0.1713211995491633,0.16716766360841057,0.1631768520695882,0.1593396137916345,0.15564746664315915,0.15209253783953205,0.14866751050950602,0.1453521301204997,0.14210194874347096,0.13891637145896688,0.1357974398858786,0.1327466237815422,0.12976489298266913,0.1268527830501848,0.12401045473083065,0.12123774746909659,0.11853422728516894,0.11589922938614292,0.11333189590626243,0.11083120918185305,0.10839602096387022,0.10602507795854796,0.10371704406762929,0.1014705196769893,0.09928405831692703,0.09715618099133647,0.0950853884466483,0.09307017162595341,0.09110902052921127,0.08920043167772769,0.08734291435961297,0.08553499581343678,0.08377522548947225,0.08206217851160034,0.08039445844854257,0.07877069948982315,0.07718956811027253,0.07564976429647943,0.07415002239924942,0.07268911166814498,0.07126583651677258,0.06987903656123912,0.06852758646856194,0.06721039564693922,0.06592640780539759,0.064674600406706,0.0634539840340128,0.06226360168886072,0.0611025280357294,0.0599698686059873,0.058864758972381366,0.057786363903380385,0.05673387650536417,0.05570651735935012,0.05470353365791591,0.05372419834696457,0.05276780927629695,0.051833688362139654,0.05092118076424734,0.050029654079689886,0.04915849755491985,0.04830712131745859,0.04747495562809937,0.046661450154326004,0.04586607326539426,0.045088311349293246,0.044327668151714184,0.04358366413693175,0.042855835870446966,0.042143735423115024,0.04144692979643037,0.040765000368532305,0.04009754236051332,0.03944416432250596,0.03880448763903621,0.03817814605310181,0.03756478520838951,0.03696406220909912,0.03637564519676856,0.03579921294353956,0.03523445446128859,0.034681068626064154,0.03413876381725286,0.03360725757095719,0.033086276247024864,0.03257555470921561,0.032074836018003754,0.031583871135499056,0.031102418642034918,0.030630244463938913,0.03016712161203992,0.029712829930488432,0.029267155855448274,0.02882989218328342,0.028400837847831175,0.02797979770639724,0.02756658233410715,0.027161007826279282,0.026762895608468125,0.02637207225388352,0.025988369307861726,0.025611623119104057,0.025241674677404367,0.024878369457582334,0.02452155726938562,0.024171092113098206,0.023826832040623767,0.023488639021817845,0.023156378815855687,0.022829920847415426,0.022509138087496643,0.022193906938670245,0.021884107124582216,0.021579621583543186,0.021280336366021967,0.02098614053590294,0.020696926075342167,0.02041258779307898,0.02013302323607,0.01985813260429782,0.019587818668644518,0.019321986691694836,0.01906054435135678,0.018803401667187292,0.018550470929318906,0.018301666629874723,0.01805690539678855,0.017816105929923987,0.01757918893940786,0.017346077086093856,0.017116694924064476,0.016890968845106,0.01666882702506994,0.016450199372053276,0.016235017476326302,0.01602321456194583,0.015814725439979947,0.015609486463296419,0.01540743548284648,0.01520851180539073,0.015012656152616842,0.01481981062158856,0.014629918646487775,0.014442924961593684,0.01425877556545683,0.014077417686226112,0.013898799748079768,0.013722871338730392,0.013549583177956823,0.013378887087130139,0.013210735959696102,0.013045083732583502,0.012881885358497821,0.012721096779078865,0.012562674898884294,0.012406577560172712,0.012252763518460521,0.012101192418819016,0.011951824772894656,0.011804621936620924,0.011659546088600627,0.011516560209136916,0.01137562805988577,0.01123671416411577,0.011099783787549604,0.010964802919769452,0.01083173825616677,0.01070055718042038,0.010571227747480058,0.01044371866704555,0.010317999287519893,0.01019403958042288,0.010071810125251157,0.009951282094765685,0.009832427240698998,0.009715217879863966,0.00959962688065299,0.009485627649914195,0.009373194120195105,0.009262300737336476,0.009152922448412225,0.009045034689999454,0.008938613376769785,0.008833634890393445,0.008730076068741793,0.008627914195385111,0.00852712698937188,0.008427692595282433,0.00832958957354994,0.00823279689103623,0.008137293911860525,0.00804306038846881,0.00795007645293865,0.007858322608511513,0.007767779721347418,0.007678429012491467,0.0075902520500509075,0.007503230741572759,0.007417347326617466,0.007332584369523574,0.007248924752354733,0.007166351668028228,0.007084848613616038,0.007004399383815136,0.006924988064581521,0.006846599026924507,0.006769216920853553,0.0066928266694775505,0.00661741346324892,0.006542962754349614,0.006469460251215914,0.006396891913195143,0.0063252439453345185,0.006254502793295647,0.00618465513839194,0.006115687892746566,0.00604758819456485,0.0059803434035215295,0.005913941096257202,0.005848369061981789,0.005783615298181891,0.005719668006430312,0.005656515588292179,0.005594146641328726,0.005532549955193499,0.005471714507819125,0.005411629461693473,0.005352284160219899,0.0052936681241631,0.005235771048175354,0.005178582797402481,0.00512209340416682,0.005066293064726261,0.00501117213610491,0.004956721132996819,0.004902930724738416,0.0048497917323486505,0.0047972951256359305,0.004745432020367884,0.004694193675505231,0.004643571490496072,0.004593557002629576,0.004544141884448598,0.004495317941217237,0.004447077108445131,0.004399411449464682,0.004352313153060922,0.004305774531152372,0.004259788016522346,0.004214346160597693,0.0041694416312761514,0.004125067210799417,0.004081215793671297,0.004037880384620567,0.003995054096605527,0.003952730148861765,0.003910901864990151,0.003869562671084868,0.003828706093900921,0.003788325759058603,0.0037484153892862046,0.0037089688026984246,0.0036699799111103173,0.003631442718385684,0.003593351318819749,0.0035556998955537473,0.003518482719022749,0.0034816941454344163,0.00344532861527847,0.003409380651866693,0.0033738448599011477,0.0033387159240721503,0.0033039886076836576,0.0032696577513060703,0.30594325275445877,0.30561362397226266,0.3046304082876087,0.3030103483452598,0.30078047557417087,0.29797688387538435,0.2946431665007973,0.29082864320720836,0.2865865093168412,0.2819720280914169,0.2770408664825445,0.27184764659646604,0.26644475583222055,0.2608814314884927,0.25520311326467615,0.24945104072757623,0.24366206256128353,0.23786861955885275,0.2320988627173335,0.22637687021326833,0.22072293129915418,0.21515387031578817,0.20968338934914924,0.20435584256446643,0.19924764600701975,0.19434893298721773,0.18964730542212316,0.18513131985350922,0.18079039785309464,0.17661474625842447,0.17259528601405089,0.1687235885627477,0.16499181887514072,0.16139268432922022,0.15789984049964728,0.15447149121580617,0.15110910406651315,0.1478148096157624,0.144590164068171,0.14143622014299304,0.13835359185379253,0.13534251329814498,0.1324028916760579,0.12953435483443843,0.12673629368527436,0.12400789987281458,0.12134819907613756,0.11875608033177829,0.1162303217501428,0.11376961298268654,0.11137257477548114,0.10903777592146807,0.10676374789915292,0.1045489974608304,0.10239201740920034,0.1002912957782835,0.09824532361253492,0.09625260151777305,0.09431164513880771,0.09242098970129654,0.09057919373995696,0.08878484212087612,0.0870365484531188,0.08533295697336374,0.0836727439770661,0.08205461886074392,0.08047732483176384,0.07893963933499903,0.07744037423938688,0.07597837582190621,0.07455252458150939,0.07316173491140089,0.071804954654135,0.07048116456076911,0.06918937767242536,0.06792863863999064,0.06669802299560718,0.0654966363875417,0.06432361378841116,0.06317811868524832,0.062059342258633236,0.06096650255694664,0.05989884367094636,0.058855634912909224,0.05783617000394597,0.05683976627243648,0.055865763865963564,0.054913524978741975,0.05398243309604128,0.05307189225681894,0.05218132633547765,0.051310178343363905,0.05045790975049457,0.04962399982773554,0.048807945009543295,0.04800925827724891,0.04722746856275537,0.04646212017240082,0.045712772230729455,0.04497899814378566,0.04426038508153497,0.04355653347898322,0.042867056555487296,0.04219157985181077,0.04152974078437924,0.04088118821623217,0.04024558204414062,0.03962259280137655,0.03901190127558052,0.038413198141243506,0.03782618360625947,0.0372505670720551,0.036686066806804446,0.03613240963121933,0.035589330616475165,0.035056572793784734,0.03453388687518086,0.034021030985079456,0.0335177704021799,0.03302387731132439,0.0325391305648997,0.03206331545341166,0.03159622348486119,0.03113765217257691,0.03068740483114582,0.030245290380139508,0.02981112315530265,0.02938472272690722,0.028965913724989214,0.028554525671169485,0.028150392816816302,0.02775335398727414,0.02736325243191985,0.026979935679807665,0.02660325540068322,0.026233067271133056,0.025869230845683357,0.025511609432632993,0.02516006997443365,0.024814482932441827,0.024474722175849017,0.024140664874645813,0.023812191396440748,0.023489185206988034,0.023171532774279198,0.022859123476044085,0.022551849510544796,0.022249605810519088,0.02195228996015384,0.021659802114969717,0.021372044924506024,0.021088923457686152,0.020810345130774635,0.02053621963781394,0.020266458883448364,0.02000097691804862,0.019739689875035788,0.019482515910336513,0.0192293751438776,0.01898018960304562,0.018734883168037474,0.018493381519033653,0.018255612085115912,0.01802150399487789,0.017790988028655523,0.017563996572319912,0.01734046357257906,0.017120324493722323,0.01690351627576834,0.016689977293954657,0.016479647319524476,0.016272467481765286,0.016068380231246238,0.01586732930422276,0.01566925968815697,0.015474117588318516,0.015281850395426266,0.015092406654296358,0.014905736033454171,0.01472178929568597,0.014540518269490509,0.014361875821400872,0.014185815829149457,0.014012293155638993,0.013841263623702672,0.013672683991617458,0.013506511929348939,0.013342705995503789,0.013181225614959876,0.01302203105715972,0.012865083415038635,0.012710344584568508,0.012557777244896344,0.012407344839060083,0.01225901155525602,0.012112742308648733,0.01196850272369888,0.0118262591169941,0.011685978480568867,0.011547628465691321,0.011411177367109903,0.01127659410773904,0.011143848223772498,0.011012909850209437,0.01088374970678278,0.010756339084271435,0.010630649831191484,0.010506654340849094,0.010384325538745805,0.010263636870326517,0.010144562289054871,0.010027076244812305,0.009911153672606032,0.009796769981578064,0.009683901044307495,0.009572523186392673,0.009462613176310789,0.009354148215542096,0.0092471059289523,0.009141464355425084,0.009037201938738916,0.008934297518676613,0.008832730322366315,0.008732479955843095,0.008633526395825732,0.00853584998170415,0.008439431407726784,0.008344251715388022,0.008250292286005427,0.008157534833483186,0.008065961397255676,0.00797555433540773,0.007886296317962537,0.007798170320337722,0.00771115961696076,0.0076252477750408144,0.00754041864849352,0.007456656372011007,0.007373945355277756,0.007292270277324966,0.007211616081020143,0.007131967967690153,0.007053311391869998,0.006975632056178611,0.006898915906315077,0.006823149126172776,0.006748318133068455,0.006674409573083898,0.006601410316514317,0.006529307453424642,0.006458088289307634,0.006387740340842488,0.006318251331751726,0.006249609188751331,0.006181802037595245,0.006114818199208968,0.006048646185911111,0.005983274697720101,0.0059186926187451095,0.005854889013656147,0.005791853124234931,0.0057295743660017535,0.005668042324917495,0.00560724675415921,0.005547177570965481,0.005487824853552787,0.005429178838098489,0.0053712299157899265,0.005313968629938519,0.005257385673154911,0.005201471884586798,0.005146218247215553,0.00509161588521113,0.0050376560613434405,0.00498433017444972,0.004931629756954452,0.004879546472443178,0.004828072113287062,0.004777198598317364,0.004726917970549675,0.00467722239495416,0.004628104156273967,0.0045795556568882425,0.004531569414719456,0.004484138061184722,0.004437254339188032,0.00439091110115497,0.004345101307107177,0.004299818022776138,0.004255054417755338,0.004210803763690505,0.004167059432505168,0.004123814894663441,0.004081063717466894,0.004038799563385711,0.003997016188423794,0.0039557074405151965,0.003914867257953716,0.0038744896678528477,0.0038345687846364283,0.33745245817403086,0.3370883868496197,0.3360025482893873,0.3342137591550705,0.3317523778390767,0.32865889815469634,0.3249821608501793,0.3207773313173875,0.31610379629445495,0.31102311938546273,0.3055971693625483,0.2998865022316865,0.2939490435716723,0.2878390862203802,0.2816065929016362,0.27529677514364864,0.26894990878090086,0.26260134150339426,0.25628164791258223,0.2500168908610922,0.24382895313214997,0.23773590965882455,0.23175295588546035,0.22596533846972594,0.22041739559437945,0.2150947259020245,0.20998405598135042,0.2050731326347165,0.20035062717318633,0.1958060502143015,0.19142967567311173,0.18721247281840947,0.1831460454200834,0.17922257714486764,0.17543478246915092,0.1717544141391162,0.16813899889997266,0.16459037543626528,0.16111082519039713,0.1577020479875329,0.15436523201713656,0.15110111796319894,0.1479100573635111,0.14479206539011832,0.1417468683213083,0.13877394602605053,0.13587256981136453,0.13304183599615002,0.13028069557549904,0.1275879803316018,0.12496242573240028,0.12240269094068539,0.119907376234866,0.11747503812023445,0.11510420238638273,0.11279337534410688,0.11054105345306453,0.10834573153081381,0.10620590971453998,0.10412009932853467,0.10208682779424066,0.10010464270428834,0.09817211516835668,0.09628784252630174,0.09445045051273288,0.09265859494740288,0.09091096301668689,0.08920627420357381,0.08754328091648755,0.08592076886105508,0.0843375571932599,0.0827924984877214,0.08128447855034981,0.07981241610089766,0.07837526234760969,0.0769720004731318,0.07560164504839986,0.07426324138884528,0.07295586486533025,0.07167862018048185,0.07043064061959886,0.06921108728390415,0.06801914831289102,0.06685403810138041,0.06571499651609342,0.06460128811579434,0.06351220137831497,0.06244704793733011,0.0614051618311265,0.0603858987652505,0.05938863539055269,0.0584127685977523,0.05745771482949629,0.056522909410522376,0.05560780589642106,0.05471187544127901,0.053834606184370346,0.052975502655880885,0.05213408520164149,0.05130988942666371,0.05050246565725643,0.04971137842143779,0.04893620594726818,0.04817653967876051,0.04743198380892839,0.04670215482954714,0.045986681097170114,0.04528520241494848,0.04459736962975303,0.04392284424415978,0.043261298042793515,0.04261241273256707,0.04197587959634893,0.041351399159573664,0.040738680869369576,0.040137442785731794,0.03954741128430944,0.03896832077038633,0.03839991340361814,0.03784193883314784,0.037294153942686946,0.036756322605186714,0.036228215446731576,0.03570960961930313,0.035200288582050536,0.03470004189076221,0.034208664995198174,0.03372595904397917,0.0332517306967427,0.03278579194325956,0.03232795992926172,0.03187805678869493,0.03143590948215348,0.031001349641244486,0.030574213418658975,0.03015434134370174,0.029741578183090554,0.029335772806797503,0.028936778058738583,0.028544450632126725,0.028158650949287125,0.027779243045781696,0.02740609445865663,0.027039076118656885,0.026678062246257857,0.02632293025134954,0.02597356063645051,0.025629836903300958,0.025291645462708474,0.024958875547519178,0.02463141912859969,0.024309170833699437,0.023992027869102716,0.023679889943947957,0.023372659197119536,0.02307024012661644,0.02277253952129308,0.022479466394898222,0.02219093192231355,0.02190684937791388,0.021627134075972564,0.021351703313025626,0.02108047631213652,0.020813374168979177,0.020550319799678574,0.020291237890341162,0.020036054848218517,0.019784698754433616,0.01953709931822729,0.019293187832659327,0.01905289713171528,0.01881616154877165,0.01858291687636088,0.018353100327203616,0.018126650496452387,0.01790350732510863,0.017683612064569844,0.017466907242271686,0.01725333662837629,0.01704284520348393,0.016835379127322487,0.01663088570838422,0.01642931337448017,0.01623061164417247,0.016034731099064906,0.015841623356915246,0.01565124104554427,0.015463537777513406,0.015278468125548743,0.01509598759867794,0.014916052619067624,0.014738620499528914,0.01456364942167287,0.014391098414696116,0.014220927334768622,0.0140530968450141,0.01388756839605613,0.013724304207113987,0.013563267247633135,0.013404421219425805,0.013247730539314663,0.013093160322256924,0.012940676364935658,0.012790245129803385,0.012641833729565673,0.012495409912084888,0.012350942045699144,0.012208399104937324,0.01206775065662003,0.011928966846336169,0.011792018385278309,0.011656876537432666,0.011523513107108146,0.011391900426795094,0.01126201134534619,0.01113381921646384,0.011007297887492586,0.010882421688501323,0.0107591654216495,0.010637504350827543,0.01051741419156588,0.01039887110119912,0.010281851669285143,0.010166332908265909,0.010052292244365385,0.009939707508718528,0.00982855692872038,0.00971881911959505,0.009610473076173406,0.00950349816487578,0.009397874115892513,0.009293581015559445,0.009190599298917418,0.00908890974245712,0.008988493457039563,0.008889331880988297,0.00879140677335077,0.00869470020731901,0.008599194563811524,0.00850487252520732,0.008411717069229583,0.008319711462975929,0.008228839257087497,0.00813908428005825,0.008050430632676719,0.007962862682598291,0.007876365059043924,0.007790922647623276,0.007706520585275596,0.007623144255329717,0.007540779282676531,0.007459411529052137,0.007379027088430059,0.007299612282515884,0.007221153656346539,0.00714363797398789,0.007067052214329467,0.006991383566973469,0.006916619428216682,0.006842747397120039,0.00676975527166749,0.00669763104500897,0.006626362901786214,0.006555939214540481,0.0064863485401969075,0.006417579616627787,0.006349621359289524,0.006282462857932751,0.006216093373384386,0.006150502334397301,0.006085679334569396,0.006021614129327899,0.005958296632978027,0.005895716915814408,0.00583386520129452,0.00577273186327015,0.00571230742327899,0.005652582547892097,0.005593548046116996,0.00553519486685569,0.005477514096414003,0.00542049695606407,0.0053641347996565125,0.005308419111281777,0.00525334150297955,0.005198893712495684,0.0051450676010834275,0.005091855151350875,0.005039248465151305,0.004987239761516202,0.004935821374630654,0.004884985751847954,0.004834725451745427,0.004785033142218382,0.004735901598611959,0.00468732370189079,0.004639292436843535,0.004591800890324073,0.004544842249526786,0.004498409800295687,0.3725456922166594,0.3721420637155122,0.3709383995261706,0.3689560037573911,0.366229218709787,0.36280379467799284,0.3587348223303928,0.35408440323444573,0.34891923810705594,0.34330829557602555,0.337320692365556,0.33102387597806826,0.3244821599720477,0.3177556251711424,0.31089937090409525,0.30396307997568806,0.29699084922911967,0.2900212329801563,0.28308744750649445,0.27621768933704494,0.26943552669906967,0.2627603308857333,0.2562230069328009,0.24993679795702803,0.24390851661166396,0.23812272023062667,0.23256517455459874,0.22722273827477033,0.22208326047798999,0.2171354893561722,0.21236899077386728,0.20777407548315305,0.20334173394025973,0.19906357781966713,0.19493178744093698,0.19093906442638736,0.18706135392734702,0.18325023630004802,0.1795061000294622,0.17583144582210372,0.17222818067382578,0.16869768709319466,0.16524088676275997,0.16185829867974172,0.1585500919303319,0.1553161333313635,0.15215603022689006,0.14906916875985976,0.14605474795551202,0.1431118099576009,0.14023926675337103,0.13743592371199775,0.13470050024521643,0.13203164788029273,0.1294279660149525,0.12688801560320662,0.12441033099978309,0.12199343017065359,0.1196358234575544,0.11733602106585654,0.1150925394281372,0.11290390657968638,0.11076866666764278,0.10868538370217222,0.10665264464585089,0.10466906192669306,0.10273327545024398,0.10084395417742739,0.09899979732693227,0.09719953525391282,0.09544193005040408,0.09372577590749007,0.09204989927413482,0.09041315884331658,0.08881444539228409,0.08725268150020056,0.08572682116363199,0.08423584932753873,0.08277878134715523,0.08135466239411067,0.07996256681833983,0.07860159747569617,0.07727088502992627,0.07596958723631687,0.07469688821334472,0.07345199770774004,0.07223415035747724,0.07104260495664778,0.06987664372540776,0.068735571587749,0.06761871545936436,0.06652542354741281,0.06545506466374844,0.06440702755277596,0.06338072023488141,0.062375569366153655,0.061391019614935115,0.06042653305551071,0.05948158857921031,0.05855568132297534,0.05764832211539545,0.05675903694013286,0.055887366416531505,0.05503286529723876,0.054195101982520026,0.053373658050973195,0.0525681278062884,0.05177811783969125,0.051003246607648225,0.050243144024469645,0.04949745106936177,0.04876581940751315,0.04804791102480328,0.047343397875673494,0.046651961543776675,0.045973292914953424,0.04530709186212881,0.044653066941731594,0.044010935101202374,0.04338042139723597,0.04276125872434677,0.04215318755339294,0.04155595567968921,0.040969317980367785,0.0403930361806148,0.039826878628484934,0.03927062007794657,0.03872404147985221,0.03818692978054231,0.037659077727767803,0.037140283683680775,0.03663035144460129,0.036129090067306524,0.0356363137015902,0.03515184142885751,0.03467549710650251,0.0342071092178723,0.03374651072758175,0.03329353894197835,0.03284803537456578,0.03240984561617514,0.031978819209726644,0.031554809529385004,0.031137673663948397,0.030727272304310892,0.030323469634827422,0.029926133228454284,0.029535133945502515,0.02915034583587544,0.02877164604465376,0.02839891472090898,0.028032034929605185,0.027670892566496356,0.027315376275887992,0.026965377371162304,0.026620789757968007,0.026281509859959508,0.025947436547012443,0.0256184710658058,0.025294516972690584,0.024975480068764287,0.024661268337055377,0.024351791881760346,0.02404696286944361,0.023746695472134066,0.02345090581224862,0.023159511909280672,0.022872433628178028,0.022589592629365864,0.02231091232034363,0.022036317808803805,0.021765735857221913,0.021499094838855218,0.021236324695114155,0.02097735689424806,0.020722124391303404,0.02047056158930813,0.020222604301644423,0.019978189715557704,0.01973725635677693,0.01949974405519741,0.019265593911593257,0.0190347482653274,0.01880715066301631,0.018582745828128616,0.018361479631477905,0.01814329906258259,0.017928152201862994,0.017715988193651232,0.017506757219977697,0.01730041047512097,0.01709690014088631,0.016896179362592544,0.016698202225746424,0.016502923733373764,0.016310299783997603,0.016120287150233486,0.01593284345798541,0.015747927166225348,0.015565497547330004,0.015385514667967538,0.015207939370508985,0.01503273325495087,0.014859858661331937,0.014689278652631498,0.014520956998127311,0.014354858157207382,0.014190947263616062,0.014029190110121787,0.01386955313359689,0.013712003400489602,0.013556508592685283,0.013403036993738427,0.013251557475466719,0.013102039484897635,0.012954453031551424,0.012808768675058367,0.012664957513094278,0.012522991169627051,0.01238284178346449,0.01224448199709689,0.012107884945819576,0.011973024247135342,0.011839873990422644,0.01170840872686378,0.011578603459627272,0.01145043363429198,0.01132387512951281,0.01119890424791613,0.011075497707220112,0.010953632631573246,0.010833286543106684,0.010714437353689339,0.010597063356886977,0.010481143220114213,0.010366655976976039,0.010253581019795127,0.010141898092314826,0.010031587282579517,0.009922629015982764,0.009815004048480097,0.009708693459963452,0.00960367864778846,0.00949994132045654,0.009397463491442761,0.009296227473167717,0.00919621587110881,0.009097411578049022,0.008999797768455014,0.008903357892987277,0.008808075673133924,0.008713935095967023,0.008620920409019045,0.008529016115272466,0.008438206968265022,0.008348477967303454,0.008259814352784575,0.008172201601620422,0.008085625422766352,0.00800007175284552,0.007915526751872527,0.007831976799069768,0.0077494084887755775,0.007667808626442725,0.007587164224721828,0.007507462499632055,0.007428690866813351,0.007350836937859474,0.007273888516730858,0.007197833596242194,0.007122660354626862,0.007048357152173546,0.006974912527934292,0.006902315196501775,0.006830554044855558,0.006759618129272518,0.006689496672303777,0.006620179059813785,0.006551654838080888,0.006483913710958885,0.006416945537095363,0.006350740327209104,0.006285288241422474,0.0062205795866485175,0.0061566048140310895,0.00609335451643806,0.006030819426003373,0.005968990411720586,0.005907858477083973,0.005847414757776939,0.005787650519407637,0.005728557155287889,0.0056701261842582,0.005612349248554763,0.005555218111718903,0.005498724656548312,0.005442860883087072,0.00538761890665658,0.005332990955924096,0.005278969371009091,0.3331159233832624,0.33286631673240086,0.3321205495532834,0.33088767558536225,0.32918244280565206,0.3270248048222006,0.3244392817253183,0.3214542095368832,0.3181009213679098,0.3144129034937927,0.31042496623333476,0.30617246356975986,0.3016905878586075,0.29701375771412136,0.2921751091203753,0.28720609263036917,0.2821361736097389,0.2769926280399688,0.271800423410842,0.26658217256725114,0.26135814780831135,0.25614634281547666,0.25096257086111023,0.24582058899509976,0.24073223934221866,0.23570760012480907,0.23075514045375417,0.22591420308719576,0.2212391408874185,0.21672261748330182,0.21235675023020256,0.20813417347730975,0.20404799681543154,0.20009176729905045,0.1962594352096969,0.19254532298072197,0.188944096949118,0.18545074163972017,0.18206053632143504,0.17876903360545124,0.1755720398811568,0.1724655974087626,0.1694407966753694,0.16646292150176145,0.1635277055568292,0.16063672846582405,0.15779127600177487,0.15499236816404297,0.15224078548711018,0.1495370935570389,0.1468816657463503,0.14427470420459723,0.14171625916155897,0.13920624661448525,0.1367444644806518,0.1343306073029938,0.1319642795998094,0.1296450079506254,0.1273722519097143,0.12514541383636854,0.12296384772828282,0.12082686714024105,0.11873375226618602,0.11668375625808551,0.11467611085021713,0.11271003135288059,0.11078472107469506,0.10889937522813824,0.10705318436863837,0.10524533741330422,0.1034750242814246,0.1017414381952704,0.10004377767618276,0.09838124826776186,0.0967530640150779,0.09515844872594048,0.093596637037985,0.09206687531282969,0.09056842237658533,0.08910055012405238,0.08766254400221937,0.0862537033870384,0.08487334186612998,0.08352078743866878,0.08219538264257965,0.08089648461812038,0.07962346511591084,0.07837571045670978,0.07715262144935812,0.07595361327266326,0.0747781153263821,0.07362557105581685,0.07249543775415379,0.07138718634609666,0.07030030115601496,0.06923427966342521,0.06818863224832425,0.06716288192853591,0.06615656409107293,0.0651692262191775,0.06420042761654855,0.06324973913007972,0.06231674287220848,0.06140103194392077,0.06050221015922478,0.059619891771855706,0.05875370120483155,0.057903272783420105,0.057068250471933,0.0562482876147777,0.05544304668204721,0.05465219901992008,0.053875424606086235,0.05311241181032883,0.05236285716042848,0.05162646511344434,0.050902947832441654,0.05019202496870083,0.04949342344939266,0.048806877270740005,0.04813212729660794,0.04746892106248923,0.04681701258482151,0.046176162175578433,0.04554613626202677,0.04492670721160349,0.04431765316178729,0.04371875785488059,0.043129810477604835,0.042550605505379174,0.04198094255120887,0.041420626219048226,0.04086946596153636,0.0403272759419927,0.03979387490057006,0.039269086024428815,0.038752736821855954,0.03824465900019426,0.03774468834748171,0.03725266461770242,0.03676843141952101,0.03629183610842807,0.03582272968217173,0.035360966679385514,0.03490640508132055,0.034458906216567865,0.034018334668705574,0.033584558186759476,0.033157447598397546,0.03273687672577147,0.03232272230392613,0.03191486390168153,0.03151318384492996,0.03111756714225427,0.030727901412800827,0.030344076816338196,0.029965985985416513,0.029593523959581987,0.029226588121563587,0.0288650781353757,0.028508895886272187,0.028157945422499702,0.027812132898775505,0.027471366521455372,0.027135556495322583,0.02680461497194975,0.02647845599958788,0.02615699547452053,0.025840151093852966,0.025527842309678014,0.025219990284577533,0.024916517848422953,0.024617349456418136,0.024322411148364316,0.024031630509093446,0.023744936630039667,0.023462260071908908,0.02318353282841909,0.02290868829106301,0.022637661214878636,0.022370387685183166,0.02210680508524338,0.02184685206485847,0.021590468509813835,0.021337595512194902,0.021088175341521534,0.020842151416682986,0.020599468278650765,0.02036007156393522,0.020123907978777143,0.01989092527404087,0.01966107222079191,0.019434298586536683,0.01921055511210781,0.01898979348916579,0.01877196633831188,0.018557027187782633,0.018344930452712998,0.018135631414953387,0.017929086203415222,0.017725251774940855,0.017524085895673638,0.01732554712291648,0.017129594787463533,0.01693618897639439,0.016745290516308426,0.01655686095699811,0.016370862555539302,0.016187258260789997,0.01600601169828765,0.0158270871555258,0.01565044956760972,0.015476064503271833,0.015303898151239902,0.015133917306949511,0.014966089359584296,0.014800382279444052,0.014636764605624238,0.014475205434000906,0.014315674405511401,0.014158141694725592,0.014002577998692381,0.013848954526062869,0.013697242986475986,0.013547415580201085,0.013399444988033207,0.013253304361426816,0.013108967312870746,0.012966407906490932,0.012825600648877245,0.012686520480127814,0.012549142765107065,0.012413443284905705,0.012279398228505461,0.01214698418463686,0.012016178133826771,0.011886957440632893,0.011759299846054444,0.011633183460121505,0.01150858675465325,0.011385488556182188,0.011263868039041787,0.011143704718608127,0.011024978444698278,0.010907669395116466,0.010791758069345967,0.010677225282382342,0.010564052158706545,0.010452220126389303,0.010341710911329656,0.010232506531619803,0.010124589292034455,0.010017941778643144,0.009912546853537508,0.00980838764967722,0.009705447565846712,0.009603710261721783,0.00950315965304288,0.00940377990689389,0.00930555543707989,0.009208470899606759,0.009112511188256114,0.009017661430254531,0.008923906982036168,0.008831233425092424,0.008739626561911963,0.008649072412004672,0.008559557208009284,0.00847106739188343,0.008383589611170736,0.008297110715347939,0.008211617752246454,0.008127097964547999,0.00804353878635222,0.007960927839815902,0.007879252931858566,0.007798502050937554,0.007718663363887623,0.007639725212824512,0.007561676112112177,0.007484504745389033,0.0074081999626559505,0.007332750777421626,0.007258146363904776,0.007184376054293206,0.007111429336055092,0.0070392958493056094,0.006967965384224295,0.0068974278785236594,0.006827673414966976,0.006758692218935738,0.006690474656042487,0.006623011229792047,0.0065562925792870385,0.0064903094769777825,0.006425052826456382,0.006360513660291457,0.006296683137906087,0.0062335525434953935,0.006171113283983931,0.36949151971929983,0.36921329286207877,0.36838209399789196,0.3670082456170789,0.36510855156742633,0.3627057252857262,0.35982764339645196,0.35650647160925336,0.3527777143501446,0.34867923933895284,0.34425032397873045,0.33953076297346835,0.33456006726594606,0.3293767744067638,0.3240178808725864,0.31851839841663254,0.31291102972314083,0.30722595363279664,0.30149070696152674,0.29573014825196586,0.28996648838618816,0.28421937353317656,0.27850600710207746,0.27284129895607434,0.26723803190008927,0.2617070372284463,0.2562621977027982,0.25098069508151455,0.24587956250742338,0.2409497093205893,0.23618265081281248,0.23157045844792035,0.22710571490265913,0.22278147339451382,0.21859122082846105,0.21452884435203143,0.210588600957571,0.20676508981351147,0.20305322704340387,0.1994482227045394,0.19594555974576616,0.19254097474908988,0.18923044028142177,0.18600989167623766,0.1828490461291182,0.17973044505678318,0.17665588499456628,0.1736268554457035,0.17064456700858607,0.16770997785148778,0.16482381849207342,0.16198661487463456,0.15919870976592054,0.1564602825120373,0.15377136721491627,0.15113186939879683,0.14854158124471734,0.14600019547607737,0.14350731798066121,0.1410624792548554,0.13866514475496736,0.13631472423812263,0.13401058017231823,0.13175203529158025,0.1295383793680679,0.127368875268889,0.12524276436087745,0.12315927132234503,0.12111760841646989,0.11911697927691188,0.1171565822521061,0.11523561335109159,0.11335326882996007,0.11150874745472211,0.10970125247328905,0.10792999332617535,0.10619418712306719,0.10449305990967228,0.10282584774708832,0.10119179762380097,0.09959016821849401,0.0980202305300064,0.09648126838933971,0.09497257886696116,0.0934934725874477,0.09204327396226022,0.09062132135030675,0.08922696715506884,0.08785957786604026,0.08651853405150205,0.08520323030890528,0.08391307517842293,0.08264749102473799,0.08140591389149643,0.08018779333242189,0.07899259222264142,0.07781978655340643,0.07666886521295185,0.07553932975607129,0.07443069416454873,0.0733424846004238,0.07227423915383208,0.07122550758688774,0.07019585107501129,0.06918484194682215,0.06819206342364621,0.06721710935952031,0.06625958398248606,0.06531910163780939,0.06439528653374689,0.06348777249032397,0.06259620269154996,0.061720229441440885,0.06085951392410646,0.06001372596819618,0.059182543815859204,0.05836565389639657,0.05756275060472701,0.05677353608472849,0.05599772001755914,0.05523501941495897,0.054485158417563025,0.053747868098215315,0.05302288627027927,0.05230995730087537,0.051608831929045015,0.05091926708875063,0.050241025736657896,0.04957387668463555,0.04891759443686591,0.0482719590315204,0.047636755886880364,0.047011775651825786,0.04639681406059221,0.04579167179170772,0.045196154330990536,0.044610071838540065,0.04403323901959615,0.04346547499917807,0.0429066032004108,0.04235645122641714,0.041814850745710314,0.041281637380966185,0.04075665060109041,0.040239733616490955,0.03973073327744567,0.03922949997550096,0.038735887547794876,0.03824975318422198,0.03777095733735788,0.03729936363506404,0.03683483879567624,0.03637725254572143,0.03592647754006771,0.03548238928444077,0.03504486606023695,0.03461378885154721,0.03418904127434521,0.03377050950775649,0.03335808222734917,0.032951650540382973,0.03255110792296034,0.032156350159004705,0.031767275281030405,0.031383783512632546,0.031005777212646562,0.030633160820932585,0.030265840805716714,0.02990372561246162,0.02954672561420275,0.029194753063310503,0.028847722044636485,0.02850554842998886,0.028168149833911922,0.02783544557071658,0.027507356612727556,0.02718380554970795,0.02686471654942996,0.026550015319342705,0.02623962906932055,0.025933486475446327,0.025631517644800438,0.02533365408123034,0.025039828652056492,0.024749975555704247,0.024464030290218545,0.024181929622641256,0.023903611559226778,0.02362901531645881,0.023358081292861245,0.023090751041564887,0.022826967243614098,0.022566673681988163,0.022309815216320323,0.022056337758284045,0.02180618824763864,0.021559314628906145,0.021315665828662712,0.021075191733429918,0.02083784316813903,0.02060357187516328,0.020372330493892546,0.020144072540837898,0.019918752390249636,0.01969632525523703,0.019476747169366402,0.01925997496873549,0.019045966274501915,0.018834679475854352,0.018626073713418144,0.018420108863072958,0.018216745520183028,0.018015944984219115,0.017817669243764184,0.01762188096189435,0.017428543461917075,0.017237620713466323,0.017049077318937258,0.016862878500254135,0.016678990085960885,0.01649737849862854,0.01631801074256288,0.0161408543918149,0.015965877578476808,0.015793048981259817,0.015622337814347093,0.015453713816508001,0.015287147240475677,0.015122608842573824,0.014960069872588713,0.014799502063878825,0.014640877623718773,0.014484169223864108,0.014329349991340272,0.014176393499442929,0.014025273758946293,0.013875965209516533,0.013728442711317543,0.013582681536813407,0.013438657362755539,0.013296346262352123,0.013155724697616594,0.013016769511885368,0.01287945792250743,0.012743767513696116,0.012609676229541041,0.012477162367175243,0.012346204570095897,0.012216781821629155,0.012088873438542752,0.011962459064797254,0.011837518665434033,0.011714032520598796,0.011591981219691298,0.01147134565564568,0.011352107019332845,0.011234246794083457,0.011117746750328662,0.011002588940356961,0.010888755693179762,0.010776229609509465,0.010664993556842447,0.010555030664645842,0.010446324319647468,0.010338858161221449,0.010232616076873622,0.010127582197819483,0.010023740894654461,0.009921076773114938,0.00981957466992444,0.009719219648728161,0.009619996996109404,0.009521892217688272,0.009424891034299238,0.009328979378248333,0.009234143389643205,0.00914036941280041,0.009047643992723474,0.008955953871652053,0.008865285985681367,0.008775627461446717,0.008686965612876435,0.008599287938008272,0.008512582115868621,0.008426836003414678,0.008342037632534239,0.008258175207106951,0.008175237100121711,0.008093211850850518,0.008012088162077156,0.007931854897380627,0.007852501078468958,0.00777401588256654,0.00769638863985057,0.007619608830936701,0.007543666084413731,0.007468550174423147,0.007394251018286749,0.00732075867417816,0.007248063338838556,0.41027799069838417,0.4099664389840889,0.4090357912534167,0.4074979239413432,0.40537215552088557,0.4026845683730527,0.3994671257070211,0.39575664077697575,0.39159366075918906,0.3870213268934017,0.3820842666765444,0.3768275643686472,0.3712958444062444,0.3655324900472405,0.3595790079739696,0.35347453956821234,0.3472555116628137,0.34095541393159856,0.3346046865916971,0.32823070046999914,0.3218578113461972,0.31550747142495744,0.30919838243807346,0.30294667691362576,0.29676611632884775,0.2906682970057633,0.28470124559175564,0.27893767194242153,0.273369116561725,0.2679857775645938,0.2627785066992438,0.2577387555487918,0.2528585269562941,0.24813033109306126,0.24354714566205748,0.23910237979045224,0.23478984121938945,0.230603706445738,0.22653849351089309,0.22258903716747536,0.2187504661850821,0.21501818258347039,0.21138784260501792,0.2078553392588032,0.20441678628717067,0.20106093033897512,0.19775093797854784,0.1944841262362136,0.1912622399198796,0.1880867294592031,0.18495877750735093,0.1818793239742458,0.17884908946108383,0.1758685970962413,0.17293819279652703,0.17005806399632364,0.1672282569007929,0.16444869232929668,0.16171918022186607,0.1590394328854618,0.15640907705894996,0.15382766487574215,0.1512946838020779,0.14880956562700437,0.14637169457709087,0.1439804146259649,0.14163503606485056,0.13933484139660685,0.13707909061180407,0.13486702590149788,0.13269787585732934,0.13057085920608621,0.12848518812195833,0.12644007115645223,0.12443471582262171,0.12246833086709163,0.12054012826067043,0.11864932493548586,0.11679514429416808,0.11497681751430588,0.11319358466927198,0.11144469568449697,0.10972941114661545,0.10804700298112661,0.10639675501278222,0.10477796342156113,0.1031899371057404,0.10163199796260364,0.10010348109612657,0.09860373496014511,0.09713212144464864,0.0956880159119911,0.09427080718925987,0.0928798975222655,0.09151470249613639,0.09017465092693894,0.08885918472833351,0.08756775875674472,0.08629984063830873,0.08505491058036543,0.08383246117004073,0.08263199716217673,0.08145303525856365,0.08029510388030332,0.07915774293483072,0.07804050357899667,0.0769429479794336,0.0758646490713007,0.07480519031631096,0.07376416546092569,0.07274117829540565,0.07173584241435119,0.07074778097930241,0.06977662648381792,0.06882202052149812,0.06788361355724418,0.0669610647020658,0.066054041491683,0.0651622196690839,0.06428528297125129,0.06342292292014566,0.06257483861805546,0.06174073654738553,0.060920330374937645,0.06011334076068421,0.05931949517108729,0.05853852769691979,0.05777017887558644,0.057014195517920835,0.0562703305393837,0.05553834279565874,0.05481799692255125,0.054109063180143635,0.05341131730112892,0.052724540343263536,0.05204851854583222,0.05138304319008117,0.05072791046351041,0.05008292132794812,0.049447881391333,0.048822600783087,0.04820689403303226,0.047600579953734144,0.047003481526194206,0.04641542578881648,0.045836243729533155,0.045265770181040915,0.04470384371903856,0.04415030656339217,0.043605004482144306,0.04306778669829744,0.042538505799268614,0.04201701764896948,0.041503181302415405,0.04099685892279464,0.040497915700936096,0.04000621977708112,0.039521642164921954,0.03904405667781654,0.03857333985712346,0.03810937090259889,0.0376520316047759,0.03720120627928966,0.03675678170307384,0.03631864705237713,0.035886693842542366,0.035460815869503885,0.035040909152931045,0.03462687188099215,0.03421860435667299,0.03381600894560758,0.03341899002537987,0.03302745393623719,0.032641308933193086,0.03226046513946047,0.031884834501182346,0.031514330743418285,0.031148869327354056,0.030788367408681964,0.030432743797138697,0.03008191891714715,0.029735814769536795,0.029394354894313874,0.029057464334434385,0.028725069600570398,0.028397098636824564,0.02807348078737019,0.027754146763987728,0.027439028614475745,0.02712805969189708,0.026821174624653336,0.026518309287349297,0.026219400772429277,0.025924387362564732,0.025633208503761527,0.025345804779178905,0.02506211788362915,0.02478209059874161,0.024505666768774872,0.024232791277047337,0.02396341002298278,0.02369746989974287,0.02343491877243279,0.02317570545686279,0.0229197796988533,0.02266709215405876,0.02241759436830732,0.0221712387584329,0.021927978593588214,0.021687767977028864,0.021450561828344736,0.0212163158661397,0.02098498659113688,0.020756531269701114,0.02053090791776929,0.020308075285169296,0.02008799284032713,0.01987062075534429,0.019655919891437078,0.01944385178472774,0.0192343786323811,0.019027463279067736,0.01882306920375763,0.01862116050682537,0.01842170189746222,0.018224658681389217,0.018029996748854464,0.017837682562918657,0.017647683148012717,0.017459966078762747,0.01727449946907547,0.0170912519614792,0.016910192716706234,0.016731291403520712,0.016554518188777678,0.01637984372770941,0.016207239154436632,0.01603667607268984,0.015868126546746453,0.015701563092570075,0.01553695866914927,0.015374286670033155,0.0152135209150516,0.015054635642224739,0.014897605499849868,0.01474240553876401,0.014589011204776958,0.014437398331272928,0.01428754313197008,0.014139422193842467,0.013993012470194424,0.013848291273884828,0.013705236270700442,0.01356382547286797,0.013424037232709617,0.013285850236432735,0.01314924349805244,0.013014196353443221,0.012880688454518853,0.012748699763531395,0.012618210547494525,0.012489201372721873,0.012361653099480023,0.012235546876754938,0.012110864137123782,0.011987586591736711,0.01186569622540064,0.011745175291764647,0.011626006308605781,0.01150817205320824,0.011391655557840398,0.011276440105321995,0.011162509224682036,0.011049846686903928,0.01093843650075826,0.01082826290871623,0.01071931038294785,0.010611563621399226,0.010505007543947346,0.010399627288633362,0.01029540820796692,0.01019233586530698,0.010090396031312137,0.009989574680460888,0.00988985798763996,0.009791232324800251,0.00969368425767542,0.00959720054256664,0.00950176812318819,0.009407374127574012,0.009314005865044899,0.009221650823231235,0.009130296665155307,0.009039931226367879,0.00895054251213909,0.008862118694704005,0.008774648110557547,0.008688119257802933,0.008602520793548635,0.008517841531354396,0.44910698781481145,0.44876163886555787,0.4477301824322466,0.446026216296902,0.44367183812308697,0.4406968410589606,0.4371376693173957,0.4330362038637467,0.42843845406291753,0.4233932294987599,0.41795085832089923,0.41216200618952076,0.4060766352143439,0.3997431271559459,0.39320758114025245,0.38651328430268794,0.37970034467980635,0.37280546941995435,0.36586186777049995,0.35889925690173646,0.3519439489381433,0.34501899907416195,0.3381443968984423,0.3313372856594128,0.32461219689584747,0.31799113745742846,0.31157481344921784,0.30537758735850323,0.2993882672343094,0.2935964216117777,0.28799231568400835,0.28256685379345675,0.2773115275270989,0.2722183687907772,0.2672799073153634,0.26248913211536073,0.257839456478284,0.2533246861138616,0.2489389901355095,0.24467687458510953,0.24053315824474342,0.2365029505084224,0.23258163111199784,0.22876483154172095,0.2250484179614505,0.2214284755156917,0.21790129388069276,0.21444665354063444,0.2110335504639838,0.2076633143950126,0.20433766549007887,0.20105804283702494,0.19782562928380765,0.19464137482778793,0.19150601854010754,0.18842010902622838,0.18538402344431562,0.1823979851194541,0.17946207980383927,0.17657627064176326,0.1737404119044096,0.170954261562995,0.16821749277069092,0.16552970432427916,0.1628904301754053,0.16029914806005494,0.15775528731215133,0.15525823592461777,0.15280734691806927,0.1504019440739494,0.1480413270854841,0.1457247761765058,0.14345155623462047,0.1412209205019631,0.13903211386357808,0.13688437577025356,0.13477694282991806,0.13270905109875664,0.13067993810070233,0.12868884460150426,0.12673501616136623,0.12481770448790326,0.1229361686094621,0.12108967588683094,0.11927750287982984,0.11749893608379931,0.11575327254943588,0.11403982039841873,0.11235789924585769,0.1107068405396853,0.10908598782611426,0.10749469694932931,0.105932336192931,0.10439828636976113,0.10289194086618268,0.10141270564624094,0.09995999922062736,0.0985332525847823,0.0971319091301836,0.09575542453229971,0.09440326661841698,0.09307491521821772,0.09176986199959807,0.09048761029209922,0.08922767489991944,0.08798958190636834,0.08677286847136258,0.08557708262343766,0.08440178304750044,0.08324653886952763,0.0821109294391683,0.0809945441111475,0.0798969820262793,0.07881785189271517,0.0777567717681046,0.07671336884313304,0.07568727922691822,0.07467814773466383,0.07368562767787296,0.07270938065745967,0.07174907635996793,0.07080439235711229,0.06987501390880836,0.06896063376984661,0.0680609520002797,0.06717567577965743,0.06630451922514158,0.06544720321354741,0.0646034552073591,0.06377300908468586,0.06295560497321426,0.06215098908809765,0.061358913573778935,0.06057913634970907,0.05981142095993142,0.05905553642645266,0.0583112571063958,0.05757836255283778,0.05685663737928777,0.056145871127748416,0.05544585814026212,0.05475639743391462,0.05407729257919446,0.05340835158164433,0.052749386766740604,0.052100214667902066,0.051460655917586424,0.05083053514137597,0.05020968085498838,0.049597925364134925,0.04899510466716619,0.04840105836040331,0.04781562954612243,0.04723866474309264,0.046670013799609486,0.046109529808962886,0.045557069027248556,0.04501249079349028,0.04447565745198464,0.04394643427681515,0.04342468939847017,0.042910293732515724,0.04240312091024117,0.04190304721124962,0.041409951497916916,0.040923715151670356,0.04044422201104379,0.03997135831143268,0.03950501262653205,0.039045075811382654,0.03859144094698891,0.03814400328646607,0.03770266020265448,0.03726731113718149,0.036837857550911485,0.036414202875748036,0.0359962524677488,0.03558391356151878,0.03517709522582847,0.03477570832044408,0.03437966545411535,0.03398888094369406,0.03360327077435525,0.03322275256087092,0.03284724550992925,0.03247667038345077,0.032110949462878055,0.031750006514416,0.0313937667551788,0.031042156820238465,0.03069510473053242,0.030352539861611537,0.03001439291320291,0.02968059587956818,0.029351082020621522,0.029025785833802942,0.028704643026671882,0.028387590490204995,0.02807456627278168,0.027765509554825207,0.02746036062409767,0.027159060851617286,0.026861552668185483,0.0265677795415047,0.026277685953875,0.025991217380441415,0.025708320267991715,0.025428942014278293,0.02515303094785246,0.0248805363084006,0.024611408227558376,0.02434559771020183,0.024083056616194438,0.023823737642577985,0.02356759430620055,0.023314580926758477,0.023064652610254845,0.022817765232852318,0.022573875425114423,0.022332940556622907,0.022094918720964855,0.02185976872106985,0.021627450054901038,0.021397922901480047,0.0211711481072411,0.0209470871727078,0.02072570223947485,0.02050695607749901,0.020290812072682386,0.020077234214742647,0.01986618708536292,0.019657635846616638,0.019451546229651225,0.01924788452363667,0.019046617564961437,0.018847712726674345,0.01865113790816716,0.01845686152508417,0.01826485249946387,0.01807508025009799,0.017887514683106197,0.017702126182722225,0.01751888560227926,0.017337764255399426,0.017158733907374383,0.016981766766735892,0.016806835477009643,0.01663391310865183,0.016462973151155098,0.016293989505331334,0.016126936475757612,0.01596178876338512,0.015798521458308578,0.015637110032685853,0.01547753033381278,0.015319758577342604,0.015163771340649805,0.015009545556332772,0.014857058505856077,0.014706287813321145,0.014557211439371404,0.014409807675222625,0.01426405513681668,0.014119932759098796,0.013977419790408476,0.013836495786990076,0.013697140607613616,0.013559334408305878,0.01342305763719041,0.01328829102942888,0.013155015602268224,0.013023212650186277,0.012892863740135149,0.012763950706879851,0.012636455648431763,0.012510360921569753,0.012385649137453597,0.012262303157322867,0.012140306088280565,0.012019641279161554,0.011900292316478702,0.01178224302045183,0.011665477441112355,0.011549979854483852,0.01143573475883818,0.011322726871020981,0.011210941122851096,0.011100362657587608,0.010990976826465097,0.010882769185294546,0.010775725491130764,0.010669831698999956,0.010565073958692332,0.010461438611613976,0.010358912187697631,0.010257481402373361,0.010157133153592788,0.010057854518911781,0.00995963275262619,0.009862455282960947,0.484722900844484,0.48434359305856206,0.48321091254724974,0.481340380772609,0.4787571926987907,0.47549525993406927,0.4715959727930695,0.46710676784952526,0.462079593796642,0.45656936537076287,0.4506324843434554,0.44432549056969617,0.43770388747158884,0.43082116759457206,0.4237280469206323,0.4164719026914967,0.40909639915187335,0.40164127887468337,0.3941422937953602,0.38663124916132896,0.3791361346192153,0.3716813189672104,0.3642877881384365,0.3569734093109771,0.34975324547880443,0.34271380378741945,0.3359173409166449,0.3293512186212917,0.3230036752846911,0.3168637507666346,0.3109212188500233,0.30516652640803454,0.2995907385268875,0.2941854889170527,0.28894293502893936,0.2838557173615116,0.2789169225146367,0.27412004958996283,0.2694589795916525,0.26492794751949567,0.26052151688199066,0.25623455638806264,0.25206221860321165,0.24799992037941998,0.24404332488916097,0.24018832511201565,0.2364310286385035,0.23276774367006345,0.22919496610641527,0.22569014423877812,0.22222486572626798,0.21880087272471155,0.2154198874021986,0.2120833645585812,0.208792514499908,0.2055483246360938,0.20235157977513069,0.19920288111083514,0.19610266391960937,0.19305121399628178,0.19004868287036672,0.18709510185206518,0.18419039496321682,0.18133439081204508,0.17852683347254905,0.1757673924303052,0.17305567165590535,0.17039121786621503,0.1677735280319075,0.16520205618746758,0.16267621959723044,0.16019540432852203,0.1577589702797883,0.1553662557089027,0.1530165813038323,0.15070925383490252,0.1484435694253061,0.14621881647358237,0.14403427825936244,0.1418892352612003,0.13978296721301933,0.13771475492344915,0.13568388188049849,0.13368963566190875,0.13173130916991987,0.1298082017075313,0.12791961991174794,0.12606487855810902,0.12424330124932079,0.12245422099976752,0.12069698072659733,0.11897093365698992,0.11727544366049482,0.11560988551433786,0.11397364510894152,0.11236611960017184,0.11078671751426654,0.10923485881071415,0.10770997490798727,0.10621150867644999,0.10473891440235757,0.10329165772654418,0.10186921556090886,0.10047107598566674,0.09909673812988155,0.09774571203762972,0.09641751852187157,0.09511168900792223,0.0938277653681396,0.0925652997494082,0.0913238543946905,0.09010300145987606,0.08890232282699527,0.08772140991470465,0.08655986348694752,0.08541729346048764,0.0842933187119893,0.08318756688524379,0.0820996741990041,0.08102928525593679,0.07997605285304202,0.07893963779388781,0.07791970870296124,0.07691594184239257,0.07592802093123421,0.07495563696752901,0.0739984880532796,0.07305627922245901,0.07212872227217508,0.07121553559703474,0.07031644402681919,0.06943117866747762,0.06855947674548406,0.06770108145557241,0.06685574181186703,0.06602321250236846,0.06520325374683264,0.06439563115797826,0.06360011560601442,0.06281648308646151,0.06204451459118912,0.06128399598267897,0.0605347178714257,0.05979647549643798,0.059069068608798674,0.05835230135819307,0.057645982182393724,0.05694992369960977,0.05626394260365295,0.055587859561857696,0.05492149911570475,0.05426468958405795,0.053617262968992045,0.0529790548641226,0.05234990436538409,0.05172965398420815,0.051118149563013054,0.05051524019298131,0.049920778134042394,0.049334618737010734,0.048756620367821794,0.048186644333818036,0.047624554812007884,0.047070218779276064,0.046523505944466664,0.04598428868229895,0.04545244196907098,0.0449278433200791,0.04441037272873727,0.04389991260732471,0.043396347729325546,0.04289956517332129,0.04240945426837289,0.041925906540876606,0.04144881566283309,0.04097807740149691,0.040513589570364626,0.040055251981471154,0.039602966398938864,0.03915663649376846,0.03871616779981687,0.03828146767093602,0.03785244523924398,0.037429011374479355,0.03701107864443091,0.036598561276394846,0.03619137511963588,0.035789437608829286,0.03539266772843883,0.03500098597802738,0.03461431433845553,0.03423257623895066,0.03385569652501982,0.033483601427187294,0.03311621853052013,0.0327534767449379,0.0323953062762712,0.032041638598050835,0.03169240642401391,0.031347543681290724,0.031006985484273678,0.030670668109134155,0.030338528968975164,0.030010506589600267,0.02968654058588676,0.02936657163873379,0.029050541472585668,0.02873839283350325,0.028430069467770727,0.028125516101028824,0.027824678417906645,0.027527503042154983,0.02723393751725593,0.026943930287498703,0.026657430679513986,0.026374388884242057,0.026094755939338257,0.025818483711993873,0.02554552488216343,0.025275832926188537,0.025009362100810232,0.024746067427549263,0.02448590467745915,0.024228830356230985,0.023974801689644307,0.023723776609358673,0.023475713739025864,0.02323057238072912,0.02298831250172973,0.022748894721517112,0.02251228029915385,0.02227843112091084,0.022047309688176375,0.021818879105644392,0.02159310306976495,0.021369945857453963,0.02114937231505833,0.02093134784756041,0.02071583840802881,0.020502810487298913,0.02029223110388168,0.02008406779409689,0.019878288602416992,0.0196748620720276,0.019473757235590364,0.019274943606207625,0.01907839116858125,0.018884070370365366,0.018691952113698947,0.01850200774692619,0.018314209056489852,0.018128528258998203,0.01794493799346236,0.017763411313692735,0.017583921680861214,0.017406442956216694,0.017230949393954295,0.017057415634232312,0.01688581669633772,0.01671612797198814,0.01654832521877751,0.01638238455375434,0.016218282447132037,0.016055995716130724,0.0158955015189396,0.01573677734880776,0.015579801028251903,0.015424550703381671,0.015271004838341713,0.01511914220986098,0.014968941901915892,0.014820383300497685,0.014673446088485063,0.01452811024061761,0.014384356018571276,0.014242163966126984,0.014101514904438225,0.013962389927389674,0.013824770397046618,0.013688637939195033,0.013553974438964677,0.013420762036540678,0.013288983122956443,0.013158620335967295,0.013029656556005643,0.012902074902209628,0.012775858728531547,0.012650991619918502,0.012527457388565921,0.012405240070241769,0.012284323920681583,0.01216469341204844,0.012046333229462433,0.011929228267593402,0.011813363627317428,0.011698724612437065,0.011585296726459205,0.011473065669435758,0.011362017334861094,0.011252137806626697 +0.10177324034865588,0.10158904885405812,0.10104112559692208,0.10014311508920111,0.09891676655779214,0.09739057491476276,0.09559810893685926,0.09357620432790252,0.09136319059187373,0.08899728943546271,0.08651527854182227,0.08395146811829933,0.08133699659230993,0.07869942088796936,0.07606255730436194,0.07344652015321437,0.07086790466793391,0.06834006552664146,0.06587345013047907,0.06347595459514381,0.06116906799038323,0.058989427702479225,0.05692922644967157,0.0549608491309996,0.05305599623749597,0.051216029544865586,0.04944164925519072,0.047732849120306495,0.0460890544269467,0.04450924063059806,0.04299203420217856,0.041535797478336425,0.0401386993715754,0.03879877375470238,0.03751396722521154,0.036282177809140226,0.0351012860007918,0.033969179368695306,0.032883771797907906,0.03184301828981907,0.030844926105299476,0.02988756291684366,0.02896906252985117,0.028087628641781926,0.027241537029526627,0.026429136488423655,0.025648848789814438,0.02489916787642813,0.02417865847492167,0.02348595427170347,0.022819755770411624,0.022178827926529334,0.021561997635675716,0.02096815113652242,0.02039623137644713,0.019845235377625843,0.01931421163264224,0.018802257551785162,0.01830851697856116,0.017832177785381254,0.017372469557777975,0.01692866137254229,0.016500059672889946,0.01608600624193664,0.015685876274328943,0.015299076544814235,0.01492504367167611,0.014563242472361147,0.014213164408178568,0.01387432611465694,0.013546268013925637,0.013228553005418179,0.012920765231120955,0.012622508911624131,0.012333407249287222,0.012053101394899303,0.01178124947435303,0.011517525671946523,0.011261619367078226,0.011013234321239797,0.010772087912358837,0.010537910413678644,0.010310444314530978,0.010089443680476807,0.009874673550443145,0.009665909368620492,0.009462936448999414,0.009265549470575616,0.00907355200134615,0.00888675604934648,0.008704981639086123,0.008528056411828355,0.00835581524827724,0.008188099912304962,0.008024758714448845,0.007865646193985063,0.007710622818462296,0.007559554699641936,0.007412313324871811,0.0072687753029678495,0.007128822123744075,0.006992339930386336,0.006859219303907549,0.006729355058983587,0.006602646050500327,0.006478994990191661,0.006358308272784014,0.006240495811102539,0.006125470879621109,0.006013149965980715,0.005903452630020738,0.005796301369900165,0.0056916214949127705,0.005589341004618331,0.005489390473944929,0.005391702943928389,0.00529621381778059,0.0052028607619973,0.005111583612227005,0.005022324283649967,0.004935026685620069,0.004849636640344138,0.0047661018053833555,0.004684371599776336,0.004604397133589975,0.004526131140723934,0.004449527914795897,0.004374543247949885,0.004301134372438471,0.00422925990483395,0.0041588797927392404,0.004089955263869119,0.0040224487773838705,0.003956323977362737,0.003891545648311718,0.003828079672602737,0.003765892989752784,0.0037049535574508077,0.0036452303142479434,0.0035866931438319257,0.003529312840807087,0.0034730610779111952,0.0034179103745985615,0.0033638340669257514,0.003310806278679301,0.0032588018936854746,0.0032077965292497406,0.003157766510671949,0.0031086888467884584,0.0030605412064939985,0.0030133018961996326,0.002966949838182525,0.0029214645497899136,0.002876826123457358,0.0028330152075054546,0.002790012987681415,0.002747801169410718,0.002706361960730315,0.002665678055871839,0.0026257326194672847,0.002586509271350866,0.0025479920719299635,0.002510165508102885,0.002473014479698813,0.0024365242864184673,0.0024006806152542083,0.0023654695283702896,0.002330877451422527,0.00229689116230126,0.002263497780278712,0.002230684755544706,0.002198439859115337,0.0021667511730981866,0.0021356070813014836,0.0021049962601720497,0.0020749076700495176,0.002045330546723994,0.002016254393285749,0.0019876689722541836,0.0019595642979768108,0.0019319306292864384,0.001904758462407086,0.0018780385240992818,0.0018517617650345318,0.001825919353391635,0.0018005026686653486,0.0017755032956797351,0.0017509130187984441,0.0017267238163248978,0.0017029278550842436,0.0016795174851817801,0.001656485234930222,0.001633823805940003,0.0016115260683668958,0.0015895850563103712,0.0015679939633583286,0.0015467461382721755,0.0015258350808072924,0.0015052544376645647,0.001484997998567232,0.0014650596924599077,0.0014454335838245444,0.0014261138691095449,0.00140709487326801,0.0013883710464016015,0.0013699369605055596,0.0013517873063124614,0.0013339168902305255,0.0013163206313734647,0.0012989935586790629,0.00128193080811268,0.0012651276199538055,0.0012485793361621533,0.001232281397820863,0.0012162293426544561,0.0012004188026183873,0.001184845501558728,0.0011695052529389993,0.00115439395763221,0.001139507601775883,0.0011248422546882924,0.0011103940668432634,0.001096159267902525,0.001082134164803091,0.0010683151398981612,0.0010546986491500104,0.0010412812203726162,0.0010280594515232795,0.0010150300090410308,0.0010021896262306783,0.0009895351016909308,0.000977063297785457,0.0009647711391550454,0.0009526556112702449,0.0009407137590227727,0.000928942685354646,0.000917339549924036,0.0009059015678062914,0.0008946260082296545,0.000883510193344167,0.0008725514970229497,0.0008617473436949946,0.0008510952072081028,0.0008405926097216776,0.0008302371206280256,0.0008200263555015115,0.000809957975074684,0.0008000296842407732,0.0007902392310813225,0.0007805844059188575,0.0007710630403933715,0.0007616730065621315,0.0007524122160222511,0.0007432786190549774,0.0007342702037916047,0.0007253849954000076,0.000716621055291366,0.0007079764803464487,0.0006994494021610836,0.0006910379863098701,0.0006827404316281478,0.0006745549695113225,0.0006664798632312149,0.0006585134072690427,0.0006506539266642791,0.0006428997763793647,0.0006352493406795238,0.0006277010325273863,0.0006202532929921072,0.0006129045906722815,0.000605653421132711,0.0005984983063543191,0.0005914377941969959,0.0005844704578750006,0.0005775948954446741,0.0005708097293038734,0.0005641136057031939,0.0005575051942683714,0.0005509831875336841,0.000544546300486141,0.0005381932701199211,0.0005319228550011323,0.0005257338348423847,0.0005196250100870064,0.0005135952015026331,0.0005076432497840257,0.0005017680151646258,0.0004959683770369801,0.0004902432335815276,0.00048459150140364536,0.00047901211517881247,0.0004735040273054568,0.0004680662075656043,0.0004626976427928928,0.00045739733654786137,0.00045216430880039066,0.0004469975956189136,0.0004418962488665053,0.00043685933590347707,0.0004318859392963925,0.11064788342200649,0.11044994189362406,0.1098611127658752,0.10889604943658238,0.10757810643009386,0.10593787652943369,0.10401139219733882,0.10183818302388867,0.09945937120432034,0.09691595307755807,0.0942473672145093,0.09149039939403288,0.08867843064324499,0.08584100134793013,0.08300364375169614,0.08018792584172149,0.07741164911069444,0.07468914801535292,0.07203164741770725,0.0694476438046042,0.06696502109324468,0.06461908717701065,0.062400283090972015,0.06028830064769459,0.05824428645863842,0.05626731128432107,0.05435843422846151,0.05251793233344494,0.05074544828719491,0.04904011812979572,0.04740068040067839,0.04582556846308496,0.04431298785702556,0.04286098052359028,0.041467477655681005,0.04013034279611094,0.03884740664640455,0.03761649488451652,0.03643545012734635,0.03530214902105011,0.034214515301829916,0.033170529544198545,0.03216823620269821,0.031205748456209683,0.030281251280593578,0.02939300310381421,0.02853933633700788,0.027718657023602725,0.026929443805354922,0.026170246368097477,0.025439683499729557,0.024736440867941543,0.02405926860435414,0.023406978764589245,0.022778442719576325,0.022172588521841258,0.02158839828091685,0.02102490557426778,0.020481192913783818,0.01995638928272006,0.019449667753867424,0.018960243196341243,0.018487370075740982,0.018030340350310092,0.017588481464031958,0.01716115443633825,0.016747752047062157,0.016347697114529134,0.015960440864110154,0.015585461384165045,0.015222262166000419,0.014870370724332924,0.014529337294612059,0.014198733603548529,0.013878151709208704,0.013567202907074218,0.013265516698580537,0.01297273981872249,0.012688535319450644,0.012412581705711632,0.012144572121121223,0.011884213580388716,0.011631226245775528,0.011385342744985578,0.011146307528037906,0.010913876260804516,0.010687815253015114,0.010467900918677307,0.01025391926695859,0.010045665421703239,0.00984294316786902,0.009645564523255764,0.009453349334022016,0.009266124892554304,0.009083725576355506,0.00890599250669643,0.008732773225856512,0.008563921391842392,0.008399296489558773,0.008238763557454041,0.00808219292873229,0.00792945998628117,0.007780444930507974,0.0076350325593427795,0.007493112059697852,0.007354576809726014,0.007219324191257327,0.007087255411835737,0.0069582753358041274,0.006832292323933977,0.006709218081112916,0.006588967511641247,0.006471458581714889,0.006356612188691939,0.006244352036775026,0.006134604518753046,0.006027298603473404,0.00592236572873501,0.005819739699305444,0.005719356589792829,0.005621154652109196,0.005525074227283034,0.005431057661390969,0.005339049225394003,0.005248995038670321,0.005160842996057949,0.005074542698222283,0.004990045385178864,0.004907303872811598,0.004826272492230758,0.004746907031831862,0.004669164681916614,0.004593003981749209,0.004518384768926409,0.0044452681309488816,0.004373616358882132,0.00430339290300939,0.004234562330376482,0.0041670902841384775,0.004100943444622448,0.0040360894920215724,0.0039724970706468314,0.003910135754660019,0.0038489760152192166,0.003788989188971931,0.0037301474478303237,0.0036724237699730733,0.0036157919120146298,0.0035602263822897633,0.0035057024152023025,0.00345219594659076,0.0033996835900630424,0.0033481426142597803,0.0032975509210027287,0.003247887024289897,0.0031991300301006946,0.003151259616973769,0.0031042560173264104,0.003058099999481468,0.003012772850371963,0.0029682563588950095,0.00292453279988531,0.002881584918684671,0.0028393959162803612,0.002797949434989161,0.002757229544664253,0.00271722072940363,0.002677907874737902,0.0026392762552797195,0.002601311522814525,0.00256399969481504,0.0025273271433628656,0.0024912805844593423,0.0024558470677119556,0.002421013966379886,0.002386768967765004,0.002353100063934421,0.0023199955427622493,0.0022874439792765155,0.0022554342273013363,0.0022239554113814715,0.002192996918978806,0.0021625483929308084,0.0021325997241596426,0.002103141044624112,0.0020741627205039647,0.002045655345608349,0.0020176097349998345,0.0019900169188264453,0.0019628681363527637,0.001936154830184402,0.0019098686406774366,0.0018840014005265815,0.001858545129525771,0.0018334920294939623,0.0018088344793615713,0.0017845650304106576,0.0017606764016638006,0.0017371614754166321,0.0017140132929079391,0.001691225050123901,0.0016687900937305794,0.0016467019171307626,0.0016249541566405409,0.0016035405877819736,0.001582455121686782,0.0015616918016086061,0.0015412447995390727,0.0015211084129245738,0.001501277061480473,0.0014817452840987493,0.0014625077358469368,0.0014435591850545447,0.0014248945104842865,0.0014065086985855567,0.0013883968408266736,0.0013705541311043255,0.001352975863226891,0.0013356574284695776,0.0013185943131988924,0.001301782096564516,0.001285216448255691,0.0012688931263209913,0.0012528079750487398,0.0012369569229063783,0.0012213359805371572,0.001205941238811625,0.0011907688669331336,0.0011758151105949624,0.0011610762901877317,0.0011465487990554512,0.0011322291017989378,0.0011181137326245585,0.0011041992937376604,0.0010904824537787906,0.0010769599463015202,0.0010636285682908734,0.0010504851787205098,0.0010375266971482775,0.0010247501023484115,0.0010121524309794647,0.0009997307762870957,0.0009874822868401398,0.000975404165299672,0.0009634936672196047,0.0009517480998780551,0.0009401648211385316,0.0009287412383402993,0.0009174748072165331,0.0009063630308401598,0.0008954034585960454,0.0008845936851790109,0.0008739313496170062,0.0008634141343183523,0.000853039764142882,0.000842806005495949,0.0008327106654447652,0.0008227515908564141,0.0008129266675570987,0.0008032338195116175,0.0007936710080230474,0.0007842362309516639,0.0007749275219527298,0.0007657429497327337,0.0007566806173231809,0.0007477386613720117,0.0007389152514517439,0.0007302085893840316,0.0007216169085803144,0.0007131384733977601,0.0007047715785105801,0.0006965145482959278,0.0006883657362341651,0.0006803235243230327,0.000672386322505518,0.0006645525681107179,0.00065682072530779,0.0006491892845723353,0.0006416567621649733,0.000634221699621924,0.000626882663256949,0.0006196382436747977,0.0006124870552955145,0.000605427735889501,0.0005984589461229723,0.0005915793691136903,0.0005847877099963959,0.0005780826954981118,0.0005714630735227479,0.0005649276127448839,0.0005584751022125961,0.0005521043509588197,0.0005458141876213912,0.0005396034600713038,0.0005334710350490382,0.00052741579780888,0.0005214366517707407,0.0005155325181796699,0.0005097023357725909,0.0005039450604522001,0.12025015353310181,0.12003739383819644,0.11940448593785402,0.11836718401687332,0.11695059284031432,0.1151875900111968,0.11311688746910807,0.11078093968912782,0.10822389511935561,0.10548975025119706,0.10262081402345584,0.09965653594565797,0.0966327036896685,0.09358098029167589,0.09052872906175959,0.08749906453239195,0.08451106747620109,0.08158010794911043,0.07871822954511243,0.07593455833732976,0.07326357767814212,0.07073878726188,0.06834940515616714,0.0660819364671314,0.06389232773219441,0.06177158996233601,0.05972120799285205,0.05774180172554268,0.05583328386342011,0.05399499711689119,0.052225832149249474,0.05052432790647311,0.048888756150313434,0.0473171920467215,0.045807572601450075,0.04435774461741006,0.04296550369987188,0.04162862567404114,0.04034489161691243,0.039112107549740004,0.03792811969287066,0.03679082605397221,0.035698185004303655,0.034648221395487885,0.03363903068070319,0.03266878142784899,0.031735716547167545,0.03083815350051039,0.029974483712700936,0.029143171366282982,0.02834275172797701,0.027571829127795443,0.026829074688916058,0.026113223887506233,0.025423074005981726,0.02475748153034659,0.02411535953155214,0.02349567506214521,0.022897446592341792,0.022319741503814047,0.021761673654824416,0.021222401026455128,0.02070112345664837,0.020197080466304192,0.019709549179703162,0.019237842340019806,0.018781306419444255,0.018339319822523972,0.01791129118062041,0.01749665773486725,0.017094883804607008,0.01670545933807309,0.016327898541875514,0.015961738585784188,0.015606538379274483,0.01526187741629592,0.014927354684812573,0.014602587637709687,0.014287211221779393,0.013980876961606967,0.013683252095309477,0.013394018759189054,0.013112873218529636,0.012839525141867668,0.012573696916219219,0.012315123000878862,0.012063549317515264,0.011818732674443774,0.011580440223046972,0.011348448944446813,0.011122545164640492,0.01090252409640534,0.010688189406400051,0.010479352805962546,0.010275833664207774,0.010077458642108685,0.009884061346328205,0.009695482001633799,0.00951156714081692,0.009332169311087105,0.009157146795983435,0.008986363351906435,0.008819687958417142,0.008656994581520772,0.008498161949182308,0.00834307333837912,0.008191616373032869,0.008043682832207666,0.007899168467989551,0.0077579728325122,0.007619999113612775,0.007485153978639602,0.007353347425963803,0.007224492643764665,0.007098505875698793,0.00697530629307235,0.006854815873165981,0.006736959283382949,0.006621663770902843,0.006508859057554509,0.006398477239626042,0.006290452692353901,0.006184721978844576,0.006081223763199825,0.005979898727622627,0.005880689493304356,0.005783540544894995,0.0056883981583746085,0.005595210332155079,0.005503926721244956,0.0054144985743289145,0.00532687867361236,0.00524102127729571,0.005156882064547637,0.005074418082856354,0.004993587697639122,0.004914350544005123,0.004836667480563986,0.0047605005451833325,0.004685812912602822,0.0046125688538137775,0.004540733697124802,0.004470273790831475,0.004401156467415853,0.004333350009205931,0.004266823615424494,0.004201547370567547,0.0041374922140484756,0.004074629911051742,0.004012933024540845,0.003952374888369879,0.003892929581446572,0.0038345719029035377,0.0037772773482305376,0.0037210220863263315,0.003665782937430571,0.0036115373518950974,0.003558263389761392,0.0035059397011071225,0.0034545455071294615,0.003404060581934721,0.003354465235001933,0.003305740294294888,0.0032578670899933355,0.003210827438818168,0.0031646036289258075,0.003119178405348899,0.0030745349559590045,0.003030656897932395,0.00298752826469665,0.002945133493339157,0.0029034574124594454,0.002862485230445915,0.002822202524162188,0.002782595228025222,0.0027436496234603067,0.0027053523287179208,0.0026676902890389706,0.0026306507671531617,0.002594221334099834,0.0025583898603571188,0.002523144507268214,0.0024884737187538487,0.002454366213298629,0.0024208109762028653,0.0023877972520883603,0.00235531453764933,0.002323352574639014,0.0022919013430838736,0.002260951054715535,0.002230492146614319,0.0022005152750552643,0.0021710113095496568,0.002141971327075536,0.0021133866064888935,0.002085248623110944,0.0020575490434837952,0.002030279720288963,0.002003432687423371,0.0019770001552261375,0.0019509745058522996,0.00192534828878728,0.0019001142164976237,0.0018752651602131083,0.0018507941458361665,0.0018266943499731527,0.0018029590960846845,0.0017795818507500116,0.0017565562200418173,0.0017338759460081032,0.0017115349032565928,0.0016895270956394303,0.0016678466530339834,0.0016464878282167923,0.0016254449938279286,0.0016047126394218793,0.0015842853686033104,0.0015641578962440551,0.0015443250457790447,0.0015247817465784948,0.001505523031394242,0.0014865440338770097,0.0014678399861634717,0.0014494062165299809,0.0014312381471112449,0.0014133312916820517,0.0013956812534993586,0.0013782837232038327,0.0013611344767782525,0.001344229373561314,0.0013275643543149641,0.0013111354393440125,0.0012949387266655854,0.0012789703902279298,0.0012632266781763021,0.001247703911164796,0.0012323984807128868,0.0012173068476047442,0.0012024255403308693,0.0011877511535701292,0.0011732803467112518,0.0011590098424127538,0.001144936425199628,0.0011310569400964214,0.0011173682912951565,0.0011038674408571838,0.0010905514074480245,0.0010774172651043842,0.0010644621420318851,0.0010516832194333886,0.0010390777303664412,0.0010266429586292226,0.0010143762376743626,0.0010022749495492873,0.0009903365238630689,0.000978558436778502,0.00096693821002889,0.0009554734099588219,0.0009441616465884278,0.0009330005727000057,0.0009219878829470212,0.0009111213129843966,0.0009003986386196823,0.0008898176749846416,0.0008793762757262927,0.0008690723322174492,0.0008589037727857876,0.0008488685619611003,0.000838964699740385,0.0008291902208698499,0.0008195431941439798,0.0008100217217207594,0.0008006239384527981,0.000791348011233908,0.0007821921383608372,0.0007731545489094256,0.0007642335021252738,0.0007554272868281952,0.0007467342208302062,0.0007381526503668243,0.0007296809495409833,0.0007213175197796915,0.0007130607893027876,0.0007049092126035893,0.0006968612699411141,0.0006889154668436908,0.0006810703336233604,0.0006733244249012226,0.0006656763191431221,0.0006581246182055361,0.0006506679468915079,0.0006433049525160545,0.0006360343044812365,0.000628854693860351,0.0006217648329911014,0.0006147634550776424,0.0006078493138009811,0.0006010211829379176,0.0005942778559880327,0.0005876181458086314,0.13063271982051397,0.13040396811554614,0.12972349589917317,0.12860826306259612,0.12708528981568082,0.12518995113977147,0.12296388299886689,0.12045272546115796,0.11770391552424833,0.11476470162345632,0.1116804953685941,0.1084936170371122,0.10524243983804969,0.1019608996824024,0.0986783137083909,0.0954194406243479,0.09220471592901995,0.08905060170830056,0.08597000081914911,0.08297271412030734,0.08010329916424178,0.07738952225458977,0.07481971947471253,0.07238326769636998,0.07004180457919139,0.06777060900796548,0.0655716729754347,0.06344603217599093,0.061393934053875616,0.059414984958930016,0.05750827744138852,0.05567249919077282,0.05390602536999677,0.052206996180752314,0.05057338147162235,0.049003034106364175,0.04749373367504345,0.04604322197608562,0.04464923153689112,0.04330950828391826,0.04202182932538715,0.040784016674615814,0.039593947620542344,0.038449562344540944,0.037348869288923024,0.0362899487012049,0.03527095470856181,0.03429011621744345,0.03334573688281558,0.032436194349019364,0.03155993892832283,0.03071549185330621,0.02990144321414263,0.029116449670994107,0.028359232014362655,0.027628572631980763,0.026923312928880182,0.026242350737568643,0.025584637747215117,0.024949176974132486,0.024335020290550888,0.023741266024240475,0.02316705663803581,0.022611576495469746,0.02207404971638942,0.021553738124669722,0.021049939288631313,0.020561984653682062,0.020089237765808864,0.019631092583896514,0.01918697187832687,0.018756325713000052,0.01833863000762845,0.017933385177023045,0.01754011484400227,0.017158364622504804,0.016787700967537216,0.016427710088596767,0.016077996923308545,0.015738184168097483,0.015407911362832849,0.015086834026477041,0.014774622840928996,0.014470962880343219,0.014175552883354333,0.013888104565760175,0.01360834197132885,0.01333600085854437,0.013070828121195716,0.012812581240848032,0.012561027769340784,0.01231594483955346,0.012077118702802352,0.011844344291305587,0.011617424804258468,0.01139617131614261,0.011180402405980379,0.01096994380630941,0.010764628070747094,0.010564294259062839,0.010368787638752269,0.010177959402168747,0.009991666398313745,0.009809770878460975,0.009632140254820495,0.009458646871507687,0.009289167787123222,0.009123584568294933,0.008961783093562,0.008803653367035789,0.008649089341289029,0.008497988748966758,0.008350252942643402,0.008205786742468909,0.00806449829119003,0.007926298916141227,0.007791102997833145,0.007658827844787452,0.007529393574279803,0.007402722998685967,0.007278741517130329,0.007157377012161204,0.007038559751190522,0.006922222292452648,0.006808299395245052,0.006696727934237047,0.006587446817635056,0.00648039690900986,0.0063755209526031266,0.006272763501933736,0.006172070851545562,0.006073390971736245,0.00597667344612165,0.005881869411896346,0.0057889315026599915,0.005697813793681283,0.005608471749486887,0.005520862173659942,0.0054349431607438456,0.005350674050152658,0.005268015381989606,0.005186928854689003,0.005107377284392679,0.005029324565981703,0.004952735635687756,0.0048775764352086744,0.004803813877263214,0.0047314158125168265,0.004660350997817593,0.0045905890656827725,0.004522100494981554,0.004454856582757592,0.00438882941714488,0.004323991851325828,0.0042603174784869935,0.0041977806077299435,0.004136356240892829,0.004076020050247506,0.004016748357031564,0.003958518110780859,0.003901306869428375,0.003845092780137804,0.003789854560838739,0.0037355714824373327,0.003682223351671858,0.003629790494587559,0.003578253740605675,0.0035275944071604896,0.0034777942848838945,0.0034288356233132984,0.0033807011171024175,0.003333373892715475,0.0032868374955834796,0.0032410758777069396,0.0031960733856853203,0.0031518147491573483,0.0031082850696356936,0.003065469809721555,0.00302335478268248,0.0029819261423819567,0.00294117037354533,0.0029010742823499425,0.002861624987327599,0.0028228099105660092,0.002784616769200053,0.0027470335671804327,0.002710048587309855,0.002673650383537401,0.002637827773499973,0.0026025698313037323,0.0025678658805353255,0.00253370548749501,0.002500078454643552,0.0024669748142556987,0.0024343848222713395,0.002402298952339314,0.0023707078900454016,0.0023396025273186476,0.002308973957009992,0.0022788134676359558,0.0022491125382833165,0.0022198628336678352,0.002191056199342295,0.0021626846570484523,0.0021347404002084814,0.002107215789549961,0.0020801033488614157,0.002053395760872769,0.002027085863257004,0.0020011666447492145,0.0019756312413780224,0.0019504729328071626,0.0019256851387824362,0.0019012614156808678,0.001877195453159173,0.001853481070897125,0.0018301122154341686,0.001807082957095211,0.0017843874870031215,0.001762020114174986,0.0017399752626998514,0.0017182474689943846,0.001696831379135244,0.0016757217462647492,0.0016549134280679297,0.0016344013843189135,0.0016141806744936838,0.0015942464554482378,0.001574593979159296,0.0015552185905259466,0.0015361157252302465,0.001517280907655286,0.0014987097488581753,0.0014803979445973216,0.0014623412734115888,0.0014445355947500002,0.0014269768471507494,0.0014096610464672727,0.0013925842841409671,0.0013757427255184501,0.0013591326082122756,0.0013427502405040286,0.0013265919997879263,0.0013106543310545775,0.0012949337454131204,0.001279426818650829,0.001264130189829069,0.0012490405599147709,0.0012341546904457948,0.001219469402230042,0.001204981574076717,0.0011906881415590692,0.0011765860958078587,0.0011626724823341743,0.001148944399881459,0.0011353989993054534,0.0011220334824814005,0.001108845101237772,0.001095831156315935,0.0010829889963545223,0.001070316016898577,0.0010578096594321901,0.0010454674104342333,0.0010332868004566875,0.0010212654032244603,0.0010094008347567864,0.0009976907525091228,0.0009861328545351653,0.000974724878668584,0.0009634646017235036,0.0009523498387138616,0.0009413784420906342,0.0009305483009966967,0.0009198573405387642,0.0009093035210761516,0.0008988848375254736,0.0008885993186814383,0.00087844502655292,0.0008684200557140047,0.0008585225326698324,0.0008487506152363547,0.0008391024919342885,0.0008295763813964316,0.0008201705317881667,0.0008108832202409333,0.000801712752297978,0.0007926574613725457,0.0007837157082178572,0.0007748858804087111,0.0007661663918343698,0.0007575556822025995,0.0007490522165542285,0.0007406544847884343,0.0007323610011981497,0.000724170304015441,0.0007160809549667587,0.0007080915388374424,0.0007002006630457267,0.0006924069572256921,0.0006847090728190438,0.14185068010398658,0.14160464047632046,0.14087275764178295,0.13967331789577256,0.13803544660760858,0.13599725958759576,0.13360359592593218,0.13090357751249362,0.1279482263313486,0.12478832552210367,0.12147264830947072,0.11804661453579172,0.11455137866699487,0.11102331192420482,0.107493816175817,0.10398939666415596,0.10053192105489304,0.09713899979693272,0.09382443391757417,0.09059965041279584,0.08752071437937645,0.08460695906541736,0.08184609125574557,0.07922697717066025,0.07672541673601745,0.07429766389759732,0.07194360095564278,0.06966476403699576,0.06746181116348718,0.06533467969723761,0.0632827234758076,0.061304830941812306,0.05939952590448296,0.05756505271976393,0.055799447696499464,0.05410059847315234,0.0524662929944514,0.05089425957416005,0.04938219937498337,0.04792781248111265,0.04652881858941749,0.045182973206683644,0.04388808011438918,0.04264200075000473,0.0414426610550524,0.040288056253751516,0.03917625395177378,0.03810539588074099,0.037073698559629616,0.03607945309820147,0.03512102432847377,0.0341968494175227,0.03330543608736815,0.03244536054473274,0.031615265204222164,0.030813856272634176,0.030039901248776115,0.029292226382293646,0.028569714125959333,0.027871300608408024,0.027195973148273593,0.026542767825606852,0.02591076712243153,0.025299097640986597,0.024706927905481377,0.02413346625111986,0.023577958802350227,0.0230396875409817,0.022517968463722747,0.022012149827874288,0.021521610483247078,0.021045758287948437,0.0205840286052857,0.020135882878824812,0.019700807282482836,0.01927831144242158,0.01886792722751711,0.018469207605145734,0.018081725559090375,0.017705073066431518,0.01733886013037508,0.016982713866048122,0.016636277636441064,0.01629921023574452,0.015971185117477877,0.015651889664919302,0.015341024501449215,0.015038302838573311,0.014743449859470542,0.014456202136047277,0.014176307077584561,0.013903522409157529,0.013637615678132306,0.01337836378711845,0.013125552551860254,0.012878976282634775,0.012638437387811844,0.012403745998296523,0.012174719611673742,0.011951182754920018,0.011732966664629455,0.011519908983762197,0.011311853473971697,0.011108649742643247,0.010910152983807904,0.010716223732158208,0.010526727629432985,0.01034153520248752,0.010160521652393386,0.009983566653971356,0.009810554165176342,0.009641372245799047,0.009475912884979912,0.009314071837051194,0.00915574846526796,0.00900084559299813,0.00884926936197598,0.008700929097245973,0.00855573717843786,0.008413608917047911,0.008274462439406981,0.008138218575041135,0.00800480075014603,0.007874134885913363,0.007746149301455863,0.007620774621103804,0.007497943685846262,0.0073775914687100805,0.007259654993880899,0.0071440732593745625,0.007030787163089973,0.006919739432071158,0.006810874554823574,0.006704138716534819,0.006599479737060788,0.006496847011539283,0.006396191453510945,0.006297465440423513,0.006200622761407623,0.0061056185672183055,0.006012409322236529,0.005920952758439814,0.005831207831246501,0.005743134677148548,0.005656694573051668,0.005571849897241407,0.005488564091905863,0.005406801627141139,0.0053265279663743115,0.0052477095331400075,0.005170313679151694,0.005094308653607076,0.005019663573677651,0.0049463483961273945,0.004874333890012294,0.004803591610414981,0.0047340938731670335,0.0046658137305202385,0.0045987249477235665,0.004532801980468613,0.004468019953166455,0.004404354638022012,0.004341782434869969,0.0042802803517441755,0.004219825986147518,0.004160397506994374,0.004101973637198794,0.004044533636879854,0.0039880572871623604,0.003932524874546289,0.0038779171758233154,0.0038242154435190437,0.0037714013918378917,0.003719457183093873,0.0036683654146057528,0.003618109106039424,0.0035686716871797634,0.0035200369861161547,0.0034721892178236737,0.003425112973127483,0.003378793208033761,0.0033332152334139557,0.003288364705029536,0.0032442276138826653,0.0032007902768829686,0.0031580393278168536,0.003115961708608667,0.0030745446608636037,0.0030337757176801474,0.0029936426957246584,0.002954133687556648,0.002915237054196474,0.0028769414179264335,0.0028392356553175466,0.0028021088904723306,0.002765550488477995,0.0027295500490610945,0.00269409740043694,0.0026591825933475572,0.0026247958952800416,0.0025909277848609816,0.002557568946419458,0.002524710264713359,0.0024923428198131902,0.002460457882138555,0.002429046907640795,0.0023981015331285805,0.0023676135717303226,0.00233757500848925,0.002307977996087135,0.002278814850691108,0.0022500780479212086,0.002221760218933346,0.00219385414661439,0.0021663527618860437,0.0021392491401128256,0.0021125364976122877,0.0020862081882630644,0.0020602577002080103,0.002034678652649283,0.002009464792732811,0.0019846099925182764,0.0019601082460333264,0.0019359536664082591,0.0019121404830890513,0.0018886630391266156,0.0018655157885388456,0.001842693293744625,0.0018201902230664787,0.0017980013483002457,0.001776121542349505,0.0017545457769232164,0.0017332691202936938,0.001712286735114325,0.0016915938762943046,0.0016711858889290093,0.001651058206284587,0.0016312063478343135,0.0016116259173463263,0.0015923126010203524,0.001573262165672243,0.0015544704569652424,0.0015359333976857762,0.0015176469860635228,0.0014996072941337133,0.001481810466140742,0.0014642527169818021,0.0014469303306896832,0.0014298396589528775,0.001412977119672924,0.0013963391955571854,0.0013799224327463032,0.0013637234394756016,0.0013477388847687659,0.0013319654971638414,0.0013164000634699382,0.0013010394275541014,0.0012858804891573558,0.0012709202027394745,0.001256155576350947,0.0012415836705323212,0.0012272015972394944,0.0012130065187944883,0.0011989956468611968,0.0011851662414448726,0.0011715156099154278,0.0011580411060534161,0.0011447401291182296,0.0011316101229381047,0.0011186485750208249,0.0011058530156853087,0.0010932210172129606,0.001080750193018505,0.0010684381968397252,0.0010562827219457991,0.0010442815003632634,0.0010324323021198057,0.001020732934504937,0.0010091812413472623,0.0009977751023081004,0.00098651243219053,0.0009753911802641557,0.0009644093296046443,0.0009535648964478942,0.0009428559295585671,0.0009322805096121893,0.0009218367485910788,0.0009115227891933059,0.0009013368042545448,0.0008912769961824303,0.0008813415964032841,0.0008715288648204855,0.0008618370892847628,0.0008522645850756849,0.0008428096943942324,0.0008334707858662938,0.0008242462540564482,0.0008151345189922951,0.0008061340256986827,0.0007972432437417636,0.12314212916372548,0.1230037569450268,0.12259089336951624,0.12191019919459975,0.12097245566362648,0.1197921122708465,0.11838670539832186,0.11677619143390786,0.11498224053380023,0.1130275348860828,0.11093510912847086,0.10872776184482955,0.10642755727623746,0.10405542683111227,0.1016308716312359,0.09917176075634311,0.09669421525232239,0.0942125652596952,0.09173936652534885,0.08928546271541035,0.08686008096970649,0.08447094968299781,0.08212442928497637,0.07982564860947028,0.07758042476453038,0.07542202585296935,0.07335730911023851,0.0713805987233391,0.0694866587757838,0.06766910812148921,0.06590095217025829,0.06417483249722841,0.062491784635038336,0.06085246271053651,0.05925719285999583,0.0577060214519617,0.05619875826378328,0.054735014856335355,0.05331423845481656,0.05193574167998897,0.05059872848992769,0.04930231669319705,0.04804555738448378,0.04682745163655186,0.04564696476088045,0.044503038425060884,0.04339460088994342,0.042320575604365536,0.04127988837089994,0.040271473273060784,0.039294277532783146,0.03834726544724574,0.037429421536050965,0.03653975301350262,0.035677291686091066,0.034841095362369026,0.0340302488507904,0.033243864610968,0.032481083114846675,0.031741072966425546,0.031023030821879405,0.0303261811458802,0.029649775834794292,0.02899309373290008,0.028355440063858085,0.02773614579634416,0.027134566959792952,0.0265500839237243,0.02598210065196491,0.025430043941228588,0.02489336265190701,0.024371526937617616,0.023864027478835006,0.023370374724980596,0.022890098148494856,0.02242274551367897,0.021967882162526743,0.02152509031921557,0.021093968414513272,0.02067413043099013,0.020265205269628144,0.019866836138140772,0.019478679961153166,0.019100406812173062,0.01873169936716807,0.01837225237945106,0.01802177217546055,0.01767997617098968,0.01734659240732474,0.017021359106730815,0.01670402424669682,0.016394345152305874,0.016092088106122497,0.015797027974946982,0.015508947852807944,0.015227638719559598,0.01495289911446585,0.01468453482414737,0.014422358584308051,0.014166189794645387,0.01391585424638091,0.013671183861864953,0.013432016445711733,0.013198195446967343,0.012969569731803826,0.012745993366268978,0.012527325408633558,0.012313429710900544,0.012104174729048454,0.011899433341617402,0.011699082676245056,0.01150300394378777,0.011311082279677281,0.011123206592170793,0.010939269417184065,0.010759166779395004,0.010582798059328354,0.010410065866147658,0.010240875915881891,0.010075136914844863,0.009912760448000308,0.009753660872047421,0.009597755213007769,0.009444963068109437,0.009295206511765419,0.009148410005465991,0.00900450031140129,0.008863406409645485,0.008725059418743221,0.008589392519538188,0.008456340882105095,0.008325841595639998,0.008197833601178078,0.008072257627012254,0.00794905612669408,0.007828173219497012,0.007709554633240406,0.007593147649364695,0.007478901050160836,0.00736676506806124,0.0072566913368977155,0.007148632845047449,0.007042543890380306,0.006938380036932017,0.006836098073230217,0.0067356559721987045,0.0066370128525784135,0.006540128941796417,0.006444965540224097,0.006351484986764909,0.006259650625718201,0.006169426774861851,0.006080778694708301,0.005993672558881876,0.005908075425572269,0.005823955210021641,0.005741280657999284,0.005660021320228992,0.005580147527726404,0.005501630368011933,0.005424441662163018,0.005348553942673963,0.005273940432087976,0.005200575022375017,0.00512843225502308,0.00505748730181596,0.004987715946271621,0.004919094565712649,0.004851600113948186,0.004785210104540996,0.00471990259463796,0.0046556561693437476,0.0045924499266139715,0.00453026346265192,0.0044690768577872655,0.004408870662819632,0.004349625885809324,0.004291323979299693,0.004233946827952586,0.004177476736584851,0.004121896418589035,0.004067188984724693,0.004013337932267843,0.003960327134503122,0.003908140830549536,0.003856763615505316,0.003806180430901326,0.0037563765554528635,0.003707337596096935,0.003659049479307879,0.0036114984426794507,0.0035646710267647516,0.003518554067164979,0.003473134686858859,0.0034284002887627393,0.0033843385485158354,0.003340937407481056,0.003298185065954658,0.0032560699765783042,0.0032145808379447265,0.0031737065883930254,0.003133436399985354,0.0030937596726596565,0.003054666028552351,0.003016145306486077,0.0029781875566152814,0.0029407830352267093,0.0029039221996880835,0.0028675957035407453,0.0028317943917319254,0.002796509295980785,0.002761731630275831,0.0027274527864980286,0.002693664330166032,0.0026603579963002154,0.002627525685400239,0.0025951594595344787,0.002563251538536392,0.0025317942963050334,0.0025007802572062435,0.002470202092572006,0.0024400526172935148,0.002410324786506866,0.0023810116923672136,0.0023521065609090914,0.0023236027489907216,0.0022954937413185443,0.00226777314755104,0.0022404346994784547,0.0022134722482764382,0.0021868797618313225,0.002160651322135366,0.0021347811227486945,0.0021092634663275405,0.0020840927622156453,0.0020592635240973727,0.0020347703677111185,0.002010608008620079,0.001986771260040303,0.0019632550307231125,0.0019400543228908843,0.001917164230224801,0.0018945799359022508,0.0018722967106836348,0.0018503099110463493,0.0018286149773648437,0.0018072074321354634,0.0017860828782450574,0.001765236997281376,0.0017446655478851165,0.0017243643641416987,0.0017043293540119173,0.0016845564978006879,0.0016650418466619575,0.0016457815211400027,0.0016267717097451513,0.0016080086675634639,0.0015894887148992496,0.0015712082359498598,0.001553163677511158,0.0015353515477138215,0.00151776841478889,0.0015004109058620937,0.0014832757057763356,0.001466359555940967,0.0014496592532080132,0.0014331716487740278,0.0014168936471070173,0.0014008222048981385,0.001384954330036735,0.0013692870806090844,0.001353817563919525,0.0013385429355336905,0.0013234603983431406,0.0013085672016511641,0.0012938606402785396,0.0012793380536895856,0.0012649968251373692,0.001250834380827807,0.0012368481891023534,0.0012230357596382537,0.001209394642666668,0.0011959224282076606,0.0011826167453218375,0.0011694752613783683,0.0011564956813384592,0.001143675747054663,0.0011310132365849937,0.0011185059635218208,0.0011061517763350079,0.0010939485577292371,0.0010818942240145958,0.0010699867244908338,0.0010582240408444367,0.0010466041865583625,0.0010351252063343194,0.0010237851755268118,0.0010125821995892658,0.0010015144135315337,0.0009905799813886512,0.1353134872525196,0.13516292232347002,0.13471368527534663,0.13397304121853407,0.1329527474554394,0.13166855739664501,0.1301395832590285,0.12838756567097942,0.12643610103823766,0.12430987486640895,0.12203394228511115,0.1196330873092473,0.11713128153834347,0.11455125247111944,0.11191416245934684,0.10923939215860191,0.10654441736165922,0.10384476521218264,0.101154034677005,0.09848396639462317,0.09584454819184653,0.09324414429023516,0.09068963820244436,0.08818658131817753,0.08574367302259803,0.0833986856143567,0.08115436607913762,0.07900465607211155,0.07694396475767497,0.07496712515131111,0.07305689706343602,0.07119010422761135,0.06936763952239319,0.06759042550456162,0.06585901645121738,0.06417365034679372,0.0625342956972081,0.06094069336426249,0.05939239369452389,0.0578887892673352,0.056429143613280386,0.055012616263404285,0.05363828448566671,0.052305162052144964,0.05101221536180899,0.049758377221146344,0.048542558560658,0.04736365834038156,0.04622057187293377,0.045112197769077794,0.04403744368843442,0.042995231057327526,0.041984498896746304,0.04100420688618049,0.040053337773458965,0.0391308992268808,0.038235925213414214,0.037367476975793686,0.03652464367161131,0.03570654272891714,0.03491231996541423,0.03414114951170419,0.03339223357335564,0.03266480206159119,0.03195811211802023,0.03127144755515503,0.030604118231144225,0.0299554593743702,0.029324830871139056,0.028711616527603775,0.028115223315231138,0.027535080607647856,0.02697063941530324,0.026421371623303866,0.02588676923678683,0.025366343637359644,0.024859624853468633,0.024366160846915678,0.023885516817266823,0.023417274525450834,0.02296103163750152,0.02251640108906341,0.02208301047107634,0.021660501436792372,0.021248529130136456,0.020846761635273988,0.020454879447110826,0.020072574962397546,0.019699551990992662,0.019335525286807733,0.018980220097907702,0.018633371735190325,0.01829472515907749,0.01796403458360338,0.017641063097295132,0.01732558230023232,0.017017371956682632,0.016716219662691788,0.01642192052805634,0.016134276872077368,0.015853097932531618,0.015578199587308746,0.015309404088162528,0.015046539806069481,0.014789440987678617,0.014537947522368684,0.014291904719442881,0.014051163095012536,0.013815578168125984,0.013585010265740582,0.01335932433612731,0.013138389770329682,0.012922080231314186,0.012710273490452641,0.012502851271014751,0.012299699098341414,0.012100706156397389,0.011905765150414352,0.011714772175338369,0.011527626589827703,0.011344230895539792,0.011164490621470095,0.010988314213111406,0.010815612926218816,0.010646300724962955,0.01048029418428393,0.010317512396248625,0.010157876880233408,0.010001311496763242,0.00984774236483613,0.009697097782586695,0.009549308151133081,0.009404305901468893,0.009262025424264497,0.00912240300245119,0.008985376746461183,0.008850886532013406,0.008718873940329445,0.008589282200674966,0.008462056135128071,0.008337142105472815,0.008214487962133718,0.00809404299505849,0.0079757578864673,0.007859584665391394,0.00774547666391968,0.007633388475088298,0.007523275912339004,0.007415095970482699,0.007308806788104622,0.007204367611353608,0.007101738759053162,0.007000881589086154,0.00690175846599669,0.0068043327297605235,0.006708568665678202,0.006614431475341438,0.006521887248634523,0.006430902936725678,0.0063414463260097744,0.006253486012966058,0.006166991379890656,0.0060819325714746,0.005998280472190306,0.005916006684456178,0.005835083507549143,0.005755483917236843,0.005677181546098611,0.005600150664513453,0.005524366162285713,0.005449803530885689,0.005376438846282613,0.005304248752344631,0.00523321044478855,0.005163301655655828,0.005094500638296158,0.005026786152839655,0.004960137452140544,0.004894534268172397,0.004829956798861793,0.0047663856953420345,0.004703802049612128,0.004642187382587704,0.004581523632526787,0.004521793143820594,0.004462978656133816,0.004405063293882812,0.004348030556039503,0.004291864306250603,0.004236548763258332,0.004182068491615784,0.004128408392683761,0.004075553695900615,0.004023489950316031,0.003972203016377713,0.003921679057965101,0.003871904534659652,0.0038228661942441887,0.0037745510654245214,0.00372694645076352,0.003680039919823533,0.003633819302507869,0.0035882726825957967,0.003543388391464256,0.003499155001990836,0.0034555613226303753,0.003412596391661798,0.0033702494715979006,0.0033285100437533814,0.003287367802966644,0.0032468126524685457,0.003206834698895825,0.003167424247442876,0.0031285717971478947,0.003090268036309857,0.003052503838030468,0.003015270255879357,0.002978558519677058,0.0029423600313927033,0.0029066663611527262,0.0028714692433576615,0.002836760572902321,0.0028025324014980552,0.002768776934092547,0.0027354865253846933,0.0027026536764320824,0.0026702710313469586,0.0026383313740797796,0.0026068276252864103,0.0025757528392770066,0.0025451002010439495,0.0025148630233670405,0.002485034743992347,0.0024556089228842766,0.0024265792395474555,0.0023979394904167783,0.002369683586314069,0.002341805549968175,0.00231429951359834,0.0022871597165577758,0.002260380503036109,0.0022339563198194422,0.0022078817141052147,0.0021821513313718443,0.0021567599133004442,0.00213170229574764,0.002106973406767859,0.0020825682646841972,0.0020584819762053887,0.0020347097345890393,0.0020112468178488025,0.001988088587004613,0.00196523048437514,0.001942668031910313,0.0019203968295641524,0.0018984125537057984,0.0018767109555681428,0.0018552878597328773,0.0018341391626513503,0.0018132608311994195,0.0017926489012665353,0.0017722994763772438,0.0017522087263446159,0.0017323728859549678,0.001712788253682256,0.0016934511904324408,0.001674358118316247,0.0016555055194498428,0.0016368899347829363,0.0016185079629528632,0.0016003562591649946,0.0015824315340979775,0.0015647305528335921,0.0015472501338103517,0.0015299871478006615,0.0015129385169101186,0.0014961012135994234,0.0014794722597275601,0.0014630487256159998,0.0014468277291335872,0.0014308064348009355,0.001414982052914733,0.0013993518386908126,0.0013839130914257809,0.001368663153676639,0.0013535994104582419,0.001338719288457517,0.0013240202552648437,0.0013094998186216102,0.0012951555256836807,0.0012809849623006773,0.001266985752310033,0.0012531555568462709,0.0012394920736645576,0.0012259930364784165,0.0012126562143113635,0.00119947941086169,0.001186460463880721,0.0011735972445637494,0.0011608876569535272,0.14873588174621985,0.14857184180761404,0.14808241013313583,0.14727553198584806,0.14616406243731045,0.14476522000216016,0.14309988530974485,0.14119179819610764,0.13906670950671748,0.13675154080729757,0.1342735973507377,0.13165986877837402,0.12893643997413176,0.1261280228386728,0.12325760967508018,0.12034624104393121,0.11741287556307523,0.114474346054614,0.11154538531355955,0.10863870512652604,0.10576511353066598,0.10293365725398466,0.10015177848144449,0.09742547730023454,0.09476893897078244,0.09222242748887914,0.08978400813377356,0.08744722011736245,0.08520609901046494,0.08305513053473941,0.08098686286154856,0.07897068104836344,0.07699973943374283,0.07507528629252576,0.07319815643801911,0.07136882710785261,0.06958746861162553,0.06785398986328203,0.06616807902328603,0.06452923954342535,0.06293682194713056,0.06139005169784078,0.059888053511901226,0.058429872465356046,0.05701449222937969,0.05564085074918258,0.05430785365865893,0.05301438569895958,0.05175932038475394,0.05054152813821726,0.04935988308785255,0.04821326870791735,0.04710058245431977,0.04602073953470649,0.044972675933857294,0.04395535080073617,0.04296774829008295,0.04200887893961824,0.04107778065337377,0.04017351935230562,0.039295189345216766,0.03844191346573883,0.037612843014847415,0.036807157542888665,0.036024064500229824,0.035262798781553105,0.03452262218509958,0.03380282280505563,0.03310271437255371,0.03242163555838581,0.0317589492484727,0.03111404180144271,0.03048632229607931,0.029875221775155714,0.02928019249104451,0.02870070715750909,0.028136258211319938,0.027586357086585595,0.027050533504128,0.026528334777711708,0.026019325138523442,0.025523085078899665,0.025039210716051266,0.02456731317622674,0.024107017999563322,0.023657964565707488,0.02321980554010336,0.022792206340778918,0.02237484462531229,0.021967409797612435,0.021569602534077713,0.021181134328634388,0.020801727056151034,0.020431112553665493,0.02006903221886203,0.019715236625217576,0.019369485153240443,0.01903154563719944,0.018701194026783722,0.018378214063102388,0.018062396968464102,0.017753541149386695,0.017451451912283023,0.017155941191313265,0.016866827287880082,0.01658393462127677,0.01630709349000691,0.01603613984331929,0.01577091506250106,0.015511265751515459,0.015257043536562442,0.015008104874168806,0.014764310867433348,0.014525527090053782,0.01429162341779967,0.014062473867089077,0.013837956440354285,0.013617952977893538,0.013402349015910461,0.013191033650473843,0.012983899407124608,0.01278084211587898,0.01258176079138596,0.012386557518011184,0.012195137339618979,0.012007408153853868,0.0118232806107128,0.011642668015220839,0.01146548623402931,0.011291653605757282,0.011121090854919696,0.010953721009276947,0.010789469320459644,0.01062826318772319,0.010470032084698749,0.01031470748900362,0.010162222814595716,0.010012513346747033,0.00986551617952541,0.009721170155679092,0.009579415808815012,0.00944019530778128,0.009303452403154186,0.009169132375742692,0.009037181987027104,0.008907549431445573,0.008780184290457864,0.008655037488307244,0.008532061249412554,0.008411209057321277,0.0082924356151627,0.008175696807533581,0.008060949663765115,0.007948152322509705,0.00783726399759609,0.007728244945102657,0.007621056431596058,0.0075156607034941435,0.007412020957504098,0.007310101312094506,0.007209866779962203,0.007111283241450133,0.00701431741888499,0.006918936851794406,0.006825109872970974,0.006732805585350441,0.0066419938396735986,0.006552645212898382,0.006464730987338614,0.006378223130497738,0.0062930942755729125,0.006209317702604886,0.006126867320246382,0.006045717648130187,0.005965843799811438,0.005887221466263908,0.005809826899909788,0.005733636899164372,0.005658628793473731,0.0055847804288316275,0.005512070153755286,0.005440476805704251,0.005369979697927597,0.005300558606721156,0.005232193759083994,0.005164865820757197,0.0050985558846324015,0.005033245459516948,0.004968916459243962,0.004905551192112959,0.004843132350652676,0.004781643001692769,0.0047210665767340836,0.00466138686260875,0.004602587992416971,0.004544654436735063,0.004487570995082589,0.0044313227876410476,0.00437589524721613,0.004321274111433236,0.00426744541516162,0.004214395483157034,0.004162110922916889,0.004110578617740313,0.004059785719987543,0.00400971964452975,0.003960368062386143,0.003911718894540101,0.0038637603059291353,0.003816480699604062,0.0037698687110496298,0.0037239132026643893,0.0036786032583925555,0.003633928178503936,0.0035898774745176444,0.003546440864263443,0.0035036082670787533,0.003461369799135289,0.0034197157688920935,0.003378636672670799,0.0033381231903499313,0.0032981661811731624,0.0032587566796700345,0.003219885891684218,0.003181545190506495,0.003143726113109983,0.0031064203564827525,0.003069619774057201,0.0030333163722316226,0.002997502306981935,0.0029621698805605873,0.002927311538280781,0.0028929198653819678,0.0028589875839762136,0.0028255075500716307,0.00279247275067107,0.0027598763009444327,0.0027277114414710614,0.002695971535551986,0.0026646500665887672,0.002633740635527384,0.0026032369583658187,0.0025731328637222063,0.0025434222904635825,0.002514099285392242,0.002485158000988589,0.0024565926932087396,0.002428397719335863,0.002400567535882552,0.002373096696544413,0.002345979850202271,0.0023192117389720774,0.0022927871963015507,0.0022667011451112007,0.0022409485959800236,0.0022155246453734686,0.0021904244739131174,0.0021656433446866743,0.002141176601597719,0.002117019667753043,0.0020931680438880168,0.0020696173068278905,0.0020463631079844615,0.0020234011718875296,0.0020007272947491564,0.001978337343061305,0.0019562272522249003,0.001934393025209888,0.0019128307312457752,0.0018915365045409787,0.0018705065430313717,0.0018497371071565453,0.0018292245186631924,0.001808965159435075,0.0017889554703490265,0.0017691919501556237,0.0017496711543849527,0.0017303896942760487,0.0017113442357296592,0.0016925314982840368,0.001673948254112419,0.0016555913270426483,0.0016374575915976415,0.0016195439720565318,0.001601847441535817,0.0015843650210903646,0.0015670937788330335,0.0015500308290734527,0.0015331733314747492,0.0015165184902280432,0.0015000635532445023,0.0014838058113638712,0.0014677425975799733,0.0014518712862820957,0.0014361892925120992,0.0014206940712371873,0.0014053831166371217,0.0013902539614066582,0.0013753041760719545,0.001360531368321078,0.16355219898334153,0.16337321142446926,0.16283919797857282,0.16195887436569883,0.16074633826695833,0.15922046480598734,0.15740413132423178,0.1553233310160518,0.1530062380769587,0.15048228337560549,0.14778129072144283,0.14493271154129772,0.14196498226936666,0.13890501578503892,0.13577782709290145,0.13260628485026224,0.12941097451458938,0.1262101556243274,0.12301979461507136,0.11985365508143765,0.11672342899082429,0.11363889457268835,0.11060808907612678,0.10763748704118599,0.10475030711075954,0.1019850590786755,0.09933588383405272,0.0967958890820127,0.09435870985889351,0.09201845957792629,0.0897696863767347,0.08759481830581,0.0854665113054933,0.08338553571269876,0.08135306845994009,0.07936988250117158,0.0774364014256419,0.07555274888500574,0.07371879299027617,0.07193418592373503,0.07019839906768108,0.06851075398477909,0.06687044959902344,0.06527658592688597,0.06372818469923511,0.06222420719872449,0.06076356961738615,0.05934515621669602,0.05796783054878691,0.05663044497397921,0.05533184868666556,0.05407089443972524,0.05284644413704762,0.05165737344473829,0.05050257555406373,0.049380964213499835,0.04829147613282786,0.047233072849513426,0.04620474213618322,0.045205499017813594,0.04423438645839616,0.043290475768828586,0.04237286678088482,0.041480687826029865,0.040613095552437424,0.03976927460902418,0.03894843722113628,0.03814982267905797,0.03737269675741438,0.03661635108089176,0.03588010244933932,0.035163292133405535,0.034465285150044524,0.03378546952578674,0.033123255554393195,0.03247807505434324,0.03184938063075728,0.031236644945440286,0.030639359998102446,0.03005703642118575,0.02948920279023538,0.028935404951288296,0.028395205366444205,0.027868182478407413,0.027353930094569368,0.026852056790976176,0.026362185336309737,0.025883952135914493,0.025417006695722534,0.0249610111058533,0.024515639543582882,0.02408057779528208,0.02365552279691723,0.023240182192617226,0.022834273910811248,0.022437525757405548,0.022049675025464757,0.021670468120828575,0.02129966020312995,0.02093701484164688,0.020582303685437946,0.02023530614722667,0.019895809100482578,0.019563606589196474,0.019238499549823134,0.018920295544899685,0.018608808507856043,0.018303858498551134,0.018005271469073342,0.017712879039382005,0.017426518282356942,0.01714603151785493,0.01687126611538565,0.016602074305021412,0.016338312996196244,0.01607984360403727,0.01582653188290152,0.015578247766805468,0.015334865216432857,0.015096262072444792,0.014862319914804382,0.01463292392785501,0.014407962770896364,0.014187328454021524,0.013970916218972698,0.013758624424807827,0.013550354438158814,0.013346010527881244,0.013145499763907855,0.012948731920113057,0.012755619381025162,0.012566077052210512,0.012380022274173926,0.012197374739622022,0.012018056413947723,0.011841991458789282,0.01166910615854276,0.01149932884969376,0.011332589852850723,0.011168821407367456,0.011007957608438604,0.0108499343465722,0.010694689249333408,0.010542161625265611,0.010392292409901104,0.010245024113766949,0.010100300772312934,0.009958067897674887,0.009818272432201255,0.00968086270366936,0.009545788382124708,0.009413000438272017,0.009282451103362293,0.009154093830510144,0.009027883257385839,0.008903775170228676,0.00878172646912394,0.008661695134500066,0.008543640194792904,0.008427521695232755,0.008313300667710093,0.008200939101679105,0.00809039991605461,0.007981646932069784,0.007874644847053072,0.007769359209090678,0.007665756392542044,0.007563803574371573,0.007463468711271747,0.007364720517542658,0.007267528443702012,0.007171862655798766,0.007077694015400532,0.006984994060235087,0.006893734985457709,0.006803889625522963,0.006715431436638401,0.006628334479780066,0.006542573404246289,0.006458123431734517,0.006374960340919282,0.006293060452514227,0.006212400614802057,0.006132958189612545,0.006054711038736961,0.005977637510760481,0.005901716428298795,0.0058269270756259005,0.0057532491866763525,0.0056806629334129645,0.005609148914544702,0.005538688144583314,0.005469262043227216,0.00540085242506235,0.005333441489566616,0.005267011811411081,0.00520154633104552,0.005137028345559353,0.005073441499809935,0.005010769777806454,0.004948997494344576,0.004888109286881046,0.004828090107641096,0.004768925215951059,0.004710600170789642,0.004653100823548285,0.004596413310997196,0.004540524048448001,0.0044854197231074585,0.00443108728761692,0.004377513953769372,0.004324687186401414,0.004272594697452462,0.0042212244401866085,0.004170564603572744,0.00412060360681598,0.004071330094038384,0.004022732929102372,0.003974801190573143,0.003927524166815682,0.003880891351222926,0.0038348924375692563,0.0037895173154879466,0.0037447560660670786,0.003700598957560786,0.0036570364412132367,0.0036140591471898464,0.0035716578806152936,0.003529823617713043,0.0034885475020443573,0.0034478208408434655,0.003407635101446839,0.003367981907812069,0.0033288530371260827,0.0032902404164982875,0.003252136119736954,0.0032145323642067047,0.0031774215077634664,0.0031407960457665854,0.003104648608164455,0.00306897195665202,0.0030337589818986662,0.002999002700843005,0.0029646962540546924,0.0029308329031598503,0.002897406028329029,0.002864409125825655,0.002831835805613959,0.0027996797890232697,0.00276793490646906,0.002736595095227748,0.002705654397264227,0.0026751069571112804,0.002644947019797915,0.0026151689288273277,0.002585767124201588,0.0025567361404925364,0.002528070604957364,0.0024997652356981903,0.002471814839863312,0.0024442143118905964,0.0024169586317906813,0.0023900428634694043,0.0023634621530888053,0.002337211727464433,0.002311286892499778,0.002285683031655435,0.0022603956044527644,0.0022354201450113203,0.0022107522606181975,0.0021863876303299065,0.0021623220036048225,0.0021385511989659893,0.0021150711026931856,0.002091877667544096,0.002068966911502759,0.0020463349165559543,0.002023977827495829,0.0020018918507485263,0.001980073253228341,0.001958518361215931,0.0019372235592612639,0.0019161852891096541,0.0018954000486507343,0.0018748643908900304,0.0018545749229417876,0.0018345283050435804,0.0018147212495914554,0.001795150520195314,0.0017758129307540703,0.0017567053445503248,0.0017378246733633575,0.0017191678766010476,0.001700731960449437,0.0016825139770398896,0.0016645110236335546,0.0016467202418220589,0.0016291388167450392,0.0016117639763233366,0.0015945929905078356,0.17992520498324274,0.17972956592470507,0.17914589601793732,0.17818379010603322,0.17685876256155444,0.17519157487271536,0.17320737434188635,0.17093471081265796,0.16840450160244097,0.165649010473465,0.16270089619708822,0.15959237232701587,0.15635450455541333,0.15301665749905186,0.14960609038558928,0.14614769166127448,0.14266383621564444,0.1391743454787807,0.13569652958807635,0.13224529153855616,0.12883327512035486,0.12547104098875725,0.12216725799814762,0.11892889966950919,0.11579333087359531,0.11279040326278693,0.10991214821430086,0.10715120881828089,0.10450078894803472,0.10195460132493808,0.09950682119873148,0.09715140609076295,0.09485719834482802,0.09261063365565546,0.0904133038550879,0.08826634489493605,0.0861704954685576,0.08412615046675491,0.082133409331742,0.08019211948618352,0.07830191509162902,0.07646225144007408,0.07467243530971991,0.0729316516267334,0.07123898677346036,0.06959344887333041,0.06799398536664426,0.06643949817171038,0.06492885670380841,0.06346090900181872,0.06203449118951579,0.06064843547648894,0.059301576882595755,0.05799275885017186,0.056720837889901475,0.05548468738967118,0.05428320070040561,0.05311529359924581,0.0519799062181261,0.050876004514759016,0.049802581353360305,0.04875865725369377,0.04774328085941287,0.04675552916994796,0.045794507574202295,0.044859349719230196,0.0439492172424212,0.04306329939181294,0.04220081255566428,0.04136099971942159,0.040543129865546944,0.03974649732947464,0.03897042112290953,0.03821424423401233,0.03747733291253768,0.03675907594666981,0.03605888393726974,0.035376188574221736,0.03471044191879756,0.03406111569522957,0.033427700594106505,0.032809705589642205,0.032206657272495436,0.03161809919937912,0.031043591260416167,0.03048270906492353,0.02993504334605088,0.029400199384561645,0.02887779645182889,0.02836746727201538,0.027868857503297637,0.027381625237874466,0.0269054405204755,0.026439984884976973,0.025984950908717677,0.02554004178405557,0.02510497090669596,0.024679461480269144,0.0242632461366727,0.023856066571637302,0.023457673195001662,0.0230678247951778,0.022686288217272695,0.022312838054377834,0.021947256351504404,0.021589332321680577,0.021238862073725575,0.020895648351238905,0.020559500282333873,0.020230233139693993,0.01990766811051013,0.019591632075890243,0.019281957399348845,0.01897848172397783,0.018681047777947594,0.01838950318797025,0.01810370030038801,0.01782349600956294,0.01754875159324195,0.017279332554612538,0.017015108470747345,0.016755952847167698,0.016501742978258117,0.016252359813285166,0.01600768782776515,0.015767614899966677,0.01553203219231249,0.015300834037475569,0.015073917828968657,0.014851183916025187,0.014632535502599499,0.014417878550301005,0.01420712168509679,0.014000176107621725,0.013796955506944951,0.013597375977638024,0.013401355940015992,0.0132088160634089,0.013019679192338977,0.012833870275483711,0.0126513162973014,0.012471946212216974,0.012295690881254737,0.012122483011019413,0.01195225709493008,0.011784949356607417,0.011620497695335625,0.011458841633506566,0.011299922265968997,0.011143682211203711,0.010990065564254088,0.010839017851334627,0.010690485986058705,0.0105444182272141,0.010400764138027768,0.010259474546861474,0.010120501509276793,0.009983798271423016,0.009849319234690403,0.009717019921581724,0.009586856942753628,0.009458787965185397,0.009332771681425522,0.009208767779882244,0.009086736916112769,0.008966640685074759,0.00884844159430527,0.008732103037987297,0.00861758927187698,0.00850486538905423,0.00839389729646803,0.00828465169224794,0.008177096043749254,0.008071198566310792,0.007966928202694344,0.007864254603183213,0.007763148106314693,0.007663579720225723,0.007565521104585018,0.007468944553096359,0.007373822976548454,0.00728012988639329,0.007187839378835311,0.00709692611940984,0.007007365328038398,0.0069191327645405296,0.006832204714587387,0.006746557976082932,0.006662169845954559,0.00657901810734343,0.0064970810171776135,0.0064163372941161674,0.006336766106851038,0.0062583470627562855,0.006181060196869073,0.006104885961196314,0.006029805214332174,0.005955799211377592,0.005882849594152721,0.005810938381689335,0.005740047960998275,0.00567016107809987,0.005601260829309766,0.00553333065277165,0.005466354320229987,0.005400315929032067,0.0053351998943558816,0.00527099094165374,0.005207674099305743,0.005145234691477195,0.005083658331171008,0.005022930913472445,0.004963038608977429,0.0049039678573996465,0.004845705361351779,0.004788238080292804,0.004731553224639705,0.004675638250035947,0.004620480851772911,0.004566068959359485,0.0045123907312358755,0.004459434549625311,0.004407189015522389,0.00435564294381163,0.004304785358513187,0.004254605488152653,0.004205092761249007,0.004156236801920185,0.00410802742560062,0.0040604546348682645,0.00401350861537781,0.003967179731897433,0.0039214585244445824,0.003876335704520062,0.003831802151436007,0.0037878489087355147,0.0037444671807019426,0.0037016483289534943,0.0036593838691231753,0.0036176654676197814,0.0035764849384682684,0.003535834240227907,0.0034957054729842485,0.0034560908754151993,0.0034169828219273264,0.003378373819861311,0.0033402565067642363,0.0033026236477275883,0.003265468132787659,0.0032287829743885945,0.0031925613049049767,0.003156796374222703,0.0031214815473772336,0.00308661030224601,0.0030521762272957497,0.0030181730193815114,0.0029845944815968446,0.002951434521173432,0.002918687147429487,0.0028863464697642454,0.002854406695699159,0.002822862128963203,0.0027917071676216367,0.0027609363022474557,0.002730544114133174,0.0027005252735436748,0.0026708745380076364,0.002641586750647114,0.002612656838544677,0.0025840798111458414,0.002555850758697664,0.00252796485072123,0.0025004173345177737,0.0024732035337073762,0.002446318846799866,0.0024197587457960258,0.0023935187748198813,0.002367594548780019,0.00234198175205987,0.00231667613723628,0.0022916735238248742,0.002266969797052813,0.0022425609066573,0.0022184428657094743,0.0021946117494635506,0.0021710636942294374,0.0021477948962697227,0.002124801610719348,0.002102080150527929,0.0020796268854239523,0.0020574382409007438,0.0020355106972228362,0.0020138407884533055,0.0019924251015008745,0.0019712602751864663,0.0019503429993291375,0.0019296700138499731,0.0019092381078948172,0.0018890441189744142,0.0018690849321219439,0.19804074616941716,0.19782646904037415,0.19718722790310703,0.19613362881314342,0.1946828141637759,0.19285771017713407,0.19068606432268917,0.18819934842083172,0.18543160660522578,0.182418322066237,0.1791953645508369,0.17579806459464833,0.17226044312555172,0.1686146086947996,0.1648903207652806,0.16111470705561964,0.1573121160762588,0.15350408238742677,0.14970938115696727,0.14594414959447535,0.14222205509997568,0.13855449290525815,0.13495079915260236,0.13142020058152482,0.1280160588774973,0.12475441268636694,0.12162674230835092,0.11862518730713724,0.11574248449025666,0.11297191270111051,0.11030724357339346,0.10774269751645096,0.10526804667549022,0.10284738401751284,0.1004760679629067,0.09815567692962074,0.09588733837272011,0.09367178629485123,0.09150941368278372,0.0894003199532367,0.08734435359328963,0.08534115025050656,0.08339016657177901,0.08149071011372895,0.07964196565644592,0.07784301824975763,0.0760928733110231,0.07439047407771629,0.07273471669888656,0.0711244632287269,0.06955855276354096,0.06803581094177298,0.06655505800560345,0.0651151156025619,0.06371481248662438,0.06235298926099603,0.06102850228853667,0.05974022688132723,0.0584870598676555,0.05726792162277085,0.056081757639272346,0.05492753970340293,0.05380426673521256,0.05271096534309377,0.05164669013659267,0.05061052383570129,0.049601577209672974,0.04861898887399299,0.04766192497021933,0.04672957875002049,0.04582117008169132,0.04493594489494009,0.04407317457737367,0.043232155334199884,0.04241220752095806,0.041612674957554156,0.040832924230684485,0.04007234399052748,0.039330344246683635,0.0386063556674896,0.0378998288861328,0.03721023381634576,0.03653705897998677,0.03587981084830895,0.03523801319835169,0.03461120648557672,0.03399894723353712,0.03340080744120398,0.03281637400830037,0.03224524817886605,0.03168704500312598,0.03114139281759139,0.030607932743269815,0.030086318201735157,0.029576214448765868,0.029077298125200858,0.028589256824628526,0.028111788677463178,0.027644601950988227,0.027187414664879027,0.02673995422173099,0.026301957052119705,0.025873168273678422,0.025453341363736857,0.02504223784501474,0.02463962698389821,0.02424528550083063,0.023858997292356656,0.023480553164356748,0.02310975057605191,0.022746393394334374,0.022390291658016686,0.022041261351599357,0.021699124188155405,0.021363707400975054,0.021034843543593442,0.020712370297857795,0.020396130289702327,0.020085970912293975,0.019781744156256848,0.019483306446663518,0.019190518486513077,0.01890324510641858,0.018621355120246902,0.01834472118644646,0.018073219674837056,0.017806730538619184,0.017545137191385205,0.01728832638892426,0.017036188115607438,0.01678861547517385,0.016545504585721824,0.016306754478730926,0.01607226700194572,0.015841946725961873,0.015615700854350285,0.01539343913718416,0.01517507378781787,0.014960519402785222,0.014749692884690939,0.014542513367962678,0.014338902147357516,0.014138782609100444,0.013942080164550787,0.013748722186295033,0.01355863794655967,0.013371758557860628,0.013188016915790494,0.01300734764386097,0.012829687040316734,0.012654973026844379,0.012483145099094376,0.012314144278952988,0.012147913068487852,0.011984395405503587,0.011823536620646715,0.01166528339599183,0.011509583725060718,0.011356386874212204,0.011205643345351311,0.011057304839909425,0.010911324224040382,0.01076765549499404,0.010626253748616683,0.01048707514793733,0.01035007689279898,0.01021521719049695,0.01008245522738149,0.009951751141395772,0.009823065995509158,0.00969636175201439,0.009571601247658476,0.00944874816957163,0.009327767031971785,0.00920862315361149,0.009091282635942222,0.008975712341969387,0.008861879875775445,0.008749753562681995,0.008639302430034825,0.008530496188584796,0.00842330521444489,0.008317700531605125,0.008213653794980834,0.008111137273981817,0.008010123836579662,0.007910586933857934,0.007812500585027835,0.00771583936289511,0.0076205783797584515,0.007526693273730385,0.007434160195462089,0.007342955795259848,0.007253057210581283,0.0071644420538947064,0.007077088400894695,0.006990974779058165,0.006906080156530715,0.006822383931334178,0.006739865920880333,0.006658506351786337,0.006578285849978039,0.006499185431073372,0.0064211864910362,0.006344270797093578,0.006268420478904191,0.006193618019974693,0.006119846249312756,0.006047088333310068,0.005975327767849698,0.005904548370626959,0.005834734273681768,0.0057658699161324736,0.00569794003710624,0.005630929668860328,0.005564824130086338,0.005499609019394677,0.005435270208971712,0.005371793838404915,0.005309166308670768,0.005247374276281654,0.005186404647584066,0.005126244573207359,0.005066881442655711,0.00500830287904001,0.004950496733946403,0.004893451082434864,0.00483715421816728,0.004781594648658908,0.004726761090650428,0.004672642465596846,0.004619227895270781,0.004566506697474518,0.004514468381860818,0.004463102645856906,0.004412399370689714,0.0043623486175099575,0.004312940623610307,0.0042641657987377264,0.004216014721495177,0.004168478135831035,0.004121546947614303,0.0040752122212912795,0.004029465176624053,0.003984297185506693,0.003939699768857567,0.003895664593585696,0.003852183469629685,0.003809248347065426,0.0037668513132833124,0.003724984590231029,0.0036836405317209235,0.0036428116208007573,0.003602490467184381,0.0035626698047430926,0.003523342489054281,0.003484501495006563,0.0034461399144597254,0.0034082509539586038,0.0033708279324979745,0.0033338642793391566,0.003297353531875468,0.0032612893335457953,0.0032256654317954466,0.0031904756760816762,0.0031557140159247103,0.0031213744990015,0.0030874512692818414,0.0030539385652059627,0.0030208307179014453,0.0029881221494400052,0.002955807371132072,0.002923880981858556,0.002892337666438715,0.0028611721940338974,0.002830379416584718,0.0027999542672828607,0.002769891759075103,0.0027401869831993435,0.002710835107752248,0.002681831376286458,0.002653171106438333,0.0026248496885842155,0.0025968625845250773,0.002569205326198615,0.002541873514418682,0.0025148628176402247,0.002488168970750639,0.0024617877738857177,0.002435715091270161,0.0024099468500821545,0.002384479039340692,0.0023593077088162277,0.002334428967963296,0.002309838984874768,0.0022855339852576695,0.002261510251429027,0.0022377641213326164,0.002214291987575117,0.002191090296481641,0.2181118644872035,0.2178766139922573,0.21717485100395809,0.2160183551019806,0.21442615600801215,0.21242368551179583,0.2100416943988885,0.2073150209127967,0.2042813008156529,0.20097970266892576,0.19744975789748537,0.19373033664247755,0.18985880050627443,0.18587034467393335,0.18179752635678864,0.1776699649474436,0.17351419183339045,0.1693536240754001,0.16520863538961655,0.16109669925170125,0.15703258167859624,0.15302856467651557,0.14909468497163902,0.14524805406263,0.1415517736366204,0.13800862962088817,0.13460951393148543,0.13134602140660828,0.12821038376896216,0.12519541083628424,0.1222944380767679,0.1195012797310609,0.11681018682889757,0.1142052450946783,0.11165153115558431,0.10914857757490254,0.10669798848176175,0.10430091868549743,0.10195813020066859,0.09967004382514519,0.09743678585993835,0.09525823015429016,0.09313403572406129,0.09106368023196942,0.08904648964063476,0.08708166435717024,0.08516830218589802,0.08330541839600196,0.08149196319599443,0.07972683688906301,0.0780089029632998,0.07633699935033579,0.07470994806522366,0.07312656342039196,0.07158565898723741,0.07008605346107175,0.06862657556826733,0.0672060681391289,0.0658233914560139,0.06447742597340025,0.06316707449528344,0.06189126388486105,0.06064894637235698,0.059439100518662406,0.05826073188512454,0.057112873453542476,0.05599458583460702,0.05490495729811644,0.05384310365387009,0.052808168008309384,0.05179932041852667,0.05081575746241185,0.04985670174101005,0.04892140132696199,0.04800912917093024,0.04711918247613287,0.046250882049728215,0.0454035716383703,0.044576617254214704,0.04376940649663223,0.04298134787407678,0.04221187012975787,0.04146042157423331,0.04072646942739543,0.04000949917190862,0.03930901391975633,0.038624533793151304,0.03795559532086031,0.0373017508506495,0.036662567978399,0.03603762899423835,0.035426530345873265,0.034828882119204,0.03424430753616066,0.033672442469636896,0.03311293497530466,0.03256544484005243,0.03202964314670395,0.03150521185468903,0.030991843396254683,0.030489240287814162,0.02999711475600856,0.029515188378020325,0.029043191735720734,0.028580864083175294,0.028127953027066794,0.027684214219583888,0.02724941106333612,0.02682331442784153,0.026405702377180647,0.025996359908376673,0.025595078700097976,0.025201656871288662,0.02481589874932068,0.024437614647313147,0.024066620650237715,0.023702738409459936,0.023345794945383764,0.022995622457852215,0.022652058144008398,0.02231494402329592,0.021984126769312114,0.021659457548227047,0.021340791863505147,0.021027989406653524,0.020720913913765623,0.02041943302760564,0.02012341816501033,0.019832744389389142,0.019547290288100403,0.01926693785451727,0.01899157237457716,0.018721082317632958,0.018455359231428305,0.018194297641029467,0.01793779495154069,0.017685751354461644,0.01743806973752662,0.017194655597886025,0.016955416958498216,0.016720264287588688,0.016489110421066596,0.016261870487768844,0.016038461837419197,0.015818803971197854,0.01560281847480543,0.015390428953934977,0.015181560972045942,0.014976141990351754,0.014774101309932869,0.014575370015893424,0.014379880923472995,0.014187568526048145,0.013998368944940274,0.013812219880963315,0.01362906056764517,0.01344883172605066,0.013271475521154711,0.01309693551969781,0.01292515664947043,0.012756085159970666,0.01258966858438601,0.012425855702841384,0.012264596506875758,0.012105842165093661,0.01194954498994986,0.011795658405627516,0.011644136916962438,0.01149493607938325,0.011348012469823606,0.011203323658573221,0.0110608281820348,0.010920485516348388,0.010782256051859593,0.010646101068394646,0.010511982711316536,0.01037986396833265,0.010249708647029893,0.01012148135310543,0.00999514746927625,0.00987067313483766,0.009748025225849988,0.009627171335933266,0.009508079757643511,0.009390719464417227,0.009275060093059296,0.009161071926757634,0.009048725878607576,0.008937993475624533,0.008828846843233817,0.008721258690217544,0.008615202294104568,0.008510651486988177,0.00840758064175887,0.00830596465873433,0.008205778952678645,0.0081069994401942,0.008009602527475118,0.007913565098411622,0.00781886450303018,0.007725478546263498,0.007633385477035972,0.007542563977655919,0.00745299315350401,0.007364652523010439,0.00727752200790723,0.0071915819237524615,0.007106812970713855,0.00702319622460483,0.006940713128166277,0.006859345482582837,0.006779075439231157,0.006699885491649333,0.006621758467721911,0.0065446775220749515,0.006468626128671323,0.006393588073604697,0.006319547448082636,0.006246488641594653,0.006174396335259046,0.006103255495344399,0.006033051366957581,0.005963769467897141,0.00589539558266431,0.005827915756628008,0.00576131629033995,0.005695583733993003,0.005630704882022179,0.005566666767841171,0.005503456658711892,0.005441062050742623,0.005379470664012112,0.005318670437813505,0.005258649526018074,0.005199396292552723,0.005140899306988982,0.0050831473402410746,0.0050261293603676115,0.004969834528477121,0.004914252194732294,0.00485937189445081,0.004805183344300873,0.004751676438586668,0.004698841245624059,0.004646668004202086,0.004595147120128548,0.004544269162857199,0.004494024862195244,0.004444405105086711,0.0043954009324725695,0.004347003536223463,0.004299204256143598,0.004251994577044871,0.004205366125887063,0.004159310668985292,0.004113820109280635,0.004068886483673377,0.004024501960416787,0.003980658836570633,0.003937349535511001,0.0038945666044975006,0.003852302712294469,0.0038105506468453674,0.003769303312999659,0.003728553730289052,0.0036882950307541096,0.0036485204568183415,0.003609223359208952,0.0035703971949238985,0.0035320355252421143,0.003494132013778317,0.0034566804245793926,0.0034196746202621526,0.0033831085601911492,0.003346976298696128,0.0033112719833267583,0.0032759898531455472,0.003241124237056684,0.0032066695521703044,0.003172620302201874,0.0031389710759043427,0.0031057165455342433,0.003072851465349404,0.00304037067013811,0.003008269073779295,0.002976541667831759,0.002945183520153446,0.0029141897735487617,0.0028835556444438202,0.0028532764215887514,0.0028233474647869454,0.0027937642036493728,0.002764522136375017,0.0027356168285556128,0.002707043912004512,0.002678799083609544,0.0026508781042080443,0.0026232767974852605,0.002595991048894302,0.0025690168045976263,0.24038398430707478,0.24012499026392067,0.2393524636545497,0.23807955941413272,0.23632751652256287,0.23412469447351628,0.23150534510776932,0.22850821966280657,0.22517511446323243,0.22154945064325618,0.21767496652199925,0.21359457946865193,0.20934945101103045,0.20497826759810142,0.200516731850817,0.19599724628595278,0.1914487634410085,0.1868967725105272,0.18236339213504776,0.17786754088185372,0.1734251603064783,0.16904946953383357,0.16475123448861728,0.1605653048720808,0.1565517218626584,0.15270273306138538,0.1490085971173825,0.14546032274204296,0.14204959831314581,0.1387687292030478,0.13561058186818287,0.1325685338707303,0.12963642911618198,0.12680853768724445,0.12406416039257999,0.1213704573838477,0.11872858176654603,0.11614020755524188,0.11360655748213434,0.11112845868378023,0.1087063935994084,0.10634054616282819,0.10403084345975977,0.10177699308420161,0.09957851646700128,0.09743477847149716,0.09534501355982236,0.0933083488321115,0.09132382423225506,0.08939041020068227,0.08750702303787802,0.08567253822401062,0.083885801920763,0.08214564086208102,0.08045087082151454,0.07880030382579417,0.07719275426699171,0.07562704404967882,0.07410200689477747,0.07261649190816157,0.07116936650996618,0.06975951880925979,0.06838585949887904,0.06704732333621435,0.06574287026769479,0.06447148624772735,0.06323218379638587,0.06202400233464209,0.06084600833094683,0.059697295288640595,0.05857698359975737,0.05748422028752926,0.056418178656820354,0.055378057869175726,0.05436308245690563,0.05337250178856408,0.052405589496548485,0.051461642875925626,0.05053998226232304,0.049639950395552246,0.04876091177464039,0.0479022520090295,0.04706337717002928,0.04624371314585724,0.0454427050031004,0.04465981635691438,0.04389452875182851,0.04314634105472583,0.04241476886117529,0.04169934391607202,0.040999613549303864,0.04031514012692877,0.03964550051824573,0.038990285578935066,0.03834909965035544,0.03772156007498128,0.03710729672787921,0.036505951564029214,0.035917178181287424,0.035340641398688734,0.03477601684977747,0.03422299059062967,0.03368125872216859,0.03315052702642274,0.032630510616297966,0.032120933598468134,0.03162152874896763,0.03113203720108157,0.030652208145098975,0.030181798539548464,0.02972057283348958,0.029268302699471862,0.02882476677677492,0.02838975042452947,0.02796304548437334,0.02754445005225943,0.02713376825907067,0.026730810059705287,0.02633539103028421,0.025947332173183447,0.025566459729564048,0.02519260499910916,0.02482560416667665,0.024465298135596142,0.024111532367328856,0.023764156727252468,0.023423025336309224,0.02308799642828424,0.022758932212491523,0.022435698741633165,0.02211816578464138,0.02180620670428682,0.021499698339365596,0.02119852089127745,0.020902557814822528,0.020611695713033115,0.020325824235894064,0.020044835982783064,0.019768626408483578,0.01949709373263286,0.019230138852452797,0.01896766525865028,0.018709578954346297,0.018455788376919167,0.01820620432264794,0.017960739874034636,0.01771931032971377,0.017481833136836423,0.01724822782583516,0.017018415947476204,0.016792321012111873,0.016569868431039116,0.016350985459894354,0.016135601143996665,0.01592364626556657,0.015715053292752485,0.01550975633038526,0.015307691072407259,0.015108794755903827,0.014913006116678697,0.014720265346315157,0.014530514050669296,0.014343695209733928,0.014159753138832627,0.013978633451086481,0.013800283021108502,0.013624649949883546,0.013451683530781822,0.013281334216675121,0.01311355358810723,0.012948294322483516,0.012785510164244153,0.012625155895979186,0.01246718731046074,0.012311561183551905,0.012158235247964548,0.012007168167834922,0.011858319514089994,0.011711649740571133,0.011567120160896118,0.011424692926028256,0.011284331002529254,0.011145998151474571,0.011009658908002064,0.01087527856148067,0.010742823136270858,0.010612259373059879,0.010483554710752975,0.010356677268897043,0.010231595830625492,0.010108279826101784,0.009986699316446685,0.00986682497813284,0.00974862808783292,0.009632080507701157,0.009517154671081147,0.009403823568620547,0.00929206073478108,0.00918184023473268,0.009073136651614608,0.00896592507415778,0.008860181084652103,0.00875588074724982,0.008653000596593128,0.008551517626757897,0.008451409280498985,0.008352653438793309,0.008255228410667144,0.008159112923300274,0.008064286112399404,0.007970727512828827,0.007878417049495382,0.007787335028476167,0.007697462128382764,0.007608779391955888,0.007521268217879957,0.00743491035281562,0.007349687883640218,0.007265583229891092,0.007182579136405423,0.007100658666152005,0.0070198051932459085,0.00694000239614496,0.006861234251019574,0.006783485025291645,0.006706739271338974,0.0066309818203567576,0.006556197776376302,0.006482372510432835,0.006409491654879646,0.006337541097843745,0.006266506977820358,0.006196375678399136,0.0061271338231224945,0.006058768270469168,0.005991266108960639,0.005924614652387765,0.0058588014351515045,0.005793814207718236,0.005729640932183901,0.005666269777944398,0.005603689117470834,0.0055418875221835695,0.005480853758426051,0.005420576783533274,0.005361045741992895,0.005302249961696643,0.005244178950280206,0.005186822391546962,0.005130170141976504,0.00507421222731314,0.005018938839233383,0.004964340332090642,0.004910407219733188,0.004857130172396263,0.0048045000136641884,0.004752507717501586,0.004701144405351507,0.004650401343299728,0.004600269939301258,0.004550741740470302,0.004501808430429949,0.0044534618267208885,0.00440569387826795,0.004358496662901449,0.004311862384934332,0.0042657833727916695,0.004220252076692085,0.004175261066380265,0.00413080302890743,0.004086870766461055,0.004043457194240791,0.004000555338380173,0.003958158333912703,0.003916259422781922,0.0038748519518927832,0.0038339293712053536,0.0037934852318684056,0.0037535131843922146,0.0037140069768604586,0.003674960453178268,0.0036363675513581164,0.003598222301840762,0.0035605188258510004,0.0035232513337879953,0.003486414123647739,0.003450001579478905,0.0034140081698699246,0.0033784284464669656,0.0033432570425220506,0.0033084886714711105,0.0032741181255397742,0.003240140274378418,0.003206550063723988,0.003173342514088773,0.0031405127194758372,0.003108055846119083,0.0030759671312493484,0.0030442418818843802,0.003012875473642908,0.26514121713673855,0.2648551610961298,0.2640020022273758,0.26259652505041253,0.26066258258784597,0.25823199140726144,0.2553431263822838,0.25203933174937593,0.24836726851707178,0.24437530808857788,0.2401120616420023,0.23562510889632513,0.23095996280631395,0.22615928203029873,0.22126232299414278,0.21630460904143825,0.21131778547070781,0.20632962546695263,0.20136415193131466,0.19644184281942959,0.1915798917466893,0.1867925004462193,0.18209160819571887,0.17754419451192754,0.17318509653844102,0.16900299892301926,0.16498747255677534,0.16112888992727725,0.15741834992178927,0.1538476108826655,0.15040903088601637,0.14709551435732174,0.14390046425863698,0.14081773918525317,0.13784161479719004,0.1349498968235913,0.13210921342140708,0.1293210092713513,0.12658707693531202,0.1239087519902044,0.12128696801346443,0.11872230697108488,0.11621504507133013,0.11376519423509296,0.11137253939531366,0.10903667187761112,0.10675701913750069,0.10453287113983215,0.10236340366646353,0.10024769883197282,0.09818476307545736,0.09617354288196708,0.09421293847025185,0.09230181566589848,0.09043901616072927,0.08862336634179825,0.08685368485597927,0.08512878905992513,0.08344750048999569,0.08180864947242009,0.08021107898118908,0.07865364783908368,0.07713523334656595,0.07565473341352279,0.0742110682600044,0.07280318174438796,0.07143004237025397,0.0700906440170937,0.06878400643438307,0.06750917553368613,0.06626522350898992,0.06505124881178109,0.06386637600384627,0.06270975550784816,0.0615805632731219,0.0604780003717464,0.05940129253802845,0.05834968966266415,0.057322465251330904,0.056318915856092874,0.05533836048682767,0.05438014000878182,0.05344361653155723,0.05252817279394174,0.051633211548359106,0.050758154948124114,0.04990244394010461,0.04906553766504508,0.048246912867313675,0.04744606331555396,0.04666249923543425,0.045895746755376804,0.0451453473660328,0.04441085739398186,0.043691847490045115,0.04298790213243351,0.04229861914486241,0.04162360922962069,0.04096249551557545,0.04031491312095005,0.03968050873070148,0.039058940188272544,0.038449876101424994,0.037852995461883254,0.03726798727844373,0.036694550223215605,0.036132392290633655,0.03558123046888809,0.03504079042337738,0.03451080619183983,0.03399101989076633,0.033481181432731266,0.032981048254274156,0.03249038505395073,0.032008963540218954,0.031536562188789266,0.03107296600910027,0.030617966319589258,0.030171360531414247,0.029732951940330443,0.029302549526396885,0.02887996776121813,0.02846502642243195,0.028057550415166742,0.02765736960018256,0.027264318628456016,0.026878236781941418,0.026498967820269344,0.02612635983315497,0.025760265098275368,0.02540053994441992,0.02504704461968887,0.02469964316454916,0.024358203289549237,0.024022596257517764,0.023692696770051362,0.023368382858142574,0.023049535776769464,0.0227360399032946,0.02242778263952814,0.022124654317297026,0.021826548107399903,0.021533359931801634,0.021244988378944694,0.020961334622059742,0.020682302340346067,0.0204077976429254,0.02013772899545075,0.01987200714927094,0.01961054507305078,0.0193532578867569,0.0191000627979067,0.018850879040009275,0.018605627813101964,0.018364232226308206,0.018126617242341485,0.017892709623873133,0.017662437881705743,0.017435732224674927,0.017212524511218047,0.01699274820254987,0.016776338317377276,0.016563231388107263,0.01635336541848364,0.01614667984260459,0.015943115485268052,0.015742614523600262,0.015545120449912124,0.015350578035750012,0.015158933297089469,0.014970133460633432,0.014784126931177725,0.014600863259997833,0.014420293114231411,0.014242368247212589,0.014067041469728207,0.013894266622162019,0.01372399854749918,0.013556193065152797,0.013390806945594514,0.013227797885753382,0.013067124485159029,0.012908746222805845,0.01275262343470694,0.012598717292122424,0.012446989780433407,0.012297403678641924,0.012149922539474818,0.012004510670074011,0.011861133113246953,0.011719755629267418,0.011580344678201288,0.011442867402742968,0.011307291611546947,0.011173585763032488,0.011041718949653934,0.01091166088261553,0.010783381877018132,0.010656852837426034,0.01053204524383456,0.01040893113803295,0.010287483110344725,0.010167674286735158,0.010049478316274087,0.009932869358944456,0.009817822073780982,0.00970431160733504,0.009592313582450752,0.009481804087344307,0.009372759664978417,0.00926515730271867,0.009158974422268523,0.009054188869870685,0.008950778906767572,0.008848723199914863,0.008748000812935874,0.008648591197315602,0.008550474183822467,0.008453629974153177,0.00835803913279307,0.008263682579087477,0.008170541579513595,0.008078597740152611,0.007987832999351784,0.007898229620572801,0.0078097701854217,0.0077224375868517265,0.0076362150225389655,0.007551085988421961,0.007467034272402398,0.0073840439482012596,0.007302099369368134,0.007221185163435113,0.007141286226216306,0.00706238771624537,0.006984475049347945,0.006907533893347033,0.006831550162893507,0.0067565100144233396,0.006682399841234322,0.0066092062686803855,0.006536916149481087,0.006465516559140175,0.0063949947914743385,0.006325338354245993,0.006256534964898657,0.006188572546391654,0.0061214392231325725,0.006055123317002253,0.005989613343473348,0.005924898007817273,0.005860966201398107,0.005797806998052189,0.005735409650548194,0.005673763587129423,0.0056128584081333414,0.005552683882687438,0.005493229945479154,0.005434486693598821,0.005376444383451458,0.0053190934277387416,0.005262424392507048,0.005206427994260595,0.005151095097138948,0.005096416710154712,0.0050423839844932605,0.00498898821087034,0.004936220816947161,0.004884073364802017,0.0048325375484550214,0.004781605191447382,0.00473126824447192,0.004681518783054163,0.004632349005282749,0.004583751229588551,0.004535717892569404,0.004488241546862063,0.004441314859058076,0.004394930607663354,0.004349081681100898,0.004303761075753859,0.00425896189405034,0.004214677342587259,0.004170900730292824,0.0041276254666267895,0.004084845059818038,0.004042553115136978,0.004000743333204259,0.003959409508333169,0.003918545526905587,0.0038781453657812277,0.0038382030907376783,0.003798712854942836,0.0037596688974572997,0.003721065541766539,0.0036828971943427624,0.0036451583432342057,0.0036078435566832,0.003570947481771046,0.0035344648430894678,0.2927144724559467,0.29239733577647387,0.29145159962770545,0.28989400295223594,0.2877515289862612,0.28506012438985157,0.2818630746881658,0.2782091739699217,0.2741508299412583,0.26974223223830585,0.26503768685865114,0.26009018826848224,0.25495026854946606,0.2496651340630405,0.24427807713893201,0.2388281342666121,0.23334995296573688,0.22787382591297997,0.22242585161224568,0.21702818447910674,0.21169934240641192,0.20645454569593333,0.20131807687577216,0.19637891268052204,0.19164240590916456,0.18709642303834956,0.18272978000718476,0.17853215150160529,0.17449399037556357,0.17060645592270673,0.1668613498937529,0.1632510593081917,0.1597685052387755,0.1564070968583099,0.1531606901321648,0.15002355062073294,0.14697677808577267,0.14398232852146634,0.14104050716600602,0.13815327886022438,0.13532214195800596,0.13254818271608151,0.1298321253135971,0.12717437753408276,0.12457507223097504,0.122034104760357,0.11955116660684217,0.1171257754541755,0.11475730196504515,0.11244499353811498,0.11018799530622009,0.10798536863085537,0.10583610733552717,0.10373915190594427,0.10169340186889124,0.09969772654537662,0.09775097435697241,0.09585198084837065,0.09399957557379272,0.09219258798031585,0.09042985240782207,0.08871021231261071,0.08703252381029074,0.0853956586231353,0.08379850650745427,0.08223997722811598,0.08071900213947741,0.0792345354251215,0.07778555504258963,0.07637106341378863,0.07499008789674606,0.07364168107017076,0.07232492085824878,0.07103891051974874,0.06978277852250891,0.06855567832158614,0.06735678805713942,0.06618531018592329,0.0650404710584791,0.06392152045251552,0.06282773107155272,0.061758398016618414,0.0607128382377992,0.05969038997139182,0.058690412167627985,0.057712283913224305,0.05675540385230354,0.05581918960879468,0.05490307721282039,0.05400652053323135,0.05312899071807199,0.052269975644395776,0.05142897937865948,0.05060552164860968,0.04979913732740682,0.0490093759305493,0.04823580112602044,0.04747799025790127,0.046735533883665234,0.0460080353251949,0.04529511023352499,0.04459638616724724,0.043911502184417604,0.04324010844783045,0.04258186584340859,0.04193644561147893,0.04130352899065517,0.040682806874043125,0.04007397947743789,0.03947675601922614,0.03889085441164139,0.03831600096304604,0.03775193009091686,0.03719838404517203,0.03665511264153881,0.03612187300460626,0.035598429320244054,0.03508455259707482,0.034580020436659004,0.03408461681211397,0.033598131854843886,0.033120361649094446,0.032651108034041525,0.032190178413146114,0.031737385570483057,0.03129254749380959,0.030855487204100873,0.030426032591312446,0.030004016256140385,0.029589275357531843,0.029181651465749178,0.028780990420758157,0.028387142195740837,0.027999960765535153,0.027619303979816608,0.027245033440823397,0.026877014385471094,0.026515115571671376,0.02615920916869727,0.02580917065144454,0.025464878698423322,0.02512621509335665,0.024793064630231072,0.024465315021673737,0.024142856810529984,0.02382558328450726,0.023513390393785506,0.023206176671466256,0.022903843156759272,0.022606293320799383,0.02231343299499991,0.022025170301832642,0.02174141558796142,0.021462081359626278,0.02118708222019895,0.020916334809832005,0.02064975774711104,0.020387271572652632,0.020128798694561696,0.019874263335685458,0.01962359148260051,0.019376710836257794,0.019133550764240267,0.018894042254562836,0.01865811787096248,0.018425711709623913,0.018196759357291956,0.017971197850711305,0.01774896563735889,0.01753000253741285,0.01731424970691727,0.01710164960210293,0.016892145944814814,0.016685683689018262,0.01648220898833776,0.01628166916459553,0.016084012677313526,0.015889189094149186,0.015697149062223907,0.015507844280324727,0.01532122747194082,0.015137252359108984,0.014955873637042956,0.014777046949512814,0.014600728864958196,0.014426876853304066,0.014255449263457747,0.014086405301463779,0.013919705009297395,0.013755309244268188,0.013593179659023617,0.013433278682124957,0.013275569499179855,0.013120016034515047,0.012966582933365098,0.012815235544569545,0.012665939903754881,0.012518662716988534,0.012373371344891342,0.01223003378718786,0.012088618667688778,0.011949095219685629,0.01181143327174711,0.011675603233903663,0.011541576084210461,0.011409323355671457,0.011278817123520085,0.01115002999284119,0.011022935086524261,0.010897506033540413,0.010773716957527544,0.010651542465681292,0.010530957637937334,0.010411938016438135,0.010294459595276712,0.01017849881050469,0.010064032530403002,0.009951038046002645,0.009839493061849825,0.009729375687007812,0.009620664426290412,0.009513338171715381,0.009407376194177768,0.009302758135332077,0.009199463999678683,0.009097474146849999,0.008996769284086555,0.008897330458902921,0.0087991390519341,0.008702176769958658,0.008606425639093264,0.00851186799815525,0.008418486492184478,0.008326264066125482,0.008235183958661166,0.008145229696195458,0.008056385086981884,0.00796863421539022,0.007881961436312477,0.007796351369700743,0.007711788895234361,0.00762825914711414,0.007545747508976645,0.0074642396089301365,0.007383721314705026,0.007304178728917491,0.007225598184442636,0.007147966239895658,0.007071269675214653,0.006995495487347145,0.006920630886033796,0.006846663289688374,0.006773580321372106,0.006701369804856937,0.006630019760779659,0.006559518402881284,0.006489854134330736,0.006421015544130331,0.006352991403602132,0.00628577066295005,0.006219342447899842,0.0061536960564119595,0.0060888209554665245,0.006024706777919283,0.005961343319424293,0.005898720535425186,0.00583682853821049,0.005775657594032443,0.005715198120288531,0.005655440682761723,0.005596375992921105,0.005537994905279214,0.005480288414805515,0.0054232476543942506,0.005366863892386509,0.005311128530142693,0.005256033099667253,0.005201569261282259,0.005147728801349268,0.0050945036300391235,0.005041885779146356,0.00498986739995001,0.004938440761117658,0.004887598246652406,0.00483733235388157,0.004787635691487047,0.004738500977574078,0.00468992103778046,0.004641888803423121,0.00459439730968188,0.004547439693820285,0.0045010091934404835,0.0044550991447743,0.004409702981007312,0.00436481423063628,0.004320426515859388,0.004276533550996985,0.004233129140944455,0.004190207179654647,0.00414776164865,0.2617339398011348,0.2615378202897436,0.2609518603632941,0.25998317367421325,0.2586433479187267,0.25694806093172906,0.2549165784984644,0.25257116463612256,0.24993643821764344,0.24703870988798002,0.24390533061190592,0.24056407851909706,0.23704260474604874,0.2333679524896668,0.2295661571660092,0.22566192992386153,0.22167842212193772,0.21763706488854698,0.21355747553709015,0.2094574213028402,0.20535283042081606,0.20125784078358883,0.19718487710515809,0.19314474849614985,0.18914675948317183,0.18519882866949286,0.18130761035652115,0.17750401671136812,0.17383075355440028,0.17028205659402287,0.1668517323237306,0.1635339934464577,0.16032342606926764,0.15721496002068253,0.15420384195047618,0.1512856109134244,0.14845607617430703,0.1457112970026373,0.14304756425255613,0.14046138354714027,0.13794945990662322,0.13550868367831348,0.13313205453064736,0.1307922954656697,0.12848605436608007,0.12621457236600458,0.12397885971568023,0.1217797178431766,0.11961776002558655,0.11749343065195914,0.11540702308641809,0.11335869616075495,0.1113484893412249,0.10937633662566697,0.10744207923479783,0.10554547716663797,0.1036862196855645,0.1018639348183485,0.10007819792906122,0.09832853944286099,0.09661445178650793,0.09493539561018939,0.09329080535200328,0.09168009420278146,0.09010265852517059,0.08855788177726331,0.0870451379872604,0.0855637948221086,0.08411321628964442,0.0826927651104533,0.0813018047925479,0.07993970143914102,0.07860582531700074,0.07729955221038431,0.07602026458327547,0.0747673525703818,0.07354021481555964,0.07233825917436618,0.07116090329588846,0.07000757509746972,0.06887771314460094,0.06777076694695873,0.06668619718053069,0.06562347584466832,0.06458208636202686,0.06356152362852314,0.06256129401964422,0.0615809153588434,0.06061991685306709,0.05967783899994969,0.05875423347072878,0.05784866297242752,0.0569607010925494,0.05608993212907594,0.055235950908297464,0.05439836259269123,0.05357678248082619,0.0527708358009925,0.05198015750012872,0.05120439202935375,0.05044319312728814,0.04969622360220549,0.04896315511387809,0.04824366795593774,0.04753745083939089,0.046844200677886624,0.04616362237522479,0.04549542861554436,0.044839339656518776,0.04419508312589676,0.04356239382160852,0.04294101351565149,0.042330690761924895,0.0417311807081155,0.04114224491176523,0.0405636511605634,0.03999517329691844,0.03943659104683636,0.03888768985309422,0.038348260712724284,0.03781810001876338,0.03729700940624154,0.03678479560235975,0.03628127028081162,0.03578624992016389,0.035299555666259884,0.03482101319854715,0.034350452600263315,0.03388770823240379,0.03343261861136935,0.03298502629023554,0.03254477774353789,0.03211172325549285,0.03168571681156569,0.03126661599330505,0.03085428187633692,0.030448578931458248,0.03004937492872406,0.029656540844449908,0.029269950771051902,0.02888948182962365,0.028515014085193482,0.028146430464563502,0.027783616676660045,0.027426461135323286,0.027074854884446175,0.026728691525411522,0.026387867146739585,0.026052280255883787,0.02572183171310615,0.02539642466737053,0.02507596449417834,0.024760358735302107,0.024449517040342636,0.02414335111005779,0.023841774641408582,0.02354470327425583,0.02325205453967156,0.02296374780979996,0.02267970424922376,0.022399846767785288,0.02212409997482119,0.02185239013475218,0.021584645124000646,0.021320794389182027,0.021060768906531944,0.020804501142533332,0.0205519250156947,0.0203029758594559,0.02005759038617558,0.019815706652168058,0.01957726402376089,0.019342203144328534,0.019110465902286246,0.018881995400001992,0.018656735923602594,0.01843463291364271,0.018215632936614996,0.017999683657263794,0.017786733811690353,0.017576733181215342,0.017369632566976937,0.01716538376524594,0.016963939543425156,0.016765253616724565,0.016569280625481204,0.016375976113108058,0.01618529650465417,0.0159971990859491,0.015811641983324895,0.015628584143889252,0.015447985316336498,0.015269806032278822,0.015094007588084707,0.014920552027201689,0.014749402122959332,0.01458052136182921,0.01441387392713164,0.014249424683177659,0.014087139159826245,0.013926983537453528,0.013768924632314999,0.013612929882291517,0.01345896733300706,0.013307005624309877,0.013157013977099476,0.013008962180498513,0.012862820579352306,0.012718560062049281,0.01257615204865458,0.0124355684793417,0.01229678180312192,0.012159764966856439,0.012024491404545637,0.011890935026888901,0.011759070211101945,0.011628871790991754,0.011500315047276187,0.011373375698143569,0.011248029890044671,0.011124254188712964,0.011002025570401155,0.01088132141333511,0.010762119489373988,0.01064439795587228,0.010528135347740376,0.010413310569692497,0.010299902888684157,0.01018789192652859,0.010077257652689263,0.009967980377243281,0.009860040744012692,0.00975341972385448,0.009648098608111434,0.009544059002214673,0.009441282819435319,0.009339752274782988,0.009239449879042776,0.00914035843295261,0.009042461021513267,0.008945741008428862,0.008850182030675688,0.008755767993192099,0.008662483063691504,0.008570311667591507,0.008479238483057544,0.008389248436157553,0.00830032669612657,0.008212458670734451,0.008125630001759015,0.008039826560558416,0.007955034443741358,0.007871239968933897,0.007788429670636613,0.007706590296174958,0.0076257088017367015,0.007545772348495686,0.007466768298819405,0.007388684212559484,0.007311507843419913,0.00723522713540531,0.007159830219344089,0.007085305409485702,0.007011641200171274,0.0069388262625726185,0.006866849441502257,0.006795699752289385,0.00672536637772158,0.0066558386650512665,0.00658710612306272,0.006519158419201951,0.006451985376765071,0.0063855769721448555,0.006319923332133887,0.006255014731283922,0.0061908415893174445,0.006127394468593792,0.006064664071625988,0.00600264123864783,0.005941316945230995,0.005880682299948525,0.005820728542086818,0.005761447039402705,0.005702829285925181,0.005644866899801804,0.005587551621186143,0.005530875310168692,0.00547482994474766,0.005419407618840018,0.0053646005403311945,0.005310401029163793,0.005256801515461954,0.005203794537693751,0.005151372740868387,0.005099528874768257,0.0050482557922157285,0.004997546447371859,0.0049473938940690675,0.004897791284174952,0.004848731865987373,0.2903147654937356,0.2900961586773476,0.28944307385548657,0.2883636215562763,0.2868710048029779,0.28498306986735633,0.28272171981149796,0.2801122276929848,0.2771824898465422,0.2739622594806058,0.2704823974118597,0.26677417090772515,0.2628686242803862,0.2587960370338858,0.25458547782846075,0.25026445589878277,0.24585866621103925,0.24139182071148313,0.23688555546977103,0.23235940219797319,0.22783081230343358,0.2233152220617816,0.2188261484373466,0.21437530632262988,0.20997273935007016,0.2056269578223507,0.2013488696236272,0.19719911756404715,0.19319108482726124,0.18931762875189162,0.18557208278149553,0.18194821735193742,0.17844020456637505,0.17504258623854657,0.171750244936648,0.16855837770516757,0.16546247218094867,0.1624582848534733,0.15954182124838875,0.156709317839281,0.1539572255145306,0.1512821944457135,0.14868106022111713,0.14615062917418675,0.1436671076728786,0.14121677825890108,0.13880105249573066,0.13642110070733848,0.13407787407817476,0.1317721254547404,0.12950442881520052,0.12727519740149856,0.12508470053036613,0.12293307911660073,0.12082035995457706,0.11874646881334035,0.1167112424065636,0.1147144393026322,0.11275574984194808,0.11083480512881495,0.10895118516461719,0.10710442618709634,0.10529402727825003,0.10351945630052732,0.10178015521776762,0.10007554485412705,0.09840502914068941,0.09676799889612824,0.09516383518436919,0.09359191228900218,0.0920516003409405,0.09054226763300052,0.08906328265211147,0.08761401585728165,0.08619384122901282,0.08480213761342348,0.08343828988240992,0.08210168992902821,0.08079173751556938,0.07950784099012932,0.07824941788595957,0.0770158954164336,0.07580671087733833,0.07462131196689804,0.07345915703299462,0.0723197152560616,0.071202466775241,0.07010690276469694,0.06903252546617449,0.06797884818332303,0.06694539524271129,0.06593170192590372,0.06493731437657985,0.06396178948617576,0.06300469476118861,0.062065608174932535,0.0611441180062479,0.06023982266731931,0.059352330522627436,0.05848125970071685,0.05762623790033297,0.05678690219229662,0.055962898818268936,0.05515388298750887,0.054359518672503104,0.053579478404293446,0.05281344306819453,0.05206110170052476,0.051322151286850234,0.05059629656222969,0.049883249813825976,0.04918273068621781,0.04849446598970355,0.04781818951179793,0.04715364183215414,0.046500570141032226,0.04585872806145444,0.04522787547514264,0.044607778352286666,0.04399820858522503,0.04339894382603919,0.04280976732808523,0.04223046779145489,0.04166083921236228,0.04110068073640207,0.04054979651567822,0.040007995569732634,0.0394750916502312,0.038950903109356505,0.03843525277182321,0.03792796781048031,0.037428879625405996,0.036937823726434546,0.036454639619036736,0.03597917069348463,0.03551126411720684,0.035050770730281476,0.034597544943968404,0.034151444642211336,0.03371233108603705,0.03328006882075632,0.03285452558591524,0.032435572227902,0.03202308261514246,0.03161693355581432,0.031217004717993022,0.030823178552179323,0.03043534021612454,0.030053377501888696,0.0296771807650669,0.02930664285612174,0.028941659053745617,0.028582127000209696,0.028227946638624626,0.027879020152060605,0.027535251904471883,0.027196548383358516,0.026862818144128376,0.02653397175609438,0.026209921750060063,0.02589058256744376,0.02557587051089741,0.025265703696360834,0.024960002006523888,0.024658687045639855,0.024361682095650868,0.024068912073589886,0.023780303490205986,0.02349578440979127,0.0232152844111593,0.022938734549743964,0.02266606732078581,0.02239721662356267,0.022132117726645077,0.02187070723413445,0.021612923052857363,0.021358704360484815,0.02110799157455211,0.020860726322340692,0.020616851411609002,0.020376310802136397,0.020139049578057486,0.019905013920966694,0.01967415108375867,0.01944640936519619,0.019221738085171712,0.019000087560646698,0.01878140908224961,0.018565654891503348,0.01835277815867669,0.018142732961229553,0.017935474262839646,0.017730957892990697,0.01752914052710882,0.017329979667223175,0.017133433623144644,0.01693946149414054,0.01674802315109213,0.016559079219123505,0.016372591060680664,0.01618852075905686,0.016006831102344143,0.015827485567801204,0.015650448306624713,0.015475684129114807,0.015303158490216457,0.015132837475435026,0.014964687787108645,0.014798676731028419,0.014634772203399968,0.01447294267812875,0.01431315719442952,0.014155385344743587,0.01399959726295757,0.013845763612916985,0.013693855577220559,0.013543844846294966,0.013395703607736415,0.01324940453591396,0.013104920781826408,0.012962225963208139,0.012821294154870832,0.012682099879283135,0.012544618097374635,0.012408824199561285,0.012274693996987001,0.01214220371297057,0.012011329974659458,0.011882049804879433,0.011754340614176843,0.011628180193047646,0.011503546704350463,0.011380418675893227,0.011258774993195926,0.011138594892419442,0.0110198579534578,0.01090254409319156,0.010786633558892355,0.010672106921781962,0.010558945070736493,0.010447129206133809,0.010336640833841608,0.010227461759338502,0.010119574081970123,0.010012960189332662,0.009907602751782246,0.009803484717066262,0.009700589305075346,0.00959890000270862,0.009498400558855018,0.009399074979483555,0.009300907522841025,0.009203882694756195,0.009107985244043161,0.009013200158007318,0.008919512658047234,0.008826908195351287,0.008735372446686806,0.00864489131028047,0.008555450901784098,0.008467037550328866,0.008379637794661922,0.00829323837936459,0.008207826251151582,0.008123388555245423,0.008039912631829274,0.00795738601257245,0.007875796417228504,0.007795131750304593,0.007715380097797773,0.007636529724000697,0.007558569068371674,0.007481486742469356,0.0074052715269494005,0.007329912368623689,0.007255398377576803,0.007181718824343179,0.007108863137139872,0.007036820899155184,0.006965581845892501,0.006895135862565277,0.00682547298154577,0.006756583379863642,0.006688457376753916,0.006621085431254389,0.00655445813984833,0.00648856623415546,0.006423400578667058,0.0063589521685254065,0.006295212127346335,0.006232171705084778,0.006169822275939895,0.006108155336302281,0.0060471625027397335,0.0059868355100216935,0.005927166209182217,0.005868146565618186,0.005809768657225303,0.0057520246725685535,0.005694906909087436,0.3223612784058733,0.3221164877732127,0.32138526455625605,0.32017694023962684,0.318506693623553,0.3163950180073986,0.3138670273412309,0.3109516463247667,0.30768073345364855,0.3040881854162442,0.30020906667442776,0.2960788005753657,0.29173244917633495,0.2872040993228318,0.282526363408119,0.277729995375024,0.2728436163064965,0.26789353951768463,0.2629036823220478,0.2578955503692851,0.2528882803434407,0.24789872754818085,0.24294158620134346,0.23802953186070597,0.23317337711552324,0.22838223336167118,0.22369383582209373,0.21916531366904551,0.2147900201556411,0.2105602538007523,0.20646882669226302,0.20250902221690784,0.19867455689423114,0.19495954585883388,0.19135847159161662,0.18786615554964106,0.18447773238666318,0.18118862649307987,0.17799453061570172,0.1748913863458735,0.17187536628827882,0.16894285774415532,0.16609044776108553,0.1633149094176311,0.1606131892256341,0.1579764452663376,0.15537573698314475,0.15280895632845357,0.15027747422276255,0.14778243028937388,0.14532475375577575,0.1429051831226217,0.14052428457656588,0.13818246914704677,0.13588000862584268,0.13361705028282572,0.13139363042205154,0.12920968683016165,0.12706507017432334,0.12495955441000568,0.12289284626060354,0.12086459383094025,0.11887439441591834,0.11692180156407485,0.11500633145342852,0.11312746863468667,0.11128467119381114,0.10947737538304823,0.10770499976641748,0.10596694892260547,0.10426261674504447,0.10259138937621058,0.10095264781011011,0.0993457701943553,0.09777013386063133,0.0962251171098577,0.09471010077624104,0.09322446959216744,0.0917676133739892,0.0903389280469546,0.08893781652585656,0.08756368946639047,0.08621596590091213,0.08489407377088519,0.08359745036718602,0.08232554268836946,0.08107780772593888,0.07985371268490285,0.07865273514695659,0.07747436318297114,0.07631809542079535,0.07518344107370728,0.07406991993441846,0.07297706233892289,0.07190440910410716,0.07085151144259487,0.06981793085797633,0.06880323902315655,0.06780701764438543,0.06682885831314427,0.06586836234788913,0.06492514062742456,0.06399881341744286,0.06308901019166689,0.06219536944879556,0.06131753852635452,0.060455173412412105,0.059607938556021964,0.05877550667710146,0.05795755857644161,0.05715378294639014,0.05636387618270449,0.05558754219802332,0.054824492237285506,0.0540744446954628,0.0533371249378347,0.05261226512305169,0.051899604029179494,0.05119888688285163,0.05050986519169744,0.04983229658011444,0.049165944628472145,0.048510578715802916,0.047865973866022433,0.04723191059768045,0.046608174777282865,0.045994557476151256,0.045390854830817916,0.04479686790693779,0.044212402566658614,0.043637269339446144,0.043071283296290265,0.04251426392725571,0.04196603502231558,0.041426424555421344,0.040895264571725314,0.04037239107792091,0.03985764393561532,0.03935086675767352,0.03885190680747592,0.038360614900996924,0.0378768453116682,0.037400455677933965,0.0369313069134383,0.03646926311978437,0.036014191501776045,0.03556596228510357,0.03512444863638743,0.03468952658552242,0.03426107495025624,0.03383897526294798,0.033423111699425335,0.03301337100990459,0.03260964245189781,0.03221181772505293,0.031819790907878356,0.031433458396278015,0.031052718843867247,0.030677473103998706,0.03030762417345414,0.02994307713775627,0.029583739118038202,0.029229519219441873,0.028880328480986584,0.028536079826867743,0.028196688019140426,0.02786206961175305,0.02753214290587439,0.027206827906493827,0.02688604628024306,0.026569721314405954,0.026257777877084176,0.02595014237847208,0.025646742733223135,0.0253475083238618,0.0250523699652147,0.02476125986982865,0.024474111614349613,0.02419086010682154,0.023911441554894688,0.02363579343490133,0.023363854461778907,0.02309556455981804,0.022830864834198442,0.02256969754330531,0.022312006071790725,0.022057734904362292,0.021806829600276068,0.021559236768516656,0.02131490404363342,0.02107378006222762,0.02083581444006016,0.020600957749765857,0.020369161499158,0.02014037811009834,0.01991456089792628,0.019691664051422902,0.01947164261329698,0.019254452461180255,0.01904005028910862,0.01882839358948647,0.018619440635512255,0.018413150464054333,0.018209482858963618,0.018008398334813304,0.017809858121046167,0.01761382414652718,0.01742025902448299,0.017229126037819308,0.017040389124808392,0.016854012865128006,0.01666996246625262,0.016488203750178974,0.016308703140479445,0.016131427649675865,0.01595634486691873,0.015783422945971317,0.015612630593484798,0.015443937057557701,0.015277312116571793,0.015112726068299434,0.014950149719267506,0.014789554374380995,0.014630911826791363,0.014474194348006031,0.014319374678234383,0.014166426016957076,0.0140153220137218,0.013866036759152848,0.01371854477617073,0.013572821011416441,0.013428840826876511,0.013286579991697753,0.013146014674194843,0.013007121434039603,0.012869877214628822,0.01273425933562878,0.012600245485684874,0.012467813715300783,0.012336942429876487,0.012207610382902998,0.012079796669311763,0.011953480718969114,0.011828642290319435,0.011705261464167753,0.011583318637600292,0.011462794518039037,0.011343670117428728,0.011225926746547918,0.01110954600944765,0.010994509798009902,0.010880800286623794,0.010768399926978917,0.01065729144296769,0.010547457825700412,0.010438882328625719,0.010331548462755488,0.010225439991991101,0.010120540928550525,0.010016835528488952,0.009914308287317127,0.009812943935710042,0.009712727435305732,0.009613643974593165,0.00951567896488297,0.009418818036364558,0.009323047034243359,0.009228352014957936,0.00913471924247597,0.009042135184663616,0.00895058650973174,0.008860060082752995,0.008770542962250171,0.008682022396853086,0.008594485822024347,0.008507920856848466,0.008422315300887596,0.00833765713109939,0.008253934498815771,0.008171135726783355,0.008089249306259722,0.00800826389416977,0.007928168310316678,0.00784895153464784,0.007770602704574253,0.007693111112343054,0.007616466202459258,0.007540657569159502,0.007465674953933576,0.007391508243093865,0.00731814746539242,0.007245582789681684,0.007173804522622026,0.007102803106431904,0.007032569116680713,0.006963093260124574,0.0068943663725809295,0.00682637941684516,0.006759123480645355,0.006692589774635596,0.35286977614020903,0.35259843053722406,0.3517880004824795,0.35044916994756586,0.3485993013824255,0.3462618036891834,0.34346531160652527,0.34024273160722956,0.3366302139065781,0.33266610889188286,0.328389960109278,0.32384157629176635,0.3190602133826988,0.314083885622529,0.30894881375305555,0.30368900909496915,0.29833598510556214,0.2929185831156784,0.2874628961053929,0.2819922732799358,0.27652738845139835,0.271086356415413,0.2656848832773475,0.2603364387323958,0.2550524404181659,0.24985017943083665,0.24480878199581405,0.23993953292453826,0.2352336385412431,0.23068290269496822,0.2262796766088637,0.2220168136948589,0.21788762877129206,0.21388586119275357,0.21000564146207124,0.20624146094778345,0.2025881443757946,0.19904082480374843,0.1955949208207575,0.19224611574544323,0.18899033862086984,0.1858237468280462,0.1827427101594269,0.1797437962113522,0.17682375696971112,0.17397951647661494,0.1712081594776872,0.1684937992104985,0.16581207536455872,0.16316403273893848,0.16055102288506198,0.15797417651480533,0.15543442300870602,0.15293250879326195,0.15046901456722736,0.1480443713777509,0.14565887556339085,0.1433127025938568,0.1410059198458737,0.13873849836138544,0.13651032363917898,0.13432120551378177,0.13217088717697142,0.1300590533976479,0.12798533799496128,0.12594933061861457,0.12395058288811889,0.12198861394077108,0.12006291543562583,0.1181729560581031,0.11631818556716605,0.1144980384243974,0.11271193704148749,0.11095929468011385,0.10923951803566849,0.10755200953377064,0.10589616936636419,0.1042713972918802,0.10267709422198038,0.10111266361546761,0.09957751269821631,0.09807105352620969,0.0965927039074345,0.09514188819679573,0.09371803797700916,0.09232059263727087,0.09094899986027104,0.08960271602732899,0.08828120655031675,0.08698394613832415,0.08571041900623262,0.08446011903161588,0.08323254986587435,0.08202722500481231,0.08084366782342924,0.0796814115791893,0.07853999938763577,0.0774189841737575,0.0763179286022871,0.07523640498966405,0.07417399520018476,0.07313029052859962,0.07210489157111276,0.07109740808664938,0.0701074588499367,0.06913467149786083,0.0681786823703563,0.06723913634698674,0.06631568668017891,0.06540799482605741,0.06451573027363222,0.06363857037304446,0.06277620016350516,0.061928312201419054,0.06109460638922504,0.06027478980531881,0.05946857653543573,0.058675687505807296,0.057895850318328744,0.05712879908800402,0.056374274282831933,0.05563202256630251,0.054901796642635135,0.05418335510487947,0.05347646228593405,0.05278088811258797,0.05209640796261123,0.0514228025249301,0.050759857662925005,0.0501073642808246,0.04946511819323977,0.04883291999779101,0.0482105749508263,0.04759789284619998,0.04699468789708897,0.046400778620784226,0.04581598772645384,0.04524014200580111,0.04467307222658324,0.044114613028945183,0.04356460282449166,0.04302288369807576,0.04248930131222422,0.04196370481414911,0.04144594674529618,0.04093588295335162,0.040433372506675044,0.03993827761108111,0.039450463528919434,0.03896979850039172,0.03849615366705914,0.038029402997459744,0.03756942321481048,0.03711609372671564,0.036669296556836026,0.03622891627847084,0.035794839949981005,0.035366957052028074,0.034945159426559354,0.034529341217497615,0.0341193988130837,0.03371523078983378,0.03331673785804663,0.03292382280883899,0.032536390462649,0.03215434761916956,0.03177760300867726,0.0314060672446971,0.031039652777989462,0.03067827385180065,0.030321846458348428,0.029970288296509055,0.02962351873065709,0.029281458750642596,0.028944030932859018,0.028611159402373455,0.028282769796088337,0.02795878922690761,0.027639146248865223,0.027323770823206063,0.027012594285376345,0.026705549312902473,0.026402569894136266,0.026103591297827147,0.025808550043515836,0.025517383872711314,0.025230031720832755,0.02494643368989828,0.0246665310219262,0.024390266073044505,0.02411758228827547,0.023848424176980493,0.02358273728894514,0.023320468191089284,0.02306156444477405,0.02280597458370231,0.022553648092385047,0.022304535385161067,0.022058587785757033,0.02181575750736266,0.021575997633219594,0.021339262097699294,0.02110550566786002,0.020874683925467975,0.02064675324947321,0.02042167079891825,0.020199394496279204,0.01997988301121866,0.019763095744741214,0.019548992813743324,0.019337535035938724,0.01912868391515858,0.01892240162700991,0.0187186510048827,0.018517395526300426,0.018318599299595947,0.018122227050914517,0.01792824411152682,0.017736616405447044,0.01754731043734657,0.0173602932807581,0.017175532566554883,0.016992996471707954,0.016812653708305748,0.01663447351283229,0.016458425635698985,0.01628448033101595,0.016112608346606362,0.015942780914250443,0.015774969740154937,0.01560914699564229,0.015445285308055928,0.015283357751868818,0.015123337840000237,0.01496519951532684,0.014808917142386982,0.014654465499274197,0.014501819769708988,0.01435095553529304,0.014201848767934134,0.014054475822440583,0.013908813429281746,0.01376483868750513,0.013622529057813833,0.013481862355794155,0.013342816745292484,0.013205370731936146,0.013069503156797864,0.01293519319019329,0.012802420325617474,0.012671164373809551,0.01254140545694545,0.012413124002956738,0.012286300739967454,0.012160916690852897,0.012036953167912043,0.011914391767653416,0.011793214365690034,0.011673403111744059,0.011554940424752327,0.01143780898807753,0.011321991744817775,0.011207471893213104,0.011094232882149052,0.010982258406749516,0.01087153240406363,0.010762039048839269,0.010653762749383188,0.010546688143506748,0.010440800094551261,0.01033608368749646,0.01023252422514636,0.010130107224391902,0.010028818412548452,0.009928643723767812,0.00982956929551909,0.009731581465142112,0.009634666766467966,0.009538811926506158,0.009444003862198362,0.009350229677233266,0.009257476658926437,0.009165732275159707,0.009074984171380168,0.00898522016765857,0.008896428255802198,0.00880859659652586,0.008721713516675977,0.00863576750650829,0.008550747217017141,0.008466641457317028,0.008383439192071393,0.008301129538972546,0.008219701766268123,0.008139145290333853,0.008059449673293353,0.007980604620680048,0.00790259997914497,0.007825425734206292,0.007749072008040743,0.3808537078063803,0.3805556802602988,0.37966571700141055,0.37819601346419285,0.37616636569190703,0.3736034185196259,0.3705396929088403,0.36701246045319846,0.36306253798307586,0.3587330727913137,0.3540683805555721,0.3491128854476185,0.34391019729910555,0.3385023459671638,0.332929179723354,0.32722792354331887,0.3214328850479005,0.31557529054439415,0.3096832308392116,0.3037816957696156,0.29789267720081203,0.29203532204566535,0.28622611925162866,0.28047910731576775,0.2748061214476321,0.2692751315472582,0.2639350535773639,0.2587759574881578,0.2537886020094002,0.24896437560235576,0.24429524338216116,0.2397736993205986,0.23539272312826875,0.23114574129197,0.22702659180845236,0.22302949221261628,0.21914901054721453,0.21538003896354224,0.21171776967915554,0.20815767305103233,0.2046954775501355,0.20132715144776353,0.19804888604538062,0.19485708029811571,0.1917483266986265,0.18871939830229803,0.18576723678739562,0.18288894145504986,0.18008175908361201,0.17732797047332569,0.17460525164206772,0.1719149714265591,0.16925848295887036,0.1666369292960281,0.16405126139278486,0.16150225507121657,0.15899052696617413,0.15651654944422763,0.15408066450826452,0.15168309671136426,0.149323965112431,0.14700329431233694,0.14472102461395608,0.14247702135232115,0.14027108344271713,0.13810295119523983,0.13597231344392563,0.13387881403774038,0.1318220577393559,0.12980161557586736,0.1278170296835382,0.12586781768669586,0.12395347664840507,0.12207348662842353,0.1202273138815825,0.1184144137274234,0.11663423311988333,0.11488621294352899,0.11316979006092762,0.11148439913380023,0.10982947423880089,0.10820445029699574,0.10660876433467736,0.10504185659149973,0.10350317149065133,0.10199215848448888,0.10050827278780194,0.0990509760099428,0.0976197366958949,0.0962140307855316,0.09483334199946933,0.0934771621590635,0.09214499144753163,0.0908363386184083,0.08955072115702548,0.08828766540013501,0.08704670661835227,0.08582738906556112,0.08462926599913284,0.08345189967435356,0.08229486131613807,0.08115773107085614,0.0800400979407141,0.07894155970302386,0.07786172281633551,0.0768002023152805,0.07575662169575623,0.07473061279193889,0.07372181564639539,0.07272987837453501,0.07175445702439967,0.07079521543275974,0.06985182507835343,0.06892396493298221,0.06801132131117305,0.06711358771895456,0.06623046470227731,0.06536165969554868,0.06450688687064607,0.06366586698680747,0.06283832724167586,0.06202400112376898,0.06122262826661239,0.06043395430473702,0.05965773073168401,0.05889371476020136,0.058141669184719684,0.05740136224621779,0.05667256749956613,0.05595506368338443,0.05524863459250079,0.054553068953018126,0.053868160300023185,0.05319370685794974,0.052529511423609794,0.051875381251860926,0.05123112794393992,0.05059656733841148,0.04997151940472561,0.04935580813936261,0.048749261464505735,0.04815171112924775,0.04756299261326304,0.04698294503291555,0.04641141104977038,0.04584823678143741,0.04529327171473792,0.04474636862112196,0.04420738347429874,0.043676175370031045,0.04315260644805373,0.04263654181604553,0.0421278494756366,0.041626400250382035,0.04113206771565892,0.04064472813044926,0.04016426037093882,0.03969054586591388,0.03922346853389045,0.038762914721937,0.03830877314614569,0.037860934833714166,0.03741929306657762,0.03698374332657405,0.03655418324208094,0.03613051253609203,0.03571263297569862,0.03530044832291929,0.034893864286864994,0.0344927884771837,0.03409713035875578,0.03370680120760958,0.03332171406800727,0.03294178371068876,0.03256692659222599,0.03219706081546186,0.031832106091000775,0.031471983699727334,0.0311166164563091,0.03076592867367521,0.030419846128427536,0.03007829602716401,0.029741206973691692,0.02940850893709092,0.02908013322062428,0.028756012431453093,0.028436080451142477,0.028120272406937295,0.027808524643773366,0.02750077469702151,0.02719696126592934,0.026897024187746945,0.02660090441251557,0.0263085439785043,0.026019885988265812,0.025734874585308345,0.02545345493135594,0.0251755731841828,0.024901176476010926,0.02463021289244271,0.024362631451929316,0.024098382085748264,0.023837415618480483,0.023579683748971635,0.023325139031768166,0.02307373485900512,0.02282542544274588,0.02258016579775255,0.022337911724676997,0.0220986197936655,0.02186224732835522,0.021628752390264627,0.021398093763558227,0.02117023094017755,0.020945124105332415,0.02072273412333304,0.02050302252376577,0.020285951487995182,0.02007148383598555,0.019859583013433848,0.019650213079208036,0.01944333869307442,0.019238925103717903,0.019036938137038627,0.018837344184720526,0.018640110193067525,0.01844520365209175,0.018252592584858594,0.01806224553707336,0.0178741315669063,0.01768822023504945,0.017504481595001373,0.01732288618356715,0.017143405011577736,0.016966009554815316,0.0167906717451424,0.016617363961831545,0.016446059023083177,0.016276730177736922,0.01610935109716343,0.015943895867335602,0.015780338981076125,0.015618655330470493,0.015458820199450255,0.015300809256535283,0.015144598547734561,0.014990164489599554,0.014837483862429928,0.0146865338036206,0.01453729180115629,0.014389735687242026,0.014243843632070013,0.014099594137720422,0.013956966032187148,0.01381593846353381,0.013676490894170258,0.0135386030952498,0.01340225514118253,0.013267427404265352,0.01313410054941925,0.01300225552903947,0.012871873577949838,0.012742936208460884,0.012615425205531283,0.012489322622023968,0.01236461077406324,0.012241272236483636,0.012119289838371312,0.011998646658697059,0.011879326022033626,0.011761311494362485,0.011644586878962465,0.011529136212381118,0.011414943760485264,0.011301994014591716,0.011190271687671201,0.011079761710630033,0.010970449228663314,0.010862319597679485,0.010755358380796096,0.010649551344900816,0.01054488445728196,0.010441343882322918,0.010338915978260017,0.010237587294004433,0.010137344566021849,0.010038174715274786,0.009940064844221679,0.009843002233873223,0.009746974340904246,0.009651968794821242,0.009557973395180917,0.009464976108863338,0.009372965067394814,0.009281928564320835,0.009191855052629122,0.009102733142217946,0.009014551597413809,0.008927299334533716,0.008840965419492404 +0.1037438458398287,0.1037438458398287,0.10336064103056954,0.10097407186253202,0.0967275684833425,0.09116323709010836,0.08485987227718866,0.07831302992151497,0.07188273391563221,0.06579467351968335,0.06016763362742148,0.0550463205361193,0.05042933853936874,0.04628950164256543,0.042587181834326956,0.03927844659909426,0.036319680110619874,0.033669984817317235,0.031292251977674684,0.029153471870193782,0.02722463451253054,0.025480429140753397,0.023898861926857,0.022460857717027834,0.02114987986697937,0.019951583977698212,0.018853511112926942,0.01784482060273861,0.016916059808777494,0.016058967054426256,0.015266303605355662,0.014531710713534367,0.013849588076839243,0.01321499048626408,0.012623539862688047,0.01207135028998653,0.011554964015009526,0.01107129670286669,0.01061759050886327,0.010191373760110077,0.009790426234861685,0.009412749191163802,0.009056539432998893,0.008720166816054958,0.00840215469027189,0.00810116285547274,0.007815972672464238,0.0075454740271445045,0.007288653891256256,0.007044586262069829,0.006812423295648229,0.006591387475590368,0.006380764682071157,0.006179898045349531,0.005988182484263598,0.005805059844116119,0.005630014560105528,0.0054625697824881685,0.005302283908200288,0.005148747470960752,0.00500158034814481,0.0048604292480688895,0.004724965445950472,0.004594882740782227,0.0044698956087850334,0.004349737532087059,0.004234159483836359,0.00412292855319715,0.004015826695620938,0.003912649595480246,0.0038132056296255974,0.0037173149217303524,0.0036248084784106264,0.0035355273991080787,0.0034493221525968595,0.003366051913740521,0.0032855839548118783,0.003207793086278988,0.003132561142495634,0.0030597765082019225,0.002989333682158436,0.0029211328746029316,0.002855079635554385,0.002791084511274985,0.0027290627264659117,0.002668933890005813,0.002610621722245897,0.0025540538020684344,0.0024991613320765453,0.0024458789204369973,0.0023941443780323077,0.002343898529696918,0.002295085038426686,0.0022476502415442233,0.002201542997894572,0.002156714545224957,0.0021131183669759242,0.0020707100677743004,0.0020294472569823818,0.0019892894397074536,0.001950197914727209,0.0019121356788312535,0.0018750673371171695,0.0018389590188204457,0.0018037782982872927,0.0017694941207325122,0.0017360767324515523,0.0017034976151824672,0.0016717294243346957,0.001640745930826517,0.0016105219662891704,0.0015810333714156345,0.0015522569472484133,0.0015241704092141999,0.0014967523437300805,0.0014699821672158537,0.0014438400873604516,0.0014183070665012365,0.0013933647869834582,0.0013689956183789184,0.001345182586448866,0.0013219093437454288,0.0012991601417526415,0.001276919804475313,0.0012551737033888,0.001233907733670766,0.0012131082916390465,0.0011927622533259483,0.0011728569541238473,0.0011533801694399944,0.0011343200963044502,0.0011156653358766133,0.0010974048768004998,0.001079528079361567,0.0010620246604012308,0.0010448846789469434,0.0010280985225199486,0.0010116568940834487,0.0009955507995972055,0.0009797715361465102,0.0009643106806145955,0.0009491600788708726,0.0009343118354474898,0.0009197583036792023,0.0009054920762829543,0.0008915059763541642,0.0008777930487593889,0.0008643465519048403,0.0008511599498621942,0.0008382269048338857,0.0008255412699413429,0.00081309708231982,0.0008008885565055729,0.0007889100781007447,0.0007771561977027426,0.0007656216250856743,0.0007543012236213492,0.0007431900049292153,0.0007322831237440036,0.0007215758729910977,0.0007110636790601512,0.0007007420972673944,0.0006906068074985648,0.0006806536100238272,0.0006708784214770709,0.0006612772709921417,0.0006518462964891587,0.0006425817411038534,0.0006334799497541382,0.0006245373658374933,0.0006157505280535818,0.0006071160673467975,0.0005986307039631812,0.000590291244617307,0.0005820945797640648,0.0005740376809710452,0.0005661175983872273,0.0005583314583040707,0.0005506764608048196,0.0005431498774987878,0.0005357490493368146,0.000528471384504641,0.0005213143563911457,0.0005142755016280851,0.0005073524181988569,0.0005005427636132165,0.0004938442531454159,0.00048725465813322474,0.0004807718043355208,0.0004743935703458731,0.0004681178860602972,0.0004619427311967914,0.00045586613386474956,0.0004498861691823967,0.0004440009579401691,0.00043820866530860946,0.0004325074995888391,0.0004268957110040846,0.00042137159053079286,0.0004159334687676142,0.0004105797148411625,0.000405308735346949,0.00040011897332429603,0.00039500890726394076,0.00038997705014723495,0.00038502194851556865,0.0003801421815692126,0.0003753363602943108,0.00037060312661707794,0.0003659411525843066,0.00036134913956904617,0.00035682581750082817,0.0003523699441193809,0.000347980304251074,0.0003436557091073619,0.0003393949956042833,0.0003351970257025285,0.0003310606857671875,0.00032698488594658205,0.00032296855956949483,0.000319010662560263,0.00031511017287093486,0.0003112660899301683,0.00030747743410812153,0.00030374324619687206,0.0003000625869058994,0.00029643453637196473,0.0002928581936831471,0.00028933267641638395,0.0002858571201881714,0.00028243067821795133,0.0002790525209038443,0.0002757218354101874,0.0002724378252666843,0.00026919970997865835,0.00026600672464810113,0.000262858119605223,0.0002597531600500301,0.0002566911257038061,0.00025367131047004433,0.0002506930221045821,0.00024775558189469725,0.000244858324346764,0.0002420005968823664,0.00023918175954249188,0.00023640118469960206,0.0002336582567773308,0.00023095237197761915,0.0002282829380149551,0.00022564937385764728,0.00022305110947581778,0.0002204875855959445,0.0002179582534618025,0.00021546257460149294,0.00021300002060054484,0.00021057007288077863,0.00020817222248483146,0.00020580596986614314,0.00020347082468429847,0.00020116630560546882,0.00019889194010793177,0.00019664726429243078,0.00019443182269727097,0.00019224516811803763,0.00019008686143172297,0.0001879564714252568,0.00018585357462822154,0.00018377775514966753,0.00018172860451894606,0.00017970572153035318,0.00017770871209160256,0.00017573718907592964,0.00017379077217776018,0.00017186908777184123,0.000169971768775767,0.00016809845451572022,0.00016624879059546618,0.00016442242876841325,0.00016261902681269003,0.00016083824840919047,0.0001590797630224208,0.00015734324578417944,0.000155628377379917,0.00015393484393774133,0.00015226233691997658,0.00015061055301725,0.00014897919404495825,0.00014736796684215384,0.00014577658317271235,0.0001442047596287474,0.00014265221753623572,0.00014111868286273004,0.00013960388612719514,0.0001381075623118416,0.00013662945077593552,0.00013516929517155046,0.00013372684336114695,0.00013230184733702415,0.00013089406314252685,0.00012950325079499195,0.1180030290223649,0.1180030290223649,0.1177900314231851,0.11553017787947582,0.11110769916658096,0.10509824500410554,0.09814800278966337,0.09082983807307164,0.08357244690392544,0.07665304233129125,0.07022416980493969,0.06434980720533515,0.05903753327950565,0.054262502158317454,0.04998350610797482,0.04615294041889321,0.04272257483120738,0.03964663893597801,0.03688327484334717,0.03439504294599366,0.03214890712580882,0.030115955230298853,0.02827100339447202,0.02659216733364225,0.025060444740392717,0.023659330217454526,0.022374471311314134,0.021193367184382878,0.02010510784838971,0.019100150220327343,0.018170126690377698,0.01730768190120043,0.01650633373667441,0.015760354939810834,0.01506467223266822,0.014414780248539665,0.013806667985758641,0.013236755844839543,0.01270184161535626,0.01219905403902724,0.011725812795316561,0.011279793940801204,0.010858899988466751,0.010461233942577752,0.01008507671297142,0.009728867422884058,0.009391186199875116,0.009070739102467373,0.008766344887878835,0.008476923370490337,0.00820148515779717,0.007939122581848809,0.007689001670494093,0.0074503550249791295,0.007222475489233029,0.007004710512142387,0.00679645711763421,0.006597157408931484,0.0064062945431821085,0.0062233891210609436,0.006047995943169487,0.005879701091223388,0.005718119297350145,0.005562891569404361,0.005413683044159719,0.005270181043679711,0.00513209331312422,0.004999146420839133,0.004871084303818237,0.004747666943586666,0.0046286691592573774,0.004513879506019561,0.004403099268615818,0.004296141540521991,0.004192830380554312,0.004093000039512604,0.003996494250264112,0.0039031655753552995,0.003812874806858789,0.0037254904137036748,0.0036408880322215216,0.003558949996063571,0.003479564902034274,0.003402627208717018,0.003328036865075879,0.00325569896648703,0.003185523435891554,0.0031174247279849407,0.0030513215545455077,0.0029871366291824397,0.0029247964299404807,0.002864230978335625,0.0028053736335293283,0.0027481609004568375,0.0026925322508322682,0.0026384299560449956,0.0025857989310474477,0.002534586588407738,0.0024847427017750416,0.00243621927806315,0.0023889704377178154,0.002342952302485102,0.0022981228901426225,0.002254442015703063,0.0022118711986339767,0.0021703735756762477,0.002129913818875336,0.0020904580584700013,0.0020519738103081525,0.002014429907488396,0.0019777964359447187,0.001942044673714952,0.001907147033652832,0.001873077009359119,0.0018398091241269483,0.001807318882707996,0.0017755827257217869,0.001744577986543023,0.0017142828505116929,0.00168467631632455,0.0016557381594733806,0.001627448897606464,0.0015997897576973817,0.0015727426449138216,0.00154629011308456,0.0015204153366722639,0.0014951020841632082,0.0014703346927923454,0.001446098044527373,0.0014223775432390998,0.0013991590929923361,0.001376429077393457,0.0013541743399361394,0.001332382165289963,0.0013110402614804645,0.0012901367429111739,0.0012696601141832498,0.001249599254668971,0.001229943403799189,0.0012106821470271672,0.0011918054024324196,0.0011733034079322085,0.0011551667090683507,0.0011373861473399866,0.0011199528490545806,0.0011028582146701189,0.0010860939086046388,0.0010696518494889551,0.001053524200840768,0.0010377033621392316,0.0010221819602805136,0.0010069528413951374,0.0009920090630103475,0.0009773438865402645,0.0009629507700883187,0.000948823361547272,0.0009349554919821905,0.0009213411692838052,0.0009079745720790758,0.0008948500438871853,0.0008819620875098242,0.0008693053596444666,0.0008568746657111947,0.0008446649548828617,0.0008326713153096209,0.0008208889695290715,0.0008093132700539408,0.0007979396951289616,0.0007867638446501356,0.0007757814362388126,0.0007649883014639961,0.0007543803822066276,0.0007439537271592789,0.0007337044884560789,0.000723628918426874,0.0007137233664705553,0.0007039842760424883,0.0006944081817514276,0.0006849917065609726,0.0006757315590917601,0.0006666245310198757,0.0006576674945676505,0.0006488574000832365,0.000640191273704979,0.000631666215107674,0.0006232793953270588,0.0006150280546595711,0.0006069095006343452,0.0005989211060547327,0.0005910603071062916,0.0005833246015290865,0.0005757115468514857,0.0005682187586831756,0.0005608439090652399,0.0005535847248747945,0.0005464389862825273,0.0005394045252608333,0.0005324792241407328,0.000525661014215857,0.0005189478743914448,0.0005123378298770688,0.0005058289509211956,0.0004994193515861472,0.0004931071885619652,0.00048689066001784417,0.00048076800448954287,0.0004747374998017974,0.0004687974620242373,0.0004629462444596921,0.00045718223666381337,0.00045150386349466956,0.0004459095841915755,0.000440397891481896,0.0004349673107149262,0.00042961639902197997,0.00042434374450156623,0.00041914796542907694,0.0004140277094899325,0.0004089816530354714,0.00040400850036078067,0.0003991069830038156,0.0003942758590648797,0.00038951391254606125,0.0003848199527097523,0.0003801928134556929,0.000375631352715982,0.00037113445186728097,0.0003667010151598949,0.00036232996916299464,0.0003580202622255277,0.000353770863952292,0.0003495807646947461,0.0003454489750559149,0.00034137452540917285,0.0003373564654302828,0.00033339386364233893,0.0003294858069732547,0.00032563140032523466,0.0003218297661560838,0.0003180800440718137,0.0003143813904302528,0.0003107329779553703,0.00030713399536183236,0.0003035836469896803,0.00030008115244866974,0.00029662574627203447,0.0002932166775793737,0.00028985320974844536,0.0002865346200954522,0.0002832601995637528,0.0002800292524206177,0.0002768410959618237,0.000273695060223906,0.00027059048770371457,0.00026752673308522157,0.0002645031629732556,0.00026151915563399776,0.00025857410074203187,0.0002556673991338119,0.0002527984625672345,0.0002499667134873036,0.0002471715847975983,0.0002444125196374105,0.00024168897116443624,0.00023900040234274485,0.00023634628573603248,0.00023372610330589467,0.00023113934621502212,0.0002285855146352067,0.00022606411755993016,0.00022357467262154325,0.00022111670591279972,0.0002186897518126807,0.00021629335281636092,0.00021392705936925855,0.00021159042970495117,0.0002092830296869864,0.00020700443265438186,0.00020475421927075506,0.0002025319773770046,0.00020033730184736977,0.00019816979444888793,0.0001960290637040792,0.0001939147247568007,0.0001918263992411819,0.00018976371515358814,0.00018772630672745668,0.00018571381431103126,0.00018372588424784875,0.00018176216875992438,0.0001798223258335976,0.0001779060191078903,0.0001760129177654153,0.0001741426964256967,0.0001722950350408613,0.0001704696187936682,0.00016866613799774625,0.00016688428800007231,0.0001651237690855767,0.00016338428638383205,0.13504330539914677,0.13504330539914677,0.13497386016004637,0.13294951713058167,0.12840165457107974,0.12193381226473372,0.11426580415925217,0.10606176480654515,0.09783514382814881,0.08992886454397428,0.0825398365911189,0.07575829209977114,0.06960485279964705,0.06405901936834726,0.059078676465463255,0.054612419566616895,0.05060683633317305,0.047010503703745495,0.04377596000790708,0.040860484820726094,0.038226210539345794,0.035839883623212804,0.03367246238728679,0.03169865750754408,0.029896472866599896,0.028246775829839817,0.0267329096663147,0.025340351728647202,0.024056416192914938,0.022869997826811716,0.021771352324569004,0.0207519085827293,0.019804108520459905,0.018921270459003436,0.01809747254782726,0.017327453196779183,0.01660652591213074,0.01593050632641321,0.015295649553827471,0.014698596296655257,0.014136326377500213,0.013606118582782463,0.01310551587983262,0.012632295218171694,0.012184441249688947,0.011760123406146206,0.01135767585926659,0.010975579961312617,0.010612448824907047,0.01026701375195638,0.009938112264406915,0.009624677525703229,0.009325728972264188,0.009040364000026967,0.008767750572872293,0.008507120638247531,0.008257764250977724,0.008019024319646082,0.007790291901339312,0.00757100198030277,0.007360629674440421,0.007158686820756046,0.006964718897028021,0.006778302242339551,0.00659904154367984,0.0064265675598366,0.006260535057236739,0.006100620935406528,0.005946522522331237,0.0057979560222766666,0.0056546551006158375,0.00551636959196116,0.005382864319412885,0.005253918014083811,0.005129322325237567,0.005008880912408446,0.004892408611798741,0.004779730670045443,0.004670682039171161,0.004565106727165445,0.0044628571992072815,0.004363793825033453,0.004267784368412353,0.004174703515068843,0.004084432435765149,0.003996858381558398,0.003911874308532794,0.0038293785295663435,0.0037492743909099315,0.003671469971565341,0.0035958778036315835,0.003522414611949254,0.0034510010715285964,0.0033815615813731544,0.0033140240534361787,0.00324831971555442,0.003184382927304259,0.0031221510078104963,0.003061564074625869,0.0030025648928662225,0.00294509873385699,0.0028891132426070117,0.002834558313477915,0.0027813859734732355,0.002729550272611618,0.002679007180893732,0.002629714491409583,0.002581631729168749,0.0025347200652653568,0.0024889422360236005,0.0024442624667915017,0.0024006464000781175,0.0023580610277517174,0.0023164746270348,0.0022758567000550783,0.002236177916724857,0.0021974100607396836,0.002159525978502026,0.0021224995307871273,0.002086305546984679,0.002050919781757744,0.0020163188739734106,0.001982480307768741,0.0019493823756255007,0.0019170041433337038,0.0018853254167351733,0.0018543267101422986,0.001823989216335797,0.001794294778051553,0.0017652258608706734,0.001736765527435317,0.0017088974129148566,0.0016816057016534407,0.0016548751049336374,0.0016286908397955282,0.0016030386088527796,0.0015779045810533929,0.0015532753733334236,0.0015291380331165442,0.0015054800216151108,0.0014822891978897245,0.0014595538036290738,0.0014372624486118403,0.0014154040968159746,0.0013939680531425884,0.001372943950722433,0.0013523217387768436,0.0013320916710045144,0.0013122442944683748,0.0012927704389577442,0.0012736612068028224,0.0012549079631186712,0.0012365023264589651,0.0012184361598590356,0.0012007015622498623,0.0011832908602256585,0.0011661966001476293,0.001149411540569133,0.0011329286449665282,0.0011167410747618186,0.0011008421826238788,0.0010852255060348585,0.0010698847611105918,0.0010548138366628902,0.001040006788493097,0.0010254578339065198,0.0010111613464381583,0.000997111850779825,0.0009833040179006082,0.0009697326603516569,0.0009563927277475017,0.0009432793024164795,0.0009303875952124606,0.000917712941481749,0.0009052507971780135,0.0008929967351192581,0.0008809464413807804,0.000869095711818675,0.0008574404487179712,0.0008459766575609068,0.0008347004439099596,0.0008236080104010915,0.0008126956538429072,0.0008019597624169877,0.0007913968129759522,0.000781003368434908,0.0007707760752527325,0.0007607116609996213,0.0007508069320076509,0.0007410587711007104,0.0007314641354012725,0.000722020054210612,0.0007127236269597934,0.0007035720212288373,0.0006945624708310915,0.0006856922739608511,0.0006769587914014484,0.0006683594447916863,0.0006598917149485509,0.000651553140243748,0.0006433413150325673,0.0006352538881327801,0.0006272885613518824,0.0006194430880608856,0.0006117152718130924,0.000604102965005908,0.0005966040675845831,0.0005892165257860544,0.0005819383309215806,0.0005747675181968849,0.0005677021655681953,0.000560740392633314,0.0005538803595562013,0.0005471202660240061,0.0005404583502355162,0.0005338928879196631,0.0005274221913834305,0.0005210446085878756,0.0005147585222514325,0.0005085623489795232,0.0005024545384197121,0.0004964335724412754,0.0004904979643387251,0.0004846462580582251,0.00047887702744624076,0.00047318887551975824,0.00046758043375713274,0.0004620503614092117,0.0004565973448298296,0.00045122009682515483,0.00044591735602123267,0.00044068788624924954,0.00043553047594771375,0.00043044393758132077,0.000425427107075749,0.00042047884326795694,0.00041559802737156653,0.0004107835624566505,0.0004060343729437531,0.0004013494041114952,0.00039672762161741004,0.0003921680110316741,0.0003876695773831364,0.00038323134471753386,0.0003788523556673247,0.00037453167103287125,0.0003702683693745957,0.00036606154661586286,0.0003619103156560796,0.00035781380599394824,0.00035377116336039884,0.00034978154936096266,0.00034584414112737724,0.00034195813097797755,0.0003381227260868354,0.00033433714816123635,0.0003306006331273085,0.00032691243082355354,0.000323271804702102,0.00031967803153736137,0.0003161304011419395,0.00031262821608965226,0.0003091707914453101,0.0003057574545012198,0.00030238754452005664,0.0002990604124841059,0.0002957754208505653,0.000292531943312779,0.0002893293645672948,0.00028616708008642966,0.0002830444958963941,0.0002799610283606706,0.00027691610396856335,0.0002739091591287616,0.0002709396399678308,0.0002680070021333698,0.0002651107106018752,0.0002622502394910659,0.00025942507187659043,0.0002566346996130275,0.0002538786231589693,0.0002511563514062097,0.00024846740151283843,0.00024581129874016343,0.0002431875762933599,0.0002405957751657842,0.00023803544398675556,0.00023550613887285163,0.00023300742328252527,0.00023053886787399331,0.00022810005036634422,0.00022569055540367654,0.00022330997442234014,0.00022095790552107962,0.0002186339533340614,0.00021633772890672926,0.0002140688495743219,0.00021182693884312415,0.00020961162627427353,0.00020742254737010632,0.1554898539987864,0.1554898539987864,0.1554897659811365,0.15387083640930863,0.14929806240957566,0.14239010811917788,0.13394407274716574,0.1247312203951463,0.11537035595116112,0.1062894044265241,0.09774465571599886,0.08986283809912397,0.08268383127908899,0.07619476158442898,0.0703539398321499,0.06510630103847556,0.06039271156217156,0.05615521003617216,0.05233970229482129,0.04889713392792348,0.04578379337147788,0.04296114643829571,0.04039544083243474,0.03805721814538817,0.035920809513196414,0.03396385469796037,0.032166863210480796,0.03051282414985514,0.028986864963662953,0.027575956056404703,0.026268656729230337,0.02505489750780155,0.023925794029604375,0.022873488040554595,0.021891011535867602,0.020972170586267987,0.02011144587275608,0.019303907390740165,0.01854514116991565,0.0178311861899216,0.017158479956745284,0.01652381144648214,0.015924280326739326,0.015357261537093792,0.014820374453619289,0.014311455982706467,0.013828537030193776,0.013369821876266546,0.012933670057385578,0.01251858041603505,0.012123177029052343,0.011746196767464771,0.011386478276297803,0.01104295219288036,0.010714632447604627,0.01040060851273393,0.010100038483183929,0.009812142888874116,0.00953619915160709,0.009271536610849371,0.009017532052616416,0.008773605684054383,0.008539217503573678,0.008313864022637018,0.008097075300691254,0.007888412259429708,0.007687464246603222,0.007493846823135043,0.007307199750356822,0.007127185156861904,0.0069534858667980246,0.006785803873484973,0.006623858944016711,0.006467387342092569,0.0063161406577055415,0.006169884733526499,0.006028398678914567,0.005891473963418813,0.00575891358248709,0.00563053128883976,0.005506150883630579,0.005385605562097541,0.0052687373089421565,0.005155396339129349,0.005045440580223677,0.0049387351927486205,0.004835152125382392,0.004734569702112343,0.0046368722387261875,0.004541949686264557,0.004449697299274615,0.004360015326893021,0.004272808724971075,0.004187986887602653,0.004105463396564068,0.004025155787301065,0.003946985330216765,0.0038708768261149543,0.0037967584147565437,0.0037245613955660113,0.003654220059607899,0.003585671532024863,0.003518855624190236,0.0034537146948941423,0.003390193519929603,0.0033282391694986094,0.003267800892901693,0.0032088300100171835,0.003151279809110508,0.003095105450554447,0.0030402638760668485,0.002986713723104928,0.002934415244081643,0.002883330230091214,0.0028334219388585842,0.0027846550266430498,0.0027369954838483593,0.0026904105741089755,0.0026448687766358185,0.0026003397316242466,0.0025567941885362355,0.0025142039570842218,0.002472541860754726,0.0024317816927217507,0.0023918981740075375,0.0023528669137616483,0.0023146643715339136,0.0022772678214271003,0.0022406553180225526,0.0022048056639767943,0.0021696983791971787,0.002135313671507005,0.002101632408718148,0.0020686360920336303,0.0020363068307081215,0.002004627317896816,0.0019735808076305835,0.0019431510928558608,0.0019133224844833183,0.0018840797913925388,0.0018554083013415275,0.0018272937627356722,0.00179972236721064,0.0017726807329879243,0.0017461558889640945,0.0017201352594956058,0.0016946066498456957,0.0016695582322592993,0.001644978532635308,0.0016208564177666582,0.0015971810831208774,0.0015739420411338973,0.0015511291099936572,0.0015287324028890445,0.0015067423177023806,0.0014851495271247053,0.0014639449691731207,0.0014431198380925874,0.0014226655756234322,0.001402573862618043,0.0013828366109906235,0.0013634459559851528,0.001344394248746324,0.0013256740491808749,0.0013072781190955494,0.001289199415599597,0.0012714310847604061,0.0012539664555003532,0.0012367990337253376,0.0012199224966741905,0.001203330687479655,0.0011870176099320784,0.0011709774234364644,0.001155204438155613,0.0011396931103307615,0.0011244380377725877,0.0011094339555153473,0.0010946757316276335,0.0010801583631726615,0.001065876972312774,0.001051826802551638,0.00103800321510878,0.0010244016854212628,0.001011017799766863,0.0009978472520046089,0.0009848858404274896,0.000972129464723059,0.0009595741230378664,0.0009472159091411436,0.0009350510096845688,0.0009230757015538559,0.000911286349308863,0.0008996794027087427,0.0008882513943190886,0.0008769989371974818,0.0008659187226551273,0.0008550075180912411,0.0008442621648976145,0.0008336795764309196,0.0008232567360497806,0.0008129906952148333,0.0008028785716490115,0.0007929175475560501,0.0007831048678950277,0.0007734378387090966,0.0007639138255060369,0.0007545302516893304,0.0007452845970375455,0.0007361743962304593,0.0007271972374204001,0.0007183507608468338,0.000709632657493191,0.0007010406677840977,0.0006925725803217281,0.0006842262306600469,0.0006759995001153041,0.00066789031461199,0.00065989664356272,0.0006520164987810214,0.0006442479334258852,0.0006365890409771259,0.0006290379542402269,0.0006215928443801004,0.000614251919982482,0.00060701342614218,0.0005998756435773682,0.0005928368877688001,0.0005858955081235126,0.0005790498871619374,0.0005722984397277812,0.0005656396122199128,0.0005590718818456515,0.0005525937558945166,0.0005462037710321398,0.0005399004926134413,0.0005336825140145527,0.0005275484559829852,0.0005214969660052146,0.0005155267176914937,0.0005096364101770918,0.0005038247675395489,0.0004980905382315345,0.000492432494528586,0.00048684943199160555,0.00048134016894341755,0.00047590354595907045,0.0004705384253694225,0.00046524369077772284,0.0004600182465885633,0.0004548610175491335,0.000449770948302201,0.0004447470029505322,0.00043978816463250065,0.00043489343510833835,0.00043006183435700073,0.00042529240018313204,0.0004205841878339151,0.00041593626962550405,0.00041134773457883537,0.0004068176880643597,0.000402345251455691,0.0003979295617917428,0.00039356977144715927,0.00038926504781087713,0.0003850145729724105,0.0003808175434158741,0.00037667316972136435,0.0003725806762735404,0.0003685393009772698,0.00036454829497997666,0.0003606069224007235,0.0003567144600656877,0.00035287019724991977,0.0003490734354251826,0.0003453234880137903,0.00034161968014810525,0.0003379613484357676,0.0003343478407303396,0.0003307785159072783,0.000327252743645129,0.00032376990421167993,0.0003203293882551174,0.0003169305965999164,0.00031357294004739656,0.0003102558391808515,0.00030697872417500687,0.00030374103460987893,0.0003005422192887728,0.00029738173606038017,0.0002942590516448429,0.00029117364146374067,0.0002881249894737734,0.00028511258800420535,0.0002821359375978666,0.00027919454685564364,0.0002762879322844302,0.0002734156181483157,0.0002705771363231015,0.00026777202615393703,0.0002649998343160485,0.18012755094461627,0.18012755094461627,0.18012755094461627,0.1790547755182409,0.1746191674048045,0.1673332924452549,0.15806965123030203,0.1477226065517239,0.13704112670021912,0.1265632225938615,0.11662505954168911,0.10740439025430114,0.09896952335964959,0.09132032824841338,0.08441789856206186,0.07820412687594464,0.072613758184263,0.06758134773225323,0.06304497352923678,0.0589479769257093,0.055239556154663694,0.051874725896163494,0.04881395197852708,0.04602264194435906,0.04347059352042951,0.04113145582934082,0.03898223045480621,0.03700282358176385,0.035175651630811794,0.03348529818754279,0.03191821783431884,0.030462481671240632,0.029107559240233866,0.027844131876114578,0.02666393299052019,0.025559611331644267,0.024524613791399703,0.02355308482092393,0.02263977995201396,0.02177999130335546,0.020969483278159208,0.0202044369391479,0.019481401783198113,0.018797253837128436,0.01814915916369786,0.01753454200743022,0.016951056927932917,0.016396564367413165,0.01586910918223562,0.015366901738337902,0.014888301229110945,0.014431800923989982,0.013996015097873056,0.013579667426918494,0.013181580666267614,0.012800667450767926,0.012435922081411442,0.012086413178707397,0.01175127709999233,0.011429712031167938,0.011120972674975839,0.010824365467835858,0.01053924426586284,0.010265006448066872,0.010001089391113,0.009746967275576477,0.009502148188398993,0.009266171490438967,0.009038605421633686,0.00881904491946334,0.008607109629161122,0.008402442086557911,0.008204706056551454,0.008013585012067538,0.007828780740020469,0.007650012062214585,0.007477013660422601,0.007309534995984479,0.007147339315279122,0.006990202733301168,0.006837913388362855,0.006690270661629471,0.006547084455832703,0.006408174528044042,0.006273369871892892,0.006142508145054668,0.006015435138221497,0.005892004282134643,0.005772076189561935,0.005655518229395547,0.005542204130301354,0.005432013611574771,0.005324832039077301,0.005220550104303519,0.005119063524804427,0.005020272764343349,0.004924082771301104,0.004830402733966621,0.004739145851472738,0.00465022911922991,0.004563573127810281,0.0044791018743191345,0.004396742585363749,0.004316425550808628,0.004238083967562119,0.004161653792703205,0.00408707360530913,0.0040142844763953025,0.00394322984641937,0.0038738554098499173,0.003806109006330498,0.003739940518008535,0.0036753017726302377,0.003612146452028019,0.0035504300056602954,0.003490109568881627,0.0034311438856476197,0.0033734932353797218,0.003317119363731102,0.003261985417018272,0.003208055880093802,0.003155296517454071,0.0031036743173887245,0.0030531574389926325,0.003003715161870095,0.0029553178383772724,0.0029079368482539223,0.002861544555508119,0.002816114267426281,0.0027716201955865294,0.0027280374187655483,0.002685341847631693,0.0026435101911264085,0.002602519924441109,0.002562349258503408,0.002522977110889384,0.002484383078087646,0.002446547409041496,0.0024094509799021985,0.0023730752699302315,0.0023374023384830954,0.002302414803035524,0.0022680958181774237,0.0022344290555401463,0.0022013986846044567,0.002168989354344406,0.002137186175667103,0.0021059747046074523,0.002075340926241154,0.0020452712392805238,0.0020157524413204086,0.0019867717147014356,0.001958316612962571,0.0019303750478536473,0.0019029352768815838,0.001875985891365589,0.0018495158049763017,0.001823514242737847,0.0017979707304702482,0.0017728750846523692,0.0017482174026860556,0.001723988053543595,0.0017001776687802057,0.0016767771338965156,0.0016537775800343647,0.001631170375991529,0.0016089471205415987,0.0015870996350446816,0.001565619956337514,0.0015445003298899434,0.0015237332032166343,0.0015033112195333223,0.0014832272116463792,0.0014634741960669105,0.00144404536733913,0.0014249340925743435,0.0014061339061818931,0.0013876385047892072,0.0013694417423424285,0.001351537625381195,0.0013339203084797992,0.0013165840898481682,0.0012995234070865165,0.0012827328330867794,0.001266207072075929,0.001249940955794854,0.0012339294398076878,0.0012181675999366848,0.0012026506288171017,0.0011873738325682939,0.0011723326275758848,0.001157522537381022,0.001142939189672516,0.0011285783133782239,0.0011144357358512998,0.001100507380148559,0.0010867892623968925,0.0010732774892446856,0.0010599682553952328,0.0010468578412185952,0.0010339426104397618,0.0010212190078997673,0.0010086835573873323,0.0009963328595384222,0.0009841635898014667,0.0009721724964653924,0.0009603563987488968,0.0009487121849482966,0.0009372368106420393,0.000925927296950062,0.0009147807288455857,0.0009037942535181554,0.0008929650787856998,0.000882290471554049,0.0008717677563224376,0.0008613943137330026,0.0008511675791633053,0.0008410850413601315,0.0008311442411130256,0.0008213427699666719,0.0008116782689704924,0.0008021484274641244,0.0007927509818980108,0.0007834837146875803,0.0007743444531000285,0.0007653310681727812,0.0007564414736622084,0.0007476736250221311,0.0007390255184107771,0.0007304951897254201,0.0007220807136637709,0.0007137802028114117,0.0007055918067540874,0.0006975137112145603,0.0006895441372128703,0.0006816813402494095,0.0006739236095102476,0.0006662692670935611,0.0006587166672570763,0.0006512641956855728,0.0006439102687777836,0.0006366533329523521,0.000629491863971894,0.0006224243662850345,0.0006154493723855685,0.0006085654421884137,0.0006017711624216129,0.0005950651460343593,0.0005884460316199505,0.0005819124828538025,0.0005754631879457399,0.0005690968591062397,0.0005628122320263045,0.0005566080653703617,0.000550483140281974,0.0005444362599020918,0.0005384662488991062,0.000532571953010814,0.0005267522385976823,0.0005210059922070931,0.0005153321201483569,0.0005097295480782246,0.0005041972205964241,0.0004987341008511628,0.0004933391701540376,0.00048801142760445803,0.00048274988972292834,0.0004775535900932738,0.0004724215790133977,0.000467352923154255,0.0004623467052270587,0.0004574020236582978,0.00045251799227242736,0.00044769373998199136,0.0004429284104851187,0.00043822116196983016,0.00043357116682549374,0.00042897761136082875,0.0004244396955283728,0.00041995663265546656,0.000415527649181187,0.00041115198439949097,0.0004068288902080475,0.0004025576308628949,0.0003983374827386189,0.00039416773409385044,0.00039004768484215426,0.00038597664632798213,0.000381953941107643,0.0003779789027351346,0.00037405087555278274,0.0003701692144863907,0.0003663332848450162,0.0003625424621251142,0.00035879613181888717,0.0003550936892270024,0.00035143453927512556,0.00034781809633466926,0.0003442437840472748,0.0003407110351531203,0.13233673906915508,0.13233673906915508,0.13233673906915508,0.13218658319392662,0.13100759301360154,0.128728945297517,0.1254913137584519,0.12147716289851675,0.11688601417315161,0.11191257718024641,0.10673112812080496,0.1014869409517332,0.09629373270530221,0.0912352766947893,0.08636933633584919,0.0817324842769968,0.07734487925497846,0.07321450516228058,0.06934067858839658,0.06571681166727858,0.0623325083018846,0.05917510634681914,0.056230781195767146,0.05348531398160376,0.050924609979400424,0.0485350349135215,0.04630362101575156,0.044218181616922266,0.04226736276227718,0.04044065247197722,0.03872836237937028,0.03712159214136033,0.03561218385824409,0.034192671466544984,0.03285622844479772,0.031596616023340046,0.03040813328320159,0.02928556996967185,0.028224162462396993,0.027219553085107186,0.02626775276709868,0.025365106959429368,0.02450826464233433,0.02369415022326428,0.022919938107887415,0.022183029722374608,0.02148103276994022,0.020811742514483908,0.020173124897049123,0.01956330130529744,0.018980534831029933,0.01842321786555291,0.01788986089680029,0.017379082385430504,0.016889599609411422,0.016420220377971816,0.01596983552604427,0.015537412109677948,0.015121987231295885,0.014722662431189935,0.014338598588442384,0.013969011280457567,0.013613166555698697,0.013270377079026997,0.01293999861330065,0.012621426804736768,0.012314094242899169,0.01201746776921743,0.01173104601062645,0.011454357117320117,0.0111869566857325,0.010928425849793717,0.01067836952517887,0.010436414792802752,0.010202209409167214,0.009975420432367092,0.009755732953668168,0.00954284892551805,0.009336486077734884,0.009136376914393842,0.008942267784636304,0.008753918021243904,0.008571099141405384,0.008393594104593264,0.008221196622937545,0.008053710519896583,0.007890949133388577,0.007732734759901254,0.007578898136384757,0.007429277957018041,0.007283720422188299,0.007142078817240518,0.007004213118774145,0.0068699896264353645,0.006739280618331311,0.006611964028343225,0.006487923143758344,0.0063670463217602976,0.006249226723446685,0.006134362064135721,0.006022354378827968,0.005913109801777401,0.0058065383592004706,0.0057025537742369115,0.005601073283332855,0.0055020174632853455,0.005405310068242013,0.005310877876004009,0.005218650543022588,0.005128560467533495,0.005040542660304197,0.004954534622511833,0.004870476230304089,0.0047883096256217976,0.004707979112900071,0.004629431061282926,0.004552613812016474,0.0044774775907081964,0.004403974424157143,0.004332058061486849,0.004261683899323555,0.004192808910783653,0.004125391578048237,0.00405939182831863,0.003994770972956227,0.003931491649629135,0.003869517767293027,0.003808814453848143,0.0037493480063243616,0.0036910858434521182,0.0036339964604915685,0.00357804938619457,0.0035232151417850916,0.0034694652018493464,0.0034167719570347924,0.0033651086784598546,0.0033144494837475456,0.0032647693045958666,0.0032160438558060753,0.0031682496056944145,0.003121363747814494,0.0030753641739263973,0.0030302294481476064,0.0029859387822271832,0.002942472011887822,0.0028998095741811338,0.002857932485808797,0.0028168223223605546,0.0027764611984253404,0.002736831748533174,0.0026979171088886847,0.0026597008998569833,0.0026221672091684195,0.0025853005758068462,0.002549085974549998,0.0025135088011321877,0.002478554857999136,0.002444210340629758,0.002410461824397584,0.0023772962519479396,0.002344700921067511,0.002312663473024755,0.002281171881358888,0.0022502144410993714,0.0022197797583956695,0.002189856740539722,0.0021604345863645673,0.002131502777001528,0.0021030510669822725,0.0020750694756697277,0.0020475482790043645,0.002020478001552827,0.00199384940884512,0.0019676534999898245,0.0019418815005546042,0.0019165248557015803,0.0018915752235668737,0.0018670244688748258,0.0018428646567762931,0.0018190880469033288,0.0017956870876305563,0.001772654410535298,0.0017499828250488601,0.0017276653132904892,0.0017056950250780546,0.001684065273107589,0.001662769528295474,0.0016418014152771885,0.001621154708055793,0.001600823325795488,0.0015808013287539305,0.0015610829143483066,0.0015416624133500723,0.001522534286203789,0.0015036931194646653,0.0014851336223514144,0.0014668506234093949,0.001448839067280218,0.001431094011574183,0.0014136106238410344,0.001396384178636477,0.0013794100546802297,0.0013626837321026478,0.0013462007897766346,0.0013299569027320833,0.0013139478396492535,0.0012981694604291877,0.0012826177138378016,0.001267288635221306,0.0012521783442906635,0.0012372830429720968,0.0012225990133221767,0.0012081226155046696,0.0011938502858272573,0.0011797785348362472,0.0011659039454667776,0.0011522231712473854,0.001138732934556561,0.001125430024929773,0.0011123112974152176,0.0010993736709768904,0.0010866141269428955,0.0010740297074982126,0.001061617514219947,0.0010493747066538494,0.0010372985009309557,0.0010253861684225195,0.0010136350344327203,0.0010020424769273991,0.0009906059252979087,0.0009793228591588716,0.0009681908071789965,0.0009572073459434187,0.0009463700988472176,0.0009356767350186673,0.0009251249682714614,0.0009147125560851576,0.0009044372986125297,0.0008942970377136013,0.0008842896560150991,0.0008744130759947012,0.0008646652590894651,0.0008550442048273135,0.0008455479499813983,0.0008361745677462818,0.0008269221669354302,0.0008177888911993458,0.00080877291826387,0.0007998724591876898,0.0007910857576389968,0.0007824110891903412,0.0007738467606313026,0.0007653911092985622,0.0007570425024225272,0.0007487993364905018,0.0007406600366255724,0.0007326230559809096,0.000724686875148998,0.0007168500015854994,0.0007091109690470167,0.0007014683370427957,0.0006939206902996507,0.0006864666382398679,0.0006791048144717961,0.0006718338762925078,0.0006646525042025651,0.0006575594014322819,0.0006505532934792612,0.0006436329276569856,0.0006367970726538884,0.000630044518102988,0.0006233740741615339,0.0006167845711004897,0.0006102748589035599,0.00060384380687562,0.0005974903032600252,0.0005912132548649109,0.0005850115866980006,0.0005788842416097676,0.0005728301799448266,0.0005668483792010803,0.0005609378336967609,0.0005550975542449052,0.0005493265678351575,0.0005436239173227941,0.0005379886611245357,0.0005324198729212983,0.0005269166413674686,0.0005214780698066311,0.0005161032759935482,0.0005107913918223335,0.0005055415630604286,0.0005003529490885467,0.000495224722646203,0.000490156069582765,0.00048514618861396683,0.00048019429108353003,0.0004752996007300508,0.00047046135345880897,0.0004656787971184748,0.1567914009832549,0.1567914009832549,0.1567914009832549,0.1567623447369895,0.1557954168616705,0.15351824945676898,0.1500730341827133,0.14565828936713326,0.14050074806015989,0.13482877083626085,0.12885203322143046,0.12274925425057615,0.11666330637144337,0.11070177423609645,0.1049407905700906,0.0994303437998488,0.09419982229921012,0.08926308894591246,0.08462277024144398,0.0802736899627271,0.07620550955388246,0.07240469431205981,0.06885593728514519,0.06554316333840945,0.06245021728561572,0.05956131955810241,0.05686135408591041,0.054336037220877584,0.05197200385950951,0.049756837127695165,0.047679060595255215,0.045728106502215954,0.04389426946153737,0.04216865219281268,0.04054310775164561,0.039010181231775846,0.037563052866620296,0.036195483722193625,0.034901764664898575,0.0336766689408242,0.03251540847047919,0.03141359381100917,0.03036719764235056,0.029372521577182176,0.028426166064861053,0.027525003147661813,0.02666615182782417,0.025846955811605257,0.02506496340877004,0.02431790938085139,0.02360369854737905,0.022920390975492994,0.022266188594119343,0.02163942308893127,0.021038544948346127,0.020462113543876805,0.01990878813999676,0.019377319739542945,0.01886654368047079,0.01837537290856804,0.017902791858707755,0.017447850884266505,0.01700966118071078,0.016587390155022266,0.016180257197667535,0.015787529818372618,0.015408520110942178,0.015042581515975241,0.01468910585351654,0.014347520600540585,0.0140172863906881,0.013697894715977292,0.013388865812203284,0.013089746711568359,0.012800109447701883,0.012519549399658754,0.01224768376280958,0.011984150135666035,0.011728605212742571,0.011480723574482566,0.011240196566119336,0.011006731258082292,0.010780049481258876,0.010559886931009128,0.010345992334392623,0.010138126675562513,0.009936062474716637,0.00973958311642066,0.009548482223462306,0.009362563072738367,0.009181638049975157,0.009005528140343791,0.008834062452296322,0.008667077772153855,0.008504418147191968,0.00834593449514932,0.00819148423825717,0.008040930960031304,0.007894144083223316,0.0077509985674395435,0.007611374625061925,0.007475157454210453,0.007342236987576592,0.007212507656059802,0.007085868166206871,0.006962221290537002,0.006841473669900694,0.006723535627086432,0.00660832099093974,0.006495746930324028,0.006385733797289784,0.006278204978870399,0.006173086756964013,0.006070308175793043,0.005969800916478658,0.005871499178289607,0.005775339566160635,0.005681260984103424,0.005589204534153085,0.005499113420526567,0.005410932858681641,0.00532460998899136,0.00524009379476534,0.005157335024368838,0.005076286117201788,0.004996901133323123,0.00491913568651175,0.004842946880572898,0.0047682932487108365,0.004695134695795684,0.004623432443370219,0.004553148977244605,0.004484247997540749,0.0044166943710547135,0.004350454085814932,0.00428549420771761,0.004221782839133964,0.004159289079383925,0.004097982986980676,0.00403783554355586,0.003978818619377269,0.0039209049403815446,0.0038640680566432504,0.00380828231220928,0.00375352281623151,0.003699765415331424,0.0036469866671392857,0.0035951638149484414,0.0035442747634316686,0.003494298055368209,0.003445212849334083,0.003396998898307869,0.003349636529151461,0.0033031066229228558,0.0032573905959828015,0.0032124703818592363,0.0031683284138327304,0.0031249476082125132,0.003082311348269789,0.003040403468799303,0.0029992082412815127,0.0029587103596168556,0.0029188949264089417,0.0028797474397708927,0.0028412537806324274,0.0028034002005257455,0.0027661733098300416,0.002729560066453361,0.0026935477649351115,0.002658124025949761,0.0026232767861952997,0.0025889942886506987,0.002555265073185448,0.0025220779675085223,0.0024894220784411987,0.0024572867835009893,0.0024256617227838115,0.002394536791132683,0.0023639021305801315,0.0023337481230549574,0.002304065383341482,0.0022748447522816695,0.002246077290210872,0.002217754270616799,0.002189867174014549,0.002162407682028061,0.00213536767167049,0.0021087392098156485,0.0020825145478536103,0.002056686116522349,0.002031246520910197,0.00200618853562154,0.001981505100099996,0.0019571893141035095,0.0019332344333246817,0.0019096338651523174,0.0018863811645679436,0.0018634700301727323,0.0018408943003403208,0.0018186479494900513,0.0017967250844775134,0.0017751199410972376,0.0017538268806938876,0.0017328403868779733,0.0017121550623427106,0.0016917656257776227,0.0016716669088765867,0.0016518538534362054,0.0016323215085416371,0.0016130650278370973,0.0015940796668773459,0.001575360780558408,0.0015569038206240753,0.0015387043332458093,0.0015207579566738814,0.001503060418956544,0.0014856075357259815,0.0014683952080480494,0.0014514194203339768,0.0014346762383118975,0.0014181618070565074,0.001401872349074252,0.001385804162443143,0.0013699536190047582,0.0013543171626069345,0.0013388913073957827,0.0013236726361547351,0.001308657798690026,0.0012938435102604743,0.001279226550050411,0.001264803759684317,0.0012505720417821014,0.0012365283585531372,0.0012226697304286598,0.0012089932347307457,0.0011954960043769022,0.001182175226619423,0.0011690281418178239,0.001156052042244118,0.001143244270919394,0.0011306022204808997,0.0011181233320789147,0.0011058050943019814,0.0010936450421303381,0.001081640755916209,0.0010697898603903484,0.001058090023694002,0.0010465389564357317,0.001035134410771888,0.0010238741795106875,0.0010127560952387284,0.0010017780294694408,0.0009909378918130241,0.0009802336291667457,0.0009696632249256834,0.0009592246982128231,0.000948916103128182,0.0009387355280163279,0.0009286810947519755,0.0009187509580427037,0.0009089433047488939,0.0008992563532199818,0.0008896883526467065,0.0008802375824290597,0.0008709023515590848,0.0008616809980186654,0.0008525718881914848,0.0008435734162889098,0.0008346840037895372,0.0008259020988916722,0.0008172261759788674,0.0008086547350978203,0.0008001863014484301,0.0007918194248856494,0.0007835526794329629,0.000775384662806815,0.0007673139959521876,0.0007593393225886701,0.0007514593087668698,0.0007436726424349935,0.0007359780330150234,0.0007283742109886559,0.0007208599274924391,0.0007134339539219887,0.0007060950815450274,0.0006988421211231152,0.000691673902541576,0.0006845892744477892,0.0006775871038973551,0.000670666276008016,0.0006638256936212514,0.0006570642769710536,0.0006503809633600933,0.0006437747068428015,0.000637244477915302,0.0006307892632120987,0.0006244080652090891,0.0006180999019331129,0.0006118638066775958,0.0006056988277242581,0.18690165398723654,0.18690165398723654,0.18690165398723654,0.18690165398723654,0.18629376442081308,0.1841360886383213,0.18055114496389196,0.17575011005963986,0.16998806285022866,0.16353200274245755,0.15663457597795757,0.14951669918453836,0.14235914906909974,0.1353012606447918,0.12844424035696805,0.1218568355726074,0.11558171209639903,0.10964153097579575,0.10404422196096498,0.09878728758474367,0.09386116446325382,0.08925176012921789,0.08494231366106729,0.08091472510837973,0.07715048042926383,0.0736312757428802,0.07033942245457263,0.0672580955012663,0.0643714712253233,0.0616647890544679,0.05912436176339235,0.0567375520599555,0.05449272805361618,0.05237920638389435,0.05038718905626055,0.04850769807751292,0.04673251059319764,0.04505409625070445,0.04346555782839038,0.041960575700037486,0.040533356383595565,0.03917858521011457,0.03789138301095988,0.036667266636158546,0.0355021130680901,0.034392126870686504,0.03333381070713904,0.032323938662760066,0.031359532120111125,0.030437837948194997,0.029556308784125865,0.028712585203315336,0.027904479591730726,0.027129961550774958,0.02638714468136567,0.025674274608860348,0.024989718124218734,0.024331953329480228,0.02369956068711699,0.023091214883172912,0.02250567742352017,0.02194178989090554,0.02139846779803129,0.020874694978656363,0.020369518464702082,0.019882043802784768,0.019411430768351102,0.018956889439915227,0.018517676599713675,0.01809309243052199,0.017682477481402177,0.01728520987791803,0.016900702754746193,0.016528401890812217,0.016167783529025165,0.015818352364405715,0.015479639685999412,0.015151201659327151,0.01483261773740229,0.014523489189459591,0.014223437737560353,0.013932104292128105,0.013649147778318157,0.013374244045829556,0.013107084855450014,0.012847376936221903,0.012594841107643114,0.012349211461831886,0.012110234600999071,0.011877668925987501,0.011651283971998778,0.011430859787943658,0.011216186356172886,0.011007063049593252,0.010803298123433239,0.010604708239141098,0.010411118018106978,0.010222359623073888,0.010038272365291725,0.009858702335602949,0.009683502057801259,0.009512530162732553,0.009345651081716094,0.009182734757988595,0.009023656374955672,0.00886829610013627,0.008716538843764497,0.008568274031093679,0.00842339538750804,0.008281800735627216,0.008143391803632972,0.008008074044110667,0.007875756462748058,0.007746351456272672,0.007619774659065307,0.0074959447979129545,0.007374783554408979,0.00725621543454143,0.007140167645034917,0.0070265699760522285,0.006915354689876434,0.006806456415226351,0.006699812046878238,0.006595360650290444,0.006493043370940955,0.006392803348116869,0.006294585632901035,0.006198337110123125,0.006104006424056809,0.00601154390765307,0.005920901515121866,0.0058320327576766836,0.005744892642273351,0.005659437613182683,0.005575625496247901,0.005493415445681987,0.0054127678932766555,0.005333644499894288,0.005256008109126053,0.005179822703006424,0.005105053359676142,0.005031666212899369,0.004959628413338838,0.0048889080915022805,0.004819474322278402,0.004751297090981126,0.004684347260832354,0.00461859654181039,0.004554017460799289,0.004490583332976408,0.004428268234380146,0.004367046975599482,0.004306895076535905,0.0042477887421851004,0.0041897048393918215,0.004132620874533853,0.0040765149720900186,0.004021365854055092,0.003967152820160891,0.003913855728867986,0.0038614549790942716,0.0038099314926454135,0.0037592666973190088,0.0037094425106506666,0.0036604413242748296,0.0036122459888732936,0.0035648397996868725,0.0035182064825640133,0.0034723301805260434,0.003427195440825172,0.003382787202475086,0.003339090784234916,0.003296091873025755,0.003253776512764303,0.0032121310935945223,0.0031711423415017002,0.0031307973082931235,0.003091083361931059,0.003051988177202241,0.00301349972671249,0.0029756062721918866,0.0029382963560986397,0.00290155879351043,0.0028653826642903468,0.002829757305518734,0.002794672304179068,0.0027601174900886783,0.002726082929064651,0.0026925589163164987,0.0026595359700555448,0.002627004825314687,0.0025949564279692037,0.0025633819289515238,0.0025322726786531713,0.002501620221505605,0.002471416290735114,0.0024416528032840264,0.002412321854892619,0.0023834157153362736,0.00235492682381102,0.002326847784463762,0.002299171362060772,0.0022718904777899998,0.0022449982051922853,0.002218487766217394,0.0021923525273993064,0.0021665859961481435,0.0021411818171534936,0.0021161337688956746,0.002091435760261557,0.0020670818272602934,0.002043066129836927,0.002019382948779524,0.0019960266827169964,0.001972991845204872,0.001950273061895096,0.0019278650677883545,0.001905762704565174,0.0018839609179936185,0.0018624547554108998,0.0018412393632768382,0.0018203099847959483,0.0017996619576070758,0.0017792907115375483,0.0017591917664200028,0.0017393607299702137,0.001719793295723075,0.0017004852410260562,0.0016814324250874189,0.001662630787077844,0.0016440763442836556,0.001625765190310357,0.0016076934933341065,0.0015898574944007175,0.0015722535057698995,0.0015548779093036355,0.001537727154897578,0.0015207977589534118,0.0015040863028919123,0.00148758943170475,0.0014713038525441125,0.0014552263333492189,0.0014393537015079682,0.0014236828425535555,0.0014082106988943638,0.0013929342685763974,0.0013778506040772252,0.0013629568111307678,0.001348250047581372,0.0013337275222671935,0.0013193864939313813,0.0013052242701605014,0.001291238206349572,0.0012774257046924095,0.001263784213197301,0.0012503112247267186,0.0012370042760606376,0.0012238609469826997,0.0012108788593888002,0.0011980556764169441,0.001185389101598476,0.0011728768780295742,0.001160516787562618,0.001148306650017042,0.0011362443224086438,0.001124327698197518,0.0011125547065535934,0.0011009233116394716,0.0010894315119102569,0.0010780773394294361,0.001066858859201019,0.0010557741685170278,0.0010448213963201072,0.001033998702580805,0.0010233042776893102,0.0010127363418608066,0.0010022931445546977,0.0009919729639068858,0.0009817741061749093,0.0009716949051957547,0.0009617337218555775,0.0009518889435716044,0.0009421589837854651,0.0009325422814678366,0.0009230373006340624,0.0009136425298706067,0.0009043564818717004,0.0008951776929864157,0.0008861047227755421,0.0008771361535781244,0.0008682705900875657,0.000859506658936665,0.0008508430082918804,0.0008422783074561967,0.0008338112464805359,0.000825440535783593,0.0008171649057795503,0.0008089831065139397,0.0008008939073071154,0.0007928960964052726,0.19003399225897286,0.19003399225897286,0.19003399225897286,0.19003399225897286,0.18983747425437153,0.18826431046192427,0.18521108815753778,0.1808614295309631,0.17545443119088688,0.1692526816907246,0.16251377545635884,0.15546973232884317,0.1483154557842135,0.1412049847797264,0.13425322085532707,0.12754077155939944,0.12112005194858609,0.11502142405603287,0.10925870672052578,0.10383377995745402,0.09874024669008723,0.09396623853839386,0.08949650218644518,0.08531391053686718,0.08140052980266967,0.07773835267181231,0.07430978557799743,0.07109795813867134,0.06808690613806899,0.06526166614430279,0.06260830959286369,0.06011393642405087,0.05776664260686951,0.05555547165823417,0.05347035719616803,0.0515020613534965,0.04964211229649704,0.047882742970608766,0.04621683240563031,0.04463785036312257,0.04313980573033678,0.0417171988092123,0.04036497747976113,0.0390784971088487,0.03785348400985618,0.03668600222230241,0.03557242336433293,0.03450939930809188,0.03349383743372161,0.03252287822903014,0.03159387501605765,0.030704375601698947,0.02985210566587806,0.029034953716970256,0.02825095745967321,0.027498291435284993,0.02677525580790907,0.026080266182721672,0.02541184435391343,0.024768609890307595,0.024149272476155236,0.023552624933038266,0.022977536856489025,0.022422948807785423,0.02188786700748634,0.021371358482820686,0.0208725466258978,0.020390607124129052,0.019924764228159954,0.019474287326126268,0.01903848779615072,0.018616716111841947,0.018208359178012227,0.017812837876096083,0.01742960480075305,0.01705814217090898,0.016697959900137355,0.016348593812683283,0.016009603992749623,0.01568057325581713,0.015361105731821402,0.01505082555092838,0.014749375623527265,0.014456416506787771,0.01417162535083388,0.013894694918203606,0.013625332670807604,0.01336325991913293,0.013108211028866262,0.012859932680541806,0.012618183178192202,0.012382731803307529,0.012153358210739757,0.011929851863446446,0.011712011503236114,0.011499644654904512,0.011292567161366871,0.011090602747570295,0.010893582611167822,0.010701345038073672,0.01051373504117821,0.010330604020633795,0.010151809444234782,0.009977214546544946,0.009806688045510074,0.009640103875397956,0.009477340934990834,0.009318282850037433,0.00916281774903552,0.009010838051498419,0.008862240267904569,0.008716924810594972,0.00857479581493532,0.008435760970099508,0.008299731358889888,0.008166621306036334,0.008036348234462271,0.007908832529040307,0.007783997407385423,0.007661768797276201,0.0075420752203096105,0.007424847681428093,0.0073100195639786755,0.007197526529988604,0.007087306425355519,0.006979299189680656,0.006873446770479918,0.00676969304153046,0.006667983725125628,0.006568266318019497,0.006470490020865516,0.00637460567095628,0.006280565678088511,0.006188323963386361,0.006097835900927797,0.006009058262022865,0.005921949162010596,0.005836468009440057,0.0057525754575141665,0.005670233357681688,0.005589404715264837,0.005510053647024466,0.0054321453405622635,0.00535564601546979,0.00528052288613894,0.005206744126149175,0.00513427883415874,0.005063097001223892,0.00499316947947856,0.004924467952109023,0.004856964904563179,0.004790633596933195,0.004725448037460299,0.004661382957106598,0.004598413785145278,0.0045365166257233394,0.004475668235349574,0.004415846001269266,0.004357027920682892,0.004299192580771955,0.0042423191394955415,0.00418638730712435,0.004131377328477316,0.004077269965833058,0.004024046482484486,0.0039716886269094195,0.0039201786175313506,0.0038694991280429753,0.0038196332732713402,0.003770564595559534,0.0037222770516438792,0.0036747550000065733,0.0036279831886819316,0.0035819467435001372,0.003536631156748525,0.003492022276234015,0.0034481062947302153,0.00340486973979427,0.00336229946393676,0.0033203826351329547,0.003279106727660019,0.0032384595132477997,0.003198429052531475,0.0031590036867925365,0.00312017202997901,0.0030819229609925485,0.0030442456162325772,0.003007129382388148,0.0029705638894665237,0.002934539004051517,0.002899044822781439,0.002864071666038913,0.0028296100718445284,0.0027956507899472597,0.002762184776102963,0.0027292031865359203,0.0026966973725752945,0.0026646588754606114,0.0026330794213105437,0.002601950916247785,0.0025712654416762057,0.002541015249703458,0.0025111927587044276,0.0024817905490203697,0.0024528013587894397,0.002424218079902743,0.002396033754083226,0.0023682415690818586,0.0023408348549874927,0.002313807080646846,0.0022871518501897175,0.002260862899657352,0.0022349340937292904,0.0022093594225458413,0.0021841329986231964,0.0021592490538571273,0.002134701936613675,0.0021104861089028763,0.0020865961436332577,0.0020630267219442647,0.002039772630614478,0.002016828759542168,0.0019941900992971624,0.001971851738740718,0.00194980886271156,0.0019280567497762685,0.0019065907700410326,0.001885406383024077,0.0018644991355858806,0.0018438646599157886,0.0018234986715730793,0.0018033969675811852,0.0017835554245725156,0.0017639699969834697,0.0017446367152972586,0.0017255516843333312,0.0017067110815822608,0.0016881111555839027,0.0016697482243485746,0.001651618673819178,0.0016337189563732743,0.0016160455893642004,0.0015985951536992803,0.001581364292455047,0.0015643497095276227,0.0015475481683175348,0.0015309564904478522,0.001514571554514934,0.0014983902948701893,0.0014824097004328169,0.0014666268135319874,0.0014510387287778245,0.0014356425919605934,0.0014204355989766223,0.0014054149947810885,0.001390578072366233,0.0013759221717645634,0.0013614446790762608,0.001347143025520337,0.0013330146865082955,0.0013190571807404762,0.0013052680693238239,0.0012916449549107399,0.001278185480858582,0.0012648873304087046,0.0012517482258852617,0.0012387659279126525,0.0012259382346513127,0.0012132629810515357,0.0012007380381242765,0.0011883613122292461,0.0011761307443792447,0.0011640443095605536,0.0011521000160688874,0.001140295904860683,0.0011286300489188245,0.0011171005526331127,0.0011057055511945596,0.0010944432100033561,0.0010833117240902697,0.0010723093175507082,0.0010614342429916955,0.0010506847809910035,0.0010400592395682481,0.001029555953667832,0.0010191732846529533,0.0010089096198110225,0.0009987633718697207,0.0009887329785236373,0.0009788169019712247,0.0009690136284617173,0.0009593216678518137,0.00094973955317196,0.0009402658402018744,0.0009308991070551241,0.0009216379537726762,0.0009124810019248129,0.0009034268942217265,0.0008944742941321914,0.0008856218855102863,0.19321882628363218,0.19321882628363218,0.19321882628363218,0.19321882628363218,0.19321413389532602,0.19230258954256044,0.18986769536221823,0.1860585516060661,0.18109156192962114,0.17521966676731945,0.16870222972459425,0.16178121357543376,0.1546660678685097,0.14752695949514436,0.1404943912380497,0.13366283491154332,0.1270963207016824,0.12083452268944544,0.11489846944470328,0.10929546027216809,0.10402306180434943,0.09907222475047732,0.09442963714200793,0.09007945353558003,0.0860045344416535,0.08218731252132071,0.07861038076554538,0.07525687743936639,0.07211072493408262,0.06915676531630352,0.06638082411556138,0.06376972530245192,0.06131127396857164,0.05899421845643911,0.05680820020190141,0.05474369702377097,0.052791963776126306,0.050944972979214985,0.04919535712363219,0.04753635369536211,0.04596175351898247,0.04446585270761744,0.04304340830006718,0.04168959752865442,0.040399980574873214,0.039170466618197834,0.03799728295607792,0.036876946962136385,0.03580624064944104,0.03478218761279694,0.03380203213517958,0.032863220257230846,0.03196338262360057,0.031100318935111167,0.03027198385056401,0.02947647419635242,0.028712017355365996,0.027976960719176134,0.02726976209894471,0.02658898100091988,0.025933270681960434,0.02530137090905476,0.024692101354595434,0.02410435556614078,0.02353709545562136,0.02298934625862288,0.022460191919343758,0.021948770861362224,0.02145427210836028,0.02097593172256508,0.020513029531860495,0.02006488611945267,0.01963086005250349,0.019210345328482786,0.018802769020056134,0.018407589101154274,0.018024292438572453,0.01765239293489643,0.01729142980991447,0.016940966008866826,0.016600586726972243,0.016269898040622535,0.015948525636545387,0.015636113630989407,0.015332323471716399,0.015036832916226503,0.014749335080204313,0.014469537550728358,0.014197161559229694,0.013931941209632618,0.013673622757497948,0.01342196393632797,0.013176733327537925,0.012937709770864083,0.012704681812258435,0.012477447186554861,0.012255812332416056,0.012039591937256724,0.011828608510043399,0.011622691980014447,0.011421679319529497,0.011225414189395159,0.011033746605130054,0.010846532622768112,0.010663634042886012,0.010484918131650164,0.010310257357763704,0.010139529144280493,0.009972615634318413,0.009809403469790761,0.009649783582321632,0.009493650995579857,0.009340904638319821,0.009191447167459111,0.009045184800584244,0.008902027157303044,0.00876188710891043,0.008624680635870513,0.008490326692643508,0.008358747079431334,0.008229866320430167,0.00810361154821391,0.0079799123938937,0.007858700882724539,0.0077399113348443245,0.007623480270862227,0.007509346322019773,0.007397450144672176,0.007287734338852846,0.007180143370692872,0.007074623498491865,0.006971122702238525,0.006869590616397674,0.006769978465789494,0.0066722390043990765,0.006576326456958517,0.006482196463162385,0.006389806024376453,0.006299113452712727,0.006210078322351403,0.006122661422992035,0.006036824715331767,0.0059525312884655,0.005869745319113851,0.00578843203258981,0.0057085576654155,0.005630089429513248,0.005552995477891422,0.005477244871754534,0.0054028075489692545,0.00532965429382322,0.00525775670801255,0.005187087182804814,0.00511761887231948,0.005049325667875345,0.004982182173356786,0.004916163681549466,0.004851246151405333,0.004787406186192037,0.004724621012488416,0.004662868459987832,0.00460212694207468,0.004542375437137496,0.004483593470589712,0.004425761097564902,0.00436885888625802,0.004312867901885785,0.004257769691237298,0.004203546267792962,0.004150180097385367,0.004097654084380183,0.004045951558355949,0.003995056261260026,0.0039449523350238045,0.003895624309616177,0.0038470570915183125,0.003799235952602255,0.0037521465193978394,0.003705774762730456,0.003660106987717292,0.0036151298241060663,0.003570830216943159,0.0035271954175589903,0.003484212974856267,0.003441870726891855,0.003400156792739057,0.0033590595646200852,0.0033185677002990593,0.0032786701157237756,0.0032393559779091774,0.0032006146980517037,0.0031624359248665327,0.003124809538139165,0.003087725642484092,0.0030511745613012627,0.0030151468309251982,0.002979633194958166,0.0029446245987812284,0.0029101121842372165,0.002876087284477971,0.002842541418971916,0.0028094662886648065,0.002776853771288762,0.0027446959168142,0.002712984943040151,0.002681713231316822,0.0026508733223975386,0.002620457912414273,0.0025904598489729556,0.002560872127364868,0.0025316878868888743,0.0025029004072824345,0.0024745031052564423,0.0024464895311308078,0.0024188533655678172,0.0023915884163988243,0.0023646886155427134,0.002338148016011968,0.0023119607890038983,0.0022861212210741034,0.0022606237113899125,0.0022354627690601234,0.0022106330105400216,0.0021861291571081604,0.0021619460324129964,0.002138078560087446,0.002114521761428219,0.002091270753139228,0.002068320745136033,0.002045667038409827,0.0020233050229489426,0.00200123017571651,0.001979438058681573,0.0019579243169032317,0.0019366846766652988,0.0019157149436602194,0.0018950110012210268,0.0018745688085990313,0.0018543843992870153,0.0018344538793856706,0.0018147734260123285,0.0017953392857509448,0.001776147773141309,0.0017571952692074244,0.0017384782200230648,0.0017199931353137636,0.001701736587094042,0.0016837052083391948,0.001665895691689812,0.001648304788189172,0.0016309293060517446,0.0016137661094622047,0.0015968121174042983,0.0015800643025180258,0.001563519689985252,0.0015471753564422713,0.0015310284289188289,0.001515076083802761,0.0014993155458298399,0.0014837440870974163,0.0014683590261021198,0.0014531577268002648,0.0014381375976905897,0.0014232960909188923,0.0014086307014033706,0.0013941389659809197,0.0013798184625731897,0.0013656668093721183,0.0013516816640445437,0.001337860722954878,0.0013242017204060717,0.001310702427897847,0.0012973606534019482,0.0012841742406539008,0.001271141068461049,0.0012582590500259242,0.0012455261322852423,0.0012329402952635951,0.0012204995514416412,0.0012082019451385825,0.0011960455519080557,0.0011840284779477542,0.0011721488595219582,0.001160404862396785,0.0011487946812879935,0.001137316539320581,0.0011259686875004608,0.0011147494041974947,0.0011036569946397416,0.001092689790418607,0.0010818461490047946,0.0010711244532743468,0.0010605231110451085,0.0010500405546229415,0.001039675240357557,0.0010294256482079156,0.001019290281316507,0.0010092676655928698,0.000999356349305709,0.0009895549026835595,0.19645703585255084,0.19645703585255084,0.19645703585255084,0.19645703585255084,0.19645703585255084,0.19616479592332453,0.19444171208180783,0.19127426746749018,0.18684793851057363,0.18139886979571784,0.17518320723949707,0.16845032002268567,0.16142379413388636,0.1542910170021139,0.14720003313137228,0.14026143825240162,0.1335531015498243,0.127125999278989,0.12101004324383921,0.11521929830994074,0.10975634204343035,0.10461573700923815,0.09978669868903332,0.09525508693914657,0.09100485555480253,0.08701908229155456,0.083280682239215,0.07977288699523073,0.07647955357979266,0.07338535153899488,0.07047586430300676,0.06773763127799555,0.06515814988297816,0.06272585132078912,0.060430059874512575,0.0582609426016373,0.056209454183348107,0.054267280165555216,0.052426780742225725,0.05068093646237033,0.04902329670148792,0.047447931363030424,0.04594938601834203,0.044522640520681216,0.0431630710161286,0.04186641520316119,0.04062874065126841,0.03944641596773231,0.038316084594121474,0.03723464101578161,0.03619920917494286,0.03520712288915837,0.034255908089750986,0.03334326670884004,0.03246706205749016,0.03162530555131897,0.030816144652883914,0.03003785191250527,0.029288815000572642,0.028567527634819748,0.0278725813157016,0.027202657791630634,0.026556522183746472,0.025933016706996888,0.025331054930667788,0.024749616527311988,0.024187742464121784,0.023644530595454284,0.023119131619349146,0.0226107453646031,0.022118617378259636,0.021642035786401646,0.02118032840374927,0.02073286006998527,0.020299030192869005,0.01987827048009551,0.019470042843622207,0.019073837461687504,0.018689170985159972,0.0183155848760951,0.017952643867506453,0.017599934534346738,0.017257063966639265,0.01692365853648465,0.016599362751426552,0.01628383818732814,0.015976762494494947,0.015677828471357413,0.015386743200487588,0.015103227242189793,0.014827013881309121,0.01455784842325348,0.014295487535585764,0.01403969863181827,0.01379025929433361,0.013546956733600858,0.01330958728108946,0.013077955913477369,0.012851875805963649,0.012631167912644991,0.01241566057208789,0.01220518913637198,0.011999595622001237,0.011798728381221228,0.01160244179237128,0.011410595968014465,0.011223056479677538,0.011039694098122596,0.010860384548140235,0.010685008276945311,0.010513450235303866,0.010345599670592743,0.010181349931048933,0.01002059828050898,0.009863245723003223,0.009709196836597538,0.00955835961592608,0.009410645322895761,0.009265968345070336,0.0091242460612888,0.008985398714088488,0.008849349288539862,0.008716023397122321,0.008585349170297792,0.008457257152452836,0.008331680202914023,0.008208553401747445,0.008087813960078408,0.007969401134683881,0.007853256146619027,0.007739322103665215,0.007627543926388685,0.007517868277618352,0.007410243495160711,0.007304619527582518,0.007200947872896268,0.007099181520003312,0.0069992748927476854,0.006901183796448229,0.0068048653667841085,0.00671027802091056,0.006617381410698121,0.006526136377985399,0.006436504911746899,0.006348450107082748,0.006261936125937583,0.006176928159469337,0.0060933923919848434,0.006011295966368235,0.005930606950930869,0.005851294307616578,0.0057733278614952805,0.005696678271489082,0.0056213170022703755,0.005547216297278942,0.00547434915280769,0.005402689293105375,0.005332211146454156,0.0052628898221751905,0.0051947010885217216,0.005127621351421056,0.0050616276340251995,0.004996697557038337,0.004932809319784314,0.004869941681983328,0.004808073946206621,0.004747185940981348,0.004687258004515086,0.004628270969017374,0.00457020614559031,0.004513045309665443,0.004456770686964753,0.004401364939961817,0.0043468111548256244,0.004293092828824845,0.004240193858174866,0.00418809852630924,0.004136791492559367,0.004086257781223886,0.004036482771015103,0.003987452184865365,0.0039391520800799345,0.0038915688388234154,0.0038446891589247437,0.0037985000449910185,0.0037529887998162766,0.0037081430160747523,0.003663950568287361,0.003620399605051921,0.0035774785415252134,0.0035351760521498943,0.0034934810636152807,0.0034523827480439128,0.0034118705163960973,0.0033719340120827155,0.00333256310478092,0.003293747884443651,0.0032554786554964497,0.0032177459312154474,0.0031805404282783086,0.0031438530614841666,0.0031076749386348733,0.003071997355572572,0.003036811791367822,0.003002109903653598,0.0029678835240986513,0.0029341246540172906,0.0029008254601094554,0.002867978270327059,0.002835575569862774,0.002803609997255677,0.002772074340611638,0.002740961533933237,0.0027102646535559216,0.0026799769146874284,0.0026500916680453394,0.002620602396592194,0.0025915027123622095,0.0025627863533782816,0.0025344471806561402,0.0025064791752921764,0.0024788764356324187,0.002451633174520762,0.00242474371662302,0.0023982024958247258,0.002372004052700719,0.002346143032053105,0.002320614180516944,0.0022954123442304,0.002270532466567817,0.002245969585933582,0.002221718833615364,0.002197775431693629,0.002174134691007755,0.002150792009174849,0.0021277428686611454,0.0021049828349040396,0.0020825075544824603,0.0020603127533353957,0.002038394235026189,0.0020167478790515062,0.001995369639194008,0.001974255541916492,0.0019534016847974813,0.0019328042350061773,0.001912459427815951,0.0018923635651551419,0.0018725130141944407,0.0018529042059689492,0.0018335336340348813,0.0018143978531596295,0.0017954934780435728,0.0017768171820739425,0.001758365696108477,0.0017401358072892596,0.0017221243578850855,0.0017043282441618684,0.0016867444152802028,0.0016693698722196238,0.0016522016667280988,0.0016352369002970047,0.0016184727231602118,0.0016019063333167862,0.0015855349755769805,0.0015693559406301128,0.0015533665641347114,0.0015375642258296136,0.0015219463486656978,0.0015065103979579005,0.0014912538805563428,0.0014761743440369292,0.0014612693759101163,0.0014465366028480788,0.0014319736899289519,0.0014175783398987034,0.001403348292449112,0.0013892813235123933,0.0013753752445714172,0.001361627901985336,0.0013480371763302827,0.0013346009817545806,0.0013213172653481924,0.0013081840065261496,0.0012951992164253274,0.0012823609373146443,0.0012696672420179401,0.0012571162333492813,0.0012447060435607337,0.001232434833801878,0.0012203007935909541,0.0012083021402974773,0.0011964371186355858,0.001184704000168477,0.001173101082823203,0.0011616266904157185,0.0011502791721860848,0.001139056902343121,0.0011279582796188989,0.0011169817268323788,0.0011061256904621392,0.19974951550174025,0.19974951550174025,0.19974951550174025,0.19974951550174025,0.19974951550174025,0.19974371950558747,0.1988320217037669,0.19642044480304707,0.19265384561180282,0.18774217848739816,0.18193099019269623,0.1754725074115395,0.1686026855646889,0.16152654653888507,0.15441148576578065,0.14738671405640325,0.1405465877245153,0.13395586624540265,0.1276554966340945,0.12166808023113637,0.11600260776677447,0.11065833111196684,0.10562780063094025,0.10089917303285478,0.09645791913883438,0.09228805784057588,0.08837302683700504,0.08469628113908564,0.08124169125562711,0.07799379633318564,0.07493795387909827,0.07206041693539118,0.06934836130413656,0.06678987919175809,0.06437395100388942,0.062090403611658324,0.059929860921943814,0.057883690782441106,0.05594395095656557,0.054103335978175286,0.052355126040171736,0.05069313861065471,0.04911168315048189,0.047605519087130774,0.04616981705313106,0.044800123301525635,0.04349232715131194,0.042242631281366495,0.04104752467419986,0.039903758005707106,0.03880832127943984,0.0377584235114867,0.03675147428252066,0.03578506698574512,0.03485696361227054,0.03396508092849188,0.03310747791254379,0.032282344328984316,0.03148799033213232,0.03072283699890059,0.02998540770167395,0.029274320240497417,0.02858827966188631,0.02792607169881501,0.027286556772948407,0.026668664506147216,0.026071388693516,0.02549378269507291,0.02493495520738375,0.02439406638035552,0.02387032424779501,0.0233629814434794,0.02287133217719849,0.02239470944774205,0.021932482472029207,0.021484054311548196,0.021048859679113765,0.02062636291051253,0.02021605608708153,0.019817457296554812,0.019430109020692757,0.01905357663923801,0.018687447040730856,0.018331327331532588,0.017984843635200365,0.017647639975052854,0.017319377233376662,0.016999732181327002,0.016688396574057716,0.01638507630610212,0.016089490622448514,0.015801371381121743,0.015520462363459794,0.015246518628562428,0.014979305908693787,0.014718600042677199,0.014464186444564792,0.014215859605066623,0.013973422623448958,0.013736686767765878,0.013505471061469666,0.013279601894595715,0.013058912657843489,0.012843243398024565,0.012632440493442467,0.01242635634788891,0.012224849102033978,0.01202778236108212,0.011835024937636406,0.011646450608809446,0.011461937886668848,0.011281369801181352,0.011104633694878258,0.010931621028509373,0.010762227197020937,0.010596351355221493,0.01043389625255328,0.01027476807642563,0.010118876303594716,0.009966133559124242,0.00981645548247651,0.009669760600322836,0.009525970205685151,0.009385008243049258,0.009246801199105086,0.009111277998804788,0.008978369906435845,0.008848010431432763,0.008720135238668398,0.008594682062974658,0.008471590627670241,0.008350802566874297,0.008232261351405786,0.008115912218077342,0.008001702102206916,0.007889579573173672,0.0077794947728667225,0.007671399356872303,0.007565246438260945,0.007460990533843656,0.007358587512767958,0.007257994547342234,0.00715917006597293,0.0070620737081113745,0.006966666281112895,0.006872909718910591,0.00678076704242115,0.006690202321595258,0.00660118063903526,0.006513668055105199,0.0064276315744639925,0.006343039113951326,0.006259859471767922,0.006178062297886654,0.006097618065638857,0.0060184980444232304,0.005940674273482888,0.005864119536706628,0.005788807338405189,0.005714711880020153,0.005641808037723738,0.005570071340871341,0.005499477951266457,0.005430004643206508,0.00536162878427281,0.005294328316833583,0.005228081740230391,0.005162868093616157,0.005098666939420865,0.005035458347415744,0.004973222879351863,0.004911941574150097,0.0048515959336170355,0.004792167908668658,0.004733639886038497,0.00467599467545153,0.004619215497244666,0.004563285970416874,0.004508190101089331,0.004453912271362482,0.004400437228551888,0.004347750074788898,0.0042958362569724025,0.004244681557056022,0.004194272082660441,0.0041445942579964095,0.004095634815087085,0.00404738078527908,0.003999819491029181,0.003952938537959093,0.00390672580716612,0.003861169447781052,0.003816257869763791,0.003771979736928762,0.003728323960189684,0.003685279691018304,0.0036428363151073378,0.0036009834462309384,0.003559710920296085,0.0035190087895763805,0.0034788673171240424,0.0034392769713519947,0.0034002284207808155,0.0033617125289445017,0.003323720349450128,0.0032862431211844478,0.0032492722636645165,0.003212799372525715,0.003176816215143076,0.0031413147263817925,0.0031062870044710686,0.003071725306999108,0.003037622047023677,0.003003969789294912,0.002970761246587009,0.0029379892761338877,0.0029056468761671644,0.0028737271825517293,0.0028422234655162896,0.002811129126475577,0.0027804376949417836,0.0027501428255210614,0.0027202382949940425,0.002690717999476452,0.0026615759516576145,0.0026328062781148976,0.002604403216700364,0.0025763611139990586,0.002548674422855451,0.0025213376999663776,0.002494345603538304,0.0024676928910073183,0.0024413744168188508,0.002415385130266745,0.0023897200733887947,0.002364374378917358,0.002339343268283767,0.0023146220496738455,0.0022902061161344032,0.002266090943728139,0.002242272089735859,0.0022187451909049475,0.0021955059617417096,0.0021725501928476615,0.002149873749297428,0.002127472569057507,0.0021053426614445047,0.0020834801056221594,0.0020618810491350296,0.0020405417064790713,0.0020194583577071317,0.001998627347068658,0.0019780450816829307,0.0019577080302440437,0.0019376127217578488,0.0019177557443091479,0.001898133743858589,0.0018787434230683692,0.001859581540156253,0.0018406449077763062,0.001821930391926711,0.0018034349108830973,0.0017851554341569724,0.0017670889814788214,0.0017492326218044372,0.0017315834723448816,0.0017141386976186794,0.0016968955085258977,0.0016798511614437835,0.0016630029573426294,0.001646348240922349,0.001629884399768442,0.0016136088635271485,0.001597519103099218,0.0015816126298520317,0.0015658869948489782,0.0015503397880964808,0.0015349686378076082,0.0015197712096819997,0.0015047452062019722,0.0014898883659436853,0.0014751984629038915,0.0014606733058411937,0.0014463107376316954,0.0014321086346388504,0.0014180649060965738,0.001404177493506064,0.001390444370045428,0.0013768635399919855,0.0013634330381569089,0.0013501509293320753,0.0013370153077483025,0.001324024296545426,0.0013111760472533647,0.0012984687392840928,0.001285900579434447,0.001273469801398957,0.001261174665293171,0.0012490134571867056,0.0012369844886459746,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.2029044710572153,0.2013748726079407,0.19840716768244027,0.1941733045700215,0.18889777900904853,0.18282820705372405,0.17620892202530203,0.1692616594086738,0.16217445202561154,0.15509769190579398,0.14814530678432827,0.1413989226292875,0.13491330813076088,0.12872196101467417,0.12284219453682989,0.11727944255750421,0.11203072565433533,0.10708734078568503,0.10243688861837287,0.09806476434434601,0.09395522915687353,0.09009216246129466,0.08645957593613143,0.08304195294798705,0.07982446183300375,0.07679307943893507,0.0739346518471199,0.07123691195506768,0.06868846816005214,0.06627877434639057,0.06399808841058165,0.06183742439352333,0.05978850172080196,0.057843693923976584,0.05599597840920915,0.054238888267818704,0.05256646672134938,0.05097322451430286,0.04945410037663321,0.048004424549700636,0.04661988528603406,0.045296498181400816,0.04403057816785876,0.04281871398211617,0.04165774491926813,0.04054473968481453,0.03947697716498446,0.03845192894522767,0.037467243417924845,0.03652073133234257,0.035610352651675746,0.03473420459368987,0.0338905107425384,0.03307761112967201,0.03229395319149003,0.03153808352017903,0.030808640332360426,0.030104346587561854,0.029424003695195534,0.028766485754864957,0.028130734280221243,0.02751575336156412,0.026920605226799347,0.026344406164363936,0.025786322775273797,0.025245568524720204,0.024721400566467773,0.024213116815928158,0.02372005325010737,0.023241581414682105,0.022777106120385675,0.022326063312518053,0.021887918098939068,0.021462162923254532,0.021048315871141213,0.02064591909883486,0.020254537373843286,0.019873756718800935,0.019503183150216055,0.01914244150459139,0.018791174345039754,0.018449040942150132,0.018115716323364655,0.01779089038563799,0.0174742670665939,0.017165563569779486,0.016864509640014937,0.01657084688513779,0.016284328140762482,0.016004716874943554,0.015731786629889152,0.015465320498082327,0.015205110630404936,0.014950957774020583,0.014702670837963991,0.014460066484541595,0.014222968744780573,0.013991208656320487,0.013764623922240041,0.013543058589437619,0.013326362745281409,0.013114392231344784,0.012907008373115796,0.012704077724671145,0.012505471827356802,0.01231106698159726,0.012120744031017176,0.011934388158105644,0.011751888690725514,0.011573138918799675,0.011398035920562512,0.011226480397806103,0.011058376519579314,0.010893631773851142,0.010732156826665335,0.010573865388354321,0.010418674086405066,0.010266502344599247,0.01011727226806559,0.009970908533920138,0.009827338287175868,0.009686491041631941,0.009548298585470159,0.009412694891296041,0.009279616030390993,0.009149000090943396,0.009020787100048108,0.008894918949273942,0.008771339323613096,0.00864999363363069,0.008530828950655019,0.008413793944846657,0.008298838826000736,0.008185915286945065,0.008074976449398199,0.007965976812170445,0.007858872201586459,0.007753619724021041,0.007650177720445798,0.00754850572288419,0.007448564412688136,0.007350315580544339,0.007253722088129012,0.0071587478313324,0.0070653577049802855,0.0069735175689785624,0.006883194215819569,0.006794355339383313,0.006706969504975226,0.006621006120545228,0.006536435409030608,0.006453228381776941,0.006371356812984948,0.0062907932151390605,0.0062115108153735716,0.006133483532736607,0.006056685956309029,0.005981093324145623,0.005906681502999686,0.005833426968798323,0.005761306787837475,0.005690298598662946,0.005620380594612586,0.005551531506988694,0.005483730588835456,0.0054169575992971675,0.005351192788530419,0.0052864168831513484,0.005222611072193114,0.0051597569935542785,0.005097836720917635,0.0050368327511218685,0.004976727991965241,0.004917505750427618,0.0048591497212918415,0.004801643976149472,0.004744972952776838,0.004689121444864523,0.004634074592089827,0.004579817870516697,0.004526337083311347,0.004473618351762342,0.004421648106591393,0.004370413079546893,0.004319900295267359,0.004270097063405719,0.004220990971004364,0.004172569875112649,0.004124821895635862,0.004077735408409953,0.0040312990384918,0.003985501653657913,0.003940332358104691,0.00389578048634117,0.0038518355972699267,0.0038084874684475535,0.003765726090519216,0.0037235416618208485,0.003681924583143929,0.0036408654526553998,0.0036003550609697067,0.0035603843863659967,0.0035209445901460863,0.0034820270121289623,0.0034436231662755275,0.0034057247364413885,0.0033683235722517958,0.0033314116850951168,0.003294981244231511,0.0032590245730113733,0.003223534145202002,0.00318850258141747,0.003153922645648813,0.003119787241891216,0.0030860894108655393,0.0030528223268297466,0.003019979294479285,0.0029875537459320856,0.00295553923779604,0.0029239294483167618,0.00289271817460175,0.0028618993299203716,0.002831466941075923,0.002801415145848122,0.002771738190503605,0.002742430427372887,0.0027134863124904977,0.002684900403297977,0.002656667356406627,0.002628781925418603,0.0026012389588049773,0.002574033397837875,0.002547160274576672,0.0025206147099054023,0.0024943919116203316,0.0024684871725665102,0.002442895868820803,0.002417613457921494,0.002392635477141975,0.002367957541807759,0.0023435753436553066,0.0023194846492319765,0.00229568129833483,0.0022721612024885762,0.0022489203434604955,0.002225954771811661,0.0022032606054837364,0.00218083402841938,0.0021586712892166173,0.0021367686998152472,0.0021151226342147967,0.0020937295272230104,0.002072585873234397,0.0020516882250371142,0.0020310331926485987,0.002010617442178281,0.001990437694716929,0.0019704907252521857,0.0019507733616087551,0.0019312824834137076,0.0019120150210853602,0.0018929679548453993,0.0018741383137539191,0.0018555231747659378,0.0018371196618098755,0.0018189249448866823,0.0018009362391893302,0.0017831508042420576,0.0017655659430591644,0.0017481790013220895,0.001730987366575301,0.0017139884674397538,0.0016971797728437476,0.0016805587912709456,0.0016641230700244103,0.001647870194507224,0.001631797787518525,0.0016159035085648497,0.001600185053186584,0.0015846401522984978,0.0015692665715449086,0.0015540621106684056,0.0015390246028921285,0.001524151914315101,0.001509441943320645,0.0014948926199968172,0.0014805019055695236,0.0014662677918472861,0.0014521883006776435,0.0014382614834150755,0.0014244854203995959,0.0014108582204465355,0.0013973780203466644,0.0013840429843766451,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.20596010422640962,0.2039429055663057,0.20055016821202992,0.1959715301231048,0.19043860117594089,0.1841965669106011,0.1774803827179456,0.17049853112065094,0.16342461954615403,0.15639536212174346,0.14951284931145067,0.14284913926372098,0.13645169054041137,0.130348695638054,0.12455381737249273,0.11907013465967564,0.11389328577014388,0.10901388946875089,0.10441936023159744,0.10009523770221487,0.096026139014389,0.09219642524310233,0.08859065522338264,0.08519388372262729,0.08199184733466335,0.07897107055757245,0.07611891603889277,0.07342359651488697,0.07087416112738179,0.06846046520923102,0.0661731299886425,0.06400349673536161,0.06194357847488843,0.05998601139024964,0.05812400731073659,0.0563513081753861,0.054662142998682856,0.05305118761541716,0.051513527309514424,0.05004462231627217,0.04864027611215142,0.04729660635934841,0.04601001834560475,0.04477718074646153,0.04359500353353829,0.0424606178549272,0.04137135772037648,0.04032474333286492,0.03931846591861398,0.03835037391838087,0.037418460413916395,0.036520851674169116,0.03565579671598328,0.03482165778373691,0.03401690166120723,0.03324009173724124,0.032489880754350935,0.031765004176189375,0.031064274116187438,0.030386573775210497,0.029730852341251314,0.029096120308766796,0.028481445179431443,0.027885947509778613,0.027308797274621606,0.02674921051810326,0.02620644626697206,0.025679803683119153,0.02516861943457174,0.024672265266161814,0.02419014575280633,0.023721696219961376,0.023266380817233683,0.02282369073243573,0.022393142534505778,0.021974276634808953,0.02156665585723544,0.021169864108392583,0.02078350513995694,0.020407201395928363,0.02004059293819714,0.01968333644436778,0.019335104272322306,0.018995583586474428,0.018664475541071677,0.01834149451632356,0.01802636740345048,0.01771883293508814,0.017418641057765034,0.01712555234344256,0.016839337437330227,0.01655977653943885,0.01628665891750538,0.016019782449123936,0.015758953191084883,0.015503984974061849,0.015254699020954252,0.015010923587294936,0.014772493622266382,0.014539250448971908,0.01431104146271245,0.014087719846097817,0.013869144299928042,0.013655178788834876,0.013445692300757808,0.01324055861939462,0.01303965610881434,0.012842867509498165,0.012650079745103638,0.012461183739307477,0.012276074242125868,0.012094649665141212,0.01191681192512037,0.011742466295526045,0.011571521265466012,0.01140388840565096,0.01123948224096329,0.011078220129254935,0.010920022146032765,0.010764810974696115,0.010612511802020693,0.010463052218602532,0.010316362123984702,0.0101723736362212,0.010031021005633273,0.009892240532536414,0.009755970488726857,0.009622151042531843,0.009490724187231583,0.009361633672685707,0.009234824939993055,0.009110245059031852,0.008987842668735285,0.008867567919959359,0.008749372420820115,0.008633209184371904,0.008519032578512917,0.008406798278010004,0.00829646321853483,0.008187985552620122,0.008081324607438801,0.007976440844320979,0.0078732958199254,0.0077718521489892,0.007672073468577484,0.007573924403768818,0.0074773705347056475,0.007382378364948571,0.007288915291075915,0.007196949573468416,0.007106450308230517,0.007017387400193502,0.006929731536953655,0.00684345416390061,0.0067585274601888465,0.006674924315615805,0.006592618308363546,0.00651158368356824,0.0064317953326812,0.006353228773589228,0.0062758601314585275,0.006199666120276183,0.006124624025056531,0.006050711684685889,0.00597790747538009,0.0059061902947265665,0.005835539546291021,0.005765935124762635,0.0056973574016172595,0.005629787211277228,0.005563205837749042,0.005497595001717135,0.0054329368480792685,0.005369213933903426,0.005306409216790559,0.005244506043628345,0.0051834881397180115,0.005123339598263446,0.005064044870206019,0.005005588754393025,0.004947956388066654,0.004891133237662494,0.004835105089903366,0.004779858043180843,0.0047253784992111565,0.004671653154956367,0.00461866899480163,0.004566413282977,0.004514873556217836,0.00446403761665298,0.004413893524913177,0.004364429593452595,0.004315634380073703,0.004267496681651113,0.004220005528045259,0.004173150176200009,0.004126920104417684,0.004081305006805838,0.004036294787888151,0.00399187955737619,0.003948049625094668,0.0039047954960556193,0.0038621078656769464,0.003819977615138765,0.003778395806875226,0.003737353680195521,0.003696842647030329,0.003656854287800181,0.003617380347399918,0.0035784127312977637,0.0035399435017435367,0.0035019648740831277,0.00346446921317559,0.003427449029910115,0.003390896977818194,0.003354805849779953,0.003319168574820086,0.0032839782149911272,0.003249227962341758,0.003214911135965988,0.0031810211791327004,0.0031475516564915106,0.0031144962513532273,0.003081848763042403,0.0030496031043202565,0.003017753298874565,0.00298629347887614,0.002955217882598678,0.00292452085210038,0.0028941968309660177,0.002864240362106272,0.0028346460856144046,0.0028054087366772215,0.0027765231435392186,0.0027479842255186755,0.002719786991073009,0.0026919265359135526,0.00266439804116709,0.0026371967715832986,0.0026103180737866182,0.002583757374571692,0.0025575101792400553,0.0025315720699783453,0.0025059387042757654,0.0024806058133800433,0.0024555692007911805,0.002430824740790848,0.0024063683770078354,0.002382196121017543,0.002358304050974918,0.00233468831027985,0.0023113451062744678,0.002288270708970537,0.0022654614498073627,0.002242913720438501,0.0022206239715467117,0.0021985887116867876,0.0021768045061545107,0.002155267975882342,0.0021339757963601404,0.002112924696580604,0.0020921114580090415,0.002071532913575961,0.002051185946693049,0.002031067490291056,0.002011174525879355,0.001991504082626487,0.001972053236461524,0.0019528191091948205,0.0019337988676588307,0.0019149897228675733,0.0018963889291946125,0.001877993783569304,0.0018598016246900676,0.0018418098322553142,0.0018240158262107704,0.0018064170660131457,0.0017890110499095791,0.0017717953142328189,0.0017547674327109757,0.0017379250157924702,0.001721265709985095,0.0017047871972090498,0.0016884871941638669,0.0016723634517081904,0.0016564137542530014,0.0016406359191673036,0.0016250277961961594,0.001609587266891041,0.001594312244051512,0.0015792006711788558,0.0015642505219407063,0.0015494597996466907,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20995343628227212,0.2090393711470348,0.20666737948362773,0.20297572164022637,0.19816412020921217,0.1924662042070215,0.18612248601751077,0.17935881968812678,0.17237250756546996,0.16532579557414837,0.15834509724647503,0.15152389144623132,0.1449274846516347,0.13859833230445176,0.132561121109695,0.12682721069439756,0.1213982966678423,0.11626930941211489,0.11143063714149357,0.10686978776805856,0.10257260369698121,0.0985241308675233,0.09470922629969307,0.09111297136682757,0.08772094291507972,0.08451938182214376,0.08149528860874204,0.07863646798162978,0.07593153830631916,0.07336991759835781,0.0709417943508635,0.06863808910921576,0.06645041094577603,0.06437101171065172,0.06239274001337532,0.06050899622969172,0.05871368935717391,0.05700119621160201,0.055366323224101795,0.053804270939727714,0.05231060121066926,0.050881207006766564,0.04951228472207933,0.048200308830501526,0.046942008730769404,0.04573434761723176,0.044574503214720014,0.04345985022153011,0.04238794431273058,0.04135650756528036,0.04036341517649047,0.03940668335744907,0.03848445829284849,0.03759500606820826,0.03673670347430462,0.03590802960698298,0.03510755818820331,0.034333950541169854,0.033585949158913664,0.03286237181146891,0.03216210614214327,0.03148410470816742,0.030827380425363787,0.03019100238034689,0.02957409197736142,0.02897581938997038,0.02839540029070287,0.02783209283433886,0.027285194872788923,0.026754041381665865,0.026238002080459413,0.025736479229946218,0.025248905591972286,0.024774742538123347,0.024313478295002966,0.023864626314997427,0.02342772376236139,0.023002330105391596,0.022588025806272886,0.022184411100896684,0.021791104861663427,0.021407743536844073,0.021033980160649442,0.020669483428652238,0.02031393683363807,0.019967037857408092,0.019628497214392242,0.01929803814329284,0.018975395743278382,0.018660316351536185,0.01835255695922902,0.018051884663166606,0.01775807615068394,0.017470917215432126,0.017190202301963557,0.01691573407714162,0.016647323026581413,0.01638478707443662,0.01612795122499026,0.015876647224615147,0.015630713242781577,0.015389993570871409,0.015154338337672215,0.014923603240481871,0.014697649290843934,0.014476342574003166,0.014259554021222203,0.01404715919418132,0.013839038080716194,0.013635074901211288,0.013435157925012738,0.013239179296256601,0.013047034868567889,0.012858624048102946,0.012673849644453731,0.012492617728960053,0.012314837500009038,0.012140421154917973,0.011969283768039645,0.011801343174735184,0.011636519860891327,0.011474736857679298,0.011315919641262117,0.011159996037190869,0.011006896129230951,0.01085655217238427,0.010708898509883739,0.010563871493953528,0.01042140941013201,0.010281452404980471,0.010143942416997101,0.01000882311057417,0.0098760398128456,0.009745539453273508,0.00961727050584371,0.009491182933734889,0.009367228136341037,0.009245358898533111,0.009125529342045835,0.009007694878893241,0.008891812166710426,0.008777839065931416,0.008665734598715231,0.008555458909539633,0.008446973227379707,0.00834023982940367,0.008235222006111006,0.00813188402784833,0.008030191112641352,0.007930109395278884,0.007831605897598293,0.00773464849991404,0.007639205913540066,0.007545247654358687,0.007452744017386196,0.0073616660522967,0.007271985539858667,0.0071836749692463595,0.007096707516187996,0.007011057021916612,0.006926697972884972,0.006843605481219733,0.006761755265876053,0.00668112363446882,0.006601687465751036,0.006523424192710271,0.006446311786262047,0.006370328739512681,0.0062954540525697105,0.0062216672178774775,0.006148948206058095,0.0060772774522345795,0.006006635842821075,0.0059370047027588815,0.005868365783181634,0.0058007012494940766,0.005733993669845436,0.005668226003985943,0.00560338159248915,0.005539444146327062,0.005476397736784435,0.005414226785700496,0.005352916056023132,0.005292450642667461,0.005232815963664795,0.005173997751592174,0.005115982045273059,0.0050587551817366586,0.005002303788429885,0.004946614775670348,0.004891675329332436,0.0048374729037590205,0.004783995214888375,0.004731230233591739,0.004679166179211873,0.004627791513296368,0.004577094933518704,0.0045270653677813135,0.004477691968492313,0.0044289641070126735,0.004380871368265898,0.004333403545505439,0.004286550635235072,0.004240302832275165,0.004194650524972488,0.004149584290546901,0.004105094890570911,0.004061173266578407,0.004017810535796424,0.003974997986998333,0.0039327270764727045,0.003890989424104797,0.0038497768095667583,0.0038090811686137946,0.0037688945894811033,0.003729209309380734,0.0036900177110934175,0.0036513123196529654,0.0036130857991208552,0.00357533094944656,0.0035380407034130983,0.0035012081236635278,0.003464826399806538,0.00342888884559851,0.003393388896200267,0.003358320105504762,0.0033236761435355283,0.0032894507939122543,0.003255637951381986,0.0032222316194144124,0.003189225907857948,0.003156615030656644,0.003124393303624758,0.003092555142277723,0.003061095059718299,0.0030300076645749926,0.002999287658992946,0.002968929836674491,0.002938929080968432,0.0029092803630064797,0.002879978739886027,0.002851019352896648,0.0028223974257907364,0.0027941082630958637,0.002766147248467964,0.0027385098430847475,0.0027111915840768983,0.002684188082997661,0.0026574950243285307,0.0026311081640205424,0.002605023328070009,0.002579236411128207,0.0025537433751430037,0.0025285402480329884,0.002503623122392136,0.002478988154224578,0.0024546315617089694,0.0024305496239906427,0.0024067386800021994,0.0023831951273107195,0.0023599154209912486,0.0023368960725261945,0.0023141336487289546,0.0022916247706924854,0.0022693661127611057,0.002247354401525414,0.002225586414839535,0.0022040589808604797,0.0021827689771081946,0.0021617133295469067,0.002140889011686381,0.002120293043702836,0.0020999224915793477,0.002079774466264335,0.0020598461228488827,0.002040134659761517,0.0020206373179803604,0.002001351380262126,0.001982274170387877,0.001963403052424153,0.001944735430000682,0.0019262687456026012,0.001908000479877957,0.0018899281509598663,0.0018720493138023673,0.0018543615595306329,0.0018368625148044463,0.0018195498411948524,0.0018024212345739287,0.0017854744245166356,0.001768707173715405,0.00175211727740647,0.0017357025628079211,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21342064502792,0.21225356768264872,0.20966232088044107,0.20579486286319842,0.20085497626530135,0.19507502904008467,0.188690241180585,0.181918829608696,0.1749496876449392,0.167937047917708,0.16100039834456614,0.15422766713057004,0.14767999287376665,0.14139689540691078,0.1354011406400873,0.12970295572921242,0.12430348747241743,0.1191975308593405,0.11437561821810606,0.10982558004944354,0.10553368616058952,0.10148546263946617,0.09766626374073613,0.09406166160621682,0.09065770255593866,0.08744106696779402,0.08439916044938697,0.08152015679295037,0.07879300771939081,0.07620743030237505,0.07375387990663633,0.07142351422276028,0.06920815233199135,0.06710023153537845,0.06509276381393596,0.06317929316254199,0.06135385459501992,0.059610935302143044,0.057945438223313335,0.05635264813981351,0.05482820029376992,0.05336805146868628,0.051968453423887576,0.05062592854966492,0.049337247596598015,0.04809940932779926,0.04690962194372142,0.045765286134025765,0.044663979617951016,0.04360344304311289,0.04258156712173174,0.04159638089247744,0.04064604100533942,0.0397288219355946,0.038843107041309076,0.03798738038656709,0.037160219259766224,0.036360287323023543,0.03558632833470936,0.03483716039270074,0.03411167065094566,0.033408810466493695,0.03272759093822078,0.03206707880226378,0.031426392652462026,0.0308046994571686,0.030201211346515978,0.02961518264664116,0.02904590713964763,0.02849271553001128,0.027954973099969218,0.027432077538032718,0.02692345692623564,0.02642856787301216,0.02594689377983565,0.025477943230768543,0.025021248495069526,0.02457636413387653,0.024142865702748355,0.02372034854260718,0.023308426652226846,0.022906731636023307,0.022514911721434994,0.022132630840640037,0.021759567771835787,0.021395415335663442,0.02103987964274751,0.020692679388639414,0.020353545192763133,0.02002221897821326,0.019698453389539874,0.019382011245847673,0.019072665026764447,0.018770196389023486,0.018474395711560836,0.018185061667218106,0.01790200081925659,0.017625027241040547,0.017353962157363463,0.01708863360600921,0.016828876118228118,0.016574530416929217,0.016325443131450797,0.01608146652786731,0.015842458253863996,0.015608281097265541,0.01537880275739198,0.015153895628449175,0.014933436594228695,0.01471730683344127,0.01450539163504096,0.01429758022296246,0.014093765589710145,0.013893844338288022,0.013697716531988032,0.013505285551590161,0.01331645795954501,0.01313114337075604,0.012949254329584355,0.012770706192732996,0.012595417017689438,0.012423307456414814,0.012254300654004806,0.012088322152047101,0.011925299796427152,0.011765163649344958,0.011607845905323693,0.01145328081099466,0.01130140458847105,0.011152155362118995,0.01100547308855384,0.010861299489699947,0.010719577988752876,0.010580253648906704,0.01044327311470261,0.010308584555871098,0.010176137613547236,0.010045883348737496,0.009917774192936471,0.009791763900784456,0.009667807504670566,0.00954586127118809,0.009425882659356859,0.009307830280524733,0.009191663859876523,0.009077344199471203,0.00896483314273862,0.00885409354037071,0.008745089217539085,0.008637784942385606,0.008532146395723937,0.008428140141900298,0.00832573360076125,0.008224895020681668,0.00812559345260225,0.008027798725038336,0.007931481420013826,0.007836612849881984,0.007743165034996491,0.007651110682192809,0.007560423164050863,0.007471076498902397,0.007383045331553306,0.007296304914692554,0.007210831090955595,0.007126600275620571,0.007043589439907721,0.006961776094859103,0.006881138275774742,0.006801654527184446,0.006723303888330363,0.006646065879144693,0.006569920486699764,0.006494848152112935,0.006420829757889803,0.006347846615685633,0.0062758804544728415,0.006204913409096254,0.006134928009202004,0.006065907168527233,0.005997834174533827,0.005930692678377342,0.005864466685195607,0.0057991405447063845,0.0057346989421023075,0.005671126889233182,0.005608409716062573,0.005546533062392292,0.005485482869842319,0.00542524537407796,0.005365807097276279,0.005307154840820647,0.005249275678218769,0.005192156948233781,0.005135786248221993,0.005080151427669624,0.005025240581922749,0.0049710420461012705,0.0049175443891938155,0.004864736408324985,0.0048126071231898914,0.004761145770651059,0.004710341799489983,0.004660184865311128,0.0046106648255910265,0.00456177173486847,0.004513495840071739,0.004465827575976329,0.0044187575607916715,0.004372276591870499,0.004326375641537809,0.004281045853035226,0.004236278536577795,0.0041920651655178,0.004148397372614621,0.0041052669464054295,0.004062665827674192,0.004020586106016392,0.003979020016494815,0.003937959936385833,0.00389739838201164,0.0038573280056565205,0.0038177415925642636,0.0037786320580150074,0.0037399924444773466,0.003701815918835639,0.0036640957696886657,0.00362682540471793,0.0035899983481241164,0.0035536082381281,0.003517648824536627,0.003482113966369242,0.00344699762954515,0.0034122938846287794,0.003377996904630799,0.0033441009628650165,0.003310600430857991,0.003277489776310475,0.003244763561109006,0.0032124164393867376,0.0031804431556307546,0.0031488385428363745,0.0031175975207057504,0.003086715093889942,0.0030561863502737495,0.00302600645930073,0.002996170670339071,0.0029666743110858414,0.002937512786009154,0.002908681574826923,0.0028801762310218105,0.002851992380390093,0.0028241257196251566,0.0027965720149334895,0.0027693271006826786,0.0027423868780809602,0.002715747313886307,0.002689404439145794,0.0026633543479633167,0.002637593196295285,0.0026121172007738877,0.0025869226375561743,0.0025620058411996716,0.002537363203562786,0.002512991172729797,0.0024888862519596247,0.0024650449986581818,0.0024414640233727304,0.0024181399888089576,0.0023950696088692576,0.002372249647711943,0.00234967691883124,0.002327348284156567,0.00230526065317184,0.0022834109820534295,0.0022617962728265634,0.0022404135725400333,0.0022192599724578646,0.0021983326072687035,0.002177628654311618,0.002157145332818246,0.002136879903170778,0.0021168296661757415,0.00209699196235235,0.0020773641712361944,0.002057943710697039,0.0020387280362707213,0.0020197146405050207,0.0020009010523184155,0.0019822848363724526,0.0019638635924566126,0.0019456349548857355,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2169619174952029,0.2156949433603974,0.21302826670280023,0.20911187810651433,0.20414858335916472,0.19836736410829894,0.19199858000466888,0.18525507443092326,0.178320619397853,0.17134505934390104,0.1644444397545415,0.15770420654209902,0.15118387215458928,0.14492202960641218,0.13894105158499467,0.13325115532485587,0.1278537365205471,0.12274400105270893,0.11791298242856361,0.11334905173993039,0.10903902420657173,0.10496895375840211,0.10112469135808354,0.09749226735543032,0.09405814463353532,0.09080937812150623,0.0877337073498576,0.08481960182298166,0.08205627372644536,0.0794336685350377,0.07694244114655903,0.07457392299393124,0.07232008399459211,0.07017349203337701,0.06812727183134501,0.06617506444463742,0.06431098820101427,0.06252960157157295,0.06082586825658008,0.059195124612222906,0.05763304944131557,0.05613563610145748,0.054699166839607516,0.053320189234907105,0.05199549461685642,0.05072209831965352,0.049497221633250495,0.048318275315010824,0.04718284453185453,0.04608867511016034,0.045033660978785445,0.04401583269911529,0.04303334698434317,0.042084477118387795,0.041167604192605914,0.0402812090856893,0.039423865119003726,0.03859423132579106,0.03779104627845409,0.03701312242337153,0.0362593408774869,0.03552864664521056,0.03482004421818393,0.03413259352393739,0.033465406192734734,0.03281764211479924,0.032188506262699666,0.03157724575610525,0.03098314714818453,0.030405533914885173,0.02984376413005205,0.029297228310916773,0.028765347419871325,0.02824757100976722,0.02774337550107652,0.027252262580322543,0.026773757710126148,0.026307408742035552,0.025852784624125227,0.025409474195997123,0.024977085064476393,0.02455524255386495,0.024143588725110483,0.023741781458763784,0.0233494935969813,0.022966412140246435,0.022592237494826844,0.022226682767316944,0.02186947310288629,0.021520345064160052,0.021179046047865403,0.02084533373662219,0.020518975583460126,0.02019974832681264,0.019887437533941423,0.01958183717086948,0.019282749197063735,0.01898998318323251,0.018703355950730645,0.018422691231158868,0.018147819344874708,0.0178785768971972,0.01761480649119068,0.017356356455992,0.017103080589701388,0.01685483791596052,0.016611492453358006,0.016372912996899604,0.016138972910811733,0.01590954993200031,0.015684525983536184,0.015463786997579214,0.015247222747188299,0.015034726686504837,0.014826195798830513,0.014621530452147227,0.014420634261660514,0.014223413958973963,0.014029779267522935,0.013839642783926841,0.013652919864925537,0.013469528519612443,0.013289389306661351,0.013112425236291927,0.012938561676713981,0.01276772626482216,0.012599848820907386,0.012434861267185765,0.012272697549943718,0.012113293565113177,0.011956587087105505,0.01180251770073292,0.011651026736069497,0.011502057206103367,0.011355553747035353,0.011211462561106215,0.011069731361815547,0.01093030932142592,0.01079314702063854,0.010658196400336377,0.01052541071529652,0.010394744489780988,0.010266153474912346,0.010139594607758002,0.010015025972039083,0.009892406760389645,0.009771697238099614,0.009652858708266624,0.00953585347829881,0.009420644827708697,0.009307196977134809,0.009195475058541408,0.009085445086546413,0.008977073930818008,0.008870329289508126,0.008765179663664833,0.008661594332589645,0.008559543330096522,0.008458997421634036,0.008359928082234876,0.00826230747525867,0.008166108431893625,0.008071304431387637,0.007977869581974968,0.007885778602474991,0.007795006804532005,0.00770553007547138,0.007617324861747098,0.007530368152958288,0.0074446374664077705,0.0073601108321884835,0.0072767667787692935,0.00719458431906589,0.00711354293697659,0.0070336225743625296,0.0069548036184595855,0.006877066889701346,0.006800393629940972,0.006724765491054134,0.0066501645239085555,0.006576573167690659,0.006503974239569804,0.006432350924692648,0.006361686766492184,0.006291965657303257,0.006223171829268936,0.006155289845530656,0.006088304591692021,0.006022201267543022,0.005956965379040024,0.005892582730527161,0.005829039417196738,0.005766321817773695,0.0057044165874224305,0.0056433106508627885,0.005582991195692802,0.005523445665906501,0.005464661755604123,0.0054066274028855945,0.005349330783921387,0.005292760307197201,0.005236904607921078,0.005181752542594554,0.0051272931837368155,0.005073515814759304,0.005020409924985985,0.00496796520481231,0.004916171541001269,0.004865019012110345,0.004814497884044399,0.004764598605733128,0.004715311804926362,0.004666628284103926,0.004618539016498502,0.004571035142225506,0.004524107964517059,0.004477748946058574,0.004431949705421726,0.004386702013593553,0.004341997790597657,0.00429782910220405,0.004254188156725755,0.004211067301899801,0.0041684590218482795,0.004126355934119431,0.0040847507868049145,0.00404363645573031,0.004003005941719674,0.003962852367926986,0.003923168977238019,0.0038839491297363886,0.003845186300233753,0.003806874075862737,0.0037690061537280196,0.0037315763386183017,0.0036945785407727803,0.0036580067737043975,0.0036218551520752016,0.003586117889624707,0.0035507892971479472,0.0035158637805230717,0.003481335838786646,0.0034472000622544426,0.0034134511306890374,0.003380083811508688,0.0033470929580412313,0.0033144735078176903,0.0032822204809067135,0.0032503289782884973,0.003218794180266139,0.0031876113449142256,0.0031567758065638514,0.003126282974322041,0.0030961283306257434,0.0030663074298291773,0.0030368158968227636,0.003007649425684105,0.0029788037783597715,0.002950274783376142,0.002922058334580082,0.0028941503899072053,0.002866546970178311,0.002839244157922098,0.0028122380962242103,0.002785524987601882,0.002759101092903348,0.002732962730231059,0.002707106273888769,0.0026815281533516073,0.0026562248522581594,0.002631192907425093,0.002606428907881974,0.0025819294939276923,0.002557691356206664,0.002533711234804935,0.0025099859183653522,0.0024865122432214167,0.002463287092549755,0.0024403073955399962,0.0024175701265822303,0.00239507230447155,0.0023728109916291698,0.002350783293339191,0.002328986357001937,0.002307417371401906,0.002286073565991302,0.0022649522101882997,0.0022440506126887106,0.0022233661207928307,0.0022028961197451727,0.0021826380320877246,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.2206174418099462,0.21941322986438946,0.2168221211890148,0.21298868956319245,0.2081101360354761,0.20241039006058217,0.19611578794293902,0.1894363650295519,0.18255425633415767,0.1756186572088354,0.16874571425916743,0.1620214907177574,0.15550643326658722,0.1492402321508513,0.14324641029082144,0.13753631504793393,0.13211240737959465,0.12697086922609113,0.12210361053785551,0.11749977782200469,0.1131468647401406,0.10903151377866141,0.10514008308416212,0.10145903773447972,0.09797521158830869,0.09467597494250136,0.09154933450260008,0.08858398538099396,0.08576932964657753,0.0830954720360175,0.08055320051426547,0.07813395720751097,0.07582980363850898,0.07363338302791643,0.0715378815764121,0.06953699002720426,0.06762486636596551,0.06579610019872636,0.06404567912385155,0.062368957257214905,0.06076162596098468,0.059219686753189456,0.05773942632709752,0.05631739357940972,0.05495037852886993,0.053635392998658035,0.052369652933537736,0.05115056222471169,0.049975697919916656,0.04884279670247704,0.04774974253034824,0.046694555333683,0.045675380677230835,0.044690480301429976,0.04373822346324873,0.04281707900479132,0.04192560808399666,0.041062457507766874,0.04022635361331927,0.039416096648598624,0.03863055560712417,0.0378686634769049,0.037129412866766874,0.03641185197692305,0.035715080883726436,0.03503824811132402,0.034380547465543296,0.033741215107571214,0.03311952684710368,0.03251479563650148,0.031926369249194585,0.03135362812706866,0.030795983383007607,0.030252874945952378,0.029723769836998155,0.029208160566068796,0.028705563639599755,0.028215518170547748,0.02773758458274761,0.027271343402352828,0.026816394129714864,0.026372354185594513,0.025938857926155075,0.025515555721606825,0.025102113093821564,0.024698209908610776,0.024303539618719835,0.023917808553885846,0.023540735254637256,0.02317204984673895,0.022811493453451452,0.022458817642993546,0.022113783908779782,0.02177616318022482,0.021445735362041005,0.021122288900131875,0.02080562037231894,0.02049553410227714,0.020191841795155357,0.019894362193500402,0.019602920752172497,0.019317349331051864,0.01903748590442119,0.018763174285972004,0.018494263868483775,0.018230609377264218,0.017972070636516933,0.017718512347859938,0.01746980388025673,0.017225819070696504,0.016986436034979416,0.016751536988020798,0.016521008073120787,0.01629473919968762,0.016072623888922433,0.015854559127027355,0.01564044522550449,0.015430185688153783,0.01522368708440157,0.015020858928603626,0.014821613565008487,0.014625866058065977,0.014433534087797762,0.014244537849958402,0.01405879996073711,0.013876245365753374,0.013696801253133283,0.013520396970447266,0.013346963945313426,0.013176435609481896,0.013008747326216303,0.01284383632081633,0.012681641614116973,0.012522103958819383,0.012365165778515859,0.012210771109270439,0.012058865543639833,0.011909396177010097,0.011762311556140801,0.011617561629810586,0.01147509770146716,0.01133487238378141,0.011196839555024863,0.01106095431717979,0.010927172955704202,0.01079545290087773,0.010665752690651079,0.010538031934938123,0.010412251281280776,0.010288372381826854,0.01016635786156459,0.010046171287753198,0.009927777140503972,0.009811140784456693,0.009696228441506007,0.009583007164532016,0.009471444812093938,0.009361510024041416,0.00925317219801073,0.009146401466764324,0.009041168676339917,0.008937445364977054,0.008835203742784781,0.00873441667212572,0.00863505764868311,0.008537100783184913,0.00844052078375776,0.008345292938887418,0.008251393100957311,0.008158797670347762,0.00806748358006978,0.007977428280913804,0.007888609727094622,0.007801006362369557,0.007714597106616468,0.0076293613428505755,0.007545278904664506,0.007462330064075344,0.007380495519764582,0.007299756385692845,0.007220094180079974,0.007141490814733592,0.007063928584714284,0.006987390158326292,0.006911858567418483,0.006837317197988695,0.006763749781077241,0.006691140383940335,0.006619473401494361,0.006548733548018359,0.006478905849109619,0.00640997563388049,0.006341928527389087,0.006274750443295435,0.006208427576736317,0.0061429463974084775,0.006078293642856773,0.006014456311957481,0.005951421658591066,0.005889177185498848,0.0058277106383147585,0.005767009999769885,0.00570706348406127,0.005647859531380613,0.0055893868025981685,0.005531634174094488,0.005474590732738327,0.005418245771003533,0.005362588782221381,0.005307609455963744,0.005253297673553694,0.0051996435036972865,0.005146637198235639,0.005094269188011281,0.005042530078845871,0.004991410647626589,0.004940901838495554,0.0048909947591420115,0.00484168067719193,0.004792951016692847,0.00474479735469082,0.004697211417897411,0.004650185079442023,0.004603710355709573,0.004557779403259101,0.004512384515821373,0.004467518121373875,0.0044231727792889124,0.004379341177555282,0.004336016130069305,0.004293190573993985,0.004250857567184757,0.004209010285678151,0.004167642021243977,0.004126746178997316,0.004086316275069364,0.004046345934335245,0.00400682888819776,0.00396775897242387,0.003929130125034645,0.0038909363842454716,0.003853171886455686,0.003815830864286812,0.0037789076446663964,0.0037423966469583526,0.0037062923811369093,0.0036705894460036183,0.0036352825274460145,0.0036003663967374305,0.003565835908875294,0.003531686000958931,0.0034979116906042455,0.0034645080743948386,0.0034314703263690293,0.0033987936965404475,0.003366473509453124,0.00333450516276881,0.0033028841258861603,0.0032716059385913265,0.0032406662097378513,0.0032100606159568704,0.0031797849003955057,0.0031498348714832235,0.0031202064017253226,0.003090895426523293,0.0030618979430201893,0.0030332100089719145,0.003004827741642705,0.002976747316724406,0.0029489649672795083,0.00292147698270607,0.0028942797077255696,0.0028673695413919628,0.002840742936121874,0.002814396396745227,0.0027883264795762848,0.0027625297915034883,0.002737002989099095,0.0027117427777470183,0.002686745910788846,0.002662009188687881,0.0026375294582097774,0.00261330361162072,0.0025893285859017335,0.0025656013619790416,0.002542118963970442,0.0025188784584463334,0.002495876953706351,0.002473111599070268,0.002450579584183226,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22437322911822077,0.2234050168444295,0.22105166366605047,0.2174443689355656,0.21276957104593708,0.20724402006027662,0.20109053457826906,0.19451872704473122,0.18771253736181145,0.1808243139329071,0.17397397887566862,0.167251477569221,0.16072092579064626,0.15442530240793448,0.14839097506615231,0.14263169206136514,0.13715190583378048,0.13194942978343524,0.12701749838851153,0.12234632632753674,0.11792426425529905,0.1137386392961606,0.10977635442733165,0.10602430659858773,0.10246967049514005,0.09910008395732542,0.09590376228777975,0.09286956179319186,0.08998700761881304,0.0872462969264206,0.08463828546256902,0.08215446332999232,0.07978692412435111,0.07752833038601743,0.07537187742971914,0.07331125697008306,0.07134062149449613,0.06945454999909836,0.06764801546453167,0.06591635427869001,0.06425523769580117,0.0626606453401929,0.0611288407089959,0.05965634859305244,0.058239934314287006,0.05687658466615123,0.05556349043911397,0.05429803041304391,0.05307775670122451,0.05190038133580846,0.050763763990512224,0.04966590074318234,0.048604913787854975,0.04757904201284547,0.046586632368289936,0.045626131952919764,0.04469608075600856,0.04379510499608874,0.04292191100331658,0.04207527959715421,0.041254060915562545,0.04045716965586148,0.03968358069115557,0.03893232502957232,0.03820248608655874,0.037493196243314826,0.03680363366685893,0.0361330193695246,0.03548061448771057,0.03484571776156567,0.03422766319892004,0.03362581790834479,0.03303958008752156,0.03246837715437249,0.031911664009514513,0.03136892141957908,0.03083965451190814,0.030323391371907874,0.029819681735125093,0.029328095766788197,0.028848222922145426,0.028379670881541117,0.027922064554631306,0.02747504514863171,0.027038269295900915,0.026611408236555223,0.026194147052134,0.025786183946696423,0.02538722957197664,0.024997006393514976,0.024615248094923124,0.02424169901764094,0.02387611363378336,0.02351825604982218,0.023167899539040734,0.022824826100846168,0.022488826045174104,0.02215969760033197,0.021837246542780516,0.02152128584743025,0.021211635357150434,0.020908121470281284,0.02061057684500883,0.02031884011957166,0.02003275564731189,0.01975217324566733,0.019476947958263966,0.019206939829309745,0.018942013689571505,0.018682038953238677,0.01842688942503941,0.018176443117011106,0.017930582074371933,0.017689192209961603,0.017452163146777888,0.017219388068142313,0.016990763575071052,0.016766189550454322,0.016545569029659306,0.01632880807721801,0.016115815669260028,0.01590650358138459,0.01570078628167997,0.015498580828619888,0.015299806773571893,0.015104386067687403,0.014912242972937688,0.01472330397708456,0.014537497712387147,0.01435475487784695,0.014175008164823024,0.013998192185840603,0.013824243406436757,0.013653100079895784,0.013484702184724745,0.013318991364745576,0.013155910871669788,0.012995405510039392,0.012837421584419889,0.012681906848741367,0.012528810457679883,0.01237808291999227,0.012229676053707058,0.012083542943088025,0.011939637897290951,0.011797916410630355,0.011658335124391305,0.011520851790110838,0.011385425234265402,0.011252015324301439,0.011120582935951709,0.010991089921775506,0.010863499080876768,0.010737774129743494,0.010613879674161983,0.010491781182161701,0.010371444957941548,0.010252838116743209,0.010135928560626206,0.010020684955109107,0.009907076706642249,0.009795073940872904,0.009684647481676809,0.009575768830919826,0.009468410148922256,0.009362544235596662,0.009258144512234018,0.009155185003907985,0.009053640322478523,0.008953485650166999,0.008854696723681724,0.008757249818873896,0.008661121735899249,0.008566289784871369,0.00847273177198378,0.008380425986084286,0.008289351185685658,0.008199486586392394,0.008110811848733085,0.00802330706637937,0.00793695275473877,0.007851729839906925,0.007767619647967683,0.007684603894624643,0.007602664675156841,0.007521784454683475,0.007441946058727475,0.00736313266406868,0.007285327789872643,0.007208515289090043,0.007132679340113598,0.0070578044386849755,0.0069838753900424815,0.0069108773013023764,0.006838795574062781,0.006767615897226466,0.006697324240032208,0.0066279068452883986,0.006559350222803212,0.006491641143001762,0.006424766630727751,0.006358713959220744,0.006293470644264047,0.006229024438498588,0.006165363325894466,0.006102475516378872,0.006040349440612312,0.005978973744909593,0.005918337286300509,0.005858429127726736,0.005799238533368055,0.005740754964097188,0.005682968073056651,0.005625867701354555,0.005569443873876576,0.005513686795207883,0.005458586845664911,0.005404134577431214,0.005350320710795031,0.0052971361304852615,0.0052445718821036505,0.005192619168648104,0.0051412693471272666,0.005090513925261482,0.005040344558268202,0.00499075304573006,0.004941731328541105,0.004893271485931541,0.004845365732566715,0.004798006415718768,0.004751186012509562,0.004704897127220757,0.004659132488671764,0.004613884947661674,0.0045691474744740295,0.00452491315644249,0.004481175195576295,0.004437926906242058,0.004395161712902727,0.004352873147910253,0.004311054849351096,0.004269700558943684,0.004228804119984599,0.00418835947534448,0.004148360665510571,0.004108801826675249,0.004069677188869143,0.004030981074138188,0.003992707894761869,0.003954852151513695,0.003917408431961072,0.0038803714088041803,0.0038437358382532563,0.003807496558441671,0.003771648487876037,0.003736186623920706,0.00370110604131633,0.003666401890732076,0.0036320693973491266,0.003598103859476622,0.0035645006471977697,0.0035312552010458276,0.0034983630307091644,0.0034658197137650256,0.0034336208944400395,0.0034017622823985507,0.003370239651556695,0.003339048838922069,0.0033081857434587455,0.0032776463249757156,0.0032474266030399143,0.0032175226559118847,0.0031879306195039987,0.003158646686361082,0.003129667104661584,0.0031009881772405897,0.003072606260632709,0.0030445177641350287,0.003016719148889376,0.002989206926983941,0.0029619776605725864,0.00293502796101303,0.002908354488022239,0.0028819539488490094,0.0028558230974637623,0.0028299587337639416,0.0028043577027962005,0.0027790168939938343,0.002753933240429563,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.2276038479041856,0.2256720618201127,0.2224581289944965,0.21813071100498407,0.21289554525917895,0.20697115244279693,0.20056834437290136,0.19387602979917473,0.18705360274351918,0.18022875804386113,0.1734990251158502,0.16693538946296596,0.16058675142543025,0.15448440766722937,0.1486461064772368,0.14307948523005962,0.13778485630676182,0.1327573918614761,0.12798879384005996,0.12346854372411047,0.11918482019094188,0.1151251605491568,0.11127692804625997,0.10762763423927972,0.1041651545138613,0.10087786575037666,0.09775472793899402,0.09478532597013202,0.09195988357551173,0.08926925819010674,0.08670492311008246,0.08425894154439031,0.08192393584533708,0.0796930542399942,0.07755993667992957,0.07551868091426622,0.07356380952063206,0.07169023836193296,0.06989324674707235,0.06816844943967926,0.06651177056570826,0.06491941940704639,0.06338786802620772,0.06191383064017531,0.060494244645663525,0.05912625318990597,0.05780718917821928,0.05653456061061459,0.05530603714290554,0.0541194377726939,0.05297271955636832,0.05186396726940031,0.05079138392870007,0.049753282101971455,0.04874807593516598,0.04777427383490233,0.04683047174818946,0.04591534698680992,0.045027652548514145,0.04416621189140452,0.04332991412190612,0.042517709560340344,0.04172860565136908,0.04096166318966163,0.040215992833777484,0.03949075188377976,0.03878514130031456,0.0380984029449361,0.03742981702325166,0.03677869971419161,0.03614440097014445,0.0355263024740975,0.03492381574115426,0.03433638035288121,0.03376346231400707,0.03320455252185265,0.03265916533973448,0.03212683726633589,0.03160712569369227,0.031099607747110704,0.03060387920085316,0.030119553463957296,0.029646260631022176,0.029183646593220328,0.028731372205156324,0.028289112503589793,0.027856555974315005,0.027433403863808478,0.02701936953252278,0.02661417784692444,0.02621756460763973,0.025829276011233967,0.025449068143362636,0.025076706501194295,0.02471196554317135,0.024354628264296515,0.02400448579530239,0.023661337024146228,0.023324988238404922,0.022995252787247743,0.022671950761739782,0.022354908692349854,0.022043959262584036,0.021738941037758402,0.02143969820799374,0.021146080344559885,0.02085794216878667,0.020575143332782125,0.02029754821126671,0.02002502570387174,0.019757449047299567,0.01949469563676632,0.019236646856212177,0.018983187916771074,0.01873420770303919,0.018489598626710572,0.01824925648716157,0.018013080338616004,0.017780972363522055,0.017552837751808725,0.017328584585704767,0.017108123729827222,0.01689136872625144,0.016678235694313332,0.016468643234887507,0.016262512338913168,0.016059766299951973,0.015860330630563475,0.015664132982316396,0.015471103069244162,0.015281172594575426,0.015094275180579937,0.014910346301368314,0.014729323218511668,0.014551144919336439,0.014375752057768159,0.014203086897601462,0.01403309325808331,0.013865716461693123,0.013700903284026263,0.013538601905675277,0.013378761866019205,0.013221334018834841,0.013066270489640345,0.012913524634700994,0.012763051001615781,0.012614805291416217,0.012468744322109414,0.012324825993603693,0.012183009253949875,0.012043254066848905,0.011905521380364482,0.011769773096790984,0.01163597204362863,0.011504081945613346,0.011374067397763797,0.011245893839397359,0.011119527529076143,0.010994935520446197,0.010872085638927659,0.010750946459227638,0.010631487283637341,0.01051367812108318,0.010397489666901114,0.010282893283306727,0.0101698609805288,0.010058365398586115,0.009948379789677378,0.009839878001161909,0.009732834459109385,0.00962722415239202,0.00952302261730436,0.009420205922685783,0.009318750655528148,0.009218633907051455,0.009119833259225723,0.009022326771727837,0.00892609296931297,0.008831110829586812,0.008737359771163359,0.00864481964219548,0.008553470709260847,0.008463293646595484,0.008374269525658437,0.00828637980501695,0.008199606320541977,0.00811393127589911,0.008029337233329607,0.00794580710470734,0.007863324142863717,0.007781871933170597,0.007701434385373602,0.0076219957256639,0.007543540488984628,0.007466053511560685,0.007389519923645327,0.007313925142477341,0.00723925486543851,0.007165495063408853,0.0070926319743098865,0.007020652096830808,0.006949542184332396,0.006879289238919927,0.006809880505683493,0.006741303467097292,0.006673545837573976,0.006606595558168576,0.006540440791428437,0.006475069916381599,0.006410471523663009,0.006346634410771397,0.0062835475774536,0.006221200221213283,0.0061595817329374285,0.0060986816926405585,0.00603848986532036,0.0059789961969222895,0.0059201908104095785,0.005862064001936347,0.005804606237118202,0.005747808147400725,0.005691660526520372,0.0056361543270559075,0.005581280657068394,0.0055270307768247665,0.005473396095605661,0.005420368168592681,0.005367938693833529,0.0053160995092834526,0.005264842589918649,0.005214160044922378,0.0051640441149395635,0.0051144871693987876,0.005065481703899406,0.005017020337662855,0.004969095811044155,0.004921700983104768,0.004874828829242938,0.00482847243888065,0.004782625013206236,0.004737279862969179,0.004692430406328215,0.0046480701667493485,0.004604192770953197,0.004560791946910061,0.004517861521882077,0.004475395420509539,0.004433387662942385,0.0043918323630139965,0.0043507237264567575,0.004310056049158701,0.004269823715458623,0.004230021196480801,0.004190643048506575,0.0041516839113824675,0.004113138506964353,0.004075001637595125,0.004037268184617175,0.003999933106917191,0.0039629914395029765,0.003926438292111405,0.0038902688478472157,0.0038544783618503966,0.0038190621599934246,0.003784015637606134,0.003749334258227951,0.0037150135523873916,0.003681049116406579,0.003647436611232189,0.00361417176129066,0.0035812503533675316,0.0035486682355108756,0.0035164213159567534,0.0034845055620779967,0.003452916999354459,0.003421651710364661,0.003390705833798192,0.0033600755634888855,0.0033297571474669393,0.0032997468870312923,0.0032700411358404626,0.0032406362990218263,0.003211528832299346,0.0031827152411380557,0.0031541920799065476,0.0031259559510558184,0.003098003504314593 +0.1037438458398287,0.1037438458398287,0.10336064103056954,0.10097407186253202,0.0967275684833425,0.09116323709010836,0.08485987227718866,0.07831302992151497,0.07188273391563221,0.06579467351968335,0.06016763362742148,0.0550463205361193,0.05042933853936874,0.04628950164256543,0.042587181834326956,0.03927844659909426,0.036319680110619874,0.033669984817317235,0.031292251977674684,0.029153471870193782,0.02722463451253054,0.025480429140753397,0.023898861926857,0.022460857717027834,0.02114987986697937,0.019951583977698212,0.018853511112926942,0.01784482060273861,0.016916059808777494,0.016058967054426256,0.015266303605355662,0.014531710713534367,0.013849588076839243,0.01321499048626408,0.012623539862688047,0.01207135028998653,0.011554964015009526,0.01107129670286669,0.01061759050886327,0.010191373760110077,0.009790426234861685,0.009412749191163802,0.009056539432998893,0.008720166816054958,0.00840215469027189,0.00810116285547274,0.007815972672464238,0.0075454740271445045,0.007288653891256256,0.007044586262069829,0.006812423295648229,0.006591387475590368,0.006380764682071157,0.006179898045349531,0.005988182484263598,0.005805059844116119,0.005630014560105528,0.0054625697824881685,0.005302283908200288,0.005148747470960752,0.00500158034814481,0.0048604292480688895,0.004724965445950472,0.004594882740782227,0.0044698956087850334,0.004349737532087059,0.004234159483836359,0.00412292855319715,0.004015826695620938,0.003912649595480246,0.0038132056296255974,0.0037173149217303524,0.0036248084784106264,0.0035355273991080787,0.0034493221525968595,0.003366051913740521,0.0032855839548118783,0.003207793086278988,0.003132561142495634,0.0030597765082019225,0.002989333682158436,0.0029211328746029316,0.002855079635554385,0.002791084511274985,0.0027290627264659117,0.002668933890005813,0.002610621722245897,0.0025540538020684344,0.0024991613320765453,0.0024458789204369973,0.0023941443780323077,0.002343898529696918,0.002295085038426686,0.0022476502415442233,0.002201542997894572,0.002156714545224957,0.0021131183669759242,0.0020707100677743004,0.0020294472569823818,0.0019892894397074536,0.001950197914727209,0.0019121356788312535,0.0018750673371171695,0.0018389590188204457,0.0018037782982872927,0.0017694941207325122,0.0017360767324515523,0.0017034976151824672,0.0016717294243346957,0.001640745930826517,0.0016105219662891704,0.0015810333714156345,0.0015522569472484133,0.0015241704092141999,0.0014967523437300805,0.0014699821672158537,0.0014438400873604516,0.0014183070665012365,0.0013933647869834582,0.0013689956183789184,0.001345182586448866,0.0013219093437454288,0.0012991601417526415,0.001276919804475313,0.0012551737033888,0.001233907733670766,0.0012131082916390465,0.0011927622533259483,0.0011728569541238473,0.0011533801694399944,0.0011343200963044502,0.0011156653358766133,0.0010974048768004998,0.001079528079361567,0.0010620246604012308,0.0010448846789469434,0.0010280985225199486,0.0010116568940834487,0.0009955507995972055,0.0009797715361465102,0.0009643106806145955,0.0009491600788708726,0.0009343118354474898,0.0009197583036792023,0.0009054920762829543,0.0008915059763541642,0.0008777930487593889,0.0008643465519048403,0.0008511599498621942,0.0008382269048338857,0.0008255412699413429,0.00081309708231982,0.0008008885565055729,0.0007889100781007447,0.0007771561977027426,0.0007656216250856743,0.0007543012236213492,0.0007431900049292153,0.0007322831237440036,0.0007215758729910977,0.0007110636790601512,0.0007007420972673944,0.0006906068074985648,0.0006806536100238272,0.0006708784214770709,0.0006612772709921417,0.0006518462964891587,0.0006425817411038534,0.0006334799497541382,0.0006245373658374933,0.0006157505280535818,0.0006071160673467975,0.0005986307039631812,0.000590291244617307,0.0005820945797640648,0.0005740376809710452,0.0005661175983872273,0.0005583314583040707,0.0005506764608048196,0.0005431498774987878,0.0005357490493368146,0.000528471384504641,0.0005213143563911457,0.0005142755016280851,0.0005073524181988569,0.0005005427636132165,0.0004938442531454159,0.00048725465813322474,0.0004807718043355208,0.0004743935703458731,0.0004681178860602972,0.0004619427311967914,0.00045586613386474956,0.0004498861691823967,0.0004440009579401691,0.00043820866530860946,0.0004325074995888391,0.0004268957110040846,0.00042137159053079286,0.0004159334687676142,0.0004105797148411625,0.000405308735346949,0.00040011897332429603,0.00039500890726394076,0.00038997705014723495,0.00038502194851556865,0.0003801421815692126,0.0003753363602943108,0.00037060312661707794,0.0003659411525843066,0.00036134913956904617,0.00035682581750082817,0.0003523699441193809,0.000347980304251074,0.0003436557091073619,0.0003393949956042833,0.0003351970257025285,0.0003310606857671875,0.00032698488594658205,0.00032296855956949483,0.000319010662560263,0.00031511017287093486,0.0003112660899301683,0.00030747743410812153,0.00030374324619687206,0.0003000625869058994,0.00029643453637196473,0.0002928581936831471,0.00028933267641638395,0.0002858571201881714,0.00028243067821795133,0.0002790525209038443,0.0002757218354101874,0.0002724378252666843,0.00026919970997865835,0.00026600672464810113,0.000262858119605223,0.0002597531600500301,0.0002566911257038061,0.00025367131047004433,0.0002506930221045821,0.00024775558189469725,0.000244858324346764,0.0002420005968823664,0.00023918175954249188,0.00023640118469960206,0.0002336582567773308,0.00023095237197761915,0.0002282829380149551,0.00022564937385764728,0.00022305110947581778,0.0002204875855959445,0.0002179582534618025,0.00021546257460149294,0.00021300002060054484,0.00021057007288077863,0.00020817222248483146,0.00020580596986614314,0.00020347082468429847,0.00020116630560546882,0.00019889194010793177,0.00019664726429243078,0.00019443182269727097,0.00019224516811803763,0.00019008686143172297,0.0001879564714252568,0.00018585357462822154,0.00018377775514966753,0.00018172860451894606,0.00017970572153035318,0.00017770871209160256,0.00017573718907592964,0.00017379077217776018,0.00017186908777184123,0.000169971768775767,0.00016809845451572022,0.00016624879059546618,0.00016442242876841325,0.00016261902681269003,0.00016083824840919047,0.0001590797630224208,0.00015734324578417944,0.000155628377379917,0.00015393484393774133,0.00015226233691997658,0.00015061055301725,0.00014897919404495825,0.00014736796684215384,0.00014577658317271235,0.0001442047596287474,0.00014265221753623572,0.00014111868286273004,0.00013960388612719514,0.0001381075623118416,0.00013662945077593552,0.00013516929517155046,0.00013372684336114695,0.00013230184733702415,0.00013089406314252685,0.00012950325079499195,0.1180030290223649,0.1180030290223649,0.1177900314231851,0.11553017787947582,0.11110769916658096,0.10509824500410554,0.09814800278966337,0.09082983807307164,0.08357244690392544,0.07665304233129125,0.07022416980493969,0.06434980720533515,0.05903753327950565,0.054262502158317454,0.04998350610797482,0.04615294041889321,0.04272257483120738,0.03964663893597801,0.03688327484334717,0.03439504294599366,0.03214890712580882,0.030115955230298853,0.02827100339447202,0.02659216733364225,0.025060444740392717,0.023659330217454526,0.022374471311314134,0.021193367184382878,0.02010510784838971,0.019100150220327343,0.018170126690377698,0.01730768190120043,0.01650633373667441,0.015760354939810834,0.01506467223266822,0.014414780248539665,0.013806667985758641,0.013236755844839543,0.01270184161535626,0.01219905403902724,0.011725812795316561,0.011279793940801204,0.010858899988466751,0.010461233942577752,0.01008507671297142,0.009728867422884058,0.009391186199875116,0.009070739102467373,0.008766344887878835,0.008476923370490337,0.00820148515779717,0.007939122581848809,0.007689001670494093,0.0074503550249791295,0.007222475489233029,0.007004710512142387,0.00679645711763421,0.006597157408931484,0.0064062945431821085,0.0062233891210609436,0.006047995943169487,0.005879701091223388,0.005718119297350145,0.005562891569404361,0.005413683044159719,0.005270181043679711,0.00513209331312422,0.004999146420839133,0.004871084303818237,0.004747666943586666,0.0046286691592573774,0.004513879506019561,0.004403099268615818,0.004296141540521991,0.004192830380554312,0.004093000039512604,0.003996494250264112,0.0039031655753552995,0.003812874806858789,0.0037254904137036748,0.0036408880322215216,0.003558949996063571,0.003479564902034274,0.003402627208717018,0.003328036865075879,0.00325569896648703,0.003185523435891554,0.0031174247279849407,0.0030513215545455077,0.0029871366291824397,0.0029247964299404807,0.002864230978335625,0.0028053736335293283,0.0027481609004568375,0.0026925322508322682,0.0026384299560449956,0.0025857989310474477,0.002534586588407738,0.0024847427017750416,0.00243621927806315,0.0023889704377178154,0.002342952302485102,0.0022981228901426225,0.002254442015703063,0.0022118711986339767,0.0021703735756762477,0.002129913818875336,0.0020904580584700013,0.0020519738103081525,0.002014429907488396,0.0019777964359447187,0.001942044673714952,0.001907147033652832,0.001873077009359119,0.0018398091241269483,0.001807318882707996,0.0017755827257217869,0.001744577986543023,0.0017142828505116929,0.00168467631632455,0.0016557381594733806,0.001627448897606464,0.0015997897576973817,0.0015727426449138216,0.00154629011308456,0.0015204153366722639,0.0014951020841632082,0.0014703346927923454,0.001446098044527373,0.0014223775432390998,0.0013991590929923361,0.001376429077393457,0.0013541743399361394,0.001332382165289963,0.0013110402614804645,0.0012901367429111739,0.0012696601141832498,0.001249599254668971,0.001229943403799189,0.0012106821470271672,0.0011918054024324196,0.0011733034079322085,0.0011551667090683507,0.0011373861473399866,0.0011199528490545806,0.0011028582146701189,0.0010860939086046388,0.0010696518494889551,0.001053524200840768,0.0010377033621392316,0.0010221819602805136,0.0010069528413951374,0.0009920090630103475,0.0009773438865402645,0.0009629507700883187,0.000948823361547272,0.0009349554919821905,0.0009213411692838052,0.0009079745720790758,0.0008948500438871853,0.0008819620875098242,0.0008693053596444666,0.0008568746657111947,0.0008446649548828617,0.0008326713153096209,0.0008208889695290715,0.0008093132700539408,0.0007979396951289616,0.0007867638446501356,0.0007757814362388126,0.0007649883014639961,0.0007543803822066276,0.0007439537271592789,0.0007337044884560789,0.000723628918426874,0.0007137233664705553,0.0007039842760424883,0.0006944081817514276,0.0006849917065609726,0.0006757315590917601,0.0006666245310198757,0.0006576674945676505,0.0006488574000832365,0.000640191273704979,0.000631666215107674,0.0006232793953270588,0.0006150280546595711,0.0006069095006343452,0.0005989211060547327,0.0005910603071062916,0.0005833246015290865,0.0005757115468514857,0.0005682187586831756,0.0005608439090652399,0.0005535847248747945,0.0005464389862825273,0.0005394045252608333,0.0005324792241407328,0.000525661014215857,0.0005189478743914448,0.0005123378298770688,0.0005058289509211956,0.0004994193515861472,0.0004931071885619652,0.00048689066001784417,0.00048076800448954287,0.0004747374998017974,0.0004687974620242373,0.0004629462444596921,0.00045718223666381337,0.00045150386349466956,0.0004459095841915755,0.000440397891481896,0.0004349673107149262,0.00042961639902197997,0.00042434374450156623,0.00041914796542907694,0.0004140277094899325,0.0004089816530354714,0.00040400850036078067,0.0003991069830038156,0.0003942758590648797,0.00038951391254606125,0.0003848199527097523,0.0003801928134556929,0.000375631352715982,0.00037113445186728097,0.0003667010151598949,0.00036232996916299464,0.0003580202622255277,0.000353770863952292,0.0003495807646947461,0.0003454489750559149,0.00034137452540917285,0.0003373564654302828,0.00033339386364233893,0.0003294858069732547,0.00032563140032523466,0.0003218297661560838,0.0003180800440718137,0.0003143813904302528,0.0003107329779553703,0.00030713399536183236,0.0003035836469896803,0.00030008115244866974,0.00029662574627203447,0.0002932166775793737,0.00028985320974844536,0.0002865346200954522,0.0002832601995637528,0.0002800292524206177,0.0002768410959618237,0.000273695060223906,0.00027059048770371457,0.00026752673308522157,0.0002645031629732556,0.00026151915563399776,0.00025857410074203187,0.0002556673991338119,0.0002527984625672345,0.0002499667134873036,0.0002471715847975983,0.0002444125196374105,0.00024168897116443624,0.00023900040234274485,0.00023634628573603248,0.00023372610330589467,0.00023113934621502212,0.0002285855146352067,0.00022606411755993016,0.00022357467262154325,0.00022111670591279972,0.0002186897518126807,0.00021629335281636092,0.00021392705936925855,0.00021159042970495117,0.0002092830296869864,0.00020700443265438186,0.00020475421927075506,0.0002025319773770046,0.00020033730184736977,0.00019816979444888793,0.0001960290637040792,0.0001939147247568007,0.0001918263992411819,0.00018976371515358814,0.00018772630672745668,0.00018571381431103126,0.00018372588424784875,0.00018176216875992438,0.0001798223258335976,0.0001779060191078903,0.0001760129177654153,0.0001741426964256967,0.0001722950350408613,0.0001704696187936682,0.00016866613799774625,0.00016688428800007231,0.0001651237690855767,0.00016338428638383205,0.13504330539914677,0.13504330539914677,0.13497386016004637,0.13294951713058167,0.12840165457107974,0.12193381226473372,0.11426580415925217,0.10606176480654515,0.09783514382814881,0.08992886454397428,0.0825398365911189,0.07575829209977114,0.06960485279964705,0.06405901936834726,0.059078676465463255,0.054612419566616895,0.05060683633317305,0.047010503703745495,0.04377596000790708,0.040860484820726094,0.038226210539345794,0.035839883623212804,0.03367246238728679,0.03169865750754408,0.029896472866599896,0.028246775829839817,0.0267329096663147,0.025340351728647202,0.024056416192914938,0.022869997826811716,0.021771352324569004,0.0207519085827293,0.019804108520459905,0.018921270459003436,0.01809747254782726,0.017327453196779183,0.01660652591213074,0.01593050632641321,0.015295649553827471,0.014698596296655257,0.014136326377500213,0.013606118582782463,0.01310551587983262,0.012632295218171694,0.012184441249688947,0.011760123406146206,0.01135767585926659,0.010975579961312617,0.010612448824907047,0.01026701375195638,0.009938112264406915,0.009624677525703229,0.009325728972264188,0.009040364000026967,0.008767750572872293,0.008507120638247531,0.008257764250977724,0.008019024319646082,0.007790291901339312,0.00757100198030277,0.007360629674440421,0.007158686820756046,0.006964718897028021,0.006778302242339551,0.00659904154367984,0.0064265675598366,0.006260535057236739,0.006100620935406528,0.005946522522331237,0.0057979560222766666,0.0056546551006158375,0.00551636959196116,0.005382864319412885,0.005253918014083811,0.005129322325237567,0.005008880912408446,0.004892408611798741,0.004779730670045443,0.004670682039171161,0.004565106727165445,0.0044628571992072815,0.004363793825033453,0.004267784368412353,0.004174703515068843,0.004084432435765149,0.003996858381558398,0.003911874308532794,0.0038293785295663435,0.0037492743909099315,0.003671469971565341,0.0035958778036315835,0.003522414611949254,0.0034510010715285964,0.0033815615813731544,0.0033140240534361787,0.00324831971555442,0.003184382927304259,0.0031221510078104963,0.003061564074625869,0.0030025648928662225,0.00294509873385699,0.0028891132426070117,0.002834558313477915,0.0027813859734732355,0.002729550272611618,0.002679007180893732,0.002629714491409583,0.002581631729168749,0.0025347200652653568,0.0024889422360236005,0.0024442624667915017,0.0024006464000781175,0.0023580610277517174,0.0023164746270348,0.0022758567000550783,0.002236177916724857,0.0021974100607396836,0.002159525978502026,0.0021224995307871273,0.002086305546984679,0.002050919781757744,0.0020163188739734106,0.001982480307768741,0.0019493823756255007,0.0019170041433337038,0.0018853254167351733,0.0018543267101422986,0.001823989216335797,0.001794294778051553,0.0017652258608706734,0.001736765527435317,0.0017088974129148566,0.0016816057016534407,0.0016548751049336374,0.0016286908397955282,0.0016030386088527796,0.0015779045810533929,0.0015532753733334236,0.0015291380331165442,0.0015054800216151108,0.0014822891978897245,0.0014595538036290738,0.0014372624486118403,0.0014154040968159746,0.0013939680531425884,0.001372943950722433,0.0013523217387768436,0.0013320916710045144,0.0013122442944683748,0.0012927704389577442,0.0012736612068028224,0.0012549079631186712,0.0012365023264589651,0.0012184361598590356,0.0012007015622498623,0.0011832908602256585,0.0011661966001476293,0.001149411540569133,0.0011329286449665282,0.0011167410747618186,0.0011008421826238788,0.0010852255060348585,0.0010698847611105918,0.0010548138366628902,0.001040006788493097,0.0010254578339065198,0.0010111613464381583,0.000997111850779825,0.0009833040179006082,0.0009697326603516569,0.0009563927277475017,0.0009432793024164795,0.0009303875952124606,0.000917712941481749,0.0009052507971780135,0.0008929967351192581,0.0008809464413807804,0.000869095711818675,0.0008574404487179712,0.0008459766575609068,0.0008347004439099596,0.0008236080104010915,0.0008126956538429072,0.0008019597624169877,0.0007913968129759522,0.000781003368434908,0.0007707760752527325,0.0007607116609996213,0.0007508069320076509,0.0007410587711007104,0.0007314641354012725,0.000722020054210612,0.0007127236269597934,0.0007035720212288373,0.0006945624708310915,0.0006856922739608511,0.0006769587914014484,0.0006683594447916863,0.0006598917149485509,0.000651553140243748,0.0006433413150325673,0.0006352538881327801,0.0006272885613518824,0.0006194430880608856,0.0006117152718130924,0.000604102965005908,0.0005966040675845831,0.0005892165257860544,0.0005819383309215806,0.0005747675181968849,0.0005677021655681953,0.000560740392633314,0.0005538803595562013,0.0005471202660240061,0.0005404583502355162,0.0005338928879196631,0.0005274221913834305,0.0005210446085878756,0.0005147585222514325,0.0005085623489795232,0.0005024545384197121,0.0004964335724412754,0.0004904979643387251,0.0004846462580582251,0.00047887702744624076,0.00047318887551975824,0.00046758043375713274,0.0004620503614092117,0.0004565973448298296,0.00045122009682515483,0.00044591735602123267,0.00044068788624924954,0.00043553047594771375,0.00043044393758132077,0.000425427107075749,0.00042047884326795694,0.00041559802737156653,0.0004107835624566505,0.0004060343729437531,0.0004013494041114952,0.00039672762161741004,0.0003921680110316741,0.0003876695773831364,0.00038323134471753386,0.0003788523556673247,0.00037453167103287125,0.0003702683693745957,0.00036606154661586286,0.0003619103156560796,0.00035781380599394824,0.00035377116336039884,0.00034978154936096266,0.00034584414112737724,0.00034195813097797755,0.0003381227260868354,0.00033433714816123635,0.0003306006331273085,0.00032691243082355354,0.000323271804702102,0.00031967803153736137,0.0003161304011419395,0.00031262821608965226,0.0003091707914453101,0.0003057574545012198,0.00030238754452005664,0.0002990604124841059,0.0002957754208505653,0.000292531943312779,0.0002893293645672948,0.00028616708008642966,0.0002830444958963941,0.0002799610283606706,0.00027691610396856335,0.0002739091591287616,0.0002709396399678308,0.0002680070021333698,0.0002651107106018752,0.0002622502394910659,0.00025942507187659043,0.0002566346996130275,0.0002538786231589693,0.0002511563514062097,0.00024846740151283843,0.00024581129874016343,0.0002431875762933599,0.0002405957751657842,0.00023803544398675556,0.00023550613887285163,0.00023300742328252527,0.00023053886787399331,0.00022810005036634422,0.00022569055540367654,0.00022330997442234014,0.00022095790552107962,0.0002186339533340614,0.00021633772890672926,0.0002140688495743219,0.00021182693884312415,0.00020961162627427353,0.00020742254737010632,0.1554898539987864,0.1554898539987864,0.1554897659811365,0.15387083640930863,0.14929806240957566,0.14239010811917788,0.13394407274716574,0.1247312203951463,0.11537035595116112,0.1062894044265241,0.09774465571599886,0.08986283809912397,0.08268383127908899,0.07619476158442898,0.0703539398321499,0.06510630103847556,0.06039271156217156,0.05615521003617216,0.05233970229482129,0.04889713392792348,0.04578379337147788,0.04296114643829571,0.04039544083243474,0.03805721814538817,0.035920809513196414,0.03396385469796037,0.032166863210480796,0.03051282414985514,0.028986864963662953,0.027575956056404703,0.026268656729230337,0.02505489750780155,0.023925794029604375,0.022873488040554595,0.021891011535867602,0.020972170586267987,0.02011144587275608,0.019303907390740165,0.01854514116991565,0.0178311861899216,0.017158479956745284,0.01652381144648214,0.015924280326739326,0.015357261537093792,0.014820374453619289,0.014311455982706467,0.013828537030193776,0.013369821876266546,0.012933670057385578,0.01251858041603505,0.012123177029052343,0.011746196767464771,0.011386478276297803,0.01104295219288036,0.010714632447604627,0.01040060851273393,0.010100038483183929,0.009812142888874116,0.00953619915160709,0.009271536610849371,0.009017532052616416,0.008773605684054383,0.008539217503573678,0.008313864022637018,0.008097075300691254,0.007888412259429708,0.007687464246603222,0.007493846823135043,0.007307199750356822,0.007127185156861904,0.0069534858667980246,0.006785803873484973,0.006623858944016711,0.006467387342092569,0.0063161406577055415,0.006169884733526499,0.006028398678914567,0.005891473963418813,0.00575891358248709,0.00563053128883976,0.005506150883630579,0.005385605562097541,0.0052687373089421565,0.005155396339129349,0.005045440580223677,0.0049387351927486205,0.004835152125382392,0.004734569702112343,0.0046368722387261875,0.004541949686264557,0.004449697299274615,0.004360015326893021,0.004272808724971075,0.004187986887602653,0.004105463396564068,0.004025155787301065,0.003946985330216765,0.0038708768261149543,0.0037967584147565437,0.0037245613955660113,0.003654220059607899,0.003585671532024863,0.003518855624190236,0.0034537146948941423,0.003390193519929603,0.0033282391694986094,0.003267800892901693,0.0032088300100171835,0.003151279809110508,0.003095105450554447,0.0030402638760668485,0.002986713723104928,0.002934415244081643,0.002883330230091214,0.0028334219388585842,0.0027846550266430498,0.0027369954838483593,0.0026904105741089755,0.0026448687766358185,0.0026003397316242466,0.0025567941885362355,0.0025142039570842218,0.002472541860754726,0.0024317816927217507,0.0023918981740075375,0.0023528669137616483,0.0023146643715339136,0.0022772678214271003,0.0022406553180225526,0.0022048056639767943,0.0021696983791971787,0.002135313671507005,0.002101632408718148,0.0020686360920336303,0.0020363068307081215,0.002004627317896816,0.0019735808076305835,0.0019431510928558608,0.0019133224844833183,0.0018840797913925388,0.0018554083013415275,0.0018272937627356722,0.00179972236721064,0.0017726807329879243,0.0017461558889640945,0.0017201352594956058,0.0016946066498456957,0.0016695582322592993,0.001644978532635308,0.0016208564177666582,0.0015971810831208774,0.0015739420411338973,0.0015511291099936572,0.0015287324028890445,0.0015067423177023806,0.0014851495271247053,0.0014639449691731207,0.0014431198380925874,0.0014226655756234322,0.001402573862618043,0.0013828366109906235,0.0013634459559851528,0.001344394248746324,0.0013256740491808749,0.0013072781190955494,0.001289199415599597,0.0012714310847604061,0.0012539664555003532,0.0012367990337253376,0.0012199224966741905,0.001203330687479655,0.0011870176099320784,0.0011709774234364644,0.001155204438155613,0.0011396931103307615,0.0011244380377725877,0.0011094339555153473,0.0010946757316276335,0.0010801583631726615,0.001065876972312774,0.001051826802551638,0.00103800321510878,0.0010244016854212628,0.001011017799766863,0.0009978472520046089,0.0009848858404274896,0.000972129464723059,0.0009595741230378664,0.0009472159091411436,0.0009350510096845688,0.0009230757015538559,0.000911286349308863,0.0008996794027087427,0.0008882513943190886,0.0008769989371974818,0.0008659187226551273,0.0008550075180912411,0.0008442621648976145,0.0008336795764309196,0.0008232567360497806,0.0008129906952148333,0.0008028785716490115,0.0007929175475560501,0.0007831048678950277,0.0007734378387090966,0.0007639138255060369,0.0007545302516893304,0.0007452845970375455,0.0007361743962304593,0.0007271972374204001,0.0007183507608468338,0.000709632657493191,0.0007010406677840977,0.0006925725803217281,0.0006842262306600469,0.0006759995001153041,0.00066789031461199,0.00065989664356272,0.0006520164987810214,0.0006442479334258852,0.0006365890409771259,0.0006290379542402269,0.0006215928443801004,0.000614251919982482,0.00060701342614218,0.0005998756435773682,0.0005928368877688001,0.0005858955081235126,0.0005790498871619374,0.0005722984397277812,0.0005656396122199128,0.0005590718818456515,0.0005525937558945166,0.0005462037710321398,0.0005399004926134413,0.0005336825140145527,0.0005275484559829852,0.0005214969660052146,0.0005155267176914937,0.0005096364101770918,0.0005038247675395489,0.0004980905382315345,0.000492432494528586,0.00048684943199160555,0.00048134016894341755,0.00047590354595907045,0.0004705384253694225,0.00046524369077772284,0.0004600182465885633,0.0004548610175491335,0.000449770948302201,0.0004447470029505322,0.00043978816463250065,0.00043489343510833835,0.00043006183435700073,0.00042529240018313204,0.0004205841878339151,0.00041593626962550405,0.00041134773457883537,0.0004068176880643597,0.000402345251455691,0.0003979295617917428,0.00039356977144715927,0.00038926504781087713,0.0003850145729724105,0.0003808175434158741,0.00037667316972136435,0.0003725806762735404,0.0003685393009772698,0.00036454829497997666,0.0003606069224007235,0.0003567144600656877,0.00035287019724991977,0.0003490734354251826,0.0003453234880137903,0.00034161968014810525,0.0003379613484357676,0.0003343478407303396,0.0003307785159072783,0.000327252743645129,0.00032376990421167993,0.0003203293882551174,0.0003169305965999164,0.00031357294004739656,0.0003102558391808515,0.00030697872417500687,0.00030374103460987893,0.0003005422192887728,0.00029738173606038017,0.0002942590516448429,0.00029117364146374067,0.0002881249894737734,0.00028511258800420535,0.0002821359375978666,0.00027919454685564364,0.0002762879322844302,0.0002734156181483157,0.0002705771363231015,0.00026777202615393703,0.0002649998343160485,0.18012755094461627,0.18012755094461627,0.18012755094461627,0.1790547755182409,0.1746191674048045,0.1673332924452549,0.15806965123030203,0.1477226065517239,0.13704112670021912,0.1265632225938615,0.11662505954168911,0.10740439025430114,0.09896952335964959,0.09132032824841338,0.08441789856206186,0.07820412687594464,0.072613758184263,0.06758134773225323,0.06304497352923678,0.0589479769257093,0.055239556154663694,0.051874725896163494,0.04881395197852708,0.04602264194435906,0.04347059352042951,0.04113145582934082,0.03898223045480621,0.03700282358176385,0.035175651630811794,0.03348529818754279,0.03191821783431884,0.030462481671240632,0.029107559240233866,0.027844131876114578,0.02666393299052019,0.025559611331644267,0.024524613791399703,0.02355308482092393,0.02263977995201396,0.02177999130335546,0.020969483278159208,0.0202044369391479,0.019481401783198113,0.018797253837128436,0.01814915916369786,0.01753454200743022,0.016951056927932917,0.016396564367413165,0.01586910918223562,0.015366901738337902,0.014888301229110945,0.014431800923989982,0.013996015097873056,0.013579667426918494,0.013181580666267614,0.012800667450767926,0.012435922081411442,0.012086413178707397,0.01175127709999233,0.011429712031167938,0.011120972674975839,0.010824365467835858,0.01053924426586284,0.010265006448066872,0.010001089391113,0.009746967275576477,0.009502148188398993,0.009266171490438967,0.009038605421633686,0.00881904491946334,0.008607109629161122,0.008402442086557911,0.008204706056551454,0.008013585012067538,0.007828780740020469,0.007650012062214585,0.007477013660422601,0.007309534995984479,0.007147339315279122,0.006990202733301168,0.006837913388362855,0.006690270661629471,0.006547084455832703,0.006408174528044042,0.006273369871892892,0.006142508145054668,0.006015435138221497,0.005892004282134643,0.005772076189561935,0.005655518229395547,0.005542204130301354,0.005432013611574771,0.005324832039077301,0.005220550104303519,0.005119063524804427,0.005020272764343349,0.004924082771301104,0.004830402733966621,0.004739145851472738,0.00465022911922991,0.004563573127810281,0.0044791018743191345,0.004396742585363749,0.004316425550808628,0.004238083967562119,0.004161653792703205,0.00408707360530913,0.0040142844763953025,0.00394322984641937,0.0038738554098499173,0.003806109006330498,0.003739940518008535,0.0036753017726302377,0.003612146452028019,0.0035504300056602954,0.003490109568881627,0.0034311438856476197,0.0033734932353797218,0.003317119363731102,0.003261985417018272,0.003208055880093802,0.003155296517454071,0.0031036743173887245,0.0030531574389926325,0.003003715161870095,0.0029553178383772724,0.0029079368482539223,0.002861544555508119,0.002816114267426281,0.0027716201955865294,0.0027280374187655483,0.002685341847631693,0.0026435101911264085,0.002602519924441109,0.002562349258503408,0.002522977110889384,0.002484383078087646,0.002446547409041496,0.0024094509799021985,0.0023730752699302315,0.0023374023384830954,0.002302414803035524,0.0022680958181774237,0.0022344290555401463,0.0022013986846044567,0.002168989354344406,0.002137186175667103,0.0021059747046074523,0.002075340926241154,0.0020452712392805238,0.0020157524413204086,0.0019867717147014356,0.001958316612962571,0.0019303750478536473,0.0019029352768815838,0.001875985891365589,0.0018495158049763017,0.001823514242737847,0.0017979707304702482,0.0017728750846523692,0.0017482174026860556,0.001723988053543595,0.0017001776687802057,0.0016767771338965156,0.0016537775800343647,0.001631170375991529,0.0016089471205415987,0.0015870996350446816,0.001565619956337514,0.0015445003298899434,0.0015237332032166343,0.0015033112195333223,0.0014832272116463792,0.0014634741960669105,0.00144404536733913,0.0014249340925743435,0.0014061339061818931,0.0013876385047892072,0.0013694417423424285,0.001351537625381195,0.0013339203084797992,0.0013165840898481682,0.0012995234070865165,0.0012827328330867794,0.001266207072075929,0.001249940955794854,0.0012339294398076878,0.0012181675999366848,0.0012026506288171017,0.0011873738325682939,0.0011723326275758848,0.001157522537381022,0.001142939189672516,0.0011285783133782239,0.0011144357358512998,0.001100507380148559,0.0010867892623968925,0.0010732774892446856,0.0010599682553952328,0.0010468578412185952,0.0010339426104397618,0.0010212190078997673,0.0010086835573873323,0.0009963328595384222,0.0009841635898014667,0.0009721724964653924,0.0009603563987488968,0.0009487121849482966,0.0009372368106420393,0.000925927296950062,0.0009147807288455857,0.0009037942535181554,0.0008929650787856998,0.000882290471554049,0.0008717677563224376,0.0008613943137330026,0.0008511675791633053,0.0008410850413601315,0.0008311442411130256,0.0008213427699666719,0.0008116782689704924,0.0008021484274641244,0.0007927509818980108,0.0007834837146875803,0.0007743444531000285,0.0007653310681727812,0.0007564414736622084,0.0007476736250221311,0.0007390255184107771,0.0007304951897254201,0.0007220807136637709,0.0007137802028114117,0.0007055918067540874,0.0006975137112145603,0.0006895441372128703,0.0006816813402494095,0.0006739236095102476,0.0006662692670935611,0.0006587166672570763,0.0006512641956855728,0.0006439102687777836,0.0006366533329523521,0.000629491863971894,0.0006224243662850345,0.0006154493723855685,0.0006085654421884137,0.0006017711624216129,0.0005950651460343593,0.0005884460316199505,0.0005819124828538025,0.0005754631879457399,0.0005690968591062397,0.0005628122320263045,0.0005566080653703617,0.000550483140281974,0.0005444362599020918,0.0005384662488991062,0.000532571953010814,0.0005267522385976823,0.0005210059922070931,0.0005153321201483569,0.0005097295480782246,0.0005041972205964241,0.0004987341008511628,0.0004933391701540376,0.00048801142760445803,0.00048274988972292834,0.0004775535900932738,0.0004724215790133977,0.000467352923154255,0.0004623467052270587,0.0004574020236582978,0.00045251799227242736,0.00044769373998199136,0.0004429284104851187,0.00043822116196983016,0.00043357116682549374,0.00042897761136082875,0.0004244396955283728,0.00041995663265546656,0.000415527649181187,0.00041115198439949097,0.0004068288902080475,0.0004025576308628949,0.0003983374827386189,0.00039416773409385044,0.00039004768484215426,0.00038597664632798213,0.000381953941107643,0.0003779789027351346,0.00037405087555278274,0.0003701692144863907,0.0003663332848450162,0.0003625424621251142,0.00035879613181888717,0.0003550936892270024,0.00035143453927512556,0.00034781809633466926,0.0003442437840472748,0.0003407110351531203,0.13233673906915508,0.13233673906915508,0.13233673906915508,0.13218658319392662,0.13100759301360154,0.128728945297517,0.1254913137584519,0.12147716289851675,0.11688601417315161,0.11191257718024641,0.10673112812080496,0.1014869409517332,0.09629373270530221,0.0912352766947893,0.08636933633584919,0.0817324842769968,0.07734487925497846,0.07321450516228058,0.06934067858839658,0.06571681166727858,0.0623325083018846,0.05917510634681914,0.056230781195767146,0.05348531398160376,0.050924609979400424,0.0485350349135215,0.04630362101575156,0.044218181616922266,0.04226736276227718,0.04044065247197722,0.03872836237937028,0.03712159214136033,0.03561218385824409,0.034192671466544984,0.03285622844479772,0.031596616023340046,0.03040813328320159,0.02928556996967185,0.028224162462396993,0.027219553085107186,0.02626775276709868,0.025365106959429368,0.02450826464233433,0.02369415022326428,0.022919938107887415,0.022183029722374608,0.02148103276994022,0.020811742514483908,0.020173124897049123,0.01956330130529744,0.018980534831029933,0.01842321786555291,0.01788986089680029,0.017379082385430504,0.016889599609411422,0.016420220377971816,0.01596983552604427,0.015537412109677948,0.015121987231295885,0.014722662431189935,0.014338598588442384,0.013969011280457567,0.013613166555698697,0.013270377079026997,0.01293999861330065,0.012621426804736768,0.012314094242899169,0.01201746776921743,0.01173104601062645,0.011454357117320117,0.0111869566857325,0.010928425849793717,0.01067836952517887,0.010436414792802752,0.010202209409167214,0.009975420432367092,0.009755732953668168,0.00954284892551805,0.009336486077734884,0.009136376914393842,0.008942267784636304,0.008753918021243904,0.008571099141405384,0.008393594104593264,0.008221196622937545,0.008053710519896583,0.007890949133388577,0.007732734759901254,0.007578898136384757,0.007429277957018041,0.007283720422188299,0.007142078817240518,0.007004213118774145,0.0068699896264353645,0.006739280618331311,0.006611964028343225,0.006487923143758344,0.0063670463217602976,0.006249226723446685,0.006134362064135721,0.006022354378827968,0.005913109801777401,0.0058065383592004706,0.0057025537742369115,0.005601073283332855,0.0055020174632853455,0.005405310068242013,0.005310877876004009,0.005218650543022588,0.005128560467533495,0.005040542660304197,0.004954534622511833,0.004870476230304089,0.0047883096256217976,0.004707979112900071,0.004629431061282926,0.004552613812016474,0.0044774775907081964,0.004403974424157143,0.004332058061486849,0.004261683899323555,0.004192808910783653,0.004125391578048237,0.00405939182831863,0.003994770972956227,0.003931491649629135,0.003869517767293027,0.003808814453848143,0.0037493480063243616,0.0036910858434521182,0.0036339964604915685,0.00357804938619457,0.0035232151417850916,0.0034694652018493464,0.0034167719570347924,0.0033651086784598546,0.0033144494837475456,0.0032647693045958666,0.0032160438558060753,0.0031682496056944145,0.003121363747814494,0.0030753641739263973,0.0030302294481476064,0.0029859387822271832,0.002942472011887822,0.0028998095741811338,0.002857932485808797,0.0028168223223605546,0.0027764611984253404,0.002736831748533174,0.0026979171088886847,0.0026597008998569833,0.0026221672091684195,0.0025853005758068462,0.002549085974549998,0.0025135088011321877,0.002478554857999136,0.002444210340629758,0.002410461824397584,0.0023772962519479396,0.002344700921067511,0.002312663473024755,0.002281171881358888,0.0022502144410993714,0.0022197797583956695,0.002189856740539722,0.0021604345863645673,0.002131502777001528,0.0021030510669822725,0.0020750694756697277,0.0020475482790043645,0.002020478001552827,0.00199384940884512,0.0019676534999898245,0.0019418815005546042,0.0019165248557015803,0.0018915752235668737,0.0018670244688748258,0.0018428646567762931,0.0018190880469033288,0.0017956870876305563,0.001772654410535298,0.0017499828250488601,0.0017276653132904892,0.0017056950250780546,0.001684065273107589,0.001662769528295474,0.0016418014152771885,0.001621154708055793,0.001600823325795488,0.0015808013287539305,0.0015610829143483066,0.0015416624133500723,0.001522534286203789,0.0015036931194646653,0.0014851336223514144,0.0014668506234093949,0.001448839067280218,0.001431094011574183,0.0014136106238410344,0.001396384178636477,0.0013794100546802297,0.0013626837321026478,0.0013462007897766346,0.0013299569027320833,0.0013139478396492535,0.0012981694604291877,0.0012826177138378016,0.001267288635221306,0.0012521783442906635,0.0012372830429720968,0.0012225990133221767,0.0012081226155046696,0.0011938502858272573,0.0011797785348362472,0.0011659039454667776,0.0011522231712473854,0.001138732934556561,0.001125430024929773,0.0011123112974152176,0.0010993736709768904,0.0010866141269428955,0.0010740297074982126,0.001061617514219947,0.0010493747066538494,0.0010372985009309557,0.0010253861684225195,0.0010136350344327203,0.0010020424769273991,0.0009906059252979087,0.0009793228591588716,0.0009681908071789965,0.0009572073459434187,0.0009463700988472176,0.0009356767350186673,0.0009251249682714614,0.0009147125560851576,0.0009044372986125297,0.0008942970377136013,0.0008842896560150991,0.0008744130759947012,0.0008646652590894651,0.0008550442048273135,0.0008455479499813983,0.0008361745677462818,0.0008269221669354302,0.0008177888911993458,0.00080877291826387,0.0007998724591876898,0.0007910857576389968,0.0007824110891903412,0.0007738467606313026,0.0007653911092985622,0.0007570425024225272,0.0007487993364905018,0.0007406600366255724,0.0007326230559809096,0.000724686875148998,0.0007168500015854994,0.0007091109690470167,0.0007014683370427957,0.0006939206902996507,0.0006864666382398679,0.0006791048144717961,0.0006718338762925078,0.0006646525042025651,0.0006575594014322819,0.0006505532934792612,0.0006436329276569856,0.0006367970726538884,0.000630044518102988,0.0006233740741615339,0.0006167845711004897,0.0006102748589035599,0.00060384380687562,0.0005974903032600252,0.0005912132548649109,0.0005850115866980006,0.0005788842416097676,0.0005728301799448266,0.0005668483792010803,0.0005609378336967609,0.0005550975542449052,0.0005493265678351575,0.0005436239173227941,0.0005379886611245357,0.0005324198729212983,0.0005269166413674686,0.0005214780698066311,0.0005161032759935482,0.0005107913918223335,0.0005055415630604286,0.0005003529490885467,0.000495224722646203,0.000490156069582765,0.00048514618861396683,0.00048019429108353003,0.0004752996007300508,0.00047046135345880897,0.0004656787971184748,0.1567914009832549,0.1567914009832549,0.1567914009832549,0.1567623447369895,0.1557954168616705,0.15351824945676898,0.1500730341827133,0.14565828936713326,0.14050074806015989,0.13482877083626085,0.12885203322143046,0.12274925425057615,0.11666330637144337,0.11070177423609645,0.1049407905700906,0.0994303437998488,0.09419982229921012,0.08926308894591246,0.08462277024144398,0.0802736899627271,0.07620550955388246,0.07240469431205981,0.06885593728514519,0.06554316333840945,0.06245021728561572,0.05956131955810241,0.05686135408591041,0.054336037220877584,0.05197200385950951,0.049756837127695165,0.047679060595255215,0.045728106502215954,0.04389426946153737,0.04216865219281268,0.04054310775164561,0.039010181231775846,0.037563052866620296,0.036195483722193625,0.034901764664898575,0.0336766689408242,0.03251540847047919,0.03141359381100917,0.03036719764235056,0.029372521577182176,0.028426166064861053,0.027525003147661813,0.02666615182782417,0.025846955811605257,0.02506496340877004,0.02431790938085139,0.02360369854737905,0.022920390975492994,0.022266188594119343,0.02163942308893127,0.021038544948346127,0.020462113543876805,0.01990878813999676,0.019377319739542945,0.01886654368047079,0.01837537290856804,0.017902791858707755,0.017447850884266505,0.01700966118071078,0.016587390155022266,0.016180257197667535,0.015787529818372618,0.015408520110942178,0.015042581515975241,0.01468910585351654,0.014347520600540585,0.0140172863906881,0.013697894715977292,0.013388865812203284,0.013089746711568359,0.012800109447701883,0.012519549399658754,0.01224768376280958,0.011984150135666035,0.011728605212742571,0.011480723574482566,0.011240196566119336,0.011006731258082292,0.010780049481258876,0.010559886931009128,0.010345992334392623,0.010138126675562513,0.009936062474716637,0.00973958311642066,0.009548482223462306,0.009362563072738367,0.009181638049975157,0.009005528140343791,0.008834062452296322,0.008667077772153855,0.008504418147191968,0.00834593449514932,0.00819148423825717,0.008040930960031304,0.007894144083223316,0.0077509985674395435,0.007611374625061925,0.007475157454210453,0.007342236987576592,0.007212507656059802,0.007085868166206871,0.006962221290537002,0.006841473669900694,0.006723535627086432,0.00660832099093974,0.006495746930324028,0.006385733797289784,0.006278204978870399,0.006173086756964013,0.006070308175793043,0.005969800916478658,0.005871499178289607,0.005775339566160635,0.005681260984103424,0.005589204534153085,0.005499113420526567,0.005410932858681641,0.00532460998899136,0.00524009379476534,0.005157335024368838,0.005076286117201788,0.004996901133323123,0.00491913568651175,0.004842946880572898,0.0047682932487108365,0.004695134695795684,0.004623432443370219,0.004553148977244605,0.004484247997540749,0.0044166943710547135,0.004350454085814932,0.00428549420771761,0.004221782839133964,0.004159289079383925,0.004097982986980676,0.00403783554355586,0.003978818619377269,0.0039209049403815446,0.0038640680566432504,0.00380828231220928,0.00375352281623151,0.003699765415331424,0.0036469866671392857,0.0035951638149484414,0.0035442747634316686,0.003494298055368209,0.003445212849334083,0.003396998898307869,0.003349636529151461,0.0033031066229228558,0.0032573905959828015,0.0032124703818592363,0.0031683284138327304,0.0031249476082125132,0.003082311348269789,0.003040403468799303,0.0029992082412815127,0.0029587103596168556,0.0029188949264089417,0.0028797474397708927,0.0028412537806324274,0.0028034002005257455,0.0027661733098300416,0.002729560066453361,0.0026935477649351115,0.002658124025949761,0.0026232767861952997,0.0025889942886506987,0.002555265073185448,0.0025220779675085223,0.0024894220784411987,0.0024572867835009893,0.0024256617227838115,0.002394536791132683,0.0023639021305801315,0.0023337481230549574,0.002304065383341482,0.0022748447522816695,0.002246077290210872,0.002217754270616799,0.002189867174014549,0.002162407682028061,0.00213536767167049,0.0021087392098156485,0.0020825145478536103,0.002056686116522349,0.002031246520910197,0.00200618853562154,0.001981505100099996,0.0019571893141035095,0.0019332344333246817,0.0019096338651523174,0.0018863811645679436,0.0018634700301727323,0.0018408943003403208,0.0018186479494900513,0.0017967250844775134,0.0017751199410972376,0.0017538268806938876,0.0017328403868779733,0.0017121550623427106,0.0016917656257776227,0.0016716669088765867,0.0016518538534362054,0.0016323215085416371,0.0016130650278370973,0.0015940796668773459,0.001575360780558408,0.0015569038206240753,0.0015387043332458093,0.0015207579566738814,0.001503060418956544,0.0014856075357259815,0.0014683952080480494,0.0014514194203339768,0.0014346762383118975,0.0014181618070565074,0.001401872349074252,0.001385804162443143,0.0013699536190047582,0.0013543171626069345,0.0013388913073957827,0.0013236726361547351,0.001308657798690026,0.0012938435102604743,0.001279226550050411,0.001264803759684317,0.0012505720417821014,0.0012365283585531372,0.0012226697304286598,0.0012089932347307457,0.0011954960043769022,0.001182175226619423,0.0011690281418178239,0.001156052042244118,0.001143244270919394,0.0011306022204808997,0.0011181233320789147,0.0011058050943019814,0.0010936450421303381,0.001081640755916209,0.0010697898603903484,0.001058090023694002,0.0010465389564357317,0.001035134410771888,0.0010238741795106875,0.0010127560952387284,0.0010017780294694408,0.0009909378918130241,0.0009802336291667457,0.0009696632249256834,0.0009592246982128231,0.000948916103128182,0.0009387355280163279,0.0009286810947519755,0.0009187509580427037,0.0009089433047488939,0.0008992563532199818,0.0008896883526467065,0.0008802375824290597,0.0008709023515590848,0.0008616809980186654,0.0008525718881914848,0.0008435734162889098,0.0008346840037895372,0.0008259020988916722,0.0008172261759788674,0.0008086547350978203,0.0008001863014484301,0.0007918194248856494,0.0007835526794329629,0.000775384662806815,0.0007673139959521876,0.0007593393225886701,0.0007514593087668698,0.0007436726424349935,0.0007359780330150234,0.0007283742109886559,0.0007208599274924391,0.0007134339539219887,0.0007060950815450274,0.0006988421211231152,0.000691673902541576,0.0006845892744477892,0.0006775871038973551,0.000670666276008016,0.0006638256936212514,0.0006570642769710536,0.0006503809633600933,0.0006437747068428015,0.000637244477915302,0.0006307892632120987,0.0006244080652090891,0.0006180999019331129,0.0006118638066775958,0.0006056988277242581,0.18690165398723654,0.18690165398723654,0.18690165398723654,0.18690165398723654,0.18629376442081308,0.1841360886383213,0.18055114496389196,0.17575011005963986,0.16998806285022866,0.16353200274245755,0.15663457597795757,0.14951669918453836,0.14235914906909974,0.1353012606447918,0.12844424035696805,0.1218568355726074,0.11558171209639903,0.10964153097579575,0.10404422196096498,0.09878728758474367,0.09386116446325382,0.08925176012921789,0.08494231366106729,0.08091472510837973,0.07715048042926383,0.0736312757428802,0.07033942245457263,0.0672580955012663,0.0643714712253233,0.0616647890544679,0.05912436176339235,0.0567375520599555,0.05449272805361618,0.05237920638389435,0.05038718905626055,0.04850769807751292,0.04673251059319764,0.04505409625070445,0.04346555782839038,0.041960575700037486,0.040533356383595565,0.03917858521011457,0.03789138301095988,0.036667266636158546,0.0355021130680901,0.034392126870686504,0.03333381070713904,0.032323938662760066,0.031359532120111125,0.030437837948194997,0.029556308784125865,0.028712585203315336,0.027904479591730726,0.027129961550774958,0.02638714468136567,0.025674274608860348,0.024989718124218734,0.024331953329480228,0.02369956068711699,0.023091214883172912,0.02250567742352017,0.02194178989090554,0.02139846779803129,0.020874694978656363,0.020369518464702082,0.019882043802784768,0.019411430768351102,0.018956889439915227,0.018517676599713675,0.01809309243052199,0.017682477481402177,0.01728520987791803,0.016900702754746193,0.016528401890812217,0.016167783529025165,0.015818352364405715,0.015479639685999412,0.015151201659327151,0.01483261773740229,0.014523489189459591,0.014223437737560353,0.013932104292128105,0.013649147778318157,0.013374244045829556,0.013107084855450014,0.012847376936221903,0.012594841107643114,0.012349211461831886,0.012110234600999071,0.011877668925987501,0.011651283971998778,0.011430859787943658,0.011216186356172886,0.011007063049593252,0.010803298123433239,0.010604708239141098,0.010411118018106978,0.010222359623073888,0.010038272365291725,0.009858702335602949,0.009683502057801259,0.009512530162732553,0.009345651081716094,0.009182734757988595,0.009023656374955672,0.00886829610013627,0.008716538843764497,0.008568274031093679,0.00842339538750804,0.008281800735627216,0.008143391803632972,0.008008074044110667,0.007875756462748058,0.007746351456272672,0.007619774659065307,0.0074959447979129545,0.007374783554408979,0.00725621543454143,0.007140167645034917,0.0070265699760522285,0.006915354689876434,0.006806456415226351,0.006699812046878238,0.006595360650290444,0.006493043370940955,0.006392803348116869,0.006294585632901035,0.006198337110123125,0.006104006424056809,0.00601154390765307,0.005920901515121866,0.0058320327576766836,0.005744892642273351,0.005659437613182683,0.005575625496247901,0.005493415445681987,0.0054127678932766555,0.005333644499894288,0.005256008109126053,0.005179822703006424,0.005105053359676142,0.005031666212899369,0.004959628413338838,0.0048889080915022805,0.004819474322278402,0.004751297090981126,0.004684347260832354,0.00461859654181039,0.004554017460799289,0.004490583332976408,0.004428268234380146,0.004367046975599482,0.004306895076535905,0.0042477887421851004,0.0041897048393918215,0.004132620874533853,0.0040765149720900186,0.004021365854055092,0.003967152820160891,0.003913855728867986,0.0038614549790942716,0.0038099314926454135,0.0037592666973190088,0.0037094425106506666,0.0036604413242748296,0.0036122459888732936,0.0035648397996868725,0.0035182064825640133,0.0034723301805260434,0.003427195440825172,0.003382787202475086,0.003339090784234916,0.003296091873025755,0.003253776512764303,0.0032121310935945223,0.0031711423415017002,0.0031307973082931235,0.003091083361931059,0.003051988177202241,0.00301349972671249,0.0029756062721918866,0.0029382963560986397,0.00290155879351043,0.0028653826642903468,0.002829757305518734,0.002794672304179068,0.0027601174900886783,0.002726082929064651,0.0026925589163164987,0.0026595359700555448,0.002627004825314687,0.0025949564279692037,0.0025633819289515238,0.0025322726786531713,0.002501620221505605,0.002471416290735114,0.0024416528032840264,0.002412321854892619,0.0023834157153362736,0.00235492682381102,0.002326847784463762,0.002299171362060772,0.0022718904777899998,0.0022449982051922853,0.002218487766217394,0.0021923525273993064,0.0021665859961481435,0.0021411818171534936,0.0021161337688956746,0.002091435760261557,0.0020670818272602934,0.002043066129836927,0.002019382948779524,0.0019960266827169964,0.001972991845204872,0.001950273061895096,0.0019278650677883545,0.001905762704565174,0.0018839609179936185,0.0018624547554108998,0.0018412393632768382,0.0018203099847959483,0.0017996619576070758,0.0017792907115375483,0.0017591917664200028,0.0017393607299702137,0.001719793295723075,0.0017004852410260562,0.0016814324250874189,0.001662630787077844,0.0016440763442836556,0.001625765190310357,0.0016076934933341065,0.0015898574944007175,0.0015722535057698995,0.0015548779093036355,0.001537727154897578,0.0015207977589534118,0.0015040863028919123,0.00148758943170475,0.0014713038525441125,0.0014552263333492189,0.0014393537015079682,0.0014236828425535555,0.0014082106988943638,0.0013929342685763974,0.0013778506040772252,0.0013629568111307678,0.001348250047581372,0.0013337275222671935,0.0013193864939313813,0.0013052242701605014,0.001291238206349572,0.0012774257046924095,0.001263784213197301,0.0012503112247267186,0.0012370042760606376,0.0012238609469826997,0.0012108788593888002,0.0011980556764169441,0.001185389101598476,0.0011728768780295742,0.001160516787562618,0.001148306650017042,0.0011362443224086438,0.001124327698197518,0.0011125547065535934,0.0011009233116394716,0.0010894315119102569,0.0010780773394294361,0.001066858859201019,0.0010557741685170278,0.0010448213963201072,0.001033998702580805,0.0010233042776893102,0.0010127363418608066,0.0010022931445546977,0.0009919729639068858,0.0009817741061749093,0.0009716949051957547,0.0009617337218555775,0.0009518889435716044,0.0009421589837854651,0.0009325422814678366,0.0009230373006340624,0.0009136425298706067,0.0009043564818717004,0.0008951776929864157,0.0008861047227755421,0.0008771361535781244,0.0008682705900875657,0.000859506658936665,0.0008508430082918804,0.0008422783074561967,0.0008338112464805359,0.000825440535783593,0.0008171649057795503,0.0008089831065139397,0.0008008939073071154,0.0007928960964052726,0.19003399225897286,0.19003399225897286,0.19003399225897286,0.19003399225897286,0.18983747425437153,0.18826431046192427,0.18521108815753778,0.1808614295309631,0.17545443119088688,0.1692526816907246,0.16251377545635884,0.15546973232884317,0.1483154557842135,0.1412049847797264,0.13425322085532707,0.12754077155939944,0.12112005194858609,0.11502142405603287,0.10925870672052578,0.10383377995745402,0.09874024669008723,0.09396623853839386,0.08949650218644518,0.08531391053686718,0.08140052980266967,0.07773835267181231,0.07430978557799743,0.07109795813867134,0.06808690613806899,0.06526166614430279,0.06260830959286369,0.06011393642405087,0.05776664260686951,0.05555547165823417,0.05347035719616803,0.0515020613534965,0.04964211229649704,0.047882742970608766,0.04621683240563031,0.04463785036312257,0.04313980573033678,0.0417171988092123,0.04036497747976113,0.0390784971088487,0.03785348400985618,0.03668600222230241,0.03557242336433293,0.03450939930809188,0.03349383743372161,0.03252287822903014,0.03159387501605765,0.030704375601698947,0.02985210566587806,0.029034953716970256,0.02825095745967321,0.027498291435284993,0.02677525580790907,0.026080266182721672,0.02541184435391343,0.024768609890307595,0.024149272476155236,0.023552624933038266,0.022977536856489025,0.022422948807785423,0.02188786700748634,0.021371358482820686,0.0208725466258978,0.020390607124129052,0.019924764228159954,0.019474287326126268,0.01903848779615072,0.018616716111841947,0.018208359178012227,0.017812837876096083,0.01742960480075305,0.01705814217090898,0.016697959900137355,0.016348593812683283,0.016009603992749623,0.01568057325581713,0.015361105731821402,0.01505082555092838,0.014749375623527265,0.014456416506787771,0.01417162535083388,0.013894694918203606,0.013625332670807604,0.01336325991913293,0.013108211028866262,0.012859932680541806,0.012618183178192202,0.012382731803307529,0.012153358210739757,0.011929851863446446,0.011712011503236114,0.011499644654904512,0.011292567161366871,0.011090602747570295,0.010893582611167822,0.010701345038073672,0.01051373504117821,0.010330604020633795,0.010151809444234782,0.009977214546544946,0.009806688045510074,0.009640103875397956,0.009477340934990834,0.009318282850037433,0.00916281774903552,0.009010838051498419,0.008862240267904569,0.008716924810594972,0.00857479581493532,0.008435760970099508,0.008299731358889888,0.008166621306036334,0.008036348234462271,0.007908832529040307,0.007783997407385423,0.007661768797276201,0.0075420752203096105,0.007424847681428093,0.0073100195639786755,0.007197526529988604,0.007087306425355519,0.006979299189680656,0.006873446770479918,0.00676969304153046,0.006667983725125628,0.006568266318019497,0.006470490020865516,0.00637460567095628,0.006280565678088511,0.006188323963386361,0.006097835900927797,0.006009058262022865,0.005921949162010596,0.005836468009440057,0.0057525754575141665,0.005670233357681688,0.005589404715264837,0.005510053647024466,0.0054321453405622635,0.00535564601546979,0.00528052288613894,0.005206744126149175,0.00513427883415874,0.005063097001223892,0.00499316947947856,0.004924467952109023,0.004856964904563179,0.004790633596933195,0.004725448037460299,0.004661382957106598,0.004598413785145278,0.0045365166257233394,0.004475668235349574,0.004415846001269266,0.004357027920682892,0.004299192580771955,0.0042423191394955415,0.00418638730712435,0.004131377328477316,0.004077269965833058,0.004024046482484486,0.0039716886269094195,0.0039201786175313506,0.0038694991280429753,0.0038196332732713402,0.003770564595559534,0.0037222770516438792,0.0036747550000065733,0.0036279831886819316,0.0035819467435001372,0.003536631156748525,0.003492022276234015,0.0034481062947302153,0.00340486973979427,0.00336229946393676,0.0033203826351329547,0.003279106727660019,0.0032384595132477997,0.003198429052531475,0.0031590036867925365,0.00312017202997901,0.0030819229609925485,0.0030442456162325772,0.003007129382388148,0.0029705638894665237,0.002934539004051517,0.002899044822781439,0.002864071666038913,0.0028296100718445284,0.0027956507899472597,0.002762184776102963,0.0027292031865359203,0.0026966973725752945,0.0026646588754606114,0.0026330794213105437,0.002601950916247785,0.0025712654416762057,0.002541015249703458,0.0025111927587044276,0.0024817905490203697,0.0024528013587894397,0.002424218079902743,0.002396033754083226,0.0023682415690818586,0.0023408348549874927,0.002313807080646846,0.0022871518501897175,0.002260862899657352,0.0022349340937292904,0.0022093594225458413,0.0021841329986231964,0.0021592490538571273,0.002134701936613675,0.0021104861089028763,0.0020865961436332577,0.0020630267219442647,0.002039772630614478,0.002016828759542168,0.0019941900992971624,0.001971851738740718,0.00194980886271156,0.0019280567497762685,0.0019065907700410326,0.001885406383024077,0.0018644991355858806,0.0018438646599157886,0.0018234986715730793,0.0018033969675811852,0.0017835554245725156,0.0017639699969834697,0.0017446367152972586,0.0017255516843333312,0.0017067110815822608,0.0016881111555839027,0.0016697482243485746,0.001651618673819178,0.0016337189563732743,0.0016160455893642004,0.0015985951536992803,0.001581364292455047,0.0015643497095276227,0.0015475481683175348,0.0015309564904478522,0.001514571554514934,0.0014983902948701893,0.0014824097004328169,0.0014666268135319874,0.0014510387287778245,0.0014356425919605934,0.0014204355989766223,0.0014054149947810885,0.001390578072366233,0.0013759221717645634,0.0013614446790762608,0.001347143025520337,0.0013330146865082955,0.0013190571807404762,0.0013052680693238239,0.0012916449549107399,0.001278185480858582,0.0012648873304087046,0.0012517482258852617,0.0012387659279126525,0.0012259382346513127,0.0012132629810515357,0.0012007380381242765,0.0011883613122292461,0.0011761307443792447,0.0011640443095605536,0.0011521000160688874,0.001140295904860683,0.0011286300489188245,0.0011171005526331127,0.0011057055511945596,0.0010944432100033561,0.0010833117240902697,0.0010723093175507082,0.0010614342429916955,0.0010506847809910035,0.0010400592395682481,0.001029555953667832,0.0010191732846529533,0.0010089096198110225,0.0009987633718697207,0.0009887329785236373,0.0009788169019712247,0.0009690136284617173,0.0009593216678518137,0.00094973955317196,0.0009402658402018744,0.0009308991070551241,0.0009216379537726762,0.0009124810019248129,0.0009034268942217265,0.0008944742941321914,0.0008856218855102863,0.19321882628363218,0.19321882628363218,0.19321882628363218,0.19321882628363218,0.19321413389532602,0.19230258954256044,0.18986769536221823,0.1860585516060661,0.18109156192962114,0.17521966676731945,0.16870222972459425,0.16178121357543376,0.1546660678685097,0.14752695949514436,0.1404943912380497,0.13366283491154332,0.1270963207016824,0.12083452268944544,0.11489846944470328,0.10929546027216809,0.10402306180434943,0.09907222475047732,0.09442963714200793,0.09007945353558003,0.0860045344416535,0.08218731252132071,0.07861038076554538,0.07525687743936639,0.07211072493408262,0.06915676531630352,0.06638082411556138,0.06376972530245192,0.06131127396857164,0.05899421845643911,0.05680820020190141,0.05474369702377097,0.052791963776126306,0.050944972979214985,0.04919535712363219,0.04753635369536211,0.04596175351898247,0.04446585270761744,0.04304340830006718,0.04168959752865442,0.040399980574873214,0.039170466618197834,0.03799728295607792,0.036876946962136385,0.03580624064944104,0.03478218761279694,0.03380203213517958,0.032863220257230846,0.03196338262360057,0.031100318935111167,0.03027198385056401,0.02947647419635242,0.028712017355365996,0.027976960719176134,0.02726976209894471,0.02658898100091988,0.025933270681960434,0.02530137090905476,0.024692101354595434,0.02410435556614078,0.02353709545562136,0.02298934625862288,0.022460191919343758,0.021948770861362224,0.02145427210836028,0.02097593172256508,0.020513029531860495,0.02006488611945267,0.01963086005250349,0.019210345328482786,0.018802769020056134,0.018407589101154274,0.018024292438572453,0.01765239293489643,0.01729142980991447,0.016940966008866826,0.016600586726972243,0.016269898040622535,0.015948525636545387,0.015636113630989407,0.015332323471716399,0.015036832916226503,0.014749335080204313,0.014469537550728358,0.014197161559229694,0.013931941209632618,0.013673622757497948,0.01342196393632797,0.013176733327537925,0.012937709770864083,0.012704681812258435,0.012477447186554861,0.012255812332416056,0.012039591937256724,0.011828608510043399,0.011622691980014447,0.011421679319529497,0.011225414189395159,0.011033746605130054,0.010846532622768112,0.010663634042886012,0.010484918131650164,0.010310257357763704,0.010139529144280493,0.009972615634318413,0.009809403469790761,0.009649783582321632,0.009493650995579857,0.009340904638319821,0.009191447167459111,0.009045184800584244,0.008902027157303044,0.00876188710891043,0.008624680635870513,0.008490326692643508,0.008358747079431334,0.008229866320430167,0.00810361154821391,0.0079799123938937,0.007858700882724539,0.0077399113348443245,0.007623480270862227,0.007509346322019773,0.007397450144672176,0.007287734338852846,0.007180143370692872,0.007074623498491865,0.006971122702238525,0.006869590616397674,0.006769978465789494,0.0066722390043990765,0.006576326456958517,0.006482196463162385,0.006389806024376453,0.006299113452712727,0.006210078322351403,0.006122661422992035,0.006036824715331767,0.0059525312884655,0.005869745319113851,0.00578843203258981,0.0057085576654155,0.005630089429513248,0.005552995477891422,0.005477244871754534,0.0054028075489692545,0.00532965429382322,0.00525775670801255,0.005187087182804814,0.00511761887231948,0.005049325667875345,0.004982182173356786,0.004916163681549466,0.004851246151405333,0.004787406186192037,0.004724621012488416,0.004662868459987832,0.00460212694207468,0.004542375437137496,0.004483593470589712,0.004425761097564902,0.00436885888625802,0.004312867901885785,0.004257769691237298,0.004203546267792962,0.004150180097385367,0.004097654084380183,0.004045951558355949,0.003995056261260026,0.0039449523350238045,0.003895624309616177,0.0038470570915183125,0.003799235952602255,0.0037521465193978394,0.003705774762730456,0.003660106987717292,0.0036151298241060663,0.003570830216943159,0.0035271954175589903,0.003484212974856267,0.003441870726891855,0.003400156792739057,0.0033590595646200852,0.0033185677002990593,0.0032786701157237756,0.0032393559779091774,0.0032006146980517037,0.0031624359248665327,0.003124809538139165,0.003087725642484092,0.0030511745613012627,0.0030151468309251982,0.002979633194958166,0.0029446245987812284,0.0029101121842372165,0.002876087284477971,0.002842541418971916,0.0028094662886648065,0.002776853771288762,0.0027446959168142,0.002712984943040151,0.002681713231316822,0.0026508733223975386,0.002620457912414273,0.0025904598489729556,0.002560872127364868,0.0025316878868888743,0.0025029004072824345,0.0024745031052564423,0.0024464895311308078,0.0024188533655678172,0.0023915884163988243,0.0023646886155427134,0.002338148016011968,0.0023119607890038983,0.0022861212210741034,0.0022606237113899125,0.0022354627690601234,0.0022106330105400216,0.0021861291571081604,0.0021619460324129964,0.002138078560087446,0.002114521761428219,0.002091270753139228,0.002068320745136033,0.002045667038409827,0.0020233050229489426,0.00200123017571651,0.001979438058681573,0.0019579243169032317,0.0019366846766652988,0.0019157149436602194,0.0018950110012210268,0.0018745688085990313,0.0018543843992870153,0.0018344538793856706,0.0018147734260123285,0.0017953392857509448,0.001776147773141309,0.0017571952692074244,0.0017384782200230648,0.0017199931353137636,0.001701736587094042,0.0016837052083391948,0.001665895691689812,0.001648304788189172,0.0016309293060517446,0.0016137661094622047,0.0015968121174042983,0.0015800643025180258,0.001563519689985252,0.0015471753564422713,0.0015310284289188289,0.001515076083802761,0.0014993155458298399,0.0014837440870974163,0.0014683590261021198,0.0014531577268002648,0.0014381375976905897,0.0014232960909188923,0.0014086307014033706,0.0013941389659809197,0.0013798184625731897,0.0013656668093721183,0.0013516816640445437,0.001337860722954878,0.0013242017204060717,0.001310702427897847,0.0012973606534019482,0.0012841742406539008,0.001271141068461049,0.0012582590500259242,0.0012455261322852423,0.0012329402952635951,0.0012204995514416412,0.0012082019451385825,0.0011960455519080557,0.0011840284779477542,0.0011721488595219582,0.001160404862396785,0.0011487946812879935,0.001137316539320581,0.0011259686875004608,0.0011147494041974947,0.0011036569946397416,0.001092689790418607,0.0010818461490047946,0.0010711244532743468,0.0010605231110451085,0.0010500405546229415,0.001039675240357557,0.0010294256482079156,0.001019290281316507,0.0010092676655928698,0.000999356349305709,0.0009895549026835595,0.19645703585255084,0.19645703585255084,0.19645703585255084,0.19645703585255084,0.19645703585255084,0.19616479592332453,0.19444171208180783,0.19127426746749018,0.18684793851057363,0.18139886979571784,0.17518320723949707,0.16845032002268567,0.16142379413388636,0.1542910170021139,0.14720003313137228,0.14026143825240162,0.1335531015498243,0.127125999278989,0.12101004324383921,0.11521929830994074,0.10975634204343035,0.10461573700923815,0.09978669868903332,0.09525508693914657,0.09100485555480253,0.08701908229155456,0.083280682239215,0.07977288699523073,0.07647955357979266,0.07338535153899488,0.07047586430300676,0.06773763127799555,0.06515814988297816,0.06272585132078912,0.060430059874512575,0.0582609426016373,0.056209454183348107,0.054267280165555216,0.052426780742225725,0.05068093646237033,0.04902329670148792,0.047447931363030424,0.04594938601834203,0.044522640520681216,0.0431630710161286,0.04186641520316119,0.04062874065126841,0.03944641596773231,0.038316084594121474,0.03723464101578161,0.03619920917494286,0.03520712288915837,0.034255908089750986,0.03334326670884004,0.03246706205749016,0.03162530555131897,0.030816144652883914,0.03003785191250527,0.029288815000572642,0.028567527634819748,0.0278725813157016,0.027202657791630634,0.026556522183746472,0.025933016706996888,0.025331054930667788,0.024749616527311988,0.024187742464121784,0.023644530595454284,0.023119131619349146,0.0226107453646031,0.022118617378259636,0.021642035786401646,0.02118032840374927,0.02073286006998527,0.020299030192869005,0.01987827048009551,0.019470042843622207,0.019073837461687504,0.018689170985159972,0.0183155848760951,0.017952643867506453,0.017599934534346738,0.017257063966639265,0.01692365853648465,0.016599362751426552,0.01628383818732814,0.015976762494494947,0.015677828471357413,0.015386743200487588,0.015103227242189793,0.014827013881309121,0.01455784842325348,0.014295487535585764,0.01403969863181827,0.01379025929433361,0.013546956733600858,0.01330958728108946,0.013077955913477369,0.012851875805963649,0.012631167912644991,0.01241566057208789,0.01220518913637198,0.011999595622001237,0.011798728381221228,0.01160244179237128,0.011410595968014465,0.011223056479677538,0.011039694098122596,0.010860384548140235,0.010685008276945311,0.010513450235303866,0.010345599670592743,0.010181349931048933,0.01002059828050898,0.009863245723003223,0.009709196836597538,0.00955835961592608,0.009410645322895761,0.009265968345070336,0.0091242460612888,0.008985398714088488,0.008849349288539862,0.008716023397122321,0.008585349170297792,0.008457257152452836,0.008331680202914023,0.008208553401747445,0.008087813960078408,0.007969401134683881,0.007853256146619027,0.007739322103665215,0.007627543926388685,0.007517868277618352,0.007410243495160711,0.007304619527582518,0.007200947872896268,0.007099181520003312,0.0069992748927476854,0.006901183796448229,0.0068048653667841085,0.00671027802091056,0.006617381410698121,0.006526136377985399,0.006436504911746899,0.006348450107082748,0.006261936125937583,0.006176928159469337,0.0060933923919848434,0.006011295966368235,0.005930606950930869,0.005851294307616578,0.0057733278614952805,0.005696678271489082,0.0056213170022703755,0.005547216297278942,0.00547434915280769,0.005402689293105375,0.005332211146454156,0.0052628898221751905,0.0051947010885217216,0.005127621351421056,0.0050616276340251995,0.004996697557038337,0.004932809319784314,0.004869941681983328,0.004808073946206621,0.004747185940981348,0.004687258004515086,0.004628270969017374,0.00457020614559031,0.004513045309665443,0.004456770686964753,0.004401364939961817,0.0043468111548256244,0.004293092828824845,0.004240193858174866,0.00418809852630924,0.004136791492559367,0.004086257781223886,0.004036482771015103,0.003987452184865365,0.0039391520800799345,0.0038915688388234154,0.0038446891589247437,0.0037985000449910185,0.0037529887998162766,0.0037081430160747523,0.003663950568287361,0.003620399605051921,0.0035774785415252134,0.0035351760521498943,0.0034934810636152807,0.0034523827480439128,0.0034118705163960973,0.0033719340120827155,0.00333256310478092,0.003293747884443651,0.0032554786554964497,0.0032177459312154474,0.0031805404282783086,0.0031438530614841666,0.0031076749386348733,0.003071997355572572,0.003036811791367822,0.003002109903653598,0.0029678835240986513,0.0029341246540172906,0.0029008254601094554,0.002867978270327059,0.002835575569862774,0.002803609997255677,0.002772074340611638,0.002740961533933237,0.0027102646535559216,0.0026799769146874284,0.0026500916680453394,0.002620602396592194,0.0025915027123622095,0.0025627863533782816,0.0025344471806561402,0.0025064791752921764,0.0024788764356324187,0.002451633174520762,0.00242474371662302,0.0023982024958247258,0.002372004052700719,0.002346143032053105,0.002320614180516944,0.0022954123442304,0.002270532466567817,0.002245969585933582,0.002221718833615364,0.002197775431693629,0.002174134691007755,0.002150792009174849,0.0021277428686611454,0.0021049828349040396,0.0020825075544824603,0.0020603127533353957,0.002038394235026189,0.0020167478790515062,0.001995369639194008,0.001974255541916492,0.0019534016847974813,0.0019328042350061773,0.001912459427815951,0.0018923635651551419,0.0018725130141944407,0.0018529042059689492,0.0018335336340348813,0.0018143978531596295,0.0017954934780435728,0.0017768171820739425,0.001758365696108477,0.0017401358072892596,0.0017221243578850855,0.0017043282441618684,0.0016867444152802028,0.0016693698722196238,0.0016522016667280988,0.0016352369002970047,0.0016184727231602118,0.0016019063333167862,0.0015855349755769805,0.0015693559406301128,0.0015533665641347114,0.0015375642258296136,0.0015219463486656978,0.0015065103979579005,0.0014912538805563428,0.0014761743440369292,0.0014612693759101163,0.0014465366028480788,0.0014319736899289519,0.0014175783398987034,0.001403348292449112,0.0013892813235123933,0.0013753752445714172,0.001361627901985336,0.0013480371763302827,0.0013346009817545806,0.0013213172653481924,0.0013081840065261496,0.0012951992164253274,0.0012823609373146443,0.0012696672420179401,0.0012571162333492813,0.0012447060435607337,0.001232434833801878,0.0012203007935909541,0.0012083021402974773,0.0011964371186355858,0.001184704000168477,0.001173101082823203,0.0011616266904157185,0.0011502791721860848,0.001139056902343121,0.0011279582796188989,0.0011169817268323788,0.0011061256904621392,0.19974951550174025,0.19974951550174025,0.19974951550174025,0.19974951550174025,0.19974951550174025,0.19974371950558747,0.1988320217037669,0.19642044480304707,0.19265384561180282,0.18774217848739816,0.18193099019269623,0.1754725074115395,0.1686026855646889,0.16152654653888507,0.15441148576578065,0.14738671405640325,0.1405465877245153,0.13395586624540265,0.1276554966340945,0.12166808023113637,0.11600260776677447,0.11065833111196684,0.10562780063094025,0.10089917303285478,0.09645791913883438,0.09228805784057588,0.08837302683700504,0.08469628113908564,0.08124169125562711,0.07799379633318564,0.07493795387909827,0.07206041693539118,0.06934836130413656,0.06678987919175809,0.06437395100388942,0.062090403611658324,0.059929860921943814,0.057883690782441106,0.05594395095656557,0.054103335978175286,0.052355126040171736,0.05069313861065471,0.04911168315048189,0.047605519087130774,0.04616981705313106,0.044800123301525635,0.04349232715131194,0.042242631281366495,0.04104752467419986,0.039903758005707106,0.03880832127943984,0.0377584235114867,0.03675147428252066,0.03578506698574512,0.03485696361227054,0.03396508092849188,0.03310747791254379,0.032282344328984316,0.03148799033213232,0.03072283699890059,0.02998540770167395,0.029274320240497417,0.02858827966188631,0.02792607169881501,0.027286556772948407,0.026668664506147216,0.026071388693516,0.02549378269507291,0.02493495520738375,0.02439406638035552,0.02387032424779501,0.0233629814434794,0.02287133217719849,0.02239470944774205,0.021932482472029207,0.021484054311548196,0.021048859679113765,0.02062636291051253,0.02021605608708153,0.019817457296554812,0.019430109020692757,0.01905357663923801,0.018687447040730856,0.018331327331532588,0.017984843635200365,0.017647639975052854,0.017319377233376662,0.016999732181327002,0.016688396574057716,0.01638507630610212,0.016089490622448514,0.015801371381121743,0.015520462363459794,0.015246518628562428,0.014979305908693787,0.014718600042677199,0.014464186444564792,0.014215859605066623,0.013973422623448958,0.013736686767765878,0.013505471061469666,0.013279601894595715,0.013058912657843489,0.012843243398024565,0.012632440493442467,0.01242635634788891,0.012224849102033978,0.01202778236108212,0.011835024937636406,0.011646450608809446,0.011461937886668848,0.011281369801181352,0.011104633694878258,0.010931621028509373,0.010762227197020937,0.010596351355221493,0.01043389625255328,0.01027476807642563,0.010118876303594716,0.009966133559124242,0.00981645548247651,0.009669760600322836,0.009525970205685151,0.009385008243049258,0.009246801199105086,0.009111277998804788,0.008978369906435845,0.008848010431432763,0.008720135238668398,0.008594682062974658,0.008471590627670241,0.008350802566874297,0.008232261351405786,0.008115912218077342,0.008001702102206916,0.007889579573173672,0.0077794947728667225,0.007671399356872303,0.007565246438260945,0.007460990533843656,0.007358587512767958,0.007257994547342234,0.00715917006597293,0.0070620737081113745,0.006966666281112895,0.006872909718910591,0.00678076704242115,0.006690202321595258,0.00660118063903526,0.006513668055105199,0.0064276315744639925,0.006343039113951326,0.006259859471767922,0.006178062297886654,0.006097618065638857,0.0060184980444232304,0.005940674273482888,0.005864119536706628,0.005788807338405189,0.005714711880020153,0.005641808037723738,0.005570071340871341,0.005499477951266457,0.005430004643206508,0.00536162878427281,0.005294328316833583,0.005228081740230391,0.005162868093616157,0.005098666939420865,0.005035458347415744,0.004973222879351863,0.004911941574150097,0.0048515959336170355,0.004792167908668658,0.004733639886038497,0.00467599467545153,0.004619215497244666,0.004563285970416874,0.004508190101089331,0.004453912271362482,0.004400437228551888,0.004347750074788898,0.0042958362569724025,0.004244681557056022,0.004194272082660441,0.0041445942579964095,0.004095634815087085,0.00404738078527908,0.003999819491029181,0.003952938537959093,0.00390672580716612,0.003861169447781052,0.003816257869763791,0.003771979736928762,0.003728323960189684,0.003685279691018304,0.0036428363151073378,0.0036009834462309384,0.003559710920296085,0.0035190087895763805,0.0034788673171240424,0.0034392769713519947,0.0034002284207808155,0.0033617125289445017,0.003323720349450128,0.0032862431211844478,0.0032492722636645165,0.003212799372525715,0.003176816215143076,0.0031413147263817925,0.0031062870044710686,0.003071725306999108,0.003037622047023677,0.003003969789294912,0.002970761246587009,0.0029379892761338877,0.0029056468761671644,0.0028737271825517293,0.0028422234655162896,0.002811129126475577,0.0027804376949417836,0.0027501428255210614,0.0027202382949940425,0.002690717999476452,0.0026615759516576145,0.0026328062781148976,0.002604403216700364,0.0025763611139990586,0.002548674422855451,0.0025213376999663776,0.002494345603538304,0.0024676928910073183,0.0024413744168188508,0.002415385130266745,0.0023897200733887947,0.002364374378917358,0.002339343268283767,0.0023146220496738455,0.0022902061161344032,0.002266090943728139,0.002242272089735859,0.0022187451909049475,0.0021955059617417096,0.0021725501928476615,0.002149873749297428,0.002127472569057507,0.0021053426614445047,0.0020834801056221594,0.0020618810491350296,0.0020405417064790713,0.0020194583577071317,0.001998627347068658,0.0019780450816829307,0.0019577080302440437,0.0019376127217578488,0.0019177557443091479,0.001898133743858589,0.0018787434230683692,0.001859581540156253,0.0018406449077763062,0.001821930391926711,0.0018034349108830973,0.0017851554341569724,0.0017670889814788214,0.0017492326218044372,0.0017315834723448816,0.0017141386976186794,0.0016968955085258977,0.0016798511614437835,0.0016630029573426294,0.001646348240922349,0.001629884399768442,0.0016136088635271485,0.001597519103099218,0.0015816126298520317,0.0015658869948489782,0.0015503397880964808,0.0015349686378076082,0.0015197712096819997,0.0015047452062019722,0.0014898883659436853,0.0014751984629038915,0.0014606733058411937,0.0014463107376316954,0.0014321086346388504,0.0014180649060965738,0.001404177493506064,0.001390444370045428,0.0013768635399919855,0.0013634330381569089,0.0013501509293320753,0.0013370153077483025,0.001324024296545426,0.0013111760472533647,0.0012984687392840928,0.001285900579434447,0.001273469801398957,0.001261174665293171,0.0012490134571867056,0.0012369844886459746,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.20309717475899672,0.2029044710572153,0.2013748726079407,0.19840716768244027,0.1941733045700215,0.18889777900904853,0.18282820705372405,0.17620892202530203,0.1692616594086738,0.16217445202561154,0.15509769190579398,0.14814530678432827,0.1413989226292875,0.13491330813076088,0.12872196101467417,0.12284219453682989,0.11727944255750421,0.11203072565433533,0.10708734078568503,0.10243688861837287,0.09806476434434601,0.09395522915687353,0.09009216246129466,0.08645957593613143,0.08304195294798705,0.07982446183300375,0.07679307943893507,0.0739346518471199,0.07123691195506768,0.06868846816005214,0.06627877434639057,0.06399808841058165,0.06183742439352333,0.05978850172080196,0.057843693923976584,0.05599597840920915,0.054238888267818704,0.05256646672134938,0.05097322451430286,0.04945410037663321,0.048004424549700636,0.04661988528603406,0.045296498181400816,0.04403057816785876,0.04281871398211617,0.04165774491926813,0.04054473968481453,0.03947697716498446,0.03845192894522767,0.037467243417924845,0.03652073133234257,0.035610352651675746,0.03473420459368987,0.0338905107425384,0.03307761112967201,0.03229395319149003,0.03153808352017903,0.030808640332360426,0.030104346587561854,0.029424003695195534,0.028766485754864957,0.028130734280221243,0.02751575336156412,0.026920605226799347,0.026344406164363936,0.025786322775273797,0.025245568524720204,0.024721400566467773,0.024213116815928158,0.02372005325010737,0.023241581414682105,0.022777106120385675,0.022326063312518053,0.021887918098939068,0.021462162923254532,0.021048315871141213,0.02064591909883486,0.020254537373843286,0.019873756718800935,0.019503183150216055,0.01914244150459139,0.018791174345039754,0.018449040942150132,0.018115716323364655,0.01779089038563799,0.0174742670665939,0.017165563569779486,0.016864509640014937,0.01657084688513779,0.016284328140762482,0.016004716874943554,0.015731786629889152,0.015465320498082327,0.015205110630404936,0.014950957774020583,0.014702670837963991,0.014460066484541595,0.014222968744780573,0.013991208656320487,0.013764623922240041,0.013543058589437619,0.013326362745281409,0.013114392231344784,0.012907008373115796,0.012704077724671145,0.012505471827356802,0.01231106698159726,0.012120744031017176,0.011934388158105644,0.011751888690725514,0.011573138918799675,0.011398035920562512,0.011226480397806103,0.011058376519579314,0.010893631773851142,0.010732156826665335,0.010573865388354321,0.010418674086405066,0.010266502344599247,0.01011727226806559,0.009970908533920138,0.009827338287175868,0.009686491041631941,0.009548298585470159,0.009412694891296041,0.009279616030390993,0.009149000090943396,0.009020787100048108,0.008894918949273942,0.008771339323613096,0.00864999363363069,0.008530828950655019,0.008413793944846657,0.008298838826000736,0.008185915286945065,0.008074976449398199,0.007965976812170445,0.007858872201586459,0.007753619724021041,0.007650177720445798,0.00754850572288419,0.007448564412688136,0.007350315580544339,0.007253722088129012,0.0071587478313324,0.0070653577049802855,0.0069735175689785624,0.006883194215819569,0.006794355339383313,0.006706969504975226,0.006621006120545228,0.006536435409030608,0.006453228381776941,0.006371356812984948,0.0062907932151390605,0.0062115108153735716,0.006133483532736607,0.006056685956309029,0.005981093324145623,0.005906681502999686,0.005833426968798323,0.005761306787837475,0.005690298598662946,0.005620380594612586,0.005551531506988694,0.005483730588835456,0.0054169575992971675,0.005351192788530419,0.0052864168831513484,0.005222611072193114,0.0051597569935542785,0.005097836720917635,0.0050368327511218685,0.004976727991965241,0.004917505750427618,0.0048591497212918415,0.004801643976149472,0.004744972952776838,0.004689121444864523,0.004634074592089827,0.004579817870516697,0.004526337083311347,0.004473618351762342,0.004421648106591393,0.004370413079546893,0.004319900295267359,0.004270097063405719,0.004220990971004364,0.004172569875112649,0.004124821895635862,0.004077735408409953,0.0040312990384918,0.003985501653657913,0.003940332358104691,0.00389578048634117,0.0038518355972699267,0.0038084874684475535,0.003765726090519216,0.0037235416618208485,0.003681924583143929,0.0036408654526553998,0.0036003550609697067,0.0035603843863659967,0.0035209445901460863,0.0034820270121289623,0.0034436231662755275,0.0034057247364413885,0.0033683235722517958,0.0033314116850951168,0.003294981244231511,0.0032590245730113733,0.003223534145202002,0.00318850258141747,0.003153922645648813,0.003119787241891216,0.0030860894108655393,0.0030528223268297466,0.003019979294479285,0.0029875537459320856,0.00295553923779604,0.0029239294483167618,0.00289271817460175,0.0028618993299203716,0.002831466941075923,0.002801415145848122,0.002771738190503605,0.002742430427372887,0.0027134863124904977,0.002684900403297977,0.002656667356406627,0.002628781925418603,0.0026012389588049773,0.002574033397837875,0.002547160274576672,0.0025206147099054023,0.0024943919116203316,0.0024684871725665102,0.002442895868820803,0.002417613457921494,0.002392635477141975,0.002367957541807759,0.0023435753436553066,0.0023194846492319765,0.00229568129833483,0.0022721612024885762,0.0022489203434604955,0.002225954771811661,0.0022032606054837364,0.00218083402841938,0.0021586712892166173,0.0021367686998152472,0.0021151226342147967,0.0020937295272230104,0.002072585873234397,0.0020516882250371142,0.0020310331926485987,0.002010617442178281,0.001990437694716929,0.0019704907252521857,0.0019507733616087551,0.0019312824834137076,0.0019120150210853602,0.0018929679548453993,0.0018741383137539191,0.0018555231747659378,0.0018371196618098755,0.0018189249448866823,0.0018009362391893302,0.0017831508042420576,0.0017655659430591644,0.0017481790013220895,0.001730987366575301,0.0017139884674397538,0.0016971797728437476,0.0016805587912709456,0.0016641230700244103,0.001647870194507224,0.001631797787518525,0.0016159035085648497,0.001600185053186584,0.0015846401522984978,0.0015692665715449086,0.0015540621106684056,0.0015390246028921285,0.001524151914315101,0.001509441943320645,0.0014948926199968172,0.0014805019055695236,0.0014662677918472861,0.0014521883006776435,0.0014382614834150755,0.0014244854203995959,0.0014108582204465355,0.0013973780203466644,0.0013840429843766451,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.2065009383951525,0.20596010422640962,0.2039429055663057,0.20055016821202992,0.1959715301231048,0.19043860117594089,0.1841965669106011,0.1774803827179456,0.17049853112065094,0.16342461954615403,0.15639536212174346,0.14951284931145067,0.14284913926372098,0.13645169054041137,0.130348695638054,0.12455381737249273,0.11907013465967564,0.11389328577014388,0.10901388946875089,0.10441936023159744,0.10009523770221487,0.096026139014389,0.09219642524310233,0.08859065522338264,0.08519388372262729,0.08199184733466335,0.07897107055757245,0.07611891603889277,0.07342359651488697,0.07087416112738179,0.06846046520923102,0.0661731299886425,0.06400349673536161,0.06194357847488843,0.05998601139024964,0.05812400731073659,0.0563513081753861,0.054662142998682856,0.05305118761541716,0.051513527309514424,0.05004462231627217,0.04864027611215142,0.04729660635934841,0.04601001834560475,0.04477718074646153,0.04359500353353829,0.0424606178549272,0.04137135772037648,0.04032474333286492,0.03931846591861398,0.03835037391838087,0.037418460413916395,0.036520851674169116,0.03565579671598328,0.03482165778373691,0.03401690166120723,0.03324009173724124,0.032489880754350935,0.031765004176189375,0.031064274116187438,0.030386573775210497,0.029730852341251314,0.029096120308766796,0.028481445179431443,0.027885947509778613,0.027308797274621606,0.02674921051810326,0.02620644626697206,0.025679803683119153,0.02516861943457174,0.024672265266161814,0.02419014575280633,0.023721696219961376,0.023266380817233683,0.02282369073243573,0.022393142534505778,0.021974276634808953,0.02156665585723544,0.021169864108392583,0.02078350513995694,0.020407201395928363,0.02004059293819714,0.01968333644436778,0.019335104272322306,0.018995583586474428,0.018664475541071677,0.01834149451632356,0.01802636740345048,0.01771883293508814,0.017418641057765034,0.01712555234344256,0.016839337437330227,0.01655977653943885,0.01628665891750538,0.016019782449123936,0.015758953191084883,0.015503984974061849,0.015254699020954252,0.015010923587294936,0.014772493622266382,0.014539250448971908,0.01431104146271245,0.014087719846097817,0.013869144299928042,0.013655178788834876,0.013445692300757808,0.01324055861939462,0.01303965610881434,0.012842867509498165,0.012650079745103638,0.012461183739307477,0.012276074242125868,0.012094649665141212,0.01191681192512037,0.011742466295526045,0.011571521265466012,0.01140388840565096,0.01123948224096329,0.011078220129254935,0.010920022146032765,0.010764810974696115,0.010612511802020693,0.010463052218602532,0.010316362123984702,0.0101723736362212,0.010031021005633273,0.009892240532536414,0.009755970488726857,0.009622151042531843,0.009490724187231583,0.009361633672685707,0.009234824939993055,0.009110245059031852,0.008987842668735285,0.008867567919959359,0.008749372420820115,0.008633209184371904,0.008519032578512917,0.008406798278010004,0.00829646321853483,0.008187985552620122,0.008081324607438801,0.007976440844320979,0.0078732958199254,0.0077718521489892,0.007672073468577484,0.007573924403768818,0.0074773705347056475,0.007382378364948571,0.007288915291075915,0.007196949573468416,0.007106450308230517,0.007017387400193502,0.006929731536953655,0.00684345416390061,0.0067585274601888465,0.006674924315615805,0.006592618308363546,0.00651158368356824,0.0064317953326812,0.006353228773589228,0.0062758601314585275,0.006199666120276183,0.006124624025056531,0.006050711684685889,0.00597790747538009,0.0059061902947265665,0.005835539546291021,0.005765935124762635,0.0056973574016172595,0.005629787211277228,0.005563205837749042,0.005497595001717135,0.0054329368480792685,0.005369213933903426,0.005306409216790559,0.005244506043628345,0.0051834881397180115,0.005123339598263446,0.005064044870206019,0.005005588754393025,0.004947956388066654,0.004891133237662494,0.004835105089903366,0.004779858043180843,0.0047253784992111565,0.004671653154956367,0.00461866899480163,0.004566413282977,0.004514873556217836,0.00446403761665298,0.004413893524913177,0.004364429593452595,0.004315634380073703,0.004267496681651113,0.004220005528045259,0.004173150176200009,0.004126920104417684,0.004081305006805838,0.004036294787888151,0.00399187955737619,0.003948049625094668,0.0039047954960556193,0.0038621078656769464,0.003819977615138765,0.003778395806875226,0.003737353680195521,0.003696842647030329,0.003656854287800181,0.003617380347399918,0.0035784127312977637,0.0035399435017435367,0.0035019648740831277,0.00346446921317559,0.003427449029910115,0.003390896977818194,0.003354805849779953,0.003319168574820086,0.0032839782149911272,0.003249227962341758,0.003214911135965988,0.0031810211791327004,0.0031475516564915106,0.0031144962513532273,0.003081848763042403,0.0030496031043202565,0.003017753298874565,0.00298629347887614,0.002955217882598678,0.00292452085210038,0.0028941968309660177,0.002864240362106272,0.0028346460856144046,0.0028054087366772215,0.0027765231435392186,0.0027479842255186755,0.002719786991073009,0.0026919265359135526,0.00266439804116709,0.0026371967715832986,0.0026103180737866182,0.002583757374571692,0.0025575101792400553,0.0025315720699783453,0.0025059387042757654,0.0024806058133800433,0.0024555692007911805,0.002430824740790848,0.0024063683770078354,0.002382196121017543,0.002358304050974918,0.00233468831027985,0.0023113451062744678,0.002288270708970537,0.0022654614498073627,0.002242913720438501,0.0022206239715467117,0.0021985887116867876,0.0021768045061545107,0.002155267975882342,0.0021339757963601404,0.002112924696580604,0.0020921114580090415,0.002071532913575961,0.002051185946693049,0.002031067490291056,0.002011174525879355,0.001991504082626487,0.001972053236461524,0.0019528191091948205,0.0019337988676588307,0.0019149897228675733,0.0018963889291946125,0.001877993783569304,0.0018598016246900676,0.0018418098322553142,0.0018240158262107704,0.0018064170660131457,0.0017890110499095791,0.0017717953142328189,0.0017547674327109757,0.0017379250157924702,0.001721265709985095,0.0017047871972090498,0.0016884871941638669,0.0016723634517081904,0.0016564137542530014,0.0016406359191673036,0.0016250277961961594,0.001609587266891041,0.001594312244051512,0.0015792006711788558,0.0015642505219407063,0.0015494597996466907,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20996174667953935,0.20995343628227212,0.2090393711470348,0.20666737948362773,0.20297572164022637,0.19816412020921217,0.1924662042070215,0.18612248601751077,0.17935881968812678,0.17237250756546996,0.16532579557414837,0.15834509724647503,0.15152389144623132,0.1449274846516347,0.13859833230445176,0.132561121109695,0.12682721069439756,0.1213982966678423,0.11626930941211489,0.11143063714149357,0.10686978776805856,0.10257260369698121,0.0985241308675233,0.09470922629969307,0.09111297136682757,0.08772094291507972,0.08451938182214376,0.08149528860874204,0.07863646798162978,0.07593153830631916,0.07336991759835781,0.0709417943508635,0.06863808910921576,0.06645041094577603,0.06437101171065172,0.06239274001337532,0.06050899622969172,0.05871368935717391,0.05700119621160201,0.055366323224101795,0.053804270939727714,0.05231060121066926,0.050881207006766564,0.04951228472207933,0.048200308830501526,0.046942008730769404,0.04573434761723176,0.044574503214720014,0.04345985022153011,0.04238794431273058,0.04135650756528036,0.04036341517649047,0.03940668335744907,0.03848445829284849,0.03759500606820826,0.03673670347430462,0.03590802960698298,0.03510755818820331,0.034333950541169854,0.033585949158913664,0.03286237181146891,0.03216210614214327,0.03148410470816742,0.030827380425363787,0.03019100238034689,0.02957409197736142,0.02897581938997038,0.02839540029070287,0.02783209283433886,0.027285194872788923,0.026754041381665865,0.026238002080459413,0.025736479229946218,0.025248905591972286,0.024774742538123347,0.024313478295002966,0.023864626314997427,0.02342772376236139,0.023002330105391596,0.022588025806272886,0.022184411100896684,0.021791104861663427,0.021407743536844073,0.021033980160649442,0.020669483428652238,0.02031393683363807,0.019967037857408092,0.019628497214392242,0.01929803814329284,0.018975395743278382,0.018660316351536185,0.01835255695922902,0.018051884663166606,0.01775807615068394,0.017470917215432126,0.017190202301963557,0.01691573407714162,0.016647323026581413,0.01638478707443662,0.01612795122499026,0.015876647224615147,0.015630713242781577,0.015389993570871409,0.015154338337672215,0.014923603240481871,0.014697649290843934,0.014476342574003166,0.014259554021222203,0.01404715919418132,0.013839038080716194,0.013635074901211288,0.013435157925012738,0.013239179296256601,0.013047034868567889,0.012858624048102946,0.012673849644453731,0.012492617728960053,0.012314837500009038,0.012140421154917973,0.011969283768039645,0.011801343174735184,0.011636519860891327,0.011474736857679298,0.011315919641262117,0.011159996037190869,0.011006896129230951,0.01085655217238427,0.010708898509883739,0.010563871493953528,0.01042140941013201,0.010281452404980471,0.010143942416997101,0.01000882311057417,0.0098760398128456,0.009745539453273508,0.00961727050584371,0.009491182933734889,0.009367228136341037,0.009245358898533111,0.009125529342045835,0.009007694878893241,0.008891812166710426,0.008777839065931416,0.008665734598715231,0.008555458909539633,0.008446973227379707,0.00834023982940367,0.008235222006111006,0.00813188402784833,0.008030191112641352,0.007930109395278884,0.007831605897598293,0.00773464849991404,0.007639205913540066,0.007545247654358687,0.007452744017386196,0.0073616660522967,0.007271985539858667,0.0071836749692463595,0.007096707516187996,0.007011057021916612,0.006926697972884972,0.006843605481219733,0.006761755265876053,0.00668112363446882,0.006601687465751036,0.006523424192710271,0.006446311786262047,0.006370328739512681,0.0062954540525697105,0.0062216672178774775,0.006148948206058095,0.0060772774522345795,0.006006635842821075,0.0059370047027588815,0.005868365783181634,0.0058007012494940766,0.005733993669845436,0.005668226003985943,0.00560338159248915,0.005539444146327062,0.005476397736784435,0.005414226785700496,0.005352916056023132,0.005292450642667461,0.005232815963664795,0.005173997751592174,0.005115982045273059,0.0050587551817366586,0.005002303788429885,0.004946614775670348,0.004891675329332436,0.0048374729037590205,0.004783995214888375,0.004731230233591739,0.004679166179211873,0.004627791513296368,0.004577094933518704,0.0045270653677813135,0.004477691968492313,0.0044289641070126735,0.004380871368265898,0.004333403545505439,0.004286550635235072,0.004240302832275165,0.004194650524972488,0.004149584290546901,0.004105094890570911,0.004061173266578407,0.004017810535796424,0.003974997986998333,0.0039327270764727045,0.003890989424104797,0.0038497768095667583,0.0038090811686137946,0.0037688945894811033,0.003729209309380734,0.0036900177110934175,0.0036513123196529654,0.0036130857991208552,0.00357533094944656,0.0035380407034130983,0.0035012081236635278,0.003464826399806538,0.00342888884559851,0.003393388896200267,0.003358320105504762,0.0033236761435355283,0.0032894507939122543,0.003255637951381986,0.0032222316194144124,0.003189225907857948,0.003156615030656644,0.003124393303624758,0.003092555142277723,0.003061095059718299,0.0030300076645749926,0.002999287658992946,0.002968929836674491,0.002938929080968432,0.0029092803630064797,0.002879978739886027,0.002851019352896648,0.0028223974257907364,0.0027941082630958637,0.002766147248467964,0.0027385098430847475,0.0027111915840768983,0.002684188082997661,0.0026574950243285307,0.0026311081640205424,0.002605023328070009,0.002579236411128207,0.0025537433751430037,0.0025285402480329884,0.002503623122392136,0.002478988154224578,0.0024546315617089694,0.0024305496239906427,0.0024067386800021994,0.0023831951273107195,0.0023599154209912486,0.0023368960725261945,0.0023141336487289546,0.0022916247706924854,0.0022693661127611057,0.002247354401525414,0.002225586414839535,0.0022040589808604797,0.0021827689771081946,0.0021617133295469067,0.002140889011686381,0.002120293043702836,0.0020999224915793477,0.002079774466264335,0.0020598461228488827,0.002040134659761517,0.0020206373179803604,0.002001351380262126,0.001982274170387877,0.001963403052424153,0.001944735430000682,0.0019262687456026012,0.001908000479877957,0.0018899281509598663,0.0018720493138023673,0.0018543615595306329,0.0018368625148044463,0.0018195498411948524,0.0018024212345739287,0.0017854744245166356,0.001768707173715405,0.00175211727740647,0.0017357025628079211,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21348055563973098,0.21342064502792,0.21225356768264872,0.20966232088044107,0.20579486286319842,0.20085497626530135,0.19507502904008467,0.188690241180585,0.181918829608696,0.1749496876449392,0.167937047917708,0.16100039834456614,0.15422766713057004,0.14767999287376665,0.14139689540691078,0.1354011406400873,0.12970295572921242,0.12430348747241743,0.1191975308593405,0.11437561821810606,0.10982558004944354,0.10553368616058952,0.10148546263946617,0.09766626374073613,0.09406166160621682,0.09065770255593866,0.08744106696779402,0.08439916044938697,0.08152015679295037,0.07879300771939081,0.07620743030237505,0.07375387990663633,0.07142351422276028,0.06920815233199135,0.06710023153537845,0.06509276381393596,0.06317929316254199,0.06135385459501992,0.059610935302143044,0.057945438223313335,0.05635264813981351,0.05482820029376992,0.05336805146868628,0.051968453423887576,0.05062592854966492,0.049337247596598015,0.04809940932779926,0.04690962194372142,0.045765286134025765,0.044663979617951016,0.04360344304311289,0.04258156712173174,0.04159638089247744,0.04064604100533942,0.0397288219355946,0.038843107041309076,0.03798738038656709,0.037160219259766224,0.036360287323023543,0.03558632833470936,0.03483716039270074,0.03411167065094566,0.033408810466493695,0.03272759093822078,0.03206707880226378,0.031426392652462026,0.0308046994571686,0.030201211346515978,0.02961518264664116,0.02904590713964763,0.02849271553001128,0.027954973099969218,0.027432077538032718,0.02692345692623564,0.02642856787301216,0.02594689377983565,0.025477943230768543,0.025021248495069526,0.02457636413387653,0.024142865702748355,0.02372034854260718,0.023308426652226846,0.022906731636023307,0.022514911721434994,0.022132630840640037,0.021759567771835787,0.021395415335663442,0.02103987964274751,0.020692679388639414,0.020353545192763133,0.02002221897821326,0.019698453389539874,0.019382011245847673,0.019072665026764447,0.018770196389023486,0.018474395711560836,0.018185061667218106,0.01790200081925659,0.017625027241040547,0.017353962157363463,0.01708863360600921,0.016828876118228118,0.016574530416929217,0.016325443131450797,0.01608146652786731,0.015842458253863996,0.015608281097265541,0.01537880275739198,0.015153895628449175,0.014933436594228695,0.01471730683344127,0.01450539163504096,0.01429758022296246,0.014093765589710145,0.013893844338288022,0.013697716531988032,0.013505285551590161,0.01331645795954501,0.01313114337075604,0.012949254329584355,0.012770706192732996,0.012595417017689438,0.012423307456414814,0.012254300654004806,0.012088322152047101,0.011925299796427152,0.011765163649344958,0.011607845905323693,0.01145328081099466,0.01130140458847105,0.011152155362118995,0.01100547308855384,0.010861299489699947,0.010719577988752876,0.010580253648906704,0.01044327311470261,0.010308584555871098,0.010176137613547236,0.010045883348737496,0.009917774192936471,0.009791763900784456,0.009667807504670566,0.00954586127118809,0.009425882659356859,0.009307830280524733,0.009191663859876523,0.009077344199471203,0.00896483314273862,0.00885409354037071,0.008745089217539085,0.008637784942385606,0.008532146395723937,0.008428140141900298,0.00832573360076125,0.008224895020681668,0.00812559345260225,0.008027798725038336,0.007931481420013826,0.007836612849881984,0.007743165034996491,0.007651110682192809,0.007560423164050863,0.007471076498902397,0.007383045331553306,0.007296304914692554,0.007210831090955595,0.007126600275620571,0.007043589439907721,0.006961776094859103,0.006881138275774742,0.006801654527184446,0.006723303888330363,0.006646065879144693,0.006569920486699764,0.006494848152112935,0.006420829757889803,0.006347846615685633,0.0062758804544728415,0.006204913409096254,0.006134928009202004,0.006065907168527233,0.005997834174533827,0.005930692678377342,0.005864466685195607,0.0057991405447063845,0.0057346989421023075,0.005671126889233182,0.005608409716062573,0.005546533062392292,0.005485482869842319,0.00542524537407796,0.005365807097276279,0.005307154840820647,0.005249275678218769,0.005192156948233781,0.005135786248221993,0.005080151427669624,0.005025240581922749,0.0049710420461012705,0.0049175443891938155,0.004864736408324985,0.0048126071231898914,0.004761145770651059,0.004710341799489983,0.004660184865311128,0.0046106648255910265,0.00456177173486847,0.004513495840071739,0.004465827575976329,0.0044187575607916715,0.004372276591870499,0.004326375641537809,0.004281045853035226,0.004236278536577795,0.0041920651655178,0.004148397372614621,0.0041052669464054295,0.004062665827674192,0.004020586106016392,0.003979020016494815,0.003937959936385833,0.00389739838201164,0.0038573280056565205,0.0038177415925642636,0.0037786320580150074,0.0037399924444773466,0.003701815918835639,0.0036640957696886657,0.00362682540471793,0.0035899983481241164,0.0035536082381281,0.003517648824536627,0.003482113966369242,0.00344699762954515,0.0034122938846287794,0.003377996904630799,0.0033441009628650165,0.003310600430857991,0.003277489776310475,0.003244763561109006,0.0032124164393867376,0.0031804431556307546,0.0031488385428363745,0.0031175975207057504,0.003086715093889942,0.0030561863502737495,0.00302600645930073,0.002996170670339071,0.0029666743110858414,0.002937512786009154,0.002908681574826923,0.0028801762310218105,0.002851992380390093,0.0028241257196251566,0.0027965720149334895,0.0027693271006826786,0.0027423868780809602,0.002715747313886307,0.002689404439145794,0.0026633543479633167,0.002637593196295285,0.0026121172007738877,0.0025869226375561743,0.0025620058411996716,0.002537363203562786,0.002512991172729797,0.0024888862519596247,0.0024650449986581818,0.0024414640233727304,0.0024181399888089576,0.0023950696088692576,0.002372249647711943,0.00234967691883124,0.002327348284156567,0.00230526065317184,0.0022834109820534295,0.0022617962728265634,0.0022404135725400333,0.0022192599724578646,0.0021983326072687035,0.002177628654311618,0.002157145332818246,0.002136879903170778,0.0021168296661757415,0.00209699196235235,0.0020773641712361944,0.002057943710697039,0.0020387280362707213,0.0020197146405050207,0.0020009010523184155,0.0019822848363724526,0.0019638635924566126,0.0019456349548857355,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2170583373256412,0.2169619174952029,0.2156949433603974,0.21302826670280023,0.20911187810651433,0.20414858335916472,0.19836736410829894,0.19199858000466888,0.18525507443092326,0.178320619397853,0.17134505934390104,0.1644444397545415,0.15770420654209902,0.15118387215458928,0.14492202960641218,0.13894105158499467,0.13325115532485587,0.1278537365205471,0.12274400105270893,0.11791298242856361,0.11334905173993039,0.10903902420657173,0.10496895375840211,0.10112469135808354,0.09749226735543032,0.09405814463353532,0.09080937812150623,0.0877337073498576,0.08481960182298166,0.08205627372644536,0.0794336685350377,0.07694244114655903,0.07457392299393124,0.07232008399459211,0.07017349203337701,0.06812727183134501,0.06617506444463742,0.06431098820101427,0.06252960157157295,0.06082586825658008,0.059195124612222906,0.05763304944131557,0.05613563610145748,0.054699166839607516,0.053320189234907105,0.05199549461685642,0.05072209831965352,0.049497221633250495,0.048318275315010824,0.04718284453185453,0.04608867511016034,0.045033660978785445,0.04401583269911529,0.04303334698434317,0.042084477118387795,0.041167604192605914,0.0402812090856893,0.039423865119003726,0.03859423132579106,0.03779104627845409,0.03701312242337153,0.0362593408774869,0.03552864664521056,0.03482004421818393,0.03413259352393739,0.033465406192734734,0.03281764211479924,0.032188506262699666,0.03157724575610525,0.03098314714818453,0.030405533914885173,0.02984376413005205,0.029297228310916773,0.028765347419871325,0.02824757100976722,0.02774337550107652,0.027252262580322543,0.026773757710126148,0.026307408742035552,0.025852784624125227,0.025409474195997123,0.024977085064476393,0.02455524255386495,0.024143588725110483,0.023741781458763784,0.0233494935969813,0.022966412140246435,0.022592237494826844,0.022226682767316944,0.02186947310288629,0.021520345064160052,0.021179046047865403,0.02084533373662219,0.020518975583460126,0.02019974832681264,0.019887437533941423,0.01958183717086948,0.019282749197063735,0.01898998318323251,0.018703355950730645,0.018422691231158868,0.018147819344874708,0.0178785768971972,0.01761480649119068,0.017356356455992,0.017103080589701388,0.01685483791596052,0.016611492453358006,0.016372912996899604,0.016138972910811733,0.01590954993200031,0.015684525983536184,0.015463786997579214,0.015247222747188299,0.015034726686504837,0.014826195798830513,0.014621530452147227,0.014420634261660514,0.014223413958973963,0.014029779267522935,0.013839642783926841,0.013652919864925537,0.013469528519612443,0.013289389306661351,0.013112425236291927,0.012938561676713981,0.01276772626482216,0.012599848820907386,0.012434861267185765,0.012272697549943718,0.012113293565113177,0.011956587087105505,0.01180251770073292,0.011651026736069497,0.011502057206103367,0.011355553747035353,0.011211462561106215,0.011069731361815547,0.01093030932142592,0.01079314702063854,0.010658196400336377,0.01052541071529652,0.010394744489780988,0.010266153474912346,0.010139594607758002,0.010015025972039083,0.009892406760389645,0.009771697238099614,0.009652858708266624,0.00953585347829881,0.009420644827708697,0.009307196977134809,0.009195475058541408,0.009085445086546413,0.008977073930818008,0.008870329289508126,0.008765179663664833,0.008661594332589645,0.008559543330096522,0.008458997421634036,0.008359928082234876,0.00826230747525867,0.008166108431893625,0.008071304431387637,0.007977869581974968,0.007885778602474991,0.007795006804532005,0.00770553007547138,0.007617324861747098,0.007530368152958288,0.0074446374664077705,0.0073601108321884835,0.0072767667787692935,0.00719458431906589,0.00711354293697659,0.0070336225743625296,0.0069548036184595855,0.006877066889701346,0.006800393629940972,0.006724765491054134,0.0066501645239085555,0.006576573167690659,0.006503974239569804,0.006432350924692648,0.006361686766492184,0.006291965657303257,0.006223171829268936,0.006155289845530656,0.006088304591692021,0.006022201267543022,0.005956965379040024,0.005892582730527161,0.005829039417196738,0.005766321817773695,0.0057044165874224305,0.0056433106508627885,0.005582991195692802,0.005523445665906501,0.005464661755604123,0.0054066274028855945,0.005349330783921387,0.005292760307197201,0.005236904607921078,0.005181752542594554,0.0051272931837368155,0.005073515814759304,0.005020409924985985,0.00496796520481231,0.004916171541001269,0.004865019012110345,0.004814497884044399,0.004764598605733128,0.004715311804926362,0.004666628284103926,0.004618539016498502,0.004571035142225506,0.004524107964517059,0.004477748946058574,0.004431949705421726,0.004386702013593553,0.004341997790597657,0.00429782910220405,0.004254188156725755,0.004211067301899801,0.0041684590218482795,0.004126355934119431,0.0040847507868049145,0.00404363645573031,0.004003005941719674,0.003962852367926986,0.003923168977238019,0.0038839491297363886,0.003845186300233753,0.003806874075862737,0.0037690061537280196,0.0037315763386183017,0.0036945785407727803,0.0036580067737043975,0.0036218551520752016,0.003586117889624707,0.0035507892971479472,0.0035158637805230717,0.003481335838786646,0.0034472000622544426,0.0034134511306890374,0.003380083811508688,0.0033470929580412313,0.0033144735078176903,0.0032822204809067135,0.0032503289782884973,0.003218794180266139,0.0031876113449142256,0.0031567758065638514,0.003126282974322041,0.0030961283306257434,0.0030663074298291773,0.0030368158968227636,0.003007649425684105,0.0029788037783597715,0.002950274783376142,0.002922058334580082,0.0028941503899072053,0.002866546970178311,0.002839244157922098,0.0028122380962242103,0.002785524987601882,0.002759101092903348,0.002732962730231059,0.002707106273888769,0.0026815281533516073,0.0026562248522581594,0.002631192907425093,0.002606428907881974,0.0025819294939276923,0.002557691356206664,0.002533711234804935,0.0025099859183653522,0.0024865122432214167,0.002463287092549755,0.0024403073955399962,0.0024175701265822303,0.00239507230447155,0.0023728109916291698,0.002350783293339191,0.002328986357001937,0.002307417371401906,0.002286073565991302,0.0022649522101882997,0.0022440506126887106,0.0022233661207928307,0.0022028961197451727,0.0021826380320877246,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.22069608007804628,0.2206174418099462,0.21941322986438946,0.2168221211890148,0.21298868956319245,0.2081101360354761,0.20241039006058217,0.19611578794293902,0.1894363650295519,0.18255425633415767,0.1756186572088354,0.16874571425916743,0.1620214907177574,0.15550643326658722,0.1492402321508513,0.14324641029082144,0.13753631504793393,0.13211240737959465,0.12697086922609113,0.12210361053785551,0.11749977782200469,0.1131468647401406,0.10903151377866141,0.10514008308416212,0.10145903773447972,0.09797521158830869,0.09467597494250136,0.09154933450260008,0.08858398538099396,0.08576932964657753,0.0830954720360175,0.08055320051426547,0.07813395720751097,0.07582980363850898,0.07363338302791643,0.0715378815764121,0.06953699002720426,0.06762486636596551,0.06579610019872636,0.06404567912385155,0.062368957257214905,0.06076162596098468,0.059219686753189456,0.05773942632709752,0.05631739357940972,0.05495037852886993,0.053635392998658035,0.052369652933537736,0.05115056222471169,0.049975697919916656,0.04884279670247704,0.04774974253034824,0.046694555333683,0.045675380677230835,0.044690480301429976,0.04373822346324873,0.04281707900479132,0.04192560808399666,0.041062457507766874,0.04022635361331927,0.039416096648598624,0.03863055560712417,0.0378686634769049,0.037129412866766874,0.03641185197692305,0.035715080883726436,0.03503824811132402,0.034380547465543296,0.033741215107571214,0.03311952684710368,0.03251479563650148,0.031926369249194585,0.03135362812706866,0.030795983383007607,0.030252874945952378,0.029723769836998155,0.029208160566068796,0.028705563639599755,0.028215518170547748,0.02773758458274761,0.027271343402352828,0.026816394129714864,0.026372354185594513,0.025938857926155075,0.025515555721606825,0.025102113093821564,0.024698209908610776,0.024303539618719835,0.023917808553885846,0.023540735254637256,0.02317204984673895,0.022811493453451452,0.022458817642993546,0.022113783908779782,0.02177616318022482,0.021445735362041005,0.021122288900131875,0.02080562037231894,0.02049553410227714,0.020191841795155357,0.019894362193500402,0.019602920752172497,0.019317349331051864,0.01903748590442119,0.018763174285972004,0.018494263868483775,0.018230609377264218,0.017972070636516933,0.017718512347859938,0.01746980388025673,0.017225819070696504,0.016986436034979416,0.016751536988020798,0.016521008073120787,0.01629473919968762,0.016072623888922433,0.015854559127027355,0.01564044522550449,0.015430185688153783,0.01522368708440157,0.015020858928603626,0.014821613565008487,0.014625866058065977,0.014433534087797762,0.014244537849958402,0.01405879996073711,0.013876245365753374,0.013696801253133283,0.013520396970447266,0.013346963945313426,0.013176435609481896,0.013008747326216303,0.01284383632081633,0.012681641614116973,0.012522103958819383,0.012365165778515859,0.012210771109270439,0.012058865543639833,0.011909396177010097,0.011762311556140801,0.011617561629810586,0.01147509770146716,0.01133487238378141,0.011196839555024863,0.01106095431717979,0.010927172955704202,0.01079545290087773,0.010665752690651079,0.010538031934938123,0.010412251281280776,0.010288372381826854,0.01016635786156459,0.010046171287753198,0.009927777140503972,0.009811140784456693,0.009696228441506007,0.009583007164532016,0.009471444812093938,0.009361510024041416,0.00925317219801073,0.009146401466764324,0.009041168676339917,0.008937445364977054,0.008835203742784781,0.00873441667212572,0.00863505764868311,0.008537100783184913,0.00844052078375776,0.008345292938887418,0.008251393100957311,0.008158797670347762,0.00806748358006978,0.007977428280913804,0.007888609727094622,0.007801006362369557,0.007714597106616468,0.0076293613428505755,0.007545278904664506,0.007462330064075344,0.007380495519764582,0.007299756385692845,0.007220094180079974,0.007141490814733592,0.007063928584714284,0.006987390158326292,0.006911858567418483,0.006837317197988695,0.006763749781077241,0.006691140383940335,0.006619473401494361,0.006548733548018359,0.006478905849109619,0.00640997563388049,0.006341928527389087,0.006274750443295435,0.006208427576736317,0.0061429463974084775,0.006078293642856773,0.006014456311957481,0.005951421658591066,0.005889177185498848,0.0058277106383147585,0.005767009999769885,0.00570706348406127,0.005647859531380613,0.0055893868025981685,0.005531634174094488,0.005474590732738327,0.005418245771003533,0.005362588782221381,0.005307609455963744,0.005253297673553694,0.0051996435036972865,0.005146637198235639,0.005094269188011281,0.005042530078845871,0.004991410647626589,0.004940901838495554,0.0048909947591420115,0.00484168067719193,0.004792951016692847,0.00474479735469082,0.004697211417897411,0.004650185079442023,0.004603710355709573,0.004557779403259101,0.004512384515821373,0.004467518121373875,0.0044231727792889124,0.004379341177555282,0.004336016130069305,0.004293190573993985,0.004250857567184757,0.004209010285678151,0.004167642021243977,0.004126746178997316,0.004086316275069364,0.004046345934335245,0.00400682888819776,0.00396775897242387,0.003929130125034645,0.0038909363842454716,0.003853171886455686,0.003815830864286812,0.0037789076446663964,0.0037423966469583526,0.0037062923811369093,0.0036705894460036183,0.0036352825274460145,0.0036003663967374305,0.003565835908875294,0.003531686000958931,0.0034979116906042455,0.0034645080743948386,0.0034314703263690293,0.0033987936965404475,0.003366473509453124,0.00333450516276881,0.0033028841258861603,0.0032716059385913265,0.0032406662097378513,0.0032100606159568704,0.0031797849003955057,0.0031498348714832235,0.0031202064017253226,0.003090895426523293,0.0030618979430201893,0.0030332100089719145,0.003004827741642705,0.002976747316724406,0.0029489649672795083,0.00292147698270607,0.0028942797077255696,0.0028673695413919628,0.002840742936121874,0.002814396396745227,0.0027883264795762848,0.0027625297915034883,0.002737002989099095,0.0027117427777470183,0.002686745910788846,0.002662009188687881,0.0026375294582097774,0.00261330361162072,0.0025893285859017335,0.0025656013619790416,0.002542118963970442,0.0025188784584463334,0.002495876953706351,0.002473111599070268,0.002450579584183226,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22439478880160768,0.22437322911822077,0.2234050168444295,0.22105166366605047,0.2174443689355656,0.21276957104593708,0.20724402006027662,0.20109053457826906,0.19451872704473122,0.18771253736181145,0.1808243139329071,0.17397397887566862,0.167251477569221,0.16072092579064626,0.15442530240793448,0.14839097506615231,0.14263169206136514,0.13715190583378048,0.13194942978343524,0.12701749838851153,0.12234632632753674,0.11792426425529905,0.1137386392961606,0.10977635442733165,0.10602430659858773,0.10246967049514005,0.09910008395732542,0.09590376228777975,0.09286956179319186,0.08998700761881304,0.0872462969264206,0.08463828546256902,0.08215446332999232,0.07978692412435111,0.07752833038601743,0.07537187742971914,0.07331125697008306,0.07134062149449613,0.06945454999909836,0.06764801546453167,0.06591635427869001,0.06425523769580117,0.0626606453401929,0.0611288407089959,0.05965634859305244,0.058239934314287006,0.05687658466615123,0.05556349043911397,0.05429803041304391,0.05307775670122451,0.05190038133580846,0.050763763990512224,0.04966590074318234,0.048604913787854975,0.04757904201284547,0.046586632368289936,0.045626131952919764,0.04469608075600856,0.04379510499608874,0.04292191100331658,0.04207527959715421,0.041254060915562545,0.04045716965586148,0.03968358069115557,0.03893232502957232,0.03820248608655874,0.037493196243314826,0.03680363366685893,0.0361330193695246,0.03548061448771057,0.03484571776156567,0.03422766319892004,0.03362581790834479,0.03303958008752156,0.03246837715437249,0.031911664009514513,0.03136892141957908,0.03083965451190814,0.030323391371907874,0.029819681735125093,0.029328095766788197,0.028848222922145426,0.028379670881541117,0.027922064554631306,0.02747504514863171,0.027038269295900915,0.026611408236555223,0.026194147052134,0.025786183946696423,0.02538722957197664,0.024997006393514976,0.024615248094923124,0.02424169901764094,0.02387611363378336,0.02351825604982218,0.023167899539040734,0.022824826100846168,0.022488826045174104,0.02215969760033197,0.021837246542780516,0.02152128584743025,0.021211635357150434,0.020908121470281284,0.02061057684500883,0.02031884011957166,0.02003275564731189,0.01975217324566733,0.019476947958263966,0.019206939829309745,0.018942013689571505,0.018682038953238677,0.01842688942503941,0.018176443117011106,0.017930582074371933,0.017689192209961603,0.017452163146777888,0.017219388068142313,0.016990763575071052,0.016766189550454322,0.016545569029659306,0.01632880807721801,0.016115815669260028,0.01590650358138459,0.01570078628167997,0.015498580828619888,0.015299806773571893,0.015104386067687403,0.014912242972937688,0.01472330397708456,0.014537497712387147,0.01435475487784695,0.014175008164823024,0.013998192185840603,0.013824243406436757,0.013653100079895784,0.013484702184724745,0.013318991364745576,0.013155910871669788,0.012995405510039392,0.012837421584419889,0.012681906848741367,0.012528810457679883,0.01237808291999227,0.012229676053707058,0.012083542943088025,0.011939637897290951,0.011797916410630355,0.011658335124391305,0.011520851790110838,0.011385425234265402,0.011252015324301439,0.011120582935951709,0.010991089921775506,0.010863499080876768,0.010737774129743494,0.010613879674161983,0.010491781182161701,0.010371444957941548,0.010252838116743209,0.010135928560626206,0.010020684955109107,0.009907076706642249,0.009795073940872904,0.009684647481676809,0.009575768830919826,0.009468410148922256,0.009362544235596662,0.009258144512234018,0.009155185003907985,0.009053640322478523,0.008953485650166999,0.008854696723681724,0.008757249818873896,0.008661121735899249,0.008566289784871369,0.00847273177198378,0.008380425986084286,0.008289351185685658,0.008199486586392394,0.008110811848733085,0.00802330706637937,0.00793695275473877,0.007851729839906925,0.007767619647967683,0.007684603894624643,0.007602664675156841,0.007521784454683475,0.007441946058727475,0.00736313266406868,0.007285327789872643,0.007208515289090043,0.007132679340113598,0.0070578044386849755,0.0069838753900424815,0.0069108773013023764,0.006838795574062781,0.006767615897226466,0.006697324240032208,0.0066279068452883986,0.006559350222803212,0.006491641143001762,0.006424766630727751,0.006358713959220744,0.006293470644264047,0.006229024438498588,0.006165363325894466,0.006102475516378872,0.006040349440612312,0.005978973744909593,0.005918337286300509,0.005858429127726736,0.005799238533368055,0.005740754964097188,0.005682968073056651,0.005625867701354555,0.005569443873876576,0.005513686795207883,0.005458586845664911,0.005404134577431214,0.005350320710795031,0.0052971361304852615,0.0052445718821036505,0.005192619168648104,0.0051412693471272666,0.005090513925261482,0.005040344558268202,0.00499075304573006,0.004941731328541105,0.004893271485931541,0.004845365732566715,0.004798006415718768,0.004751186012509562,0.004704897127220757,0.004659132488671764,0.004613884947661674,0.0045691474744740295,0.00452491315644249,0.004481175195576295,0.004437926906242058,0.004395161712902727,0.004352873147910253,0.004311054849351096,0.004269700558943684,0.004228804119984599,0.00418835947534448,0.004148360665510571,0.004108801826675249,0.004069677188869143,0.004030981074138188,0.003992707894761869,0.003954852151513695,0.003917408431961072,0.0038803714088041803,0.0038437358382532563,0.003807496558441671,0.003771648487876037,0.003736186623920706,0.00370110604131633,0.003666401890732076,0.0036320693973491266,0.003598103859476622,0.0035645006471977697,0.0035312552010458276,0.0034983630307091644,0.0034658197137650256,0.0034336208944400395,0.0034017622823985507,0.003370239651556695,0.003339048838922069,0.0033081857434587455,0.0032776463249757156,0.0032474266030399143,0.0032175226559118847,0.0031879306195039987,0.003158646686361082,0.003129667104661584,0.0031009881772405897,0.003072606260632709,0.0030445177641350287,0.003016719148889376,0.002989206926983941,0.0029619776605725864,0.00293502796101303,0.002908354488022239,0.0028819539488490094,0.0028558230974637623,0.0028299587337639416,0.0028043577027962005,0.0027790168939938343,0.002753933240429563,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.22815548524247203,0.2276038479041856,0.2256720618201127,0.2224581289944965,0.21813071100498407,0.21289554525917895,0.20697115244279693,0.20056834437290136,0.19387602979917473,0.18705360274351918,0.18022875804386113,0.1734990251158502,0.16693538946296596,0.16058675142543025,0.15448440766722937,0.1486461064772368,0.14307948523005962,0.13778485630676182,0.1327573918614761,0.12798879384005996,0.12346854372411047,0.11918482019094188,0.1151251605491568,0.11127692804625997,0.10762763423927972,0.1041651545138613,0.10087786575037666,0.09775472793899402,0.09478532597013202,0.09195988357551173,0.08926925819010674,0.08670492311008246,0.08425894154439031,0.08192393584533708,0.0796930542399942,0.07755993667992957,0.07551868091426622,0.07356380952063206,0.07169023836193296,0.06989324674707235,0.06816844943967926,0.06651177056570826,0.06491941940704639,0.06338786802620772,0.06191383064017531,0.060494244645663525,0.05912625318990597,0.05780718917821928,0.05653456061061459,0.05530603714290554,0.0541194377726939,0.05297271955636832,0.05186396726940031,0.05079138392870007,0.049753282101971455,0.04874807593516598,0.04777427383490233,0.04683047174818946,0.04591534698680992,0.045027652548514145,0.04416621189140452,0.04332991412190612,0.042517709560340344,0.04172860565136908,0.04096166318966163,0.040215992833777484,0.03949075188377976,0.03878514130031456,0.0380984029449361,0.03742981702325166,0.03677869971419161,0.03614440097014445,0.0355263024740975,0.03492381574115426,0.03433638035288121,0.03376346231400707,0.03320455252185265,0.03265916533973448,0.03212683726633589,0.03160712569369227,0.031099607747110704,0.03060387920085316,0.030119553463957296,0.029646260631022176,0.029183646593220328,0.028731372205156324,0.028289112503589793,0.027856555974315005,0.027433403863808478,0.02701936953252278,0.02661417784692444,0.02621756460763973,0.025829276011233967,0.025449068143362636,0.025076706501194295,0.02471196554317135,0.024354628264296515,0.02400448579530239,0.023661337024146228,0.023324988238404922,0.022995252787247743,0.022671950761739782,0.022354908692349854,0.022043959262584036,0.021738941037758402,0.02143969820799374,0.021146080344559885,0.02085794216878667,0.020575143332782125,0.02029754821126671,0.02002502570387174,0.019757449047299567,0.01949469563676632,0.019236646856212177,0.018983187916771074,0.01873420770303919,0.018489598626710572,0.01824925648716157,0.018013080338616004,0.017780972363522055,0.017552837751808725,0.017328584585704767,0.017108123729827222,0.01689136872625144,0.016678235694313332,0.016468643234887507,0.016262512338913168,0.016059766299951973,0.015860330630563475,0.015664132982316396,0.015471103069244162,0.015281172594575426,0.015094275180579937,0.014910346301368314,0.014729323218511668,0.014551144919336439,0.014375752057768159,0.014203086897601462,0.01403309325808331,0.013865716461693123,0.013700903284026263,0.013538601905675277,0.013378761866019205,0.013221334018834841,0.013066270489640345,0.012913524634700994,0.012763051001615781,0.012614805291416217,0.012468744322109414,0.012324825993603693,0.012183009253949875,0.012043254066848905,0.011905521380364482,0.011769773096790984,0.01163597204362863,0.011504081945613346,0.011374067397763797,0.011245893839397359,0.011119527529076143,0.010994935520446197,0.010872085638927659,0.010750946459227638,0.010631487283637341,0.01051367812108318,0.010397489666901114,0.010282893283306727,0.0101698609805288,0.010058365398586115,0.009948379789677378,0.009839878001161909,0.009732834459109385,0.00962722415239202,0.00952302261730436,0.009420205922685783,0.009318750655528148,0.009218633907051455,0.009119833259225723,0.009022326771727837,0.00892609296931297,0.008831110829586812,0.008737359771163359,0.00864481964219548,0.008553470709260847,0.008463293646595484,0.008374269525658437,0.00828637980501695,0.008199606320541977,0.00811393127589911,0.008029337233329607,0.00794580710470734,0.007863324142863717,0.007781871933170597,0.007701434385373602,0.0076219957256639,0.007543540488984628,0.007466053511560685,0.007389519923645327,0.007313925142477341,0.00723925486543851,0.007165495063408853,0.0070926319743098865,0.007020652096830808,0.006949542184332396,0.006879289238919927,0.006809880505683493,0.006741303467097292,0.006673545837573976,0.006606595558168576,0.006540440791428437,0.006475069916381599,0.006410471523663009,0.006346634410771397,0.0062835475774536,0.006221200221213283,0.0061595817329374285,0.0060986816926405585,0.00603848986532036,0.0059789961969222895,0.0059201908104095785,0.005862064001936347,0.005804606237118202,0.005747808147400725,0.005691660526520372,0.0056361543270559075,0.005581280657068394,0.0055270307768247665,0.005473396095605661,0.005420368168592681,0.005367938693833529,0.0053160995092834526,0.005264842589918649,0.005214160044922378,0.0051640441149395635,0.0051144871693987876,0.005065481703899406,0.005017020337662855,0.004969095811044155,0.004921700983104768,0.004874828829242938,0.00482847243888065,0.004782625013206236,0.004737279862969179,0.004692430406328215,0.0046480701667493485,0.004604192770953197,0.004560791946910061,0.004517861521882077,0.004475395420509539,0.004433387662942385,0.0043918323630139965,0.0043507237264567575,0.004310056049158701,0.004269823715458623,0.004230021196480801,0.004190643048506575,0.0041516839113824675,0.004113138506964353,0.004075001637595125,0.004037268184617175,0.003999933106917191,0.0039629914395029765,0.003926438292111405,0.0038902688478472157,0.0038544783618503966,0.0038190621599934246,0.003784015637606134,0.003749334258227951,0.0037150135523873916,0.003681049116406579,0.003647436611232189,0.00361417176129066,0.0035812503533675316,0.0035486682355108756,0.0035164213159567534,0.0034845055620779967,0.003452916999354459,0.003421651710364661,0.003390705833798192,0.0033600755634888855,0.0033297571474669393,0.0032997468870312923,0.0032700411358404626,0.0032406362990218263,0.003211528832299346,0.0031827152411380557,0.0031541920799065476,0.0031259559510558184,0.003098003504314593 +0.14934881127226363,0.14934881127226363,0.1480313975135928,0.14027772944509884,0.1281068454982966,0.11456304455788371,0.10160569397147706,0.09007530909835686,0.0801489444778349,0.07171199979619106,0.06455736822865146,0.05847176756717311,0.05326646369078908,0.048784260757573764,0.044897584416650003,0.04150392095759803,0.03852103850417136,0.035882803798914564,0.03353576941307877,0.031436476321222026,0.02954935162897335,0.02784507822968449,0.02629933035098192,0.024891789975767242,0.023605378210111688,0.02242565128261187,0.021340323036536657,0.020338885053295643,0.019412302534747242,0.018552769312937173,0.017753509284433325,0.017008614516712987,0.016312912497382787,0.015661856680065117,0.015051435761033969,0.014478098099967097,0.01393868845126622,0.013430394754844813,0.012950703188212924,0.012497360035958346,0.01206833921116896,0.011661814483499414,0.011276135643469442,0.010909807972198923,0.010561474497862204,0.010229900610419217,0.009913960679336756,0.009612626378492872,0.009324956471021991,0.009050087846732701,0.008787227637504013,0.008535646263198395,0.008294671283115588,0.00806368194674112,0.007842104353172296,0.007629407141738676,0.007425097647334142,0.007228718463290357,0.007039844362486481,0.006858079534053669,0.0066830550987313385,0.006514426870757192,0.0063518733383295285,0.006195093838233336,0.006043806903268945,0.005897748763771428,0.005756671986767618,0.0056203442382970845,0.005488547156128424,0.005361075321591392,0.0052377353205322365,0.005118344884543144,0.005002732104592273,0.004890734710055399,0.004782199406910528,0.004676981269520241,0.004574943181027302,0.00447595531789897,0.0043798946746223194,0.004286644624958137,0.004196094516525072,0.0041081392958010965,0.004022679160924766,0.003939619239924119,0.0038588692922335716,0.003780343431562212,0.0037039598683537966,0.003629640670249899,0.003557311539105327,0.003486901603241041,0.0034183432237373675,0.003351571813672727,0.0032865256693158018,0.003223145812358454,0.0031613758423591834,0.0031011617986358457,0.0030424520309117863,0.002985197078074001,0.0029293495544605434,0.00287486404313615,0.0028216969956620847,0.002769806637905606,0.002719152881467513,0.0026696972403443425,0.0026214027524666277,0.00257423390578512,0.002528156568600827,0.00248313792385866,0.002439146407142876,0.0023961516481362005,0.0023541244153177493,0.0023130365636935954,0.002272860985368828,0.0022335715627811456,0.0021951431244329033,0.0021575514029659715,0.002120772995436889,0.0020847853256595788,0.0020495666084899334,0.002015095815938684,0.0019813526450030788,0.0019483174871173332,0.0019159713991276307,0.0018842960757043741,0.0018532738231082455,0.0018228875342350724,0.0017931206648662654,0.0017639572110580335,0.0017353816876066526,0.0017073791075295668,0.0016799349625084593,0.0016530352042411207,0.001626666226653768,0.0016008148489278064,0.0015754682992984283,0.001550614199583414,0.0015262405504055461,0.0015023357170716423,0.001478888416074925,0.001455887702189153,0.001433322956123701,0.0014111838727125976,0.0013894604496099338,0.0013681429764669042,0.0013472220245669922,0.001326688436896092,0.0013065333186275873,0.0012867480280015118,0.0012673241675792784,0.0012482535758559666,0.0012295283192136454,0.0012111406841988728,0.0011930831701103487,0.0011753484818815556,0.0011579295232450383,0.0011408193901657605,0.001124011364530504,0.001107498908082763,0.0010912756565913853,0.001075335414242777,0.001059672148247007,0.0010442799836476847,0.001029153198327632,0.0010142862182011313,0.0009996736125849747,0.0009853100897405183,0.0009711904925797326,0.0009573097945276099,0.0009436630955352127,0.0009302456182363797,0.0009170527042423437,0.0009040798105686841,0.0008913225061886666,0.0008787764687084535,0.0008664374811587316,0.000854301428898218,0.000842364296624492,0.0008306221654880425,0.0008190712103049185,0.0008077076968647547,0.0007965279793299017,0.0007855284977222669,0.0007747057754945985,0.0007640564171824988,0.0007535771061346174,0.0007432646023176384,0.0007331157401933313,0.0007231274266649167,0.0007132966390902749,0.0007036204233590825,0.0006940958920320508,0.0006847202225395176,0.000675490655437389,0.0006664044927183961,0.0006574590961762986,0.000648651885821605,0.0006399803383465591,0.0006314419856377658,0.0006230344133348407,0.0006147552594331075,0.0006066022129292528,0.0005985730125080513,0.0005906654452688807,0.0005828773454905796,0.0005752065934334469,0.0005676511141767709,0.0005602088764911045,0.0005528778917437574,0.0005456562128364995,0.0005385419331744618,0.0005315331856648994,0.0005246281417451913,0.0005178250104388247,0.0005111220374384975,0.0005045175042155766,0.0004980097271547151,0.0004915970567132063,0.00048527787660398634,0.00047905060300159404,0.0004729136837703564,0.0004668655977141443,0.00046090485384676916,0.00045502999068270245,0.0004492395755472049,0.0004435322039053445,0.00043790649870938727,0.00043236110976373416,0.0004268947131071841,0.00042150601041174486,0.0004161937283975625,0.00041095661826345635,0.00040579345513265666,0.00040070303751306197,0.000395684186771874,0.00039073574662394016,0.0003858565826334749,0.0003810455817288247,0.0003763016517296676,0.0003716237208865682,0.0003670107374322999,0.0003624616691446632,0.0003579755029205218,0.00035355124436054077,0.00034918791736455594,0.0003448845637370885,0.00034064024280277687,0.000336454031031421,0.0003323250216724288,0.0003282523243982174,0.0003242350649565586,0.0003202723848314222,0.00031636344091215114,0.00031250740517077693,0.00030870346434708787,0.0003049508196414487,0.0003012486864149934,0.00029759629389705086,0.00029399288489958235,0.00029043771553849943,0.0002869300549615189,0.0002834691850825777,0.00028005440032248383,0.0002766850073556773,0.0002733603248629841,0.0002700796832900652,0.00026684242461158823,0.00026364790210083445,0.0002604954801046391,0.00025738453382356726,0.00025431444909705984,0.00025128462219358566,0.0002482944596055427,0.0002453433778488404,0.0002424308032670053,0.00023955617183976928,0.0002367189289958807,0.0002339185294301968,0.00023115443692483276,0.0002284261241742929,0.00022573307261453132,0.00022307477225572345,0.00022045072151879598,0.000217860427075529,0.00021530340369216124,0.00021277917407641416,0.0002102872687278833,0.00020782722579160219,0.00020539859091485993,0.00020300091710705995,0.00020063376460260118,0.00019829670072673254,0.00019598929976420604,0.00019371114283079784,0.0001914618177475223,0.00018924091891751171,0.0001870480472055275,0.00018488280981994302,0.00018274482019726537,0.00018063369788904067,0.00017854906845112746,0.17646298420013287,0.17646298420013287,0.17569771637900963,0.1679391684708035,0.15439917962464994,0.13869980567278836,0.12336563859447032,0.10956816596544444,0.0976179315337615,0.08742639386757019,0.0787670525786041,0.07139300692279685,0.06508095964643368,0.05964295615198386,0.054925594182793504,0.05080521088525102,0.047182425354457914,0.04397722604337851,0.041124908999976305,0.03857284395335769,0.03627794309792453,0.03420469297026712,0.03232362555682213,0.030610127830239673,0.02904351088392333,0.02760627819381495,0.026283547022395406,0.025062588092516762,0.023932457066860043,0.02288369769208454,0.021908101215493223,0.020998510252808314,0.02014865797885193,0.019353035552813612,0.018606782242004693,0.01790559389556219,0.017245646332903257,0.016623530918137862,0.016036200140952816,0.015480921454099896,0.014955237955257456,0.014456934767961165,0.01398401018830751,0.013534650833365518,0.013107210163065097,0.012700189856722046,0.012312223613997605,0.011942063022147014,0.011588565190237515,0.011250681899310706,0.010927450057153626,0.010617983279197057,0.010321464444284561,0.010037139096731013,0.009764309585008598,0.009502329843296626,0.009250600735445478,0.009008565892175717,0.008775707981851908,0.00855154536323447,0.008335629075508253,0.0081275401267254,0.00792688704682863,0.007733303675720778,0.007546447160532604,0.007365996139446721,0.007191649092168539,0.007023122839528931,0.00686015117676743,0.006702483626845388,0.006549884301695988,0.006402130860701115,0.006259013556865982,0.006120334362219605,0.005985906164890098,0.005855552031105723,0.0057291045260998924,0.0056064050885152785,0.0054873034534667015,0.005371657119913636,0.005259330858432986,0.005150196255864774,0.00504413129366119,0.004941019957065721,0.004840751872531214,0.004743221971030861,0.00464833017513079,0.004555981107899448,0.0044660838218964,0.004378551546647147,0.004293301453153637,0.004210254434113406,0.0041293348986453805,0.004050470580415975,0.003973592358159156,0.0038986340876676685,0.0038255324444118988,0.0037542267760086127,0.003684658963832959,0.0036167732931177794,0.003550516330940978,0.0034858368115496807,0.003422685528509775,0.003361015233215847,0.0033007805393263636,0.0032419378327260264,0.003184445186646296,0.0031282622816040506,0.003073350329840523,0.0030196720039716665,0.0029671913695768328,0.0029158738214756087,0.002865686023460662,0.0028165958512680663,0.002768572338587196,0.0027215856259210167,0.002675606912123823,0.002630608408455068,0.0025865632949966773,0.0025434456792958406,0.0025012305571002215,0.0024598937750640853,0.0024194119953107854,0.0023797626617455634,0.0023409239680171703,0.002302874827037209,0.002265594841968104,0.0022290642785984804,0.002193264039029803,0.0021581756366008246,0.002123781171984557,0.002090063310392935,0.0020570052598304083,0.002024590750340549,0.001992804014193731,0.0019616297669652924,0.0019310531894596277,0.001901059910435201,0.00187163599008994,0.0018427679042686267,0.0018144425293546826,0.0017866471278136069,0.0017593693343543712,0.0017325971426786855,0.0017063188927895574,0.0016805232588308096,0.001655199237433284,0.0016303361365422593,0.0016059235647035378,0.001581951420786275,0.0015584098841223632,0.0015352894050419015,0.0015125806957875703,0.0014902747217895012,0.0014683626932843286,0.0014468360572631135,0.0014256864897322344,0.0014049058882744134,0.0013844863648955223,0.0013644202391447653,0.0013447000314964228,0.0013253184569808436,0.0013062684190549162,0.0012875430037007814,0.0012691354737433018,0.0012510392633767878,0.001233247972892375,0.001215755363596802,0.0011985553529155367,0.0011816420096717817,0.0011650095495343003,0.001148652330627313,0.0011325648492950995,0.0011167417360159026,0.0011011777514583993,0.0010858677826752151,0.0010708068394279238,0.0010559900506385098,0.0010414126609616554,0.001027070027473884,0.0010129576164743942,0.0009990710003933867,0.0009854058548039123,0.0009719579555326786,0.0009587231758667454,0.0009456974838519111,0.0009328769396794936,0.0009202576931581189,0.0009078359812675083,0.0008956081257906929,0.000883570531022408,0.0008717196815503537,0.0008600521401067827,0.0008485645454880252,0.0008372536105389793,0.00082611612020084,0.0008151489296193283,0.0008043489623113922,0.0007937132083884511,0.0007832387228337166,0.0007729226238322659,0.0007627620911515983,0.0007527543645710382,0.0007428967423582631,0.0007331865797914744,0.0007236212877252169,0.0007141983311989049,0.0007049152280861874,0.0006957695477838928,0.0006867589099393472,0.0006778809832143807,0.0006691334840853239,0.0006605141756773733,0.0006520208666323538,0.0006436514100088618,0.000635403702213391,0.0006272756819618682,0.0006192653292702884,0.0006113706644736199,0.0006035897472720374,0.0005959206758037158,0.0005883615857430348,0.0005809106494237878,0.0005735660749863076,0.0005663261055478297,0.0005591890183954968,0.0005521531242009583,0.0005452167662563279,0.0005383783197304996,0.0005316361909453492,0.0005249888166711403,0.0005184346634406739,0.0005119722268813296,0.0005056000310648219,0.000499316627873856,0.0004931205963852781,0.0004870105422692953,0.0004809850972040392,0.0004750429183053555,0.00046918268757110954,0.000463403111339667,0.00045770291976221614,0.00045208086628828047,0.00044653572716436157,0.0004410663009450893,0.0004356714080166106,0.0004303498901318427,0.0004251006099573272,0.00041992245063114463,0.0004148143153318536,0.0004097751268579437,0.00040480382721755056,0.0003998993772282478,0.00039506075612638826,0.0003902869611860381,0.00038557700734700534,0.00038092992685181205,0.00037634476889131956,0.00037182059925886353,0.0003673565000124578,0.0003629515691451145,0.000358604920262862,0.0003543156822703208,0.0003500829990636843,0.00034590602923074065,0.00034178394575797255,0.0003377159357443726,0.00033370120012185945,0.00032973895338216623,0.0003258284233098744,0.00032196885072164076,0.0003181594892113069,0.0003143996049007838,0.00031068847619655413,0.00030702539355170365,0.0003034096592331864,0.00029984058709439003,0.00029631750235271746,0.0002928397413721074,0.0002894066514504061,0.0002860175906113427,0.0002826719274011626,0.00027936904068966986,0.0002761083194756234,0.00027288916269636263,0.0002697109790415959,0.00026657318677113717,0.00026347521353665287,0.000260416496207196,0.0002573964806984752,0.0002544146218058085,0.0002514703830405498,0.0002485632364700707,0.00024569266256107555,0.0002428581500262294,0.00024005919567403818,0.00023729530426180553,0.0002345659883517306,0.0002318707681699623,0.00022920917146859423,0.20870151076402804,0.20870151076402804,0.2084423837072798,0.20114448569136736,0.18633316739278152,0.1682460553300842,0.15012432712841983,0.13359834428654332,0.11918117464955598,0.10683730772664649,0.09632641342867154,0.08736466635457862,0.07968807418332934,0.07307151287643149,0.06732998882263572,0.06231381170333798,0.05790242975064864,0.053998672470398384,0.05052391026303065,0.04741416628541317,0.044617057686016336,0.04208941010185474,0.039795401163490736,0.03770511338221586,0.035793401905518836,0.034039004198217516,0.03242383597094979,0.030932431031697065,0.0295514928918294,0.0282695336208077,0.02707658121063558,0.025963941053636582,0.024924000415356123,0.023950067268786443,0.023036236747196206,0.022177279919891407,0.021368550708182766,0.02060590761958406,0.019885647647516845,0.01920445020715288,0.018559329389251176,0.017947593138890605,0.017366808224110974,0.016814770065467156,0.016289476662801488,0.015789105988636063,0.015311996325408004,0.014856629111405477,0.014421613931791017,0.014005675349811605,0.013607641321536895,0.01322643297739457,0.012861055586851963,0.012510590550142264,0.012174188283913805,0.011851061886991938,0.01154048148861015,0.011241769195153316,0.01095429456301247,0.01067747053493938,0.010410749785660246,0.010153621429593637,0.00990560804962191,0.009666263011082647,0.00943516802962,0.009211930965426197,0.008996183819718829,0.00878758091220475,0.008585797220785158,0.008390526866941068,0.00820148173212765,0.008018390192184437,0.007840995958199645,0.007669057013550861,0.0075023446379601485,0.007340642510374972,0.007183745883368688,0.007031460822502164,0.006883603504773598,0.0067399995708786456,0.006600483526536971,0.006464898188604759,0.006333094172126161,0.006204929414836982,0.006080268735975151,0.005958983426550878,0.0058409508684889215,0.005726054180306921,0.005614181887195797,0.005505227613568262,0.005399089796314058,0.005295671417151082,0.005194879752612387,0.005096626140325891,0.005000825760364445,0.0049073974305455905,0.004816263414656395,0.0047273492426586,0.004640583542015837,0.0045558978793457825,0.004473226611669379,0.004392506746587207,0.0043136778107615605,0.004236681726139237,0.004161462693386049,0.0040879670820494155,0.004016143327000304,0.0039459418307413105,0.003877314871194358,0.003810216514616909,0.0037446025333145202,0.003680430327845618,0.0036176588534360798,0.003556248550337986,0.0034961612778916223,0.0034373602520608366,0.003379809986231131,0.0033234762350743668,0.0032683259412942594,0.0032143271850848033,0.0031614491361396818,0.003109662008064783,0.0030589370150543764,0.003009246330701887,0.002960563048821687,0.0029128611461709617,0.002866115446963303,0.0028203015890749224,0.002775395991850943,0.002731375825422145,0.0026882189814528158,0.0026459040452405454,0.0026044102690965564,0.002563717546938282,0.0025238063900310534,0.002484657903817076,0.0024462537657775926,0.0024085762042732038,0.0023716079783130317,0.002335332358205904,0.0022997331070477036,0.002264794463004966,0.002230501122353696,0.0021968382232365764,0.0021637913301038904,0.0021313464188034317,0.002099489862289923,0.0020682084169227843,0.0020374892093247723,0.002007319723774767,0.0019776877901100335,0.0019485815721129302,0.0019199895563612548,0.0018919005415195468,0.0018643036280516232,0.0018371882083355233,0.0018105439571614662,0.0017843608225972562,0.0017586290172034531,0.0017333390095832556,0.0017084815162526467,0.0016840474938157463,0.0016600281314334447,0.0016364148435715977,0.0016131992630171589,0.001590373234150706,0.0015679288064647497,0.0015458582283166236,0.0015241539409072324,0.0015028085724754137,0.0014818149326991667,0.0014611660072956015,0.0014408549528105111,0.0014208750915910516,0.0014012199069331954,0.0013818830383972816,0.001362858277284825,0.0013441395622704377,0.0013257209751819793,0.0013075967369240878,0.0012897612035387368,0.0012722088623977072,0.0012549343285221258,0.0012379323410234334,0.0012211977596620902,0.001204725561518828,0.0011885108377744367,0.0011725487905939339,0.001156834730111441,0.0011413640715113543,0.00112613233220313,0.0011111351290855377,0.001096368175897346,0.0010818272806514776,0.001067508343148955,0.0010534073525706356,0.0010395203851432382,0.0010258436018772798,0.0010123732463745195,0.0009991056427018628,0.0009860371933301658,0.0009731643771350846,0.0009604837474580247,0.0009479919302250337,0.000935685622121852,0.0009235615888226436,0.0009116166632712965,0.0008998477440129492,0.0008882517935742325,0.0008768258368907456,0.0008655669597796847,0.0008544723074567626,0.0008435390830954586,0.0008327645464273805,0.0008221460123824992,0.0008116808497675205,0.0008013664799817476,0.0007912003757687468,0.0007811800600028652,0.000771303104509392,0.0007615671289174796,0.0007519697995443315,0.0007425088283102456,0.0007331819716831073,0.0007239870296515396,0.0007149218447259578,0.000705984300966247,0.0006971723230357722,0.0006884838752805036,0.000679916960832651,0.0006714696207379845,0.0006631399331062927,0.0006549260122838872,0.0006468260080479789,0.000638838104821901,0.000630960520910682,0.0006231915077564624,0.000615529349212826,0.0006079723608379499,0.0006005188892056565,0.0005931673112339746,0.0005859160335307871,0.0005787634917557676,0.0005717081499985295,0.0005647485001722268,0.0005578830614222683,0.0005511103795496908,0.0005444290264488633,0.000537837599558852,0.0005313347213284214,0.0005249190386940065,0.0005185892225703968,0.0005123439673538469,0.0005061819904370126,0.0005001020317357334,0.0004941028532270705,0.00048818323849839155,0.0004823419923071667,0.00047657794015127394,0.00047088992784933935,0.00046527682113099006,0.00045973750523679526,0.000454270884527435,0.00044887588210208723,0.0004435514394255039,0.0004382965159638685,0.0004331100888289443,0.0004279911524304074,0.00042293871813619047,0.0004179518139404242,0.000413029484139067,0.0004081707890127968,0.0004033748045170694,0.00039864062197913374,0.00039396734780188907,0.0003893541031742322,0.0003848000237879677,0.00038030425956093284,0.00037586597436624477,0.0003714843457675654,0.0003671585647600538,0.0003628878355171143,0.0003586713751425925,0.0003545084134283829,0.00035039819261726516,0.0003463399671709214,0.0003423330035428289,0.00033837657995614283,0.0003344699861862661,0.0003306125233480564,0.0003268035036876064,0.00032304225037833016,0.000319328097321454,0.00031566038895066106,0.0003120384800408234,0.0003084617355208018,0.0003049295302900275,0.00030144124903901093,0.00029799628607351803,0.0002945940451423783,0.24706886794835656,0.24706886794835656,0.24706852914444144,0.2409826859876636,0.2252065633346419,0.20456832151308366,0.18320677156411522,0.16339434804562034,0.14595480515679038,0.13095208370482822,0.11814495859534399,0.10721096289122822,0.09783852368762315,0.08975743288575502,0.08274375044633916,0.07661544285844551,0.071225546743835,0.06645544665149392,0.06220909852493886,0.05840833748240438,0.05498916345520402,0.05189883392693569,0.04909359661659904,0.04653692001606544,0.0441981080595341,0.042051210501975085,0.04007416120647332,0.03824809265716366,0.03655678734765914,0.03498623603666261,0.033524279910617294,0.03216031900887152,0.03088507328363279,0.02969038571286424,0.028569059203421707,0.027514720796491723,0.02652170805232825,0.025584973546773523,0.02470000423253614,0.02386275305965829,0.023069580753483112,0.022317206046589023,0.02160266297722734,0.020923264118961133,0.02027656880849135,0.019660355601478934,0.01907259831803591,0.018511445146699022,0.017975200363125898,0.017462308291494335,0.016971339195514842,0.01650097683472861,0.01605000746215072,0.015617310072946556,0.015201847741873166,0.014802659910778613,0.014418855507174247,0.014049606791585715,0.013694143845481541,0.013351749623511157,0.013021755503989577,0.01270353728020112,0.012396511542533385,0.012100132407809827,0.011813888557638583,0.01153730055233522,0.011269918391013748,0.011011319291980024,0.01076110567060908,0.010518903294549653,0.010284359598397828,0.010057142142026528,0.009836937198499353,0.009623448459060118,0.00941639584404834,0.009215514409774505,0.009020553342464252,0.008831275031289311,0.008647454213338396,0.008468877184104773,0.008295341067717291,0.008126653141705473,0.007962630211616846,0.007803098031243097,0.007647890764626726,0.0074968504863831215,0.0073498267171886655,0.007206675991591468,0.007067261455547375,0.006931452491327126,0.006799124367650539,0.006670157913086833,0.006544439210943845,0.006421859314010774,0.006302313977666419,0.006185703409988358,0.006071932037615735,0.005960908286214877,0.005852544374503156,0.0057467561208599666,0.005643462761638633,0.005542586780363327,0.005444053747053925,0.0053477921669909095,0.005253733338275723,0.005161811217597543,0.005071962293659653,0.0049841254677623036,0.00489824194107063,0.004814255108140367,0.0047321104562961114,0.004651755470491838,0.004573139543309375,0.004496213889770943,0.0044209314666723695,0.004347246896156534,0.004275116393270363,0.004204497697266275,0.004135350006421444,0.004067633916170325,0.0040013113603528765,0.003936345555398129,0.003872700947273079,0.0038103431610395436,0.0037492389528679918,0.003689356164373434,0.0036306636791406614,0.0035731313813184944,0.003516730116169564,0.003461431652466741,0.0034072086466389916,0.0033540346085703544,0.0033018838689646804,0.003250731548192859,0.0032005535265454245,0.003151326415815156,0.0031030275321434556,0.003055634870063483,0.003009127077679665,0.002963483432926596,0.0029186838208510825,0.0028747087118687975,0.0028315391409452447,0.0027891566876562385,0.0027475434570853035,0.0027066820615157597,0.0026665556028813518,0.0026271476559374123,0.0025884422521189232,0.0025504238640528675,0.002513077390694629,0.0024763881430579656,0.0024403418305129865,0.0024049245476245053,0.0023701227615065767,0.0023359232996702324,0.0023023133383407246,0.0022692803912251567,0.00223681229870895,0.0022048972174627643,0.0021735236104416774,0.00214268023725986,0.002112356144923288,0.0020825406589066505,0.002053223374558421,0.0020243941488205354,0.001996043092249727,0.001968160561326618,0.001940737151042058,0.0019137636877480334,0.0018872312222625788,0.0018611310232185682,0.0018354545706453292,0.0018101935497751049,0.0017853398450641091,0.0017608855344200317,0.001736822883627577,0.0017131443409646088,0.0016898425320002728,0.001666910254569383,0.0016443404739151044,0.0016221263179937713,0.0016002610729358663,0.001578738178656204,0.0015575512246089054,0.0015366939456806679,0.0015161602182174598,0.0014959440561798777,0.0014760396074214983,0.001456441150086803,0.0014371430891233637,0.0014181399529044588,0.0013994263899579297,0.0013809971657977468,0.0013628471598537562,0.001344971362497131,0.001327364872157288,0.0013100228925272777,0.0012929407298547483,0.0012761137903147303,0.001259537577462316,0.0012432076897617478,0.0012271198181894947,0.001211269743908719,0.0011956533360128788,0.0011802665493354809,0.001165105422324574,0.0011501660749791414,0.0011354447068455044,0.0011209375950719488,0.00110664109251897,0.0010925516259241352,0.001078665694119122,0.0010649798662974157,0.0010514907803311935,0.0010381951411352255,0.0010250897190769814,0.0010121713484309391,0.000999436925875837,0.000986883409033454,0.0009745078150477846,0.0009623072192027983,0.000950278753578278,0.0009384196057419736,0.0009267270174771637,0.0009151982835446126,0.0009038307504774239,0.0008926218154083805,0.0008815689249283107,0.0008706695739746883,0.0008599213047495187,0.0008493217056657667,0.0008388684103210308,0.0008285590964982256,0.0008183914851920263,0.0008083633396604437,0.0007984724645009263,0.0007887167047498291,0.0007790939450051421,0.0007696021085713407,0.0007602391566258883,0.0007510030874068467,0.0007418919354206375,0.0007329037706698337,0.0007240366979000767,0.000715288855865672,0.000706658416613312,0.0006981435847835331,0.0006897425969290684,0.0006814537208500606,0.000673275254945347,0.0006652055275794479,0.000657242896464945,0.0006493857480594988,0.0006416324969775191,0.0006339815854157735,0.0006264314825926711,0.0006189806842008113,0.0006116277118725479,0.0006043711126579187,0.0005972094585150151,0.0005901413458121351,0.0005831653948415242,0.0005762802493444768,0.000569484576047212,0.0005627770642076186,0.0005561564251722987,0.0005496213919437287,0.0005431707187573604,0.000536803180668144,0.0005305175731465677,0.0005243127116837143,0.0005181874314052,0.0005121405866937286,0.0005061710508201489,0.0005002777155825441,0.0004944594909534697,0.0004887153047349057,0.00048304410222078974,0.0004774448458670277,0.0004719165149685579,0.00046645810534360276,0.00046106862902469396,0.0004557471139563858,0.0004504926036995517,0.00044530415714189394,0.00044018084821479997,0.00043512176561617117,0.0004301260125391616,0.00042519270640666175,0.000420320978611461,0.00041550997426175487,0.0004107588519321307,0.00040606678341970786,0.00040143295350536474,0.0003968565597199996,0.0003923368121155204,0.0003878729330406928,0.0003834641569215498,0.0003791097300463278,0.29277329792796664,0.29277329792796664,0.29277329792796664,0.28859801760550596,0.27247008436717485,0.24926758906888236,0.2242102554278602,0.20046063220953367,0.17931705575402276,0.16101995103074526,0.14535306361239134,0.13195743551320652,0.12046697871583112,0.11055701892671013,0.10195551293130076,0.09444005619695947,0.08783054697913778,0.08198139858935888,0.07677464612158354,0.07211426552217919,0.06792164119629306,0.06413200269170229,0.060691638701636484,0.05755571978446462,0.054686592572615135,0.052052437765743705,0.04962620886297943,0.04738478811575322,0.045308311241145066,0.04337962389588484,0.04158384158326214,0.03990799121763323,0.03834071752812006,0.03687204124413708,0.03549315886984406,0.03419627604677362,0.03297446818961623,0.031821563383380005,0.030732043542896378,0.029700960627117527,0.02872386532211597,0.027796746097557907,0.02691597693090915,0.02607827230423106,0.025280648327480965,0.024520389042609305,0.023795017124957688,0.02310226833020397,0.022440069142558538,0.021806517168059772,0.021199863889192906,0.020618499456924014,0.020060939245808276,0.01952581193909183,0.019011848945120393,0.018517874975260258,0.018042799637708946,0.017585609922029573,0.01714536346650669,0.016721182515037947,0.016312248482772917,0.015917797060281423,0.015537113795139114,0.0151695300975976,0.014814419623673246,0.014471194994787431,0.014139304818028295,0.013818230975432286,0.013507486154410032,0.013206611594695064,0.012915175030003508,0.012632768805091869,0.012359008151028908,0.012093529603406747,0.011835989549876877,0.01158606289484215,0.01134344183045039,0.011107834704143699,0.010878964974039089,0.010656570244298525,0.01044040137344125,0.010230221649238732,0.010025806024477887,0.009826940408412012,0.009633421009226959,0.009445053723292908,0.00926165356735713,0.009083044150207574,0.008909057180636537,0.00873953200883083,0.008574315198571778,0.008413260127850743,0.008256226615731534,0.008103080573462812,0.007953693678024535,0.007807943066442389,0.00766571104934757,0.007526884842377395,0.007391356314140867,0.007259021749564364,0.007129781627534809,0.0070035404118446625,0.006880206354514121,0.0067596913106506345,0.006641910564058776,0.0065267826628809655,0.0064142292646016275,0.006304174989799969,0.006196547284076053,0.006091276287627962,0.005988294711985497,0.005887537723447701,0.00578894283280401,0.00569244979094311,0.005598000489991302,0.005505538869637608,0.005415010828332022,0.005326364139065036,0.005239548369450987,0.005154514805865852,0.005071216381397691,0.004989607607389421,0.0049096445083661846,0.004831284560154902,0.004754486631011504,0.004679210925590865,0.004605418931597311,0.004533073368968393,0.004462138141453471,0.004392578290453599,0.0043243599510041815,0.0042574503097824404,0.004191817565032888,0.004127430888308947,0.004064260387936529,0.004002277074107095,0.003941452825519466,0.0038817603574882713,0.003823173191445154,0.00376566562576301,0.0037092127078344837,0.0036537902073452344,0.003599374590680602,0.0035459429964105134,0.003493473211800954,0.003441943650299833,0.0033913333299533084,0.003341621852705989,0.003292789384543705,0.003244816636439021,0.003197684846062521,0.003151375760222339,0.0031058716180008368,0.003061155134554456,0.0030172094855471635,0.0029740182921893506,0.002931565606853072,0.0028898358992402954,0.0028488140430777283,0.002808485303315688,0.002768835323808657,0.0027298501154571424,0.002691516044789231,0.002653819822965053,0.002616748495184387,0.0025802894304808458,0.002544430311886754,0.00250915912695161,0.0024744641586013708,0.0024403339763229177,0.00240675742766073,0.0023737236300134523,0.0023412219627166565,0.002309242059402162,0.002277773800621172,0.0022468073067213965,0.0022163329309677284,0.002186341252897346,0.0021568230718987725,0.0021277694010077355,0.002099171460910147,0.0020710206741445885,0.0020433086594969945,0.0020160272265789926,0.0019891683705844368,0.001962724267216221,0.0019366872677773796,0.0019110498944205525,0.0018858048355489818,0.0018609449413647043,0.0018364632195575056,0.0018123528311298994,0.0017886070863529708,0.0017652194408487865,0.0017421834917937431,0.0017194929742398544,0.0016971417575487877,0.0016751238419349009,0.00165343335511381,0.0016320645490517382,0.0016110117968134692,0.0015902695895044074,0.0015698325333039494,0.0015496953465868395,0.001529852857129844,0.0015102999993999516,0.0014910318119225087,0.001472043434725655,0.0014533301068588454,0.0014348871639831863,0.0014167100360304161,0.0013987942449293043,0.001381135402396422,0.0013637292077894713,0.0013465714460213262,0.0013296579855321166,0.0013129847763183522,0.001296547848016761,0.0012803433080408122,0.0012643673397690041,0.0012486162007826905,0.0012330862211517271,0.0012177738017671081,0.0012026754127185124,0.001187787591715567,0.0011731069425516463,0.001158630133608306,0.0011443538963998928,0.0011302750241564854,0.0011163903704442296,0.0011026968478218772,0.0010891914265326154,0.001075871133229595,0.0010627330497348566,0.0010497743118301221,0.0010369921080786557,0.0010243836786775569,0.0010119463143388086,0.0009996773551991685,0.0009875741897575744,0.0009756342538391243,0.0009638550295853292,0.000952234044469243,0.0009407688703354247,0.000929457122463538,0.0009182964586551865,0.0009072845783429549,0.000896419221721728,0.0008856981689006953,0.0008751192390763474,0.0008646802897253423,0.0008543792158168454,0.0008442139490439241,0.0008341824570731514,0.0008242827428121518,0.0008145128436947897,0.0008048708309828849,0.0007953548090847242,0.0007859629148894885,0.0007766933171171653,0.0007675442156836665,0.000758513841080836,0.0007496004537706231,0.000740802343593425,0.0007321178291897676,0.0007235452574355472,0.0007150830028898602,0.0007067294672556305,0.0006984830788524019,0.0006903422921008669,0.0006823055870192276,0.0006743714687307236,0.000666538466982195,0.000658805135673331,0.0006511700523965447,0.0006436318179866396,0.0006361890560808318,0.0006288404126882179,0.0006215845557685953,0.0006144201748207559,0.0006073459804793726,0.0006003607041209463,0.0005934630974780031,0.0005866519322618021,0.0005799259997930798,0.0005732841106405629,0.0005667250942673802,0.0005602477986848765,0.0005538510901137917,0.0005475338526525683,0.0005412949879527328,0.0005351334149009107,0.0005290480693076584,0.0005230379036027429,0.0005171018865366263,0.0005112390028884325,0.0005054482531795239,0.0004997286533933671,0.0004940792347009255,0.0004884990431917292,0.34726950049530525,0.34726950049530525,0.34726950049530525,0.34516888278104063,0.3297234549777553,0.3042126812180071,0.2750666242373667,0.24665264821913793,0.22098482385872342,0.1986046756766626,0.17936880128237315,0.16289172578794722,0.14874723893215414,0.13654559044366965,0.12595547274028332,0.11670403126299005,0.10856946331393338,0.1013721295185433,0.09496635214303355,0.08923352474847972,0.08407655914918793,0.07941549516727046,0.07518405731123765,0.0713269592218363,0.06779779011292679,0.06455735151630644,0.06157234207802745,0.05881431186946861,0.05625882614585061,0.05388479262428635,0.05167391709191177,0.0496102602863963,0.047679875150868106,0.04587050824226989,0.04417135263525219,0.04257284239053927,0.041066480753193885,0.039644695866467246,0.038300719045510884,0.037028481638345,0.03582252727301985,0.03467793689896964,0.03359026451356733,0.03255548184984836,0.031569930609882724,0.03063028107635042,0.029733496135589725,0.02887679990831495,0.028057650317026426,0.027273715028035078,0.026522850295397755,0.025803082307955492,0.025112590701820182,0.024449693951538527,0.023812836395560463,0.023200576687241087,0.022611577492380037,0.02204459627949062,0.021498477070241384,0.020972143035499297,0.020464589837774536,0.019974879633869555,0.019502135662726256,0.01904553735302861,0.018604315893309437,0.01817775021443281,0.01776516334038798,0.017365919068644705,0.016979418945894723,0.016605099508997266,0.016242429764394717,0.015890908882330693,0.015550064084813634,0.015219448708610835,0.014898640426594431,0.014587239612532511,0.014284867836030155,0.013991166475684774,0.013705795439770182,0.013428431984847701,0.013158769623674422,0.012896517114622056,0.012641397525609924,0.012393147366209892,0.012151515782203162,0.01191626380741088,0.011687163668092335,0.011463998135663338,0.011246559923853414,0.01103465112678441,0.01082808269476828,0.010626673944892806,0.010430252103741688,0.01023865187980451,0.010051715063354177,0.009869290151752686,0.009691231998321994,0.009517401483060213,0.009347665203642682,0.009181895185256788,0.009019968607946122,0.008861767550245113,0.008707178747972447,0.008556093367155303,0.008408406790121354,0.00826401841387751,0.008122831459958813,0.007984752794994712,0.007849692761288551,0.007717565016770974,0.007588286383721905,0.007461776705706815,0.007337958712212994,0.007216757890500937,0.007098102364232411,0.006981922778455506,0.006868152190562859,0.006756725966865143,0.00664758168444091,0.006540659037956634,0.006435899751161317,0.006333247492785649,0.006232647796591446,0.0061340479853354965,0.006037397098422035,0.0059426458230416425,0.005849746428598078,0.0057586527042424425,0.005669319899345225,0.005581704666742498,0.005495765008611186,0.005411460224828802,0.005328750863686724,0.005247598674832355,0.005167966564324578,0.00508981855168925,0.0050131197288757826,0.004937836221014206,0.0048639351488819925,0.004791384592995429,0.004720153559240975,0.004650211945973867,0.00458153051250857,0.004514080848933602,0.004447835347187214,0.004382767173330028,0.004318850240960816,0.004256059185718093,0.004194369340817109,0.004133756713573154,0.0040741979628660255,0.004015670377499462,0.003958151855417488,0.003901620883735945,0.0038460565195529615,0.003791438371503715,0.0037377465820239305,0.003684961810293327,0.0036330652158266855,0.00358203844268475,0.003531863604277683,0.0034825232687359254,0.003434000444821958,0.003386278568362378,0.0033393414891760486,0.0032931734584778923,0.00324775911673891,0.0032030834819813518,0.003159131938493394,0.0031158902259441285,0.0030733444288828684,0.0030314809666077045,0.0029902865833864676,0.002949748339018168,0.002909853599719463,0.002870590029323825,0.002831945580780747,0.002793908487943783,0.0027564672576343655,0.0027196106619728744,0.002683327730964862,0.0026476077453330945,0.002612440229586542,0.002577814945315642,0.002543721884707285,0.002510151264269689,0.0024770935187597713,0.0024445392953059185,0.0024124794477174073,0.0023809050309755112,0.0023498072958981872,0.002319177683972446,0.0022890078223482694,0.0022592895189885937,0.002230014757968516,0.0022011756949200604,0.0021727646526160265,0.0021447741166883976,0.0021171967314769636,0.002090025296002396,0.002063252760060973,0.0020368722204355603,0.0020108769172192766,0.0019852602302478377,0.001960015675637248,0.0019351369024221802,0.001910617689293077,0.0018864519414275426,0.001862633687413194,0.0018391570762593176,0.0018160163744932675,0.0017932059633402157,0.0017707203359824568,0.001748554094896017,0.0017267019492623258,0.0017051587124515947,0.00168391929957681,0.0016629787251151425,0.0016423321005949838,0.00162197463234637,0.001601901619313167,0.0015821084509241548,0.0015625906050223415,0.001543343645849789,0.0015243632220865238,0.001505645064942132,0.0014871849862975663,0.0014689788768967125,0.001451022704585394,0.0014333125125966769,0.0014158444178809459,0.0013986146094797309,0.001381619346941197,0.0013648549587770458,0.0013483178409588361,0.0013320044554528268,0.0013159113287924001,0.0013000350506862904,0.0012843722726624599,0.0012689197067459175,0.001253674124169701,0.0012386323541182785,0.0012237912825018096,0.0012091478507611966,0.0011946990547024273,0.001180441943359634,0.0011663736178859493,0.0011524912304716297,0.0011387919832880641,0.0011252731274577499,0.0011119319620489193,0.0010987658330942898,0.0010857721326335134,0.0010729482977780717,0.001060291809798737,0.0010478001932344577,0.0010354710150222719,0.001023301883647625,0.0010112904483147325,0.0009994343981359465,0.0009877314613402825,0.0009761794045000859,0.0009647760317755365,0.000953519184176673,0.0009424067388419646,0.0009314366083336774,0.0009206067399490749,0.0009099151150472404,0.0008993597483912039,0.0008889386875045917,0.0008786500120429653,0.0008684918331790618,0.0008584622930017321,0.0008485595639281759,0.0008387818481293067,0.0008291273769674907,0.0008195944104468982,0.0008101812366757302,0.0008008861713401823,0.0007917075571899532,0.0007826437635346288,0.0007736931857511952,0.0007648542448020181,0.0007561253867631458,0.0007475050823628063,0.0007389918265295107,0.0007305841379499519,0.0007222805586361701,0.000714079653501846,0.000705980009947486,0.0006979802374544071,0.0006900789671869745,0.0006822748516033427,0.0006745665640741713,0.0006669527985092114,0.000659432268991712,0.0006520037094201268,0.0006446658731573677,0.0006374175326871223,0.0006302574792771948,0.35151814732153913,0.35151814732153913,0.35151814732153913,0.3511678347768159,0.33999947394989066,0.31691132930567195,0.2883992855310458,0.2595365800778638,0.23295496551566244,0.2095477478013836,0.1893297861930458,0.17197168137578825,0.15705736581019686,0.1441892337804342,0.13302258874516887,0.12327076080169368,0.11469954856691818,0.10711880190330113,0.10037415668492175,0.09433990384632081,0.08891316464602397,0.08400925191894011,0.07955801718300297,0.07550098487046998,0.07178910300789916,0.06838097255366914,0.06524144742783268,0.06234052186731926,0.05965244114499365,0.05715498666014855,0.054828897828774634,0.05265740187435552,0.05062582919979447,0.04872129702129496,0.04693244775565091,0.04524923156862669,0.04366272473364546,0.04216497718163148,0.04074888396723318,0.039408076426139825,0.038136829621294895,0.03692998332511458,0.03578287429938065,0.03469127804429696,0.03365135851639982,0.032659624578740824,0.03171289215999196,0.03080825127209817,0.029943037177027888,0.029114805108639917,0.028321308050393616,0.027560477147887796,0.026830404399945076,0.0261293273257841,0.025455615350654413,0.024807757689931834,0.024184352543123427,0.023584097435826068,0.023005780570108623,0.022448273062761943,0.02191052196706921,0.021391543987453934,0.020890419808155702,0.02040628896715636,0.019938345215203684,0.01948583230727834,0.01904804018022964,0.018624301475896467,0.018213988373840674,0.01781650970201819,0.017431308297337505,0.017057858591277147,0.016695664398476393,0.016344256888673286,0.016003192724502187,0.015672052349523777,0.015350438412551137,0.015037974315762988,0.014734302875406644,0.014439085085029744,0.014151998972200295,0.013872738540557143,0.013601012789863786,0.013336544807422168,0.013079070924856334,0.012828339934844047,0.012584112362868407,0.012346159789542479,0.012114264219443486,0.011888217492774522,0.011667820736501553,0.011452883851897588,0.011243225035716625,0.011038670332439049,0.01083905321526228,0.010644214193703025,0.010454000445860914,0.010268265473544166,0.01008686877862427,0.00990967555910109,0.009736556423492972,0.009567387122276071,0.009402048295188885,0.009240425233326776,0.009082407655018188,0.00892788949456152,0.0087767687029675,0.00862894705992016,0.00848432999621903,0.008342826426034218,0.008204348588340623,0.0080688118969516,0.007936134798613782,0.007806238638655854,0.007679047533732584,0.007554488251224831,0.007432490094893897,0.007312984796416202,0.0071959064124427685,0.007081191226864108,0.0069687776579704964,0.0068586061702254255,0.006750619190385912,0.006644761027723128,0.0065409777981066675,0.006439217351741279,0.006339429204347941,0.006241564471600552,0.006145575806640659,0.006051417340498983,0.005959044625271944,0.005868414579901555,0.005779485438421962,0.005692216700541905,0.005606569084442231,0.005522504481669739,0.0054399859140239395,0.005358977492331246,0.00527944437701173,0.005201352740349126,0.005124669730375514,0.005049363436294684,0.004975402855364982,0.004902757861171172,0.004831399173218691,0.004761298327783347,0.0046924276499602175,0.004624760226851546,0.004558269881840951,0.00449293114990243,0.0044287192538969445,0.004365610081808091,0.004303580164877053,0.004242606656593155,0.004182667312501857,0.004123740470794163,0.004065805033639847,0.004008840449234677,0.003952826694527403,0.003897744258597572,0.0038435741266563766,0.00379029776464109,0.003737897104380647,0.003686354529305388,0.003635652860678847,0.0035857753443289766,0.003536705637858716,0.0034884277983137,0.003440926270290798,0.003394185874467263,0.0033481917965338007,0.0033029295765156803,0.0032583850984642393,0.0032145445805063224,0.003171394565235349,0.00312892191043117,0.003087113780095356,0.003045957635790216,0.0030054412282678115,0.002965552589380017,0.0029262800242569153,0.002887612103743863,0.002849537657087651,0.002812045764860848,0.0027751257521172047,0.0027387671817679917,0.0027029598481714567,0.0026676937709273186,0.0026329591888692556,0.0025987465542465678,0.0025650465270900557,0.002531849969753898,0.0024991479416275894,0.0024669316940123236,0.002435192665154389,0.0024039224754319657,0.002373112922688286,0.00234275597770663,0.002312843779822402,0.002283368632666339,0.00225432300003588,0.0022256995018890375,0.0021974909104569883,0.002169690146471186,0.0021422902755015233,0.0021152845044005936,0.002088666177852032,0.0020624287750182235,0.002036565906284487,0.0020110713100968225,0.0019859388498890823,0.001961162511097979,0.001936736398262051,0.0019126547322020951,0.0018889118472808556,0.0018655021887382793,0.0018424203101013357,0.0018196608706649133,0.0017972186330419847,0.0017750884607806883,0.0017532653160465493,0.0017317442573668899,0.0017105204374366946,0.0016895891009830741,0.0016689455826868623,0.0016485853051597772,0.0016285037769746488,0.0016086965907481819,0.001589159421273822,0.0015698880237034988,0.0015508782317767108,0.0015321259560957725,0.0015136271824451153,0.0014953779701543234,0.0014773744505028425,0.0014596128251653715,0.001442089364697,0.0014248004070561548,0.0014077423561652661,0.0013909116805072839,0.0013743049117572812,0.001357918643448314,0.0013417495296699203,0.0013257942837991855,0.0013100496772627855,0.0012945125383293965,0.0012791797509315041,0.0012640482535160812,0.0012491150379226204,0.0012343771482886765,0.001219831679981452,0.0012054757785549585,0.0011913066387322234,0.0011773215034112615,0.0011635176626949605,0.001149892452943604,0.0011364432558497,0.0011231674975343733,0.0011100626476650288,0.001097126218593095,0.0010843557645120907,0.001071748880634901,0.001059303202389941,0.001047016404635871,0.001034886200893881,0.001022910342597721,0.0010110866183605514,0.0009994128532583215,0.0009878869081293878,0.0009765066788895141,0.000965270095862448,0.0009541751231252303,0.000943219757868031,0.0009324020297680938,0.0009217200003775853,0.0009111717625245743,0.0009007554397273944,0.0008904691856216089,0.0008803111833993963,0.0008702796452612156,0.0008603728118789984,0.0008505889518711512,0.0008409263612886592,0.0008313833631121753,0.0008219583067597873,0.0008126495676053361,0.0008034555465066598,0.0007943746693440226,0.000785405386568108,0.000776546172757465,0.0007677955261853057,0.0007591519683950645,0.0007506140437849932,0.0007421803192012138,0.0007338493835391602,0.0007256198473532955,0.0007174903424746075,0.0007094595216361127,0.0007015260581058776,0.0006936886453274938,0.35581871480317784,0.35581871480317784,0.35581871480317784,0.35581871480317784,0.3497123078067321,0.3300490506295902,0.30281935864612386,0.27377079332239207,0.24629831585276843,0.22177710458997,0.20045430697303085,0.18209063737848513,0.166293235743106,0.15266017132123597,0.14083300594791612,0.13050956082536727,0.12144126828860924,0.11342563347714077,0.10629803144285638,0.09992434770929282,0.0941948529521368,0.08901927627559221,0.08432290457114819,0.08004351360591429,0.07612895595418619,0.0725352613561304,0.06922513494679236,0.06616676427178221,0.06333286646124014,0.0606999228731658,0.058247560751697715,0.05595805076964629,0.05381589641329365,0.05180749656025494,0.04992086671280562,0.048145407495607515,0.04647171144457776,0.04489140098047486,0.043396991909172504,0.04198177792041635,0.040639732442246106,0.03936542490611119,0.038153949030262604,0.03700086116869806,0.035902127124754254,0.03485407611090683,0.03385336076452715,0.032896922314298645,0.03198196014256459,0.03110590511214773,0.030266396127216755,0.029461259481198317,0.028688490613687175,0.027946237955608702,0.02723278858958036,0.026546555492420007,0.025886066160166102,0.025249952444217096,0.024636941450997814,0.0240458473776881,0.02347556417373308,0.022925058932377125,0.022393365928953912,0.02187958123332944,0.021382857833020897,0.02090240121144647,0.02043746533250682,0.01998734898860856,0.019551392474322082,0.019128974552301205,0.01871950968191738,0.018322445484462973,0.017937260421671448,0.017563461666896818,0.01720058315054968,0.016848183763348477,0.016505845702726868,0.01617317294924125,0.01584978986120522,0.01553533987697351,0.015229484315372901,0.014931901265706642,0.01464228455963343,0.014360342817940642,0.014085798565920038,0.01381838741165051,0.013557857282012654,0.013303967711765622,0.013056489181419443,0.0128152025000377,0.012579898229450995,0.012350376146661264,0.012126444741521724,0.01190792074700773,0.011694628699637265,0.011486400527802632,0.011283075165966956,0.011084498192837638,0.010890521491803837,0.010701002932044963,0.010515806068856643,0.01033479986185657,0.010157858409827749,0.009984860701072103,0.009815690378216564,0.009650235516505784,0.009488388414685137,0.009330045397648206,0.009175106630076068,0.009023475940367346,0.008875060654194463,0.008729771437078593,0.008587522145418521,0.008448229685441932,0.008311813879598017,0.008178197339930922,0.008047305348013034,0.007919065741045686,0.007793408803754934,0.007670267165747237,0.007549575704000167,0.007431271450192185,0.007315293502592391,0.007201582942251665,0.007090082753247049,0.0069807377467580945,0.006873494488756862,0.006768301231113577,0.006665107845932281,0.006563865762936117,0.006464527909743809,0.006367048654878029,0.006271383753362335,0.0061774902947695455,0.0060853266535949675,0.005994852441829831,0.005906028463626633,0.005818816671945551,0.005733180127082751,0.005649082956986671,0.005566490319269451,0.005485368364833911,0.0054056842030328674,0.005327405868287009,0.005250502288091381,0.0051749432523402064,0.005100699383911224,0.005027742110446178,0.004956043637272358,0.00488557692141104,0.004816315646623411,0.004748234199442887,0.004681307646152377,0.0046155117106603406,0.004550822753235824,0.004487217750064626,0.004424674273586994,0.0043631704735857865,0.004302685058989012,0.004243197280356467,0.0041846869130211925,0.004127134240854986,0.0040705200406343095,0.004014825566978342,0.0039600325378358085,0.003906123120497101,0.0038530799181103947,0.0038008859566784885,0.00374952467251932,0.003698979900168851,0.003649235860708798,0.0036002771505026314,0.003552088730321142,0.00350465591484463,0.003457964362524589,0.003412000065791251,0.0033667493415931826,0.00332219882225645,0.003278335446648993,0.003235146451640879,0.0031926193638469823,0.0031507419916419073,0.0031095024174373075,0.0030688889902097814,0.003028890318272263,0.002989495262277918,0.0029506929284485403,0.0029124726620189,0.0028748240408895953,0.002837736869479212,0.0028012011727705146,0.0027652071905420643,0.00272974537177903,0.0026948063692572386,0.0026603810342927235,0.0026264604116528903,0.002593035734621975,0.0025600984202159695,0.002527640064542092,0.0024956524382964205,0.002464127482396727,0.0024330573037443974,0.0024024341711115864,0.0023722505111491085,0.0023424989045114724,0.0023131720820937624,0.002284262921378374,0.002255764442886501,0.002227669806731455,0.0021999723092706704,0.002172665379852031,0.002145742577652967,0.0021191975886080514,0.00209302422242267,0.0020672164096702723,0.0020417681989694223,0.00201667375423954,0.0019919273520317207,0.001967523378932651,0.0019434563290391899,0.0019197208015017471,0.001896311498133323,0.0018732232210834847,0.0018504508705742063,0.0018279894426960555,0.0018058340272631285,0.0017839798057239953,0.0017624220491281976,0.0017411561161456471,0.0017201774511377194,0.0016994815822783539,0.00167906411972396,0.0016589207538298895,0.0016390472534131221,0.0016194394640590415,0.001600093306471206,0.001581004774863152,0.001562169935390175,0.00154358492462101,0.001525245948047439,0.0015071492786309683,0.0014892912553858258,0.0014716682819963934,0.0014542768254691705,0.001437113414817475,0.0014201746397782928,0.0014034571495602504,0.0013869576516221218,0.0013706729104803058,0.0013545997465454047,0.0013387350349864087,0.001323075704621924,0.001307618736837945,0.0012923611645307776,0.001277300071075286,0.0012624325893171354,0.0012477559005886344,0.0012332672337474464,0.0012189638642378182,0.0012048431131730796,0.0011909023464396966,0.0011771389738216636,0.0011635504481449159,0.0011501342644414157,0.0011368879591318363,0.0011238091092270776,0.0011108953315476162,0.0010981442819603523,0.0010855536546327139,0.0010731211813030312,0.0010608446305674683,0.0010487218071825503,0.0010367505513831166,0.0010249287382152307,0.0010132542768838439,0.0010017251101143991,0.0009903392135286108,0.0009790945950336393,0.0009679892942244472,0.0009570213817991683,0.0009461889589867321,0.0009354901569870133,0.0009249231364227711,0.0009144860868032488,0.0009041772259991174,0.0008939947997286124,0.000883937081054222,0.0008740023698901869,0.0008641889925201587,0.0008544953011248966,0.0008449196733199138,0.000835460511702412,0.0008261162434078256,0.0008168853196753637,0.0008077662154224344,0.0007987574288279207,0.0007898574809236541,0.0007810649151944604,0.0007723782971861684,0.0007637962141215396,0.36017183706959804,0.36017183706959804,0.36017183706959804,0.36017183706959804,0.3581714837022663,0.34314985425950095,0.3181492750310649,0.2893873146183195,0.2611488616218428,0.23546027966166652,0.2129101620501744,0.19340341902985433,0.17659298334126772,0.16208012988426673,0.14949376004247905,0.1385148220636785,0.12887830912473744,0.1203672996596069,0.11280506345459249,0.1060475311889907,0.09997685286911041,0.09449614393422306,0.08952529437127245,0.08499765832082205,0.08085744714425747,0.0770576748355533,0.07355853381700742,0.0703261053551101,0.0673313304104004,0.06454918378641665,0.061958007637787,0.059538970501719995,0.05727562572068763,0.055153548993333606,0.053160039268373836,0.05128387062318071,0.04951508540115524,0.04784482091331686,0.046265163584346465,0.04476902565065082,0.043350040478888546,0.04200247332996657,0.04072114499194601,0.039501366180998684,0.038338880989783546,0.03722981796757641,0.03617064766259999,0.03515814565628391,0.03418936028126506,0.03326158434750274,0.03237233030944246,0.03151930839671642,0.030700407304829244,0.02991367710368663,0.029157314072900068,0.028429647215598697,0.0277291262382168,0.02705431081389687,0.02640386097256608,0.02577652848221802,0.025171149104259,0.024586635621253836,0.024021971548711798,0.023476205453903595,0.022948445814412105,0.022437856357553094,0.021943651828972493,0.02146509414500469,0.02100148888877225,0.020552182114716072,0.02011655743030117,0.01969403332725334,0.019284060737746564,0.018886120793712213,0.018499722769828766,0.01812440219282753,0.01775971910163701,0.017405256444478483,0.017060618600488464,0.016725430014708012,0.016399333936415687,0.016081991251762393,0.01577307940259049,0.015472291384078924,0.015179334814583053,0.014893931071667525,0.014615814488879462,0.01434473160834332,0.014080440484683387,0.01382271003620337,0.013571319439617932,0.013326057564945478,0.013086722447494228,0.012853120794115531,0.012625067521155676,0.012402385321750434,0.012184904260309562,0.011972461392205105,0.011764900406861832,0.011562071292573967,0.011363830021520084,0.011170038253568727,0.01098056305756916,0.01079527664894158,0.010614056142454904,0.010436783319176798,0.010263344406653224,0.010093629871450375,0.00992753422324586,0.009764955829732944,0.009605796741639534,0.009449962527222685,0.009297362115646263,0.009147907648682134,0.009001514340230278,0.008858100343173471,0.008717586623124211,0.008579896838651997,0.00844495722759917,0.008312696499133727,0.008183045731197505,0.00805593827303899,0.007931309652537296,0.007809097488046096,0.00768924140449639,0.007571682953525958,0.007456365537406043,0.007343234336557505,0.007232236240460889,0.007123319781771674,0.007016435073473635,0.006911533748903511,0.006808568904495882,0.0067074950451048235,0.006608268031768843,0.0065108450317884654,0.0064151844710025946,0.006321245988147402,0.006228990391193211,0.006138379615561097,0.00604937668412145,0.005961945668890965,0.005876051654340744,0.005791660702237744,0.005708739817946417,0.005627256918116448,0.005547180799694944,0.00546848111019647,0.005391128319173023,0.005315093690827084,0.005240349257715839,0.00516686779549278,0.005094622798643317,0.005023588457165785,0.004953739634156029,0.004885051844255809,0.004817501232923423,0.004751064556493874,0.004685719162990735,0.004621442973657929,0.0045582144651795655,0.004496012652559114,0.004434817072626874,0.0043746077681523126,0.004315365272532918,0.004257070595036085,0.004199705206571626,0.004143251025970232,0.0040876904067502036,0.004033006124349795,0.003979181363806976,0.003926199707869028,0.003874045125512412,0.0038227019608592064,0.003772154922472199,0.003722389073014214,0.0036733898192572237,0.0036251429024280386,0.003577634388875595,0.003530850661049826,0.0034847784087782374,0.0034394046208292314,0.0033947165767519542,0.0033507018389802006,0.003307348245192937,0.0032646439009198277,0.003222577172383336,0.003181136679569096,0.0031403112895143897,0.003100090109808983,0.003060462482298867,0.003021417976986169,0.002982946386117916,0.0029450377184574612,0.002907682193730443,0.002870870237241215,0.0028345924746520377,0.0027988397269198663,0.0027636030053856853,0.0027288735070095747,0.002694642609748424,0.002660901868069837,0.0026276430085982053,0.0025948579258882015,0.0025625386783218696,0.002530677484123803,0.0024992667174922297,0.0024682989048407282,0.002437766721147411,0.0024076629864083015,0.002377980662190324,0.0023487128482822025,0.0023198527794388835,0.0022913938222168056,0.0022633294718974652,0.0022356533494952715,0.00220835919884853,0.0021814408837897213,0.002154892385393033,0.00212870779929652,0.002102881333097012,0.0020774073038143503,0.0020522801354242804,0.0020274943564567434,0.002003044597657921,0.0019789255897144126,0.0019551321610365925,0.001931659235600737,0.0019085018308470356,0.001885655055632337,0.001863114108235686,0.0018408742744155738,0.0018189309255163507,0.0017972795166235798,0.0017759155847660163,0.001754834747163049,0.0017340326995166602,0.0017135052143456286,0.0016932481393620023,0.001673257395887666,0.001653528977310188,0.0016340589475770627,0.00161484343972643,0.0015958786544543466,0.0015771608587167156,0.001558686384365242,0.0015404516268163638,0.0015224530437524969,0.001504687153853979,0.0014871505355618232,0.0014698398258697143,0.0014527517191446563,0.001435882965975734,0.0014192303720495319,0.001402790797052373,0.0013865611535979904,0.001370538406180202,0.0013547195701498456,0.001339101710715544,0.001323681941967044,0.0013084574259213978,0.0012934253715906965,0.001278583034071055,0.0012639277136524232,0.0012494567549481469,0.0012351675460445008,0.0012210575176691075,0.0012071241423779486,0.0011933649337606662,0.0011797774456631276,0.001166359271427554,0.001153108043149202,0.0011400214309494122,0.0011270971422645284,0.0011143329211504847,0.0011017265476021675,0.00108927583688785,0.0010769786388978345,0.001064832837507081,0.00105283634995168,0.001040987126218304,0.00102928314844698,0.001017722430346388,0.001006303016621499,0.000995022982413448,0.0009838804327508576,0.000972873502012954,0.0009620003534037366,0.0009512591784370964,0.0009406481964326641,0.0009301656540220135,0.000919809824665019,0.0009095790081762318,0.0008994715302608782,0.0008894857420603182,0.000879620019706877,0.0008698727638874394,0.0008602423994161142,0.0008507273748153966,0.0008413261619057537,0.3645781559961905,0.3645781559961905,0.3645781559961905,0.3645781559961905,0.36453013774547705,0.35551249919729333,0.33406210830958466,0.3063773220146729,0.27767140810098623,0.2508276803589808,0.2269364464551124,0.206133634212437,0.188156969714996,0.17262563580117143,0.15915967193284042,0.1474225426248085,0.13713068555503208,0.1280503472837074,0.11999046256903159,0.11279509487328451,0.10633669008530394,0.10051045992638417,0.09522985324205517,0.0904229582433134,0.08602966111217711,0.08199940396059133,0.07828941215882676,0.0748632875507899,0.07168988676136648,0.06874242209567033,0.06599773685051825,0.06343571789822865,0.06103881685239245,0.05879165757653781,0.056680712723244195,0.05469403576256141,0.05282103785471488,0.05105230115547705,0.04937942187254694,0.04779487773814449,0.046291915616296676,0.044864455791618234,0.04350701014077893,0.04221461190739096,0.04098275521579722,0.03980734279149485,0.038684640623731156,0.03761123852240484,0.03658401569735944,0.03560011063190931,0.03465689464002946,0.03375194859354558,0.03288304238560884,0.03204811676305604,0.03124526721535924,0.03047272965400052,0.02972886765459352,0.029012161066539248,0.02832119582232885,0.02765465480167768,0.027011309625345935,0.02639001327010302,0.02578969341055365,0.025209346405703593,0.024648031858536527,0.024104867685898042,0.023579025643646577,0.0230697272587407,0.022576240125693505,0.02209787452985018,0.02163398036427282,0.021183944310864077,0.020747187259628378,0.02032316194289961,0.019911350763905433,0.01951126380124984,0.019122436972902092,0.01874443034497112,0.01837682657209974,0.018019229457656168,0.01767126262310742,0.017332568277002205,0.01700280607497057,0.01668165206295438,0.016368797696652615,0.016063948930834203,0.015766825372752216,0.015477159494459708,0.015194695899277102,0.014919190638109411,0.014650410571698967,0.014388132775231736,0.014132143982057121,0.01388224006353708,0.013638225542312338,0.013399913136499344,0.01316712333254546,0.012939683984646639,0.012717429938826404,0.012500202679908635,0.012287849999771411,0.01208022568539849,0.01187718922535052,0.011678605533406659,0.011484344688203666,0.011294281687802497,0.011108296218188422,0.010926272434790834,0.01074809875616559,0.010573667669064483,0.010402875544155463,0.010235622461720648,0.0100718120467077,0.009911351312544999,0.009754150513189366,0.0096001230028958,0.009449185103243704,0.009301255976985478,0.009156257508305028,0.009014114189116008,0.00887475301104001,0.008738103362737396,0.008604096932282038,0.008472667614294238,0.008343751421556918,0.008217286400870738,0.008093212552906709,0.007971471755837147,0.007852007692539855,0.007734765781176013,0.007619693108966655,0.0075067383689916885,0.0073958517998526496,0.007286985128048096,0.0071800915129213334,0.007075125494042631,0.006972042940906515,0.006870801004821443,0.0067713580728820276,0.006673673723920332,0.006577708686333329,0.0064834247976986985,0.006390784966086909,0.0062997531329879956,0.00621029423777573,0.006122374183631544,0.006035959804862948,0.005951018835546801,0.0058675198794360854,0.005785432381070576,0.005704726598036681,0.0056253735743198715,0.00554734511470409,0.005470613760166935,0.005395152764226551,0.005320936070198574,0.005247938289319073,0.005176134679699385,0.0051055011260727244,0.005036014120299414,0.004967650742596907,0.004900388643464647,0.004834206026270844,0.004769081630476671,0.004704994715468016,0.004641925044970015,0.004579852872020786,0.004518758924478431,0.004458624391042632,0.0043994309077671255,0.004341160545043664,0.004283795795039217,0.004227319559565551,0.004171715138367041,0.004116966217807573,0.004063056859941657,0.004009971491954114,0.003957694895954961,0.0039062121991132455,0.00385550886411956,0.0038055706799625093,0.0037563837530076383,0.003707934498368054,0.003660209631553534,0.0036131961603903754,0.0035668813771997762,0.0035212528512256944,0.0034762984213036817,0.00343200618875975,0.0033883645105334103,0.0033453619925148015,0.0033029874830888444,0.003261230066878728,0.003220079058682204,0.0031795239975921175,0.0031395546412968634,0.0031001609605526997,0.0030613331338224287,0.003023061542075195,0.0029853367637400585,0.0029481495698103115,0.0029114909190915647,0.002875351953589412,0.002839723994031724,0.0028045985355214364,0.0027699672433141058,0.0027358219487179313,0.002702154645110616,0.0026689574840697834,0.0026362227716135375,0.0026039429645461766,0.002572110666907512,0.0025407186265209106,0.0025097597316374068,0.0024792270076731556,0.00244911361403596,0.0024194128410396673,0.0023901181069024566,0.002361222954826718,0.0023327210501579254,0.002304606177620387,0.0022768722386263306,0.0022495132486575853,0.002222523334716456,0.002195896732844024,0.002169627785704166,0.002143710940230186,0.0021181407453336218,0.0020929118496722057,0.002068018999475693,0.0020434570364276047,0.002019220895601679,0.0019953056034503302,0.001971706275844978,0.0019484181161656376,0.001925436413438738,0.0019027565405219916,0.001880373952334028,0.0018582841841287834,0.0018364828498123502,0.001814965640301397,0.0017937283219223,0.0017727667348488745,0.0017520767915788292,0.0017316544754469563,0.0017114958391743484,0.0016915970034525603,0.0016719541555620199,0.0016525635480229535,0.0016334214972789712,0.0016145243824116507,0.0015958686438854773,0.0015774507823225965,0.0015592673573058154,0.0015413149862100362,0.0015235903430606884,0.0015060901574186166,0.0014888112132907382,0.0014717503480659617,0.0014549044514750406,0.0014382704645746573,0.001421845378754385,0.001405626234766152,0.001389610121775874,0.0013737941764359518,0.001358175581979035,0.0013427515673317865,0.0013275194062483992,0.0013124764164635172,0.0012976199588634679,0.0012829474366761655,0.001268456294678568,0.0012541440184215213,0.0012400081334714385,0.0012260462046686414,0.0012122558354013683,0.0011986346668958106,0.0011851803775212151,0.0011718906821098674,0.0011587633312917752,0.0011457961108431187,0.0011329868410488936,0.0011203333760788196,0.001107833603376407,0.0010954854430609846,0.0010832868473419292,0.001071235799945402,0.0010593303155528547,0.0010475684392511951,0.0010359482459942363,0.001024467840075427,0.0010131253546110423,0.0010019189510342705,0.0009908468185994446,0.0009799071738963376,0.0009690982603744487,0.0009584183478765853,0.0009478657321821221,0.0009374387345592772,0.000927135701326364,0.36903832129900466,0.36903832129900466,0.36903832129900466,0.36903832129900466,0.36903832129900466,0.36608513875891835,0.34988856930004497,0.324530233254298,0.2959560284656897,0.2681077959631575,0.24280243166559537,0.2205453388078947,0.20122642172345917,0.1845106981825848,0.170018599205829,0.15739737748093988,0.14634315886295363,0.13660272339841997,0.12796802727110929,0.120268922469819,0.11336617850752702,0.10714548415971639,0.10151253211237012,0.09638908056198404,0.09170982909445084,0.08741994862906796,0.08347312739294188,0.07983002074518623,0.07645701625912976,0.07332524508835453,0.0704097862589277,0.06768902268603236,0.06514411706919325,0.06275858298600062,0.06051793198502482,0.058409381676319,0.05642161304098943,0.05454456766529541,0.052769277527009044,0.05108772145661503,0.04949270356344433,0.047977749833732736,0.04653701983092935,0.04516523100203203,0.04385759355084247,0.04260975420470444,0.04141774749560544,0.04027795341423218,0.03918706048841501,0.0381420334947343,0.03714008514060939,0.03617865115998306,0.03525536835289548,0.03436805517146881,0.03351469451477412,0.03269341844518361,0.031902494580592466,0.031140313952103187,0.030405380146370124,0.02969629957677511,0.029011772748876126,0.028350586403510583,0.027711606436328435,0.027093771505646867,0.0264960872517222,0.025917621060250876,0.025357497311162457,0.024814893060980742,0.024289034113222197,0.023779191436697173,0.023284677896225715,0.022804845264405245,0.02233908148657119,0.021886808174229933,0.0214474783049657,0.021020574109188676,0.020605605126238356,0.020202106414164454,0.01980963689916894,0.019427777852127653,0.019056131480899435,0.018694319628242067,0.018341982566201346,0.017998777878698535,0.017664379424862313,0.0173384763763645,0.01702077232263703,0.016710984438450614,0.016408842708815177,0.016114089206637944,0.015826477418987676,0.015545771618167175,0.015271746274158978,0.015004185505281714,0.014742882564182993,0.01448763935653479,0.014238265990024588,0.013994580351422604,0.013756407709712568,0.013523580343414568,0.013295937190393604,0.013073323518583672,0.012855590616169714,0.012642595499905776,0.012434200640328916,0.012230273702736941,0.012030687302879654,0.011835318776396597,0.011644049961095918,0.01145676699125456,0.01127336010316129,0.011093723451191863,0.010917754933756282,0.010745356028495464,0.010576431636165924,0.010410889932673527,0.010248642228764256,0.010089602836914036,0.009933688944981528,0.009780820496233586,0.009630920075363059,0.009483912800153758,0.009339726218466482,0.009198290210244526,0.009059536894248696,0.008923400539263746,0.008789817479521449,0.008658726034109351,0.008530066430148331,0.008403780729528767,0.008279812759020507,0.008158108043570644,0.008038613742622065,0.007921278589292844,0.007806052832268827,0.00769288818026387,0.007581737748921897,0.0074725560100310385,0.00736529874293453,0.007259922988028797,0.007156387002240351,0.007054650216388896,0.006954673194339576,0.006856417593858223,0.006759846129088278,0.00666492253456722,0.006571611530713997,0.006479878790713891,0.006389690908735989,0.006301015369420694,0.006213820518579357,0.006128075535046379,0.006043750403635917,0.005960815889148771,0.005879243511383541,0.005799005521107598,0.005720074876941864,0.005642425223122994,0.005566030868101248,0.005490866763938232,0.005416908486470781,0.005344132216204835,0.00527251471991186,0.005202033332894808,0.005132665941896423,0.00506439096862228,0.004997187353854051,0.004931034542125427,0.004865912466941283,0.0048018015365147385,0.0047386826200020585,0.00467653703421581,0.00461534653079445,0.004555093283813474,0.00449575987781772,0.00443732929625936,0.004379784910325065,0.004323110468138051,0.004267290084318057,0.00421230822988841,0.004158149722514519,0.004104799717061819,0.004052243696461725,0.004000467462871689,0.003949457129121201,0.0038991991104308163,0.0038496801163949296,0.003800887143218082,0.003752807466196497,0.0037054286324335823,0.00365873845378371,0.0036127250000138884,0.0035673765921761277,0.0035226817961836548,0.0034786294165816654,0.003435208490508286,0.003392408281837152,0.003350218275495817,0.003308628171954397,0.003267627881876838,0.003227207520931399,0.0031873574047532843,0.0031480680440546913,0.003109330139877205,0.0030711345789822876,0.0030334724293735347,0.0029963349359484943,0.002959713516274085,0.0029235997564820274,0.00288798540728081,0.0028528623800788797,0.00281822274321736,0.0027840587183072894,0.0027503626766684046,0.002717127135866806,0.0026843447563464707,0.0026520083381545746,0.002620110817754556,0.0025886452649260794,0.0025576048797489007,0.0025269829896672792,0.0024967730466326824,0.0024669686243230593,0.0024375634154354072,0.0024085512290497146,0.002379925988062479,0.0023516817266865343,0.002323812588016678,0.002296312821657979,0.0022691767814153395,0.0022423989230422763,0.0022159738020476973,0.00218989607155754,0.0021641604802318816,0.0021387618702335453,0.002113695175248307,0.0020889554185547715,0.0020645377111416898,0.0020404372498727184,0.002016649315696142,0.001993169271898727,0.0019699925624026347,0.0019471147101033069,0.001924531315248397,0.0019022380538555978,0.0018802306761687428,0.0018585050051508748,0.0018370569350137005,0.0018158824297815049,0.001794977521889553,0.0017743383108157935,0.0017539609617441803,0.0017338417042600763,0.0017139768310753848,0.0016943626967839654,0.001674995716645599,0.001655872365398116,0.0016369891760967914,0.0016183427389805998,0.0015999297003638376,0.0015817467615534878,0.0015637906777908593,0.0015460582572171025,0.0015285463598622832,0.0015112518966565829,0.0014941718284640958,0.0014773031651378566,0.001460642964595848,0.00144418833191761,0.001427936418460305,0.0014118844209946363,0.001396029580859261,0.0013803691831340466,0.0013649005558307222,0.0013496210691016156,0.0013345281344648572,0.001319619204046664,0.001304891769839649,0.0012903433629769241,0.00127597155302175,0.001261773947272104,0.001247748190079929,0.0012338919621848162,0.001220202980061459,0.001206678995281026,0.0011933177938856093,0.0011801171957755846,0.0011670750541098907,0.001154189254718517,0.0011414577155270465,0.001128878385993183,0.00111644924655441,0.001104168308087244,0.0010920336113772894,0.0010800432265999963,0.0010681952528120535,0.0010564878174526716,0.001044919075855173,0.0010334872107681731,0.0010221904318863276,0.37355299063055414,0.37355299063055414,0.37355299063055414,0.37355299063055414,0.37355299063055414,0.37349388436725345,0.36450705027566577,0.3433250117401901,0.3159772129973382,0.28754201579824046,0.26085020986866564,0.23699457195667614,0.21613449440166685,0.19803366778894563,0.18233306595233945,0.16866915700480187,0.15671717306996635,0.1462017510731341,0.13689475098931875,0.12860889480502694,0.12119075906036346,0.11451441866828325,0.10847610264406077,0.10298985470801417,0.09798406712040218,0.09339873093574129,0.0891832579595478,0.08529475287932478,0.08169663790225652,0.07835755311378265,0.07525047283424975,0.07235199172768625,0.0696417448768086,0.0671019340879057,0.06471693886159785,0.06247299519788598,0.060357929037996715,0.05836093394479467,0.05647238478773574,0.05468368087920829,0.05298711332004668,0.051375752339910985,0.049843351227820056,0.048384264088891016,0.04699337517323796,0.045666037930208916,0.04439802226834572,0.043185468765296824,0.04202484878562238,0.040912929638509454,0.03984674404943491,0.03882356333651422,0.037840873778308075,0.03689635573931285,0.03598786518521911,0.035113417275021944,0.03427117176285127,0.03345941998092306,0.032676573207374514,0.03192115225001724,0.03119177810024174,0.030487163530854556,0.02980610552838626,0.029147478464669394,0.028510227924660785,0.027893365118025794,0.027295961810952656,0.02671714572247845,0.0261560963363158,0.02561204108500498,0.025084251868240023,0.02457204187167294,0.024074762656282975,0.023591801491781757,0.023122578910460795,0.022666546460436008,0.022223184639554312,0.021792000993173664,0.02137252836081396,0.020964323258218672,0.020566964382751317,0.020180051231244552,0.019803202820543493,0.019436056501904594,0.019078266861293287,0.018729504698385857,0.01838945607774413,0.018057821446277305,0.017734314811616962,0.017418662976542015,0.01711060482503048,0.016809890655892838,0.01651628156032995,0.016229548840049048,0.01594947346287945,0.01567584555308568,0.015408463913818756,0.01514713557934457,0.014891675394911251,0.0146419056222654,0.014397655569004963,0.014158761240100093,0.013925065010034578,0.013696415314163846,0.013472666357972913,0.013253677843032989,0.013039314708541644,0.012829446887421112,0.012623949076013899,0.012422700516506067,0.01222558479125316,0.012032489628254693,0.011843306717077595,0.011657931534568738,0.011476263179761526,0.011298204217405128,0.011123660529595538,0.010952541175022777,0.010784758255372775,0.010620226788470037,0.010458864587758883,0.01030059214775732,0.010145332535138496,0.009993011285120517,0.00984355630285733,0.009696897769557943,0.009552968053064203,0.009411701622642378,0.009273034967759658,0.009136906520622682,0.009003256582282682,0.008872027252110825,0.008743162360466504,0.00861660740438982,0.008492309486162029,0.008370217254579817,0.00825028084881065,0.008132451844691855,0.008016683203351327,0.007902929222034377,0.007791145487021755,0.007681288828541335,0.0075733172775704505,0.0074671900244381,0.007362867379141032,0.007260310733286624,0.007159482523590583,0.007060346196851179,0.00696286617633197,0.00686700782948657,0.006772737436964497,0.0066800221628348635,0.0065888300259773665,0.006499129872583258,0.006410891349717489,0.006324084879895349,0.006238681636624613,0.0061546535208752955,0.006071973138432234,0.005990613778093508,0.0059105493906771375,0.005831754568802679,0.005754204527410823,0.005677875084994107,0.005602742645505085,0.005528784180914572,0.005455977214393726,0.005384299804090842,0.00531373052748238,0.0052442484662714745,0.005175833191812672,0.005108464751042267,0.005042123652891149,0.004976790855164366,0.004912447751866151,0.004849076160953625,0.004786658312502084,0.004725176837266674,0.004664614755622407,0.004604955466871305,0.004546182738899899,0.004488280698174613,0.0044312338200628125,0.004375026919464892,0.004319645141748757,0.004265073953973086,0.00421129913638934,0.00415830677421293,0.004106083249651408,0.004054615234183215,0.004003889681075642,0.003953893818134146,0.0039046151406745256,0.003856041404710628,0.003808160620347946,0.0037609610453784867,0.0037144311790677413,0.0036685597561277863,0.003623335740870487,0.003578748321532768,0.0035347869047704862,0.003491441110313192,0.003448700765775027,0.0034065559016162776,0.0033649967462510153,0.00332401372129434,0.0032835974369466955,0.003243738687509099,0.003204428447025353,0.003165657865047771,0.0031274182625205134,0.0030897011277790376,0.003052498112660156,0.003015801028719684,0.0029796018435546984,0.0029438926772255387,0.002908665798776445,0.0028739136228500056,0.002839628706393293,0.002805803745452375,0.002772431572053185,0.0027395051511644704,0.0027070175777423123,0.0026749620738521418,0.0026433319858664792,0.0026121207817363704,0.00258132204833306,0.002550929488859505,0.002520936920328224,0.002491338271104129,0.002462127578510136,0.0024332989864942144,0.0024048467433548217,0.0023767651995245742,0.0023490488054093424,0.002321692109281389,0.002294689755225535,0.00226803648113549,0.002241727116760555,0.002215756581800041,0.002190119884044422,0.0021648121175622567,0.0021398284609305245,0.002115164175508496,0.0020908146037529407,0.002066775167573869,0.002043041366729568,0.002019608777260222,0.001996473049958056,0.0019736299088743275,0.001951075149861136,0.0019288046391474657,0.0019068143119488066,0.0018851001711085134,0.0018636582857712908,0.0018424847900870296,0.0018215758819444777,0.0018009278217339315,0.0017805369311384473,0.0017603995919519514,0.0017405122449247442,0.0017208713886347634,0.0017014735783842255,0.001682315425121291,0.001663393594385229,0.0016447048052756223,0.0016262458294440932,0.0016080134901083644,0.0015900046610881982,0.0015722162658620006,0.0015546452766445273,0.0015372887134844017,0.0015201436433812665,0.0015032071794219533,0.001486476479935499,0.0014699487476658086,0.0014536212289625002,0.00143749121298872,0.0014215560309458186,0.0014058130553146345,0.001390259699112332,0.0013748934151653072,0.0013597116953971014,0.0013447120701311674,0.001329892107408368,0.0013152494123181903,0.0013007816263442018,0.0012864864267227779,0.0012723615258150443,0.0012584046704916057,0.001244613641530039,0.0012309862530242278,0.0012175203518060651,0.0012042138168786181,0.0011910645588607415,0.0011780705194429646,0.0011652296708539488,0.0011525400153379068,0.0011399995846422453,0.0011276064395153852,0.37812282967678873,0.37812282967678873,0.37812282967678873,0.37812282967678873,0.37812282967678873,0.37812282967678873,0.37617446177889624,0.36164643085466047,0.3373858881340803,0.3092866153450736,0.2814695710027083,0.255939931318064,0.2333305986785918,0.2136047586329493,0.19646655319072245,0.18155641186637303,0.16853133100777576,0.15709176353477966,0.1469859766549307,0.138005943645294,0.1299807961032264,0.12277023982168611,0.11625876878681,0.11035086303287533,0.10496710891260154,0.10004110341900088,0.09551699582299342,0.09134753615973135,0.08749252267180681,0.08391756205733886,0.08059307493424003,0.07749349393983804,0.07459661368763926,0.07188306095417886,0.06933586051513181,0.06694007746319669,0.06468252099993807,0.06255149789702524,0.06053660629665821,0.05862856244022824,0.0568190544087859,0.055100618128682353,0.05346653181538235,0.0519107257549107,0.05042770489934102,0.049012482212628286,0.04766052107187402,0.0463676853259246,0.04513019585316574,0.04394459265547035,0.042807701684149,0.041716605724079744,0.040668618769267174,0.039661263411516316,0.038692250837103884,0.0377594630873493,0.03686093728972476,0.0359948516087694,0.03515951270183131,0.03435334449475103,0.03357487811816344,0.03282274286661026,0.03209565806107475,0.031392425711208524,0.03071192388687341,0.030053100720171935,0.029414968968934436,0.02879660108117518,0.028197124707353995,0.027615718613648144,0.027051608954917053,0.0265040658708938,0.025972400373255752,0.025455961494905376,0.024954133675981816,0.02446633436389085,0.023992011807146798,0.0235306430249301,0.023081731936199047,0.022644807633863857,0.02221942279102881,0.021805152187599378,0.021401591346763903,0.021008355271854726,0.02062507727504329,0.020251407890147486,0.019887013862543348,0.019531577209869668,0.019184794347764274,0.01884637527542166,0.01851604281623346,0.01819353190918153,0.017878588947069014,0.01757097115798783,0.017270446026751367,0.016976790753296857,0.01668979174532115,0.0164092441426284,0.01613495137090464,0.01586672472279514,0.015604382964349222,0.015347751965052869,0.015096664349796585,0.014850959171282442,0.014610481601465653,0.014375082640750027,0.01414461884374884,0.013918952060518784,0.013697949192242776,0.013481481960436156,0.013269426688797053,0.013061664096898415,0.012858079104977271,0.012658560649118411,0.012463001506199724,0.012271298127991609,0.012083350483855728,0.011899061911527403,0.011718338975490449,0.011541091332504895,0.011367231603859631,0.011196675253961513,0.011029340474893849,0.0108651480766055,0.010704021382404024,0.010545886129463038,0.0103906703740576,0.01023830440126739,0.01008872063890502,0.009941853575432426,0.009797639681658492,0.0096560173360088,0.009516926753179944,0.009380309915998985,0.009246110510322522,0.009114273862811682,0.008984746881442249,0.008857477998604405,0.008732417116662283,0.008609515555851228,0.008488726004390478,0.008370002470708135,0.008253300237669113,0.008138575818709836,0.008025786915788528,0.007914892379058708,0.007805852168189762,0.007698627315251519,0.007593179889090648,0.007489472961128659,0.007387470572516709,0.0072871377025802994,0.007188440238500298,0.007091344946169626,0.006995819442173707,0.006901832166845468,0.006809352358342851,0.0067183500277086345,0.006628795934865403,0.006540661565506095,0.006453919108840722,0.006368541436163628,0.006284502080202365,0.00620177521521967,0.006120335637832858,0.006040158748521744,0.005961220533797166,0.00588349754899934,0.00580696690170445,0.005731606235710948,0.005657393715583236,0.005584308011730808,0.005512328285998375,0.005441434177750388,0.005371605790427262,0.005302823678555707,0.0052350688351949235,0.0051683226798027344,0.005102567046502349,0.005037784172738055,0.004973956688302045,0.0049110676047190716,0.004849100304976159,0.004788038533581712,0.004727866386945065,0.004668568304061872,0.004610129057494804,0.004552533744639487,0.004495767779262596,0.004439816883305525,0.004384667078941457,0.004330304680877601,0.004276716288893486,0.004223888780607722,0.004171809304462891,0.00412046527292369,0.004069844355878749,0.00401993447423954,0.003970723793730325,0.003922200718860361,0.0038743538870748165,0.0038271721630762463,0.0037806446333115457,0.0037347606006185624,0.0036895095790276692,0.003644881288711164,0.003600865651078168,0.003557452784008133,0.003514632997219163,0.0034723967877670894,0.0034307348356694346,0.003389637999652384,0.0033490973130150714,0.00330910397960796,0.003269649369922206,0.0032307250172847303,0.0031923226141579203,0.0031544340085388933,0.003117051200455942,0.0030801663385587484,0.00304377171680021,0.003007859771205343,0.002972423076726715,0.002937454344182115,0.0029029464172725125,0.0028688922696783227,0.0028352850022300867,0.0028021178401533117,0.002769384130383745,0.0027370773389515505,0.002705191048432174,0.002673718955462349,0.002642654868318161,0.002611992704554871,0.002581726488705579,0.0025518503500373264,0.0025223585203633966,0.0024932453319089633,0.0024645052152301897,0.0024361326971839912,0.002408122398947454,0.002380469034085846,0.002353167406666708,0.002326212409420251,0.002299599021943593,0.0022733223089481144,0.0022473774185484924,0.0022217595805928024,0.0021964641050313534,0.00217148638032471,0.0021468218718887306,0.0021224661205759263,0.002098414741192575,0.0020746634210495043,0.0020512079185470563,0.002028044061792296,0.002005167747247957,0.001982574938412209,0.001960261664528758,0.00193822401932556,0.0019164581597826246,0.001894960304927247,0.0018737267346562254,0.0018527537885846474,0.0018320378649197284,0.001811575419360163,0.0017913629640195017,0.0017713970663731937,0.0017516743482289992,0.0017321914847193102,0.00171294520331599,0.0016939322828662205,0.001675149552649326,0.0016565938914537475,0.0016382622266741538,0.001620151533427283,0.0016022588336871448,0.0015845811954383266,0.0015671157318471805,0.0015498596004507635,0.0015328100023622752,0.001515964181493662,0.0014993194237941424,0.0014828730565046074,0.0014666224474276753,0.00145056500421235,0.001434698173653889,0.001419019441007759,0.0014035263293176988,0.0013882163987574076,0.0013730872459858138,0.0013581365035149815,0.0013433618390911628,0.0013287609550881303,0.001314331587912619,0.0013000715074218874,0.001285978516352446,0.0012720504497605487,0.0012582851744735446,0.0012446805885520916,0.3827485122552524,0.3827485122552524,0.3827485122552524,0.3827485122552524,0.3827485122552524,0.3827485122552524,0.3827485122552524,0.37735843240911865,0.3590024525361587,0.33304255866412436,0.30487310042579985,0.2778111084711219,0.2532996377125132,0.2316913695431864,0.21284239290820783,0.1964327561484891,0.18211232324985674,0.1695581223329708,0.15849174652655243,0.14868030655400272,0.13993147038126158,0.13208704223251358,0.1250168168132723,0.11861327667671355,0.11278722324819598,0.10746425523795905,0.10258195815822015,0.09808766895651055,0.09393669742534427,0.09009090737942166,0.08651758039222072,0.08318850155068896,0.08007922008292602,0.077168448229339,0.07443756988114679,0.07187023679721649,0.06945203504919278,0.0671702080722615,0.06501342557632614,0.06297158980150483,0.06103567233488559,0.059197576059337384,0.057450017867318216,0.05578642860983375,0.054200867414102565,0.052687948031119945,0.05124277529645062,0.04986089012658681,0.048538221746679634,0.04727104606730407,0.046055949308237455,0.0448897961148213,0.043769701533494916,0.04269300631285194,0.04165725507898742,0.04066017700248315,0.03969966863130524,0.03877377861163204,0.03788069405861447,0.03701872837266875,0.03618631032539407,0.035381974263160906,0.03460435129688608,0.03385216136389379,0.03312420606256233,0.03241936217324389,0.031736575789775796,0.031074856995336717,0.030433275024481152,0.029810953860201696,0.029207068220899513,0.028620839897475107,0.02805153440527724,0.027498457919683014,0.02696095446757979,0.026438403350048986,0.025930216774295058,0.02543583767516935,0.024954737708751958,0.024486415402278243,0.024030394446327707,0.023586222116603536,0.02315346781394741,0.02273172171232113,0.022320593505517315,0.02191971124425627,0.02152872025610316,0.0211472821413934,0.020775073838952492,0.020411786755992572,0.02005712595708044,0.019710809407512055,0.019372567266879897,0.019042141228957265,0.018719283904381046,0.018403758242911787,0.018095336992331002,0.01779380219126598,0.017498944693488755,0.017210563721408872,0.016928466446683037,0.016652467596032172,0.016382389080494518,0.016118059646510263,0.015859314547332526,0.015605995233392749,0.015357949060347771,0.015115029013638632,0.014877093448464964,0.014644005844184866,0.014415634572199213,0.014191852676462535,0.013972537665824038,0.013757571317447934,0.013546839490636524,0.013340231950406772,0.013137642200228268,0.01293896732337126,0.012744107832340531,0.01255296752592602,0.012365453353413025,0.012181475285537877,0.012000946191797281,0.011823781723749939,0.01164990020396197,0.01147922252028773,0.011311672025180103,0.011147174439753533,0.01098565776234079,0.010827052181290996,0.010671289991788652,0.01051830551647059,0.010368035029641535,0.010220416684896734,0.010075390445975758,0.009932898020672936,0.009792882797654877,0.009655289786029711,0.009520065557530521,0.009387158191182413,0.009256517220323479,0.00912809358186999,0.009001839567709238,0.008877708778117976,0.008755656077109255,0.008635637549609571,0.008517610460385511,0.00840153321463099,0.008287365320139255,0.008175067350984142,0.008064600912642264,0.007955928608484679,0.00784901400758147,0.007743821613754348,0.007640316835822522,0.0075384659589892615,0.007438236117313974,0.007339595267227235,0.007242512162038348,0.00714695632739343,0.007052898037643891,0.006960308293081882,0.00686915879801077,0.006779421939610909,0.0066910707675685655,0.006604078974435271,0.006518420876688467,0.006434071396460478,0.0063510060439130895,0.006269200900227456,0.006188632601185469,0.006109278321319514,0.006031115758604455,0.0059541231196743654,0.005878279105539912,0.00580356289778758,0.005729954145241628,0.00565743295107159,0.005585979860325013,0.00551557584787298,0.0054462023067495206,0.005377841036870769,0.005310474234120359,0.005244084479784399,0.005178654730326552,0.005114168307487727,0.005050608888699366,0.004987960497798388,0.004926207496033742,0.004865334573351189,0.004805326739949779,0.0047461693180974596,0.004687847934197441,0.004630348511097104,0.004573657260628339,0.0045177606763744434,0.004462645526653006,0.004408298847708215,0.0043547079371058514,0.004301860347321794,0.004249743879520296,0.004198346577513245,0.004147656721895224,0.004097662824348008,0.004048353622109594,0.003999718072600247,0.003951745348202959,0.0039044248311911845,0.0038577461087995995,0.0038116989684338987,0.003766273393013014,0.003721459556442104,0.0036772478192100945,0.0036336287241083725,0.0035905929920674053,0.0035481315181055627,0.003506235367389132,0.003464895771398108,0.003424104124195117,0.0033838519787940625,0.003344131043626037,0.0033049331790977344,0.00326625039424181,0.003228074843454638,0.0031903988233193494,0.003153214769512063,0.003116515253787213,0.0030802929810416907,0.003044540786453802,0.0030092516326954873,0.002974418607215387,0.002940034919591193,0.0029060938989478456,0.0028725889914415475,0.0028395137578061725,0.0028068618709608073,0.002774627113677031,0.0027428033763029058,0.0027113846545437827,0.0026803650472969885,0.0026497387545393277,0.0026195000752662284,0.0025896434054798827,0.0025601632362266874,0.002531054151681243,0.0025023108272762508,0.002473928027876741,0.0024459006059979645,0.0024182235000644982,0.002390891732711051,0.0023639004091226194,0.0023372447154133115,0.0023109199170432263,0.002284921357271085,0.0022592444556433443,0.0022338847065175387,0.0022088376776194215,0.0021840990086329265,0.0021596644098223973,0.0021355296606852627,0.0021116906086357285,0.002088143167717582,0.002064883317345803,0.002041907101076441,0.002019210625403133,0.001996790058580823,0.0019746416294750577,0.0019527616264364731,0.001931146396200182,0.0019097923428085034,0.0018886959265576157,0.001867853662966709,0.0018472621217693263,0.0018269179259263258,0.0018068177506601803,0.0017869583225092866,0.0017673364184028983,0.0017479488647553429,0.001728792536579303,0.0017098643566179938,0.0016911612944949703,0.001672680365882155,0.0016544186316849333,0.001636373197244145,0.0016185412115544827,0.0016009198664992473,0.0015835063961002593,0.0015662980757835908,0.0015492922216600222,0.0015324861898200698,0.0015158773756435188,0.0014994632131224079,0.0014832411741980724,0.0014672087681112428,0.001451363540765098,0.0014357030741012286,0.0014202249854875287,0.0014049269271186153,0.0013898065854278593,0.0013748616805110024,0.3874307204144401,0.3874307204144401,0.3874307204144401,0.3874307204144401,0.3874307204144401,0.3874307204144401,0.3874307204144401,0.38734632688982606,0.37837770418534183,0.35762753754795973,0.33085911738339246,0.3029265155509001,0.27656341529971834,0.25285551155473807,0.23199263629525685,0.2137762206576886,0.19788046077232674,0.18396770958740416,0.17173227637398655,0.16091246950428484,0.1512897960582387,0.14268371651003006,0.13494547180753388,0.12795233036779585,0.12160267318566187,0.11581195839043726,0.11050947013383788,0.10563572132252233,0.10114038405458696,0.09698063922414947,0.09311985669419696,0.08952653559160957,0.08617344945046714,0.08303695309614373,0.08009641771048759,0.07733376793020617,0.07473310055483796,0.07228036885588637,0.06996311988700517,0.06777027483297701,0.06569194448285705,0.06371927350909523,0.061844308484110155,0.06005988554844407,0.05835953442129464,0.05673739606038755,0.05518815176983709,0.053706961948482144,0.05228941298810308,0.05093147108735748,0.049629441955216125,0.04837993554745731,0.04717983511867733,0.046026269986511756,0.04491659149894181,0.04384835177374751,0.042819284843951984,0.041827289897318064,0.040870416343277344,0.03994685047868634,0.039054903555976586,0.03819300108427335,0.03735967321709625,0.036553546099784236,0.03577333406639736,0.035017832590166394,0.034285911903681056,0.03357651121554416,0.03288863345923157,0.03222134051771399,0.03157374887410641,0.030945025644534378,0.030334384954429316,0.029741084623939512,0.029164423132013357,0.02860373683206554,0.028058397395164508,0.027527809459228034,0.027011408465042193,0.02650865866192845,0.02601905126767931,0.025542102768932685,0.025077353349602146,0.024624365436173436,0.024182722349806687,0.023752027056166802,0.023331901004752572,0.022921983050321632,0.022521928449662647,0.022131407927615858,0.021750106806803716,0.021377724196014348,0.021013972232670906,0.020658575375188965,0.020311269741413864,0.019971802489652375,0.019639931239119002,0.01931542352686844,0.018998056298563316,0.018687615430614538,0.018383895281452484,0.018086698269868594,0.017795834478517174,0.01751112128084696,0.017232382989841075,0.016959450527087097,0.016692161110806288,0.016430357961583496,0.016173890024617277,0.01592261170742548,0.01567638263199464,0.015435067400450354,0.015198535373393383,0.014966660460094086,0.014739320919819386,0.014516399173594513,0.014297781625764264,0.014083358494761928,0.013873023652524026,0.01366667447204683,0.013464211682595442,0.013265539232120918,0.013070564156465599,0.012879196454969643,0.012691348972105398,0.01250693728480913,0.012325879595182731,0.012148096628269314,0.011973511534624993,0.01180204979741724,0.011633639143813837,0.011468209460423847,0.011305692712577621,0.011146022867240892,0.010989135819374878,0.010834969321556046,0.010683462916695407,0.010534557873691732,0.010388197125871286,0.010244325212075125,0.01010288822025504,0.00996383373346115,0.009827110778096707,0.009692669774331147,0.009560462488567739,0.009430441987860864,0.009302562596196936,0.009176779852544328,0.009053050470590697,0.00893133230008785,0.00881158428973108,0.008693766451496622,0.00857783982637694,0.008463766451444983,0.008351509328188548,0.008241032392059054,0.008132300483175908,0.008025279318140722,0.007919935462908242,0.00781623630666883,0.007714150036699659,0.007613645614138795,0.007514692750647695,0.00741726188592003,0.0073213241660026246,0.007226851422393479,0.007133816151886119,0.007042191497124278,0.006951951227845341,0.006863069722775815,0.006775521952158036,0.006689283460880699,0.006604330352186319,0.00652063927193698,0.006438187393412543,0.006356952402621477,0.006276912484103845,0.006198046307208248,0.006120333012820993,0.006043752200534431,0.005968283916234152,0.005893908640090101,0.005820607274937277,0.0057483611350281965,0.005677151935147054,0.005606961780069205,0.0055377731543541555,0.005469568912459336,0.005402332269164107,0.0053360467902895834,0.005270696383707476,0.005206265290624554,0.005142738077133762,0.0050800996260233055,0.005018335128831882,0.00495743007814489,0.004897370260120353,0.004838141747237559,0.004779730891261327,0.004722124316412035,0.004665308912737525,0.004609271829677532,0.004554000469815067,0.00449948248280801,0.004445705759495778,0.004392658426172949,0.004340328839027179,0.004288705578733711,0.0042377774452021484,0.004187533452471017,0.004137962823743248,0.004089054986560792,0.004040799568111702,0.003993186390666118,0.003946205467137705,0.0038998469967645184,0.0038541013609080937,0.0038089591189651058,0.003764411004388797,0.003720447920816488,0.003677060938300561,0.003634241289637913,0.003591980366797241,0.003550269717439304,0.0035091010415279787,0.003468466188029826,0.0034283571516978695,0.003388766069939208,0.003349685219762266,0.003311107014802102,0.003273024002420961,0.00323542886088278,0.0031983143965976226,0.003161673541436235,0.003125499350111071,0.003089784997622309,0.0030545237767675626,0.003019709095711869,0.002985334475618287,0.002951393548335763,0.0029178800541432774,0.0028847878395490256,0.0028521108551417007,0.0028198431534942952,0.0027879788871175595,0.0027565123064622493,0.0027254377579686243,0.002694749682162499,0.002664442611795116,0.0026345111700274942,0.002604950068656687,0.0025757541063832433,0.002546918167119158,0.0025184372183340055,0.002490306309439869,0.002462520570212759,0.002435075209250092,0.002407965512463085,0.0023811868416035702,0.002354734632823259,0.0023286043952660427,0.0023027917096913497,0.0022772922271281897,0.0022521016675593566,0.0022272158186339703,0.0022026305344091074,0.0021783417341186087,0.002154345400968815,0.002130637580960838,0.0021072143817376637,0.002084071971456877,0.0020612065776872694,0.0020386144863291963,0.0020162920405579327,0.0019942356397898366,0.001972441738669823,0.0019509068460808532,0.0019296275241739863,0.0019086003874187961,0.0018878221016739149,0.0018672893832764033,0.0018469989981505775,0.0018269477609350188,0.0018071325341276346,0.001787550227248238,0.0017681977960185902,0.0017490722415584735,0.0017301706095990532,0.0017114899897114058,0.0016930275145510339,0.0016747803591176974,0.0016567457400296082,0.0016389209148126673,0.001621303181203631,0.0016038898764671207,0.0015866783767264003,0.0015696660963069123,0.0015528504870931893,0.0015362290378981636,0.0015197992738448674,0.39217014453436727,0.39217014453436727,0.39217014453436727,0.39217014453436727,0.39217014453436727,0.39217014453436727,0.39217014453436727,0.39217014453436727,0.39156357368846756,0.38027354311414213,0.35825267855588794,0.33121544170630823,0.3035989080228261,0.27777151910070097,0.2546161760128034,0.2342386599335167,0.21641774301475958,0.2008309631664003,0.18715277923945042,0.1750910359803071,0.1643962951522425,0.1548602941470773,0.14631072594076483,0.13860534314627432,0.13162652704372038,0.12527666511195035,0.11947435795222408,0.11415136081788639,0.10925013638183295,0.10472190092998218,0.10052506297823752,0.0966239719049591,0.09298791101918995,0.08959028353029813,0.08640795115172822,0.08342069392674857,0.0806107667497369,0.07796253338543395,0.0754621629070735,0.07309737666085402,0.07085723633477534,0.06873196563237262,0.06671279955331699,0.06479185646044176,0.06296202904088034,0.06121689100326498,0.05955061693710677,0.05795791322705223,0.056433958289067304,0.05497435069761896,0.05357506401717073,0.052232407350153,0.05094299077582295,0.049703694987519524,0.04851164454526945,0.047364184251327004,0.046258858231159085,0.045193391364931564,0.0441656727667276,0.043173741052396714,0.04221577117380291,0.041290062628146246,0.04039502887732583,0.03952918783457032,0.03869115329445636,0.037879627198685234,0.03709339264373426,0.036331307548415126,0.03559229890955612,0.03487535758284125,0.03417953353339667,0.03350393150737442,0.03284770708142732,0.032210063051984546,0.03159024613057229,0.030987543915178026,0.030401282111034923,0.029830821977049945,0.029275557976694004,0.028734915614407486,0.02820834944057322,0.02769534120983025,0.02719539817910607,0.026708051533069196,0.026232854925953904,0.025769383129795567,0.025317230780054833,0.024876011210518672,0.024445355370090648,0.02402491081479826,0.02361434076896243,0.023213323250003942,0.022821550251901065,0.02243872698271801,0.022064571152051713,0.02169881230459862,0.02134119119637845,0.020991459210427485,0.02064937780907712,0.020314718020140787,0.019987259954572196,0.019666792353357953,0.0193531121615697,0.019046024127699367,0.01874534042651803,0.01845088030385607,0.018162469741819853,0.01787994114308055,0.017603133032958396,0.017331889778149263,0.017066061320999422,0.01680550292833105,0.016550074953893244,0.016299642613566968,0.016054075772539443,0.015813248743694892,0.015577040096535825,0.015345332475996553,0.015118012430542423,0.014894970249011898,0.014676099805673836,0.014461298413020648,0.014250466681845871,0.014043508388188686,0.013840330346743526,0.013640842290379469,0.01344495675541671,0.01325258897234165,0.013063656761662271,0.012878080434613508,0.012695782698459189,0.012516688566134292,0.012340725269998158,0.012167822179479162,0.011997910722408453,0.011830924309842795,0.011666798264204685,0.01150546975056187,0.011346877710888218,0.011190962801156936,0.011037667331116881,0.01088693520662674,0.010738711874413689,0.010592944269139483,0.010449580762662966,0.010308571115386883,0.010169866429596339,0.010033419104687576,0.009899182794200378,0.009767112364567555,0.009637163855503953,0.009509294441953113,0.009383462397526922,0.009259627059364652,0.009137748794348378,0.009017788966615266,0.008899709906303517,0.008783474879483586,0.008669048059217158,0.008556394497696445,0.008445480099415684,0.00833627159533213,0.008228736517969123,0.008122843177426918,0.008018560638258392,0.007915858697174063,0.007814707861543464,0.007715079328655024,0.007616944965708812,0.007520277290507653,0.007425049452819303,0.007331235216383865,0.007238808941536166,0.007147745568423753,0.007058020600792656,0.006969610090320004,0.006882490621471323,0.006796639296863396,0.006712033723109346,0.00662865199713188,0.006546472692923335,0.006465474848736294,0.00638563795468968,0.006306941940771,0.006229367165224531,0.006152894403307447,0.006077504836401294,0.006003180041466865,0.0059299019808264734,0.005857652992265861,0.005786415779441079,0.005716173402580382,0.005646909269470185,0.00557860712671606,0.0055112510512660105,0.005444825442190691,0.005379315012708474,0.005314704782447893,0.005250980069939956,0.0051881264853297715,0.005126129923303309,0.005064976556219478,0.005004652827441368,0.0049451454448596445,0.004886441374602564,0.004828527834923837,0.0047713922902657725,0.004715022445489231,0.004659406240265878,0.004604531843628039,0.004550387648668672,0.004496962267389715,0.0044442445256915744,0.004392223458500098,0.0043408883050272415,0.0042902285041589465,0.004240233689969219,0.0041908936873540584,0.004142198507782492,0.004094138345160629,0.004046703571806092,0.003999884734527358,0.003953672550807436,0.00390805790508666,0.0038630318451422585,0.0038185855785623497,0.0037747104693096134,0.0037313980343744503,0.0036886399405130286,0.0036464280010684857,0.0036047541728724776,0.003563610553225491,0.0035229893769517504,0.003482883013528937,0.0034432839642887037,0.003404184859686597,0.0033655784566398272,0.003327457635929382,0.003289815399666703,0.00325264486882153,0.0032159392808097298,0.003179691987139788,0.0031438964511149533,0.003108546245591351,0.0030736350507890547,0.0030391566521552403,0.0030051049382777495,0.0029714738988482546,0.0029382576226722633,0.002905450295726509,0.002873046199261075,0.002841039707945488,0.0028094252880580058,0.002778197495715683,0.0027473509751457475,0.0027168804569960418,0.0026867807566838373,0.0026570467727819636,0.0026276734854416913,0.002598655954850186,0.0025699893197232925,0.002541668795831443,0.00251368967455829,0.0024860473214915876,0.002458737175044314,0.0024317547451067983,0.00240509561172795,0.0023787554238251653,0.0023527298979225935,0.0023270148169159555,0.0023016060288646397,0.0022764994458093885,0.0022516910426153,0.002227176855839395,0.0022029529826225838,0.0021790155796043344,0.00215536086186089,0.0021319851018654916,0.002108884628470252,0.0020860558259096543,0.0020634951328240654,0.0020411990413040978,0.002019164095954391,0.0019973868929765823,0.0019758640792714253,0.0019545923515585724,0.0019335684555149123,0.0019127891849300392,0.0018922513808788644,0.0018719519309108267,0.0018518877682556477,0.0018320558710444065,0.001812453261546729,0.0017930770054228253,0.0017739242109903357,0.0017549920285059649,0.0017362776494606364,0.0017177783058890763,0.0016994912696925758,0.0016814138519750342,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39696748342836913,0.39599348101551884,0.3838269118800064,0.36145606679586884,0.3344861627840018,0.30713661230308187,0.2816170393938571,0.2587338304272642,0.23856823689832438,0.22089864532831557,0.2054109179289844,0.19178963090354081,0.17975191718024922,0.16905605161093878,0.15949989501945688,0.1509158985756313,0.14316547562637327,0.13613381276124667,0.12972544555771792,0.12386062077402722,0.11847235694349904,0.11350408755970685,0.10890777570082759,0.10464240444957533,0.10067276483367127,0.09696847882866222,0.0935032082213317,0.0902540108035576,0.08720081377703573,0.08432598080628717,0.08161395424317347,0.0790509579856659,0.07662474948670407,0.07432441180122284,0.07214017840804832,0.07006328498941443,0.0680858434871392,0.06620073465065836,0.06440151600271726,0.06268234271421025,0.06103789933203194,0.05946334066753971,0.05795424044645179,0.05650654655893953,0.055116541942221806,0.053780810286245394,0.05249620588281389,0.05125982704566277,0.050068992617325905,0.048921221152169785,0.04781421242615213,0.046745830974945314,0.0457140914050731,0.044717145258690624,0.043753269243169565,0.04282085466243782,0.04191839790887304,0.04104449189329229,0.040197818306411615,0.039377140618840144,0.03858129773835622,0.03780919825330412,0.03705981519959033,0.036332181296351025,0.03562538460179485,0.03493856454642609,0.034270908305775775,0.033621647479022826,0.03299005504371212,0.032375442559994236,0.03177715760073897,0.031194581386397323,0.030627126605732097,0.030074235405477386,0.029535377533785264,0.02901004862380402,0.02849776860513461,0.027998080232124294,0.027510547719011028,0.02703475547294415,0.02657030691671799,0.026116823393850474,0.025673943149326393,0.025241320379914948,0.024818624348568644,0.02440553855786306,0.02400175997790974,0.023606998324567516,0.023220975384149335,0.022843424381125882,0.022474089385662758,0.022112724758056715,0.021759094627402057,0.021412972402037704,0.02107414030950574,0.020742388963968725,0.020417516959163905,0.020099330485143837,0.019787642967182942,0.019482274725361,0.01918305265343195,0.01888980991572091,0.018602385660857618,0.01832062475125995,0.01804437750736162,0.01777349946563245,0.017507851149546876,0.017247297852668417,0.01699170943311878,0.01674096011872843,0.016494928322219417,0.016253496465819674,0.01601655081474782,0.015783981319042465,0.015555681463248316,0.015331548123504997,0.015111481431609999,0.014895384645659124,0.014683164026894978,0.01447472872241131,0.014269990653393605,0.014068864408579273,0.013871267142669933,0.013677118479408511,0.013486340419083746,0.013298857250217653,0.013114595465222888,0.012933483679810032,0.01275545255595983,0.012580434728271877,0.012408364733515597,0.012239178943224507,0.01207281549917279,0.011909214251597564,0.011748316700028355,0.011590065936587913,0.011434406591656558,0.011281284781770776,0.011130648059658115,0.010982445366302778,0.01083662698494431,0.010693144496918888,0.010551950739258688,0.010412999763961574,0.010276246798861693,0.01014164821002177,0.010009161465578521,0.009878745100979695,0.009750358685542287,0.009623962790279,0.009499518956937316,0.009376989668191407,0.009256338318941851,0.00913752918867659,0.00902052741483665,0.008905298967159138,0.008791810622941657,0.00868002994319782,0.008569925249663081,0.008461465602615187,0.008354620779475939,0.008249361254162603,0.008145658177156841,0.008043483356264003,0.007942809238030585,0.007843608889798973,0.007745855982369635,0.00764952477324829,0.007554590090454445,0.007461027316870713,0.0073688123751072775,0.007277921712869019,0.007188332288797739,0.00710002155877696,0.007012967462680156,0.006927148411542804,0.006842543275147094,0.006759131369999434,0.006676892447689651,0.006595806683615054,0.006515854666055516,0.0064370173855914335,0.006359276224845333,0.006282612948540819,0.006207009693863787,0.0061324489611188455,0.006058913604665482,0.005986386824127807,0.005914852155868462,0.0058442934647136005,0.005774694935925314,0.005706041067407188,0.005638316662141474,0.0055715068208431456,0.005505596934829611,0.005440572679093304,0.005376420005575278,0.005313125136628186,0.005250674558666624,0.005189055015995959,0.005128253504813859,0.00506825726738175,0.005009053786354414,0.004950630779270343,0.004892976193191511,0.004836078199490503,0.004779925188780475,0.0047245057659809925,0.004669808745518614,0.004615823146656067,0.004562538188945214,0.004509943287802748,0.004458028050201992,0.004406782270477593,0.004356195926241942,0.004306259174407181,0.0042569623473102496,0.004208295948939488,0.004160250651256754,0.004112817290614877,0.004065986864266518,0.004019750526961184,0.003974099587628429,0.003929025506145175,0.0038845198901826996,0.003840574492133535,0.0037971812061143974,0.003754332065042224,0.0037120192377844458,0.0036702350263760133,0.0036289718633071514,0.0035882223088754303,0.003547979048602254,0.0035082348907123644,0.003468982763671844,0.003430215713787479,0.0033919269028609344,0.003354109605900337,0.003316757208884361,0.0032798632065799247,0.0032434212004101627,0.003207424896372542,0.0031718681030053412,0.0031367447294002562,0.003102048783262557,0.0030677743690131765,0.0030339156859366346,0.0030004670263693595,0.0029674227739296443,0.0029347774017878746,0.002902525470975003,0.0028706616287290697,0.0028391806068789466,0.0028080772202634273,0.0027773463651856183,0.0027469830179016456,0.002716982233141759,0.002687339142664375,0.0026580489538418433,0.00262910694827608,0.002600508480445033,0.002572248976377528,0.0025443239323572724,0.0025167289136539856,0.0024894595532817866,0.002462511550784087,0.0024358806710441674,0.002409562743120411,0.0023835536591063976,0.0023578493730148226,0.002332445899684345,0.0023073393137099138,0.0022825257483941237,0.0022580013947211324,0.002233762500351225,0.002209805368636159,0.002186126357654486,0.0021627218792664247,0.0021395883981882406,0.0021167224310848754,0.002094120545681082,0.0020717793598904557,0.002049695540961913,0.002027865804642695,0.0020062869143587627,0.0019849556804106597,0.001963868959185795,0.001943023652386278,0.0019224167062709967,0.0019020451109136788,0.0018819058994746461,0.0018619961474869297,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40182344444614176,0.40102905654389615,0.3894344639467915,0.36756127340370387,0.34092361756666795,0.3137474288521269,0.2882836018265966,0.26537822090337704,0.2451414515110941,0.22737085512892652,0.2117646210565085,0.19801519638115428,0.18584474736445872,0.1750147753526654,0.1653252074410556,0.15660980787887818,0.14873080889863396,0.14157388880427152,0.1350438569093781,0.12906108804222347,0.12355863158279043,0.11847988742210958,0.1137767429381801,0.10940807874996003,0.10533856721628083,0.10153770271553948,0.09797901551315163,0.09463943137443095,0.09149874727729823,0.08853919999140394,0.08574510927790215,0.08310258133498796,0.08059926112059554,0.07822412452253895,0.075967303171451,0.07381993612164232,0.07177404374891061,0.06982242010229549,0.06795854065106155,0.06617648292930366,0.0644708580299954,0.06283675126129919,0.06126967056976466,0.05976550157157375,0.058320468225717716,0.05693109834048625,0.05559419323420084,0.054306800977633594,0.05306619273390058,0.05186984178490294,0.05071540489440478,0.04960070570904004,0.04852371994128056,0.047482562114544435,0.0464754736810874,0.045500812349063356,0.04455704247716054,0.04364272641378801,0.042756516673797436,0.041897148859361986,0.04106343524338324,0.04025425894384366,0.03946856862632046,0.03870537367932829,0.03796373981374257,0.0372427850432286,0.036541676007506185,0.03585962460466448,0.03519588490244244,0.034549750301737535,0.033920550928490785,0.033307651232661,0.03271044777521234,0.03212836718608439,0.03156086427780616,0.0310074203010047,0.030467541329434706,0.029940756763349126,0.02942661794117511,0.028924696850375492,0.028434584929273504,0.027955891952392824,0.027488244992530227,0.027031287453447395,0.026584678167578847,0.026148090553682397,0.025721211829798658,0.025303742277302782,0.024895394552172538,0.024495893039969536,0.024104973251288797,0.023722381254725623,0.02334787314465441,0.022981214541314656,0.02262218012094032,0.022270553173813646,0.021926125188315788,0.021588695459189886,0.02125807071837921,0.02093406478690985,0.020616498246436857,0.020305198129145243,0.019999997624813644,0.01970073580393643,0.019407257355864873,0.019119412341032545,0.018837055956368705,0.018560048313084224,0.01828825422607182,0.01802154301420023,0.01775978831085941,0.017502867884130247,0.017250663466012853,0.017003060590177973,0.016759948437748865,0.016521219690639032,0.016286770392025852,0.016056499813544834,0.015830310328828916,0.015608107293041422,0.015389798928061197,0.015175296213021867,0.01496451277990389,0.014757364813910392,0.014553770958368847,0.014353652223921274,0.014156931901768694,0.013963535480768103,0.013773390568174611,0.01358642681384247,0.013402575837712054,0.013221771160407365,0.013043948136798312,0.012869043892371644,0.012696997262274277,0.012527748732899384,0.012361240385884254,0.012197415844412397,0.012036220221701737,0.01187760007157761,0.011721503341030346,0.011567879324667017,0.011416678620961887,0.011267853090231067,0.011121355814245086,0.010977141057406766,0.010835164229425267,0.01069538184941256,0.010557751511346665,0.010422231850834783,0.010288782513120896,0.01015736412228478,0.010027938251575157,0.009900467394835062,0.00977491493896674,0.0096512451373941,0.009529423084479311,0.009409414690855536,0.009291186659632,0.009174706463442072,0.009059942322294167,0.008946863182194243,0.00883543869450979,0.008725639196040516,0.008617435689773474,0.008510799826290261,0.00840570388580251,0.008302120760789723,0.008200023939217762,0.008099387488310756,0.00800018603886068,0.007902394770049403,0.007805989394765072,0.007710946145395094,0.007617241760073693,0.00752485346937202,0.007433758983410439,0.007343936479378528,0.007255364589447319,0.00716802238906071,0.00708188938558828,0.006996945507331546,0.006913171092866728,0.006830546880713498,0.006749053999318734,0.006668673957341002,0.006589388634229302,0.0065111802710824404,0.00643403146178027,0.006357925144378357,0.006282844592753667,0.006208773408496928,0.006135695513039904,0.006063595140010887,0.005992456827810213,0.005922265412399452,0.005853006020294273,0.005784664061757943,0.005717225224185908,0.005650675465676073,0.005585001008779636,0.005520188334423624,0.005456224176003403,0.005393095513636724,0.005330789568575081,0.005269293797768176,0.005208595888573956,0.005148683753613057,0.005089545525760555,0.005031169553271533,0.004973544395036221,0.004916658815961344,0.004860501782471505,0.004805062458130077,0.004750330199373462,0.004696294551356136,0.004642945243903725,0.00459027218756875,0.0045382654697887475,0.004486915351141578,0.004436212261695887,0.00438614679745348,0.004336709716881928,0.004287891937532456,0.004239684532743484,0.004192078728425254,0.004145065899923772,0.00409863756896255,0.004052785400657869,0.004007501200608002,0.003962776912052492,0.003918604613099965,0.003874976514023263,0.0038318849546180936,0.003789322401625938,0.00374728144621746,0.003705754801535575,0.003664735300296237,0.0036242158924460655,0.0035841896428734587,0.003544649729174132,0.0035055894394677716,0.0034670021702650706,0.0034288814243842642,0.003391220808914257,0.0033540140332252158,0.0033172549070237542,0.003280937338452197,0.003245055332230463,0.0032096029878401888,0.0031745744977483264,0.00313996414567128,0.0031057663048769855,0.003071975436524503,0.0030385860880405256,0.003005592891530541,0.0029729905622255704,0.0029407738969622044,0.0029089377726955385,0.002877477145044634,0.002846387046868333,0.002815662586872445,0.0027852989482462015,0.0027552913873277705,0.002725635232297928,0.0026963258819016917,0.0026673588041960005,0.0026387295353244486,0.002610433678317126,0.0025824669019154645,0.0025548249394217763,0.002527503587571762,0.0025004987054309965,0.0024738062133136244,0.0024474220917232218,0.0024213423803151253,0.0023955631768801883,0.002370080636348308,0.002344890969812786,0.002319990443573887,0.0022953753782015067,0.002271042147616917,0.0022469871781920082,0.0022232069478670944,0.0021996979852857536,0.002176456868946693,0.0021534802263725727,0.0021307647332943977,0.0021083071128524403,0.002086104134812371,0.0020641526147965883,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40673874357804235,0.40652056753436244,0.3970838402089819,0.3766921950945948,0.35074251204839263,0.3236885526029843,0.2980384665620848,0.27480944106812744,0.2542036042648377,0.23606237986147469,0.22010276322761985,0.206023907709273,0.19354914925223998,0.18243879403785096,0.1724906989038469,0.163536361151413,0.15543584170280286,0.14807285419790245,0.1413504777757906,0.13518758316137214,0.12951591924308684,0.12427776282997707,0.11942403022397283,0.11491276015462658,0.11070789253680777,0.10677828200649102,0.10309689773174358,0.09964017128202264,0.09638746254408885,0.09332062012388018,0.09042361770746113,0.08768225177139141,0.0850838890798857,0.08261725477987669,0.08027225375971322,0.0780398193903933,0.07591178491201205,0.07388077363169776,0.07194010481625086,0.07008371273446479,0.06830607676148659,0.06660216082568728,0.06496736077566745,0.06339745848614516,0.06188858171774505,0.06043716890648119,0.05903993819045086,0.05769386009007197,0.056396133348152314,0.055144163510716285,0.05393554389191634,0.052768038618295564,0.05163956749144133,0.05054819244484629,0.04949210540179018,0.04846961736747402,0.04747914861087314,0.046519219810880565,0.0455884440575483,0.04468551961318406,0.04380922334996789,0.04295840479114028,0.042131980691608645,0.04132893010155879,0.04054828986331772,0.03978915049746298,0.0390506524392938,0.038331982591100745,0.03763237115956657,0.03695108875098456,0.0362874436999552,0.03564077960978536,0.035010473085174805,0.034395931639730544,0.03379659176268066,0.03321191713073983,0.03264139695245409,0.032084544433659615,0.03154089535374348,0.031010006743419832,0.03049145565561797,0.029984838021839988,0.029489767587105677,0.029005874917184832,0.028532806472418362,0.028070223742928536,0.02761780244049168,0.02717523174273267,0.026742213585721986,0.026318462001347687,0.02590370249616734,0.02549767146872034,0.025100115662509297,0.024710791652127348,0.024329465360174055,0.023955911602815544,0.02358991366200609,0.023231262882552475,0.02287975829232376,0.02253520624407382,0.02219742007742769,0.02186621979971073,0.021541431784399507,0.021222888486044478,0.020910428170631275,0.020603894660391302,0.020303137092161087,0.020008009688453905,0.01971837154045023,0.019434086402197452,0.019155022495330087,0.01888105232368681,0.018612052497235555,0.018347903564765258,0.018088489854822105,0.01783369932442975,0.017583423415136946,0.017337556915980955,0.017095997832981012,0.01685864726478777,0.016625409284161827,0.016396190824951546,0.016170901574275663,0.01594945386962785,0.015731762600644773,0.015517745115279945,0.015307321130164458,0.015100412644926637,0.014896943860268387,0.014696841099608315,0.014500032734101059,0.014306449110873198,0.014116022484306106,0.013928686950216172,0.01374437838279242,0.013563034374147713,0.013384594176366955,0.013208998645923658,0.01303619019035429,0.01286611271708182,0.012698711584289616,0.012533933553742308,0.012371726745472324,0.012212040594238383,0.012054825807677331,0.011900034326073616,0.011747619283667013,0.011597534971437558,0.011449736801295705,0.01130418127161722,0.01116082593406329,0.01101962936163148,0.010880551117878275,0.010743551727270345,0.010608592646610156,0.010475636237492139,0.010344645739747534,0.010215585245830635,0.010088419676114636,0.00996311475505353,0.009839636988176298,0.009717953639880771,0.009598032711989567,0.00947984292304398,0.009363353688300904,0.009248535100406869,0.009135357910721375,0.009023793511265935,0.008913813917269387,0.00880539175029257,0.008698500221905,0.008593113117893974,0.008489204782987158,0.008386750106064402,0.00828572450584649,0.008186103917038029,0.008087864776909303,0.007990984012301878,0.007895439027038202,0.007801207689725758,0.0077082683219373135,0.007616599686755125,0.00752618097766538,0.007436991807791821,0.0073490121994526335,0.007262222574034089,0.007176603742165899,0.007092136894189059,0.007008803590906979,0.00692658575460656,0.006845465660344533,0.006765425927486383,0.006686449511490649,0.0066085196959297975,0.00653162008474079,0.006455734594694595,0.006380847448081371,0.006306943165601074,0.006234006559453631,0.006162022726623079,0.006090977042346439,0.006020855153765032,0.005951642973749538,0.005883326674893993,0.00581589268367439,0.005749327674763619,0.005683618565501598,0.005618752510512895,0.005554716896468167,0.005491499336984722,0.005429087667662737,0.005367469941250371,0.005306634422937249,0.005246569585769793,0.005187264106185413,0.005128706859662938,0.005070886916483067,0.005013793537599005,0.004957416170611345,0.004901744445845182,0.004846768172525969,0.004792477335052195,0.004738862089359763,0.004685912759378251,0.0046336198335742845,0.004581973961580131,0.004530965950905772,0.004480586763729939,0.004430827513770625,0.004381679463230733,0.004333134019817398,0.004285182733833575,0.00423781729533782,0.004191029531373024,0.004144811403260224,0.004099155003956402,0.004054052555474248,0.004009496406363002,0.0039654790292467015,0.003921993018420875,0.003879031087504125,0.0038365860671437943,0.0037946509027748303,0.0037532186524285934,0.0037122824845927578,0.003671835676118951,0.0036318716101778293,0.003592383774259928,0.003553365758221755,0.0035148112523744036,0.00347671404561561,0.003439068023602625,0.003401867166965287,0.0033651055495588335,0.00332877733675383,0.0032928767837644003,0.003257398234012124,0.0032223361175253463,0.003187684949373369,0.003153439328133258,0.003119593934390328,0.0030861435292701147,0.0030530829530014797,0.0030204071235100023,0.002988111035041433,0.002956189756813067,0.00292463843169418,0.002893452274913515,0.0028626265727934993,0.0028321566815111203,0.0028020380258833638,0.002772266098178492,0.0027428364569511174,0.0027137447259010703,0.002684986592755778,0.0026565578081744422,0.0026284541846751243,0.0026006715955829434,0.002573205973999422,0.002546053311792297,0.0025192096586057907,0.0024926711208897038,0.002466433860948478,0.0024404940960085163,0.0024148480973038467,0.0023894921891799924,0.002364422748214556,0.0023396362023556327,0.002315129030076471,0.0022908977595465607,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.41171410556066423,0.40624611117608256,0.3887595261108247,0.3641861299265901,0.33737638270900294,0.3113566039381935,0.2874998850536341,0.26619789187082765,0.24737853133154403,0.23079230240032367,0.21614722352802368,0.20316498219039136,0.19160032241297398,0.18124456032442404,0.1719228949007902,0.16348977267489156,0.15582407643145255,0.14882479723975206,0.1424073706401355,0.13650066400707694,0.13104453392589793,0.12598785764007217,0.12128694886430991,0.11690428130842326,0.11280745716089875,0.1089683702852584,0.10536252434565509,0.10196847452453442,0.09876736818324647,0.09574256506088857,0.09287932169946768,0.09016452797336806,0.08758648608977165,0.08513472437156312,0.08279983965962165,0.08057336337160878,0.07844764720249445,0.07641576520463939,0.0744714295845254,0.07260891803316054,0.07082301079281536,0.06910893597415439,0.0674623218901698,0.06587915537903843,0.06435574525587123,0.06288869017134156,0.061474850268804296,0.06011132212542423,0.05879541654099162,0.057524638802953484,0.05629667111060468,0.05510935688694487,0.05396068674498758,0.05284878590779077,0.05177190290876524,0.05072839942215617,0.049716741093385926,0.0487354892558888,0.04778329343550081,0.046858884556004135,0.045961068770031546,0.04508872184882942,0.04424078407236219,0.0434162555681146,0.042614192053048845,0.04183370093832231,0.04107393776099269,0.04033410291090975,0.0396134386245097,0.03891122622025315,0.03822678355322144,0.03755946266869075,0.0369086476366443,0.03627375255103688,0.035654219679232185,0.03504951774855565,0.0344591403581352,0.03388260450539206,0.033319449217568665,0.03276923427956506,0.03223153905023033,0.03170596135993268,0.031192116482922385,0.030689636178578714,0.030198167796173476,0.02971737343823129,0.02924692917804487,0.02878652432724274,0.028335860749684583,0.02789465221827468,0.027462623811545954,0.02703951134717037,0.026625060849742917,0.02621902805042692,0.02582117791623296,0.025431284206889785,0.025049129057403058,0.024674502584584833,0.02430720251593054,0.023947033839366257,0.02359380847250048,0.023247344950096335,0.022907468128610668,0.02257400890669653,0.022246803960665366,0.021925695493977347,0.021610530999876462,0.02130116303638119,0.02099744901286556,0.020699250987537055,0.020406435475158535,0.020118873264412925,0.01983643924433224,0.01955901223928028,0.01928647485198352,0.019018713314154598,0.01875561734428167,0.018497080012170295,0.018242997609876178,0.01799326952866515,0.017747798141674487,0.017506488691964764,0.01726924918567561,0.017035990290003033,0.0168066252357558,0.016581069724240432,0.01635924183825257,0.016141061956964804,0.015926452674502527,0.01571533872203152,0.01550764689317107,0.015303305972568909,0.015102246667483351,0.014904401542215655,0.014709704955264209,0.014518092999059776,0.014329503442160383,0.014143875673786966,0.01396115065059161,0.013781270845545026,0.013604180198854171,0.013429824070808054,0.013258149196464735,0.013089103642097928,0.012922636763315398,0.012758699164783121,0.012597242661476195,0.012438220241390673,0.012281586029651185,0.01212729525395517,0.011975304211288776,0.011825570235868076,0.011678051668245946,0.011532707825537109,0.011389498972715448,0.011248386294932446,0.011109331870821713,0.010972298646742417,0.010837250411924813,0.010704151774482461,0.010572968138249877,0.010443665680419763,0.010316211329941762,0.01019057274665423,0.010066718301119288,0.009944617055135033,0.009824238742893279,0.00970555375276423,0.009588533109678443,0.009473148458084968,0.009359372045464697,0.009247176706373098,0.009136535846998545,0.009027423430211864,0.00891981396109034,0.008813682472899856,0.0087090045135137,0.008605756132257837,0.008503913867162446,0.008403454732606858,0.0083043562073428,0.008206596222884065,0.008110153152245286,0.00801500579902289,0.007921133386801827,0.007828515548878092,0.007737132318287151,0.007646964118123739,0.007557991752148058,0.007470196395664531,0.007383559586665488,0.0072980632172299775,0.007213689525170628,0.0071304210859166085,0.007048240804629332,0.006967131908539728,0.006887077939500837,0.006808062746749631,0.006730070479867954,0.006653085581940417,0.006577092782899476,0.006502077093052807,0.0064280237967880745,0.006354918446446304,0.006282746856362576,0.006211495097065668,0.006141149489632824,0.006071696600194362,0.006003123234584584,0.005935416433131618,0.005868563465585529,0.005802551826177799,0.005737369228808898,0.005673003602361093,0.005609443086129796,0.005546676025373673,0.005484690966977027,0.005423476655222305,0.005363022027669091,0.005303316211137308,0.00524434851778916,0.0051861084413102184,0.0051285856531841836,0.005071769999059511,0.005015651495205977,0.004960220325056197,0.004905466835832859,0.00485138153525682,0.004797955088334506,0.004745178314223263,0.004693042183169979,0.00464153781352415,0.0045906564688208565,0.004540389554932735,0.004490728617288678,0.004441665338158268,0.0043931915339980405,0.004345299152860673,0.004297980271863316,0.004251227094714088,0.004205031949295933,0.004159387285304178,0.004114285671939129,0.0040697197956501095,0.004025682457930529,0.0039821665731621814,0.0039391651665084335,0.0038966713718529707,0.0038546784297855,0.003813179685631264,0.0037721685875239486,0.003731638684521284,0.003691583624760676,0.0036519971536560125,0.0036128731121329565,0.003574205434902259,0.0035359881487707252,0.003498215370987227,0.0034608813076250473,0.003423980251998037,0.0033875065831103523,0.0033514547641388236,0.0033158193409476137,0.0032805949406329933,0.0032457762700994174,0.0032113581146646837,0.0031773353366939296,0.0031437028742622684,0.0031104557398439264,0.003077589019029187,0.0030450978692669714,0.003012977518632991,0.0029812232646232997,0.00294983047297125,0.0029187945764891465,0.002888111073932655,0.0028577755288879364,0.0028277835686808606,0.002798130883308259,0.002768813224389423,0.002739826404139114,0.00271116629436025,0.002682828825456357,0.002654809985463603,0.0026271058191008672,0.0025997124268389627,0.002572625963987443,0.002545842639799015 +0.15610927511594347,0.15610927511594347,0.15472780859064816,0.14659833272291703,0.13384174634465038,0.11965256466716778,0.1060845377627406,0.09401670962754698,0.08363250768170163,0.07481018015275982,0.06733160732240571,0.06097265024280634,0.055535198457175944,0.050854379610130486,0.04679647301453145,0.04325408129222662,0.04014109288821006,0.03738828086446565,0.03493971647430826,0.0327499368589824,0.030781739080614965,0.02900447026359501,0.027392702062580546,0.02592519997136725,0.024584118149565248,0.023354366900946052,0.022223112755931917,0.02117938086762631,0.020213736775798307,0.01931803009804247,0.01848518683156023,0.017709040044915764,0.01698419107131304,0.01630589507982538,0.015669966243105835,0.015072698746422083,0.014510800671916955,0.013981338402125836,0.013481689661139357,0.013009503682755065,0.012562667286468914,0.012139275872602648,0.011737608530889012,0.011356106602932034,0.0109933551562197,0.010648066921802571,0.010319068324270035,0.010005287294861184,0.009705742609331651,0.00941953453388939,0.009145836596776752,0.008883888331439204,0.008632988860724321,0.008392491211130414,0.008161797262457136,0.007940353251935102,0.0077276457634053814,0.007523198141849474,0.007326567281786926,0.007137340745018959,0.006955134169148444,0.006779588933346509,0.006610370052176836,0.006447164271999251,0.006289678347656437,0.006137637479913911,0.005990783896481956,0.005848875561514682,0.005711685000261655,0.005578998227101897,0.0054506137665336196,0.005326341757886489,0.005206003135541719,0.005089428877357843,0.004976459314793788,0.00486694349891302,0.004760738617079625,0.004657709455689194,0.004557727904764582,0.00446067250066953,0.004366428003572894,0.004274885006625509,0.004185939574119705,0.004099492906157587,0.0040154510275968065,0.00393372449925418,0.003854228149532274,0.003776880824812429,0.003701605157101332,0.003628327347560317,0.0035569769646690372,0.003487486755882094,0.003419792471744296,0.00335383270151296,0.0032895487194217845,0.0032268843407925836,0.0031657857872695303,0.003106201560507262,0.0030480823237053123,0.0029913807904249465,0.0029360516201734394,0.002882051320281917,0.0028293381536374203,0.00277787205186952,0.002727614533617697,0.0026785286275375904,0.002630578799729044,0.002583730885293978,0.0025379520237511764,0.0024932105980598573,0.002449476177017659,0.0024067194608182003,0.0023649122295690073,0.002324027294582284,0.0022840384522685763,0.002244920440471133,0.002206648897092486,0.0021692003208748966,0.002132552034203736,0.002096682147815415,0.0020615695272958243,0.0020271937612650107,0.001993535131149958,0.0019605745824544936,0.0019282936974393816,0.0018966746691344589,0.001865700276606526,0.0018353538614133802,0.0018056193051786745,0.0017764810082248296,0.0017479238692079064,0.001719933265699036,0.0016924950356620421,0.0016655954597793346,0.001639221244581666,0.0016133595063384152,0.0015879977556702417,0.001563123882845613,0.0015387261437265012,0.0015147931463303829,0.0014913138379764276,0.0014682774929877741,0.001445673700921147,0.0014234923552980522,0.0014017236428130885,0.0013803580329951831,0.0013593862683009788,0.0013387993546185777,0.0013185885521624066,0.0012987453667404182,0.0012792615413764266,0.0012601290482700147,0.0012413400810794156,0.00122288704751156,0.001204762562205406,0.0011869594398954454,0.001169470688841824,0.0011522895045161011,0.0011354092635303848,0.0011188235177992637,0.0011025259889244608,0.001086510562791664,0.0010707712843712168,0.0010553023527130863,0.0010400981161279926,0.0010251530675465983,0.0010104618400494391,0.0009960192025596653,0.0009818200556926144,0.0009678594277549675,0.000954132470887486,0.0009406344573455392,0.0009273607759112088,0.0009143069284322902,0.0009014685264824879,0.0008888412881381038,0.0008764210348664531,0.0008642036885217484,0.0008521852684436325,0.0008403618886550161,0.0008287297551547525,0.0008172851633016364,0.0008060244952863127,0.0007949442176872251,0.0007840408791079617,0.0007733111078924645,0.00076275160991526,0.0007523591664438485,0.0007421306320706837,0.000732062932711701,0.0007221530636694964,0.000712398087758294,0.0007027951334886148,0.0006933413933095329,0.0006840341219060431,0.0006748706345500643,0.0006658483055027255,0.0006569645664662423,0.0006482169050837094,0.0006396028634847383,0.0006311200368758181,0.000622766072173429,0.0006145386666785714,0.0006064355667912131,0.0005984545667633971,0.0005905935074893316,0.0005828502753316553,0.0005752228009822715,0.0005677090583567187,0.0005603070635210108,0.0005530148736495635,0.0005458305860135555,0.0005387523369984139,0.0005317783011495349,0.0005249066902454297,0.0005181357523970663,0.0005114637711729538,0.0005048890647488451,0.0004984099850813354,0.0004920249171045949,0.00048573227794955124,0.00047953051618456095,0.0004734181110772299,0.0004673935718764383,0.00046145543711402856,0.0004556022739256114,0.0004498326773896402,0.00044414526988451747,0.0004385387004629213,0.00043301164424291544,0.00042756280181529627,0.0004221908986667665,0.0004168946846182205,0.0004116729332779931,0.0004065244415093778,0.0004014480289120671,0.00039644253731717106,0.00039150683029517855,0.00038663979267677256,0.00038184033008590115,0.00037710736848480653,0.00037243985373073494,0.000367836751143779,0.0003632970450857903,0.0003588197385498503,0.0003544038527600602,0.00035004842678133525,0.00034575251713898854,0.00034151519744763216,0.0003373355580493838,0.00033321270566092606,0.0003291457630292261,0.0003251338685957391,0.0003211761761686714,0.0003172718546033146,0.00031342008749005363,0.00030962007284990176,0.000305871022837332,0.0003021721634502705,0.0002985227342468933,0.00029492198806925046,0.0002913691907733791,0.00028786362096577437,0.0002844045697461014,0.0002809913404558307,0.00027762324843283047,0.00027429962077161416,0.0002710197960891418,0.0002677831242960668,0.000264588966373155,0.00026143669415291753,0.00025832569010618184,0.0002552553471335351,0.0002522250683614778,0.0002492342669432393,0.00024628236586398896,0.00024336879775050378,0.00024049300468505545,0.00023765443802344484,0.0002348525582171233,0.00023208683463917478,0.0002293567454142141,0.00022666177725199626,0.00022400142528467703,0.00022137519290762786,0.000218782591623755,0.00021622314089112435,0.0002136963679739653,0.00021120180779684672,0.0002087390028019925,0.00020630750280969465,0.00020390686488163778,0.00020153665318720695,0.0001991964388726003,0.00019688579993271392,0.00019460432108576631,0.00019235159365049275,0.00019012721542598494,0.0001879307905740089,0.0001857619295037872,0.18455392685229713,0.18455392685229713,0.18375080206530053,0.17560942213504394,0.16140571853928518,0.1449441800802034,0.12887382556364213,0.11442146847199877,0.10191024269604346,0.09124516609666217,0.08218725124789909,0.07447668697434341,0.06787881295886748,0.06219628634544434,0.057268152389652896,0.052964732355170116,0.04918186021439765,0.045835706657220546,0.04285850526791984,0.04019515292474223,0.03780055078199709,0.035637537961052686,0.03367528716005746,0.03188805592681896,0.030254210595581595,0.028755459273255714,0.027376245532069826,0.02610326616835617,0.024925085234679272,0.023831823201876896,0.022814905098546102,0.0218668552266782,0.02098112888027806,0.020151973635126212,0.01937431440672756,0.018643657719345005,0.017956011586932188,0.01730781814748201,0.01669589676814917,0.016117395788784884,0.01556975142532305,0.015050652634111799,0.014558010960361472,0.014089934571120533,0.01364470581542936,0.013220761768834015,0.012816677312233448,0.012431150370454431,0.01206298899751472,0.011711100046071607,0.01137447920008058,0.01105220218406069,0.010743416990842254,0.01044733699339037,0.010163234826084238,0.009890436937458077,0.009628318730331396,0.009376300217040277,0.009133842127432767,0.00890044241572113,0.008675633119491268,0.008458977530272447,0.008250067640326009,0.008048521834804975,0.00785398280228852,0.007666115640044944,0.00748460613323233,0.0073091591897470635,0.007139497414586599,0.00697535980947396,0.006816500585118146,0.006662688074929394,0.006513703740241527,0.0063693412581977355,0.0062294056844178275,0.006093712683402406,0.005962087820388884,0.005834365909018369,0.005710390409761966,0.0055900128745677005,0.005473092433648526,0.005359495320730661,0.005249094433454931,0.005141768925933102,0.005037403830755716,0.004935889708003732,0.004837122319040363,0.004741002323075119,0.00464743499466665,0.004556329960502251,0.004467600953941077,0.004381165585936865,0.004296945131086363,0.004214864327649509,0.00413485119049175,0.004056836835986051,0.0039807553179948135,0.003906543474120608,0.003834140781488802,0.0037634892213779607,0.0036945331520732228,0.0036272191893676926,0.003561496094178612,0.003497314666793464,0.0034346276472922497,0.003373389621730896,0.0033135569337010406,0.003255087600911665,0.003197941236461174,0.0031420789744987985,0.0030874633999905406,0.003034058482328906,0.0029818295125443807,0.0029307430438908705,0.002880766835598744,0.002831869799598326,0.0027840219500335204,0.002737194355397394,0.0026913590931306242,0.002646489206538977,0.002602558663891119,0.0025595423195701157,0.0025174158771592184,0.0024761558543514232,0.002435739549576991,0.0023961450102540144,0.002357351002569161,0.0023193369827039546,0.0022820830694272125,0.002245570017977135,0.002209779195164963,0.0021746925556326733,0.0021402926192034643,0.002106562449266762,0.002073485632143622,0.002041046257379811,0.00200922889892014,0.00197801859711716,0.0019474008415319476,0.0019173615544870268,0.001887887075332212,0.001858964145389269,0.001830579893540299,0.001802721822428461,0.0017753777952413063,0.0017485360230471603,0.001722185052659287,0.0016963137550012918,0.0016709113139502666,0.0016459672156348447,0.0016214712381671333,0.001597413441787175,0.0015737841594020859,0.001550573987500632,0.001527773777426311,0.0015053746269929327,0.0014833678724261786,0.0014617450806177319,0.0014404980416770593,0.0014196187617678915,0.0013990994562171255,0.0013789325428832902,0.0013591106357744313,0.0013396265389036858,0.0013204732403726714,0.0013016439066728077,0.0012831318771955862,0.0012649306589421724,0.001247033921424976,0.0012294354917523854,0.0012121293498893013,0.0011951096240864414,0.0011783705864707506,0.0011619066487912875,0.0011457123583135584,0.0011297823938565725,0.0011141115619668024,0.0010986947932238357,0.0010835271386718365,0.0010686037663726962,0.0010539199580754737,0.001039471105997774,0.0010252527097149124,0.001011260373152124,0.0009974898016766158,0.0009839367992850881,0.0009705972658833,0.000957467194654142,0.0009445426695110881,0.0009318198626333069,0.0009192950320800917,0.0009069645194811592,0.0008948247478001659,0.0008828722191689701,0.0008711035127895189,0.0008595152829015931,0.0008481042568135285,0.0008368672329938253,0.0008258010792216178,0.0008149027307934544,0.0008041691887849921,0.0007935975183652542,0.0007831848471617427,0.0007729283636746103,0.0007628253157383538,0.0007528730090289487,0.0007430688056154463,0.0007334101225540867,0.0007238944305236156,0.0007145192525005556,0.0007052821624726677,0.0006961807841898791,0.0006872127899509983,0.0006783758994251906,0.0006696678785071689,0.000661086538204631,0.0006526297335573637,0.0006442953625866347,0.0006360813652740142,0.0006279857225686465,0.0006200064554221716,0.0006121416238500983,0.0006043893260192086,0.0005967476973598566,0.0005892149097024607,0.000581789170437561,0.0005744687216983612,0.0005672518395654987,0.0005601368332930111,0.0005531220445550011,0.0005462058467122918,0.0005393866440985926,0.0005326628713252946,0.0005260329926046984,0.0005194955010908381,0.0005130489182374746,0.0005066917931728152,0.0005004227020902055,0.0004942402476546684,0.0004881430584245567,0.00048212978828795713,0.0004761991159135032,0.00047034974421491865,0.0004645803998292281,0.0004588898326079853,0.0004532768151212411,0.0004477401421738612,0.0004422786303339184,0.000436891117472597,0.00043157646231557436,0.00042633354400534336,0.00042116126167421824,0.00041605853402782713,0.0004110242989385466,0.00040605751304891735,0.00040115715138453183,0.00039632220697622116,0.0003915516904912599,0.0003868446298734176,0.00038220006999141785,0.00037761707229583556,0.00037309471448401636,0.00036863209017285267,0.00036422830857927506,0.00035988249420806646,0.0003555937865470469,0.0003513613397692434,0.0003471843224419356,0.0003430619172424341,0.0003389933206802527,0.00033497774282573503,0.0003310144070447928,0.00032710254973966185,0.00032324142009550313,0.0003194302798327574,0.00031566840296494783,0.0003119550755620003,0.00030828959551877985,0.00030467127232877293,0.00030109942686281645,0.0002975733911526157,0.00029409250817911335,0.000290656131665446,0.00028726362587443274,0.0002839143654104618,0.00028060773502571644,0.000277343129430502,0.0002741199531077543,0.000270937620131482,0.0002677955539891018,0.0002646931874076062,0.00026162996218334557,0.00025860532901550854,0.0002556187473430763,0.00025266968518521804,0.00024975761898507774,0.000246882033456757,0.00024404242143556993,0.00024123828373137562,0.00023846912898496789,0.21840208072003017,0.21840208072003017,0.2181299053313045,0.21046523329854822,0.1949138846442317,0.17593141767533388,0.15692252333194479,0.13959686297988105,0.12448996996946439,0.11156188812149137,0.10055845963848895,0.0911805848407844,0.08315049452072155,0.07623155063945367,0.07022944230837987,0.06498703458147224,0.06037784477218075,0.05629996709591852,0.05267097271714379,0.049423817326806035,0.04650362415758406,0.04386517664173788,0.04147096810908449,0.039289682233869846,0.03729500458112043,0.035464688419045,0.03377981619224193,0.03222421213306872,0.030783972188909922,0.029447085510914753,0.02820312781815663,0.027043011518365186,0.025958780912769215,0.02494344342343954,0.023990829768179615,0.023095477527721172,0.022252533718485887,0.02145767288765468,0.020707027949590787,0.01999713153174107,0.019324866029487398,0.01868742091029865,0.018082256078170097,0.017507070325284316,0.016959774071088684,0.016438465728467525,0.0159414111496647,0.015467025696424757,0.015013858553748574,0.014580578968154085,0.014165964141853856,0.013768888556069827,0.0133883145313402,0.013023283861513475,0.012672910382179558,0.012336373354498914,0.012012911562310574,0.011701818034721144,0.011402435318468756,0.011114151234597457,0.010836395062734332,0.010568634103674014,0.010310370577359533,0.010061138818805156,0.009820502739184892,0.009588053523378395,0.009363407538732731,0.009146204432835866,0.008936105400715185,0.008732791604158357,0.00853596272782852,0.008345335658600314,0.008160643276039225,0.007981633343288448,0.007808067488793821,0.007639720270314154,0.007476378313586636,0.00731783951879795,0.00716391232872833,0.007014415053057166,0.006869175243876777,0.006728029117945038,0.006590821021660267,0.006457402935118195,0.00632763401196725,0.006201380152089984,0.006078513604409468,0.005958912597382248,0.005842460994950401,0.005729047975934039,0.005618567735025981,0.005510919203707308,0.005406005789560176,0.005303735132576071,0.005204018877183994,0.005106772458829067,0.0050119149040324705,0.004919368642946832,0.0048290593335116126,0.004740915696376764,0.0046548693598352205,0.004570854714065358,0.004488808774034997,0.004408671050477613,0.0043303834283888116,0.004253890052538664,0.004179137219531666,0.004106073275983423,0.004034648522410806,0.003964815122469391,0.0038965270171916954,0.0038297398439090303,0.0037644108595624214,0.003700498868125521,0.003637964151888291,0.003576768406361677,0.0035168746785836343,0.003458247308621977,0.0034008518740802724,0.003344655137431729,0.0032896249960122394,0.0032357304345183384,0.0031829414798646887,0.003131229158266531,0.0030805654544182356,0.003030923272652291,0.0029822763999657236,0.0029345994708106994,0.0028878679335527296,0.002842058018503122,0.0027971467074428967,0.0027531117045556802,0.0027099314086951017,0.002667584886915534,0.0026260518492003267,0.0025853126243231125,0.002545348136785792,0.002506139884775817,0.002467669919091357,0.0024299208229855984,0.0023928756928823097,0.0023565181199211222,0.0023208321722897117,0.0022858023783045574,0.0022514137102040647,0.0022176515686179146,0.0021845017676818935,0.002151950520765711,0.002119984426785213,0.002088590457071088,0.0020577559427683886,0.002027468562740773,0.0019977163319577864,0.0019684875903415214,0.0019397709920521524,0.0019115554951926665,0.0018838303519126385,0.0018565850988947797,0.001829809548205872,0.0018034937784963693,0.001777628126533652,0.001752203179053191,0.0017272097649152457,0.0017026389475527672,0.0016784820176984187,0.0016547304863786545,0.0016313760781638436,0.0016084107246627166,0.001585826558252104,0.0015636159060312333,0.0015417712839915251,0.0015202853913933547,0.0014991511053403447,0.0014783614755443592,0.0014579097192725446,0.0014377892164694583,0.0014179935050471415,0.0013985162763367606,0.001379351370694625,0.001360492773257538,0.0013419346098408657,0.0013236711429739866,0.0013056967680680873,0.0012880060097104184,0.0012705935180811717,0.0012534540654875676,0.00123658254301098,0.001219973957262763,0.0012036234272449597,0.0011875261813112967,0.001171677554225659,0.0011560729843137511,0.0011407080107047574,0.0011255782706599269,0.001110679496984258,0.0010960075155191761,0.0010815582427125918,0.0010673276832638284,0.0010533119278409355,0.0010395071508672107,0.001025909608375303,0.0010125156359259212,0.0009993216465891287,0.000986324128985973,0.0009735196453885876,0.0009609048298762013,0.0009484763865458736,0.0009362310877755371,0.0009241657725377638,0.0009122773447627112,0.0009005627717480866,0.0008890190826152263,0.0008776433668092538,0.0008664327726420391,0.0008553845058766774,0.0008444958283516809,0.0008337640566441935,0.0008231865607704987,0.0008127607629228039,0.0008024841362410569,0.0007923542036188728,0.0007823685365420142,0.0007725247539589932,0.0007628205211823417,0.00075325354881971,0.0007438215917340251,0.0007345224480313631,0.0007253539580762375,0.0007163140035330361,0.000707400506432973,0.0006986114282657062,0.0006899447690950336,0.0006813985666975527,0.0006729708957240803,0.0006646598668827856,0.0006564636261434993,0.000648380353962689,0.0006404082645281227,0.0006325456050231213,0.0006247906549094568,0.000617141725228465,0.0006095971579199601,0.0006021553251580946,0.0005948146287041064,0.0005875734992751454,0.000580430395928836,0.0005733838054630994,0.0005664322418308959,0.0005595742455691837,0.0005528083832420802,0.0005461332468975182,0.000539547453537143,0.0005330496445991364,0.0005266384854533594,0.0005203126649088223,0.0005140708947328707,0.0005079119091818726,0.000501834464543056,0.0004958373386872847,0.0004899193306322806,0.0004840792601161649,0.0004783159671810821,0.0004726283117664345,0.0004670151733117045,0.0004614754503683294,0.0004560080602207118,0.00045061193851586226,0.00044528603890156153,0.00044002933267285865,0.000434840808426483,0.00042971947172325243,0.00042466434475804584,0.0004196744660372323,0.00041474889006334296,0.0004098866870268638,0.00040508694250478334,0.0004003487571659752,0.00039567124648304307,0.0003910535404505436,0.00038649478330947016,0.00038199413327765793,0.00037755076228621927,0.0003731638557216539,0.0003688326121735849,0.0003645562431879457,0.0003603339730255498,0.0003561650384257445,0.00035204868837525175,0.0003479841838818897,0.0003439707977531219,0.00034000781437936486,0.0003360945295217784,0.0003322302501046367,0.00032841429401203164,0.00032464598988881906,0.00032092467694580697,0.00031724970476887615,0.0003136204331321901,0.0003100362318152182,0.0003064964804235464,0.2587194925986101,0.2587194925986101,0.2587191364233382,0.25232167148730456,0.2357417070035697,0.2140609705163137,0.19163205238430242,0.17084118567247855,0.1525503689196561,0.13682343365648564,0.12340448096698359,0.11195313793143255,0.10214113541213894,0.09368410072962288,0.08634654476912049,0.07993716971775887,0.07430161674265837,0.06931536036930325,0.06487761343927097,0.06090638188623495,0.057334553405525054,0.0541068380699777,0.051177383698717334,0.048507915726231844,0.046066281495952266,0.043825305713281276,0.04176188560241635,0.03985627133213333,0.03809149028785476,0.03645288361582133,0.03492773089100043,0.03350494435785341,0.03217481842095232,0.03092882326707583,0.02975943393956482,0.028659988051707476,0.027624566760594514,0.02664789473199126,0.025725255688722994,0.024852420808780615,0.024025587768451515,0.023241328643774033,0.02249654521536529,0.02178843048629614,0.021114435434932362,0.020472240195471406,0.019859728997213118,0.01927496830596271,0.018716187702636503,0.018181763109353204,0.01767020203506809,0.017180130563915378,0.01671028185175015,0.016259485931618366,0.01582666065826624,0.015410803646483064,0.015010985078730195,0.014626341274990578,0.014256068932532511,0.013899419955777053,0.013555696807144099,0.013224248318792903,0.01290446591296007,0.012595780185252821,0.01229765781095857,0.012009598739392896,0.011731133645532433,0.011461821611883078,0.01120124801672266,0.01094902260764191,0.010704777741712575,0.010468166775750236,0.010238862591961608,0.010016556245900771,0.00980095572507953,0.009591784807815685,0.009388782013026706,0.009191699632626968,0.009000302839060097,0.008814368861254205,0.008633686222967714,0.008458054038082705,0.008287281357954325,0.008121186566382926,0.007959596818209652,0.007802347517915696,0.007649281834935442,0.0075002502527135445,0.007355110148792932,0.007213725403475131,0.007075966034813595,0.006941707857892174,0.006810832166532762,0.00668322543572446,0.006558779043220324,0.006437389008877046,0.006318955750435012,0.006203383854537423,0.006090581861897736,0.0059804620656016706,0.005872940321618612,0.005767935870670621,0.005665371170668816,0.005565171738999015,0.00546726600398386,0.0053715851649065805,0.0052780630600256445,0.005186636042055217,0.0050972428606194595,0.0050098245512346295,0.004924324330396244,0.004840687496384716,0.004758861335430288,0.004678795032899229,0.004600439589195166,0.004523747740082919,0.004448673881167016,0.004375173996275431,0.00430320558951205,0.004232727620764488,0.004163700444461127,0.0040960857513892045,0.0040298465133966075,0.003964946930813165,0.0039013523824340053,0.00383902937792415,0.0037779455125059986,0.0037180694238040995,0.003659370750728908,0.0036018200942858993,0.0035453889802086803,0.0034900498233156408,0.003435775893498996,0.003382541283259421,0.0033303208767058333,0.0032790903199416744,0.00322882599276871,0.0031795049816383644,0.003131105053787708,0.0030836046325005834,0.003036982773435307,0.002991219141968268,0.0029462939915010054,0.002902188142684046,0.0028588829635130954,0.002816360350253537,0.002774602709155548,0.0027335929389202297,0.00269331441388165,0.002653750967870815,0.0026148868787300448,0.002576706853445969,0.0025391960138745,0.0025023398830289582,0.002466124371906146,0.0024305357668264168,0.0023955607172630178,0.0023611862241407736,0.002327399628581687,0.0022941886010782427,0.0022615411310754623,0.0022294455169442717,0.0021978903563279243,0.002166864536847101,0.0021363572271469477,0.0021063578682719406,0.002076856165355047,0.0020478420796067433,0.00201930582059289,0.0019912378387882857,0.0019636288183948534,0.0019364696704139387,0.001909751525961185,0.0018834657298156603,0.0018576038341925711,0.0018321575927310661,0.0018071189546883535,0.0017824800593323952,0.0017582332305242,0.0017343709714837318,0.0017108859597311584,0.0016877710421970052,0.001665019230494987,0.0016426236963502892,0.0016205777671786596,0.0015988749218095852,0.0015775087863484567,0.0015564731301727518,0.0015357618620563493,0.0015153690264184023,0.0014952887996912243,0.0014755154868032149,0.0014560435177724432,0.0014368674444072262,0.0014179819371089666,0.0013993817817746805,0.0013810618767948004,0.0013630172301431227,0.0013452429565558991,0.001327734274796138,0.0013104865050011319,0.001293495066109563,0.0012767554733656738,0.001260263335897786,0.0012440143543688406,0.0012280043186958178,0.001212229105836597,0.0011966846776412768,0.0011813670787659998,0.0011662724346474154,0.0011513969495350674,0.0011367369045806564,0.0011222886559816528,0.0011080486331776617,0.001094013337098009,0.0010801793384583004,0.001066543276105093,0.0010531018554066007,0.0010398518466881235,0.0010267900837107212,0.0010139134621919513,0.0010012189383667954,0.0009887035275882288,0.0009763643029656183,0.0009641983940399804,0.0009522029854950703,0.0009403753159027147,0.0009287126765019826,0.0009172124100106549,0.0009058719094681879,0.0008946886171091637,0.0008836600232664644,0.0008727836653028176,0.0008620571265704624,0.0008514780353976466,0.0008410440641012842,0.0008307529280251548,0.000820602384602439,0.00081059023244246,0.0008007143104404744,0.000790972496909996,0.0007813627087371031,0.0007718829005557257,0.0007625310639437919,0.0007533052266392794,0.000744203451775725,0.000735223837136599,0.0007263645144281523,0.0007176236485698477,0.0007089994370023502,0.0007004901090122487,0.0006920939250731267,0.0006838091762026609,0.0006756341833349544,0.0006675672967081304,0.0006596068952664354,0.0006517513860765815,0.0006439992037578962,0.0006363488099260263,0.0006287986926495134,0.0006213473659193197,0.0006139933691306246,0.0006067352665766815,0.0005995716469545068,0.0005925011228817792,0.0005855223304250622,0.0005786339286387397,0.000571834599114493,0.0005651230455411199,0.0005584979932741649,0.0005519581889154556,0.0005455023999020269,0.0005391294141042922,0.0005328380394331823,0.0005266271034561375,0.000520495453021459,0.0005144419538911465,0.0005084654903817638,0.000502564965013195,0.0004967392981651896,0.0004909874277412453,0.00048530830883997535,0.00047970091343352625,0.0004741642300529569,0.0004686972634804744,0.000463299034448132,0.0004579685793431382,0.0004527049499193791,0.00044750721301509757,0.00044237445027654775,0.0004373057578875638,0.0004323002463046901,0.00042735703999801825,0.0004224752771973833,0.0004176541096438601,0.0004128927023464986,0.0004081902333439782,0.00040354589347132394,0.0003989588861313673,0.00039442842707092024,0.3067894551065825,0.3067894551065825,0.3067894551065825,0.3023963140824246,0.28543008265857883,0.26103100156077813,0.23469483142056793,0.20974708221179114,0.18754933602135315,0.1683503194159887,0.1519194313670144,0.13787706912189543,0.12583697237666766,0.11545700689786033,0.10645075238740331,0.09858421254309536,0.0916680080913638,0.0855491292683021,0.08010365130914793,0.07523073895485179,0.07084786753652494,0.06688706855427101,0.06329199599921348,0.0600156348141911,0.057018506377211314,0.05426725724537908,0.05173354352049131,0.04939314385081575,0.047225249993318695,0.04521189595854707,0.04333749590891259,0.0415884678896513,0.03995292569549835,0.038420425137963767,0.03698175399435519,0.03562875722722762,0.034354190836850214,0.03315159908029069,0.03201521085585842,0.03093985188385375,0.029920869967869534,0.02895407113677975,0.028035664876812517,0.027162216989410053,0.02633060887217815,0.02553800223066226,0.0247818083990091,0.02405966158587982,0.02336939547477562,0.022709022700444167,0.022076716798983608,0.02147079629207434,0.02088971061776819,0.020332027663543577,0.019796422693407714,0.019281668491124695,0.018786626566994483,0.018310239297054054,0.017851522881670332,0.01740956102581565,0.01698349925641335,0.016572539803220616,0.016175936979256025,0.015792993004930683,0.015423054227026695,0.01506550768974089,0.014719778020183668,0.014385324595255974,0.0140616389607302,0.013748242476768069,0.013444684167050771,0.013150538751313277,0.012865404843303197,0.012588903298183782,0.012320675695138275,0.012060382942446476,0.011807703993679471,0.011562334664819344,0.01132398654317902,0.011092385979921529,0.010867273158808947,0.010648401234531082,0.01043553553463887,0.01022845281966591,0.010026940596553126,0.009830796480954787,0.009639827604406737,0.009453850062729433,0.009272688402351554,0.009096175141550604,0.00892415032387573,0.008756461101250397,0.008592961344488623,0.008433511279137957,0.008277977144751592,0.008126230875848817,0.007978149802972784,0.007833616372378109,0.007692517883015444,0.0075547462395749755,0.007420197720458104,0.0072887727596369295,0.007160375741435911,0.007034914807358283,0.006912301674135242,0.006792451462246467,0.006675282534214826,0.006560716342033205,0.006448677283122651,0.006339092564276413,0.006231892073073469,0.00612700825628881,0.006024376004861711,0.005923932545008552,0.005825617335106226,0.005729371967988211,0.005635140078325969,0.005542867254790838,0.005452500956706863,0.005363990434934207,0.005277286656730648,0.005192342234361315,0.00510911135723967,0.005027549727398989,0.00494761449810173,0.004869264215414575,0.00479245876257996,0.004717159307030306,0.0046433282499004835,0.004570929177899173,0.0044999268174153945,0.004430286990737117,0.004361976574270522,0.004294963458653563,0.004229216510665618,0.004164705536836656,0.004101401248671721,0.004039275229405081,0.003978299902206875,0.003918448499769606,0.0038596950352026323,0.00380201427417269,0.0037453817082263125,0.0036897735292366843,0.0036351666049209918,0.003581538455373822,0.003528867230570822,0.00347713168879398,0.003426311175935481,0.0033763856056385393,0.003327335440236707,0.003279141672452461,0.0032317858078226695,0.003185249847815468,0.003139516273607731,0.00309456803049375,0.0030503885128947924,0.00300696154994516,0.002964271391627243,0.0029223026954320113,0.0028810405135216485,0.0028404702803730853,0.0028005778008798822,0.002761349238894954,0.002722771106193536,0.002684830251839113,0.002647513851935733,0.0026108093997489023,0.002574704696181713,0.0025391878405899102,0.002504247221922379,0.0024698715101742048,0.002436049648138031,0.002402770843443631,0.002370024560872477,0.0023378005149369903,0.002306088662713628,0.0022748791969202974,0.002244162539227159,0.0022139293337933687,0.0021841704410196783,0.0021548769315089438,0.002126040080226908,0.0020976513608543996,0.002069702440325202,0.002042185173541376,0.002015091598259769,0.0019884139301435625,0.0019621445579717026,0.0019362760390017166,0.0019108010944792102,0.001885712605289088,0.001861003607743142,0.0018366672894995044,0.0018126969856081304,0.0017890861746791445,0.001765828475168676,0.0017429176417782621,0.0017203475619641925,0.0016981122525518697,0.0016762058564528943,0.0016546226394801955,0.001633356987258297,0.0016124034022252506,0.0015917565007234446,0.001571411010175363,0.001551361766342608,0.001531603710664418,0.0015121318876733585,0.001492941442485844,0.001474027618364145,0.0014553857543486515,0.0014370112829571798,0.0014188997279494524,0.0014010467021548202,0.001383447905360451,0.0013660991222589328,0.0013489962204528698,0.0013321351485143676,0.0013155119340984265,0.0012991226821079456,0.0012829635729085338,0.0012670308605922667,0.0012513208712882301,0.0012358300015185809,0.0012205547165989351,0.001205491549081066,0.0011906370972374503,0.0011759880235857432,0.0011615410534521994,0.0011472929735727986,0.0011332406307311361,0.0011193809304313978,0.0011057108356061344,0.0010922273653572146,0.001078927593729139,0.0010658086485140497,0.001052867710086687,0.0010401020102693873,0.0010275088312257325,0.0010150855043818774,0.0010028294093752416,0.0009907379730291015,0.0009788086683530555,0.0009670390135680923,0.0009554265711558677,0.0009439689469310985,0.0009326637891371669,0.0009215087875632537,0.0009105016726833395,0.0008996402148159018,0.00088892222330388,0.0008783455457144932,0.000867908067058013,0.0008576077090252278,0.0008474424292432685,0.0008374102205486551,0.0008275091102778253,0.0008177371595742408,0.0008080924627116164,0.0007985731464329816,0.0007891773693052501,0.000779903321088536,0.0007707492221202263,0.0007617133227129429,0.0007527939025666187,0.0007439892701936926,0.0007352977623576177,0.0007267177435240442,0.0007182476053242207,0.000709885766030714,0.0007016306700447539,0.0006934807873950767,0.0006854346132478848,0.0006774906674278762,0.0006696474939494651,0.0006619036605587883,0.0006542577582855443,0.0006467084010045708,0.0006392542250072826,0.000631893888582062,0.0006246260716040758,0.0006174494751336864,0.0006103628210237222,0.0006033648515351151,0.0005964543289606271,0.0005896300352567978,0.0005828907716836016,0.000576235358451772,0.000569662634377545,0.0005631714565447714,0.0005567606999739311,0.0005504292572982461,0.0005441760384465081,0.0005379999703323616,0.0005318999965503391,0.0005258750770777347,0.0005199241879830263,0.0005140463211400504,0.0005082404839480873,0.3641586273096332,0.3641586273096332,0.3641586273096332,0.36194630594531113,0.3456818334677782,0.3188274414026715,0.2881612320438559,0.2582819341307821,0.2313058574556206,0.20779810530909498,0.18760364622984177,0.1703138941636808,0.15547844717530215,0.14268603499379828,0.1315873965976448,0.1218951052663875,0.11337565554202224,0.10584002926869042,0.09913501407545323,0.09313592097118152,0.08774072139165517,0.0828654155560626,0.07844040210441468,0.0744076376315402,0.07071841053215173,0.06733158985656335,0.0642122411208272,0.06133052613922516,0.058660823489059294,0.056181021164422244,0.053871944318956,0.05171688958226289,0.04970124393411744,0.04781217105338487,0.046038351815023956,0.04436976848235482,0.0427975243505502,0.04131369230384504,0.03991118707420193,0.03858365702408598,0.037325392088004235,0.036131245148317254,0.034996564628944696,0.03391713649547239,0.03288913417458407,0.031909075166560996,0.030973783335577824,0.030080356033760473,0.029226135354549564,0.028408682925329415,0.027625757743172084,0.026875296635161205,0.026155396988985998,0.025464301452925216,0.02480038434885736,0.02416213957930695,0.023548169840791444,0.022957176982168724,0.022387953368986108,0.021839374133704997,0.021310390207801764,0.02080002204538671,0.02030735395972147,0.01983152900404659,0.019371744336721043,0.018927247018145316,0.01849733019329805,0.018081329619288072,0.01767862050211954,0.01728861461105378,0.016910757642565846,0.016544526809107438,0.016189428630623663,0.015844996909225716,0.015510790869554855,0.015186393449230002,0.01487140972545931,0.01456546546532024,0.014268205788522665,0.013979293932604192,0.013698410111525174,0.01342525045951385,0.013159526052839649,0.01290096200287755,0.012649296614478155,0.012404280604225139,0.012165676373656438,0.011933257333005022,0.011706807271398958,0.011486119769841175,0.011270997653619132,0.011061252481078431,0.010856704065984876,0.01065718003091846,0.010462515389374752,0.010272552154441587,0.010087138972102344,0.00990613077736766,0.009729388471603862,0.009556778619540992,0.0093881731645756,0.009223449161094082,0.009062488522633506,0.008905177784805313,0.008751407881975062,0.008601073936777556,0.008454075061613553,0.008310314171341494,0.008169697806428119,0.008032135965889973,0.00789754194939311,0.007765832207931813,0.007636926202548791,0.0075107462705904186,0.007387217499038578,0.00726626760448093,0.007147826819318258,0.007031827783835287,0.006918205443780614,0.006806896953136104,0.006697841581766845,0.006590980627669594,0.006486257333554088,0.0063836168075109305,0.006283005947530102,0.006184373369658989,0.00608766933959255,0.005992845707507085,0.005899855845960527,0.0058086545906883445,0.005719198184143549,0.005631444221629736,0.005545351599890488,0.005460880468025003,0.0053779921806091525,0.005296649252903815,0.00521681531804712,0.005138455086125537,0.005061534305029168,0.004986019723002206,0.004911879052800283,0.004839080937378853,0.0047675949170337415,0.004697391397923625,0.004628441621907925,0.004560717637633595,0.004494192272814503,0.00442883910764364,0.004364632449285499,0.004301547307397424,0.004239559370632734,0.004178644984077512,0.004118781127581242,0.004059945394937829,0.004002115973879093,0.003945271626844662,0.0038893916724911,0.00383445596791025,0.0037804448915230563,0.0037273393266198827,0.0036751206455188246,0.0036237706943158202,0.0035732717781988654,0.0035236066473048875,0.003474758483093948,0.003426710885219489,0.0033794478588743573,0.003332953802590597,0.0032872134964767397,0.0032422120908724918,0.0031979350954042048,0.003154368368425368,0.0031114981068245734,0.0030693108361884813,0.003027793401303701,0.0029869329569847214,0.0029467169592146576,0.002907133156587158,0.002868169582035843,0.00282981454484237,0.0027920566229105185,0.002754884655296566,0.002718287734986676,0.002682255201910191,0.00264677663618199,0.002611841851563648,0.002577440889135692,0.0025435640111735485,0.0025102016952180846,0.0024773446283355037,0.002444983701558223,0.002413110004500519,0.002381714820142562,0.002350789619777145,0.002320326058111943,0.002290315968523496,0.0022607513584561507,0.002231624404961267,0.002202927450372142,0.0021746529981086296,0.0021467937086085743,0.0021193423953803888,0.0020922920211730927,0.0020656356942596044,0.002039366664829823,0.0020134783214886625,0.001987964187856947,0.0019628179192705862,0.001938033299575063,0.00191360423801245,0.0018895247661967704,0.0018657890351761741,0.001842391312578061,0.0018193259798347239,0.0017965875294872339,0.0017741705625640405,0.0017520697860331433,0.0017302800103245343,0.0017087961469210017,0.0016876132060149956,0.0016667262942298407,0.0016461306124023298,0.0016258214534259766,0.0016057942001521123,0.001586044323347344,0.001566567379705895,0.0015473590099142603,0.0015284149367677153,0.0015097309633362423,0.0014913029711786947,0.001473126918603613,0.0014551988389756132,0.001437514839065189,0.001420071097441652,0.0014028638629071408,0.0013858894529707668,0.0013691442523619006,0.0013526247115807682,0.0013363273454861863,0.0013202487319186414,0.0013043855103579325,0.0012887343806145856,0.0012732921015534016,0.0012580554898490907,0.0012430214187724195,0.0012281868170062656,0.0012135486674906299,0.0011991040062960545,0.0011848499215240018,0.0011707835522342862,0.001156902087398176,0.0011432027648766315,0.0011296828704232187,0.001116339736710415,0.0011031707423794091,0.0010901733111122207,0.0010773449107257223,0.001064683052286914,0.0010521852892490726,0.0010398492166077019,0.0010276724700764297,0.0010156527252818085,0.0010037876969766837,0.000992075138271817,0.0009805128398847405,0.0009690986294061057,0.0009578303705825202,0.0009467059626156523,0.0009357233394772817,0.0009248804692394723,0.0009141753534200375,0.0009036060263424904,0.0008931705545102587,0.0008828670359947413,0.0008726935998370489,0.000862648405462618,0.0008527296421089719,0.0008429355282658403,0.0008332643111275081,0.0008237142660571787,0.0008142836960626722,0.0008049709312837059,0.0007957743284900748,0.0007866922705905879,0.000777723166152614,0.0007688654489316318,0.0007601175774109856,0.0007514780343512825,0.0007429453263493001,0.000734517983406153,0.0007261945585046175,0.0007179736271950597,0.0007098537871902063,0.0007018336579682262,0.0006939118803840095,0.0006860871162885812,0.0006783580481561257,0.0006707233787188602,0.0006631818306092735,0.0006557321460096673,0.3686334263407635,0.3686334263407635,0.3686334263407635,0.3682644556598762,0.3565023204439189,0.33219344501612497,0.30218722088167943,0.2718281636830713,0.24388418729399627,0.21929094192329981,0.19805974376974503,0.1798406894210748,0.16419375292641697,0.15069916794234547,0.1389934176093278,0.12877441946456095,0.11979553813649568,0.11185663674089563,0.10479532096140813,0.09847939825156718,0.0928007254172269,0.08767031303925094,0.08301447290430176,0.07877179726176219,0.0748907889956,0.071327996881243,0.06804654178574349,0.06501494574645977,0.062206196406478224,0.05959699511543445,0.057167149072858456,0.05489907704958206,0.052777405167634676,0.05078863449422842,0.048920866223983075,0.047163573297763134,0.04550740966870328,0.0439440502502932,0.042466055997324385,0.041066759675555446,0.039740168742416884,0.038480882444439625,0.037284020778528104,0.036145163395335904,0.035060296868206574,0.034025769028484885,0.03303824929220123,0.032094694084973195,0.031192316620093526,0.030328560406119816,0.02950107595979917,0.02870770028237926,0.027946438725355374,0.027215448928237403,0.026513026558003354,0.025837592619411102,0.025187682138362835,0.02456193404843457,0.02395908213422417,0.023377946905085316,0.022817428289824335,0.02227649905731826,0.02175419888038519,0.021249628970805373,0.020761947222438796,0.020290363807250213,0.01983413717574367,0.01939257041917212,0.01896500795593202,0.018550832508954968,0.018149462344707958,0.017760348747791983,0.017382973708003173,0.017016847799299677,0.0166615082323576,0.016316517064350274,0.015981459551356172,0.015655942630296734,0.015339593518679818,0.015032058421614631,0.014733001336633586,0.014442102947780845,0.01415905960129752,0.01388358235594969,0.013615396101729732,0.013354238741256175,0.013099860428714985,0.012852022861688345,0.012610498621619165,0.012375070559058333,0.012145531220187354,0.011921682311406449,0.011703334199082312,0.011490305441779322,0.011282422352540704,0.011079518588987855,0.01088143476919803,0.010688018111478287,0.010499122096327867,0.01031460614900083,0.010134335341220144,0.009958180110709026,0.009786015997301606,0.009617723394508539,0.009453187315483337,0.009292297172426465,0.009134946568533227,0.008981033101662605,0.008830458178956458,0.008683126841710197,0.00853894759983263,0.008397832275289,0.008259695853964636,0.008124456345418982,0.007992034650050769,0.00786235443321511,0.007735342005872849,0.007610926211381284,0.0074890383180548255,0.007369611917161747,0.00725258282603311,0.007137888995989059,0.007025470424804156,0.006915269073454228,0.0068072287868974,0.006701295218668749,0.006597415759071161,0.0064955394667651645,0.0063956170035723466,0.006297600572313403,0.006201443857522284,0.006107101968878057,0.00601453138721173,0.005923689912951386,0.00583453661687952,0.005747031793078507,0.005661136913956238,0.005576814587241751,0.005494028514851768,0.005412743453534931,0.005332925177201197,0.005254540440857036,0.005177556946063777,0.005101943307845476,0.00502766902297679,0.004954704439580916,0.004883020727978926,0.004812589852727557,0.004743384545790583,0.004675378280789844,0.0046085452482867596,0.004542860332043644,0.0044782990862232775,0.004414837713481136,0.004352453043910485,0.004291122514802677,0.004230824151183433,0.004171536547094004,0.004113238847581453,0.004055910731367873,0.003999532394169508,0.003944084532635094,0.0038895483288799455,0.0038359054355876668,0.0037831379616563815,0.0037312284583659035,0.003680159906044875,0.003629915701214692,0.0035804796441932323,0.003531835927137245,0.003483969122506006,0.00343686417192967,0.00339050637546392,0.003344881381217881,0.003299975175338314,0.0032557740723366826,0.003212264705745164,0.0031694340190893764,0.003127269257163525,0.003085757957598595,0.0030448879427103746,0.003004647311617168,0.002965024432617271,0.002926007935814772,0.0028875867059863026,0.00284974987567811,0.0028124868185253615,0.0027757871427852216,0.00273964068507634,0.0027040375043155883,0.002668967875846841,0.00263442228575326,0.0026003914253468464,0.0025668661858294526,0.0025338376531174748,0.0025012971028264453,0.0024692359954082334,0.0024376459714360744,0.0024065188470325082,0.0023758466094340193,0.002345621412689259,0.002315835573484961,0.002286481567095624,0.0022575520234525436,0.002229039723328611,0.0022009375946336956,0.0021732387088185096,0.0021459362773820516,0.002119023648479584,0.0020924943036281576,0.002066341854505303,0.002040560039839305,0.0020151427223869477,0.001990083885996186,0.0019653776327514124,0.0019410181801974655,0.001916999858641363,0.0018933171085281021,0.0018699644778886425,0.0018469366198576272,0.001824228290258988,0.0018018343452563565,0.001779749739067517,0.0017579695217399196,0.0017364888369857333,0.0017153029200747993,0.0016944070957828786,0.0016737967763946465,0.001653467459758885,0.0016334147273946208,0.0016136342426465746,0.0015941217488887277,0.0015748730677737732,0.001555884097528152,0.001537150811290498,0.001518669255492478,0.0015004355482810367,0.0014824458779800463,0.0014646965015912446,0.0014471837433325245,0.001429903993212788,0.0014128537056424823,0.0013960293980781477,0.0013794276497008835,0.0013630451001270978,0.0013468784481508876,0.0013309244505170517,0.0013151799207241665,0.0012996417278561792,0.001284306795442639,0.0012691721003460726,0.0012542346716759999,0.0012394915897290346,0.001224939984953749,0.0012105770369404457,0.0011963999734345091,0.0011824060693729993,0.0011685926459437022,0.0011549570696663372,0.0011414967514946847,0.0011282091459398826,0.001115091750213729,0.0011021421033916633,0.0010893577855950682,0.0010767364171918692,0.001064275658015627,0.0010519732066021391,0.001039826799443264,0.001027834210257658,0.0010159932492775333,0.0010043017625516373,0.000992757631263582,0.0009813587710652985,0.0009701031314251904,0.0009589886949907639,0.000948013476964937,0.0009371755244962876,0.0009264729160824214,0.0009159037609862861,0.0009054661986652616,0.000895158398212268,0.0008849785578091598,0.000874924904191697,0.0008649956921259434,0.0008551892038957916,0.0008455037488014777,0.0008359376626684278,0.0008264893073667158,0.0008171570703404776,0.000807939364147175,0.0007988346260065906,0.0007898413173589517,0.0007809579234324668,0.0007721829528196587,0.0007635149370624476,0.000754952430245841,0.0007464940085997268,0.0007381382701090096,0.0007298838341315685,0.0007217293410239807,0.37316321192134605,0.37316321192134605,0.37316321192134605,0.37316321192134605,0.3667314269313881,0.34602465267002286,0.31736107645460543,0.28679820559796815,0.2579094389087415,0.23213828661718508,0.2097404398004142,0.19046049360287154,0.17388250531836505,0.159581885026648,0.14718045480801256,0.13635966943187644,0.1268576756239848,0.1184612757968624,0.11099722857220226,0.10432446115733615,0.09832759624616212,0.09291175041415467,0.08799841879476981,0.08352223915498211,0.0794284498225963,0.07567088852662497,0.07221041098089066,0.06901363506875141,0.06605193815443354,0.06330065191129264,0.06073841199094422,0.05834662970697187,0.05610906039133804,0.054011448772685745,0.0520412360629257,0.050187316756426036,0.048439835694776674,0.046790017917350706,0.045230025343761374,0.04375283552426414,0.04235213862643102,0.04102224956105878,0.039758032731831705,0.0385548373559388,0.03740844167298137,0.03631500465662829,0.035271024083457996,0.03427330000790974,0.03331890285056472,0.0324051454365554,0.031529558427091625,0.030689868674758293,0.02988398010569196,0.029109956791942556,0.02836600792742633,0.02765047446288744,0.026961817190382407,0.026298606097455424,0.025659510836162806,0.02504329217323472,0.024448794305700138,0.023874937941544435,0.023320714058077015,0.02278517826187747,0.02226744568376469,0.021766686350555165,0.021282120982453655,0.020813017171118428,0.02035868589877357,0.019918478363392434,0.019491783078987877,0.01907802322361208,0.018676654210702255,0.018287161462129137,0.017909058363668757,0.017541884385674257,0.017185203353592464,0.016838601854545717,0.01650168776764809,0.016174088906978933,0.01585545176726245,0.015545440363276,0.015243735154925655,0.014950032050680902,0.014664041482781187,0.014385487548252163,0.014114107210314055,0.013849649555294467,0.013591875100579543,0.01334055514955819,0.01309547118987597,0.012856414331629037,0.012623184782447268,0.012395591356657595,0.012173451015973006,0.011956588439365172,0.01174483561997979,0.011538031487119576,0.01133602155150293,0.011138657572131977,0.010945797243249468,0.010757303899985445,0.010573046241394242,0.010392898069702984,0.010216738044665219,0.01004444945200972,0.009875919985047001,0.009711041538570121,0.009549710014241741,0.0093918251367345,0.009237290279929887,0.009086012302540303,0.008937901392564125,0.008792870920017848,0.008650837297442617,0.008511719847703592,0.008375440678642234,0.008241924564171183,0.008111098831422725,0.007982893253600316,0.007857239948193833,0.007734073280249088,0.007613329770400042,0.007494948007393418,0.00737886856484641,0.007265033922006335,0.007153388388284008,0.0070438780313540365,0.006936450608627974,0.006831055501911997,0.006727643655083448,0.006626167514619883,0.006526580972830888,0.0064288393136494254,0.006332899160850387,0.00623871842856627,0.006146256273986749,0.006055473052126444,0.005966330272557215,0.005878790558006979,0.005792817604728003,0.005708376144551594,0.005625431908542287,0.005543951592174434,0.00546390282195818,0.005385254123441442,0.005307974890526433,0.005232035356034595,0.005157406563462411,0.005084060339871493,0.005011969269861423,0.004941106670571968,0.004871446567671368,0.004802963672282557,0.004735633358805736,0.004669431643597733,0.004604335164466897,0.00454032116095101,0.0044773674553406145,0.004415452434416078,0.004354555031867897,0.004294654711368064,0.004235731450267864,0.004177765723892556,0.004120738490408594,0.004064631176238816,0.0040094256620034525,0.003955104268962592,0.0039016497459423514,0.0038490452567225,0.0037972743678672638,0.0037463210369819725,0.0036961696013760896,0.0036468047671190593,0.0035982115984711303,0.0035503755076749318,0.0035032822450933618,0.0034569178896807842,0.003411268839772568,0.0033663218041831765,0.003322063793598839,0.0032784821122541245,0.0032355643498821656,0.003193298373926216,0.003151672322005124,0.0031106745946212506,0.0030702938481025435,0.003030518987769762,0.002991339161321136,0.0029527437524248666,0.0029147223745139327,0.002877264864774249,0.0028403612783196807,0.0028040018825476794,0.002768177151667472,0.002732877761396778,0.0026980945838193837,0.002663818682398557,0.002630041307141159,0.002596753889905808,0.002563948039851994,0.002531615539023774,0.002499748338064026,0.0024683385520545735,0.002437378456478426,0.0024068604832986327,0.0023767772171516322,0.0023471213916498243,0.002317885885790275,0.002289063720466306,0.002260648055077404,0.0022326321842358215,0.0022050095345654435,0.002177773661590362,0.0021509182467105673,0.0021244370942608316,0.002098324128651604,0.002072573391588149,0.0020471790393658948,0.0020221353402394113,0.0019974366718631103,0.0019730775188003657,0.0019490524701003236,0.0019253562169391824,0.0019019835503243632,0.0018789293588599174,0.0018561886265702917,0.0018337564307819992,0.0018116279400604172,0.0017897984122004595,0.001768263192269351,0.0017470177107002838,0.0017260574814345767,0.0017053781001120098,0.0016849752423070995,0.0016648446618101646,0.0016449821889522125,0.0016253837289714685,0.0016060452604214873,0.0015869628336187746,0.0015681325691290571,0.001549550656291368,0.0015312133517780399,0.0015131169781906558,0.0014952579226901296,0.0014776326356602649,0.001460237629403759,0.0014430694768700022,0.0014261248104130819,0.00140940032058009,0.0013928927549281993,0.001376598916869918,0.0013605156645459901,0.0013446399097245107,0.0013289686167264154,0.0013134988013759738,0.001298227529975867,0.0012831519183060895,0.0012682691306463109,0.0012535763788203984,0.0012390709212633877,0.0012247500621096483,0.001210611150301901,0.0011966515787207332,0.0011828687833334807,0.00116926024236274,0.001155823475473443,0.0011425560429781702,0.0011294555450604366,0.0011165196210149205,0.001103745948504951,0.0010911322428362278,0.0010786762562466183,0.0010663757772115309,0.0010542286297646566,0.0010422326728332298,0.0010303857995880579,0.0010186859368074975,0.0010071310442551665,0.0009957191140712073,0.000984448170176312,0.0009733162676887993,0.0009623214923539644,0.0009514619599855817,0.0009407358159192125,0.0009301412344771803,0.0009196764184445273,0.0009093395985562403,0.0008991290329950461,0.0008890430068996735,0.0008790798318834645,0.0008692378455626721,0.0008595154110947565,0.0008499109167260551,0.0008404227753487076,0.0008310494240667892,0.0008217893237709925,0.0008126409587222295,0.0008036028361435257,0.0007946734858201714,0.3777486597287908,0.3777486597287908,0.3777486597287908,0.3777486597287908,0.3756415097197127,0.3598199818851978,0.33349660587146585,0.3032267696176615,0.2735235772888622,0.2465172219678767,0.22282289737798938,0.20233665176445406,0.18469035860375063,0.1694624807206457,0.15626127479968588,0.144750265623113,0.13465017797519435,0.12573254679850346,0.11781133171809892,0.11073494157099269,0.10437942308481082,0.0986429112742627,0.09344120615066283,0.08870428093647334,0.08437353372434252,0.08039962241852452,0.07674075388257522,0.07336132604436328,0.07023084458328188,0.06732305387597406,0.06461523583230712,0.06208764093189432,0.059723023907934686,0.057506262721053754,0.05542404419070386,0.053464603266336605,0.051617505696213706,0.04987346599290488,0.048224194254014266,0.04666226668966459,0.04518101572029218,0.043774436304963533,0.04243710579042693,0.04116411507180931,0.039951009255995616,0.038793736339594306,0.03768860267229129,0.03663223418599711,0.03562154254063549,0.03465369547680575,0.033726090779677906,0.032836333352612525,0.03198221497672922,0.03116169639717826,0.030372891430536175,0.029614052832707547,0.028883559704256222,0.02817990624177859,0.027501691670625016,0.026847611216826092,0.026216447995322297,0.025607065707843532,0.025018402057752926,0.024449462801082164,0.023899316363179157,0.02336708895923912,0.022851960164514174,0.022353158886583645,0.021869959697728505,0.02140167949039281,0.020947674422969933,0.020507337126937693,0.020080094149580965,0.01966540360942515,0.019262753044007968,0.018871657431794496,0.01849165737201886,0.018122317407903082,0.01776322448023724,0.017413986499630354,0.017074231026932993,0.016743604052361437,0.01642176886482127,0.016108405003724756,0.01580320728635731,0.015505884904508757,0.015216160584659952,0.014933769806574803,0.01465846007559281,0.014389990244360508,0.014128129880123404,0.013872658674029004,0.013623365889229596,0.013380049844827031,0.013142517432970882,0.012910583666644729,0.012684071255887643,0.012462810210372391,0.012246637466455278,0.01203539653694404,0.011828937181984868,0.011627115099596262,0.011429791634483603,0.011236833503894183,0.011048112539349564,0.010863505443193085,0.010682893558966667,0.010506162654709621,0.010333202718329292,0.0101639077642734,0.009998175650773851,0.009835907906993546,0.009677009569456706,0.009521389027177515,0.009368957874959501,0.009219630774359144,0.009073325321851306,0.008929961923765755,0.008789463677585324,0.008651756259237925,0.008516767816025568,0.008384428864865278,0.008254672195535375,0.008127432778643503,0.008002647678043484,0.007880255967458427,0.007760198651070164,0.007642418587857967,0.007526860419482095,0.0074134705015150544,0.007302196837845787,0.007192989018082693,0.0070857981577974365,0.006980576841459739,0.006877279067923635,0.0067758601983287136,0.006676276906297402,0.006578487130306747,0.006482450028125594,0.006388125933214363,0.0062954763129854496,0.0062044637288368575,0.006115051797867881,0.0060272051561956665,0.005940889423796153,0.005856071170792048,0.005772717885123438,0.00569079794153145,0.005610280571794506,0.005531135836157786,0.005453334595901615,0.005376848486992754,0.005301649894773095,0.00522771192963519,0.0051550084036408,0.0050835138080410356,0.005013203291654584,0.004944052640069952,0.004876038255632188,0.004809137138180895,0.004743326866506263,0.0046785855804931595,0.004614891963920843,0.004552225227893855,0.004490565094874497,0.004429891783292334,0.0043701859927074,0.004311428889501279,0.004253602093077655,0.004196687662548638,0.004140668083887921,0.004085526257532369,0.004031245486411621,0.003977809464391467,0.003925202265112189,0.00387340833120694,0.0038224124638849655,0.0037721998128659824,0.0037227558666499856,0.0036740664431121227,0.003626117680408082,0.0035788960281785873,0.003532388239042344,0.0034865813603643906,0.0034414627262921117,0.003397019950046822,0.003353240916462062,0.00331011377475999,0.0032676269315552375,0.003225769044080265,0.003184529013622309,0.0031438959791649144,0.003103859311226435,0.0030644086058889976,0.0030255336790095113,0.002987224560608424,0.0029494714894282045,0.0029122649076561823,0.0028755954558064506,0.002839453967753723,0.002803831465915945,0.0027687191565789067,0.0027341084253586817,0.0026999908327969024,0.0026663581100849197,0.0026332021549110895,0.0026005150274289015,0.0025682889463404537,0.0025365162850919665,0.0025051895681779527,0.002474301467549198,0.0024438447991228644,0.002413812519390056,0.0023841977221181155,0.0023549936351449636,0.002326193617261313,0.002297791155179533,0.0022697798605851886,0.002242153467269094,0.002214905828337182,0.0021880309134961833,0.0021615228064116028,0.00213537570213722,0.002109583904612806,0.0020841418242282593,0.002059043975452524,0.002034284974524178,0.0020098595372032824,0.0019857624765814985,0.001961988700949216,0.0019385332117177346,0.001915391101395329,0.001892557551614562,0.0018700278312105926,0.0018477972943480951,0.001825861378695538,0.001804215603645878,0.0017828555685812705,0.0017617769511818254,0.0017409755057761645,0.0017204470617328959,0.0017001875218921076,0.0016801928610348797,0.001660459124390879,0.0016409824261820712,0.0016217589482018964,0.0016027849384288007,0.0015840567096734428,0.00156557063825789,0.0015473231627269196,0.0015293107825897871,0.0015115300570918509,0.0014939776040154978,0.0014766500985088332,0.001459544271942322,0.0014426569107919354,0.0014259848555483376,0.0014095249996513562,0.0013932742884492826,0.0013772297181816925,0.001361388334986058,0.0013457472339268239,0.0013303035580466195,0.0013150544974391718,0.0012999972883427928,0.0012851292122546712,0.00127044759506485,0.0012559498062095589,0.0012416332578436208,0.0012274954040308195,0.001213533739952588,0.001199745801133925,0.0011861291626863721,0.0011726814385675142,0.0011594002808568127,0.001146283379046823,0.0011333284593501155,0.0011205332840209946,0.0011078956506917934,0.001095413391723583,0.0010830843735704042,0.0010709064961573764,0.0010588776922718516,0.0010469959269674253,0.00103525919698069,0.0010236655301599127,0.001012212984906004,0.0010008996496249918,0.000989723642191904,0.0009786831094258288,0.0009677762265757547,0.0009570011968169952,0.0009463562507580392,0.0009358396459574325,0.0009254496664505039,0.0009151846222858638,0.0009050428490710197,0.0008950227075274433,0.0008851225830544877,0.0008753408853020777,0.38239045374326547,0.38239045374326547,0.38239045374326547,0.38239045374326547,0.3823398677106727,0.37284066519268716,0.35025014625547984,0.3211056313317774,0.2909011906434542,0.26267118573949444,0.23755944706153473,0.21570497483139925,0.19682848797264657,0.1805269216096811,0.1663989122378546,0.15408937051328958,0.143299341943958,0.13378254162928327,0.12533776888735135,0.1178008914088907,0.11103770644426084,0.10493800483359884,0.09941078901175791,0.0943804766235367,0.08978390393520501,0.08556796245794715,0.08168773111711404,0.07810499449725793,0.0747870617670326,0.07170582026937217,0.06883697291639221,0.06615942020107159,0.06365475656573097,0.06130685768011614,0.059101540382169096,0.05702628101371415,0.05506998093791436,0.05322277038021431,0.05147584355799224,0.049821319483443885,0.04825212393386122,0.046761888955917964,0.04534486695966745,0.04399585700494055,0.0427101413193976,0.04148343043715519,0.04031181562869696,0.03919172752064632,0.03811989998906037,0.03709333856108939,0.03610929268350185,0.03516523131845799,0.03425882141096284,0.03338790884213339,0.032550501540328555,0.03174475447066592,0.030968956263888278,0.030221517279650254,0.029500958928000413,0.02880590409706677,0.028135068555613086,0.02748725321656757,0.02686133716259942,0.026256271347585364,0.02567107289872018,0.025104819953497583,0.02455664697383237,0.024025740486636138,0.023511335206205415,0.023012710499053752,0.02252918715636079,0.022060124443247814,0.02160491739751657,0.021162994353562274,0.020733814669836623,0.02031686664055671,0.019911665574459468,0.019517752025174844,0.019134690159421645,0.018762066250638254,0.01839948728692596,0.01804657968327626,0.01770298808908012,0.017368374282763527,0.017042416146199623,0.016724806712249893,0.01641525327939473,0.016113476588008033,0.015819210053301343,0.015532199050432923,0.015252200247683187,0.014978980983945808,0.014712318687142468,0.014452000330436776,0.014197821923408125,0.013949588035582647,0.013707111349942671,0.013470212244220703,0.01323871839798841,0.013012464423690454,0.012791291519935478,0.012575047145491802,0.012363584712545941,0.012156763297916571,0.011954447370996721,0.011756506537304598,0.011562815296603182,0.01137325281463235,0.011187702707557019,0.011006052838319937,0.01082819512412893,0.010654025354374666,0.010483443018325666,0.010316351141984136,0.010152656133546713,0.009992267636936392,0.009835098392918662,0.009681064107347894,0.009530083326112666,0.009382077316392916,0.009236969953852696,0.009094687615426313,0.00895515907737508,0.008818315418315811,0.008684089926933815,0.00855241801412483,0.008423237129313475,0.008296486680719197,0.008172107959355256,0.00805004406655217,0.007930239844822627,0.007812641811883748,0.007697198097670858,0.007583858384184686,0.007472573848025493,0.007363297105469969,0.007255982159966149,0.0071505843519181255,0.007047060310645735,0.006945367908411181,0.006845466216404939,0.006747315462599291,0.0066508769913732075,0.006556113224823392,0.0064629876256806955,0.006371464661750757,0.006281509771810791,0.006193089332889625,0.006106170628866978,0.006020721820329716,0.005936711915627891,0.005854110743071434,0.00577288892421995,0.0056930178482119745,0.005614469647087847,0.005537217172062544,0.005461233970702525,0.005386494264970949,0.005312972930099406,0.0052406454742514735,0.005169488018942797,0.005099477280186416,0.005030590550328976,0.004962805680552183,0.004896101064008388,0.00483045561956436,0.004765848776128711,0.004702260457535778,0.0046396710679666095,0.004578061477882126,0.004517413010448383,0.004457707428434726,0.004398926921563173,0.004341054094294206,0.004284071954028967,0.004227963899712371,0.004172713710820811,0.0041183055367204156,0.004064723886378994,0.004011953618420915,0.003959979931509488,0.0039087883550449655,0.003858364740166795,0.003808695251046474,0.003759766356462781,0.0037115648216467616,0.0036640777003869507,0.003617292327385965,0.0035711963108570623,0.0035257775253545514,0.003481024104827504,0.00343692443588942,0.003393467151295814,0.0033506411236229176,0.0033084354591385247,0.003266839491860526,0.0032258427777946716,0.003185435089345863,0.0031456064098974827,0.0031063469285510896,0.003067647035023349,0.0030294973146928724,0.002991888543792658,0.0029548116847428964,0.0029182578816198826,0.002882218455755034,0.002846684901461617,0.0028116488818833193,0.0027771022249612224,0.0027430369195156393,0.002709445111437606,0.0026763190999883786,0.0026436513342019004,0.0026114344093874286,0.002579661063729478,0.0025483241749806487,0.0025174167572460725,0.0024869319578553093,0.002456863054319339,0.002427203451369886,0.0023979466780789114,0.0023690863850545506,0.0023406163417127503,0.002312530433621024,0.0022848226599125163,0.0022574871307685655,0.002230518064966545,0.002203909787492531,0.0021776567272156124,0.002151753414622544,0.00212619447961068,0.002100974649337934,0.0020760887461269573,0.00205153168542338,0.0020272984738053997,0.0020033842070436517,0.0019797840682101095,0.0019564933258336492,0.0019335073321022694,0.0019108215211095536,0.0018884314071444758,0.001866332583023629,0.0018445207184636847,0.0018229915584942202,0.0018017409219088182,0.0017807646997537322,0.0017600588538529498,0.0017396194153689764,0.0017194424833974788,0.0016995242235959824,0.0016798608668448685,0.0016604487079400075,0.0016412841043164596,0.0016223634748016135,0.001603683298397959,0.0015852401130939844,0.0015670305147026562,0.0015490511557267406,0.0015312987442504555,0.0015137700428560618,0.0014964618675656993,0.0014793710868070708,0.0014624946204025635,0.001445829438581477,0.0014293725610139887,0.0014131210558672783,0.0013970720388824947,0.0013812226724722978,0.001365570164838627,0.0013501117691095401,0.0013348447824955093,0.0013197665454640088,0.0013048744409322136,0.0012901658934772408,0.0012756383685637504,0.0012612893717878675,0.001247116448137804,0.001233117181270177,0.0012192891928018332,0.001205630141616978,0.0011921377231886624,0.0011788096689150413,0.00116564374546946,0.0011526377541642454,0.0011397895303280035,0.0011270969426956181,0.0011145578928112914,0.0011021703144438386,0.0010899321730141226,0.0010778414650342593,0.001065896217558557,0.001054094487645363,0.0010424343618302566,0.0010309139556098081,0.0010195314129358294,0.0010082849057200165,0.0009971726333482909,0.0009861928222052092,0.0009753437252077722,0.0009646236213485784,0.3870892863497189,0.3870892863497189,0.3870892863497189,0.3870892863497189,0.3870892863497189,0.38397804121835805,0.36691707187801637,0.34021414801894945,0.3101384824920457,0.28084195692101777,0.2542345086565073,0.23084410831970034,0.21055127953014427,0.1930007735241669,0.17779128303325875,0.16455038985557677,0.15295757166000035,0.14274592223057134,0.13369627835289885,0.1256294854506146,0.11839900592431642,0.11188457552780542,0.1059870103758914,0.10062404926914072,0.095727057639474,0.09123842287817459,0.08710949471741453,0.0832989519142914,0.0797715015506072,0.07649683806284531,0.07344880565326235,0.07060472059248583,0.0679448198141854,0.06545180977266833,0.06311049532156046,0.06090747280227991,0.05883087493157412,0.05687015769726319,0.05501592149813899,0.05325976033966731,0.05159413412748066,0.050012260066652645,0.0485080199366479,0.047075880615742804,0.045710825710001284,0.04440829652683012,0.043164140942904404,0.04197456896640102,0.04083611399637923,0.03974559894766302,0.03870010654479039,0.03769695319985222,0.03673366598071689,0.035807962252074936,0.03491773163476139,0.03406101998150521,0.03323601511116954,0.032441034080542906,0.03167451180385086,0.030934990856392987,0.030221112321057182,0.02953160755530576,0.028865290772396204,0.028221052344374012,0.027597852746140225,0.02699471707009786,0.026410730049544234,0.025845031536548504,0.025296812386554617,0.02476531070761344,0.024249808437025032,0.023749628212500422,0.023264130508629688,0.022792711012735698,0.022334798217048826,0.02188985120662025,0.021457357624642844,0.021036831798745815,0.020627813013571538,0.020229863916447988,0.01984256904432233,0.019465533461286846,0.019098381497126046,0.018740755578214596,0.01839231514295612,0.018052735634700803,0.017721707565727454,0.01739893564650832,0.017084137974976786,0.01677704528101785,0.016477400221832604,0.016184956724199777,0.015899479370036097,0.015620742821944344,0.015348531285739039,0.015082638007191701,0.014822864800475894,0.014569021605987947,0.014320926075436252,0.014078403182240193,0.013841284855452158,0.013609409635559072,0.013382622350637838,0.01316077381148096,0.012943720524394473,0.012731324420483164,0.012523452600324078,0.012319977093016325,0.012120774628659639,0.011925726423404013,0.011734717976255688,0.011547638876896065,0.011364382623822665,0.01118484645216103,0.011008931170559958,0.01083654100660638,0.010667583460245196,0.010501969164724798,0.010339611754612522,0.010180427740471294,0.010024336389800072,0.009871259613876913,0.009721121860163533,0.009573850009956145,0.009429373280979125,0.009287623134651823,0.009148533187761891,0.00901203912830378,0.00887807863525553,0.00874659130207417,0.008617518563716405,0.008490803626990211,0.008366391404062614,0.008244228448956595,0.0081242628968826,0.008006444406252653,0.007890724103245412,0.007777054528786696,0.007665389587824762,0.007555684500785957,0.007447895757097381,0.0073419810706798014,0.007237899337309403,0.007135610593758227,0.00703507597862852,0.006936257694794848,0.006839118973382661,0.006743624039206221,0.006649738077598281,0.006557427202566017,0.006466658426212874,0.0063773996293638065,0.006289619533343974,0.006203287672854126,0.006118374369894532,0.00603485070869115,0.0059526885115759095,0.005871860315783092,0.005792339351118225,0.005714099518462058,0.005637115369074448,0.005561362084660298,0.0054868154581689706,0.005413451875292628,0.005341248296635139,0.0052701822405227215,0.005200231766430646,0.005131375458997328,0.005063592412605406,0.004996862216503438,0.004931164940447205,0.004866481120840194,0.004802791747350475,0.004740078249988412,0.004678322486623948,0.0046175067309272705,0.004557613660715634,0.004498626346691403,0.004440528241553622,0.004383303169471812,0.004326935315905615,0.004271409217757757,0.004216709753848482,0.004162822135696804,0.004109731898600187,0.0040574248929990545,0.004005887276116537,0.003955105503862729,0.003905066322994805,0.0038557567635212706,0.0038071641313443395,0.0037592760011296695,0.0037120802093959047,0.00366556484781687,0.0036197182567267385,0.003574529018823603,0.0035299859530625445,0.0034860781087320734,0.0034427947597082155,0.003400125398878182,0.003358059732730161,0.003316587676101774,0.0032756993470823568,0.003235385062063661,0.00319563533093463,0.0031564408524135893,0.0031177925095156,0.0030796813651486907,0.0030420986578352945,0.00300503579755519,0.002968484361704478,0.0029324360911687675,0.0028968828865053565,0.00286181680423134,0.0028272300532148184,0.002793114991163978,0.0027594641212139994,0.00272627008860547,0.00269352567745341,0.0026612238076037867,0.002629357531574027,0.00259792003157516,0.0025669046166138217,0.002536304719670645,0.0025061138949531163,0.0024763258152209486,0.002446934269180599,0.0024179331589484054,0.0023893164975790538,0.002361078406657924,0.0023332131139551866,0.00230571495114034,0.0022785783515539685,0.0022517978480373173,0.0022253680708155654,0.0021992837454348846,0.002173539690751281,0.0021481308169689025,0.0021230521237277887,0.0020982986982385084,0.0020738657134627848,0.0020497484263390336,0.002025942176050578,0.002002442382336676,0.0019792445438440846,0.001956344236518517,0.0019337371120346366,0.0019114188962639778,0.0018893853877787812,0.001867632456391786,0.0018461560417307188,0.0018249521518457514,0.0018040168618503832,0.0017833463125933294,0.0017629367093619439,0.0017427843206154281,0.0017228854767473627,0.0017032365688766837,0.0016838340476666323,0.0016646744221701585,0.0016457542587021326,0.0016270701797368775,0.0016086188628305679,0.001590397039568186,0.0015724014945335352,0.0015546290643028023,0.0015370766364602444,0.0015197411486357376,0.0015026195875637942,0.0014857089881628567,0.0014690064326352776,0.0014525090495865701,0.0014362140131642972,0.0014201185422150872,0.0014042198994604878,0.0013885153906899865,0.0013730023639718274,0.0013576782088805164,0.0013425403557407992,0.0013275862748878188,0.001312813475942837,0.0012982195071042316,0.001283801954453552,0.0012695584412759106,0.0012554866273948766,0.0012415842085210006,0.0012278489156137859,0.0012142785142571168,0.0012008708040474156,0.0011876236179943498,0.0011745348219340311,0.0011616023139538073,0.001148824023829137,0.0011361979124717113,0.0011237219713887366,0.0011113942221532855,0.0010992127158849546,0.0010871755327412642,0.0010752807814190443,0.0010635265986657857,0.39184585844116027,0.39184585844116027,0.39184585844116027,0.39184585844116027,0.39184585844116027,0.39178358311771017,0.382315545648629,0.3600044449060262,0.33121013761442675,0.3012852652521266,0.2732095223490741,0.2481298041258306,0.2262100754744921,0.20719849693047,0.19071495760645935,0.17637535418441966,0.16383692974383618,0.1528092999554637,0.14305202975667175,0.13436785103860693,0.126595229072243,0.11960163438318275,0.11327789298496763,0.1075336030101772,0.10229347616039117,0.09749443694311627,0.09308332608259717,0.08901507934713909,0.08525127844140933,0.08175899278070135,0.07850984904747461,0.07547927969658069,0.07264591263871212,0.06999107283948004,0.06749837309171863,0.06515337621538167,0.06294331477492666,0.06085685735745209,0.058883912737464336,0.05701546502646755,0.055243434287459495,0.053560558177687,0.051960291036017986,0.050436717506261455,0.04898447832478202,0.04759870632955403,0.04627497109227652,0.045009230852893885,0.043797790660780454,0.042637265810022855,0.04152454980565368,0.04045678622045196,0.039431343902935304,0.038445795080726014,0.037497895972725806,0.03658556958135884,0.035706890384274464,0.03486007068540433,0.034043448419281294,0.033255476231186964,0.032494711680071744,0.03175980843173011,0.031049508327317944,0.03036263422727959,0.02969808354353977,0.029054822383890084,0.028431880241897585,0.027828345173869177,0.027243359411447066,0.026676115364537855,0.026125851974551677,0.025591851382604947,0.025073435881310332,0.024569965122330013,0.024080833554947927,0.02360546807359181,0.023143325854659388,0.022693892365045404,0.022256679526640184,0.021831224022688285,0.021417085733347888,0.02101384628904397,0.02062110773138648,0.020238491272389872,0.019865636143654795,0.019502198527972314,0.019147850566506225,0.01880227943538625,0.018465186486081198,0.01813628644445689,0.017815306663884544,0.017501986428162374,0.017196076300418747,0.016897337514471075,0.016605541405436748,0.01632046887666102,0.016041909900281433,0.015769663048956353,0.015503535056518032,0.015243340405466717,0.0149889009394078,0.014740045498685128,0.014496609577589976,0.014258435001675947,0.014025369623801399,0.013797267037641682,0.01357398630750391,0.01335539171337102,0.013141352510169079,0.012931742700348012,0.012726440818911822,0.012525329730109393,0.012328296435053569,0.012135231889578005,0.01194603083170894,0.011760591618154325,0.011578816069264886,0.011400609321959278,0.011225879690130289,0.01105453853209925,0.010886500124697567,0.010721681543592912,0.010560002549498728,0.010401385479933366,0.010245755146207342,0.010093038735353353,0.009943165716716974,0.009796067752952033,0.009651678615181097,0.009509934102088263,0.009370771962739582,0.00923413182292592,0.009099955114842719,0.008968185009930369,0.008838766354711673,0.00871164560946533,0.008586770789596519,0.008464091409561128,0.008343558429215822,0.008225124202473299,0.008108742428142487,0.007994368102851727,0.007881957475947344,0.007771468006272595,0.007662858320737144,0.007556088174586051,0.007451118413293048,0.007347910935996155,0.00724642866040477,0.0071466354891084475,0.007048496277223948,0.006951976801314285,0.006857043729526995,0.00676366459289179,0.006671807757726448,0.006581442399102309,0.006492538475318119,0.006405066703342552,0.006318998535178781,0.006234306135112268,0.00615096235780266,0.006068940727184821,0.005988215416140569,0.005908761226912836,0.005830553572227303,0.005753568457092758,0.005677782461252779,0.005603172722258414,0.005529716919140315,0.0054573932566525304,0.005386180450065634,0.005316057710487724,0.005247004730689093,0.0051790016714141985,0.005112029148158563,0.005046068218393241,0.004981100369218882,0.0049171075054335635,0.004854071937995545,0.004791976372869238,0.004730803900236838,0.004670537984062649,0.0046111624519972905,0.004552661485606566,0.004495019610915884,0.004438221689256121,0.004382252908400348,0.004327098773981491,0.004272745101178182,0.00421917800666211,0.004166383900794999,0.004114349480066994,0.004063061719767607,0.004012507866881595,0.0039626754331996165,0.003913552188638969,0.00386512615476472,0.0038173855985050653,0.0037703190260546145,0.0037239151769571724,0.003678163018364467,0.0036330517394626955,0.003588570746062005,0.0035447096553431223,0.003501458290756408,0.0034588066770665266,0.003416745035540147,0.0033752637792701743,0.003334353508632483,0.003294005006871463,0.003254209235808282,0.003214957331670235,0.003176240601035502,0.0031380505168901083,0.003100378714794011,0.003063216989151228,0.0030265572895828265,0.002990391717397784,0.002954712522159462,0.002919512098344258,0.0028847829820903242,0.0028505178480319002,0.0028167095062186973,0.0027833508991161318,0.002750435098684504,0.002717955303535048,0.002685904836159231,0.002654277140230869,0.00262306577797744,0.002592264427619144,0.0025618668808734426,0.002531867040523647,0.0025022589180484093,0.0024730366313119195,0.002444194402311915,0.0024157265549840214,0.002387627513061393,0.002359891797986669,0.00233251402687643,0.002305488910535428,0.002278811251519518,0.0022524759422463425,0.0022264779631512364,0.002200812380888562,0.002175474346576121,0.002150459094081814,0.0021257619383512937,0.0021013782737758224,0.0020773035725982123,0.0020535333833571773,0.0020300633293679864,0.0020068891072388,0.0019840064854220094,0.0019614113027986648,0.0019390994672963916,0.0019170669545389356,0.001895309806526829,0.0018738241303482826,0.0018526060969198178,0.0018316519397549463,0.0018109579537613806,0.001790520494065112,0.0017703359748609388,0.0017504008682890657,0.0017307117033362092,0.0017112650647617515,0.0016920575920473732,0.0016730859783699553,0.001654346969597293,0.0016358373633053422,0.0016175540078174609,0.0015994938012642921,0.0015816536906641183,0.0015640306710230298,0.0015466217844547314,0.001529424119318752,0.0015124348093775823,0.0014956510329715196,0.0014790700122110638,0.0014626890121866353,0.001446505340194491,0.00143051634497939,0.0014147194159928986,0.0013991119826671666,0.0013836915137040628,0.001368455516378594,0.0013534015358571767,0.001338527154529723,0.0013238299913555037,0.0013093077012223393,0.001294957974319078,0.001280778535520428,0.0012667671437846578,0.0012529215915632627,0.001239239704222532,0.0012257193394768894,0.0012123583868332282,0.0011991547670466734,0.0011861064315869991,0.0011732113621156417,0.39666087952320656,0.39666087952320656,0.39666087952320656,0.39666087952320656,0.39666087952320656,0.39666087952320656,0.3946079378140137,0.3793020216704486,0.35375008406851133,0.32416767234713545,0.2948967035954561,0.2680462660268609,0.24427896086033843,0.22355255276601008,0.20555293376775124,0.18989975222095512,0.1762307406171388,0.1642298324003582,0.1536316001433999,0.14421682512289943,0.13580553298700918,0.12825001532748442,0.12142870779700363,0.11524111476918729,0.10960371213781094,0.10444668014139588,0.09971131013467997,0.09534794691214264,0.09131435231716407,0.08757439899249661,0.08409702282363149,0.08085537852647792,0.07782615532186711,0.07498901931677629,0.07232615665893496,0.06982189724957613,0.06746240319101582,0.06523540952654357,0.0631300074407205,0.06113646211250217,0.05924605898950883,0.057450973484935476,0.05574416006782155,0.05411925748287203,0.052570507443820386,0.05109268462871661,0.04968103619388381,0.04833122933579723,0.04703930568275219,0.045801641503532484,0.04461491288750693,0.043476065187716406,0.04238228613116386,0.041330982093548484,0.040319757112674236,0.03934639427893611,0.03840883919463821,0.03750518523871694,0.03663366041103402,0.03579261556203502,0.03498051384043715,0.03419592121422151,0.033437497939562154,0.032703990868775415,0.031994226502403626,0.03130710470268099,0.030641592995918343,0.029996721400317464,0.029371577723418626,0.028765303280072093,0.028177088987576652,0.027606171799722568,0.027051831445799163,0.02651338744449072,0.02599019636593126,0.025481649318093824,0.024987169636320174,0.024506210757011006,0.024038254258527524,0.023582808054107254,0.02313940472316812,0.02270759996872998,0.022286971189954437,0.021877116159848456,0.02147765179917331,0.021088213038464178,0.020708451760814928,0.020338035818812574,0.01997664811958326,0.01962398577248919,0.01927975929451072,0.01894369186877591,0.018615518652135763,0.01829498612801107,0.017981851501084074,0.017675882130696,0.017376855000084353,0.01708455621881818,0.01679878055603787,0.0165193310022746,0.016246018357822196,0.01597866084579745,0.015717083748158476,0.015461119063113753,0.015210605182451535,0.014965386587447994,0.014725313562110088,0.01449024192260899,0.014260032761832128,0.014034552208084463,0.013813671197018857,0.013597265255955197,0.01338521429980898,0.013177402437893868,0.012973717790935521,0.012774052317661013,0.012578301650383131,0.012386364939039753,0.012198144703174311,0.012013546691397238,0.011832479747880577,0.01165485568547928,0.011480589165094974,0.01130959758092782,0.011141800951274657,0.010977121814570293,0.010815485130372365,0.01065681818501772,0.010501050501696151,0.010348113754693808,0.010197941687589666,0.010050470035186377,0.009905636448979401,0.00976338042597656,0.009623643240695007,0.009486367880164381,0.009351498981788853,0.009218982773915899,0.009088767018976053,0.008960800959065875,0.008835035263846389,0.008711421980648988,0.0085899144866746,0.008470467443185452,0.008353036751594094,0.008237579511353168,0.008124053979566224,0.008012419532232737,0.007902636627051984,0.007794666767712167,0.0076884724695972075,0.0075840172268411745,0.007481265480674375,0.00738018258899768,0.007280734797130862,0.007182889209683442,0.007086613763493716,0.006991877201593935,0.006898649048152269,0.006806899584350302,0.006716599825154774,0.006627721496946421,0.00654023701596516,0.006454119467541863,0.006369342586079409,0.006285880735752812,0.006203708891899293,0.006122802623066096,0.006043138073693451,0.005964691947403003,0.0058874414908682,0.005811364478243915,0.005736439196129572,0.005662644429048559,0.00558995944542015,0.005518363984005574,0.005447838240809218,0.005378362856418212,0.005309918903760343,0.005242487876268023,0.005176051676429719,0.0051105926047149385,0.005046093348859477,0.004982536973494499,0.004919906910110172,0.004858186947338526,0.0047973612215446125,0.00473741420771538,0.004678330710632684,0.004620095856323437,0.004562695083774315,0.004506114136902333,0.00445033905677178,0.004395356174049678,0.004341152101688823,0.004287713727833444,0.004235028208937402,0.004183082963088098,0.0041318656635297366,0.004081364232376792,0.004031566834513987,0.00398246187167424,0.003934037976689303,0.0038862840079069965,0.003839189043770152,0.0037927423775498035,0.0037469335122302066,0.0037017521555384567,0.0036571882151148136,0.0036132317938194296,0.003569873185169377,0.003527102868904029,0.0034849115066728355,0.0034432899378421295,0.003402229175417715,0.0033617204020777586,0.0033217549663148147,0.0032823243786817254,0.0032434203081388975,0.0032050345784994114,0.003167159164969676,0.0031297861907809373,0.00309290792391104,0.003056516773891971,0.0030206052887011697,0.002985166151734486,0.002950192178856788,0.002915676315529912,0.0028816116340140696,0.002847991330641134,0.0028148087231574643,0.0027820572481346974,0.0027497304584452346,0.0027178220208021672,0.0026863257133605376,0.002655235423378533,0.002624545144937271,0.002594248976716228,0.002564341119824395,0.0025348158756842965,0.002505667643967757,0.002476890920582367,0.002448480295705985,0.0024204304518695365,0.002392736162085522,0.002365392288021488,0.0023383937782169607,0.0023117356663431873,0.002285413069503288,0.002259421186573254,0.002233755296581533,0.0022084107571265026,0.002183383002831207,0.0021586675438332137,0.0021342599643100943,0.0021101559210385205,0.0020863511419864757,0.0020628414249375584,0.00203962263614694,0.0020166907090271467,0.0019940416428641614,0.001971671501562122,0.0019495764124161565,0.0019277525649129075,0.0019061962095571839,0.0018849036567251945,0.0018638712755428373,0.001843095492788654,0.0018225727918211448,0.0018022997115289274,0.0017822728453043494,0.0017624888400390275,0.0017429443951412229,0.0017236362615742449,0.0017045612409158197,0.0016857161844370057,0.0016670979922012675,0.001648703612182434,0.0016305300394012898,0.0016125743150806574,0.0015948335258176966,0.001577304802774075,0.0015599853208827443,0.0015428722980712541,0.001525962994501382,0.0015092547118239915,0.0014927447924497263,0.001476430618834397,0.0014603096127790702,0.0014443792347443452,0.001428636983178798,0.0014130803938605834,0.0013977070392527462,0.0013825145278713177,0.001367500503666046,0.0013526626454137356,0.0013379986661232464,0.001323506312452732,0.0013091833641381996,0.0012950276334333963,0.40153506781991416,0.40153506781991416,0.40153506781991416,0.40153506781991416,0.40153506781991416,0.40153506781991416,0.40153506781991416,0.3958554481448573,0.3765168352189446,0.3491765991966241,0.31952249453945236,0.29104814461556766,0.2652701593729075,0.24255622896697698,0.22275170833079064,0.2055174455944299,0.19048325600701915,0.17730811245175981,0.16569829414952594,0.1554082604863245,0.1462353386672247,0.13801290305623382,0.13060386478653366,0.12389506284954795,0.11779264728974098,0.11221836054996659,0.10710657142140405,0.10240191707342786,0.09805742768539084,0.09403303096451637,0.09029435487933474,0.08681176461539852,0.08355958394931856,0.08051546236470543,0.07765985785519694,0.07497561200398789,0.07244759904062764,0.07006243451138496,0.06780823223649265,0.06567440057956707,0.06365147088250098,0.06173095234680105,0.059905208762112624,0.05816735336511273,0.05651115881103935,0.05493097979603074,0.053421686313123586,0.05197860588179434,0.05059747337890055,0.049274387332451784,0.04800577172946066,0.04678834254446528,0.045619078322672105,0.044495194256640905,0.043414119282144,0.04237347579097453,0.04137106161835626,0.040404834012818705,0.03947289533844937,0.03857348029476143,0.03770494446936981,0.03686575406385098,0.03605447665467788,0.035269772869391154,0.03451038887372363,0.03377514957883077,0.0330629524891616,0.03237276212141717,0.03170360493353125,0.03105456470997895,0.03042477835605322,0.029813432059348735,0.02921975778144577,0.02864303004702445,0.028082563001311418,0.027537707709942853,0.027007849678206682,0.026492406569048926,0.025990826101447328,0.02550258411266905,0.025027182769642248,0.024564148916150216,0.02411303254393978,0.0236734053769747,0.02324485955914767,0.02282700643670242,0.02241947542743337,0.022021912969520396,0.021633981543484632,0.02125535876137596,0.02088573651784043,0.020524820198178043,0.02017232793897413,0.019827989937242073,0.019491547804390025,0.01916275396163573,0.01884137107378853,0.018527171518559225,0.018219936888826956,0.01791945752547385,0.017625532078611544,0.017337967095198952,0.017056576631195648,0.016781181886569966,0.016511610861585247,0.016247698032926992,0.015989284048337948,0.015736215438535824,0.015488344345265389,0.015245528264448294,0.015007629803444911,0.01477451645153001,0.01454606036274817,0.01432213815036279,0.014102630692190279,0.013887422946139703,0.013676403775337824,0.013469465782262595,0.013266505151335973,0.013067421499485263,0.012872117734194305,0.012680499918611038,0.012492477143301274,0.01230796140427056,0.012126867486889318,0.011949112855398413,0.011774617547675083,0.011603304074969628,0.011435097326341685,0.011269924477532042,0.011107714904039402,0.010948400098168687,0.010791913589842375,0.010638190870974425,0.010487169323222755,0.01033878814893768,0.010192988305149793,0.010049712440434863,0.009908904834511761,0.009770511340436909,0.009634479329259538,0.009500757637022935,0.009369296513989914,0.009240047575985599,0.009112963757755953,0.008987999268239484,0.008865109547667423,0.008744251226399696,0.008625382085417124,0.008508461018390966,0.008393447995258468,0.008280304027229499,0.008168991133165318,0.008059472307261447,0.007951711487977535,0.00784567352815918,0.007741324166294,0.0076386299988574855,0.007537558453695893,0.007438077764402321,0.007340156945643904,0.007243765769394843,0.007148874742041803,0.007055455082320185,0.006963478700047636,0.006872918175620663,0.00678374674024375,0.006695938256856734,0.006609467201736475,0.006524308646741321,0.006440438242173343,0.006357832200234286,0.006276467279047859,0.006196320767230064,0.006117370468982452,0.006039594689688634,0.005962972221993988,0.0058874823323507445,0.005813104748007138,0.00573981964442759,0.005667607633124265,0.005596449749885183,0.005526327443384722,0.005457222564159197,0.005389117353937542,0.005321994435310966,0.005255836801730007,0.0051906278078165755,0.005126351159980464,0.005062990907326325,0.005000531432844324,0.004938957444871322,0.004878253968813871,0.004818406339124371,0.004759400191518865,0.004701221455431335,0.0046438563466934665,0.004587291360433028,0.004531513264183814,0.0044765090911976025,0.004422266133954178,0.004368771937860285,0.004316014295132065,0.004263981238854334,0.004212661037211605,0.004162042187882989,0.004112113412598233,0.004062863651847497,0.004014282059740363,0.003966357999009985,0.003919081036155398,0.0038724409367203237,0.003826427660701939,0.0037810313580860797,0.0037362423645055003,0.003692051197015214,0.0036484485499838674,0.0036054252910954895,0.0035629724574588306,0.003521081251820803,0.0034797430388813495,0.003438949341704869,0.0033986918382275712,0.0033589623578559927,0.0033197528781545188,0.0032810555216196756,0.0032428625525369693,0.003205166373919927,0.0031679595245272,0.003131234675956094,0.003094984629810013,0.0030592023149381637,0.0030238807847439843,0.0029890132145621875,0.002954592899100919,0.0029206132499476852,0.0028870677931375714,0.0028539501667806445,0.0028212541187485926,0.002788973504417587,0.0027571022844662097,0.002725634522727268,0.002694564384090697,0.002663886132457886,0.0026335941287445688,0.0026036828289315674,0.0025741467821617935,0.002544980628882769,0.0025161790990321314,0.002487737010266639,0.0024596492662321994,0.002431910854874231,0.002404516846787705,0.0023774623936044822,0.0023507427264186716,0.002324353154247705,0.002298289062528646,0.0022725459116487152,0.0022471192355094823,0.0022220046401227856,0.0021971978022389963,0.0021726944680056587,0.0021484904516561303,0.0021245816342277297,0.002100963962307633,0.0020776334468071535,0.0020545861617626733,0.0020318182431628465,0.0020093258878017568,0.001987105352156417,0.0019651529512892158,0.0019434650577738006,0.0019220381006441179,0.0019008685643659704,0.0018799529878308415,0.0018592879633705628,0.0018388701357934846,0.0018186962014407535,0.0017987629072624604,0.0017790670499134888,0.0017596054748677352,0.001740375075551331,0.0017213727924936478,0.0017025956124959163,0.0016840405678169557,0.001665704735375937,0.001647585235970958,0.0016296792335141045,0.0016119839342818524,0.0015944965861806673,0.0015772144780277146,0.0015601349388455947,0.0015432553371717307,0.0015265730803813594,0.0015100856140240252,0.0014937904211735325,0.0014776850217903248,0.0014617669720969283,0.0014460338639654862,0.0014304833243173692,0.406469150380912,0.406469150380912,0.406469150380912,0.406469150380912,0.406469150380912,0.406469150380912,0.406469150380912,0.4063802140621962,0.39692943811867604,0.3750685340590335,0.346877578803143,0.3174738495739128,0.28973568197657834,0.2648032028828328,0.24287283760499065,0.2237326709627964,0.2070376175975454,0.19243079699911086,0.1795894710807872,0.16823756983103325,0.15814473464509426,0.14912071660198795,0.1410088239394458,0.13367982957030178,0.12702677308488203,0.12096069670704397,0.1154072123407087,0.1103037605227206,0.10559742728712808,0.10124320388548498,0.09720259556278388,0.0934425048759998,0.08993433113101705,0.08665324039902159,0.08357757067633736,0.08068834458898202,0.07796886809269463,0.07540439828303044,0.07298186702893233,0.07068964992748507,0.0685173722381919,0.0664557451391746,0.06449642696560119,0.06263190512672033,0.06085539521658072,0.05916075448290065,0.057542407336637014,0.05599528099971733,0.05451474972221688,0.053096586270322564,0.0517369196053888,0.05043219785313418,0.0491791558082452,0.04797478633988959,0.04681631516275701,0.04570117852051611,0.044627003396737995,0.04359158992537116,0.04259289572052273,0.04162902188528448,0.0406982004931734,0.03979878336415883,0.038929231981469366,0.03808810841590552,0.037274067141844607,0.036485847644174244,0.0357222677281299,0.034982217455084445,0.0342646536368082,0.033568594828931736,0.03289311677139236,0.03223734822986831,0.03160046719748211,0.030981697420753053,0.03038030521784499,0.029795596560677186,0.029226914395645984,0.0286736361803809,0.028135171616403915,0.027610960559670755,0.02710047109285724,0.026603197744881957,0.02611865984467466,0.02564639999745207,0.02518598267294898,0.024736992896082662,0.024299035031420113,0.023871731653683944,0.023454722497219936,0.02304766347803078,0.022650225782568742,0.022262095017984644,0.021882970419044943,0.02151256410731596,0.021150600398623,0.020796815155130443,0.020450955178709828,0.020112777642526246,0.01978204955806475,0.019458547275015524,0.019142056011668553,0.018832369413658456,0.01852928913905767,0.018232624468004912,0.017942191935169716,0.017657814983504435,0.01737932363784708,0.017106554197056607,0.016839348943444094,0.016577555868384154,0.01632102841304689,0.016069625223283965,0.015823209917772533,0.015581650868571823,0.015344820993331756,0.015112597558423176,0.014884861992324146,0.014661499708642754,0.014442399938187696,0.014227455569559282,0.0140165629977482,0.013809621980276802,0.013606535500443356,0.013407209637263927,0.013211553441721074,0.013019478818973428,0.01283090041618332,0.012645735515652545,0.012463903932975591,0.012285327919928101,0.012109932071843474,0.011937643239228097,0.011768390443392023,0.011602104795880773,0.011438719421511407,0.011278169384817795,0.011120391619737467,0.010965324862366836,0.010812909586630542,0.010663087942719382,0.010515803698151605,0.010371002181335125,0.010228630227500379,0.01008863612688991,0.009950969575096164,0.009815581625437787,0.0096824246432843,0.009551452262230269,0.009422619342033629,0.00929588192823451,0.009171197213378147,0.009048523499762158,0.008927820163644929,0.008809047620843193,0.008692167293657209,0.008577141579065339,0.008463933818126344,0.00835250826654184,0.00824283006632303,0.008134865218514685,0.008028580556931578,0.007923943722859294,0.007820923140683536,0.0077194879944038446,0.0076196082049959,0.007521254408585942,0.007424397935404954,0.007329010789485103,0.0072350656290758805,0.00714253574774146,0.007051395056117581,0.006961618064299357,0.006873179864831767,0.006786056116283469,0.006700223027376832,0.00661565734165355,0.006532336322654325,0.006450237739593708,0.006369339853507338,0.006289621403857899,0.006211061595578618,0.006133640086538656,0.006057336975415459,0.005982132789955342,0.005908008475611916,0.005834945384545149,0.005762925264968729,0.005691930250832499,0.005621942851828824,0.0055529459437079305,0.005484922758895072,0.005417856877395496,0.005351732217977883,0.005286533029627167,0.005222243883254404,0.005158849663658199,0.0050963355617261044,0.005034687066868461,0.004973889959677441,0.004913930304800912,0.0048547944440270625,0.004796468989570072,0.004738940817550902,0.004682197061666315,0.004626225107040577,0.004571012584251538,0.004516547363528161,0.004462817549111576,0.004409811473775046,0.0043575176934982085,0.004305924982288448,0.0042550223271474626,0.004204798923176124,0.004155244168813895,0.004106347661209158,0.004058099191714231,0.004010488741503754,0.003963506477310584,0.003917142747276242,0.0038713880769120795,0.003826233165168443,0.0037816688806065818,0.003737686257672684,0.003694276493068921,0.0036514309422192486,0.003609141115827575,0.003567398676523802,0.003526195435597355,0.003485523349813814,0.00344537451831298,0.003405741179585489,0.0033666157085265507,0.003327990613562681,0.003289858533851596,0.0032522122365514325,0.003215044614157827,0.0031783486819073965,0.003142117575244147,0.003106344547349086,0.003071022966729619,0.0030361463148676237,0.003001708183924957,0.0029677022745033233,0.002934122393458914,0.002900962451768861,0.0028682164624485766,0.0028358785385184018,0.002803942891018784,0.0027724038270712046,0.0027412557479854654,0.0027104931474107178,0.00268011060952944,0.0026501028072936786,0.002620464500701099,0.0025911905351114943,0.0025622758396013764,0.002533715425356149,0.0025055043840987177,0.002477637886553987,0.0024501111809472104,0.0024229195915367865,0.0023960585171794433,0.0023695234299274336,0.0023433098736571705,0.0023174134627274327,0.0022918298806678906,0.0022665548788959773,0.002241584275461841,0.002216913953820964,0.0021925398616326956,0.002168458009585463,0.002144664470246935,0.002121155376938902,0.0020979269226361775,0.002074975358889255,0.0020522969947691897,0.002029888195835448,0.0020077453831251835,0.0019858650321637407,0.0019642436719961697,0.001942877884238337,0.0019217643021483444,0.0019008996097168984,0.0018802805407764965,0.0018599038781288788,0.0018397664526906897,0.0018198651426558415,0.0018001968726759144,0.0017807586130563612,0.0017615473789693726,0.0017425602296827192,0.0017237942678035593,0.001705246638537931,0.0016869145289647642,0.0016687951673243198,0.001650885822320986,0.0016331838024393685,0.0016156864552743261,0.001598391166873929,0.0015812953610953274,0.4114638631898504,0.4114638631898504,0.4114638631898504,0.4114638631898504,0.4114638631898504,0.4114638631898504,0.4114638631898504,0.4114638631898504,0.4108246006972473,0.3989270950463402,0.3757270382188127,0.34725275930052596,0.3181814878020061,0.29100649962337616,0.26665439965833604,0.24523330600987112,0.2265076420147707,0.21013598501177874,0.19577429077546252,0.18311412199129334,0.17189233264740733,0.16188934159099605,0.15292356438923305,0.14484515683674387,0.1375302642238339,0.1308761328118467,0.12479710187572542,0.1192213740659599,0.1140884325675914,0.10934697993348,0.10495329153096937,0.10086989635887438,0.09706451586825171,0.09350920631349745,0.09017966209300265,0.08705464690879468,0.08411552685580763,0.08134588518337509,0.07873120282225009,0.07625859213538103,0.07391657395861638,0.07169489002631059,0.06958434446080558,0.06757666924679888,0.06566440959029894,0.06384082583596569,0.062099809232373626,0.06043580932642836,0.05884377116260697,0.05731908078086098,0.055857517764285346,0.054455213797068296,0.05310861636408671,0.051814456863636095,0.05056972252000056,0.0493716315779592,0.048217611340182105,0.04710527867428472,0.04603242267120668,0.044996989182521485,0.04399706700307019,0.0430308754978175,0.04209675349948519,0.04119314932692259,0.040318611794042426,0.03947178209623614,0.038651386475633584,0.037856229579098406,0.03708518843355681,0.03633720697252144,0.03561129105561708,0.03490650392991104,0.03422196208778298,0.03355683148133829,0.032910324057923615,0.03228169458524682,0.03167023773815246,0.03107528542209393,0.030496204311069194,0.029932393580133977,0.029383282814705362,0.028848330080676388,0.028327020141046867,0.027818862806165315,0.027323391405990556,0.02684016137392083,0.026368748932725845,0.02590874987407192,0.025459778423890154,0.02502146618658954,0.024593461161763662,0.024175426827596373,0.023767041285737273,0.02336799646284378,0.022977997364435076,0.02259676137707524,0.022224017615254086,0.02185950630962409,0.021502978233569142,0.021154194165298807,0.020812924382913336,0.020478948190094267,0.020152053470245943,0.01983203626712082,0.01951870039008471,0.01921185704234226,0.01891132447056678,0.01861692763450453,0.0183284978952154,0.018045872720741808,0.01776889540805929,0.01749741482026348,0.017231285138024285,0.016970365624393902,0.01671452040214695,0.016463618242863583,0.01621753236703716,0.015976140254537953,0.01573932346479747,0.015506967466144602,0.015278961473741184,0.015055198295614816,0.014835574186316022,0.014619988707762644,0.01440834459685062,0.01420054763945891,0.013996506550479468,0.013796132859538497,0.013599340802096843,0.013406047215625432,0.013216171440590424,0.013029635225979797,0.012846362639131286,0.012666279979631715,0.01248931569707606,0.0123154003124767,0.012144466343143102,0.011976448230845713,0.011811282273098647,0.011648906557405112,0.011489260898309445,0.011332286777124688,0.011177927284195982,0.011026127063577437,0.010876832260006181,0.010729990468056318,0.010585550683375723,0.010443463255899893,0.010303679844951756,0.01016615337613725,0.010030837999955262,0.00989768905203638,0.009766663014942806,0.009637717481452346,0.009510811119260571,0.00938590363703904,0.009262955751783203,0.009141929157399541,0.00902278649447176,0.00890549132115633,0.008790008085157112,0.008676302096734376,0.008564339502698592,0.00845408726135316,0.008345513118341098,0.008238585583358667,0.008133273907701301,0.00802954806260237,0.00792737871833788,0.007826737224061096,0.00772759558833847,0.0076299264603599485,0.007533703111791919,0.007438899419252581,0.007345489847380719,0.007253449432475824,0.0071627537666865415,0.0070733789827274185,0.006985301739099442,0.006898499205799849,0.006812949050498717,0.006728629425165422,0.006645518953129198,0.0065635967165536425,0.006482842244314304,0.0064032355002608034,0.006324756871850093,0.0062473871591385115,0.006171107564115798,0.006095899680373089,0.006021745483089391,0.005948627319326293,0.005876527898619373,0.005805430283856862,0.005735317882432302,0.0056661744376655535,0.0055979840204795316,0.005530731021324892,0.005464400142344759,0.005398976389768504,0.005334445066530262,0.005270791765101783,0.005208002360533314,0.0051460630036951616,0.005084960114714096,0.00502468037659552,0.004965210729028612,0.004906538362365712,0.004848650711771133,0.004791535451534549,0.004735180489541125,0.004679573961896587,0.004624704227699606,0.004570559863957788,0.004517129660643177,0.004464402615880646,0.004412367931267967,0.00436101500732107,0.0043103334390415015,0.004260313011601895,0.00421094369614667,0.0041622156457022325,0.004114119191196095,0.004066644837579458,0.004019783260050815,0.0039735253003781125,0.003927861963314521,0.0038827844131076013,0.0038382839700970904,0.003794352107399452,0.0037509804476763098,0.003708160759985072,0.0036658849567074224,0.003624145090555866,0.0035829333516541927,0.003542242064690323,0.0035020636861400334,0.003462390801557755,0.003423216122934791,0.003384532486121361,0.0033463328483112147,0.0033086102855875025,0.0032713579905266684,0.00323456926986079,0.003198237542195141,0.0031623563357801297,0.0031269192863358037,0.003091920134928131,0.0030573527258941466,0.0030232110048165266,0.0029894890165448494,0.002956180903262728,0.002923280902600002,0.0028907833457874612,0.002858682655854705,0.0028269733458687056,0.002795650017212438,0.0027647073579024233,0.0027341401409446266,0.002703943222726388,0.002674111541445243,0.0026446401155722733,0.002615524042349605,0.002586758496321534,0.002558338727897209,0.002530260061945643,0.0025025178964210803,0.002475107701018285,0.0024480250158574026,0.0024212654501965017,0.002394824681172598,0.0023686984525693356,0.002342882573611092,0.0023173729177826865,0.0022921654216745547,0.0022672560838515785,0.0022426409637464977,0.002218316180576235,0.0021942779122808456,0.002170522394484976,0.002147045919480228,0.0021238448352292323,0.0021009155443899976,0.0020782545033602626,0.002055858221341803,0.002033723259423176,0.0020118462296818,0.001990223794303896,0.0019688526647223185,0.001947729600771673,0.0019268514098607003,0.0019062149461606306,0.0018858171098103242,0.0018656548461369207,0.0018457251448919052,0.0018260250395025943,0.0018065516063377354,0.0017873019639881268,0.001768273272560992,0.0017494627329881969,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41651995127418273,0.41549338751513976,0.40267144933418914,0.3791014870011308,0.3506966647798632,0.32190477182644883,0.29505184017368197,0.27098404355088906,0.2497838243392167,0.23121531279386062,0.2149459181794001,0.2006422810302938,0.1880057530155467,0.17678130539264064,0.16675579347962674,0.1577526286391824,0.149625805960186,0.14225440959734795,0.13553793357902677,0.12939243761655542,0.12374744291520132,0.11854344451211006,0.1137299220838392,0.10926374783555602,0.10510790859759707,0.10123047605886251,0.0976037731242699,0.09420369568660174,0.09100915800363175,0.08800163680577898,0.08516479463514316,0.0824841670788909,0.07994690178431393,0.07754153964734306,0.07525783051736396,0.07308657728695075,0.07101950343376119,0.06904914002694805,0.06716872895969897,0.06537213976585908,0.06365379785539334,0.06200862238674859,0.060431972303130514,0.058919599310363106,0.05746760677786945,0.056072413710996666,0.054730723079572795,0.053439493900377014,0.05219591656421618,0.05099739097569803,0.04984150713818361,0.04872602787015994,0.04764887338453025,0.04660810750017536,0.045601925287260946,0.044628641974892025,0.04368668297269797,0.04277457487764375,0.04189093735401165,0.04103447578889486,0.04020397463782704,0.03939829138578185,0.03861635105785981,0.03785714122196026,0.03711970743249828,0.03640314907021775,0.035706615538324035,0.035029302779632815,0.034370450083447794,0.03372933715426326,0.033105281417461975,0.03249763553982861,0.03190578514505901,0.031329146706482215,0.03076716560110099,0.030219314310618372,0.029685090756588664,0.02916401675810611,0.02865563660155071,0.028159515712973916,0.027675239424557973,0.02720241182741831,0.026740654703740034,0.0262896065318587,0.02584892155852294,0.025418268933051328,0.024997331898592188,0.024585807036107188,0.024183403557090245,0.02378984264135207,0.023404856816553046,0.0230281893764068,0.02265959383475601,0.022298833412951618,0.021945680558156315,0.021599916490419806,0.02126133077651104,0.02092972092867211,0.020604892026594875,0.020286656361059568,0.01997483309777644,0.019669247960112764,0.019369732929456,0.019076125962074465,0.018788270721421255,0.018506016324884137,0.018229217104096355,0.017957732377936516,0.017691426237450705,0.01743016734196044,0.01717382872567598,0.01692228761418547,0.016675425250232346,0.016433126728229552,0.016195280837000125,0.015961779910267922,0.015732519684449803,0.01550739916333377,0.015286320489255899,0.015069188820407269,0.014855912213936073,0.014646401514513291,0.014440570248081727,0.014238334520487506,0.014039612920745417,0.01384432642868215,0.013652398326734153,0.013463754115669987,0.013278321434043313,0.013096029981179036,0.012916811443510614,0.012740599424101608,0.01256732937518324,0.012396938533564786,0.012229365858771825,0.01206455197377016,0.011902439108162454,0.011742971043722326,0.011586093062163386,0.011431751895032542,0.011279895675625519,0.011130473892829867,0.010983437346806913,0.010838738106420918,0.010696329468342652,0.01055616591774462,0.010418203090516047,0.010282397736933365,0.010148707686712449,0.010017091815387121,0.009887510011955845,0.009759923147734,0.009634293046364567,0.009510582454938542,0.009388755016166081,0.00926877524156938,0.009150608485639108,0.009034220920922473,0.008919579514000386,0.008806652002316291,0.008695406871821855,0.008585813335406407,0.00847784131207645,0.008371461406856929,0.008266644891380525,0.008163363685143088,0.008061590337394092,0.007961298009638594,0.007862460458725871,0.007765052020503437,0.007669047594009364,0.007574422626190109,0.007481153097114773,0.0073892155056729325,0.007298586855735795,0.007209244642760366,0.007121166840824828,0.007034331890074409,0.006948718684566139,0.006864306560494838,0.006781075284785983,0.006699005044046774,0.006618076433855442,0.0065382704483820725,0.006459568470325369,0.006381952261157707,0.006305403951662593,0.0062299060327579035,0.006155441346595097,0.0060819930779207505,0.006009544745696611,0.005938080194963173,0.0058675835889452285,0.005798039401383975,0.005729432409094416,0.0056617476847346734,0.005594970589785253,0.005529086767726163,0.005464082137409692,0.0053999428866196445,0.005336655465810979,0.005274206582026852,0.005212583192980915,0.005151772501307451,0.005091761948967569,0.00503253921180932,0.004974092194276938,0.004916409024262001,0.004859478048095311,0.004803287825673039,0.004747827125712162,0.004693084921134025,0.004639050384569184,0.004585712883980085,0.004533061978400431,0.004481087413784788,0.0044297791189657765,0.004379127201717303,0.004329121944917498,0.004279753802811217,0.004231013397367953,0.0041828915147317765,0.004135379101761289,0.004088467262657349,0.004042147255674,0.003996410489912804,0.003951248522196545,0.003906653054019261,0.0038626159285737416,0.0038191291278487356,0.0037761847697999696,0.003733775105588304,0.003691892516885124,0.0036505295132435063,0.003609678729530449,0.0035693329234231354,0.0035294849729624145,0.003490127874166182,0.0034512547386975788,0.003412858791589118,0.0033749333690193044,0.003337471916141548,0.003300467984963602,0.003263915232275079,0.0032278074176246307,0.0031921384013408756,0.0031569021426011363,0.003122092697542358,0.003087704217415454,0.0030537309467816866,0.003020167221748942,0.002987007468247706,0.0029542462003458963,0.002921878018600541,0.0028898976084463226,0.002858299738619904,0.0028270792596180633,0.0027962311021901866,0.0027657502758638764,0.0027356318675016917,0.002705871039890079,0.002676463030357891,0.002647403149425341,0.0026186867794812385,0.0025903093734886843,0.0025622664537183746,0.002534553610508737,0.002507166501051775,0.0024801008482048205,0.002453352439327181,0.0024269171251406698,0.002400790818614631,0.002374969493872921,0.00234944918512439,0.002324225985614924,0.0022992960466011515,0.002274655576344983,0.0022503008391285464,0.0022262281542894577,0.002202433895275149,0.002178914488716464,0.0021556664135199363,0.0021326861999782657,0.0021099704288980153,0.002087515730745459,0.0020653187848085424,0.0020433763183759866,0.002021685105932595,0.0020002419683694188,0.0019790437722105856,0.001958087428854414,0.0019373698938294924,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4216381688162963,0.4208008546814769,0.40858078430865263,0.3855331654966389,0.35747551753885753,0.3288629955452242,0.30206550622902034,0.2779712716412267,0.25669329395564144,0.23801592963246815,0.22161956328900817,0.20717910047654034,0.19440116354877382,0.18303409112131588,0.1728668859941402,0.16372431673039475,0.1554612182854812,0.14795717308898093,0.14111194655447198,0.13484171871309292,0.12907603072067245,0.12375533142028396,0.11882901143386342,0.11425382698087137,0.10999263290776251,0.10601336042720155,0.10228818861250792,0.09879286965822927,0.09550617659354048,0.09240944891749951,0.08948621689786293,0.08672188936539227,0.08410349301098223,0.08161945366256036,0.07925941194521495,0.0770140672368259,0.07487504501722954,0.07283478364556509,0.07088643734316834,0.0690237927509937,0.06724119690431325,0.06553349484793233,0.06389597542266656,0.06232432400305203,0.06081458116929167,0.0593631064623422,0.057966546507484756,0.056621806903889495,0.05532602737070324,0.05407655971734777,0.05287094826994414,0.05170691243967465,0.050582331163874894,0.049495228988688716,0.04844376359417261,0.04742621458982231,0.04644097343166003,0.0454865343315538,0.044561486046280026,0.043664504448183906,0.042794345791646524,0.04194984060013455,0.04112988810785754,0.040333451197893805,0.039559551785567304,0.03880726660182251,0.03807572333649923,0.03736409710601888,0.036671607213882296,0.03599751417589803,0.035341116985090744,0.034701750593936084,0.034078783593890445,0.033471616074332924,0.03287967764481576,0.03230242560618675,0.03173934325759492,0.03118993832764247,0.03065374151914882,0.030130305157954246,0.029619201937133296,0.029120023748801266,0.028632380596395435,0.02815589958101565,0.027690223955944906,0.027235012244025827,0.026789937413031956,0.026354686104609115,0.0259289579127209,0.025512464707923028,0.02510493000406256,0.024706088364306645,0.024315684843662755,0.02393347446536359,0.02355922172874192,0.023192700146373323,0.02283369180846523,0.02248198697262084,0.022137383677261088,0.021799687377099683,0.02146871059922312,0.02114427261840344,0.020826199150394,0.020514322062050352,0.020208479097186784,0.01990851361718827,0.019614274355438485,0.019325615184709103,0.01904239489671535,0.01876447699308317,0.018491729487053667,0.018224024715268624,0.01796123915904366,0.017703253274567992,0.017449951331514547,0.017201221259562968,0.016956954502395566,0.016717045878730942,0.01648139345000181,0.016249898394308907,0.016022464886293063,0.0157989999826133,0.015579413512715183,0.015363617974607589,0.015151528435377795,0.01494306243619608,0.014738139901564638,0.014536683052599404,0.014338616324127482,0.01414386628540536,0.013952361564276424,0.013764032774584347,0.01357881244668943,0.013396634960924702,0.013217436483848776,0.013041154907159866,0.012867729789133829,0.012697102298473498,0.012529215160445724,0.012364012605199926,0.012201440318163403,0.0120414453924185,0.011883976282961945,0.011728982762768063,0.011576415880565814,0.011426227920253473,0.011278372361878545,0.01113280384410587,0.01098947812811555,0.010848352062860665,0.010709383551626839,0.01057253151983807,0.010437755884048956,0.01030501752207929,0.010174278244236019,0.010045500765578582,0.00991864867918216,0.00979368643035913,0.009670579291792842,0.009549293339553037,0.009429795429950812,0.009312053177200599,0.009196034931857389,0.00908170975999311,0.008969047423088612,0.008858018358607566,0.008748593661227228,0.008640745064699123,0.008534444924316757,0.008429666199962016,0.008326382439713642,0.00822456776399157,0.008124196850218028,0.00802524491797688,0.007927687714648215,0.007831501501505573,0.007736663040254487,0.00764314957999722,0.007550938844607516,0.007460009020501684,0.007370338744787487,0.0072819070937823705,0.007194693571883512,0.00710867810077848,0.00702384100898522,0.006940163021706265,0.006857625250990528,0.006776209186188339,0.006695896684690626,0.006616669962943357,0.006538511587724333,0.006461404467677706,0.006385331845094032,0.006310277287928721,0.006236224682050451,0.0061631582237128306,0.006091062412238849,0.006019922042914987,0.005949722200084961,0.005880448250437477,0.005812085836482613,0.0057446208702076305,0.005678039526910292,0.005612328239200987,0.005547473691169182,0.005483462812709801,0.005420282774001688,0.005357920980136916,0.005296365065893506,0.005235602890647967,0.005175622533423122,0.005116412288067785,0.0050579606585618555,0.005000256354446149,0.004943288286370707,0.004887045561758773,0.004831517480583624,0.004776693531252592,0.00472256338659804,0.004669116899969816,0.0046163441014270504,0.004564235194025995,0.004512780550202034,0.004461970708240787,0.004411796368838623,0.00436224839174786,0.004313317792504798,0.004264995739238955,0.0042172735495590846,0.004170142687516438,0.004123594760641117,0.004077621517050049,0.004032214842625183,0.0039873667582580605,0.003943069417161404,0.0038993151022439425,0.003856096223547458,0.0038134053157441285,0.003771235035693171,0.0037295781600533606,0.003688427582952333,0.003647776313709254,0.003607617474610078,0.003567944298734481,0.0035287501278314227,0.0034900284102442457,0.0034517726988823436,0.0034139766492387947,0.00337663401745252,0.003339738658414506,0.003303284523915221,0.003267265660834367,0.0032316762093702036,0.003196510401308026,0.00316176255832719,0.003127427090344273,0.0030934984938933846,0.0030599713505412023,0.003026840325336361,0.002994100165292781,0.0029617456979046395,0.002929771829694127,0.002898173544789704,0.0028669459035347,0.0028360840411252807,0.002805583166277602,0.0027754385599221324,0.002745645573926209,0.0027161996298427807,0.002687096217685244,0.0026583308947280477,0.002629899284331252,0.0026017970747901032,0.002574020018207786,0.002546563929391297,0.002519424684769715,0.0024925982213348133,0.0024660805356023223,0.0024398676825948917,0.0024139557748451067,0.0023883409814184292,0.0023630195269560266,0.0023379876907358775,0.0023132418057532065,0.0022887782578187273,0.002264593484674607,0.002240683975128144,0.0022170462682016647,0.0021936769522996878,0.0021705726643919173,0.002147730089212113,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.42681927926600816,0.4265892972025474,0.4166425881012646,0.3951534534612358,0.36781648236215353,0.339328028854775,0.3123298323288011,0.28789070987596943,0.2662206076635327,0.2471500388643971,0.23037911685913134,0.2155897300782824,0.20248966233687807,0.1908259351126794,0.18038532348472974,0.1709901703482006,0.16249299308939497,0.15477128002891963,0.14772295401688454,0.14126259423475748,0.13531835830247943,0.12982950066882099,0.12474437950144161,0.12001885612419474,0.11561500698178578,0.11150008352803664,0.10764566874365297,0.10402698988998373,0.10062235579241462,0.09741269377209069,0.09438116666725642,0.09151285452554325,0.08879448876759809,0.08621422912934416,0.0837614756482204,0.08142670949254373,0.07920135764007961,0.07707767736517958,0.07504865725004826,0.07310793203865583,0.0712497091340577,0.06946870492793615,0.06776008946438698,0.06611943819407591,0.06454268978170298,0.06302610909909312,0.06156625467499191,0.06015994998725765,0.05880425807787535,0.05749645904981599,0.05623403007046215,0.05501462756100635,0.05383607129730445,0.052696330186376726,0.05159350951537291,0.05052583949761782,0.04949166496375152,0.04848943606607921,0.04751769988132752,0.046575092811679215,0.04566033369648194,0.0447722175579536,0.043909609913455175,0.043071441595041914,0.042256704024008086,0.041464444894182655,0.04069376422311847,0.039943810734860405,0.0392137785420728,0.03850290409883227,0.03781046339851866,0.03713576939393053,0.03647816961923296,0.0358370439954006,0.03521180280274249,0.03460188480575727,0.034006755517011,0.03342590558810415,0.03285884931690066,0.03230512326126892,0.03176428495051215,0.03123591168646586,0.030719599427037253,0.030214961745574205,0.029721628860082106,0.029239246726831602,0.02876747619339582,0.02830599220656278,0.027854483071008886,0.027412649754927732,0.026980205239156473,0.026556873906631234,0.02614239096924332,0.025736501929448655,0.025338962074157458,0.024949535998654803,0.024567997158471664,0.02419412744729901,0.023827716799164546,0.023468562813264322,0.023116470399929572,0.022771251446343524,0.022432724500727214,0.022100714473788693,0.0217750523563519,0.021455574952127986,0.02114212462468462,0.02083454905773636,0.020532701027924045,0.0202364381893392,0.01994562286907162,0.019660121873125862,0.01937980630208981,0.019104551375987485,0.01883423626776894,0.018568743944954343,0.018307961018953735,0.018051777601631132,0.017800087168708453,0.017552786429617457,0.017309775203456886,0.017070956300709355,0.016836235410409173,0.016605520992464987,0.016378724174865966,0.016155758655502086,0.015936540608368514,0.015720988593915686,0.015509023473332946,0.015300568326566911,0.01509554837387478,0.01489389090074548,0.014695525186010734,0.014500382432989681,0.01430839570351999,0.014119499854725309,0.013933631478396406,0.013750728842851724,0.01357073183716123,0.013393581917619931,0.013219222056367524,0.013047596692045848,0.012878651682409108,0.012712334258788626,0.012548592982329765,0.01238737770192189,0.012228639513738091,0.012072330722320801,0.011918404803137913,0.011766816366546123,0.01161752112309911,0.01147047585014357,0.01132563835964124,0.011182967467171852,0.011042422962060186,0.010903965578581355,0.010767556968200408,0.010633159672796953,0.010500737098841239,0.010370253492476337,0.010241673915470956,0.01011496422200881,0.009990091036275132,0.009867021730815132,0.00974572440562781,0.009626167867968015,0.009508321612827643,0.00939215580407127,0.009277641256195434,0.0091647494166938,0.009053452348999694,0.008943722715985435,0.008835533763998612,0.00872885930741006,0.008623673713660475,0.00851995188878205,0.008417669263378998,0.008316801779051274,0.008217325875240654,0.0081192184764894,0.008022456980092137,0.007927019244128275,0.007832883575860613,0.007740028720488539,0.007648433850239217,0.007558078553789894,0.007468942826005651,0.007381007057982914,0.0072942520273890765,0.007208658889084357,0.007124209166020872,0.007040884740405824,0.0069586678451210885,0.006877541055390131,0.006797487280684972,0.006718489756862027,0.006640532038523315,0.006563597991592416,0.006487671786098937,0.006412737889165758,0.0063387810581893005,0.006265786334210448,0.0061937390354670566,0.006122624751123019,0.006052429335169273,0.005983138900488245,0.005914739813080422,0.005847218686445056,0.005780562376111117,0.005714757974313619,0.005649792804811712,0.005585654417841396,0.0055223305852023915,0.005459809295472313,0.0053980787493449756,0.005337127355090213,0.005276943724128557,0.005217516666721092,0.005158835187768157,0.005100888482714867,0.005043665933559781,0.004987157104964719,0.00493135174046032,0.004876239758747643,0.004821811250090681,0.004768056472797981,0.0047149658497913525,0.004662529965257125,0.0046107395613803875,0.004559585535157693,0.004509058935286727,0.00445915095913141,0.004409852949758267,0.004361156393044778,0.004313052914855673,0.004265534278286091,0.0042185923809694,0.004172219252448829,0.004126407051609041,0.004081148064168703,0.004036434700230414,0.003992259491887083,0.003948615090883839,0.0039054942663321246,0.0038628899024770852,0.00382079499651485,0.003779202656459311,0.0037381060990566858,0.0036974986477473406,0.003657373730671973,0.0036177248787231794,0.003578545723639607,0.0035398299961420803,0.0035015715241112073,0.003463764230803747,0.003426402133108935,0.0033894793398420633,0.0033529900500750055,0.003316928551503155,0.003281289218846418,0.00324606651228536,0.0032112549759301806,0.003176849236322235,0.003142844000967134,0.0031092340568992195,0.0030760142692751874,0.0030431795799980457,0.003010725006369289,0.0029786456397689846,0.00294693664436366,0.0029155932558398486,0.002884610780164581,0.00285398459237071,0.002823710135367078,0.0027937829187731993,0.0027641985177766985,0.002734952572014664,0.002706040784477008,0.0026774589204319028,0.0026492028063725822,0.0026212683289854703,0.0025936514341379615,0.002566348125887033,0.0025393544655069023,0.0025126665705358362,0.002486280613841928,0.0024601928227063422,0.0024343994779251373,0.0024088969129280545,0.0023836815129144244,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.43206405545444454,0.42629999033939614,0.4078694981010468,0.3819774651046697,0.3537400745932909,0.3263464371871466,0.301240938778357,0.27883330059584666,0.2590450342961865,0.24161138987455202,0.22622344800240052,0.21258713636308857,0.2004435242923736,0.18957242592357282,0.17978949546014314,0.17094129472682074,0.162900191270311,0.15555977662053302,0.14883099163443447,0.1426389428108456,0.1369203224316837,0.13162133035893656,0.12669600225331681,0.12210486297043802,0.11781383869868968,0.1137933746828831,0.11001771647220998,0.10646432157720781,0.1031133754986228,0.09994739163798347,0.09695087892645284,0.09411006437935657,0.09141266041265618,0.08884766881145692,0.08640521485099081,0.08407640633727007,0.08185321333508089,0.07972836514493685,0.0776952617227103,0.07574789724178825,0.07388079390420636,0.0720889444355074,0.07036776196405878,0.06871303620236532,0.067120895024787,0.0655877706814903,0.0641103700081642,0.0626856480899506,0.0613107849203584,0.05998316466422719,0.05870035719110594,0.057460101593383626,0.05626029144381092,0.055098961581245054,0.05397427624217295,0.052884518380131466,0.05182808003597269,0.050803453639751826,0.04980922414020074,0.04884406187093963,0.04790671607373821,0.04699600900891232,0.04611083059134156,0.04525013349782242,0.04441292869788743,0.0435982813656362,0.04280530713498236,0.042033168664898646,0.041281072484938924,0.04054826609449703,0.03983403529217766,0.039137701714078155,0.03845862056202899,0.03779617850479117,0.03714979173689532,0.03651890418140808,0.03590298582420326,0.03530153116856549,0.03471405780003121,0.034140105052300675,0.033579232765974666,0.03303102013258026,0.032495064617076325,0.03197098095263457,0.031458400202061504,0.030956968880696382,0.030466348136122354,0.029986212980384556,0.02951625157080516,0.029056164535817084,0.028605664342512556,0.028164474702921882,0.027732330016238076,0.027308974844456227,0.026894163419089828,0.02648765917682163,0.02608923432209133,0.02569866941481818,0.025315752981555726,0.024940281148528573,0.024572057295118712,0.024210891726454024,0.023856601363889052,0.0235090094522205,0.023167945282584573,0.022833243930059217,0.02250474600504455,0.02218229741759399,0.021865749153893315,0.021554957064160572,0.021249781661282083,0.020950087929554075,0.02065574514292338,0.020366626692191785,0.020082609920653933,0.01980357596769117,0.019529409619873834,0.019259999169138793,0.018995236277662846,0.018735015849050893,0.01847923590549736,0.018227797470594748,0.01798060445748915,0.017737563562086615,0.017498584161056274,0.017263578214367636,0.017032460172129057,0.016805146885507657,0.016581557521511952,0.016361613481452465,0.016145238322885457,0.015932357684867792,0.015722899216361302,0.015516792507621913,0.015313969024439088,0.01511436204507802,0.014917906599797446,0.014724539412818503,0.014534198846631175,0.01434682484851975,0.01416235889921379,0.013980743963557949,0.01380192444310933,0.013625846130577088,0.01345245616601211,0.013281702994677812,0.013113536326519081,0.01294790709716057,0.01278476743036601,0.012624070601896626,0.012465771004700634,0.012309824115385202,0.012156186461908495,0.012004815592441966,0.011855670045354925,0.011708709320267761,0.011563893850137104,0.011421184974323628,0.011280544912603802,0.011141936740088603,0.011005324363006047,0.010870672495320303,0.010737946636147671,0.010607113047939569,0.010478138735401347,0.010350991425119572,0.010225639545864768,0.01010205220954999,0.009980199192814383,0.009860050919209376,0.009741578441965867,0.00962475342731508,0.009509548138348877,0.009395935419393838,0.009283888680881673,0.00917338188469889,0.009064389529993125,0.008956886639425619,0.008850848745848572,0.00874625187939397,0.008643072554958076,0.008541287760069155,0.00844087494312031,0.008341812001960111,0.008244077272824024,0.008147649519595975,0.008052507923389858,0.007958632072435717,0.00786600195226541,0.007774597936183313,0.007684400776013928,0.007595391593116402,0.007507551869658292,0.007420863440136221,0.007335308483139867,0.007250869513347615,0.007167529373747293,0.007085271228075689,0.007004078553466195,0.006923935133302356,0.006844825050267093,0.006766732679582525,0.006689642682435174,0.006613539999577439,0.00653840984510399,0.006464237700394239,0.006391009308217026,0.006318710666991877,0.006247328025203179,0.006176847875959573,0.006107256951697857,0.006038542219024155,0.005970690873689005,0.005903690335693267,0.005837528244517989,0.00577219245447827,0.005707671030194561,0.0056439522421789885,0.005581024562532932,0.005518876660753527,0.005457497399643345,0.005396875831323634,0.005337001193345457,0.005277862904896825,0.005219450563103773,0.005161753939420208,0.005104762976107321,0.005048467782797448,0.004992858633140817,0.004937925961533708,0.004883660359923158,0.004830052574689441,0.004777093503601583,0.0047247741928449355,0.004673085834118473,0.004622019761800708,0.004571567450180279,0.00452172051075215,0.004472470689575677,0.004423809864693397,0.00437573004360969,0.004328223360825593,0.004281282075431052,0.004234898568750913,0.0041890653420442,0.004143775014254836,0.0040990203198133625,0.004054794106486297,0.004011089333274492,0.003967899068357253,0.003925216487081759,0.003883034869997092,0.003841347600930026,0.0038001481651038587,0.0037594301472973746,0.003719187230043551,0.0036794131918675625,0.0036401019055613566,0.0036012473364962117,0.0035628435409705353,0.0035248846645927747,0.0034873649406983675,0.003450278688800399,0.0034136203130717218,0.00337738430085974,0.0033415652212315373,0.0033061577235491434,0.0032711565360746676,0.0032365564646031175,0.0032023523911242206,0.003168539272511025,0.003135112139235191,0.003102066094108782,0.003069396311050491,0.003037098033877657,0.003005166575122003,0.0029735973148691227,0.0029423856996209988,0.0029115272411815137,0.0028810175155631053,0.0028508521619158593,0.002821026881477158,0.002791537436541924,0.002762379649453326,0.002733549401612292,0.0027050426325070194,0.0026768553387608207,0.002648983573198357 +0.15999458283393933,0.15999458283393933,0.1585787338381028,0.1502469284463335,0.13717285123689138,0.12263052374508981,0.10872481056538781,0.0963566336792421,0.08571398571899139,0.0766720847072221,0.06900738227812515,0.06249016102747362,0.05691737984919026,0.05212006298125871,0.04796116164461642,0.044330605513831604,0.04114013985637719,0.03831881478756161,0.03580930958452796,0.03356502989139561,0.03154784684925603,0.029726344681933255,0.028074462173640322,0.026570436325610312,0.025195977143309768,0.02393561937234316,0.022776210138802898,0.02170650144957921,0.02071682403596408,0.019798824665698087,0.01894525327547853,0.018149789448906706,0.017406900155089642,0.01671172247192251,0.016059966393576434,0.015447833873575845,0.014871951063545039,0.014329311333018934,0.013817227141876148,0.01333328921714028,0.012875331784657641,0.012441402842340191,0.012029738649243652,0.011638741754482039,0.01126696201015844,0.010913080109278394,0.01057589326803482,0.010254302735606896,0.009947302866663642,0.009653971534492127,0.00937346169778753,0.009104993963211043,0.008847850009909937,0.00860136676225702,0.008364931213806218,0.008137975819527223,0.007919974385162147,0.007710438392518955,0.007508913707937462,0.00731497762829827,0.007128236225044991,0.006948321951855546,0.006774891486047158,0.0066076237776025015,0.0064462182829659286,0.006290393363593849,0.006139884831660597,0.005994444627439002,0.005853839614699497,0.005717850482064617,0.0055862707396327465,0.00545890580140812,0.005335572145117918,0.0052160965419325665,0.005100315349418897,0.004988073861765147,0.004879225711959559,0.004773632321149503,0.0046711623909074145,0.004571691434563313,0.004475101344152787,0.004381279989866904,0.0042901208492061,0.004201522663302599,0.004115389118124543,0.0040316285484919365,0.003950153663023852,0.0038708812883191343,0.0037937321308200793,0.0037186305549541227,0.003645504376274133,0.0035742846684274797,0.0035049055828938035,0.0034373041805162248,0.0033714202739389683,0.0033071962801379546,0.0032445770823009415,0.003183509900371927,0.0031239441696371663,0.003065831426774841,0.0030091252028405925,0.002953780922703266,0.0028997558104805724,0.0028470088005650594,0.0027955004538572966,0.0027451928788558766,0.0026960496572792612,0.002648035773920239,0.0026011175504532906,0.0025552625829405543,0.0025104396827961947,0.0024666188209889715,0.002423771075278867,0.00238186858029556,0.002340884480284577,0.0023007928843548887,0.0022615688240757675,0.0022231882132811285,0.002185627809947143,0.002148865180021805,0.0021128786630895727,0.0020776473397642148,0.00204315100070928,0.0020093701171929614,0.001976285813088242,0.0019438798382382314,0.0019121345431085174,0.001881032854655177,0.0018505582533415092,0.0018206947512391558,0.0017914268711561176,0.001762739626734889,0.0017346185034690866,0.0017070494405894642,0.0016800188137737963,0.001653513418636215,0.0016275204549569006,0.0016020275116126622,0.0015770225521728439,0.0015524939011268778,0.0015284302307105588,0.0015048205483022526,0.001481654184359565,0.0014589207808700753,0.001436610280291061,0.001414712914953418,0.001393219196908486,0.0013721199081954498,0.0013514060915095893,0.001331069041252136,0.0013111002949441032,0.0012914916249860877,0.001272235030749084,0.0012533227309801114,0.0012347471565084202,0.0012165009432388483,0.00119857692541843,0.0011809681291650015,0.0011636677662452443,0.0011466692280913157,0.0011299660800457461,0.0011135520558237931,0.0010974210521847306,0.0010815671238022491,0.00106598447832565,0.0010506674716235357,0.0010356106032024842,0.0010208085117925922,0.0010062559710937492,0.0009919478856752195,0.0009778792870223784,0.000964045329724667,0.000950441287798401,0.0009370625511396324,0.0009239046221012234,0.000910963112189311,0.0008982337388742806,0.0008857123225118832,0.0008733947833695545,0.0008612771387545118,0.000849355500239048,0.0008376260709794216,0.000826085143124846,0.0008147290953126094,0.0008035543902466175,0.0007925575723557391,0.0007817352655290378,0.0007710841709249608,0.0007606010648518486,0.0007502827967166488,0.0007401262870398925,0.0007301285255339936,0.000720286569242738,0.0007105975407397918,0.0007010586263836932,0.0006916670746278157,0.0006824201943828886,0.0006733153534303439,0.0006643499768847708,0.0006555215457033565,0.0006468275952411638,0.0006382657138502245,0.0006298335415210804,0.0006215287685652343,0.000613349134337225,0.0006052924259946052,0.0005973564772949929,0.0005895391674285558,0.0005818384198848619,0.0005742522013530132,0.000566778520653634,0.0005594154277020561,0.0005521610125013499,0.000545013404164295,0.0005379707699634578,0.0005310313144081177,0.0005241932783475766,0.0005174549380996981,0.000510814604603939,0.0005042706225980895,0.0004978213698180226,0.0004914652562194671,0.00048520072322145573,0.00047902624297048105,0.0004729403176248035,0.0004669414786583536,0.00046102828618335646,0.00045519932829143813,0.00044945322041237986,0.0004437886046900738,0.00043820414937512016,0.00043269854823364405,0.0004272705199716012,0.00042191880767441863,0.00041664217826126057,0.0004114394219535623,0.0004063093517574809,0.00040125080295961007,0.0003962626326358698,0.00039134371917295567,0.000386492961802045,0.0003817092801444734,0.0003769916137688217,0.0003723389217593485,0.00036775018229524327,0.000363224392240456,0.0003587605667437797,0.00035435773884896635,0.00035001495911439213,0.0003457312952422591,0.0003415058317168706,0.00033733766945178367,0.00033322592544565184,0.0003291697324463349,0.0003251682386232749,0.00032122060724774026,0.00031732601638078246,0.0003134836585686718,0.000309692740545673,0.00030595248294379337,0.0003022621200095283,0.0002986208993272574,0.0002950280815491567,0.000291482940131507,0.0002879847610770732,0.00028453284268358875,0.0002811264952980366,0.0002777650410766209,0.0002744478137503214,0.00027117415839574726,0.00026794343121133544,0.0002647549992986096,0.00026160824044843306,0.00025850254293208907,0.0002554373052971386,0.00025241193616778394,0.0002494258540497989,0.000246478487139784,0.0002435692731386722,0.00024069765906942287,0.00023786310109867313,0.0002350650643624023,0.00023230302279540028,0.00022957645896447761,0.0002268848639053186,0.00022422773696292587,0.00022160458563545268,0.00021901492542149867,0.00021645827967065642,0.0002139341794372757,0.00021144216333740282,0.00020898177740870302,0.00020655257497344132,0.00020415411650433744,0.000201785969493262,0.0001994477083227407,0.00019713891414009218,0.0001948591747342772,0.0001926080844152875,0.00019038524389606039,0.18914717600967818,0.18914717600967818,0.18832406274389893,0.17998005701671468,0.16542284617954614,0.14855160661604466,0.1320812869315729,0.1172692340146195,0.10444662403658646,0.09351611090632753,0.08423275918685506,0.07633029142223584,0.06956820697906015,0.06374425145635244,0.05869346420606882,0.05428293899758959,0.050405917279133045,0.04697648336445223,0.04392518424119378,0.041195545359903676,0.03874134543746332,0.03652449872099224,0.03451341066688639,0.03268169813489619,0.031007189032266933,0.029471136210234117,0.028057596066664917,0.026752934302638972,0.02554543034845986,0.0244249587894414,0.02338273123699231,0.02241108593505482,0.02150331529047224,0.020653523710477295,0.01985650979991884,0.01910766824770628,0.018402907713708234,0.017738581786478712,0.017111430672358093,0.016518531737982338,0.015957257390840838,0.015425239069137899,0.014920336339817318,0.014440610285260986,0.013984300504951154,0.013549805175768584,0.013135663709699577,0.012740541625022889,0.012363217310145946,0.012002570411054278,0.011657571615899141,0.011327273645475712,0.011010803287531967,0.010707354337156628,0.010416181325773396,0.010136593938308394,0.009867952032366123,0.009609661185326477,0.009361168705474422,0.009121960051913444,0.008891555615400787,0.008669507818497228,0.00845539849881049,0.008248836543716415,0.008049455748890025,0.007856912876411546,0.007670885891139149,0.007491072356603378,0.0073171879738881075,0.007148965248890799,0.006986152275021985,0.006828511619884659,0.006675819305738215,0.006527863874683179,0.006384445530488603,0.006245375349842235,0.006110474556581988,0.005979573853127296,0.005852512803933226,0.005729139266315555,0.005609308864465761,0.005492884502883561,0.00537973591583735,0.00526973924977992,0.0051627766759486824,0.00505873603064177,0.004957510480891089,0.004858998213474325,0.004763102145386886,0.0046697296540702815,0.004578792325846309,0.004490205721138416,0.0044038891551952146,0.004319765493133492,0.004237760958224964,0.004157804952440374,0.0040798298883492744,0.0040037710315441784,0.0039295663528338565,0.0038571563895046083,0.003786484115009158,0.0037174948164939237,0.0036501359796181363,0.003584357180167899,0.0035201099820001366,0.0034573478408910577,0.003396026013894807,0.0033361014738489507,0.003277532828687144,0.003220280245250366,0.0031643053773048532,0.0031095712974994858,0.0030560424330145584,0.003003684504668489,0.0029524644692709625,0.002902350465020461,0.0028533117597613635,0.0028053187019282566,0.002758342674014416,0.0027123560484170264,0.0026673321455170074,0.002623245193863632,0.0025800702923415818,0.0025377833742071592,0.0024963611728852195,0.0024557811894295495,0.0024160216615514984,0.0023770615341301283,0.0023388804311225255,0.0023014586287958506,0.0022647770302113724,0.0022288171408912523,0.0021935610456053213,0.002158991386218123,0.0021250913405407553,0.0020918446021334757,0.002059235361011498,0.00202724828520591,0.0019958685031363993,0.0019650815867548357,0.0019348735354195142,0.0019052307604651142,0.0018761400704324013,0.0018475886569255075,0.0018195640810663252,0.0017920542605157112,0.0017650474570356106,0.0017385322645648918,0.0017124975977848176,0.0016869326811507445,0.0016618270383684996,0.0016371704822935546,0.0016129531052346973,0.0015891652696424872,0.0015657975991651381,0.0015428409700554244,0.0015202865029116774,0.0014981255547391352,0.0014763497113163494,0.0014549507798533772,0.0014339207819291753,0.0014132519466950179,0.0013929367043335403,0.001372967679761389,0.0013533376865653565,0.0013340397211618706,0.0013150669571706352,0.0012964127399925616,0.0012780705815844486,0.001260034155421382,0.0012422972916393124,0.0012248539723506017,0.0012076983271246855,0.0011908246286280826,0.0011742272884165445,0.00115790085287348,0.0011418399992886921,0.0011260395320720818,0.0011104943790962957,0.0010951995881640902,0.0010801503235948787,0.001065341862926005,0.0010507695937244823,0.0010364290105043454,0.0010223157117463279,0.0010084253970153846,0.0009947538641725516,0.0009812970066775128,0.0009680508109786739,0.0009550113539869255,0.0009421748006307002,0.0009295374014887876,0.0009170954904981867,0.0009048454827344676,0.0008927838722614386,0.0008809072300483129,0.0008692122019514163,0.0008576955067583015,0.0008463539342921838,0.000835184343574093,0.0008241836610413028,0.0008133488788196338,0.0008026770530478758,0.0007921653022524911,0.0007818108057710225,0.0007716108022220723,0.0007615625880208508,0.0007516635159383,0.0007419109937024449,0.0007323024826406944,0.0007228354963612831,0.0007135075994731123,0.0007043164063422669,0.0006952595798841611,0.0006863348303902356,0.0006775399143877052,0.0006688726335317616,0.0006603308335288167,0.0006519124030899095,0.0006436152729132692,0.0006354374146952189,0.0006273768401681863,0.000619431600165397,0.0006115997837110778,0.0006038795171354589,0.0005962689632139264,0.0005887663203292188,0.0005813698216564047,0.0005740777343695855,0.0005668883588698111,0.0005598000280334823,0.0005528111064807521,0.0005459199898630173,0.0005391251041693032,0.0005324249050506816,0.0005258178771622857,0.000519302533522467,0.0005128774148883233,0.000506541089147467,0.0005002921507252829,0.0004941292200073068,0.00048805094277636844,0.00048205598966380924,0.0004761430556147059,0.0004703108593664368,0.0004645581429403035,0.00045888367114581155,0.0004532862310973245,0.00044776463174251737,0.000442317703402593,0.0004369442973237113,0.00043164328523936777,0.0004264135589435202,0.00042125402987390405,0.00041616362870557804,0.00041114130495417705,0.00040618602658869604,0.000401296779653516,0.00039647256789949683,0.0003917124124236874,0.00038701535131768327,0.0003823804393242067,0.0003778067475017385,0.00037329336289705737,0.00036883938822528437,0.00036444394155748117,0.00036010615601540764,0.00035582517947332584,0.0003516001742667048,0.0003474303169074777,0.0003433147978059151,0.0003392528209987605,0.00033524360388353475,0.0003312863769588301,0.0003273803835705016,0.00032352487966344154,0.00031971913353900927,0.0003159624256178072,0.0003122540482077298,0.000308593305277186,0.0003049795122332291,0.0003014119957046587,0.00029789009332982405,0.0002944131535490727,0.000290980535401706,0.00028759160832738306,0.0002842457519717261,0.0002809423559962132,0.0002776808198921013,0.0002744605527983403,0.00027128097332341356,0.0002681415093708843,0.0002650415979687311,0.0002619806851022445,0.00025895822555045006,0.00025597368272600724,0.00025302652851838384,0.0002501162431403841,0.0002472423149778308,0.0002444042404423808,0.22383775575738882,0.22383775575738882,0.22355880636284134,0.2157033730227723,0.1997649764181851,0.1803100665059319,0.16082807148452039,0.1430712034298057,0.12758832425223327,0.11433848332783443,0.10306119728205955,0.0934499223272993,0.08521997602895733,0.0781288308096055,0.07197733969646676,0.06660445690850267,0.06188055180938324,0.05770118234413629,0.05398186815663819,0.05065389631327264,0.04766102425261394,0.044956910039582534,0.04250311352355339,0.04026753896600496,0.038223217008178954,0.03634734723306162,0.034620541257852036,0.033026220726177356,0.03155013553600963,0.03017997590786949,0.028905058117314864,0.027716068396581535,0.026604853042405584,0.02556424544288716,0.024587922772360202,0.02367028666076345,0.022806363341595613,0.021991719708503197,0.021222392430333827,0.020494827837231867,0.019805830732435636,0.019152520633798707,0.018532294226429467,0.01794279302916469,0.017381875455166777,0.016847592589888095,0.016338167125435753,0.015851974984467557,0.015387529243542333,0.01494346602887321,0.014518532109210825,0.014111573953432613,0.013721528055910977,0.013347412362290954,0.012988318652961567,0.01264340576221918,0.012311893528462058,0.011993057385433126,0.01168622351692072,0.01139076450782343,0.011106095433460058,0.010831670336602404,0.010566979048251867,0.010311544313773338,0.010064919190794294,0.009826684689446344,0.009596447629079444,0.009373838688692047,0.00915851063100299,0.008950136682431806,0.008748409053277957,0.00855303758418766,0.008363748506530225,0.008180283305680882,0.008002397677402488,0.007829860568560595,0.007662453294351624,0.007499968725024323,0.007342210535809118,0.007188992514406778,0.00704013792095973,0.006895478895925484,0.006754855911735616,0.006618117264509516,0.0064851186024574075,0.006355722487926511,0.006229797990321931,0.006107220307403174,0.005987870412673413,0.005871634726792585,0.005758404811130306,0.005648077081735461,0.005540552542160935,0.00543573653370678,0.00533353850177454,0.005233871777134152,0.005136653371007693,0.005041803782959576,0.004949246820675446,0.0048589094307773615,0.004770721539896899,0.0046846159052899424,0.004600527974328591,0.004518395752266177,0.00443815967770971,0.004359762505282802,0.0042831491949991765,0.004208266807905126,0.00413506440757766,0.004063492967103006,0.0039935052811803685,0.003925055883025892,0.0038581009657748977,0.003792598308098481,0.003728507203776951,0.003665788394984388,0.003604404009059206,0.0035443174985511036,0.003485493584345798,0.0034278982016881392,0.0033714984489305612,0.0033162625388487897,0.0032621597523758046,0.00320916039461614,0.003157235753008459,0.0031063580575178486,0.0030565004427420294,0.0030076369118256503,0.0029597423020836953,0.0029127922522383123,0.0028667631711842287,0.0028216322081982123,0.0027773772245162478,0.002733976766205502,0.002691410038263581,0.0026496568798790652,0.0026086977407955175,0.002568513658720158,0.002529086237724514,0.002490397627587074,0.0024524305040288957,0.0024151680497995786,0.002378593936569722,0.0023426923075905914,0.0023074477610838784,0.0022728453343245168,0.0022388704883850447,0.0022055090935082116,0.0021727474150785237,0.0021405721001641325,0.002108970164602754,0.0020779289806048635,0.002047436264851955,0.0020174800670656155,0.001988048759026391,0.0019591310240222857,0.0019307158467062376,0.0019027925033458903,0.0018753505524468222,0.0018483798257331225,0.0018218704194699184,0.0017958126861117312,0.0017701972262639642,0.0017450148809428489,0.0017202567241214517,0.0016959140555493852,0.0016719783938349418,0.0016484414697776248,0.0016252952199418318,0.001602531780460682,0.0015801434810607108,0.0015581228392986762,0.0015364625550008143,0.001515155504897543,0.0014941947374447438,0.001473573467824486,0.0014532850731178784,0.00143332308764351,0.0014136811984541077,0.0013943532409862445,0.0013753331948563182,0.0013566151797973311,0.0013381934517313063,0.0013200623989713144,0.001302216538549173,0.001284650512663273,0.0012673590852422551,0.001250337138620095,0.0012335796703186804,0.0012170817899331686,0.0012008387161172537,0.001184845773663934,0.0011690983906785242,0.0011535920958407526,0.0011383225157520264,0.0011232853723657057,0.0011084764804966845,0.001093891745407706,0.0010795271604698618,0.001065378804894024,0.0010514428415315412,0.0010377155147411469,0.001024193148320012,0.0010108721434966329,0.0009977489769836493,0.0009848201990879583,0.0009720824318769186,0.0009595323673981627,0.0009471667659513953,0.0009349824544105964,0.0009229763245944112,0.0009111453316838046,0.0008994864926848902,0.0008879968849356262,0.0008766736446550647,0.0008655139655333007,0.0008545150973614175,0.0008436743446996515,0.0008329890655827378,0.0008224566702611589,0.0008120746199773529,0.000801840425775285,0.000791751647342942,0.0007818058918862553,0.0007720008130335974,0.0007623341097700598,0.0007528035254001352,0.0007434068465384981,0.0007341419021275841,0.0007250065624813208,0.0007159987383541359,0.0007071163800346456,0.0006983574764628761,0.0006897200543708131,0.0006812021774452032,0.0006728019455120608,0.000664517493742354,0.0006563469918778684,0.0006482886434771493,0.0006403406851805506,0.0006325013859939552,0.0006247690465907371,0.0006171419986310927,0.0006096186040986787,0.0006021972546537292,0.0005948763710023017,0.000587654402281162,0.0005805298254579596,0.0005735011447459748,0.0005665668910334211,0.0005597256213265785,0.0005529759182064969,0.0005463163892989488,0.0005397456667570066,0.0005332624067562547,0.0005268652890020085,0.0005205530162483215,0.0005143243138284194,0.0005081779291963459,0.0005021126314793138,0.0004961272110406324,0.0004902204790529685,0.0004843912670814577,0.00047863842667664083,0.00047296082897667954,0.00046735736431893397,0.0004618269418603879,0.0004563684892068052,0.00045098095205043043,0.0004456632938157989,0.0004404144953137435,0.00043523355440315293,0.0004301194856603728,0.0004250713200560293,0.00042008810463915145,0.0004151689022282159,0.0004103127911091971,0.0004055188647402405,0.0004007862314628725,0.0003961140142196268,0.00039150135027774034,0.0003869473909590281,0.00038245130137557566,0.00037801226017119616,0.00037362945926847476,0.00036930210362132957,0.00036502941097278304,0.00036081061161804954,0.00035664494817262547,0.00035253167534532665,0.00034847005971620293,0.00034445937951904675,0.00034049892442859726,0.0003365879953521822,0.0003327259042257131,0.0003289119738140219,0.0003251455375152326,0.00032142593916932154,0.0003177525328705871,0.0003141246827840003,0.2651586028990249,0.2651586028990249,0.2651582378591257,0.2586015503536892,0.24160893733305666,0.2193886023322389,0.19640146465395225,0.17509314685000538,0.15634710121058784,0.14022874793005083,0.1264758191817065,0.1147394707136186,0.10468326329945953,0.0960157466830614,0.08849557080594354,0.0819266767616452,0.07615086397524856,0.07104050773430444,0.06649231245080336,0.062422243358540394,0.05876151783597858,0.05545346987896859,0.052451106119910954,0.04971519940117713,0.04721279683850742,0.04491604678811411,0.04280127148341937,0.04084822955179877,0.03903952595771134,0.03736013701220386,0.03579702569941009,0.034338828307464396,0.03297559768434457,0.031698591723555124,0.030500098184419604,0.029373288864181717,0.02831209760949197,0.027311117791566995,0.02636551575271072,0.025470957422364417,0.02462354584311954,0.02381976777552368,0.023056447890517588,0.02233070932955224,0.02163993962996202,0.02098176118823147,0.02035400557554499,0.019754691135164634,0.019182003385135215,0.0186342778269001,0.018109984823723068,0.0176077162651915,0.017126173777455855,0.016664158274974285,0.016220560679645453,0.015794353658509768,0.015384584252371833,0.014990367285613947,0.014610879462596866,0.014245354068850975,0.013893076206212428,0.013553378500324653,0.01322563722690667,0.012909268810010035,0.012603726651331464,0.012308498254732658,0.012023102614448448,0.01174708783926045,0.011480028988181505,0.011221526096050193,0.010971202369899572,0.010728702539156242,0.010493691344593393,0.010265852152636833,0.010044885683079178,0.009830508839526702,0.009622453633055056,0.009420466190524451,0.009224305839899919,0.009033744265697396,0.008848564728373223,0.008668561342078461,0.008493538405764901,0.00832330978309902,0.008157698327085131,0.007996535345687807,0.007839660105081962,0.007686919367486677,0.007538166960802282,0.0073932633775308605,0.007252075400685157,0.007114475754587037,0.006980342778653347,0.00684956012241903,0.006722016460204852,0.006597605223969684,0.006476224353012312,0.006357776059291591,0.006242166607247055,0.006129306107080989,0.006019108320553761,0.005911490478419441,0.005806373108691798,0.005703679875004684,0.005603337424377289,0.005505275243754127,0.005409425524734779,0.005315723035955265,0.005224105002616822,0.0051345109927049435,0.005046882809465432,0.004961164389741253,0.004877301707802059,0.004795242684319959,0.004714937100177769,0.004636336514809832,0.004559394188800933,0.004484065010487614,0.004410305426319548,0.004338073374762235,0.0042673282235298135,0.004198030709955091,0.004130142884315056,0.0040636280559435654,0.003998450741969879,0.003934576618538672,0.0038719724743697683,0.0038106061665288456,0.0037504465782878782,0.003691463578958851,0.003633627985596872,0.003576911526469713,0.0035212868062003805,0.0034667272724937365,0.003413207184364734,0.0033607015817876647,0.003309186256695711,0.0032586377252590815,0.0032090332013772864,0.0031603505713245533,0.003112568369488361,0.003065665755149162,0.0030196224902475526,0.0029744189180910285,0.002930035942954802,0.0028864550105315422,0.0028436580891914097,0.0028016276520117975,0.002760346659540801,0.002719798543259592,0.0026799671897113774,0.002640836925264387,0.002602392501481555,0.0025646190810673865,0.002527502224366151,0.002491027876386865,0.0024551823543297268,0.0024199523355935763,0.0023853248462413885,0.00235128724990412,0.0023178272371034776,0.002284932814975741,0.0022525922973779186,0.002220794295361519,0.0021895277079967603,0.002158781713532769,0.0021285457608799015,0.0020988095613993754,0.0020695630809889594,0.0020407965324511935,0.0020125003681328323,0.001984665272824726,0.001957282156910311,0.0019303421497541846,0.001903836593319835,0.0018777570360078081,0.001852095226705328,0.0018268431090394312,0.001801992815824426,0.001777536663697529,0.001753467147934212,0.0017297769374366551,0.001706458869888925,0.001683505947071476,0.0016609113303302108,0.0016386683361932154,0.001616770432129938,0.0015952112324477254,0.0015739844943196766,0.001553084113940156,0.001532504122802284,0.001512238684093326,0.001492282089203497,0.0014726287543444234,0.0014532732172724064,0.0014342101341138602,0.0014154342762883955,0.0013969405275263387,0.0013787238809776182,0.0013607794364079752,0.0013431023974804785,0.001325688069118593,0.0013085318549482343,0.0012916292548160195,0.0012749758623813348,0.0012585673627789932,0.0012423995303510159,0.0012264682264444718,0.0012107693972733839,0.0011952990718427775,0.0011800533599320986,0.00116502845013692,0.0011502206079663522,0.0011356261739945191,0.0011212415620645295,0.0011070632575426386,0.001093087815621724,0.0010793118596719347,0.0010657320796371844,0.0010523452304759596,0.0010391481306452417,0.001026137660625617,0.0010133107614870172,0.0010006644334932281,0.0009881957347441792,0.0009759017798549507,0.0009637797386698824,0.0009518268350113591,0.0009400403454616989,0.0009284175981773208,0.0009169559717341568,0.0009056528940035278,0.0008945058410570977,0.0008835123361006456,0.0008726699484353403,0.000861976292445823,0.0008514290266144704,0.0008410258525605968,0.000830764514104467,0.0008206427963549312,0.0008106585248201534,0.0008008095645408707,0.0007910938192451555,0.0007815092305245543,0.0007720537770306285,0.000762725473691437,0.000753522370947353,0.0007444425540058136,0.000735484142114091,0.0007266452878500596,0.0007179241764301116,0.0007093190250338277,0.0007008280821450746,0.0006924496269087171,0.0006841819685029703,0.0006760234455266208,0.0006679724254008442,0.0006600273037851715,0.0006521865040073474,0.0006444484765063816,0.0006368116982888714,0.0006292746723979017,0.0006218359273943033,0.0006144940168500413,0.0006072475188530889,0.0006000950355239094,0.0005930351925429162,0.0005860666386887369,0.0005791880453870772,0.0005723981062696401,0.0005656955367431967,0.0005590790735682809,0.0005525474744473582,0.0005460995176221878,0.0005397340014802575,0.000533449744169785,0.0005272455832234182,0.0005211203751901622,0.0005150729952753937,0.0005091023369888576,0.0005032073118001855,0.0004973868488020825,0.0004916398943807423,0.00048596541189339573,0.0004803623813528862,0.00047482979911886956,0.0004693666775957883,0.0004639720449372143,0.0004586449447565014,0.00045338443584356245,0.0004481895918877069,0.00044305950120617936,0.00043799326647854595,0.0004329900044865744,0.0004280488458595449,0.00042316893482493125,0.0004183494289641232,0.0004135894989733365,0.0004088883284293858,0.00040424511356028765,0.31442494913369945,0.31442494913369945,0.31442494913369945,0.3099224699250248,0.29253397640402035,0.2675276415858313,0.24053600670765335,0.2149673483153864,0.1922171360749218,0.17254028695551005,0.1557004606413187,0.1413086066804171,0.12896885137374312,0.11833054531935255,0.10910013968056743,0.10103781436516364,0.09394947675532472,0.08767830892125418,0.08209730181095146,0.07710311053863325,0.07261115652969187,0.06855177965804762,0.06486723155367023,0.06150932703056205,0.05843760490759295,0.05561788162854491,0.05302110786136826,0.05062245942400717,0.04840061018986723,0.0463371470250356,0.04441609618559991,0.04262353768387895,0.04094728948615682,0.03937664746496095,0.0379021701202553,0.03651549944888446,0.035209211159664355,0.03397668883664818,0.03281201774474536,0.03170989482479179,0.030665552094725688,0.029674691202253627,0.02873342729383819,0.027838240699266187,0.026985935199166873,0.02617360185852097,0.0253985875837632,0.024658467702829368,0.02395102198310196,0.023274213597017413,0.02262617062293734,0.022005169733262615,0.02140962177506256,0.020838058992847998,0.020289123680086944,0.01976155807711351,0.019254195359057848,0.01876595157940471,0.018295818453337172,0.017842856880724234,0.01740619112203448,0.016985003551812268,0.0165785299241316,0.016186055092796633,0.015806909136216622,0.015440463843108479,0.015086129520480688,0.014743352089998444,0.014411610442829646,0.014090414026563514,0.01377930064080906,0.013477834420762346,0.013185603990315459,0.01290222076832904,0.012627317413471104,0.012360546394576219,0.012101578674888393,0.011850102499740809,0.011605822278320434,0.011368457551112736,0.011137742035473264,0.010913422742510753,0.010695259159157911,0.010483022489878582,0.010276494953004658,0.010075469127170923,0.009879747343728658,0.009689141121420329,0.009503470639918604,0.009322564249151424,0.009146258011610224,0.008974395275076718,0.008806826273445508,0.008643407753503776,0.008484002625723236,0.00832847963728021,0.008176713065673193,0.008028582431433952,0.007883972228566042,0.007742771671441986,0.007604874457000116,0.007470178541174912,0.007338585928571104,0.007210002474482306,0.007084337698411744,0.0069615046083249315,0.006841419534919785,0.006724001975256161,0.006609174445129025,0.0064968623396262845,0.006386993801341996,0.006279499595760492,0.006174312993361686,0.006071369658023871,0.005970607541340726,0.00587196678248569,0.0057753896132882385,0.0056808202682096165,0.00558820489892131,0.005497491493219356,0.005408629798015777,0.005321571246171516,0.005236268886948527,0.005152677319875245,0.005070752631828032,0.004990452337152124,0.004911735320648657,0.004834561783270164,0.004758893190376492,0.004684692222408311,0.004611922727851437,0.0045405496783657885,0.0044705391259647976,0.0044018581621362565,0.004334474878803968,0.004268358331031196,0.004203478501379653,0.004139806265836205,0.004077313361228236,0.004015972354053197,0.003955756610648713,0.0038966402686397227,0.003838598209596936,0.003781606032847715,0.0037256400303840895,0.003670677162812108,0.003616695036295604,0.003563671880444512,0.003511586527103633,0.0034604183899992033,0.003410147445203814,0.003360754212379503,0.003312219736765823,0.0032645255718765217,0.0032176537628732615,0.0031715868305862553,0.003126307756150735,0.003081799966234274,0.0030380473188267635,0.0029950340895689037,0.002952744958595337,0.002911164997870652,0.002870279658995136,0.0028300747614623503,0.0027905364813474018,0.002751651340408206,0.0027134061955827534,0.0026757882288641283,0.0026387849375396045,0.002602384124777113,0.00256657389054523,0.0025313426228535177,0.002496678989298589,0.002462571928905552,0.0024290106442513065,0.0023959845938591002,0.0023634834848532448,0.002331497265864236,0.0023000161201730744,0.0022690304590871494,0.0022385309155373485,0.0022085083378882557,0.0021789537839536034,0.002149858515207907,0.0021212139911883907,0.002093011864078784,0.0020652439734685614,0.002037902341281334,0.00201097916686505,0.0019844668222393975,0.0019583578474935406,0.0019326449463291087,0.0019073209817429407,0.0018823789718449837,0.0018578120858053504,0.0018336136399273045,0.0018097770938406558,0.0017862960468115496,0.001763164234164935,0.0017403755238146633,0.001717923912898864,0.0016958035245158124,0.001674008604557294,0.0016525335186359238,0.0016313727491035468,0.0016105208921567092,0.0015899726550274605,0.0015697228532556317,0.0015497664080402077,0.0015300983436673918,0.0015107137850119358,0.0014916079551104727,0.0014727761728035647,0.0014542138504445433,0.001435916491673168,0.001417879689251255,0.0014000991229591985,0.0013825705575509066,0.0013652898407649878,0.0013482529013911914,0.0013314557473897409,0.0013148944640617144,0.0012985652122695897,0.0012824642267057391,0.0012665878142075762,0.001250932352118132,0.0012354942866899933,0.0012202701315321336,0.0012052564660976629,0.0011904499342114952,0.001175847242636659,0.001161445159678286,0.0011472405138235595,0.0011332301924173265,0.001119411140371716,0.001105780358908922,0.001092334904336472,0.0010790718868531877,0.0010659884693859348,0.0010530818664557357,0.0010403493430722532,0.001027788213656314,0.001015395840988982,0.0010031696351871459,0.0009911070527043237,0.0009792055953562761,0.0009674628093703155,0.0009558762844584001,0.0009444436529122946,0.000933162588721143,0.0009220308067102507,0.000911046061700641,0.0009002061476889579,0.0008895088970467945,0.0008789521797391795,0.0008685339025618823,0.0008582520083963655,0.0008481044754826567,0.0008380893167092102,0.0008282045789192913,0.0008184483422335895,0.0008088187193887227,0.0007993138550908584,0.0007899319253844554,0.0007806711370352428,0.0007715297269276635,0.0007625059614757628,0.0007535981360477226,0.0007448045744033848,0.0007361236281442977,0.0007275536761763865,0.0007190931241845407,0.0007107404041189826,0.0007024939736930321,0.0006943523158922146,0.0006863139384938146,0.0006783773735974835,0.0006705411771659251,0.0006628039285755602,0.0006551642301772996,0.0006476207068664907,0.0006401720056625251,0.0006328167952972557,0.0006255537658124924,0.0006183816281660727,0.0006112991138462249,0.0006043049744943541,0.0005973979815357315,0.0005905769258180415,0.0005838406172575315,0.0005771878844927155,0.0005706175745451499,0.0005641285524874864,0.0005577197011184047,0.0005513899206441634,0.000545138128367069,0.0005389632583799303,0.0005328642612672235,0.000526840103812153,0.0005208897687097703,0.3732219473731596,0.3732219473731596,0.3732219473731596,0.3709545649033068,0.3542852959753441,0.3267625414655643,0.2953330996862855,0.26471015430765443,0.23706268665441424,0.21296986452546898,0.19227279797678065,0.1745527319072077,0.1593480546047361,0.14623725994567824,0.13486239436579214,0.12492887755778828,0.11619739248995889,0.10847421664983825,0.10160232445803566,0.09545392361582403,0.08992444623281104,0.08492780190931283,0.08039265701990658,0.07625952355281519,0.07247847754957205,0.06900736437758614,0.06581038009002853,0.06285694387693164,0.060120796639769006,0.05757927604052043,0.055212730001872184,0.05300403943351594,0.050938227620754895,0.04900213876715388,0.0471841720329314,0.04547406035612174,0.04386268560728405,0.04234192337754529,0.04090451205799039,0.03954394192908505,0.038254360811028766,0.03703049348273745,0.03586757259791509,0.034761279241637265,0.03370769160335827,0.032703240509566224,0.031744670775544936,0.03082900751120301,0.029953526658979653,0.029115729159103182,0.028313318233702284,0.02754417936081903,0.026806362575195263,0.026098066787463743,0.025417625859000263,0.024763496207995745,0.024134245754340797,0.023528544038008102,0.02294515336847397,0.022382920882063565,0.021840771400632113,0.021317700998974846,0.02081277120038945,0.020325103730095724,0.019853875765020894,0.019398315626114934,0.01895769886587668,0.018531344709482242,0.018118612812822357,0.017718900305045346,0.01733163908690681,0.01695629335952075,0.016592357360910758,0.016239353290275545,0.015896829402069615,0.015564358253902838,0.015241535093992939,0.01492797637536438,0.014623318385329792,0.01432721597995302,0.014039341414236389,0.013759383259679866,0.013487045401707884,0.01322204611016153,0.012964117176721815,0.012713003113710809,0.012468460409224485,0.012230256834042486,0.011998170796153495,0.011771990739124995,0.011551514580884319,0.011336549189768652,0.011126909894999456,0.010922420028961153,0.0107229104989017,0.010528219385869857,0.010338191568891987,0.010152678372545448,0.009971537236256232,0.009794631403766038,0.009621829631349381,0.009453005913474912,0.009288039224698365,0.009126813276685809,0.00896921628933532,0.008815140775053472,0.00866448333531163,0.008517144468675866,0.008373028389556088,0.00823204285698973,0.008094099012811565,0.007959111228616068,0.007826996960961386,0.00769767661429588,0.007571073411137408,0.007447113269056243,0.0073257246840503125,0.007206838619929823,0.007090388403348126,0.0069763096241511995,0.0068645400407291645,0.006755019490080728,0.006647689802318344,0.0065424947193616495,0.006439379817577364,0.006338292434149286,0.006239181596965849,0.006141997957832011,0.006046693728823981,0.005953222621611632,0.0058615397895933055,0.0057716017726881915,0.005683366444646212,0.005596792962742004,0.005511841719729255,0.0054284742979342285,0.0053466534253826,0.005266342933851888,0.005187507718752504,0.005110113700746145,0.005034127789011078,0.004959517846076566,0.0048862526541455925,0.004814301882833924,0.00474363605825731,0.004674226533398675,0.0046060454596975695,0.004539065759800662,0.004473261101419265,0.00440860587224146,0.004345075155850411,0.004282644708599601,0.004221290937404149,0.004160990878403679,0.004101722176457886,0.0040434630654378224,0.003986192349274816,0.003929889383736262,0.0038745340588936927,0.0038201067822534454,0.003766588462520699,0.0037139604939700416,0.003662204741394177,0.003611303525608803,0.0035612396094876855,0.0035119961845061303,0.003463556857772068,0.0034159056395222038,0.0033690269310665526,0.003322905513160762,0.0032775265347891854,0.0032328755023425734,0.0031889382691723677,0.0031457010255088445,0.003103150288726599,0.0030612728939441998,0.0030200559849444418,0.002979487005403257,0.002939553690413314,0.002900244058293171,0.0028615464026690816,0.0028234492848194606,0.0027859415262725127,0.002749012201645641,0.002712650631719612,0.00267684637673698,0.00264158922991685,0.0026068692111784132,0.0025726765610639074,0.0025390017348556567,0.0025058353968785874,0.0024731684149818666,0.0024409918551931207,0.0024092969765393954,0.002378075226027518,0.0023473182337799617,0.0023170178083192715,0.0022871659319962517,0.002257754756557242,0.0022287765988443266,0.0022002239366255005,0.002172089404549009,0.002144365790218061,0.0021170460303816187,0.00209012320723771,0.002063590544844303,0.0020374414056356055,0.002011669287039085,0.001986267818190178,0.0019612307567418302,0.0019365519857645777,0.0019122255107356058,0.001888245456612819,0.0018646060649914347,0.0018413016913407666,0.001818326802317582,0.001795675973154864,0.0017733438851225882,0.0017513253230585684,0.001729615172967004,0.001708208419682978,0.0016871001445998622,0.0016662855234588923,0.001645759824198027,0.001625518404858569,0.0016055567115480381,0.0015858702764566567,0.001566454715926983,0.0015473057285741896,0.001528419093455782,0.001509790668289128,0.0014914163877156957,0.0014732922616097846,0.0014554143734314682,0.00143777887862163,0.0014203820030381298,0.0014032200414320923,0.0013862893559624268,0.0013695863747484147,0.0013531075904585203,0.0013368495589346217,0.0013208088978508591,0.001304982285405414,0.0012893664590451714,0.0012739582142216569,0.0012587544031776264,0.0012437519337633296,0.001228947768281892,0.0012143389223623247,0.0011999224638602614,0.0011856955117850057,0.0011716552352523382,0.0011577988524626153,0.0011441236297028406,0.0011306268803728155,0.0011173059640341666,0.0011041582854818181,0.0010911812938372478,0.001078372481663136,0.001065729384098309,0.0010532495780131257,0.0010409306811842375,0.0010287703514883792,0.0010167662861148682,0.0010049162207957647,0.0009932179290539603,0.0009816692214681653,0.0009702679449545714,0.0009590119820648526,0.0009478992502996682,0.000936927701437838,0.000926095320880362,0.0009154001270090613,0.0009048401705594037,0.0008944135340073551,0.0008841183309694238,0.0008739527056161798,0.0008639148320984397,0.000854002913985985,0.0008442151837185946,0.0008345499020686946,0.0008250053576158765,0.00081557986623259,0.0008062717705808556,0.000797079439619855,0.00078800126812377,0.0007790356762100853,0.00077018110887777,0.0007614360355552076,0.0007527989496576146,0.000744268368153846,0.0007358428311420171,0.0007275209014341892,0.0007193011641495726,0.0007111822263161307,0.0007031627164805223,0.0006952412843258416,0.0006874166002974064,0.0006796873552360912,0.0006720522600191465,0.3778081169247104,0.3778081169247104,0.3778081169247104,0.3774299631595182,0.3653750873956292,0.34046120332087776,0.30970817273222967,0.2785935276343296,0.24995407080659826,0.22474873928036512,0.20298913089630327,0.18431663371137044,0.16828027023948441,0.15444982683091618,0.1424527392786332,0.13197940677524125,0.12277705559314586,0.1146405677643129,0.10740350724014658,0.10093039141520992,0.09511038558592204,0.08985228553023539,0.08508056905419989,0.08073230006746812,0.0767546997739653,0.0731032355183198,0.06974011030553014,0.06663306273730603,0.06375440816279923,0.06108026806586857,0.058589947079854744,0.05626542640719178,0.05409094953891759,0.05205268157560995,0.05013842756984106,0.0483373984609763,0.04664001559413911,0.04503774668486222,0.04352296754211701,0.0420888449949704,0.040729237356147203,0.03943860945614747,0.038211959836480576,0.03704475813244436,0.035932891029675194,0.03487261546293876,0.03386051795540988,0.032893479183055595,0.03196864300054857,0.031083389289503473,0.030235310091824053,0.02942218857521259,0.028641980447584738,0.027892797495073472,0.02717289296656065,0.026480648568162846,0.025814562864943148,0.025173240915732573,0.024555384991072755,0.02395978624470025,0.023385317226426134,0.02283092513900395,0.0222956257542593,0.0217784979145853,0.021278678555180248,0.020795358190464814,0.02032777681497376,0.019875220175026964,0.01943701637265363,0.019012532767756125,0.018601173148393362,0.018202375142526345,0.017815607847513865,0.017440369656290405,0.01707618626145326,0.01672260882048615,0.016379212267161217,0.016045593755694733,0.01572137122564042,0.015406182076724088,0.015099681943919427,0.014801543564012197,0.0145114557257919,0.014229122296743982,0.01395426131981708,0.013686604174449217,0.013425894796567592,0.0131718889527921,0.012924353564485078,0.012683066077698356,0.012447813875422967,0.012218393728851702,0.011994611284676415,0.011776280585677201,0.011563223622109464,0.011355269911601466,0.011152256105471832,0.01095402561953804,0.010760428287665616,0.01057132003643024,0.01038656257940799,0.010206023129726283,0.010029574129606738,0.009857092995747673,0.009688461879465713,0.009523567440609606,0.009362300634330035,0.009204556509862087,0.009050234020530625,0.008899235844262273,0.008751468213925239,0.008606840756875905,0.00846526634313559,0.008326660941654107,0.008190943484168862,0.008058035736188953,0.007927862174674057,0.007800349872007563,0.007675428385883241,0.007553029654763289,0.007433087898575805,0.007315539524349509,0.007200323036500486,0.00708737895150699,0.006976649716718854,0.006868079633075422,0.006761614781509188,0.006657202952833022,0.006554793580920938,0.006454337678999037,0.006355787778884127,0.006259097873007693,0.006164223359078914,0.006071120987246688,0.005979748809631394,0.005890066132099246,0.005802033468168597,0.005715612494935254,0.005630766010915274,0.005547457895709695,0.0054656530713963715,0.005385317465567583,0.005306417975928685,0.005228922436382375,0.005152799584527298,0.0050780190304993275,0.005004551227095393,0.00493236744111533,0.004861439725865532,0.004791740894769133,0.0047232444960323096,0.004655924788314787,0.004589756717361943,0.0045247158935517815,0.004460778570316014,0.004397921623396616,0.004336122530897693,0.004275359354100754,0.00421561071900677,0.004156855798574047,0.004099074295622194,0.004042246426370711,0.003986352904588156,0.003931374926323064,0.0038772941551929283,0.0038240927082070996,0.0037717531421020893,0.003720258440165528,0.003669591999531371,0.00361973761892468,0.0035706794868381607,0.0035224021701234635,0.0034748906029784,0.003428130076316712,0.0033821062275029867,0.003336805030438984,0.0032922127859870845,0.003248316112718348,0.0032051019379705083,0.0031625574892063146,0.0031206702856586637,0.0030794281302521367,0.0030388191017907606,0.002998831547400278,0.0029594540752173643,0.0029206755473148954,0.002882485072854981,0.00284487200146109,0.0028078259168017265,0.0027713366303762582,0.0027353941754975773,0.00269998880146282,0.002665110967905779,0.002630751339325033,0.002596900779779835,0.0025635503477498783,0.002530691291151472,0.002498315042505221,0.0024664132142501747,0.0024349775941980736,0.002404000141124513,0.0023734729804909694,0.002343388400293677,0.0023137388470348256,0.0022845169218124028,0.002255715376523378,0.0022273271101780623,0.002199345165320628,0.0021717627245526673,0.0021445731071567165,0.0021177697658152795,0.0020913462834237,0.0020652963699926926,0.002039613859637903,0.002014292707654132,0.001989326987670247,0.001964710888883766,0.0019404387133713408,0.001916504873473228,0.001892903889249228,0.0018696303860042001,0.0018466790918799966,0.0018240448355130324,0.0018017225437544334,0.0017797072394512082,0.0017579940392867602,0.0017365781516780698,0.0017154548747289882,0.0016946195942370253,0.001674067781752352,0.0016537949926873445,0.0016337968644754373,0.0016140691147770072,0.0015946075397319768,0.0015754080122569042,0.001556466480385526,0.0015377789656517342,0.0015193415615129386,0.001501150431813696,0.001483201809287619,0.0014654919940967623,0.0014480173524075758,0.0014307743150017177,0.00141375937592163,0.0013969690911492011,0.0013804000773168445,0.0013640490104499753,0.001347912624740297,0.001331987711348312,0.00131627111723519,0.0013007597440224479,0.0012854505468789406,0.00127034053343458,0.001255426762719438,0.0012407063441283756,0.0012261764364098371,0.0012118342466784675,0.0011976770294507433,0.0011837020857033136,0.0011699067619527796,0.0011562884493571727,0.0011428445828379353,0.0011295726402220693,0.0011164701414040868,0.0011035346475267147,0.0010907637601805505,0.0010781551206216653,0.0010657064090068553,0.0010534153436462304,0.0010412796802722192,0.0010292972113252012,0.0010174657652548707,0.0010057832058371027,0.00099424743150588,0.0009828563747000644,0.0009716080012241803,0.0009605003096234873,0.0009495313305725003,0.0009386991262767758,0.0009280017898877928,0.0009174374449301512,0.000907004244741362,0.0008967003719235029,0.0008865240378065832,0.0008764734819233165,0.0008665469714951518,0.0008567428009288987,0.0008470592913242226,0.0008374947899913487,0.0008280476699788579,0.0008187163296114573,0.0008094991920371064,0.0008003947047837903,0.0007914013393253089,0.0007825175906560323,0.0007737419768744792,0.0007650730387751991,0.0007565093394492053,0.0007480494638924243,0.000739692018622105,0.3824506415521179,0.3824506415521179,0.3824506415521179,0.3824506415521179,0.3758587798220469,0.3546366473938288,0.3252596810623378,0.2939361497136496,0.2643283882811723,0.23791583363331348,0.21496054058511876,0.19520074766669276,0.17821016002969553,0.1635536203965411,0.15084353860991354,0.13975344136293913,0.13001495827629878,0.1214095856189108,0.11375977031437245,0.10692092849605973,0.10077481130307309,0.09522417381570149,0.0901885573080697,0.08560097278674185,0.08140529564995008,0.07755421472234104,0.07400761147967803,0.07073127297835302,0.06769586421141771,0.06487610289742046,0.06225009296385218,0.059798783081915,0.05750552428002145,0.05535570649613488,0.05333645837421473,0.05143639801053102,0.04964542496769838,0.047954545890492785,0.04635572762136625,0.04484177293314245,0.04340621495185558,0.042043227095614366,0.04074754595140557,0.03951440498594571,0.038339477366038585,0.03721882646841148,0.03614886290495849,0.03512630708864226,0.03414815652754392,0.033211657167353685,0.0323142782114273,0.03145368993738192,0.030627744103461127,0.02983445659959499,0.029071992049428726,0.028338650112650174,0.02763285327291615,0.026953135927070528,0.026298134616958003,0.025666579266794207,0.025057285307538937,0.024469146585342567,0.02390112896456944,0.023352264547372253,0.022821646441605174,0.022308424017392678,0.021811798599924083,0.02133101955239697,0.020865380708495872,0.020414217118559577,0.01997690207770237,0.019552844407809834,0.01914148596843918,0.01874229937444265,0.018354785900554192,0.017978473555287863,0.01761291530841034,0.017257687457865163,0.01691238812351089,0.01657663585632044,0.016250068352842668,0.01593234126572541,0.015623127102037894,0.015322114201902578,0.015029005790685036,0.014743519098631514,0.014465384542401635,0.014194344963486958,0.013930154918938169,0.013672580020254899,0.013421396316663147,0.01317638971932674,0.01293735546336616,0.012704097604805733,0.01247642854983111,0.012254168613956742,0.012037145608909079,0.01182519445520133,0.011618156818563203,0.011415880768517815,0.011218220457547464,0.011025035819414313,0.010836192285304231,0.010651560516585602,0.010471016153049224,0.010294439575594167,0.010121715682398837,0.0099527336776923,0.009787386872297734,0.009625572495196839,0.00946719151540308,0.009312148473492647,0.009160351322188256,0.009011711275426031,0.008866142665390276,0.00872356280702257,0.008583891869554348,0.00844705275464245,0.008312970980708849,0.008181574573125468,0.008052793959896148,0.0079265618725187,0.007802813251728194,0.007681485157844446,0.007562516685457965,0.007445848882217437,0.007331424671484862,0.007219188778646377,0.007109087660879888,0.007001069440186485,0.006895083839515848,0.006791082121815167,0.006689017031848083,0.006588842740636875,0.00649051479239225,0.0063939900537974366,0.006299226665530529,0.006206183995906492,0.0061148225965326,0.006025104159876835,0.00593699147864982,0.005850448406915106,0.0057654398228387735,0.005681931592999324,0.005599890538183028,0.005519284400589525,0.005440081812384688,0.005362252265532964,0.005285766082850229,0.005210594390219167,0.005136709089914319,0.005064082834982162,0.004992689004631766,0.004922501680586764,0.00485349562435595,0.004785646255382013,0.004718929630026081,0.004653322421354797,0.004588801899691333,0.004525345913897929,0.004462932873358663,0.004401541730629494,0.00434115196473032,0.004281743565048778,0.004223297015830842,0.004165793281233015,0.004109213790913429,0.004053540426136891,0.003998755506375662,0.003944841776383183,0.003891782393722006,0.003839560916728169,0.0037881612928920647,0.003737567847641908,0.0036877652735115085,0.0036387386196777764,0.0035904732818531574,0.0035429549925196733,0.00349616981148923,0.003450104116780149,0.003404744595795621,0.0033600782367931175,0.003316092320634274,0.003272774412802603,0.003230112355681444,0.0031880942610803984,0.0031467085030017377,0.0031059437106375734,0.003065788761589874,0.0030262327753034874,0.002987265106706517,0.002948875340048848,0.0029110532829321927,0.002873788960525245,0.0028370726099556844,0.002800894674874905,0.0027652458001876015,0.0027301168269410767,0.0026954987873689944,0.002661382900082773,0.0026277605654074342,0.002594623360855386,0.002561963036734007,0.0025297715118822437,0.0024980408695323532,0.002466763353291169,0.0024359313632387083,0.002405537452138718,0.002375574321758004,0.0023460348192911947,0.0023169119338862787,0.0022881987932692367,0.0022598886604632403,0.0022319749305997846,0.0022044511278191113,0.0021773109022558915,0.002150548027108964,0.0021241563957912603,0.0020981300191578404,0.0020724630228093886,0.0020471496444692153,0.002022184231430385,0.001997561238072217,0.0019732752234428593,0.0019493208489063216,0.0019256928758522652,0.0019023861634656072,0.0018793956665554684,0.0018567164334406217,0.001834343603890156,0.0018122724071175374,0.0017904981598268206,0.0017690162643085702,0.0017478222065851535,0.0017269115546031215,0.0017062799564714919,0.0016859231387449458,0.0016658369047497016,0.001646017132952007,0.0016264597753671253,0.0016071608560079295,0.0015881164693722564,0.0015693227789670588,0.0015507760158694128,0.0015324724773225031,0.0015144085253659184,0.0014965805854992038,0.0014789851453779952,0.0014616187535411126,0.0014444780181687097,0.0014275596058699114,0.0014108602404993252,0.0013943767020018934,0.0013781058252846066,0.001362044499115252,0.0013461896650467848,0.0013305383163668982,0.0013150874970720096,0.0012998343008652892,0.0012847758701774038,0.001269909395210265,0.0012552321130025012,0.0012407413065162994,0.0012264343037452555,0.0012123084768420737,0.001198361241266384,0.0011845900549515842,0.001170992417490376,0.0011575658693387177,0.0011443079910371454,0.001131216402449779,0.0011182887620199671,0.0011055227660424086,0.0010929161479512365,0.0010804666776238548,0.001068172160699655,0.0010560304379138685,0.0010440393844457143,0.0010321969092806215,0.001020500954586344,0.0010089494951021512,0.0009975405375413984,0.0009862721200066728,0.0009751423114173971,0.0009641492109495298,0.0009532909474872265,0.0009425656790857512,0.0009319715924459423,0.0009215069023995083,0.0009111698514050504,0.0009009587090546937,0.0008908717715906449,0.000880907361431997,0.000871063826711142,0.0008613395408196683,0.0008517329019636959,0.0008422423327279727,0.0008328662796491128,0.0008236032127973338,0.0008144516253666569,0.38715021374931147,0.38715021374931147,0.38715021374931147,0.38715021374931147,0.3849906201798673,0.3687753200716661,0.34179679774510996,0.31077359415722483,0.2803311373464242,0.2526526374607699,0.22836859940168985,0.20737248422315968,0.18928700332706785,0.17368012815873446,0.16015036554430803,0.14835286594131789,0.1380014034249826,0.12886182681160127,0.12074346548178294,0.11349095541333525,0.10697725833713759,0.10109797401294252,0.09576680685034177,0.09091198721840814,0.0864734547029666,0.08240063916320314,0.07865070729900961,0.07518717096018192,0.07197877687172617,0.0689986159502269,0.06622340468898093,0.06363290203393765,0.061209433511458966,0.05893750071903474,0.056803459132556286,0.054795250888369354,0.05290218204306269,0.05111473600842138,0.04942441655976832,0.04782361514108673,0.04630549822752671,0.04486391132238498,0.04349329681132875,0.04218862340979361,0.04094532534957018,0.0397592497794471,0.03862661112011974,0.037543951328393554,0.03650810520039584,0.03551616998636398,0.034565478706543806,0.03365357665420902,0.03277820065147789,0.03193726068974115,0.03112882364151639,0.030351098776624712,0.029602424854061015,0.028881258593407053,0.028186164356994618,0.027515804897137626,0.026868933042472832,0.026244384214101524,0.025641069676539292,0.025057970440691302,0.024494131746517017,0.023948658062119123,0.023420708543702904,0.02290949290760276,0.022414267671375384,0.021934332726021112,0.02146902820575563,0.021017731625635205,0.02057985526063286,0.020154843742719322,0.019742171855069306,0.019341342504745278,0.018951884857238293,0.018573352617954512,0.018205322447307427,0.01784739249743439,0.01749918105977709,0.01716032531382006,0.016830480168273595,0.016509317186803516,0.016196523591190386,0.015891801335477383,0.0155948662452553,0.015305447216806614,0.01502328547128654,0.014748133859573473,0.014479756213813848,0.014217926742023658,0.013962429462455427,0.013713057674699191,0.01346961346476203,0.013231907241599459,0.012999757302789778,0.012772989427221068,0.012551436492858913,0.01233493811779758,0.012123340322955962,0.01191649521490931,0.011714260687456667,0.011516500140652886,0.011323082216113108,0.011133880547501144,0.01094877352519132,0.010767644074173945,0.010590379444333067,0.010416871012307191,0.010247014094184591,0.010080707768348074,0.009917854707834333,0.009758361021608077,0.009602136104210282,0.009449092493261403,0.009299145734345657,0.009152214252834915,0.009008219232232564,0.008867084498660409,0.00872873641112286,0.008593103757215231,0.00846011765396198,0.008329711453494204,0.008201820653286701,0.008076382810705952,0.007953337461623165,0.00783262604286989,0.00771419181832673,0.00759797980844303,0.00748393672300851,0.007372010896998344,0.00726215222932973,0.007154312124376424,0.007048443436098235,0.0069445004146456175,0.006842438655317438,0.006742215049747372,0.006643787739207098,0.006547116069920934,0.006452160550287405,0.00635888280991818,0.0062672455604009195,0.006177212557702844,0.006088748566136621,0.006001819323809305,0.0059163915094883265,0.005832432710813196,0.005749911393790998,0.0056687968735147694,0.005589059286049169,0.00551066956142598,0.005433599397702857,0.005357821236033452,0.005283308236704042,0.005210034256094179,0.005137973824516784,0.005067102124902772,0.004997394972289674,0.004928828794080248,0.004861380611036988,0.004795028018981799,0.004729749171167638,0.004665522761297014,0.004602328007157068,0.004540144634846024,0.004478952863567142,0.004418733390963659,0.004359467378975907,0.004301136440196271,0.00424372262470262,0.0041872084073513085,0.004131576675508864,0.004076810717207732,0.004022894209706824,0.003969811208441561,0.003917546136347834,0.0038660837735458695,0.003815409247367865,0.0037655080227187872,0.003716365892755409,0.003667968969871896,0.003620303676981031,0.0035733567390776886,0.0035271151750766385,0.003481566289912281,0.003436697666891231,0.003392497160288926,0.0033489528881793626,0.003306053225491836,0.00326378679728455,0.0032221424722278895,0.0031811093562895795,0.0031406767866150355,0.0031008343255942935,0.003061571755111113,0.0030228790709660286,0.0029847464774678508,0.002947164382188184,0.0029101233908716893,0.0028736143024987943,0.0028376281044939465,0.0028021559680751155,0.0027671892437394477,0.0027327194568810007,0.00269873830353468,0.0026652376462440214,0.0026322095100471837,0.0025996460785777838,0.0025675396902770753,0.0025358828347125362,0.002504668149001109,0.0024738884143323384,0.002443536552588591,0.0024136056230596105,0.0023840888192471375,0.0023549794657583317,0.002326271015283931,0.002297957045658922,0.0022700312570029745,0.002242487468938558,0.002215319617883168,0.002188521754414849,0.0021620880407076317,0.002136012748035048,0.002110290254340034,0.0020849150418680413,0.0020598816948629336,0.002035184897322602,0.002010819430813006,0.001986780172338648,0.0019630620922682592,0.0019396602523130198,0.0019165698035570364,0.0018937859845376468,0.0018713041193742558,0.0018491196159447477,0.0018272279641070076,0.001805624733965585,0.0017843055741811975,0.0017632662103221745,0.0017425024432569118,0.0017220101475852914,0.0017017852701091338,0.0016818238283396658,0.0016621219090413337,0.0016426756668108263,0.0016234813226906155,0.0016045351628152774,0.0015858335370907215,0.0015673728579046421,0.001549149598867572,0.0015311602935839644,0.0015134015344517309,0.0014958699714904269,0.001478562311196601,0.0014614753154258326,0.0014446058003006845,0.001427950635144101,0.001411506741436912,0.0013952710917997223,0.0013792407089978226,0.0013634126649687875,0.0013477840798723159,0.0013323521211611546,0.0013171140026733484,0.0013020669837446623,0.001287208368340843,0.0012725355042094264,0.001258045782049956,0.0012437366347029762,0.0012296055363566832,0.0012156500017710622,0.0012018675855189555,0.0011882558812438748,0.0011748125209335768,0.0011615351742097356,0.0011484215476327793,0.0011354693840216672,0.001122676461788438,0.0011100405942866202,0.0010975596291738607,0.0010852314477879281,0.0010730539645358887,0.0010610251262963436,0.001049142911833889,0.0010374053312261701,0.0010258104253027286,0.0010143562650955413,0.0010030409513010169,0.0009918626137530384,0.0009808194109068552,0.0009699095293336589,0.0009591311832254421,0.0009484826139099444,0.0009379620893756157,0.0009275679038059225,0.0009172983771233418,0.000907151854542424,0.0008971267061318498,0.3919075345196204,0.3919075345196204,0.3919075345196204,0.3919075345196204,0.3918556894823803,0.3821200671563435,0.3589673066898288,0.3290974318623908,0.29814125142998826,0.2692086472996151,0.2434719180051446,0.22107352325941604,0.20172723113107585,0.18501994511078435,0.17054031240452427,0.15792440606817099,0.1468658311152457,0.13711217301178316,0.1284572235158654,0.1207327653301412,0.11380125561528885,0.10754974228346054,0.10188496298708752,0.09672945424822431,0.09201848028982693,0.08769761083857106,0.08372080680681389,0.08004890165914075,0.07664839094221376,0.07349046232033868,0.07055021399035716,0.06780602131259708,0.06523902064477624,0.06283268634810346,0.06057248226452514,0.058445573042241156,0.056440583817269546,0.054547399172307456,0.05275699416302626,0.05106129165656426,0.04945304136423611,0.047925716844642426,0.04647342745960599,0.045090842825957135,0.04377312775362261,0.04251588601884126,0.04131511161013225,0.0401671463181807,0.039068642730494055,0.0380165318466299,0.03700799465652928,0.036040437128908656,0.035111468142802436,0.03421887996678783,0.0333606309497781,0.03253483013695263,0.03173972356583749,0.030973682032506618,0.030235190147292854,0.029522836524233945,0.028835304969652413,0.028171366553135926,0.0275298724595318,0.026909747533653116,0.026309984440577982,0.025729638374131322,0.02516782225438293,0.024623702362213114,0.02409649436519333,0.02358545969443354,0.02308990223670289,0.02260916531026639,0.022142628896393818,0.021689707101646773,0.021249845828782053,0.020822520636486302,0.020407234770313726,0.02000351734901623,0.01961092169212619,0.019229023776096067,0.018857420807595796,0.01849572990368939,0.018143586869665117,0.017800645066160244,0.017466574358048013,0.017141060138273635,0.016823802420449428,0.016514514994628242,0.016212924641156812,0.01591877039799235,0.015631802877281782,0.015351783627359625,0.015078484536688022,0.014811687276536693,0.014551182779492935,0.014296770751134039,0.014048259212424306,0.013805464070588119,0.01356820871642001,0.013336323646135516,0.013109646106033131,0.0128880197583763,0.012671294367017617,0.012459325501425391,0.012251974257854745,0.012049106996515837,0.011850595093673455,0.0116563147076979,0.011466146558148415,0.01127997571705751,0.011097691411626885,0.010919186837613455,0.010744358982735977,0.010573108459470477,0.010405339346664771,0.010240959039425035,0.010079878106775351,0.009922010156624953,0.00976727170760114,0.009615582067351131,0.009466863216927203,0.009321039700904473,0.009178038522900432,0.009037789046189992,0.00890022289912158,0.008765273885072455,0.008632877896684439,0.008502972834145429,0.008375498527296826,0.008250396661353169,0.00812761070604637,0.008007085848005913,0.00788876892620499,0.007772608370310599,0.00765855414178744,0.007546557677607861,0.007436571836440009,0.007328550847182767,0.007222450259729792,0.007118226897851938,0.007015838814087714,0.006915245246547872,0.006816406577535411,0.006719284293893713,0.006623840949000013,0.006530040126321024,0.006437846404460945,0.006347225323627159,0.0062581433534479895,0.006170567862078739,0.006084467086537346,0.005999810104209107,0.005916566805471697,0.005834707867385521,0.005754204728402412,0.0056750295640479375,0.005597155263530211,0.005520555407238689,0.005445204245090058,0.005371076675685641,0.0052981482262441796,0.005226395033277882,0.0051557938239765785,0.005086321898273663,0.005017957111561945,0.004950677858032837,0.004884463054613712,0.00481929212547557,0.004755144987091175,0.0046920020338181165,0.004629844123986222,0.004568652566469617,0.004508409107721271,0.004449095919254781,0.004390695585552951,0.004333191092387246,0.0042765658155314275,0.004220803509854946,0.0041658882987788415,0.004111804664083098,0.004058537436049661,0.004006071783928927,0.003954393206718058,0.003903487524237126,0.003853340868494669,0.003803939675329709,0.0037552706763204877,0.0037073208909508258,0.0036600776190224243,0.003613528433306833,0.003567661172426281,0.0035224639339558363,0.003477925067738657,0.003434033169407371,0.0033907770741023716,0.0033481458503824817,0.0033061287943193037,0.0032647154237694163,0.0032238954728187916,0.003183658886391574,0.003143995815019998,0.003104896609767954,0.0030663518173037778,0.003028352175116896,0.0029908886068739653,0.0029539522179083603,0.002917534290840542,0.00288162628132331,0.0028462198139083987,0.0028113066780307973,0.0027768788241054553,0.00274292835973468,0.002709447546021065,0.002676428793983074,0.002643864661070364,0.002611747847774301,0.0025800711943323763,0.002548827677522251,0.002518010407543011,0.002487612624980805,0.002457627697856647,0.0024280491187525653,0.002398870502015331,0.0023700855810341107,0.002341688205590163,0.0023136723392767544,0.002286032056985964,0.0022587615424619375,0.0022318550859173137,0.002205307081711497,0.0021791120260886594,0.002153264514974193,0.0021277592418267204,0.0021025909955455276,0.0020777546584306076,0.0020532452041942483,0.002029057696022865,0.002005187284686659,0.001981629206697095,0.0019583787825097213,0.0019354314147714087,0.0019127825866110735,0.0018904278599716296,0.0018683628739833125,0.0018465833433762308,0.0018250850569314153,0.0018038638759691756,0.0017829157328740617,0.0017622366296545322,0.0017418226365375213,0.0017216698905961104,0.0017017745944096243,0.0016821330147555641,0.0016627414813317177,0.0016435963855086324,0.0016246941791109222,0.001606031373226837,0.0015876045370453431,0.0015694102967201914,0.0015514453342595448,0.001533706386441476,0.0015161902437539117,0.0014988937493585932,0.001481813798078721,0.001464947335408877,0.0014482913565476566,0.0014318429054516653,0.0014155990739105969,0.001399557000643046,0.0013837138704118647,0.001368066913159459,0.0013526134031618343,0.001337350658201201,0.0013222760387565603,0.0013073869472120811,0.0012926808270822053,0.001278155162253866,0.001263807476244797,0.0012496353314777288,0.0012356363285702767,0.0012218081056395377,0.0012081483376218311,0.0011946547356066093,0.0011813250461844133,0.001168157050808675,0.0011551485651705318,0.00114229743858701,0.001129601553401768,0.0011170588243982805,0.0011046671982250858,0.0010924246528330602,0.0010803291969238716,0.00106837886941006,0.00105657173888595,0.0010449059031093111,0.0010333794884936742,0.001021990649610585,0.0010107375687021757,0.000999618455203374,0.000988631545273683,0.3967233134803366,0.3967233134803366,0.3967233134803366,0.3967233134803366,0.3967233134803366,0.3935346344827787,0.37604904517155263,0.3486815286668172,0.3178573284016108,0.2878316596273553,0.26056199495051763,0.2365894453282943,0.21579156080609535,0.19780425105230018,0.18221622090865702,0.16864578328578944,0.15676443856944644,0.1462986376790478,0.13702376278177755,0.12875620043322272,0.12134576594981217,0.11466920190250365,0.10862485587940113,0.10312841933268127,0.0981095494907202,0.0935091998600231,0.0892775093461733,0.08537212828727242,0.08175688538139174,0.07840072080848683,0.07527682779525395,0.07236195805093398,0.06963585663839604,0.0670807996035267,0.06468121361730095,0.062423361425723724,0.06029508038802975,0.058285564068606015,0.05638517892535218,0.05458530975210696,0.05287822879373245,0.0512569844424917,0.04971530620522212,0.0482475232497372,0.046848494332157944,0.04551354730139554,0.04423842669448175,0.043019248192818424,0.04185245891736648,0.04073480271043133,0.03966328969027652,0.03863516947882435,0.03764790759665649,0.036699164597357524,0.035786777577833544,0.03490874375524424,0.03406320584619118,0.03324843902172456,0.032462839243612866,0.03170491281420881,0.03097326699514823,0.03026660156942975,0.02958370123799405,0.02892342875603901,0.028284718726365,0.027666571977499537,0.02706805046323001,0.026488272627932845,0.02592640918875087,0.02538167929147491,0.02485334700198421,0.024340718099536453,0.023843137141967195,0.023359984776232832,0.022890675270658415,0.022434654247795706,0.021991396599104183,0.021560404564612185,0.02114120596250094,0.02073335255509681,0.020336418539142625,0.019949999149413797,0.01957370936586992,0.01920718271545569,0.018850070160546628,0.018502039066802114,0.01816277224385147,0.017831967052887508,0.0175093345757565,0.017194598840645184,0.01688749609990805,0.016587774155958773,0.01629519173153824,0.016009517880965364,0.015730531439285923,0.015458020506492635,0.01519178196423394,0.01493162102262961,0.014677350795033572,0.014428791898736318,0.014185772079775805,0.013948125860172463,0.013715694206024651,0.013488324215046463,0.013265868822217653,0.013048186522331211,0.012835141108312196,0.012626601424270686,0.012422441132317696,0.012222538492265045,0.012026776153374179,0.011835040957391995,0.011647223752165635,0.011463219215168897,0.011282925686338052,0.011106245009639361,0.01093308238284075,0.010763346214996508,0.010596947991177844,0.01043380214403044,0.0102738259317517,0.010116939322117517,0.009963064882208958,0.009812127673515796,0.00966405515210589,0.009518777073584018,0.009376225402566895,0.009236334226427029,0.009099039673072878,0.008964279832540185,0.008831994682196316,0.00870212601535843,0.008574617373146364,0.008449413979399053,0.0083264626784961,0.008205711875928716,0.008087111481485084,0.007970612854911317,0.007856168753924286,0.007743733284459077,0.007633261853034905,0.007524711121140324,0.007418038961533778,0.00731320441636711,0.007210167657045143,0.00710888994573304,0.007009333598438351,0.006911461949588746,0.006815239318036141,0.006720630974420083,0.00662760310982855,0.0065361228056921095,0.00644615800486022,0.006357677483801544,0.006270650825878868,0.006185048395651239,0.006100841314153937,0.006018001435117364,0.005936501322080146,0.005856314226358104,0.0057774140658330584,0.005699775404522634,0.005623373432901799,0.005548183948940734,0.005474183339829952,0.005401348564363122,0.005329657135951287,0.005259087106239106,0.005189617049302165,0.005121226046398386,0.005053893671251962,0.004987599975848898,0.004922325476720807,0.004858051141701005,0.0047947583771311185,0.004732429015501619,0.00467104530350861,0.0046105898905115785,0.004551045817373978,0.004492396505675033,0.004434625747276019,0.004377717694228148,0.004321656849009921,0.004266428055078945,0.004212016487729602,0.004158407645242632,0.004105587340316807,0.004053541691771697,0.004002257116512672,0.003951720321746096,0.003901918297438591,0.0038528383090093133,0.0038044678902475005,0.0037567948364479738,0.0037098071977546554,0.0036634932727074346,0.0036178416019832424,0.003572840962325069,0.0035284803606530375,0.003484749028349293,0.0034416364157131393,0.0033991321865787963,0.0033572262130908033,0.0033159085706315435,0.0032751695328964237,0.003234999567109892,0.0031953893293799798,0.0031563296601849304,0.003117811579988152,0.0030798262849776937,0.003042365142924649,0.00300541968915861,0.0029689816226548273,0.0029330428022299355,0.002897595242843347,0.0028626311119989475,0.0028281427262470617,0.002794122547780193,0.0027605631811216404,0.002727457369903772,0.0026947979937323955,0.002662578065134783,0.002630790726589554,0.0025994292476348353,0.002568487022052748,0.002537957565128215,0.0025078345109786284,0.002478111609953851,0.00244878272610317,0.0024198418347077194,0.0023912830198761933,0.0023631004722024975,0.0023352884864820556,0.002307841459487361,0.002280753887798571,0.0022540203656892205,0.0022276355830650103,0.0022015943234532888,0.002175891462043214,0.0021505219637739602,0.0021254808814700644,0.0021007633540227996,0.0020763646046152904,0.0020522799389915028,0.002028504743766782,0.002005034484779275,0.0019818647054808502,0.0019589910253668893,0.0019364091384428818,0.0019141148117278756,0.0018921038837934902,0.0018703722633367141,0.0018489159277869606,0.0018277309219449024,0.001806813356653625,0.0017861594075003061,0.0017657653135479496,0.0017456273760962707,0.0017257419574712516,0.001706105479841808,0.001686714424063934,0.0016675653285507933,0.0016486547881683,0.0016299794531558654,0.0016115360280707773,0.001593321270756713,0.001575331991334929,0.001557565051217855,0.0015400173621446921,0.0015226858852377923,0.0015055676300802369,0.0014886596538131681,0.0014719590602532463,0.001455462999028684,0.0014391686647345896,0.0014230732961059021,0.0014071741752085675,0.0013914686266478177,0.0013759540167933317,0.0013606277530209799,0.0013454872829705192,0.0013305300938189462,0.0013157537115692777,0.0013011557003540315,0.001286733661753566,0.0012724852341283882,0.0012584080919652487,0.0012444999452370235,0.001230758538775644,0.0012171816516578881,0.0012037670966039758,0.0011905127193880434,0.0011774163982610042,0.0011644760433849354,0.0011516895962789013,0.0011390550292761238,0.0011265703449917141,0.0011142335758014138,0.001102042783330572,0.0010899960579533337,0.4015982689685644,0.4015982689685644,0.4015982689685644,0.4015982689685644,0.4015982689685644,0.4015344437128975,0.3918307620834961,0.3689643740791477,0.3394534229861386,0.30878376888384934,0.28000926608643006,0.25430535418407585,0.23184007889021938,0.2123553328627565,0.19546154486833275,0.18076505187770545,0.16791456630421153,0.15661247662166464,0.1466123637270638,0.13771204982694335,0.12974597985377423,0.1225783258885963,0.11609719678076022,0.11020994070637774,0.10483939556288288,0.0999209160106503,0.09540001972541136,0.09123052089952978,0.08737304506835326,0.08379384205810977,0.0804638323852122,0.07735783705799362,0.07445395207036289,0.07173303759648804,0.06917829857808477,0.06677493851701365,0.06450987221688285,0.06237148624422562,0.06034943821924464,0.058434487862541386,0.056618354140531985,0.054893593962481814,0.05325349875632552,0.05169200594221066,0.05020362287308591,0.04878336125112406,0.04742668038181954,0.04612943791223694,0.04488784693039743,0.04369843849052431,0.0425580287820078,0.04146369028576703,0.04041272636520886,0.03940264882462233,0.03843115803882169,0.037496125317116075,0.036595577214013554,0.035727681540577975,0.03489073486521725,0.034083151322053244,0.0333034525700084,0.0325502587667933,0.03182228044002237,0.031118311153037655,0.03043722087612748,0.029777949985176324,0.029139503819413614,0.028520947738340654,0.027921402625130654,0.027340040790077163,0.026776082233071246,0.026228791228881145,0.025697473203077265,0.025181471870085896,0.02468016660801172,0.024192970047610417,0.023719325855277015,0.023258706692008302,0.022810612332218778,0.022374567927947276,0.021950122405479975,0.021536846982698858,0.021134333796672313,0.020742194631993626,0.020360059741320696,0.019987576750389542,0.019624409640487093,0.01927023780206218,0.01892475515370406,0.018587669321266077,0.01825870087238526,0.01793758260205463,0.017624058865321708,0.017317884953499257,0.017018826510605073,0.016726658987022545,0.016441167127634944,0.01616214449189944,0.01588939300356552,0.015622722527902502,0.015361950474490864,0.015106901423787065,0.014857406775800983,0.01461330441937973,0.014374438420685047,0.014140658729575333,0.013911820902695937,0.01368778584217778,0.013468419548913212,0.01325359288947664,0.0130431813758045,0.012837064956826023,0.012635127821294265,0.012437258211109697,0.01224334824449805,0.012053293748429903,0.011866994099723084,0.011684352074307377,0.011505273704156443,0.011329668141443401,0.011157447529488449,0.01098852688010656,0.010822823956984935,0.010660259164748193,0.010500755443381806,0.010344238167721322,0.010190635051718244,0.010039876057220228,0.009891893307020054,0.009746621001934755,0.009603995341705189,0.009463954449505662,0.00932643829987356,0.00919138864987821,0.00905874897336145,0.008928464398084788,0.008800481645640804,0.008674748973981732,0.008551216122434277,0.008429834259076981,0.008310555930356907,0.008193335012841163,0.00807812666699297,0.007964887292874902,0.00785357448768723,0.007744147005048063,0.007636564715938214,0.00753078857122679,0.007426780565704866,0.007324503703555756,0.007223921965196839,0.007125000275425058,0.007027704472811977,0.006932001280287081,0.00683785827685689,0.006745243870410058,0.006654127271555906,0.006564478468455756,0.00647626820259925,0.006389467945485873,0.0063040498761715935,0.006219986859644779,0.006137252425991989,0.006055820750324682,0.005975666633430991,0.005896765483123131,0.005819093296252321,0.0057426266413601835,0.0056673426419444955,0.005593218960310835,0.005520233781987238,0.005448365800679862,0.005377594203744851,0.005307898658159634,0.005239259296970727,0.005171656706200233,0.005105071912192639,0.005039486369385673,0.004974881948485916,0.004911240925037166,0.004848545968363564,0.004786780130874195,0.004725926837716024,0.004665969876759574,0.00460689338890802,0.004548681858715216,0.004491320105301828,0.004434793273559395,0.004379086825629257,0.004324186532649484,0.004270078466757655,0.00421674899334104,0.004164184763525144,0.004112372706892771,0.004061300024423222,0.004010954181646788,0.003961322902004637,0.003912394160407761,0.0038641561769885164,0.0038165974110361397,0.003769706555112586,0.0037234725293403574,0.003677884475857327,0.0036329317534326204,0.0035886039322387134,0.0035448907887727747,0.003501782300924595,0.003459268643184446,0.0034173401819867387,0.0033759874711857037,0.0033352012476568346,0.0032949724270224406,0.003255292099495473,0.003216151525838352,0.0031775421334336324,0.003139455512461301,0.0031018834121814953,0.003064817737317532,0.0030282505445369218,0.0029921740390268644,0.0029565805711620455,0.0029214626332601822,0.0028868128564247366,0.002852624007470488,0.002818888985930018,0.00278560082113898,0.002752752669396439,0.0027203378111998414,0.002688349648550905,0.0026567817023309417,0.0026256276097432873,0.0025948811218213783,0.0025645361009992425,0.00253458651874421,0.0025050264532488742,0.0024758500871807864,0.0024470517054888253,0.002418625693263186,0.0023905665336491754,0.0023628688058120184,0.0023355271829515792,0.002308536430366026,0.0022818914035618366,0.002255587046410367,0.002229618389348574,0.002203980547623028,0.002178668719575945,0.0021536781849724267,0.00212900430336672,0.0021046425125078577,0.002080588326782495,0.00205683733569432,0.002033385202379339,0.0020102276621550715,0.001987360521104071,0.001964779654689859,0.001942481006404753,0.0019204605864486773,0.00189871447043845,0.0018772387981458175,0.0018560297722647295,0.0018350836572061503,0.0018143967779199782,0.001793965518743686,0.0017737863222760755,0.0017538556882767057,0.0017341701725893848,0.0017147263860895067,0.0016955209936547722,0.001676550713157975,0.0016578123144823321,0.001639302618557968,0.0016210184964193812,0.0016029568682832172,0.0015851147026461686,0.0015674890154017353,0.001550076868976386,0.0015328753714838653,0.0015158816758974903,0.0014990929792401992,0.0014825065217912014,0.0014661195863097964,0.001449929497275215,0.001433933620142326,0.0014181293606130756,0.001402514163922572,0.0013870855141403886,0.0013718409334860272,0.0013567779816585006,0.001341894255179575,0.0013271873867506292,0.0013126550446221782,0.0012982949319765812,0.0012841047863230164,0.001270082378904653,0.0012562255141178862,0.001242532028942845,0.0012289997923856078,0.00121562670493134,0.0012024106980082906,0.40653312814836934,0.40653312814836934,0.40653312814836934,0.40653312814836934,0.40653312814836934,0.40653312814836934,0.40442909203584015,0.3887422363607871,0.3625543523021078,0.33223568213297067,0.30223620624601927,0.274717504653782,0.25035866964938874,0.2291164147338167,0.21066881429074635,0.19462605033746097,0.1806168391123074,0.16831724767325837,0.15745524253314183,0.14780614896863956,0.13918551335697169,0.13144195106618334,0.12445087220869254,0.1181092799842946,0.11233157150666497,0.10704618931323087,0.10219296359537292,0.0977210033097056,0.0935870190601117,0.0897539843377728,0.08619006189254305,0.08286773830456977,0.07976312262704109,0.07685537488917914,0.0741262378807024,0.07155965149939514,0.06914143344465022,0.06685901350479442,0.06470121136159192,0.0626580499100257,0.0607205977065826,0.058880835423129795,0.057131542176820795,0.05546619839099066,0.05387890246492811,0.052364299026859504,0.05091751694250534,0.04953411557185934,0.048210038025738366,0.04694157038410918,0.0457253060095735,0.04455811422994321,0.04343711277928852,0.042359643482188895,0.04132325074481904,0.04032566248227455,0.03936477316621906,0.0384386287228701,0.03754541304986805,0.036683435952989694,0.03585112233120601,0.03504700246175735,0.03426970325675784,0.03351794037970195,0.032790511124625936,0.03208628797311186,0.03140421275486801,0.030743291346815943,0.030102588853498865,0.02948122521848061,0.028878371222298322,0.028293244827754513,0.027725107837763854,0.027173262834929792,0.026637050375456214,0.026115846412977033,0.025609059930582087,0.025116130761586846,0.024636527581675283,0.024169746056840184,0.023715307133156137,0.023272755455808775,0.02284165790610739,0.022421602246278753,0.02201219586286062,0.021613064600398805,0.02122385167791967,0.02084421668139758,0.020473834626029207,0.02011239508271797,0.019759601363679453,0.01941516976251685,0.01907882884456297,0.018750318783620396,0.018429390741588055,0.01811580628775696,0.017809336854837567,0.017509763229011578,0.01721687507155476,0.01693047046975081,0.016650355515018457,0.016376343906341465,0.016108256577228076,0.01584592134459353,0.015589172578058714,0.015337850888289947,0.015091802833104934,0.014850880640172228,0.014614941945205578,0.01438384954465968,0.014157471161984255,0.013935679226575222,0.013718350664624278,0.013505366701113089,0.013296612672272872,0.013091977847857924,0.012891355262637865,0.012694641556555416,0.012501736823022889,0.012312544464885859,0.012126971057595045,0.011944926219169793,0.011766322486559407,0.011591075198039112,0.011419102381290331,0.011250324646854633,0.011084665086654247,0.01092204917730038,0.010762404687928854,0.01060566159230916,0.010451751985004965,0.010300610001361956,0.010152171741122018,0.010006375195471217,0.009863160177344293,0.009722468254810135,0.009584242687387319,0.009448428365133743,0.009314971750371206,0.009183820821914037,0.009054925021670794,0.0089282352035084,0.008803703584261623,0.008681283696784725,0.008560930344947646,0.008442599560477698,0.008326248561565152,0.00821183571314373,0.008099320488768708,0.007988663434017263,0.00787982613134177,0.007772771166304253,0.007667462095134677,0.007563863413548016,0.00746194052676457,0.007361659720680725,0.0072629881341344646,0.0071658937322226016,0.007070345280619073,0.006976312320852069,0.006883765146497673,0.006792674780251901,0.006703012951839432,0.006614752076728497,0.006527865235613683,0.006442326154635728,0.006358109186308414,0.006275189291119586,0.006193542019783122,0.006113143496111437,0.006033970400484431,0.00595599995389159,0.005879209902520868,0.005803578502876706,0.005729084507402817,0.005655707150590926,0.005583426135555951,0.005512221621060505,0.0054420742089681205,0.00537296493211263,0.0053048752425646694,0.0052377870002810216,0.005171682462123185,0.005106544271228347,0.00504235544672323,0.004979099373765093,0.004916759793898742,0.00485532079571862,0.004794766805822149,0.0047350825800470744,0.004676253194979969,0.004618264039726966,0.0045611008079369944,0.004504749490069451,0.0044491963658951535,0.004394427997225415,0.004340431220858982,0.004287193141739767,0.004234701126318935,0.004182942796111897,0.0041319060214464725,0.004081578915393446,0.004031949827874107,0.003983007339938553,0.0039347402582096975,0.003887137609485381,0.0038401886354960933,0.00379388278781088,0.003748209722887468,0.0037031592972621833,0.003658721562873417,0.0036148867625166304,0.003571645325424812,0.003528987862970918,0.003486905164488984,0.003445388193208274,0.003404428082299299,0.003364016131026271,0.0033241438010034783,0.003284802712551913,0.003245984641153835,0.003207681514000437,0.0031698854066320196,0.0031325885396660826,0.0030957832756112586,0.003059462115764938,0.003023617697190469,0.0029882427897736275,0.0029533302933543704,0.0029188732349322605,0.002884864765943156,0.002851298159605564,0.0028181668083332918,0.002785464221214149,0.0027531840215515068,0.0027213199444672807,0.0026898658345649693,0.00265881564364971,0.002628163428505466,0.0025979033487263698,0.002568029664601125,0.00253853673504935,0.002509419015607169,0.0024806710564622904,0.0024522875005359387,0.0024242630816108646,0.0023965926225039016,0.0023692710332823956,0.0023422933095220504,0.002315654530606635,0.0022893498580672396,0.0022633745339603654,0.0022377238792841963,0.002212393292430876,0.002187378247675288,0.002162674293698291,0.0021382770521438904,0.0021141822162093066,0.0020903855492674784,0.002066882883520138,0.002043670118681958,0.002020743220694008,0.0019980982204660463,0.001975731212647193,0.0019536383544233775,0.0019318158643420317,0.0019102600211624615,0.001888967162731498,0.0018679336848841145,0.0018471560403674563,0.0018266307377889086,0.0018063543405866366,0.0017863234660225038,0.001766534784196544,0.001746985017082919,0.0017276709375859095,0.0017085893686165665,0.0016897371821887168,0.0016711112985340663,0.001652708685236252,0.001634526356382543,0.0016165613717338536,0.0015988108359117808,0.0015812718976025832,0.0015639417487778907,0.0015468176239310156,0.0015298967993294943,0.00151317659228269,0.0014966543604244629,0.0014803275010103775,0.0014641934502294357,0.0014482496825292904,0.0014324937099555125,0.0014169230815039603,0.0014015353824860957,0.001386328233907228,0.0013712992918567008,0.0013564462469106283,0.001341766823546234,0.0013272587795677931,0.4115286271192448,0.4115286271192448,0.4115286271192448,0.4115286271192448,0.4115286271192448,0.4115286271192448,0.4115286271192448,0.40570765088390415,0.3858877311169945,0.35786704077861586,0.3274748933523057,0.2982918628491152,0.2718723051890358,0.24859306174166912,0.2282956385740872,0.21063244287410968,0.1952240765903149,0.18172102499177675,0.1698222570635793,0.15927612108243172,0.14987490005488424,0.14144782130198919,0.13385438403645225,0.12697861085496542,0.12072431602818132,0.11501129429475403,0.10977228099107945,0.10495053539509684,0.10049791868318651,0.09637336122792724,0.092541635533502,0.0889723692227964,0.08563924703269195,0.08251936217854579,0.07959268628502061,0.07684163389003022,0.07425070276712797,0.071806175345147,0.06949586961650372,0.06730893033609196,0.06523565318619749,0.06326733604606635,0.06139615265240182,0.05961504484146487,0.057917630279940555,0.056298123161471904,0.05475126580150808,0.05327226942903208,0.05185676276887515,0.05050074724771052,0.04920055785136336,0.0479528288202822,0.04675446350054378,0.04560260777534857,0.04449462659083291,0.04342808316396187,0.04240072052163476,0.04141044507159629,0.04045531194884112,0.03953351191740452,0.038643359638133146,0.03778328313883794,0.0369518143452839,0.03614758055019444,0.035369296713392555,0.034615758499970346,0.03388583597504327,0.03317846788380554,0.03249265645430126,0.031827462667881,0.03118200194880446,0.030555440230189967,0.029946990358382036,0.029355908802151824,0.028781492636908424,0.028223076777359826,0.027680031435013075,0.027151759779385477,0.026637695784072143,0.026137302240776424,0.025650068926165386,0.02517551090792832,0.024713166977833434,0.02426259820074569,0.02382338656967801,0.02339513375790989,0.022977459960043176,0.022570002814675104,0.02217241640201211,0.02178437031038873,0.02140554876620635,0.02103564982228097,0.020674384600072777,0.02032147658163457,0.019976660947499784,0.01963968395705017,0.0193103023682055,0.018988282893525433,0.018673401690088635,0.018365443880700435,0.018064203104198925,0.017769481092809306,0.017481087274644307,0.017198838399628266,0.016922558187228872,0.016652076994523687,0.016387231503235143,0.016127864424478396,0.015873824220045053,0.015624964839160415,0.015381145469703967,0.015142230302972553,0.014908088311131409,0.01467859303654735,0.014453622392278037,0.014233058473020702,0.014016787375884833,0.013804699030397521,0.013596687037178668,0.013392648514783027,0.013192483954218534,0.012996097080696599,0.012803394722194052,0.012614286684439157,0.012428685631947841,0.012246506974779229,0.012067668760682475,0.011892091572338056,0.011719698429415618,0.01155041469517776,0.011384167987393414,0.011220888093321625,0.011060506888551999,0.010902958259496422,0.010748178029343419,0.010596103887287999,0.01044667532087661,0.010299833551300703,0.01015552147149135,0.010013683586874999,0.009874265958651304,0.009737216149475304,0.009602483171419209,0.009470017436104178,0.009339770706898017,0.009211696053073674,0.009085747805841704,0.008961881516161743,0.008840053914251413,0.008720222870711844,0.008602347359196674,0.008486387420547758,0.008372304128337157,0.008260059555745693,0.008149616743719515,0.008040939670348317,0.007933993221406014,0.00782874316200832,0.0077251561093331965,0.007623199506359181,0.007522841596578516,0.007424051399638667,0.007326798687877897,0.0072310539637124175,0.007136788437840608,0.007043974008229331,0.006952583239850985,0.006862589345136194,0.0067739661651175734,0.00668668815123229,0.006600730347757763,0.006516068374855855,0.006432678412197517,0.006350537183149085,0.0062696219394945355,0.006189910446673517,0.006111380969514604,0.006034012258445512,0.005957783536158427,0.005882674484717098,0.005808665233085545,0.005735736345063181,0.005663868807611852,0.005593044019557037,0.005523243780652983,0.005454450280995263,0.005386646090768867,0.005319814150319131,0.0052539377605347005,0.0051890005735282085,0.005124986583607668,0.005061880118525144,0.004999665830993743,0.004938328690464072,0.004877853975148348,0.00481822726428689,0.004759434430645697,0.004701461633238081,0.004644295310263125,0.004587922172251186,0.004532329195412397,0.00447750361517879,0.004423432919934484,0.004370104844927106,0.00431750736635523,0.004265628695623776,0.004214457273764563,0.00416398176601441,0.004114191056546209,0.00406507424334872,0.004016620633247991,0.003968819737068658,0.003921661264928444,0.003875135121662239,0.003829231402372309,0.003783940388098481,0.003739252541607268,0.0036951585032941048,0.0036516490871958537,0.003608715277110008,0.0035663482228178384,0.0035245392364065082,0.0034832797886895014,0.0034425615057204796,0.003402376165398363,0.003362715694161339,0.003323572163765476,0.003284937788147576,0.0032468049203680464,0.0032091660496320847,0.0031720137983866302,0.003135340919491368,0.003099140293460167,0.0030634049257728443,0.0030281279442536603,0.0029933025965151777,0.0029589222474659498,0.0029249803768788786,0.0028914705770202776,0.0028583865503365546,0.002825722107197336,0.002793471163693816,0.0027616277394894645,0.0027301859557234405,0.002699140032963779,0.002668484289209619,0.002638213137940843,0.002608321086214368,0.002578802732804492,0.0025496527663878194,0.0025208659637702365,0.002492437188155218,0.0024643613874528055,0.002436633592626808,0.0024092489160809694,0.0023822025500817414,0.0023554897652171706,0.002329105908890846,0.0023030464038503616,0.0022773067467482875,0.002251882506736294,0.0022267693240904094,0.0022019629088670186,0.0021774590395891124,0.0021532535619609686,0.002129342387611926,0.0021057214928674735,0.0020823869175472633,0.0020593347637897267,0.0020365611949016366,0.0020140624342332345,0.001991834764077387,0.001969874524592461,0.0019481781127482919,0.0019267419812949629,0.0019055626377529483,0.0018846366434252973,0.0018639606124304239,0.0018435312107552605,0.0018233451553286047,0.0018033992131132935,0.0017836902002178517,0.0017642149810263691,0.0017449704673464256,0.0017259536175745559,0.0017071614358791698,0.0016885909713996808,0.0016702393174625268,0.0016521036108129174,0.0016341810308621552,0.0016164687989504442,0.0015989641776240713,0.001581664469927606,0.001564567018710042,0.001547669205944778,0.0015309684520633904,0.0015144622153021442,0.001498147991061891,0.001482023311280361,0.0014660857438168308,0.41658551102591057,0.41658551102591057,0.41658551102591057,0.41658551102591057,0.41658551102591057,0.41658551102591057,0.41658551102591057,0.4164943612258672,0.40680837073351817,0.3844033840804345,0.3555108014808001,0.3253752609224394,0.29694673513486325,0.2713937269061272,0.24891755025731307,0.22930101578160342,0.21219044950307941,0.1972200887321322,0.18405916295234795,0.17242473121549234,0.16208070166320157,0.15283209038613027,0.1445183058171276,0.13700690461554887,0.1301882642998803,0.12397121307861114,0.11827951145609897,0.11304904296519304,0.10822557669679303,0.10376298370739982,0.09962181116972856,0.09576813789885474,0.09217265137558045,0.08880989959471398,0.08565768142029506,0.08269654716215419,0.0799093872882322,0.07728109196700474,0.07479826782273948,0.07244900113990788,0.07022265896747899,0.06810972129980078,0.06610163886147666,0.06419071208550542,0.06236998771302951,0.06063317010858435,0.058974544915720954,0.05738891310311393,0.055871533793394136,0.054418074543726574,0.053024567971565996,0.051687373802216934,0.05040314556467947,0.049168801285491864,0.04798149763186329,0.046838607039708144,0.04573769743205136,0.044676514191728585,0.043652964101160784,0.0426651010029627,0.041711112969816624,0.04078931080115298,0.039898117689002865,0.039036059916431484,0.03820175846985663,0.03739392146198068,0.036611337275120844,0.03585286834607029,0.035117445523329155,0.03440406293596289,0.033711773320568655,0.03303968375920956,0.0323869517865846,0.031752781829517754,0.03113642194601694,0.030537160834763474,0.029954325089150715,0.02938727667273407,0.02883541059545987,0.02829815277220324,0.027774958047076973,0.027265308368640818,0.026768711102697944,0.026284697470647704,0.02581282110258002,0.025352656695352613,0.02490379876680553,0.02446586049815586,0.024038472657319118,0.023621282596603052,0.023213953318821815,0.02281616260639599,0.02242760220853114,0.022047977081964373,0.021677004681187138,0.021314414294399717,0.020959946421781155,0.02061335219292886,0.02027439282062004,0.01994283908824991,0.01961847086853857,0.019301076671293806,0.01899045321817782,0.01868640504262,0.018388744113134174,0.01809728947845292,0.017811866933006994,0.017532308701398363,0.01725845314059956,0.016990144458736037,0.016727232449365328,0.016469572240262652,0.016217024055794317,0.015969452992012703,0.015726728803693295,0.015488725702565143,0.015255322166052635,0.01502640075589364,0.01480184794603059,0.014581553959234059,0.01436541261193339,0.014153321166777574,0.013945180192475872,0.013740893430502747,0.013540367668266617,0.013343512618387792,0.013150240803734338,0.012960467447898137,0.012774110370813337,0.01259108988922785,0.012411328721774714,0.012234751898387564,0.012061286673831507,0.011890862445129694,0.011723410672683895,0.011558864804889105,0.011397160206070426,0.011238234087564662,0.011082025441788572,0.010928474979144646,0.010777525067615484,0.010629119674921375,0.01048320431310751,0.01033972598544409,0.010198633135528101,0.010059875598474355,0.009923404554103347,0.009789172482024709,0.009657133118528654,0.009527241415199802,0.009399453499174976,0.009273726634963331,0.009150019187763942,0.00902829058820715,0.008908501298456573,0.008790612779612106,0.00867458746035067,0.008560388706756026,0.008447980793280335,0.008337328874789286,0.008228398959644872,0.00812115788377654,0.008015573285703953,0.00791161358246617,0.00780924794642054,0.007708446282873911,0.007609179208513023,0.007511418030595619,0.007415134726879182,0.007320301926247835,0.007226892890015176,0.007134881493873758,0.007044242210462232,0.006954950092530347,0.006866980756673996,0.00678031036761919,0.006694915623032881,0.0066107737388412776,0.006527862435032307,0.006446159921928217,0.00636564488690661,0.0062862964815538665,0.006208094309235659,0.006131018413065356,0.006055049264259687,0.005980167750864,0.0059063551668345005,0.005833593201463902,0.005761863929139057,0.005691149799415278,0.005621433627399964,0.005552698584431211,0.005484928189041829,0.005418106298199427,0.005352217098809954,0.005287245099479069,0.005223175122519435,0.005159992296196249,0.0050976820472035935,0.005036230093360927,0.004975622436525604,0.0049158453557114415,0.0048568854004072464,0.004798729384088277,0.004741364377914916,0.004684777704610073,0.004628956932512302,0.00457388986979651,0.00451956455885753,0.004465969270851815,0.004413092500389926,0.004360922960377823,0.004309449576999887,0.004258661484839861,0.0042085480221359575,0.004159098726163738,0.004110303328745462,0.004062151751879851,0.004014634103489257,0.003967740673280312,0.003921461928715258,0.003875788511088583,0.003830711231708322,0.0037862210681767813,0.003742309160768382,0.0036989668089021637,0.003656185467704352,0.0036139567446605925,0.003572272396353352,0.0035311243252827817,0.003490504576768086,0.003450405335927931,0.0034108189247356695,0.0033717377991495413,0.003333154546313932,0.003295061881830174,0.0032574526470954056,0.00322031980670592,0.0031836564459252984,0.0031474557682138063,0.0031117110928179327,0.003076415852418794,0.0030415635908362447,0.0030071479607891296,0.002973162721708637,0.002939601737603802,0.00290645897497755,0.0028737285007924755,0.002841404480483508,0.0028094811760180937,0.0027779529440012047,0.0027468142338243676,0.0027160595858580112,0.0026856836296846043,0.0026556810823732723,0.0026260467467934304,0.0025967755099669454,0.002567862341457634,0.0025393022917975425,0.0025110904909479265,0.0024832221467955286,0.0024556925436820514,0.002428497040966442,0.002401631071619394,0.002375090140848161,0.0023488698247524377,0.002322965769009299,0.0022973736875869163,0.0022720893614866277,0.002247108637511568,0.002222427427062644,0.002198041704960076,0.0021739475082902795,0.00215014093527736,0.0021266181441789572,0.002103375352204866,0.002080408834459199,0.0020577149229045032,0.0020352900053476433,0.002013130524447206,0.001991232976740998,0.0019695939116943528,0.0019482099307678619,0.0019270776865043888,0.0019061938816348053,0.001885555268202389,0.001865158646704342,0.0018450008652517885,0.0018250788187459779,0.0018053894480715572,0.001785929739306222,0.0017666967229457025,0.0017476874731448256,0.0017288991069734595,0.001710328783687242,0.0016919737040130241,0.0016738311094479418,0.001655898281572773,0.0016381725413785466,0.0016206512486063784,0.4217045341694612,0.4217045341694612,0.4217045341694612,0.4217045341694612,0.4217045341694612,0.4217045341694612,0.4217045341694612,0.4217045341694612,0.4210493614659209,0.40885574611559955,0.3850782773451687,0.35589531961479065,0.3261005111230893,0.2982491813803308,0.2732909969794153,0.2513367669082843,0.23214505138107142,0.2153659302779299,0.20064679666833873,0.18767153673118248,0.17617045517538177,0.16591850582789106,0.1567295849126365,0.14845011884399265,0.14095317036858418,0.13413342837316203,0.12790310017557754,0.12218860150625459,0.11692790938445381,0.11206844965242879,0.10756540944203834,0.10338038515939887,0.09948029489461868,0.09583649942739902,0.09242408822896397,0.08922129646418421,0.08620902646019327,0.08337045287991608,0.08069069529792265,0.07815654532469048,0.07575623809821301,0.0734792600411813,0.07131618640539508,0.06925854339800509,0.06729869068723789,0.06542972087861759,0.06364537318376223,0.061939959007764715,0.06030829758542365,0.0587456601226772,0.05724772116326009,0.055810516115227984,0.054430404047094094,0.05310403500693686,0.051828321235918906,0.050600411745424734,0.04941766980784326,0.04827765297847397,0.04717809532230095,0.046116891566461087,0.04509208293898592,0.0441018444877101,0.04314447370158493,0.04221838028062203,0.04132207692105634,0.04045417099982726,0.03961335705728855,0.03879840998989497,0.0380081788755867,0.03724158136408718,0.036497598572472985,0.03577527043354388,0.03507369145060188,0.0343920068176474,0.03372940886866934,0.03308513382374748,0.03245845880332247,0.031848699085053514,0.03125520558047728,0.030677362511087065,0.03011458526560227,0.029566318422051346,0.029032033920017353,0.028511229369820076,0.028003426486754798,0.02750816963967504,0.027025024504219758,0.02655357681196265,0.02609343118754137,0.02564421006659363,0.025205552687991444,0.024777114154434215,0.024358564556041483,0.02394958815202275,0.02354988260596106,0.023159158270628515,0.02277713751861212,0.022403554115324832,0.022038152631302613,0.021680687890911047,0.021330924454843324,0.02098863613400609,0.02065360553256422,0.020325623618128574,0.020004489317196963,0.019690009134126725,0.019381996792044453,0.019080272894227174,0.01878466460458396,0.018495005345999304,0.018211134515363582,0.017932897214218962,0.01766014399402775,0.017392730615126833,0.017130517818526148,0.01687337110974243,0.016621160553931882,0.016373760581636646,0.01613104980449377,0.015892910840323845,0.01565923014703301,0.015429897864813809,0.015204807666160088,0.014983856613248048,0.014766945022252063,0.01455397633421379,0.014344856992086279,0.014139496323611027,0.01393780642970802,0.013739702078067153,0.013545100601669071,0.013353921801960445,0.013166087856437695,0.012981523230403393,0.012800154592678496,0.012621910735055607,0.012446722495309018,0.012274522683570726,0.01210524601190286,0.011938829026906584,0.011775210045207452,0.011614329091682899,0.01145612784028868,0.011300549557358817,0.011147539047259932,0.010997042600279715,0.010849007942650103,0.010703384188596675,0.010560121794320984,0.010419172513823337,0.010280489356482589,0.010144026546305309,0.010009739482774966,0.009877584703222093,0.00974751984664797,0.009619503618938062,0.00949349575939728,0.009369457008555316,0.009247349077180339,0.009127134616450195,0.009008777189229515,0.008892241242406979,0.008777492080241844,0.008664495838683051,0.008553219460614768,0.008443630671990457,0.00833569795881996,0.008229390544969146,0.00812467837074456,0.008021532072226173,0.00791992296131886,0.007819823006495086,0.007721204814196182,0.007624041610871569,0.007528307225626133,0.007433976073453179,0.0073410231390293595,0.007249423961051029,0.007159154617086968,0.007070191708932518,0.006982512348442133,0.006896094143822997,0.006810915186373535,0.00672695403764618,0.006644189717023258,0.006562601689686968,0.006482169854969743,0.006402874535072335,0.006324696464132368,0.006247616777635193,0.006171617002151134,0.006096679045388655,0.0060227851865516015,0.005949918066990848,0.005878060681136761,0.0058071963677066895,0.005737308801174549,0.005668381983494521,0.005600400236070783,0.005533348191961972,0.005467210788315992,0.005401973259024482,0.005337621127590508,0.005274140200201905,0.005211516559004332,0.005149736555564704,0.00508878680452216,0.0050286541774175976,0.004969325796696864,0.004910789029882609,0.004853031483906794,0.0047960409996019755,0.004739805646343593,0.004684313716839422,0.004629553722062016,0.004575514386317345,0.004522184642448392,0.004469553627167048,0.004417610676511253,0.004366345321423085,0.004315747283444949,0.00426580647052798,0.004216512972952095,0.004167857059352065,0.0041198291728471335,0.004072419927271646,0.0040256201035016054,0.0039794206458769665,0.003933812658714742,0.003888787402911035,0.0038443362926290484,0.0038004508920713243,0.0037571229123317886,0.0037143442083277965,0.0036721067758079327,0.003630402748433998,0.003589224394935634,0.0035485641163336976,0.0035084144432327258,0.0034687680331788218,0.0034296176680816636,0.0033909562516992934,0.0033527768071823787,0.0033150724746783683,0.0032778365089922517,0.003241062277303043,0.0032047432569341397,0.003168873033176752,0.003133445297163406,0.003098453843792109,0.0030638925696983635,0.003029755471274195,0.002996036642733356,0.0029627302742201264,0.002929830649962321,0.00289733214646601,0.0028652292307513104,0.0028335164586280556,0.002802188473010769,0.0027712400022705816,0.00274066585862494,0.002710460936562717,0.0026806202113043146,0.00265113873729623,0.0026220116467379657,0.0025932341481420765,0.002564801524925321,0.002536709134030482,0.0025089524045784997,0.002481526836548968,0.002454427999489824,0.0024276515312543615,0.002401193136765322,0.002375048586805226,0.002349213716832809,0.0023236844258236952,0.0022984566751362697,0.0022735264874010333,0.002248889945433141,0.002224543191168018,0.0022004824246183914,0.002176703902853582,0.0021532039389995654,0.0021299789012595434,0.0021070252119549625,0.0020843393465854285,0.002061917832908438,0.002039757250037419,0.002017854227558101,0.0019962054446626062,0.0019748076293012356,0.0019536575573506215,0.0019327520517990878,0.0019120879819479008,0.001891662262628321,0.0018714718534344633,0.0018515137579706146,0.0018317850231139524,0.001812282738291356,0.0017930040347704063,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42688646011988013,0.42583434684692734,0.4126932913339853,0.38853671070744317,0.35942493833909045,0.32991646167324423,0.30239520392310854,0.27772839871543664,0.25600054028908514,0.23696988848226613,0.22029557491333773,0.2056359433380863,0.19268491255091968,0.18118110655582767,0.17090607584398798,0.16167883677211192,0.15334975060265962,0.14579489209024926,0.13891125383193734,0.1326128064008478,0.12682731689888094,0.12149379938076624,0.11656047615380859,0.11198314604201966,0.10772387467772485,0.10374993910573001,0.10003297339275873,0.09654827351929651,0.09327422895304971,0.09019185541017531,0.0872844088198333,0.08453706477331718,0.08193665104361805,0.07947142332807468,0.07713087636637946,0.07490558414995739,0.07278706416719287,0.07076766159761337,0.06884045013604335,0.06699914673892685,0.06523803807368676,0.06355191684482989,0.06193602648715435,0.060386012973303725,0.05889788269185966,0.05746796552299621,0.05609288237878565,0.054769516590846355,0.0534949886233504,0.052266633668730654,0.05108198174942441,0.04993874000408414,0.048834776883071404,0.04776810801684624,0.046736883553785934,0.04573937679176912,0.04477397395141398,0.04383916495906376,0.04293353512467415,0.0420557576145141,0.04120458663117877,0.040378851224288165,0.03957744966455378,0.03879934432207521,0.038043556996658526,0.03730916465408888,0.03659529552759134,0.035901125548296865,0.035225875072648655,0.034568805878149214,0.03392921840200156,0.033306449199912144,0.032699868604742915,0.03210887856678657,0.03153291065937529,0.03097142423513365,0.030423904719694445,0.029889862031001475,0.029368829113458787,0.028860360577274157,0.028364031434217597,0.027879435921871844,0.027406186409191492,0.026943912376821734,0.02649225946627127,0.026050888592519545,0.025619475115148477,0.025197708063509943,0.024785289411841577,0.024381933400569947,0.0239873659004009,0.023601323816043223,0.02322355452669722,0.02285381536067572,0.02249187310171882,0.022137503524796615,0.021790490959334823,0.021450627877982284,0.021117714509179215,0.020791558471926548,0.020471974431261145,0.020158783773086355,0.019851814297077743,0.019550899926496897,0.019255880433832757,0.01896660118124855,0.018682912874927175,0.01840467133242132,0.018131737262222752,0.01786397605479561,0.017601257584376726,0.017343456020897433,0.01709044965142486,0.016842120710557476,0.016598355219251747,0.01635904283159182,0.016124076689042366,0.015893353281758796,0.015666772316557984,0.015444236591171572,0.015225651874438669,0.015010926792098119,0.014799972717893106,0.014592703669679769,0.014389036210284966,0.0141888893528509,0.013992184470437777,0.013798845209648613,0.013608797408077541,0.013421969015379214,0.013238290017772754,0.013057692365809212,0.012880109905230102,0.012705478310770252,0.012533735022756426,0.012364819186355945,0.012198671593359592,0.012035234626360133,0.011874452205221406,0.011716269735724557,0.011560634060286819,0.011407493410655731,0.011256797362488103,0.01110849679171964,0.010962543832650684,0.010818891837663196,0.010677495338495338,0.010538310009007778,0.010401292629366128,0.010266401051582674,0.010133594166357831,0.01000283187115722,0.009874075039475952,0.009747285491240293,0.009622425964286174,0.009499460086884898,0.009378352351256362,0.009259068088037115,0.009141573441659617,0.009025835346604392,0.008911821504489338,0.008799500361962332,0.008688841089362527,0.008579813560121422,0.008472388330869034,0.008366536622222817,0.008262230300227406,0.008159441858421062,0.008058144400503424,0.00795831162358272,0.0078599178019746,0.0077629377715396864,0.007667346914529792,0.007573121144929814,0.007480236894274457,0.007388671097918999,0.007298401181752003,0.007209405049328734,0.007121661069413391,0.007035148063912059,0.006949845296181671,0.006865732459706077,0.006782789667118794,0.0067009974395655,0.006620336696390336,0.006540788745138183,0.006462335271856613,0.006384958331690726,0.0063086403397608435,0.006233364062309043,0.006159112608110649,0.006085869420135308,0.006013618267456055,0.005942343237390583,0.005872028727873407,0.005802659440045222,0.005734220371057427,0.005666696807079433,0.005600074316506508,0.005534338743358702,0.0054694762008646826,0.005405473065227381,0.005342315969559006,0.005279991797988079,0.005218487679926402,0.005157790984493792,0.005097889315095633,0.005038770504145902,0.0049804226079343955,0.00492283390163158,0.004865992874425934,0.004809888224792631,0.004754508855886483,0.004699843871055698,0.004645882569475191,0.0045926144418928965,0.004540029166486348,0.004488116604827921,0.004436866797952279,0.004386269962525845,0.004336316487114085,0.004286996928543074,0.004238302008353347,0.00419022260934369,0.004142749772200208,0.004095874692210879,0.00404958871606144,0.00400388333870952,0.003958750200338154,0.003914181083380737,0.0038701679096216465,0.003826702737365653,0.003783777758676245,0.0037413852966813746,0.003699517802941776,0.003658167854884914,0.0036173281532975777,0.003576991519879861,0.003537150894855325,0.0034977993346384855,0.0034589300095560936,0.003420536201622014,0.0033826113023638876,0.003345148810699066,0.003308142330861446,0.003271585570373141,0.0032354723380651554,0.003199796542141282,0.0031645521882865163,0.0031297333778185473,0.0030953343058801332,0.0030613492596721728,0.0030277726167265953,0.002994598843217014,0.0029618224923071645,0.0029294382025360135,0.0028974406962375228,0.002865824777995617,0.002834585333133102,0.00280371732623248,0.0027732157996897665,0.0027430758722986207,0.0027132927378656782,0.0026838616638548652,0.002654777990060877,0.0026260371273109603,0.0025976345561941885,0.0025695658258170872,0.002541826552585817,0.002514412419013862,0.0024873191725542027,0.002460542624456592,0.0024340786486473313,0.0024079231806331345,0.0023820722164270866,0.002356521811496812,0.0023312680797339825,0.0023063071924447425,0.0022816353773609664,0.00225724891767105,0.0022331441510704503,0.002209317468831372,0.0021857653148911033,0.0021624841849580056,0.0021394706256361007,0.0021167212335661753,0.0020942326545844523,0.002072001582897871,0.0020500247602745956,0.002028298975251601,0.002006821062356898,0.0019855879013470986,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.43213206182993624,0.4312739082986877,0.4187497001115105,0.39512846329258955,0.36637250579440317,0.33704786434181633,0.3095834287984531,0.2848895276275328,0.2630819754444441,0.24393976168998147,0.227135316270797,0.2123354536624167,0.19923949452278195,0.187589514022113,0.17716926358086663,0.1677991505347523,0.1593303969156748,0.15163958815437992,0.14462399498748346,0.13819771130248068,0.13228852464837043,0.12683540173611405,0.12178647360196915,0.11709742019754377,0.11273017188641583,0.10865186174092914,0.10483397641647295,0.10125166461888103,0.09788317107230905,0.09470937084608606,0.09171338430293413,0.08888025712297935,0.0861966931124066,0.08365083003669459,0.08123205069282201,0.07893082298120595,0.0767385639534021,0.0746475237715217,0.07265068627652664,0.0707416834689001,0.06891472169075256,0.06716451768838051,0.06548624304945669,0.06387547576445816,0.06232815787002418,0.060840558301965754,0.059409240225483405,0.05803103222510863,0.05670300283221756,0.055422437947045704,0.05418682077795755,0.05299381397596324,0.051841243688574415,0.05072708529607917,0.049649450626166144,0.0486065764705902,0.047596814251311896,0.046618620703564755,0.045670549460560754,0.044751243439246385,0.0438594279391831,0.042993904377455566,0.04215354459199072,0.04133728565370175,0.040544125134964804,0.039773116788048804,0.03902336659240251,0.03829402913442747,0.0375843042873495,0.03689343416241007,0.036220700305702444,0.03556542111774352,0.03492694947525087,0.034304670536797206,0.03369799971583775,0.03310638080631493,0.0325292842475282,0.03196620551623969,0.03141666363522004,0.030880199788422703,0.03035637603394305,0.02984477410675027,0.029344994303897098,0.028856654445632037,0.028379388906388518,0.027912847710194227,0.0274566956855188,0.027010611675024745,0.026574287796054637,0.026147428748087648,0.025729751163677105,0.025320982999696085,0.024920862965982983,0.02452913998869441,0.02414557270593193,0.023769928993364903,0.023401985517778005,0.02304152731662494,0.02268834740182914,0.022342246386186343,0.022003032130885034,0.021670519412738228,0.02134452960984586,0.021024890404501118,0.02071143550222385,0.020404004365916936,0.02010244196418225,0.01980659853292081,0.019516329349401677,0.01923149451802673,0.01895195876709985,0.018677591255928,0.01840826539164625,0.018143858655191466,0.017884252435895642,0.017629331874189157,0.017378985711962912,0.017133106150143292,0.01689158871307673,0.01665433211934649,0.016421238158654986,0.01619221157445161,0.015967159951982453,0.01574599361147317,0.015528625506168021,0.015314971124970189,0.015104948399432067,0.014898477614878787,0.014695481325442352,0.014495884272806642,0.014299613308477344,0.014106597319388767,0.013916767156690855,0.01373005556754911,0.013546397129810891,0.013365728189399094,0.013187986800292685,0.013013112666978528,0.01284104708924788,0.012671732909228649,0.012505114460546151,0.012341137519514999,0.012179749258260045,0.012020898199686068,0.011864534174203955,0.011710608278135278,0.01155907283372106,0.011409881350655777,0.011262988489086754,0.011118350024007207,0.010975922810983535,0.010835664753159878,0.01069753476947862,0.010561492764071676,0.010427499596766216,0.01029551705465973,0.01016550782471784,0.010037435467354177,0.009911264390945267,0.00978695982724902,0.009664487807683649,0.00954381514043369,0.009424909388350566,0.0093077388476107,0.009192272527107038,0.00907848012853947,0.008966332027178456,0.00885579925327425,0.008746853474088264,0.008639466976517518,0.00853361265029516,0.00842926397174017,0.008326394988036723,0.008224980302024143,0.008124995057473985,0.008026414924841227,0.007929216087467788,0.00783337522822283,0.007738869516563294,0.007645676596000624,0.007553774571954699,0.007463141999986302,0.007373757874390158,0.007285601617137069,0.007198653067153565,0.007112892469923601,0.007028300467405493,0.0069448580882494025,0.006862546738306016,0.006781348191417368,0.0067012445804765135,0.006622218388751365,0.006544252441460154,0.006467329897591244,0.00639143424195861,0.006316549277486135,0.006242659117709999,0.0061697481794959165,0.006097801175961012,0.0060268031095945095,0.005956739265571749,0.005887595205252112,0.00581935675985885,0.005752010024331939,0.00568554135134934,0.00561993734551217,0.005555184857685747,0.005491270979495231,0.005428183037968237,0.005365908590320764,0.005304435418881768,0.005243751526152867,0.005183845129996589,0.005124704658952456,0.005066318747674498,0.005008676232487316,0.004951766147057807,0.0048955777181767385,0.004840100361649949,0.0047853236782935534,0.004731237450030957,0.004677831636088306,0.004625096369286451,0.004573021952424222,0.004521598854753339,0.004470817708540122,0.004420669305712076,0.004371144594587733,0.004322234676685146,0.0042739308036095925,0.004226224374016153,0.0041791069306457125,0.004132570157432928,0.0040866058766822165,0.004041206046312443,0.003996362757166395,0.003952068230384057,0.003908314814837653,0.0038650949846274854,0.003822401336635034,0.003780226588134249,0.0037385635744575404,0.0036974052467156696,0.0036567446695705942,0.0036165750190581595,0.003576889580461556,0.0035376817462325063,0.0034989450139595564,0.0034606729843820122,0.0034228593594490208,0.0033854979404208843,0.0033485826260137553,0.0033121074105848932,0.003276066382358045,0.003240453721688338,0.0032052636993642014,0.003170490674947367,0.0031361290951484595,0.0031021734922377906,0.003068618482490942,0.0030354587646667748,0.0030026891185190433,0.0029703044033392674,0.0029382995565306997,0.0029066695922123965,0.0028754095998531973,0.0028445147429335513,0.0028139802576362823,0.0027838014515641856,0.002753973702484376,0.00272449245709904,0.0026953532298407364,0.0026665516016933463,0.002638083219036763,0.002609943792515288,0.0025821290959289816,0.0025546349651479035,0.0025274572970475275,0.0025005920484663887,0.0024740352351842864,0.002447782930920911,0.0024218312663548446,0.0023961764281613053,0.0023708146580696914,0.002345742251939382,0.0023209555588537016,0.002296450980232032,0.0022722249689585564,0.0022482740285286918,0.0022245947122117495,0.002201183622229868,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.43744212175047936,0.4372064158049142,0.4270121491795114,0.4049881846864329,0.3769708405299586,0.3477733554278604,0.320103217396448,0.2950558446585739,0.27284640860249976,0.25330120414775154,0.23611288098130195,0.22095541025053148,0.2075293029815965,0.1955752844254375,0.18487482283720497,0.17524583951367378,0.16653718123709838,0.15862328721026003,0.1513995397478776,0.14477839204521292,0.13868621368140344,0.13306074724656258,0.12784906562655227,0.12300593160486713,0.11849247777017327,0.1142751405178722,0.11032479557495695,0.10661605364932308,0.10312668370805468,0.09983713838412524,0.09673016146601772,0.09379046166784692,0.09100444017675051,0.08835996204360258,0.0858461634898944,0.08345328877559671,0.08117255150979813,0.0789960162629146,0.07691649711428614,0.07492747038694128,0.07302299931555342,0.07119766879132754,0.06944652864855806,0.06776504421802419,0.06614905308434989,0.06459472715805269,0.0630985393152171,0.061657233975195805,0.06026780108383258,0.05892745305025425,0.05763360425261439,0.056383852784214226,0.05517596415865201,0.05400785673232426,0.05287758863603818,0.05178334603598662,0.05072343256831772,0.04969625981213068,0.048700338683238656,0.04773427164607707,0.046796745653974195,0.045886525739197236,0.04500244918366654,0.04414342020957419,0.04330840513631936,0.042496427956368606,0.04170656628816528,0.04093794766887059,0.04018974615391481,0.03946117919394972,0.038751504762999774,0.03806001871436837,0.03738605234339978,0.03672897013830321,0.03608816770221715,0.035463069831395,0.034853128735873956,0.0342578223903954,0.033676653004481666,0.033109145601675,0.032554846698897584,0.0320133230777104,0.03148416064006551,0.030966963341775573,0.030461352197569378,0.029966964352140982,0.0294834522121074,0.02901048263420718,0.02854773616552359,0.028094906331831534,0.027651698970524777,0.027217831604875894,0.026793032856627843,0.026377041894203698,0.02596960791400016,0.02557048965245912,0.025179454926785652,0.024796280202356975,0.024420750184998,0.024052657436475684,0.023691802011654526,0.023337991115893547,0.02299103878137209,0.022650765561108514,0.02231699823956135,0.02198956955874971,0.021668317958925074,0.021353087332895634,0.02104372679315064,0.020740090451021858,0.020442037207142716,0.020149430552534323,0.01986213837968642,0.019580032803050953,0.01930298998838786,0.01903088999046789,0.01876361659864225,0.018501057189836714,0.01824310258855598,0.017989646933496393,0.017740587550415868,0.017495824830906913,0.01725526211675622,0.017018805589587415,0.016786364165508865,0.01655784939449041,0.016333175364233354,0.016112258608289277,0.01589501801821035,0.015681374759527297,0.0154712521913503,0.01526457578942155,0.015061273072437114,0.014861273531477865,0.014664508562398725,0.014470911401022364,0.014280417061011639,0.014092962274283142,0.01390848543384288,0.013726926538927601,0.013548227142345666,0.013372330299906449,0.013199180521851107,0.013028723726184025,0.012860907193820556,0.012695679525469926,0.012532990600167956,0.01237279153539418,0.012215034648696024,0.01205967342075528,0.011906662459832839,0.011755957467533367,0.01160751520582647,0.011461293465278178,0.01131725103443451,0.011175347670310105,0.011035544069936922,0.010897801842922446,0.010762083484983077,0.010628352352406134,0.010496572637404182,0.010366709344326718,0.01023872826668885,0.010112595964991138,0.00998827974529308,0.009865747638512478,0.009744968380420847,0.009625911392309547,0.009508546762295065,0.009392845227245305,0.009278778155297568,0.009166317528947221,0.009055435928686654,0.008946106517168687,0.008838303023881014,0.0087319997303075,0.008627171455559784,0.008523793542463092,0.008421841844074969,0.0083212927106268,0.008222122976868383,0.008124309949802483,0.00802783139679471,0.007932665534046793,0.007838791015416268,0.0077461869215755316,0.007654832749494163,0.007564708402234652,0.00747579417905158,0.007388070765780072,0.007301519225508369,0.007216120989521073,0.007131857848505183,0.007048711944009624,0.006966665760150777,0.0068857021155526,0.006805804155517719,0.006726955344418609,0.006649139458302484,0.0065723405777039995,0.0064965430806557915,0.006421731635894414,0.006347891196252376,0.0062750069922311354,0.006203064525750312,0.006132049564064405,0.006061948133845675,0.005992746515424992,0.005924431237186672,0.0058569890701123065,0.005790407022469884,0.005724672334640887,0.005659772474084882,0.00559569513043458,0.005532428210718124,0.005469959834705906,0.0054082783303751065,0.005347372229492283,0.0052872302633075055,0.005227841358357964,0.005169194632377315,0.005111279390308664,0.005054085120415694,0.0049976014904922145,0.004941818344164899,0.004886725697287322,0.0048323137344232926,0.004778572805414741,0.004725493422034698,0.004673066254720661,0.0046212821293868615,0.0045701320243138254,0.004519607067110984,0.004469698531753059,0.004420397835686082,0.004371696537001931,0.004323586331679156,0.004276059050889191,0.004229106658364001,0.004182721247826253,0.004136895040478256,0.004091620382548775,0.004046889742896743,0.004002695710668466,0.003959030993009443,0.003915888412827326,0.0038732609066056047,0.0038311415222662655,0.0037895234170808893,0.003748399855627209,0.0037077642077921885,0.003667609946818734,0.003627930647395438,0.003588719983788825,0.00354997172801533,0.003511679748054225,0.00347383800609873,0.0034364405568449866,0.0033994815458183534,0.0033629552077346,0.0033268558648971336,0.00329117792562787,0.0032559158827314564,0.003221064311991867,0.0031866178707011484,0.0031525712962180395,0.003118919404557684,0.0030856570890102596,0.0030527793187882096,0.0030202811377019784,0.002988157662862032,0.002956404083408502,0.0029250156592662787,0.002893987719925566,0.00286331566324756,0.0028329949542934534,0.0028030211241779433,0.002773389768945301,0.002744096548468064,0.002715137185367624,0.002686507463956672,0.002658203229201791,0.0026302203857073905,0.0026025548967191646,0.0025752027831471786,0.0025481601226083933,0.002521423048487096,0.0024949877490143654,0.0024688504663649313,0.002443007495771574,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.4428174319471543,0.43690990856121265,0.4180207111390301,0.39148426726084784,0.36254409370721585,0.33446867291082133,0.3087383391957415,0.2857730110905286,0.2654922468036558,0.24762470713028908,0.23185378423874883,0.21787808682740079,0.2054322398659809,0.1942905774172173,0.184264165615437,0.17519574745701916,0.16695451392305197,0.15943140820849974,0.15253515463208323,0.14618899571435273,0.14032804811037383,0.1348971726835944,0.12984926111656137,0.12514385579230278,0.12074603485707153,0.11662550798555732,0.11275587974026872,0.1091140465855899,0.10567970087138398,0.10243492078598698,0.099363829712879,0.09645231188004241,0.09368777388531846,0.09105894378600733,0.08855570109139073,0.08616893229513474,0.08389040760990764,0.08171267538025595,0.07962897129761384,0.07763314006004424,0.07571956753603881,0.07388312182816668,0.07211910190496873,0.07042319269169432,0.0687914256917503,0.06722014435977221,0.06570597356990833,0.06424579262428766,0.06283671133101228,0.06147604875100965,0.0601613142718068,0.058890190715453976,0.057660519229129806,0.056470285742004696,0.05531760880137677,0.05420072862626973,0.05311799723802947,0.05206786954573032,0.05104889527976355,0.050059711680500794,0.04909903686035956,0.048165663767617176,0.04725845468892755,0.04637633623490424,0.04551829475970882,0.04468337217113415,0.043870662092650364,0.043079306343164474,0.04230849170403247,0.04155744694612351,0.04082544009272311,0.04011177589654674,0.03941579351143988,0.03873686434133962,0.038074390050801384,0.03742780072303505,0.03679655315271893,0.03618012926214086,0.03557803463032041,0.0349897971257177,0.03441496563407697,0.03385310887368212,0.03330381429104498,0.032766687030668144,0.032241348973107264,0.03172743783603933,0.03122460633355815,0.03073252138928355,0.03025086339927712,0.029779325541097027,0.029317613125605786,0.028865442988472427,0.028422542918514843,0.027988651120288765,0.02756351570852699,0.027146894232233387,0.02673855322638411,0.026338267789389195,0.025945821184569687,0.025561004464061215,0.025183616113676123,0.024813461717343357,0.024450353639885635,0.02409411072694816,0.023744558020999236,0.023401526492401858,0.023064852784606463,0.022734378972616563,0.02240995233390479,0.022091425131033935,0.02177865440528135,0.02147150178062047,0.021169833277437818,0.020873519135436697,0.020582433645184493,0.02029645498781373,0.020015465082418544,0.019739349440702547,0.019467997028489125,0.019201300133703608,0.018939154240477596,0.018681457909040623,0.01842811266109222,0.018179022870350222,0.017934095658015427,0.017693240792883178,0.01745637059586321,0.017223399848682482,0.016994245706546923,0.016768827614572608,0.01654706722778685,0.01632888833452274,0.016114216783041625,0.015902980411214625,0.015695108979125398,0.015490534104442918,0.015289189200434003,0.015091009416487848,0.014895931581036371,0.014703894146748758,0.014514837137904447,0.0143287020998352,0.014145432050342672,0.013964971433004097,0.013787266072271615,0.01361226313029451,0.013439911065379428,0.01327015959201796,0.01310295964241165,0.012938263329430884,0.012776023910938019,0.012616195755424888,0.01245873430890075,0.012303596062979611,0.012150738524117759,0.012000120183946552,0.01185170049066281,0.011705439821426343,0.011561299455724877,0.011419241549668536,0.011279229111169655,0.011141225975979956,0.01100519678454447,0.010871106959641524,0.010738922684776876,0.010608610883303957,0.010480139198236383,0.010353475972732614,0.010228590231221158,0.010105451661143409,0.009984030595291937,0.009864297994716225,0.009746225432181286,0.009629785076152853,0.009514949675291226,0.009401692543436323,0.009289987545060756,0.009179809081180143,0.009071132075698892,0.008963931962177693,0.008858184671006507,0.008753866616970345,0.00865095468718924,0.008549426229424912,0.008449259040736715,0.008350431356475948,0.008252921839608053,0.00815670957034709,0.008061774036097131,0.007968095121685797,0.007875653099881592,0.007784428622184782,0.007694402709883985,0.007605556745365785,0.00751787246367374,0.007431331944304823,0.007345917603236539,0.007261612185178278,0.007178398756035968,0.007096260695587765,0.0070151816903602756,0.006935145726700133,0.0068561370840355676,0.006778140328318627,0.0067011403056466785,0.006625122136054122,0.006550071207470335,0.006475973169838124,0.006402813929388861,0.0063305796430664805,0.006259256713099557,0.006188831781714094,0.006119291725983542,0.0060506236528129,0.005982814894049862,0.005915853001723048,0.005849725743400591,0.005784421097666606,0.005719927249711699,0.005656232587035086,0.005593325695252485,0.0055311953540101225,0.005469830532999092,0.005409220388068084,0.005349354257432401,0.005290221657973959,0.005231812281633075,0.005174115991886809,0.005117122820312251,0.005060822963233256,0.005005206778445617,0.004950264782021958,0.004895987645191481,0.0048423661912935494,0.004789391392802753,0.0047370543684242825,0.004685346380255589,0.004634258831015296,0.00458378326133551,0.004533911347116361,0.004484634896941925,0.004435945849553673,0.004387836271382802,0.004340298354137638,0.004293324412445656,0.004246906881548214,0.004201038315047563,0.004155711382702683,0.004110918868275329,0.004066653667422985,0.004022908785638246,0.003979677336233911,0.00393695253837089,0.003894727715130211,0.0038529962916261638,0.0038117517931601738,0.0037709878434149576,0.00373069816268615,0.003690876566152867,0.003651516962184384,0.003612613350682798,0.0035741598214605796,0.0035361505526526698,0.003498579809160821,0.003461441941131419,0.003424731382464398,0.003388442649353051,0.0033525703388544467,0.003317109127488218,0.0032820537698650845,0.00324739909734281,0.00321314001670952,0.0031792715088941803,0.003145788627702115,0.0031126864985769587,0.0030799603173869193,0.0030476053492353838,0.0030156169272951235,0.002983990451666068,0.002952721388254751,0.0029218052676767466,0.0028912376841801787,0.0028610142945903355,0.0028311308172752543,0.0028015830311305845,0.002772366774584943,0.0027434779446240632,0.002714912495833786 +0.09154924045302677,0.09138181259525248,0.09088373778479016,0.09006736917229759,0.08895241814532165,0.0875647484936505,0.0859348867150156,0.08409640284939304,0.08208431046621115,0.07993360915907648,0.07767805602764566,0.07534921258059354,0.07297577719911438,0.07058318508478022,0.06819343911858936,0.06582512579129268,0.06349356855580818,0.0612110743345431,0.05898723530669015,0.056829255732802265,0.054756455115131476,0.05280154237008069,0.05095718136442819,0.04919835903557117,0.04749960448864599,0.04586199031139689,0.04428596878696612,0.04277133984526459,0.04131738155201091,0.039922962247390656,0.038586635761152385,0.03730672137319399,0.036081370270677766,0.03490862022670724,0.033786440130743126,0.032712765866837266,0.031685528882656404,0.030702678634491432,0.02976219993993708,0.028862126126469927,0.02800054873335957,0.02717562440785618,0.026385579534191354,0.025628713045126147,0.02490339778959102,0.024208080764973376,0.02354128246772582,0.022901595569820774,0.022287683089912472,0.021698276196001443,0.021132171749672555,0.02058822967999923,0.020065370257082354,0.01956257132033797,0.01907886550447238,0.018613337496255683,0.01816512134711902,0.01773339786016013,0.01731739206492221,0.01691637078912237,0.016529640333232794,0.0161565442511564,0.01579646123821997,0.015448803126114278,0.015113012983188524,0.014788563317623146,0.014474954380316022,0.014171712563857707,0.013878388893654822,0.013594557607074337,0.01331981481636577,0.013053777251129684,0.012796081076106943,0.01254638078016149,0.01230434813244158,0.012069671201826183,0.011842053435942,0.011621212796174235,0.011406880945276332,0.011172694876792226,0.010912858633937105,0.01066112212266747,0.010417164126769204,0.010180678779080951,0.00995137471761785,0.009728974292967783,0.00951321282364929,0.009303837896358694,0.009100608708207369,0.008903295448253329,0.008711678715808581,0.008525548973156065,0.008344706030488785,0.008168958561007727,0.007998123644264409,0.007832026335957669,0.007670499262516247,0.00751338223890123,0.007360521908181815,0.007211771401518917,0.007066990017290258,0.006926042918174863,0.006788800845084566,0.006655139846917454,0.006524941025162648,0.00639809029245667,0.006274478144248049,0.006153999442784358,0.00603655321268033,0.005922042447384137,0.0058103739258931406,0.005701458039116892,0.005595208625324677,0.005491542814144315,0.005390380878623222,0.005291646094883035,0.005195264608934844,0.005101165310248688,0.005009279711690798,0.004919541835475946,0.004831888104793755,0.00474625724079529,0.00466259016464249,0.004580829904343562,0.004500921506108784,0.0044228119499857355,0.004346450069538884,0.004271786475357248,0.004198773482186602,0.004127365039490262,0.0040575166652614845,0.00398918538291347,0.003922329661087346,0.0038569093562261575,0.00379288565777302,0.003730221035856,0.003668879191336074,0.0036088250080959106,0.0035500245074565565,0.0034924448046165647,0.0034360540670097875,0.0033808214744898727,0.003326717181248853,0.003273712279385495,0.0032217787640434693,0.003170889500041142,0.0031210181899234608,0.0030721393433658993,0.00302422824786648,0.0029772609406644294,0.0029312141818283173,0.0028860654284569025,0.002841792809943017,0.002798375104249391,0.002755791715150108,0.0027140226503939865,0.0026730485007458536,0.0026328504198682287,0.002593410105003485,0.002554709778421217,0.0025167321695969084,0.0024794604980878775,0.0024428784570775944,0.002406970197557414,0.002371720313118391,0.002337113825326275,0.0023031361696550976,0.002269773181953697,0.0022370110854241657,0.0022048364780890358,0.002173236320726814,0.0021421979252564567,0.0021117089435506754,0.002081757356661793,0.002052331464441603,0.002023419875539552,0.0019950114977633276,0.001967095528787533,0.001939661447194991,0.0019126990038387994,0.0018861982135108758,0.0018601493469051383,0.0018345429228638515,0.001809369700894733,0.0017846206739495195,0.0017602870614526662,0.0017363603025706345,0.0017128320497123517,0.0016896941622521731,0.0016669387004657255,0.0016445579196717802,0.0016225442645712194,0.0016008903637759109,0.0015795890245205737,0.0015586332275498035,0.0015380161221747904,0.0015177310214926324,0.001497771397762213,0.0014781308779313873,0.001458803239308799,0.0014397824053762659,0.0014210624417356637,0.0014026375521857702,0.0013845020749242165,0.0013666504788703358,0.0013490773601037662,0.001331777438415718,0.0013147455539680643,0.0012979766640567115,0.0012814658399757802,0.0012652082639783434,0.001249199226331236,0.0012334341224600124,0.0012179084501810677,0.0012026178070182027,0.0011875578875999752,0.0011727244811360071,0.001158113468968857,0.0011437208221991384,0.0011295425993813363,0.0011155749442881555,0.0011018140837404928,0.001088256325501651,0.0010748980562330318,0.0010617357395094713,0.0010487659138924276,0.0010359851910585606,0.0010233902539826198,0.0010109778551722953,0.0009987448149535963,0.000986688019805017,0.000974804420739105,0.00096309103172945,0.000951544928182255,0.0009401632454505899,0.0009289431773901383,0.0009178819749552652,0.0009069769448336815,0.0008962254481190856,0.0008856248990201717,0.0008751727636049765,0.0008648665585796381,0.0008547038501000677,0.0008446822526160827,0.0008347994277465848,0.0008250530831849862,0.0008154409716339289,0.000805960889768555,0.0007966106772270545,0.0007873882156282242,0.0007782914276148036,0.0007693182759219562,0.000760466762470285,0.0007517349274822579,0.000743120848621855,0.000734622640156387,0.0007262384521399726,0.000717966469617993,0.0007098049118520533,0.0007017520315645125,0.0006938061142024646,0.0006859654772202692,0.0006782284693802182,0.00067059347007092,0.0006630588886425673,0.0006556231637590594,0.0006482847627661421,0.0006410421810752583,0.0006338939415627366,0.0006268385939836154,0.0006198747144000489,0.0006130009046236493,0.0006062157916714421,0.0005995180272350416,0.0005929062871628072,0.0005863792709543181,0.0005799357012672148,0.0005735743234357905,0.0005672939050011085,0.0005610932352523942,0.000554971124779189,0.0005489264050342605,0.0005429579279067611,0.0005370645653054577,0.0005312452087517188,0.0005254987689820983,0.0005198241755600366,0.0005142203764967331,0.0005086863378807348,0.0005032210435160669,0.0004978234945687766,0.0004924927092214365,0.0004872277223356996,0.00048202758512247716,0.00047689136481960927,0.0004718181443769155,0.00046680702214821953,0.00046185711159044574,0.0004569675409694104,0.0004521374530722009,0.11157165976462197,0.11136951272107888,0.11076815376944683,0.10978249871816871,0.10843634525479384,0.1067609135908591,0.10479304445443433,0.10257324173943086,0.10014373986910642,0.09754674500918296,0.09482295434616132,0.09201040901221866,0.0891436922903177,0.0862534506869971,0.08336619325164035,0.08050431350458026,0.0776862763245412,0.07492691637124263,0.07223780243436977,0.06962763136739304,0.06712451843193736,0.06476377064733112,0.06253533673036102,0.060418420598082355,0.05837381285636034,0.056400406616795275,0.05449905306367535,0.052669791906726875,0.050912008450698154,0.04922456932668289,0.047605938356303015,0.046054274367265516,0.044567512924428426,0.04314343394767612,0.041779717104295705,0.040473986725839836,0.03922384783329626,0.03802691467789193,0.03688083302986849,0.035783297281826665,0.034732063280564385,0.03372495766420773,0.03275988436012914,0.03183482879324688,0.0309478602630682,0.030097132869573318,0.029280885301729672,0.028497439746397703,0.027745200128303685,0.027022649852549065,0.026328349188334047,0.0256609324055205,0.025019104753250525,0.024401639351433243,0.023807374050747298,0.023235208304522092,0.022684100085727826,0.022153062874169883,0.02164116273238382,0.021147515483384744,0.02067128399922967,0.02021167560591997,0.01976793960753767,0.019339364930418254,0.018925277886529358,0.018525040054035137,0.018138046272066933,0.01776372274607139,0.017401525259631387,0.017050937488350727,0.016711469411185485,0.016382655814556724,0.01606405488453415,0.01575524688245042,0.015455832899400838,0.01516543368519489,0.014883688547507923,0.014610254317121447,0.01434480437533531,0.014065291590031176,0.013741983395410542,0.01342865696118704,0.01312491959685279,0.012830397238738585,0.012544733433763406,0.012267588384361622,0.011998638050691391,0.011737573306496848,0.011484099145201534,0.011237933933042102,0.010998808706261647,0.010766466509554462,0.010540661773167722,0.010321159726207093,0.01010773584386969,0.00990017532647265,0.00969827260828959,0.00950183089432681,0.009310661723312894,0.009124584555270964,0.008943426382159362,0.008767021360166834,0.008595210462330498,0.008427841150249533,0.008264767063730081,0.008105847727283197,0.007950948272463591,0.007799939175105727,0.007652696006566045,0.00750909919815212,0.00736903381795659,0.007232389359373062,0.0070990595406156725,0.006968942114600502,0.0068419386885993656,0.006717954553101429,0.006596898519360512,0.006478682765137453,0.006363222688171746,0.00625043676695607,0.006140246428402226,0.006032575922019118,0.0059273522002433925,0.005824504804587954,0.005723965757287347,0.0056256694581479725,0.005529552586319137,0.005435554006722819,0.005343614680895567,0.005253677582005325,0.0051656876138285995,0.005079591533477,0.004995337877679779,0.004912876892437595,0.004832160465876109,0.004753142064131685,0.004675776670120186,0.004600020725039085,0.004525832072467163,0.004453169904932479,0.004381994712823141,0.004312268235528831,0.004243953414700681,0.0041770143495265324,0.004111416253925006,0.004047125415562282,0.0039841091566080785,0.003922335796144542,0.003861774614150733,0.0038023958169878004,0.0037441705043151125,0.003687070637367999,0.003631069008537076,0.0035761392121862723,0.0035222556166535366,0.0034693933373806268,0.0034175282111184985,0.003366636771162345,0.0033166962235677525,0.0032676844243047453,0.0032195798573085507,0.0031723616133851255,0.003126009369936761,0.0030805033714693102,0.0030358244108480586,0.002991953811269272,0.0029488734089172107,0.0029065655362754696,0.0028650130060668046,0.0028241990957931203,0.0027841075328507202,0.0027447224801970195,0.002706028522544178,0.00266801065305959,0.0026306542605507724,0.002593945117115192,0.0025578693662356836,0.002522413511303936,0.0024875644045530285,0.0024533092363845004,0.0024196355250725434,0.002386531106830662,0.002353984126226884,0.002321983026932126,0.0022905165427905987,0.002259573689197997,0.002229143754776098,0.0021992162933320188,0.0021697811160915426,0.0021408282841947662,0.0021123481014455386,0.0020843311073038733,0.002056768070112375,0.002029649980548284,0.002002968045291418,0.0019767136809014825,0.0019508785078957303,0.0019254543450199521,0.0019004332037059306,0.001875807282707451,0.001851568962909787,0.001827710802305095,0.0018042255311283184,0.0017811060471474654,0.0017583454111032074,0.001735936842291425,0.0017138737142848321,0.0016921495507878697,0.0016707580216203798,0.0016496929388258492,0.001628948252898937,0.0016085180491293553,0.0015883965440570591,0.0015685780820352973,0.0015490571318979877,0.001529828283727039,0.0015108862457173216,0.0014922258411350564,0.001473842005366863,0.00145572978305626,0.0014378843253249549,0.0014203008870753572,0.0014029748243725977,0.0013859015919026607,0.0013690767405043314,0.001352495914772814,0.0013361548507318946,0.0013200493735733897,0.0013041753954609828,0.0012885289133966148,0.0012731060071473148,0.0012579028372308248,0.0012429156429574584,0.001228140740527218,0.0012135745211798586,0.0011992134493963558,0.0011850540611503845,0.0011710929622076468,0.0011573268264723176,0.0011437523943785648,0.0011303664713259302,0.001117165926157429,0.0011041476896784083,0.0010913087532157652,0.0010786461672156577,0.0010661570398787668,0.0010538385358319212,0.001041687874835171,0.001029702330522724,0.0010178792291774426,0.0010062159485373133,0.0009947099166332204,0.000983358610657106,0.0009721595558592958,0.0009611103244746329,0.0009502085346761669,0.0009394518495557815,0.0009288379761308719,0.0009183646643765347,0.000908029706282064,0.0008978309349316523,0.0008877662236081403,0.0008778334849193486,0.0008680306699464107,0.0008583557674131402,0.0008488068028763302,0.0008393818379360309,0.0008300789694653269,0.0008208963288592409,0.0008118320813018194,0.0008028844250514002,0.0007940515907432073,0.0007853318407088982,0.0007767234683125931,0.0007682247973030303,0.0007598341811810951,0.000751550002582741,0.0007433706726765539,0.0007352946305756469,0.0007273203427636636,0.000719446302534113,0.0007116710294431856,0.000703993068775279,0.000696410991021126,0.0006889233913680441,0.000681528889202198,0.0006742261276221709,0.0006670137729640296,0.0006598905143372282,0.0006528550631711565,0.000645906152772227,0.0006390425378908428,0.0006322629942984327,0.0006255663183740077,0.0006189513267000417,0.0006124168556675951,0.0006059617610901104,0.0005995849178260633,0.0005932852194099446,0.000587061577691496,0.13601737570210815,0.1357730977428659,0.135046411127369,0.13385535614708108,0.1322287109628954,0.13020422107948687,0.1278264144388252,0.1251442300815016,0.12220867911766485,0.11907071872945385,0.11577946499112349,0.11238081103018356,0.10891646369263681,0.10542337071258069,0.10193348369792758,0.09847378916986184,0.09506653771596946,0.09172960664146614,0.08847694110667167,0.08531903003276113,0.08229490420234842,0.07944209769161241,0.07674787473144519,0.07419648147269728,0.07173796131390396,0.06936198333170933,0.06706996650600117,0.06486232043303994,0.06273863407988184,0.060697839881102805,0.05873835462294327,0.056858199049791745,0.055055098364485036,0.053326565852766586,0.05166997180206926,0.05008259975056651,0.048561691926649976,0.047104485544681995,0.045708241425498945,0.04437026622018508,0.04308792933842119,0.041858675522068976,0.04068003386138697,0.039549623925399596,0.038465159568826075,0.03742445088393984,0.0364254046856403,0.03546602385007609,0.034544405769828715,0.033658740140725285,0.03280730625511848,0.031988469943152915,0.03120068027583527,0.030442466120881473,0.029712432623437642,0.0290092576683999,0.0283316883683307,0.027678537610717327,0.02704868068994315,0.02644105204253648,0.02585464209888532,0.025288494260173256,0.024741702005866555,0.024213406134336177,0.02370279213703205,0.02320908770501682,0.02273156036535885,0.022269515243969654,0.021822292950771958,0.021389267582625014,0.020969844839083245,0.020563460245933873,0.020169577481331063,0.019787686799370013,0.019417303546005536,0.019057966762307213,0.01870923787022161,0.01837069943614505,0.018041954007815948,0.017710651342563933,0.017308328880130397,0.016918306994426414,0.016540105714807542,0.016173267665182296,0.015817356841203913,0.015471957460350528,0.01513667288031217,0.014811124581421812,0.014494951209094643,0.014187807672513226,0.013889364296031825,0.013599306019982207,0.01331733164780331,0.013043153136587464,0.012776494928339974,0.012517093319417938,0.012264695865784048,0.012019060821849859,0.01177995661085289,0.011547161324820443,0.011320462252313276,0.011099655432260403,0.010884545232292108,0.01067494395010359,0.010470671436454646,0.01027155473851452,0.010077427762337433,0.00988813095333841,0.009703510993698776,0.0095234205157179,0.009347717830172303,0.0091762666688114,0.009008935940176356,0.008845599497967501,0.00868613592125253,0.008530428305834562,0.008378364066150503,0.00822983474710976,0.008084735845309794,0.007942966639115359,0.007804430027103992,0.00766903237442024,0.0075366833666040585,0.007407295870489135,0.007280785801782737,0.007157071998974357,0.007036076103229376,0.006917722443950295,0.006801937929707751,0.0066886519442531335,0.006577796247353689,0.006469304880194026,0.0063631140751096394,0.00625916216942885,0.006157389523214599,0.0060577384407032135,0.0059601530952590204,0.005864579457663031,0.00577096522757101,0.005679259767983733,0.005589414042576932,0.0055013805557550385,0.005415113295291901,0.0053305676774332966,0.0052477004943438064,0.0051664698637812236,0.00508683518089668,0.005008757072055782,0.004932197350586433,0.004857118974362056,0.004783486005135529,0.004711263569539183,0.004640417821677739,0.00457091590723766,0.0045027259290444065,0.004435816914002598,0.004370158781353348,0.004305722312193273,0.004242479120195581,0.004180401623480646,0.004119463017585679,0.004059637249482623,0.004000898992601333,0.003943223622811712,0.0038865871953240585,0.0038309664224675482,0.0037763386523099207,0.0037226818480802152,0.003669974568363079,0.0036181959480299846,0.003567325679876805,0.003517343996938861,0.0034682316554530755,0.003419969918443078,0.003372540539899454,0.003325925749531458,0.003280108238066558,0.0032350711430761845,0.003190798035304576,0.0031472729054828103,0.0031044801516067143,0.0030624045666608124,0.003021031326771025,0.0029803459797675337,0.0029403344341438677,0.0029009829483950637,0.0028622781207206806,0.002824206879078388,0.0027867564715751266,0.002749914457181386,0.002713668696758184,0.0026780073443834125,0.002642918838966602,0.002608391896141807,0.0025744155004265956,0.002540978897639178,0.002508071587562663,0.002475683316847665,0.002443804072144969,0.002412424073458496,0.0023815337677121945,0.002351123822521844,0.002321185120164798,0.0022917087517403925,0.00226268601151465,0.002234108391441493,0.0022059675758556883,0.0021782554363304575,0.002150964026694054,0.0021240855782003383,0.0020976124948466897,0.002071537348835673,0.0020458528761743535,0.0020205519724068605,0.0019956276884759722,0.001971073226708268,0.001946881936919976,0.0019230473126384511,0.0018995629874357304,0.0018764227313702673,0.0018536204475336094,0.0018311501686975287,0.0018090060540596148,0.0017871823860829963,0.0017656735674275218,0.0017444741179695712,0.0017235786719068406,0.0017029819749463733,0.0016826788815723825,0.0016626643523915228,0.0016429334515530656,0.001623481344241913,0.0016043032942412551,0.0015853946615637792,0.0015667509001484356,0.001548367555620956,0.0015302402631163683,0.0015123647451608306,0.0014947368096119235,0.0014773523476547677,0.0014602073318526647,0.001443297814250588,0.0014266199245293741,0.0014101698682098894,0.001393943924905027,0.0013779384466182717,0.0013621498560874204,0.0013465746451723104,0.0013312093732845483,0.0013160506658589672,0.001301095212864764,0.0012863397673554702,0.001271781144056773,0.0012574162179904388,0.0012432419231341182,0.0012292552511153705,0.0012154532499391265,0.0012018330227475656,0.0011883917266116986,0.0011751265713531452,0.0011620348183960238,0.0011491137796474948,0.0011363608164063567,0.001123773338299066,0.001111348802241851,0.0010990847114289131,0.001086978614345459,0.0010750281038049837,0.0010632308160103934,0.001051584429637705,0.0010400866649424212,0.0010287352828874349,0.0010175280842920657,0.0010064629090015909,0.0009955376350768955,0.0009847501780032182,0.0009740984899180917,0.0009635805588575292,0.0009531944080200468,0.000942938095048276,0.0009328097113271723,0.0009228073812990151,0.0009129292617942941,0.000903173541378235,0.00089353843971249,0.0008840222069317628,0.0008746231230345719,0.0008653394972883106,0.000856169667647824,0.0008471120001873096,0.0008381648885452912,0.0008293267533819641,0.0008205960418490958,0.0008119712270717784,0.0008034508076418604,0.0007950333071228608,0.0007867172735657524,0.0007785012790357509,0.0007703839191495663,0.0007623638126228872,0.16587652025117722,0.16558103911050606,0.16470204566609936,0.16326140100804437,0.16129397121979042,0.15884547328241222,0.1559698188100851,0.15272623399707944,0.14917642235276174,0.14538198979911274,0.14140228421733805,0.13729272904239426,0.13310366551417302,0.12887966831606965,0.12465926723250273,0.12047499197484322,0.11635365506190087,0.11231679441323332,0.10838120918009589,0.10455955867809717,0.10090850462699444,0.09746284123756262,0.09420705869204991,0.09112700518649323,0.0881736294381968,0.0853154087535409,0.0825545648039036,0.07989206287382865,0.07732783833540124,0.07486099485160728,0.0724899756126711,0.07021270959268952,0.06802673517925914,0.06592930366663878,0.0639174650844464,0.06198813871493252,0.06013817047291148,0.05836437911318662,0.056663593010969224,0.05503267904510416,0.05346856490979847,0.051968255993316136,0.05052884779356481,0.049147534691292176,0.047821615771410295,0.04654849827008744,0.045325699128599406,0.04415084505257678,0.04302167140544817,0.0419360202062557,0.040891837452612406,0.03988716994849292,0.038920161782265324,0.037989050571986316,0.037092163571429373,0.03622791371106524,0.0353947956322029,0.034591381759543724,0.0338163184467645,0.03306832222106248,0.03234617614568495,0.03164872631374955,0.03097487848218324,0.03032359485102447,0.029693890990435127,0.02908483291562701,0.028495534308105096,0.02792515388037138,0.027372892880227494,0.02683799273012194,0.02631973279645644,0.02581742828349585,0.02533042824628547,0.024858113716931994,0.024399895938603804,0.02395521470165553,0.023523536776441804,0.023104354437496293,0.02269718407396262,0.022301564881351463,0.021807584186015277,0.021321975041809625,0.02085093936173815,0.02039391790396417,0.01995037735663733,0.019519808954280585,0.0191017271755214,0.018695668517164477,0.01830119033986372,0.017917869780966527,0.017545302730371443,0.01718310286548358,0.016830900741628692,0.016488342934485766,0.016155091231333168,0.01583082186810195,0.015515224809429427,0.01520800306906532,0.01490887206818496,0.014617559029290026,0.014333802403542695,0.014057351329517895,0.013787965121471159,0.013525412785368925,0.013269472561013325,0.013019931488714954,0.012776584999061643,0.012539236524426626,0.012307697130932556,0.012081785169692464,0.011861325946198945,0.011646151406816895,0.011436099841401114,0.011231015601107728,0.011030748830548064,0.010835155213464606,0.010644095731171891,0.010457436433050462,0.010275048218415114,0.01009680662913874,0.009922591652431449,0.009752287533222312,0.009585782595619874,0.009422969072962467,0.009263742945989003,0.009108003788704314,0.008955654621522698,0.008806601771306,0.008660754737935906,0.008518026067071166,0.008378331228776405,0.008241588501711982,0.008107718862601141,0.007976645880703046,0.007848295617039189,0.007722596528126855,0.007599479373999744,0.007478877130295726,0.007360724904210877,0.007244959854129913,0.007131521112746837,0.0070203497135115575,0.006911388520235382,0.006804582159703797,0.006699876957153453,0.006597220874471415,0.006496563450992499,0.0063978557467677605,0.006301050288188878,0.0062061010158573435,0.0061129632345958,0.006021593565497689,0.0059319498999266486,0.005843991355372213,0.005757678233078234,0.005672971977365071,0.005589835136564915,0.005508231325502989,0.005428125189451751,0.0053494823694939546,0.005272269469232,0.005196454022785488,0.0051220044640173795,0.005048890096939588,0.00497708106724354,0.004906548334908686,0.0048372636478431355,0.004769199516510017,0.00470232918950116,0.004636626630015479,0.004572066493204922,0.0045086241043525285,0.004446275437845405,0.004384997096913261,0.0043247662940982205,0.004265560832427157,0.004207359087257348,0.004150139988769356,0.004093883005078305,0.0040385681259421935,0.003984175847040695,0.003930687154802767,0.0038780835117619146,0.0038263468424162175,0.0037754595195760737,0.00372540435117875,0.0036761645675518827,0.0036277238091096593,0.003580066114462792,0.003533175908929057,0.0034870379934273106,0.003441637533741117,0.0033969600501376684,0.003352991407329632,0.0033097178047649485,0.0032671257672350585,0.0032252021357877243,0.0031839340589339803,0.003143308984138812,0.003103314649583565,0.0030639390761924737,0.0030251705599118957,0.0029869976642340136,0.002949409212955786,0.002912394283165539,0.0028759421984473647,0.002840042522297819,0.002804685051745736,0.002769859811168677,0.0027355570462994625,0.0027017672184148273,0.002668480998701723,0.002635689262793771,0.0026033830854723656,0.0025715537355274144,0.0025401926707706826,0.002509291533198602,0.0024788421442979254,0.002448836500490101,0.002419266768709456,0.0023901252821112414,0.002361404535903982,0.0023330971833036363,0.0023051960316043466,0.002277694038362329,0.002250584307689599,0.0022238600866527655,0.0021975147617750955,0.002171541855637233,0.0021459350235739885,0.002120688050463869,0.0020957948476088405,0.002071249449700423,0.0020470460118707356,0.0020231788068247897,0.0019996422220518164,0.001976430757113481,0.001953539021005595,0.001930961729592358,0.0019086937031098635,0.0018867298637371638,0.001865065233232963,0.0018436949306351736,0.0018226141700225047,0.0018018182583353908,0.0017813025932547335,0.0017610626611366835,0.0017410940350020521,0.0017213923725779014,0.0017019534143908673,0.0016827729819098533,0.0016638469757369217,0.0016451713738451642,0.0016267422298614732,0.0016085556713938526,0.0015906078984012873,0.0015728951816051248,0.0015554138609407844,0.0015381603440488471,0.001521131104803686,0.001504322681879529,0.0014877316773521903,0.001471354755335622,0.0014551886406526202,0.0014392301175379743,0.0014234760283740545,0.0014079232724573019,0.001392568804794915,0.0013774096349311465,0.0013624428258017514,0.0013476654926166296,0.001333074801769273,0.0013186679697725192,0.0013044422622198197,0.0012903949927715753,0.0012765235221652235,0.0012628252572492685,0.0012492976500399803,0.0012359381968003998,0.0012227444371411523,0.0012097139531420367,0.0011968443684944687,0.0011841333476637701,0.001171578595070868,0.0011591778542931498,0.0011469289072834055,0.00113482957360705,0.0011228777096967092,0.0011110712081238477,0.0010994079968869416,0.0010878860387160275,0.0010765033303926275,0.0010652579020853526,0.0010541478167003055,0.0010431711692460322,0.0010323260862128434,0.0010216107249656416,0.0010110232731505478,0.0010005619481145314,0.0009902249963378584,0.2023650346658176,0.20200721398676347,0.20094280084310132,0.19919834469923742,0.19681617826562228,0.19385178824604649,0.19037057608308308,0.18644435004259688,0.1821478746857609,0.1775557453075954,0.17273977158868672,0.1677669656570544,0.16269815032340001,0.15758714266578489,0.15248042949763232,0.14741723297558443,0.14242986240525918,0.13754425699971604,0.13278063909998533,0.128155592391916,0.12374927966098506,0.11958864631030804,0.11565525949794443,0.11193238821030918,0.10838485530226294,0.10495011589636605,0.101627664259181,0.09841927855223377,0.09532544378514865,0.09234559083286546,0.08947830436089182,0.08672150158915408,0.08407258437081404,0.08152856731723447,0.07908618475029042,0.07674197917731444,0.07449237381302704,0.07233373145471186,0.07026240177780856,0.06827475887773832,0.06636723065084237,0.06453632139066583,0.06277862877870236,0.06109085627246061,0.05946982173890699,0.057912463046018006,0.05641584120884171,0.05497714158661428,0.0535936735424957,0.05226286890578213,0.05098227951574965,0.0497495740756178,0.04856253450262635,0.04741905192493404,0.04631712244660946,0.04525484277784088,0.04423040580732014,0.04324209617736414,0.04228828590879299,0.041367430111504795,0.0404780628077904,0.03961879288803232,0.03878830021261306,0.037985331869134914,0.03720869859022119,0.03645727133429587,0.03572997802928958,0.035025800477475735,0.03434377141823083,0.033682971744492626,0.033042527867896306,0.03242160922711023,0.03181942593347702,0.031235226547909185,0.030668295982893466,0.030117953523436932,0.02958355096091197,0.029064470833828678,0.02856012476976217,0.028069951922844026,0.02748596222818692,0.026881191725134264,0.026294390798554522,0.025724875688526213,0.02517199408502297,0.024635123464512066,0.02411366952324369,0.023607064701393232,0.023114766792499148,0.02263625763300308,0.022171041867006122,0.021718645781628774,0.02127861620868575,0.020850519488612114,0.02043394049285249,0.02002848170115248,0.019633762330426702,0.019249417512059497,0.01887509751473604,0.01851046701004184,0.01815520437826951,0.017809001052030184,0.017471560895400993,0.017142599616517006,0.01682184421161385,0.016509032438674354,0.016203912318939837,0.015906241664664925,0.015615787631575489,0.015332326294618403,0.015055642245648693,0.014785528211800165,0.014521784693364332,0.014264219620059039,0.014012648024662603,0.01376689173302806,0.013526779069564608,0.013292144577330134,0.013062828751917248,0.012838677788385962,0.01261954334052076,0.012405282291744299,0.012195756537055383,0.01199083277540201,0.011790382311921373,0.011594280869532665,0.01140240840937961,0.011214648959658489,0.011030890452395773,0.010851024567752325,0.010674946585476252,0.010502555243126259,0.010333752600723422,0.010168443911501651,0.010006537498451209,0.009847944636356031,0.00969257943905869,0.009540358751685766,0.00939120204758977,0.009245031329777192,0.009101771036596696,0.008961347951487614,0.008823691116585857,0.008688731750003436,0.008556403166606575,0.008426640702120802,0.008299381640411729,0.008174565143786653,0.008052132186177015,0.007932025489066696,0.007814189460040748,0.0076985701338281925,0.0075851151157310965,0.007473773527326127,0.007364495954336571,0.007257234396578288,0.007151942219882126,0.007048574109909788,0.006947086027774747,0.006847435167390073,0.006749579914466496,0.006653479807089851,0.0065590954978052745,0.006466388717147978,0.006375322238554334,0.006285859844595189,0.006197966294476309,0.0061116072927484034,0.006026749459180429,0.00594336029974353,0.0058614081786606724,0.005780862291478277,0.005701692639114493,0.005623870002848047,0.0055473659202060375,0.005472152661715048,0.005398203208480142,0.0053254912305596615,0.0052539910661005855,0.005183677701208105,0.005114526750517173,0.005046514438439257,0.004979617581058409,0.004913813568648562,0.0048490803487914284,0.004785396410068729,0.004722740766307678,0.0046610929413591455,0.004600432954385399,0.004540741305641635,0.004481998962729803,0.004424187347307861,0.004367288322237174,0.004311284179152463,0.004256157626436114,0.004201891777585129,0.004148470139953859,0.00409587660385927,0.0040440954320365,0.003993111249429459,0.003942909033307484,0.0038934741036938296,0.0038447921140958756,0.003796849042525835,0.0037496311828024475,0.003703125136121679,0.00365731780288958,0.0036121963748061117,0.0035677483271917684,0.0035239614115491692,0.003480823648349638,0.003438323320039373,0.003396448964255858,0.0033551893672479237,0.003314533557493079,0.003274470799503637,0.003234990587817565,0.0031960826411661625,0.003157736896813243,0.003119943505059845,0.0030826928239097223,0.0030459754138885847,0.0030097820330141543,0.0029741036319104693,0.0029389313490623147,0.0029042565062056733,0.0028700706038481917,0.0028363653169175855,0.0028031324905322904,0.002770364135891064,0.0027380524262774807,0.0027061896931762693,0.002674768422496641,0.0026437812509008483,0.0026132209622335223,0.0025830804840489257,0.0025533528842336035,0.002524031367720102,0.002495109273290662,0.002466580070466855,0.0024384373564829507,0.002410674853340779,0.00238328640494252,0.002356265974300508,0.0023296076408207,0.002303305597657823,0.002277354149140164,0.00225174770826216,0.0022264807942417265,0.0022015480301418905,0.002176944140553733,0.002152663949339091,0.0021287023774318003,0.0021050544406945315,0.0020817152478310964,0.002058679998351576,0.0020359439805890593,0.002013502569766493,0.00199135122611249,0.001969485493023803,0.0019479009952743677,0.0019265934372686075,0.0019055586013381686,0.0018847923460810507,0.0018642906047410836,0.0018440493836278213,0.001824064760574803,0.0018043328834354817,0.0017848499686158974,0.0017656122996424655,0.0017466162257648216,0.0017278581605920315,0.0017093345807615559,0.0016910420246400127,0.001672977091055095,0.001655136438057108,0.0016375167817103207,0.0016201148949125698,0.0016029276062425842,0.0015859517988345818,0.0015691844092786602,0.0015526224265472292,0.00153626289094615,0.0015201028930900955,0.0015041395729017604,0.0014883701186336152,0.0014727917659124858,0.001457401796805759,0.0014421975389088241,0.0014271763644532138,0.0014123356894350863,0.001397672972762928,0.0013831857154248453,0.001368871459674268,0.0013547277882338337,0.0013407523235172076,0.001326942726867734,0.001313296697814355,0.0012998119733437167,0.0012864863271883002,0.18316822310211953,0.18295808270200026,0.18233115252705145,0.1812977533030087,0.1798745910253965,0.17808405662646098,0.1759533247492831,0.17351331860068836,0.1707976120357976,0.16784133679117005,0.16468015353441845,0.16134933217215036,0.1578829718648904,0.15431337642581008,0.15067058774018646,0.14698206945621475,0.14327252582859185,0.13956383615496368,0.1358750833415123,0.13222265522066828,0.12862039873737374,0.12507980948093733,0.12161024182235641,0.11821912778238554,0.11491481728815182,0.11174581074421512,0.10872148265965775,0.10583280164752079,0.10307144081224336,0.10042746925267826,0.09786114721582273,0.09536148246128517,0.09292968361383612,0.09056638773826348,0.08827174444225719,0.08604549149689539,0.08388702224875602,0.08179544525240502,0.07976963665004182,0.07780828587967342,0.07590993531441055,0.07407301443291057,0.0722958691013904,0.07057678651663477,0.06891401632174411,0.06730578836462206,0.065750327526482,0.06424586600518736,0.06279065339732852,0.06138296488455666,0.06002110779382482,0.05870342676854789,0.05742830775799847,0.05619418100560317,0.05499952319294528,0.05384285887527916,0.052722761325601844,0.05163785288803247,0.05058680492689758,0.04956833744538172,0.048581218436821595,0.047624263022185524,0.04669633241921005,0.045796332781592584,0.04492321394055695,0.0440759680759729,0.04325362833966383,0.042455267449762135,0.04167999627169687,0.04092696239861787,0.04019534874165919,0.03948437213850789,0.038793281986959555,0.038121358908758535,0.037467913447796194,0.03683228480569885,0.036213839617037634,0.03561197076563222,0.03502092531658377,0.03427202226356667,0.033544435083714456,0.032837403170203186,0.03215019766668641,0.03148212002773866,0.030832500642652867,0.0302006975207384,0.029586095036103034,0.028988102729892582,0.028406154167846205,0.027839705851036012,0.027288236177666746,0.0267512444537813,0.026228249950813496,0.02571879100790844,0.025222424177016037,0.024738723408803096,0.024267279277501982,0.02380769824285054,0.02335960194738771,0.02292262654739206,0.02249642207584267,0.022080651835852817,0.021674991823062324,0.02127913017559217,0.020892766650177107,0.020515612123189437,0.020147388115311863,0.01978782633868797,0.01943666826541468,0.019093664716329287,0.018758575469063368,0.01843116888440564,0.018111221550062218,0.01779851794093385,0.0174928500951027,0.01719401730473359,0.016901825821151305,0.016616088573394767,0.01633662489956757,0.016063260290367795,0.015795826144184334,0.015534159533196023,0.015278102979930364,0.015027504243775407,0.014782216116948221,0.014542096229473604,0.014307006862725853,0.014076814771123193,0.01385139101158559,0.013630610780373262,0.013414353256966187,0.013202501454639153,0.012994942077418518,0.012791565383117936,0.012592265052169834,0.012396938061972266,0.012205484566504837,0.012017807780960043,0.011833813871160294,0.011653411847542448,0.011476513463492021,0.01130303311783854,0.011132887761314342,0.010965996806799893,0.010802282043186654,0.010641667552687951,0.010484079631452417,0.010329446713325894,0.01017769929662513,0.010028769873788559,0.009882592863780702,0.009739104547122918,0.009598243003444506,0.009459948051438264,0.009324161191118873,0.009190825548286687,0.00905988582109693,0.008931288228652027,0.008804980461525252,0.008680911634136944,0.008559032238903749,0.008439294102089568,0.008321650341281408,0.008206055324430013,0.00809246463038502,0.007980835010865566,0.00787112435380828,0.007763291648032446,0.007657296949174861,0.0075531013468384,0.007450666932907109,0.007349956770982536,0.007250934866892269,0.007153566140233761,0.00705781639690851,0.0069636523026090505,0.006871041357221059,0.0067799518701064454,0.0066903529362294135,0.006602214413097778,0.006515506898484742,0.006430201708902269,0.006346270858798583,0.006263687040448721,0.00618242360451695,0.006102454541261761,0.006023754462360859,0.005946298583334164,0.005870062706538964,0.005795023204720799,0.005721157005096188,0.00564844157394885,0.00557685490172058,0.00550637548857971,0.005436982330446994,0.005368654905466399,0.005301373160901782,0.005235117500445359,0.005169868771924144,0.005105608255387386,0.005042317651565515,0.0049799790706844035,0.004918575021624011,0.004858088401408649,0.00479850248501876,0.004739800915510227,0.0046819676944342544,0.004624987172544747,0.004568844040784508,0.004513523321541244,0.004459010360162172,0.004405290816721365,0.004352350658029216,0.00430017614987663,0.0042487538495067576,0.0041980705983047035,0.004148113514700758,0.004098869987278026,0.004050327668078612,0.00400247446610151,0.003955298540986943,0.003908788296878871,0.0038629323764628374,0.003817719655171231,0.003773139235551576,0.003729180441793004,0.0036858328144042233,0.0036430861050404328,0.0036009302714729114,0.003559355472697318,0.0035183520641761516,0.003477910593212043,0.00343802179444583,0.003398676585478127,0.003359866062608605,0.0033215814966901162,0.003283814329094632,0.00324655616778598,0.003209798783498223,0.003173534106014954,0.0031377542205470077,0.003102451364206031,0.003067617922569643,0.003033246426337439,0.002999329548073562,0.0029658600990339723,0.002932831026075691,0.002900235408646129,0.002868066455848829,0.0028363175035852096,0.0028049820117686643,0.002774053561609529,0.0027435258529691425,0.002713392701779769,0.0026836480375303172,0.002654285900814507,0.002625300440940379,0.002596685913599153,0.002568436678592258,0.0025405471976137333,0.0025130120320879874,0.0024858258410601717,0.002458983379138192,0.0024324794944851668,0.0024063091268599276,0.0023804673057056087,0.0023549491482840555,0.0023297498578549614,0.0023048647218990572,0.002280289110382969,0.0022560184740660575,0.0022320483428470905,0.0022083743241500206,0.0021849921013477225,0.00216189743222314,0.002139086147465661,0.0021165541492033438,0.002094297409568867,0.002072311969298726,0.0020505939363651094,0.0020291394846386752,0.0020079448525825746,0.001987006341976101,0.00196632031666742,0.0019458832013549495,0.0019256914803957674,0.0019057416966415193,0.0018860304503002428,0.0018665543978238037,0.001847310250820167,0.0018282947749901936,0.0018095047890875479,0.0017909371639022145,0.0017725888212661728,0.0017544567330810123,0.0017365379203671395,0.0017188294523333304,0.0017013284454670348,0.001684032062644299,0.0016669375122590037,0.18427529444305865,0.1840651729438164,0.18343831448877623,0.18240508312019382,0.18098225149172578,0.17919229305261192,0.17706247182765283,0.1746237979113805,0.17190992091917087,0.16895603018662206,0.1657978209468884,0.16247057214716445,0.15900836626199674,0.15544346645230833,0.15180585323421883,0.1481229123812736,0.1444192584346589,0.14071667382678965,0.13703414181908768,0.1333879516487402,0.12979185587201225,0.12625726233591608,0.12279344605609564,0.11940776918739952,0.11611173737839574,0.1129557901239057,0.10994287104640882,0.1070640928344942,0.10431125916034541,0.10167680098120699,0.09913717621063484,0.09666118929994696,0.09424973759268612,0.0919037375952077,0.08962360213002243,0.08740931544334275,0.08526050053264421,0.08317647901995837,0.08115632401243558,0.07919890646191766,0.07730293557033104,0.07546699379671615,0.07368956701199782,0.07196907032469234,0.07030387006968393,0.06869230241584993,0.06713268900979254,0.06562335003388191,0.06416261501844213,0.06274883171155836,0.061380373275605644,0.06005564404804506,0.058773084075129975,0.057531172601077575,0.056328430671735825,0.0551634229909944,0.05403475914953055,0.05294109432920518,0.05188112957203582,0.050853611690045784,0.04985733288140618,0.04889113010863395,0.047953884286372254,0.04704451931910417,0.04616200102289948,0.04530533596002653,0.04447357021059486,0.04366578810147106,0.04288111090933229,0.04211869555182539,0.0413777332782886,0.040657448369469586,0.03995709685379132,0.03927596524626215,0.03861336931481635,0.03796865287777349,0.037341186635236584,0.036730367036432884,0.03613561518439702,0.035412192247034596,0.034669535360647236,0.03394763784388311,0.03324577084776989,0.032563235498679205,0.03189936155888194,0.031253506145108315,0.030625052503431855,0.030013408838747115,0.02941800719696759,0.028838302398062038,0.02827377101801577,0.027723910417770985,0.027188237817261943,0.026666289412632275,0.026157619534783086,0.025661799847434184,0.025178418582938955,0.024707079814109585,0.024247402760426685,0.02379902112700155,0.02336158247475823,0.02293474762035571,0.02251819006440701,0.022111595446655318,0.021714661026783585,0.02132709518961567,0.020948616973516875,0.020578955620861556,0.020217850149469634,0.01986504894400159,0.01952030936631277,0.019183397383837265,0.018854087215118564,0.018532160991626776,0.018217408435078766,0.017909626549483495,0.017608619327194052,0.0173141974682819,0.017026178112567354,0.016744384583704176,0.016468646144716093,0.01619879776443325,0.015934679894295534,0.015676138255026235,0.015423023632686036,0.015175191683670661,0.014932502748211089,0.01469482167197213,0.014462017635365981,0.014233963990203703,0.014010538103349447,0.013791621207036104,0.013577098255533451,0.013366857787868232,0.013160791796317482,0.012958795600397343,0.012760767726103277,0.012566609790151438,0.012376226388992877,0.012189524992384935,0.012006415841303533,0.011826811850009682,0.011650628512073945,0.011477783810183455,0.011308198129563575,0.011141794174845386,0.01097849689023566,0.01081823338283507,0.010660932848969105,0.010506526503397728,0.010354947511281357,0.010206130922775584,0.010060013610149816,0.009916534207314457,0.009775633051654785,0.009637252128075154,0.009501335015153415,0.009367826833323519,0.009236674194995069,0.00910782515653039,0.00898122917200289,0.008856837048657364,0.008734600904008483,0.00861447412450481,0.008496411325695662,0.008380368313839155,0.008266302048894239,0.008154170608835592,0.008043933155245125,0.007935549900122942,0.007828982073871438,0.007724191894406663,0.007621142537348104,0.0075197981072498915,0.007420123609828499,0.007322084925149225,0.007225648781733767,0.007130782731554668,0.007037455125878531,0.0069456350919302355,0.006855292510343371,0.006766397993367595,0.0066789228638059845,0.006592839134650529,0.006508119489394863,0.006424737262994961,0.006342666423455112,0.006261881554015398,0.006182357835920073,0.00610407103174169,0.006026997469245289,0.0059511140257696455,0.005876398113107619,0.0058028276628689195,0.00573038111230452,0.005659037390580282,0.005588775905480979,0.005519576530529873,0.0054514195925105995,0.005384285859373984,0.0053181565285201375,0.0052530132154398656,0.0051888379427039695,0.005125613129288118,0.005063321580222507,0.005001946476552711,0.004941471365604473,0.004881880151539412,0.004823157086192655,0.004765286760183733,0.0047082540942888565,0.004652044331069319,0.004596643026744846,0.00454203604330455,0.004488209540848491,0.0044351499701497,0.004382844065432751,0.004331278837359209,0.004280441566214266,0.004230319795287796,0.004180901324444075,0.004132174203872329,0.004084126728014892,0.00403674742966518,0.0039900250742308414,0.003943948654157455,0.0038985073835057925,0.003853690692680194,0.0038094882233017,0.003765889823221835,0.0037228855416726924,0.0036804656245496034,0.0036386205098206223,0.003597340823061244,0.0035566173731087186,0.0035164411478329875,0.0034768033100210337,0.003437695193369868,0.0033991082985866824,0.003361034289591665,0.0033234649898205982,0.0032863923786251147,0.003249808587765823,0.0032137058979978543,0.0031780767357444083,0.003142913669856372,0.003108209408455309,0.0030739567958578645,0.0030401488095779176,0.003006778557405915,0.002973839274562036,0.002941324320921185,0.002909227178308463,0.002877541447861635,0.0028462608474604206,0.002815379209219585,0.0027848904770442075,0.002754788704245578,0.002725068051216229,0.002695722783161305,0.0026667472678863972,0.002638135973638936,0.002609883467002151,0.0025819844108404557,0.002554433562293737,0.0025272257708207216,0.002500355976288927,0.0024738192071103223,0.0024476105784217665,0.002421725290308007,0.002396158626067435,0.002370905950518486,0.0023459627083458907,0.0023213244224856663,0.002296986692548202,0.0022729451932773717,0.0022491956730461247,0.002225733952386553,0.0022025559225538516,0.002179657544123645,0.0021570348456207886,0.0021346839221801765,0.002112600934237671,0.002090782106250885,0.0020692237254487573,0.002047922140609716,0.002026873760866667,0.0020060750545393643,0.0019855225479925892,0.0019652128245197776,0.0019451425232516323,0.001925308338088469,0.00190570701665654,0.0018863353592871188,0.0018671902180179784,0.001848268495616904,0.001829567144626029,0.001811083166427412,0.0017928136103286256,0.0017747555726681204,0.18551901216067068,0.1853085223465329,0.18468058547496122,0.1836456426880608,0.18222058719049547,0.18042804561488535,0.17829545465305915,0.17585400263108253,0.17313750976977782,0.17018131715140558,0.16702124444745986,0.16369266244662925,0.1602297107052599,0.15666467531070266,0.15302752835617325,0.14934562019463898,0.14564350819641517,0.14194290144189803,0.13826269909123984,0.13461910049581877,0.13102576683223682,0.12749401659009232,0.12403304017381818,0.12065012184678851,0.11736255835875557,0.11421957605007485,0.1112179723261163,0.10834900370079599,0.10560460419193368,0.10297732303564391,0.10045741362905179,0.09800709947950793,0.09561774725620316,0.09329057353675102,0.09102627404191628,0.08882509809250302,0.08668691576902804,0.08461127798597877,0.0825974698271874,0.0806445575764569,0.07875142992747702,0.07691683387920364,0.07513940582390065,0.07341769832128489,0.07175020302857005,0.07013537022581794,0.06857162534233666,0.0670573828545546,0.06559105789041789,0.06417107584123496,0.0627958802492219,0.06146393920874148,0.060173750491195076,0.05892384557809677,0.05771279276372833,0.056539199468268055,0.055401713883733654,0.05429902605884683,0.05322986851450068,0.05219301646880777,0.051187287739693485,0.05021154238323006,0.04926468211750185,0.04834564957448121,0.04745342741596733,0.04658703734424717,0.04574553903329914,0.04492802900231272,0.04413363944978874,0.043361537063452624,0.04261092181860054,0.041881025775366,0.04117111188341011,0.040480472800995655,0.03980842973402436,0.0391543312994251,0.03851755241636281,0.03789749322784891,0.03729357805467767,0.036609092831513125,0.035850720578036954,0.03511332001391939,0.034396162313949034,0.033698548274248244,0.033019807011880134,0.03235929471872258,0.03171639346827801,0.031090510074014997,0.030481074997657814,0.029887541305805877,0.029309383673204716,0.028746097430939466,0.02819719765785905,0.027662218313492786,0.027140711410768795,0.02663224622685691,0.02613640855050721,0.025652799964260453,0.025181037160005696,0.024720751286354717,0.02427158732638432,0.023833203504346256,0.023405270719974253,0.022987472009112702,0.022579502029400386,0.022181066569825388,0.021791882083001486,0.021411675239083133,0.021040182500257923,0.02067714971484229,0.020322331730016355,0.01997549202229643,0.019636402344889753,0.019304842391097334,0.018980599473001864,0.01866346821468543,0.018353250259276373,0.01804975398915647,0.01775279425868119,0.017462192138821175,0.01717777467313853,0.016899374644555556,0.016626830352395306,0.01635998539920521,0.016098688486883835,0.015842793221682167,0.015592157927644157,0.015346645468091221,0.015106123074770996,0.014870462184300772,0.014639538281574058,0.014413230749794064,0.014191422726829443,0.013974000967595025,0.013760855712182846,0.013551880559467936,0.013346972345948921,0.013146031029574269,0.012948959578329288,0.012755663863369756,0.012566052556487881,0.012380037031726005,0.0121975312709426,0.012018451773157478,0.011842717467508427,0.011670249629653037,0.011500971801472047,0.011334809713921387,0.0111716912128987,0.011011546187990478,0.010854306503977956,0.010699905934975409,0.010548280101096104,0.01039936640753091,0.010253103985938549,0.010109433638050976,0.009968297781394185,0.009829640397043258,0.009693406979319762,0.00955954448735272,0.009428001298427365,0.009298727163041616,0.009171673161607607,0.00904679166272502,0.00892403628296383,0.008803361848094894,0.008684724355710993,0.00856808093917764,0.008453389832866792,0.008340610338616964,0.00822970279337281,0.008120628537958691,0.008013349886936945,0.007907830099514417,0.0078040333514515095,0.007701924707936404,0.00760147009738681,0.007502636286144701,0.007405390854025676,0.007309702170695692,0.007215539372839744,0.007122872342093312,0.0070316716837095705,0.006941908705930407,0.0068535554000402595,0.006766584421073297,0.00668096906915127,0.006596683271428326,0.00651370156462152,0.006431999078102475,0.006351551517533963,0.0062723351490284115,0.006194326783810299,0.006117503763365784,0.006041843945058288,0.0059673256881982075,0.005893927840546981,0.005821629725241417,0.005750411128124342,0.005680252285464325,0.005611133872054823,0.005543036989676538,0.0054759431559116035,0.005409834293297021,0.005344692718806756,0.005280501133648495,0.005217242613368001,0.005154900598247796,0.005093458883991244,0.005032901612683087,0.004973213264014703,0.004914378646768673,0.00485638289055131,0.004799211437765908,0.004742850035819465,0.004687284729552935,0.004632501853890596,0.004578488026699326,0.004525230141851608,0.004472715362485615,0.0044209311144566155,0.004369865079971637,0.004319505191404235,0.004269839625281509,0.004220856796438643,0.004172545352336302,0.004124894167533736,0.0040778923383153805,0.00403152917746415,0.003985794209177691,0.003940677164122771,0.0038961679746244704,0.0038522567699839205,0.00380893387192339,0.0037661897901527107,0.003724015218054141,0.0036824010284826018,0.0036413382696759886,0.0036008181612746703,0.0035608320904450715,0.0035213716081048466,0.003482428425247158,0.0034439944093594696,0.003406061580936218,0.003368622110081047,0.003331668313196501,0.003295192649758486,0.003259187719173655,0.003223646257715714,0.003188561135540438,0.0031539253537756166,0.0031197320416842546,0.003085974453899405,0.0030526459677271724,0.0030197400805179074,0.0029872504071020664,0.0029551706772896853,0.002923494733431344,0.002892216528039506,0.002861330121467203,0.002830829679644166,0.002800709471867635,0.0027709638686466112,0.0027415873395986233,0.002712574451396226,0.0026839198657635783,0.0026556183375205135,0.002627664712673129,0.0026000539265501475,0.0025727810019825657,0.0025458410475269564,0.002519229255730226,0.002492940901434985,0.002466971340124466,0.002441316006306295,0.0024159704119330206,0.002390930144859855,0.0023661908673376125,0.002341748314540249,0.0023175982931264126,0.0022937366798331887,0.0022701594201024492,0.002246862526738043,0.0022238420785933815,0.0022010942192884873,0.0021786151559562345,0.0021564011580159454,0.002134448555975021,0.002112753740256919,0.0020913131600550647,0.0020701233222124474,0.002049180790125277,0.0020284821826713237,0.002008024173161435,0.001987803488313889,0.0019678169072514682,0.0019480612605195682,0.0019285334291262598,0.0019092303436026496,0.0018901489830835826,0.18691578743240875,0.18670448636222312,0.18607415561119905,0.18503535261639506,0.18360515360703775,0.1818064202141157,0.17966685806203994,0.17721793907327013,0.17449376321437887,0.1715299313513331,0.16836249040230528,0.1650269973839372,0.161557732694728,0.15798707722258415,0.15434505419276454,0.15065902600995323,0.14695352899791062,0.1432502247296565,0.1395679450870112,0.1359228086672049,0.13232838802240263,0.12879590990130702,0.125334473697268,0.12195127635293734,0.11867239498545536,0.11554087194198363,0.11254920015779034,0.10968876869710377,0.10695163179612609,0.10433044786169747,0.1018184248706323,0.09939534543898915,0.09703034765183502,0.09472399866956488,0.09247729798619118,0.09029078000709445,0.08816458088694183,0.08609849870716087,0.08409204723352207,0.08214450360060353,0.08025495033625274,0.07842231217553128,0.07664538812684794,0.07492287924932352,0.07325341258513267,0.0716355616670464,0.07006786399314888,0.06854883582973684,0.06707698467144217,0.0656508196560957,0.06426886020118332,0.06292964309994586,0.06163172828824827,0.06037370346864495,0.0591541877554614,0.05797183448452458,0.056825333312787975,0.055713411716930894,0.05463483598557956,0.053588411786991516,0.052572984382957065,0.051587438549724605,0.05063069825822446,0.04970172615837641,0.048799522905673014,0.04792312636269017,0.04707161070315088,0.04624408544200563,0.045439694411301225,0.04465761469847996,0.043897055560987754,0.04315725732883073,0.042437490304635374,0.041737053669110596,0.041055274398361014,0.04039150619819891,0.03974512845964646,0.039115545238825516,0.03850218426374402,0.03786593525054735,0.03709118531089604,0.03633762677919628,0.03560453095898588,0.0348911983951203,0.03419695761538157,0.03352116392230271,0.03286319823426686,0.032222465974829355,0.03159839600899641,0.030990439625122414,0.03039806956101342,0.029820779072731844,0.02925808104462887,0.028709507139049597,0.02817460698419467,0.027652947398617015,0.02714411165086242,0.026647698752759484,0.02616332278494563,0.02569061225320846,0.025229209474279698,0.02477876998977359,0.02433896200697155,0.02390946586525034,0.02348997352694988,0.02308018809155151,0.022679823332075043,0.022288603252652025,0.021906261666262142,0.021532541791695795,0.02116719586881222,0.02080998479122786,0.020460677755604978,0.020119051926733886,0.019784892117671753,0.019457990484202263,0.01913814623293557,0.018825165342400488,0.018518860296493862,0.01821904982971406,0.01792555868360356,0.017638217373872087,0.01735686196768901,0.017081333870669072,0.016811479623078614,0.016547150704842892,0.016288203348928172,0.016034498362707768,0.015785900956941858,0.015542280582003808,0.015303510771029899,0.015069468989659376,0.014840036492064432,0.014615098182977796,0.01439454248544594,0.014178261214035795,0.013966149453258572,0.013758105440963649,0.013554030456479814,0.013353828713292912,0.013157407256046656,0.012964675861683983,0.012775546944536005,0.012589935465185222,0.01240775884293873,0.012228936871744074,0.012053391639407014,0.011881047449958462,0.01171183074903705,0.011545670052154898,0.01138249587572487,0.011222240670723884,0.011064838758887679,0.010910226271322966,0.010758341089436126,0.010609122788082364,0.010462512580835841,0.010318453267299774,0.010176889182365458,0.010037766147341028,0.009901031422872669,0.009766633663585359,0.009634522874368317,0.009504650368244319,0.00937696872575328,0.009251431755790818,0.009127994457844273,0.009006612985565427,0.00888724461163303,0.008769847693848597,0.00865438164241869,0.008540806888377894,0.00842908485310338,0.00831917791888438,0.00821104940050088,0.00810466351777417,0.007999985369051355,0.007896980905589263,0.007795616906799313,0.007695860956326353,0.0075976814189249705,0.007501047418105336,0.00740592881452039,0.007312296185062783,0.007220120802650413,0.007129374616671144,0.007040030234063382,0.006952060901010511,0.0068654404852229655,0.006780143458791304,0.006696144881586073,0.006613420385185754,0.006531946157313731,0.0064516989267669154,0.006372655948815562,0.006294794991061469,0.006218094319735496,0.006142532686419462,0.006068089315179073,0.005994743890089983,0.005922476543147592,0.005851267842544169,0.00578109878130178,0.005711950766248439,0.005643805607326783,0.005576645507221035,0.005510453051295495,0.005445211197830702,0.005380903268548681,0.005317512939418007,0.005255024231727005,0.005193421503419461,0.00513268944068157,0.0050728130497727794,0.0050137776490930775,0.004955568861476854,0.0048981726067088465,0.00484157509425281,0.004785762816186694,0.004730722540337691,0.0046764413036112585,0.004622906405505984,0.004570105401811112,0.0045180260984788575,0.004466656545666604,0.004415985031944393,0.004366000078660426,0.004316690434462309,0.004268045069967295,0.004220053172577516,0.004172704141435604,0.0041259875825171224,0.0040798933038535615,0.004034411310884665,0.003989531801934036,0.003945245163805066,0.0039015419674940945,0.003858412964015399,0.003815849080337194,0.003773841415423409,0.00373238123637868,0.0036914599746942314,0.003651069222589715,0.003611200729450645,0.003571846398356802,0.0035329982826996825,0.003494648582886148,0.003456789643126461,0.0034194139483025906,0.003382514120916628,0.0033460829181155027,0.0033101132287901504,0.0032745980707477892,0.0032395305879534073,0.0032049040478407606,0.0031707118386892666,0.0031369474670656303,0.003103604555328109,0.003070676839192269,0.0030381581653551913,0.003006042489178226,0.0029743238724253746,0.0029429964810562532,0.002912054583072501,0.002881492546414877,0.002851304836911502,0.0028214860162743874,0.0027920307401435103,0.0027629337561775303,0.0027341899021885918,0.0027057941043217926,0.0026777413752767697,0.0026500268125708554,0.002622645596842525,0.002595592990194512,0.0025688643345743866,0.0025424550501931993,0.002516360633979963,0.002490576658071518,0.0024650987683371116,0.0024399226829358313,0.0024150441909073215,0.0023904591507940575,0.0023661634892945017,0.0023421531999468707,0.0023184243418416274,0.002294973038363296,0.0022717954759599365,0.0022488879029398884,0.002226246628295028,0.0022038680205502302,0.0021817485066374146,0.002159884570794857,0.00213827275349015,0.002116909650366643,0.0020957919112128878,0.0020749162389538368,0.002054279388664321,0.0020338781666034175,0.0020137094292695004,0.18848473052732004,0.18827210763406024,0.1876378669785862,0.18659272825923623,0.18515402392462896,0.1833449463214371,0.18119358241516234,0.17873181046805825,0.17599413697756627,0.17301654769022698,0.16983543537448426,0.1664866517100856,0.16300471371455305,0.15942217882464277,0.15576918871745182,0.15207317111564062,0.14835868145089653,0.14464736214371884,0.14095799586539298,0.13730662981714087,0.13370675011677863,0.13016948823170857,0.12670384456564163,0.12331691745109859,0.12004733369380545,0.11692542467076952,0.11394198544418102,0.11108852446057983,0.10835720432977354,0.10574078196071769,0.10323255496637139,0.10082566168285328,0.09848774730600444,0.09620465466034368,0.09397770985280192,0.0918077545271097,0.08969521215060679,0.08764014813624212,0.08564232392158613,0.08370124525275811,0.08181620500556734,0.079986320928219,0.0782105687166521,0.07648781084134587,0.07481682153855544,0.07319630836323905,0.07162493067889746,0.07010131543367198,0.06862407054399391,0.06719179617862935,0.06580309420767914,0.06445657605404495,0.06315086915925874,0.06188462225180582,0.060656509584114615,0.059465234284600293,0.05830953095302893,0.057188167611390145,0.05609994710806493,0.055043708060224,0.05401832540817317,0.05302271064530676,0.052055811778622084,0.05111661306709143,0.05020413457843387,0.04931743159909059,0.04845559392703212,0.04761774507269288,0.04680304138947861,0.046010671152016264,0.04523985359742633,0.044489837942513,0.04375990238758529,0.043049353115849245,0.042357523295755255,0.041683772092317155,0.041027483692350875,0.0403880663475407,0.03976495143846459,0.03915759256198799,0.03839588377975748,0.0376254548247694,0.036875716373852875,0.03614596884344285,0.03543554026584276,0.03474378512224743,0.034070083221049284,0.033413838620755934,0.032774478596601826,0.03215145264982942,0.03154423155850882,0.030952306468647602,0.0303751880243444,0.02981240553564126,0.029263506182746816,0.028728054255274606,0.02820563042516243,0.027695831051913148,0.02719826751887287,0.026712565599232494,0.026238364850500216,0.02577531803622287,0.025323090573744596,0.024881360006876987,0.0244498155023425,0.024028157368928615,0.02361609659831201,0.023213354426567984,0.022819661915392593,0.022434759552146067,0.02205839686782487,0.021690332072129507,0.02133033170483372,0.020978170302672444,0.020633630081041052,0.02029650062979163,0.019966578622468697,0.01964366753835463,0.01932757739670747,0.019018124502635715,0.01871513120404782,0.01841842565916187,0.018127841614076504,0.017843218189938437,0.01756439967924186,0.017291235350853116,0.01702357926333744,0.016761290086209878,0.016504230928742824,0.01625226917597156,0.016005276331579117,0.015763127867333276,0.01552570307877915,0.015292884946900072,0.015064560005478109,0.014840618213885708,0.014620952835075307,0.014405460318522294,0.01419404018790213,0.013986594933291886,0.013783029907685873,0.0135832532276445,0.01338717567788449,0.013194710619639905,0.013005773902630002,0.012820283780468258,0.012638160829373057,0.012459327870028025,0.012283709892459938,0.012111233983801529,0.011941829258819599,0.01177542679308206,0.011611959558661702,0.011451362362261125,0.011293571785659973,0.011138526128388383,0.010986165352526578,0.010836431029551343,0.01068926628913745,0.010544615769835852,0.010402425571550434,0.010262643209742248,0.010125217571284418,0.00999009887190887,0.009857238615174268,0.009726589552896034,0.009598105646981325,0.009471742032607788,0.009347454982699519,0.009225201873643663,0.009104941152200233,0.00898663230356045,0.008870235820503294,0.008755713173614147,0.008643026782519719,0.008532139988101777,0.008423017025651347,0.008315622998929498,0.008209923855095521,0.008105886360475307,0.008003478077134366,0.007902667340226127,0.007803423236088021,0.0077057155810535925,0.007609514900959078,0.007514792411315195,0.00742151999812053,0.007329670199294665,0.0072392161867044225,0.007150131748766601,0.007062391273603005,0.0069759697327288015,0.006890842665255033,0.006806986162588041,0.006724376853604759,0.0066429918902916425,0.0065628089338272706,0.0064838061410943905,0.006405962151607392,0.006329256074837208,0.006253667477924722,0.00617917637376547,0.006105763209454476,0.006033408855078313,0.005962094592843777,0.005891802106528867,0.005822513471248746,0.005754211143523599,0.005686877951638873,0.00562049708628912,0.005555052091493346,0.005490526855776335,0.00542690560360465,0.005364172887069526,0.0053023135778097735,0.0052413128591639714,0.005181156218548182,0.005121829440048955,0.005063318597226175,0.005005610046118236,0.00494869041844426,0.004892546614994646,0.004837165799207107,0.004782535390919969,0.004728643060297872,0.0046754767219254504,0.004623024529061043,0.004571274868048885,0.0045202163528823835,0.0044698378199147385,0.004420128322712067,0.004371077127045548,0.004322673706016228,0.004274907735311141,0.004227769088584836,0.004181247832963048,0.004135334224665647,0.004090018704743133,0.00404529189492612,0.004001144593582276,0.003957567771778305,0.00391455256944443,0.0038720902916365902,0.0038301724048957807,0.0037887905337000327,0.0037479364570069318,0.0037076021048838893,0.003667779555224273,0.00362846103054526,0.003589638894867226,0.003551305650670793,0.0035134539359297774,0.0034760765212184133,0.0034391663068892497,0.0034027163203217436,0.0033667197132379507,0.003331169759084233,0.0032960598504767763,0.0032613834967097533,0.003227134321323005,0.0031933060597294804,0.003159892556899355,0.0031268877650997133,0.0030942857416888297,0.0030620806469621046,0.0030302667420500674,0.0029988383868657675,0.0029677900381005627,0.0029371162472674964,0.0029068116587897073,0.0028768710081343305,0.0028472891199894505,0.0028180609064834355,0.002789181365445395,0.002760645578706144,0.002732448710437413,0.002704586005529878,0.0026770527880078418,0.002649844459480019,0.002622956497625774,0.0025963844547148606,0.0025701239561613308,0.0025441706991094553,0.0025185204510513232,0.0024931690484757754,0.002468112395546486,0.002443346462810278,0.0024188672859334717,0.0023946709644662523,0.0023707536606340867,0.002347111598155944,0.0023237410610876474,0.002300638392691056,0.0022777999943274737,0.0022552223243749937,0.002232901897169463,0.0022108352819676315,0.002189019101933139,0.0021674500331438427,0.002146124803620339,0.1902478156442236,0.19003327874137957,0.18939337019629393,0.1883390264021542,0.1868879226084297,0.1850636949116834,0.18289494407111123,0.18041409892384244,0.17765622099727227,0.17465782688557777,0.17145579299905508,0.16808639103927295,0.1645844847487264,0.16098290148841132,0.1573119777024337,0.15359926626003878,0.1498693862642558,0.1461439919126512,0.1424418358015785,0.13877890296750509,0.13516859424532043,0.13162194057617482,0.1281478332315972,0.1247549201253112,0.12149391969169343,0.11837928848998794,0.1154019275346372,0.1125534484888408,0.10982610777981304,0.10721274769409989,0.10470674363160055,0.1023019568018311,0.09998815637290054,0.09773131226195808,0.09552679675334202,0.09337578273260815,0.09127900430228982,0.08923681660485848,0.08724925005305059,0.08531605910341883,0.08343676581280435,0.08161069848672367,0.0798370257703721,0.0781147865535058,0.07644291606540196,0.07482026852919454,0.07324563673020952,0.07171776883281594,0.07023538275694755,0.06879717840067529,0.06740184796970744,0.06604808464983615,0.06473458983432293,0.06346007909563908,0.06222328706981551,0.06102297140247466,0.059857915887792795,0.058726932915797274,0.05762886532905026,0.056562587776897814,0.05552700764418708,0.0545210656211445,0.0535437359722773,0.052594026554307546,0.051670978626234196,0.05077366648867974,0.049901196984345995,0.04905270888686844,0.04822737220136362,0.047424387396524735,0.04664298458507025,0.04588242266684718,0.04514198844656626,0.04442099573625964,0.043718784450891994,0.043034719704080654,0.04236819090973015,0.04171861089425815,0.04108541502324219,0.04046806034552916,0.03976992884588149,0.03898186551997965,0.03821472838691583,0.03746781793482805,0.0367404618632442,0.036032013961351264,0.035341853027139235,0.034669381827183356,0.03401402609652395,0.03337523357797141,0.032752473100014265,0.032145233692366444,0.031553023738156535,0.030975370161650723,0.030411817650380615,0.02986192791051344,0.0293252789542958,0.028801464418364637,0.028290092911780085,0.02779078739258981,0.027303184571783663,0.02682693434352402,0.026361699240524207,0.025907153913539444,0.02546298463390576,0.025028888818129036,0.024604574573552796,0.0241897602641689,0.023784174095653483,0.023387553718782903,0.022999645850376393,0.022620205910974,0.022248997678486086,0.021885792957066802,0.021530371260529285,0.02118251950961628,0.020842031742490733,0.020508708837838553,0.020182358249985512,0.01986279375548949,0.01954983521066297,0.019243308319525212,0.018943044411698525,0.018648880229794332,0.018360657725839155,0.018078223866338044,0.017801430445567503,0.01753013390672243,0.017264195170561266,0.017003479471194554,0.016747856198706237,0.016497198748285195,0.016251384375574905,0.016010294057960166,0.01577381236152484,0.015541827313416383,0.015314230279387603,0.015090915846273886,0.014871781709189586,0.014656728563236302,0.014445659999514653,0.014238482405261554,0.014035104867922423,0.013835439082989315,0.013639399265442958,0.013446902064633889,0.013257866482464893,0.013072213794723637,0.012889867475433739,0.0127107531240942,0.012534798395685954,0.012361932933322096,0.012192088303438549,0.012025197933411528,0.011861197051501883,0.011700022629031968,0.01154161332469486,0.011385909430916438,0.011232852822179604,0.01108238690523153,0.010934456571098967,0.010789008148832454,0.01064598936091652,0.01050534928027306,0.01036703828879593,0.010231008037354865,0.010097211407211917,0.009965602472789355,0.009836136465742136,0.009708769740278837,0.00958345973968344,0.009460164963992877,0.009338844938780322,0.009219460185008101,0.009101972189904032,0.008986343378823852,0.008872537088061287,0.008760517538571792,0.008650249810570434,0.008541699818977186,0.008434834289673267,0.008329620736539589,0.00822602743924958,0.008124023421784258,0.008023578431648387,0.007924662919757705,0.007827248020974446,0.007731305535266753,0.007636807909471155,0.0075437282196320786,0.007452040153902974,0.0073617179959850985,0.007272736609085832,0.007185071420379476,0.007098698405948778,0.007013594076195505,0.006929735461699651,0.006847100099512638,0.0067656660198711464,0.006685411733312832,0.006606316218185032,0.00652835890852943,0.006451519682331158,0.006375778850119278,0.006301117143908366,0.006227515706465977,0.0061549560808997076,0.006083420200549552,0.006012890379176698,0.005943349301439678,0.005874780013645501,0.005807165914770523,0.005740490747739281,0.005674738590953848,0.0056098938500662955,0.005545941249983874,0.005482865827102668,0.005420652921759992,0.005359288170899277,0.005298757500940466,0.005239047120850371,0.00518014351540398,0.005122033438634243,0.005064703907461623,0.005008142195498883,0.004952335827026181,0.004897272571128932,0.004842940435996476,0.004789327663374295,0.004736422723165816,0.004684214308179148,0.004632691329015015,0.004581842909089406,0.004531658379789956,0.0044821272757595045,0.004433239330304085,0.004384984470922042,0.004337352814948692,0.004290334665315832,0.0042439205064206,0.004198101000101185,0.0041528669817168466,0.004108209456327249,0.004064119594970787,0.00402058873103713,0.003977608356731901,0.003935170119630768,0.003893265819320869,0.0038518874041254376,0.0038110269679115715,0.003770676746976988,0.0037308291170141095,0.0036914765901498434,0.0036526118120573364,0.003614227559139746,0.0035763167357824475,0.0035388723716724847,0.0035018876191829948,0.0034653557508216165,0.0034292701567395036,0.0033936243423012195,0.0033584119257125335,0.003323626635704829,0.003289262309275177,0.0032553128894791004,0.0032217724232765175,0.003188635059427981,0.0031558950464403565,0.0031235467305610705,0.0030915845538182656,0.003060003052107433,0.0030287968533219646,0.0029979606755269938,0.0029674893251751904,0.0029373776953639614,0.0029076207641316426,0.0028782135927934026,0.002849151324314577,0.00282042918172079,0.0027920424665444183,0.0027639865573052683,0.0027362569080260062,0.00270884904678052,0.0026817585742746745,0.0026549811624584706,0.002628512553169401,0.0026023485568049667,0.0025764850510251636,0.0025509179794830543,0.0025256433505831235,0.0025006572362670353,0.002475955770825105,0.0024515351497341837,0.0024273916285203266,0.002403521521645938,0.002379921201421133,0.0023565870969377437,0.002333515693026725,0.0023107035292373925,0.002288147198838388,0.1922304445421223,0.1920133019960228,0.1913656729046806,0.19029877550354835,0.18883073133276,0.18698575508946333,0.1847931189433301,0.18228597340373698,0.17950011052072332,0.17647274947973704,0.17324141163925189,0.16984293462825284,0.16631265621983898,0.1626837808322077,0.1589869264354503,0.15524983828932262,0.151497248498286,0.1477508565065856,0.14402940470842035,0.14034882453911404,0.13672243098488698,0.13316114675345525,0.12967374088628117,0.12627507715004765,0.12302021480699085,0.11991059231620425,0.11693720823901985,0.11409176290145867,0.11136659341944655,0.1087546155983658,0.10624927189962942,0.10384448476947687,0.10153461471425088,0.0993053953868805,0.09712652691494589,0.09499732666484022,0.09291886534651474,0.09089181305047828,0.08891649337540757,0.08699293251417684,0.08512090343149395,0.08329996535450783,0.08152949885608092,0.07980873684528683,0.07813679179692111,0.0765126795550739,0.07493534003961701,0.07340365517122278,0.07191646431264806,0.07047257750367497,0.06907078674499326,0.06770987556411483,0.06638862707438135,0.0651058307170315,0.06386028785623757,0.06265081637854611,0.061476254430888326,0.06033546341572665,0.059227330347748866,0.058150769663667105,0.05710472456536629,0.056088167966346636,0.05510010310242203,0.05413956385964069,0.053205614865267696,0.05229735138158793,0.05141389903672381,0.050554413421975176,0.04971807958099972,0.048904111412546795,0.04811175100524713,0.047340267920307946,0.04658895843549748,0.045857144761787656,0.04514417424224687,0.044449418541182666,0.0437722728303001,0.043112154977402097,0.042468504742245144,0.04184078298328725,0.041220376125020546,0.040413823421037075,0.03962844141784876,0.03886353093274459,0.03811841954368802,0.03739246051780028,0.03668503177581185,0.03599553489272972,0.03532339413460127,0.03466805553109557,0.03402898598342409,0.03340567240695085,0.03279762090778557,0.032204355992496686,0.031625419810055774,0.031060371425052958,0.030508786121204664,0.029970254734118986,0.029444383012322852,0.02893079100550231,0.028429112478941018,0.027938994353149758,0.027460096167669437,0.026992089568099176,0.026534657815370587,0.026087495316348006,0.02565030717484897,0.025222808762213125,0.024804725306558598,0.024395791499930524,0.0239957511225361,0.02360435668331514,0.0232213690761225,0.022846557250807118,0.022479697898538348,0.022120575150722206,0.021768980290895027,0.021424711479013918,0.02108757348756418,0.02075737744896618,0.02043394061375305,0.020117086119035156,0.019806642766779233,0.019502444811463234,0.019204331756665617,0.01891214816020089,0.018625743447400252,0.0183449717321736,0.018069691645502765,0.017799766171020116,0.017535062487367692,0.017275451817020906,0.017020809281290204,0.016771013761224078,0.016525947764152605,0.016285497295610955,0.016049551736416902,0.015818003724664603,0.015590749042420112,0.015367686506916233,0.015148717866038136,0.014933747697925973,0.014722683314505542,0.014515434668778688,0.01431191426571511,0.014112037076580066,0.013915720456562837,0.013722884065556136,0.013533449791954486,0.013347341679343677,0.01316448585596081,0.012984810466801085,0.012808245608270262,0.012634723265268552,0.012464177250607486,0.012296543146664767,0.012131758249178164,0.01196976151309941,0.011810493500416575,0.011653896329867647,0.01149991362846703,0.011348490484774825,0.01119957340383144,0.01105311026369969,0.010909050273543454,0.010767343933183982,0.010627942994076982,0.010490800421648771,0.010355870358945663,0.010223108091539198,0.010092470013640532,0.009963913595378493,0.00983739735119094,0.009712880809294116,0.009590324482182468,0.00946968983812267,0.009350939273602612,0.00923403608670155,0.009118944451341636,0.009005629392394373,0.008894056761604832,0.008784193214305217,0.008676006186889906,0.008569463875019011,0.008464535212530102,0.008361189851027346,0.008259398140125194,0.00815913110832384,0.00806036044448981,0.00796305847992513,0.007867198171,0.007772753082330517,0.007679697370481394,0.007588005768176782,0.007497653568997201,0.0074086166125510045,0.007320871270099489,0.007234394430621559,0.0071491634873035,0.0070651563244359394,0.006982351304708491,0.0069007272568850486,0.006820263463847994,0.0067409396509985715,0.006662735975002407,0.006585633012865537,0.0065096117513338365,0.006434653576602294,0.006360740264324356,0.006287853969912801,0.006215977219119223,0.006145092898887125,0.006075184248466586,0.006006234850783016,0.005938228624052568,0.00587114981363347,0.005804982984109476,0.005739713011595002,0.005675325076256171,0.005611804655040286,0.005549137514608419,0.005487309704461837,0.005426307550259805,0.0053661176473200276,0.005306726854297038,0.005248122287033631,0.005190291312577601,0.0051332215433619955,0.0050769008315412765,0.0050213172634796695,0.0049664591543867485,0.004912315043096527,0.0048588736869837204,0.004806124057015712,0.004754055332934143,0.004702656898562879,0.004651918337239251,0.004601829427362917,0.004552380138061465,0.004503560624967385,0.004455361226103767,0.004407772457876128,0.004360785011165443,0.004314389747521807,0.004268577695454198,0.004223340046813963,0.004178668153269383,0.0041345535228692176,0.004090987816691006,0.004047962845574032,0.004005470566932823,0.003963503081649397,0.00392205263104277,0.0038811115939116287,0.003840672483650607,0.0038007279454362365,0.0037612707534814267,0.003722293808356318,0.0036837901343743013,0.0036457528770398135,0.0036081753005583546,0.0035710507854054747,0.0035343728259535126,0.003498135028155263,0.003462331107281237,0.0034269548857113414,0.003392000290777773,0.0033574613526584952,0.003323332202320239,0.0032896070695083482,0.003256280280784152,0.0032233462576071402,0.003190799514461354,0.0031586346570246764,0.0031268463803803457,0.003095429467268356,0.003064378786377436,0.003033689290675214,0.003003356015776082,0.0029733740783461173,0.0029437386745429536,0.0029144450784913166,0.002885488640792082,0.00285686478706441,0.0028285690165205527,0.0028005969005712723,0.00277294408146269,0.002745606270942646,0.0027185792489562346,0.00269185886236969,0.002665441023722287,0.0026393217100045803,0.0026134969614636815,0.0025879628804338505,0.0025627156301922136,0.0025377514338392076,0.002513066573202239,0.002488657387763265,0.0024645202736088066,0.002440651682402104,0.19446228782164393,0.19424172518651298,0.19358395917476498,0.19250056877344596,0.1910102469818419,0.18913794984062843,0.18691381059720502,0.18437190657985633,0.18154896986874378,0.1784831262352826,0.17521273246460817,0.17177536324803483,0.16820697854873243,0.16454128338818755,0.16080927621183563,0.15703897029232128,0.15325526515319415,0.1494799413151548,0.14573175103061037,0.14202657922472964,0.13837765178679173,0.13479577197163445,0.13128956946026737,0.12788706194578187,0.12463619904487984,0.12152959337706778,0.11855832865949678,0.1157141826812068,0.1129895631111023,0.11037745008939288,0.1078713448070998,0.1054652233793056,0.10315349540495214,0.10093096668205882,0.09878079041515173,0.0966768521978101,0.0946197781559239,0.0926105819310075,0.0906499080458541,0.08873808103650692,0.08687515006585991,0.08506092913797128,0.08329503310870376,0.08157690973936585,0.07990586807102494,0.07828110341226786,0.07670171923679507,0.07516674628211215,0.07367515912930021,0.07222589052878434,0.07081784371913594,0.06944990296699176,0.06812094253671476,0.06682983427919972,0.06557545401061501,0.06435668683438736,0.06317243154319754,0.06202160422260365,0.06090314116403296,0.059816001182151725,0.05875916742035434,0.05773164871772467,0.05673248060177229,0.05576072596306059,0.05481547546058181,0.05389584770044106,0.053000989224670336,0.05213007434210991,0.051282304828915166,0.05045690952246188,0.049653143829041436,0.0488702891629161,0.048107652331692535,0.04736456488080858,0.046640382408024365,0.04593448385709852,0.04524627079847219,0.04457516670346407,0.04392061621745277,0.043282084436579576,0.04265905619172238,0.04193036507808213,0.041125763326927425,0.040341888781843735,0.039578069152970845,0.03883365738844372,0.03810803068967785,0.03740058955788273,0.03671075687217803,0.03603797699946373,0.03538171493596382,0.034741455480146184,0.03411670243663134,0.03350697785052019,0.032911821271504126,0.03233078904704145,0.0317634536438261,0.03120940299670794,0.030668239884242905,0.030139581329977957,0.029623058028597684,0.029118313796054233,0.02862500504277497,0.02814280026910783,0.02767137958211561,0.0272104342328876,0.026759666173535798,0.026318787633079797,0.02588752071141626,0.02546559699063908,0.02505275716295424,0.0246487506744873,0.024253335384300863,0.023866277237945425,0.02348734995493099,0.023116334729491067,0.022753019944058643,0.02239720089489668,0.022048679529328395,0.021707264194071783,0.021372769394167972,0.021045015562037726,0.020723828836211256,0.020409040849304002,0.0201004885248134,0.019798013882358884,0.019501463850975655,0.01921069009010664,0.01892554881795458,0.018645900646853238,0.018371610425362804,0.018102547086778442,0.017838583503773157,0.0175795963489018,0.017325465960712785,0.017076076215209065,0.016831314402438315,0.016591071107977747,0.016355240099101775,0.016123718215433926,0.015896405263876617,0.01567320391764827,0.015454019619239562,0.01523876048712455,0.015027337226068152,0.014819663040867225,0.014615653553391417,0.014415226722774824,0.014218302768628273,0.014024804097144709,0.013834655229978617,0.01364778273577611,0.01346411516425561,0.013283582982725344,0.01310611851493944,0.012931655882199198,0.012760130946599517,0.012591481256342602,0.012425645993028412,0.012262565920843035,0.012102183337568892,0.011944442027345303,0.011789287215102915,0.011636665522613962,0.01148652492608775,0.011338814715252008,0.011193485453864034,0.011050488941589187,0.010909778177201184,0.010771307323046934,0.010635031670729093,0.01050090760796057,0.01036889258654087,0.010238945091418638,0.01011102461079312,0.009985091607217566,0.009861107489666255,0.00973903458653003,0.009618836119501454,0.009500476178322127,0.00938391969635617,0.009269132426959665,0.009156080920619517,0.009044732502827637,0.008935055252670788,0.008827017982104602,0.008720590215888856,0.008615742172161697,0.008512444743624874,0.008410669479324716,0.008310388567002534,0.008211574815996282,0.008114201640673464,0.008018243044377968,0.007923673603868777,0.007830468454239,0.007738603274294218,0.007648054272375477,0.007558798172613242,0.0074708122015932675,0.007384074075425563,0.007298561987198838,0.007214254594808844,0.007131131009147577,0.007049170782642352,0.006968353898129781,0.0068886607580578765,0.006810072174002063,0.006732569356485678,0.006656133905096127,0.006580747798883622,0.00650639338703765,0.006433053379828714,0.0063607108398079934,0.006289349173257496,0.006218952121879476,0.006149503754721708,0.006080988460327834,0.006013390939106856,0.005946696195914528,0.0058808895328409634,0.005815956542195184,0.005751883099684143,0.005688655357777445,0.005626259739252719,0.005564682930917124,0.005503911877496813,0.005443933775692561,0.005384736068394123,0.005326306439049281,0.00526863280618254,0.005211703318060121,0.005155506347494106,0.005100030486785032,0.005045264542796159,0.0049911975321564744,0.004937818676589197,0.004885117398359892,0.004833083315843581,0.004781706239205219,0.004730976166190849,0.004680883278026942,0.0046314179354226504,0.004582570674674874,0.004534332203870904,0.004486693399186825,0.004439645301278586,0.004393179111763844,0.00434728618979013,0.004301958048689438,0.004257186352714768,0.004212962913857079,0.004169279688741033,0.004126128775595253,0.004083502411297768,0.004041392968492516,0.003999792952775698,0.003958694999949907,0.003918091873344754,0.003877976461200504,0.0038383417741152956,0.003799180942552412,0.003760487214406724,0.0037222539526290334,0.003684474632905254,0.003647142841391194,0.003610252272499551,0.003573796726738647,0.0035377701086017187,0.0035021664245040653,0.0034669797807687593,0.0034322043816581585,0.003397834527450591,0.0033638646125608122,0.0033302891237037735,0.0032971026380990364,0.0032642998217166934,0.0032318754275623873,0.0031998242940007877,0.0031681413431170974,0.00313682157911415,0.0031058600867460992,0.0030752520297863397,0.0030449926495292987,0.0030150772633256505,0.0029855012631488246,0.0029562601141937123,0.0029273493535055817,0.002898764588638813,0.002870501496344658,0.0028425558212877727,0.0028149233747895522,0.0027876000335993107,0.0027605817386912755,0.0027338644940873573,0.002707444365705252,0.002681317480230285,0.002655480024011821,0.002629928241982576,0.002604658436600696,0.19697821574637614,0.1967532652806967,0.19608249223679902,0.19497793317963374,0.19345900590085405,0.1915516066510639,0.18928696075588738,0.18670032118482444,0.18382961290017485,0.18071411302519913,0.17739324077663599,0.1739055102665371,0.17028767724366378,0.1665740905243174,0.1627962421908647,0.15898249852521742,0.15515798614519016,0.1513446043780642,0.14756113467081355,0.14382341984566943,0.14014458937777738,0.1365353108722781,0.1330043696255735,0.12960149353389852,0.1263517057282484,0.12324539834730015,0.12027372280487568,0.11742851858389089,0.11470224964496606,0.11208794754883326,0.10957916050673808,0.10716990767233085,0.10485463807466532,0.10262819366682589,0.1004857760293738,0.09841084348485303,0.0963790773802367,0.09439124421828066,0.09244833962599154,0.0905510158897892,0.0886996267004329,0.08689426787413923,0.08513481414617263,0.08342095220193833,0.08175221015723276,0.0801279837279118,0.07854755934424087,0.07701013446965353,0.07551483538023723,0.07406073265265067,0.07264685459540222,0.0712721988436384,0.06993574232125797,0.06863644975749388,0.06737328092830243,0.06614519677684803,0.06495116455180883,0.06379016208777039,0.06266118133857429,0.06156323126199159,0.06049534014297779,0.059456557432398034,0.05844595516897588,0.057462629043962994,0.05650569916059148,0.0555743105339043,0.05466763337064976,0.053784863163828224,0.052925220631916625,0.05208795152882803,0.05127232634708168,0.05047763993367846,0.04970321103539371,0.04894838178787892,0.048212517160921634,0.047495004370369485,0.04679525226573548,0.046112690701084376,0.045446769895653834,0.04479695978963983,0.04416274939970296,0.04353908224037856,0.04271421364656667,0.04191033812332015,0.04112678393355797,0.04036290405980438,0.039618075277323674,0.038891697252815105,0.03818319166959068,0.037492001379880346,0.036817589584641784,0.03615943904096994,0.03551705129709634,0.034889945954723535,0.03427765995836747,0.033679746911248934,0.03309577641720962,0.03252533344802273,0.03196801773548046,0.03142344318753487,0.030891237327783552,0.0303710407575637,0.029862506639885943,0.029365300204476433,0.02887909827315636,0.028403588804816877,0.027938470459248382,0.027483452179104393,0.027038252789271244,0.026602600612971483,0.026176233103906973,0.025758896493790623,0.025350345454632824,0.024950342775151596,0.02455865905073057,0.024175072386335737,0.023799368111840597,0.023431338509232305,0.02307078255117304,0.022717505650441755,0.02237131941977233,0.022032041441637666,0.021699495047547278,0.021373509106445802,0.021053917821801483,0.020740560537021963,0.02043328154881986,0.020131929928183512,0.01983635934862451,0.019546427921371446,0.019261998037222186,0.018982936214751275,0.01870911295460147,0.01844040259959115,0.018176683200390783,0.01791783638651425,0.01766374724241063,0.017414304188424854,0.017169398866420216,0.01692892602986678,0.016692783438193158,0.016460871755232916,0.016233094451581116,0.016009357710697593,0.015789570338601684,0.015573643676997007,0.015361491519693628,0.015153030032180874,0.014948177674221685,0.01474685512534158,0.014548985213095179,0.014354492843986806,0.014163304936946898,0.013975350359250092,0.013790559864778638,0.013608866034536938,0.013430203219318688,0.013254507484448846,0.0130817165565098,0.012911769771973529,0.01274460802766646,0.012580173732986526,0.012418410763812006,0.01225926441802804,0.012102681372610226,0.011948609642202686,0.011796998539134981,0.011647798634815323,0.011500961722454848,0.01135644078106555,0.011214189940684774,0.011074164448780864,0.010936320637789395,0.010800615893744484,0.01066700862595792,0.010535458237708824,0.01040592509790515,0.010278370513682914,0.010152756703902418,0.010029046773515793,0.009907204688767992,0.009787195253202244,0.009668984084442353,0.009552537591718467,0.009437822954115655,0.009324808099514128,0.009213461684198634,0.009103753073111655,0.008995652320729648,0.008889130152535327,0.008784157947071089,0.00868070771854826,0.008578752099994291,0.008478264326920375,0.008379218221487066,0.008281588177156223,0.008185349143808167,0.008090476613309435,0.00799694660551706,0.00790473565470033,0.007813820796370953,0.007724179554504311,0.007635789929139486,0.007548630384345266,0.0074626798365411764,0.0073779176431579795,0.007294323591631181,0.007211877888713086,0.007130561150093723,0.0070503543903219544,0.006971239013013469,0.0068931968013405415,0.006816209908791396,0.0067402608501914065,0.006665332492978609,0.006591408048722532,0.006518471064882327,0.006446505416793884,0.006375495299879495,0.006305425222072978,0.0062362799964543495,0.006168044734084743,0.006100704837039197,0.006034245991628078,0.005968654161802394,0.005903915582738198,0.005840016754591916,0.005776944436424732,0.00571468564028843,0.005653227625468742,0.00559255789288102,0.0055326641796147775,0.005473534453619956,0.005415156908534118,0.005357519958643826,0.005300612233976954,0.005244422575523094,0.005188940030575532,0.005134153848194707,0.005080053474787016,0.005026628549796465,0.004973868901506653,0.004921764542947538,0.004870305667907076,0.004819482647042375,0.004769286024088416,0.0047197065121613365,0.0046707349901543,0.004622362499221353,0.0045745802393494595,0.004527379566014236,0.004480751986917649,0.004434689158806074,0.0043891828843645505,0.0043442251091876175,0.004299807918822821,0.004255923535885402,0.00421256431724232,0.0041697227512640656,0.004127391455140884,0.0040855631722639,0.0040442307696676415,0.004003387235532937,0.0039630256767490026,0.003923139316531597,0.003883721492097876,0.0038447656523948165,0.003806265355880245,0.003768214268355812,0.0037306061608486903,0.003693434907543057,0.00365669448375831,0.003620378963973542,0.0035844825198967705,0.0035489994185784503,0.0035139240205665136,0.0034792507781040076,0.0034449742333665925,0.0034110890167394986,0.0033775898451332614,0.0033444715203360654,0.0033117289274033758,0.003279357033082706,0.0032473508842730927,0.00321570560651828,0.0031844164025333186,0.003153478550762264,0.0031228874039682148,0.0030926383878533436,0.0030627269997087394,0.003033148807093729,0.0030038994465426587,0.0029749746223001706,0.002946370105083015,0.0029180817308681562,0.00289010539970697,0.0028624370745636684,0.002835072780178949,0.00280800860195713,0.002781240684876629,0.19981967460672972,0.19958917440072446,0.1989019498606609,0.1977706156794191,0.1962155049808994,0.19426370064585158,0.19194780523546406,0.1893045530684956,0.1863733708836561,0.1831949841712492,0.17981014789465832,0.1762585570146429,0.172577967965965,0.16880354020349853,0.16496738918416234,0.16109832956403408,0.1572217799020132,0.15335979707229735,0.14953120887953678,0.1457518159641754,0.1420346380099653,0.1383901837434002,0.13483502460446384,0.13142994010663162,0.12817739276348677,0.12506782321525114,0.12209242724119436,0.11924308495575617,0.11651229757160259,0.11389313083599403,0.11137916436040121,0.10896444616170223,0.1066434518184731,0.10441104772024379,0.10226245795165387,0.10019323440948719,0.09819034244207335,0.09622839205888006,0.09430732300885462,0.09242814683086471,0.0905915526520004,0.08879794805911927,0.08704749641457084,0.0853401506834903,0.08367568390392346,0.0820537164748225,0.08047374046515043,0.07893514116292508,0.07743721608909113,0.07597919170018613,0.07456023799741225,0.07317948125000294,0.07183601502855956,0.07052890973054826,0.0692572207658372,0.06801999555598491,0.06681627948682044,0.06564512094047176,0.06450557552023645,0.06339670956974645,0.062317603076982656,0.06126735204352747,0.06024507039030274,0.05924989146276769,0.058280969190999864,0.05733747895348332,0.056418618187350826,0.05552360678254205,0.0546516872925997,0.053802124990648896,0.052974207795350295,0.052167246088451066,0.05138057244258954,0.05061354127553713,0.049865528444863375,0.0491359307950056,0.04842416566712216,0.04772967038055707,0.04705190169348064,0.04639033524915168,0.04574446501326879,0.04511380270699947,0.04440150267413757,0.04357653132165758,0.04277215668658004,0.04198773236529046,0.04122263520573036,0.04047626446636969,0.03974804099576498,0.039037406433923075,0.03834382243635914,0.037666769921413,0.037005748341224394,0.036360274976504445,0.03572988425510419,0.03511412709423667,0.034512570266106136,0.033924795786562045,0.03335040032638852,0.032788994644712764,0.03224020304400543,0.031703662846106095,0.03117902388865286,0.030665948041328623,0.030164108741267136,0.029673190546995937,0.02919288871027298,0.02872290876518956,0.028262966133892353,0.027812785748329606,0.027372101687394606,0.026940656828873612,0.02651820251562661,0.02610449823541388,0.025699311313843166,0.025302416619885377,0.024913596283449965,0.024532639424525965,0.024159341893390685,0.023793506021443502,0.023434940382202927,0.023083459562043086,0.022738883940253217,0.022401039478031997,0.022069757516018227,0.021744874580014638,0.02142623219453913,0.021113676703872403,0.02080705910028584,0.020506234859128343,0.02021106378049527,0.019921409837185097,0.019637141028678463,0.01935812924088127,0.019084250111389763,0.01881538290002952,0.018551410364460154,0.01829221864061755,0.018037697127792563,0.01778773837815249,0.017542237990507602,0.017301094508156922,0.0170642093206308,0.016831486569171338,0.016602833055795428,0.016378158155782526,0.016157373733457114,0.015940394061118083,0.015727135740990723,0.015517517630073262,0.015311460767763744,0.015108888306143235,0.014909725442819788,0.014713899356218712,0.014521339143223627,0.014331975759075598,0.01414574195943092,0.013962572244502118,0.013782402805189897,0.013605171471130101,0.013430817660581788,0.013259282332075607,0.01309050793776337,0.012924438378394769,0.012761018959859805,0.012600196351235155,0.012441918544279255,0.012286134814312523,0.012132795682438661,0.011981852879048908,0.011833259308561913,0.011686969015355063,0.011542937150834875,0.011401119941612201,0.011261474658734345,0.01112395958793694,0.010988534000876541,0.010855158127309927,0.010723793128179138,0.010594401069576558,0.010466944897551858,0.010341388413732073,0.010217696251726577,0.010095833854283625,0.009975767451177873,0.009857464037797276,0.009740891354406998,0.009626017866064446,0.009512812743165103,0.009401245842591369,0.009291287689449878,0.009182909459371502,0.009076082961356237,0.008970780621145301,0.008866975465097486,0.008764641104558537,0.008663751720702018,0.008564282049826791,0.008466207369097182,0.008369503482706236,0.008274146708453684,0.008180113864719927,0.008087382257824795,0.0079959296697575,0.007905734346266896,0.007816774985296236,0.007729030725756019,0.007642481136620442,0.007557106206337143,0.007472886332542272,0.007389802312066512,0.007307835331227766,0.007226966956397513,0.007147179124833417,0.0070684541357703265,0.006990774641758622,0.006914123640245944,0.00683848446539167,0.006763840780107721,0.006690176568318576,0.00661747612743442,0.006545724061028025,0.006474905271712884,0.006405004954213452,0.0063360085886225515,0.006267901933840919,0.006200671021190876,0.006134302148202139,0.006068781872562085,0.006004097006226247,0.00594023460968424,0.0058771819863770655,0.005814926677259024,0.005753456455503117,0.005692759321343172,0.005632823497049585,0.005573637422035429,0.005515189748086596,0.005457469334715804,0.005400465244634202,0.005344166739338113,0.0052885632748082044,0.005233644497315621,0.005179400239335092,0.005125820515559579,0.005072895519014456,0.005020615617268192,0.004968971348737623,0.004917953419082851,0.004867552697692372,0.004817760214253471,0.004768567155406466,0.0047199648614809605,0.0046719448233098065,0.004624498679121494,0.004577618211506586,0.004531295344457027,0.0044855221404761746,0.004440290797758188,0.00439559364743318,0.004351423150878752,0.004307771897094264,0.004264632600136781,0.004221998096617683,0.004179861343256411,0.004138215414492319,0.004097053500151256,0.004056368903166035,0.004016155037349895,0.003976405425219939,0.00393711369587148,0.003898273582900089,0.003859878922371195,0.0038219236508352664,0.00378440180338848,0.003747307511775826,0.003710635002537789,0.0036743785951979377,0.0036385327004908063,0.0036030918186296178,0.0035680505376113206,0.003533403531559983,0.0034991455591060886,0.0034652714618013955,0.0034317761625683955,0.003398654664183855,0.0033659020477944434,0.0033335134714652863,0.0033014841687594213,0.0032698094473477077,0.0032384846876490074,0.003207505341498499,0.0031768669308451995,0.0031465650464767114,0.003116595346770928,0.0030869535564744853,0.0030576354655060607,0.0030286369277856017,0.0029999538600875364,0.002971582240918042,0.16203131045567884,0.1619030830051732,0.16152005630030644,0.1608871394168257,0.16001232516278238,0.1589064198090245,0.15758268966080285,0.1560564462325272,0.1543445940092368,0.15246516484788528,0.15043686123188865,0.1482786272820196,0.14600926218757485,0.14364708610285068,0.14120966404175994,0.13871358926782246,0.13617432435431148,0.1336060955900107,0.1310218347289873,0.12843316115350029,0.12585039721309155,0.12328260967794555,0.12073767075871442,0.1182223328700352,0.11574231214626125,0.11330237657386592,0.11090643542789813,0.10857318009618606,0.10632820536566966,0.10416725842132762,0.1020858798392329,0.10007991217176132,0.09814547537092001,0.09627894452362383,0.09447692965442928,0.09273625737976858,0.0910539542225149,0.08942723141749742,0.08785347105758971,0.08633021344688374,0.08485514554198607,0.08342609037560457,0.08203862876095218,0.0806766056735753,0.07933791613787716,0.07802313164870793,0.0767326820692216,0.0754668705261394,0.07422588725958992,0.07300982243047462,0.07181867790515317,0.07065237805028861,0.06951077958004385,0.06839368050437873,0.06730082823129976,0.06623192687824715,0.06518664384847161,0.06416461572784427,0.06316545355628404,0.06218874752590006,0.06123407115568281,0.060300984989707394,0.059389039862991946,0.058497779776138854,0.0576267444168673,0.05677547136366736,0.055943498003885865,0.05513036319584981,0.05433560870206308,0.05355878041805155,0.05279942941915401,0.0520571128454843,0.0513313946432927,0.050621846179174375,0.04992804674195106,0.04924958394548002,0.048586054044369956,0.04793706217324539,0.04730222251912454,0.0466811584354367,0.04607350250528925,0.045284688000443114,0.04448272869078476,0.04369929722423633,0.04293388282057651,0.04218598896755407,0.041455133201313416,0.04074084686319335,0.04004267483719202,0.0393601752718988,0.03869291929022944,0.038040490689841576,0.03740248563680499,0.036778512354701635,0.03616819081108325,0.035571152402932016,0.03498703964255923,0.0344155058451344,0.03385621481891878,0.03330884055905751,0.0327730669456783,0.03224858744692087,0.031735104827383114,0.03123233086242658,0.030739986058646408,0.030257799380774626,0.029785507985202197,0.0293228569602692,0.028869599073390144,0.02842549452508871,0.027990310709934223,0.02756382198436795,0.027145809441378933,0.026736060691943887,0.0263343696531689,0.025940536343012573,0.025554366681481203,0.025175672298174294,0.024804270346031564,0.02443998332115905,0.02408263888857277,0.023732069713715533,0.023388113299590937,0.0230506118293665,0.022719412014274274,0.022394364946674638,0.022075325958111982,0.021762154482215496,0.02145471392229633,0.02115287152347844,0.020856498249234807,0.020565468662170086,0.020279660808914496,0.01999895610898877,0.01972323924751099,0.019452398071600503,0.01918632349036837,0.018924909378357672,0.01866805248231639,0.018415652331190416,0.018167611149210762,0.0179238337719809,0.017684227565445736,0.017448702347643362,0.017217170313143088,0.016989545960062816,0.016765746019587593,0.01654568938788744,0.016329297060353166,0.016116492068065133,0.015907199416416613,0.015701346025806695,0.015498860674338153,0.015299673942439855,0.015103718159346819,0.014910927351373242,0.014721237191905802,0.014534584953066152,0.0143509094589737,0.014170151040555037,0.01399225149184251,0.013817154027712362,0.013644803243002308,0.013475145072969727,0.013308126755035217,0.013143696791767506,0.01298180491506819,0.012822402051506943,0.01266544028877494,0.012510872843210698,0.012358654028362202,0.01220873922455151,0.01206108484939949,0.011915648329286252,0.011772388071707553,0.011631263438499068,0.011492234719896686,0.011355263109407286,0.011220310679455017,0.011087340357784616,0.010956315904590123,0.010827201890345419,0.010699963674314856,0.01057456738371537,0.010450979893514647,0.010329168806838944,0.010209102435971422,0.010090749783922996,0.009974080526550988,0.009859064995214625,0.009745674159943643,0.009633879613105719,0.009523653553554766,0.009414968771246729,0.009307798632302258,0.009202117064508289,0.009097898543238973,0.00899511807778437,0.00889375119807448,0.008793773941782101,0.008695162841797483,0.008597894914058853,0.008501947645728784,0.008407298983705071,0.00831392732345702,0.008221811498172462,0.008130930768211487,0.008041264810852796,0.007952793710325083,0.00786549794811545,0.007779358393542886,0.007694356294593042,0.007610473269002843,0.0075276912955882,0.0074459927058087415,0.007365360175558381,0.007285776717180024,0.007207225671693481,0.007129690701231979,0.007053155781680132,0.00697760519550892,0.006903023524798227,0.006829395644445685,0.0067567067155532064,0.006684942178986656,0.006614087749104963,0.006544129407650094,0.006475053397797668,0.006406846218360192,0.006339494618139637,0.0062729855904248375,0.0062073063676303325,0.0061424444160698985,0.0060783874308646575,0.006015123330978961,0.005952640254381343,0.005890926553327955,0.005829970789762212,0.005769761730830896,0.005710288344510806,0.005651539795343758,0.005593505440277574,0.005536174824607766,0.005479537678020244,0.005423583910729949,0.005368303609713474,0.0053136870350330755,0.005259724616250127,0.005206406948923616,0.0051537247911940505,0.005101669060448481,0.005050230830064883,0.004999401326234858,0.004949171924859888,0.004899534148522429,0.004850479663527593,0.004802000277014118,0.004754087934132964,0.004706734715292114,0.004659932833464049,0.004613674631556884,0.00456795257984541,0.004522759273461204,0.00447808742994085,0.004433929886828937,0.004390279599336782,0.004347129638053723,0.004304473186710097,0.00426230353999129,0.004220614101399633,0.004179398381165476,0.004138649994204157,0.004098362658118666,0.00405853019124641,0.004019146510749785,0.0039802056307476795,0.0039417016604891145,0.0039036288025663646,0.0038659813511670894,0.0038287536903649894,0.003791940292446539,0.0037555357162749243,0.0037195346056887258,0.0036839316879350437,0.0036487217721366707,0.0036138997477910234,0.003579460583302006,0.003545399324542597,0.0035117110934478673,0.0034783910866376783,0.0034454345740687646,0.0034128368977141763,0.003380593470271222,0.003348699773895949,0.003317151358963846,0.0032859438428567227,0.003255072908773758,0.0032245343045678807,0.0031943238416056244,0.003164437393650461,0.17081750280031877,0.17068077968842668,0.1702724206718397,0.16959779163576702,0.1686656233260469,0.16748770803284488,0.16607850375701955,0.16445467088104979,0.1626345687863329,0.16063773975950138,0.15848440522424456,0.15619499536026882,0.15378972817889408,0.15128824876665356,0.148709334246074,0.1460706654548443,0.14338866266690706,0.14067837997566132,0.13795345120985572,0.13522607935220918,0.13250706122414738,0.12980583951547,0.1271305749098687,0.12448823193990873,0.12188467318172615,0.11932475738197032,0.11681465791863878,0.11438944465038135,0.11205616576266936,0.10980986864211825,0.10764594126023407,0.10556008403543457,0.10354828437922738,0.10160679363937546,0.09973210618637907,0.0979209404191709,0.0961702214917246,0.09447706558486167,0.09283876556719105,0.09125277790676559,0.08971671071007756,0.088228312778567,0.0867854635847038,0.08538605256260064,0.08401665277287962,0.0826695255867305,0.08134530179618048,0.08004447104861312,0.07876739612772654,0.07751432628887651,0.07628540964177775,0.07508070459080353,0.07390019035636412,0.07274377661077054,0.0716113122690682,0.07050259348027253,0.06941737086724079,0.0683553560649382,0.06731622760707769,0.06629963621038759,0.06530520950449044,0.06433255625339883,0.06338127011246845,0.062450932962181294,0.0615411178575204,0.06065139162911956,0.05978131716968119,0.05893045543662348,0.058098367199403415,0.05728461455761539,0.056488762253654144,0.0557103788016906,0.05494903745265813,0.05420431701313629,0.05347580253433823,0.052763085885771534,0.05206576622680134,0.05138345038793734,0.05071575317251045,0.05006229758830658,0.04942271501772973,0.048759444556803484,0.04790849900893201,0.04707687960342028,0.04626406737326541,0.04546955698342562,0.04469285660153425,0.0439334877361198,0.04319098504741454,0.042464896135288026,0.041754781308299065,0.04106021333736108,0.040380777197144876,0.039716069797908676,0.03906569971013954,0.03842928688407834,0.03780646236595163,0.03719686801244352,0.03660015620481414,0.03601598956379834,0.03544404066630299,0.03488399176476892,0.03433553450989596,0.03379836967738004,0.03327220689914245,0.03275676439948731,0.032251768736522336,0.031756954549124146,0.03127206430964305,0.030796848082527518,0.030331063288968365,0.029874474477636036,0.029426853101559045,0.02898797730113014,0.02855763169325001,0.028135607166544393,0.027721700682608662,0.027315715083203115,0.026917458903297897,0.026526746189888643,0.026143396326456264,0.0257672338629618,0.02539808835125056,0.025035794185746207,0.02468019044928654,0.024331120763990213,0.023988433147004024,0.02365197987100007,0.023321617329292728,0.022997205905426223,0.022678609847117986,0.022365697144410557,0.022058339411907907,0.021756411774965373,0.021459792759710602,0.021168364186761348,0.020882011068534476,0.020600621510014287,0.020324086612870478,0.02005230038281581,0.019785159640083098,0.01952256393292937,0.019264415454053024,0.019010618959827225,0.018761081692255023,0.018515713303541532,0.018274425783206,0.018037133387634522,0.017803752571991273,0.017574201924405067,0.017348402102354502,0.017126275771164375,0.016907747544552522,0.01669274392714337,0.016481193258884433,0.016273025661298728,0.016068172985501505,0.015866568761928997,0.015668148151711282,0.015472847899633537,0.015280606288629324,0.015091363095754491,0.014905059549581653,0.014721638288976147,0.014541043323196681,0.01436321999327656,0.014188114934643715,0.01401567604092807,0.01384585242892522,0.013678594404667956,0.013513853430570398,0.013351582093608969,0.013191734074497963,0.01303426411783403,0.012879128003169416,0.012726282516984877,0.012575685425530088,0.012427295448504539,0.012281072233544226,0.012136976331494133,0.011994969172434516,0.011855013042436706,0.011717071061026221,0.01158110715932309,0.011447086058844768,0.01131497325094282,0.01118473497685538,0.011056338208355327,0.010929750628969549,0.010804940615757857,0.010681877221626786,0.010560530158163705,0.010440869778972775,0.010322867063498551,0.010206493601316485,0.010091721576881417,0.009978523754714289,0.0098668734650149,0.00975674458968794,0.009648111548764816,0.009540949287214558,0.009435233262126717,0.009330939430256327,0.009228044235918872,0.009126524599225673,0.009026357904644986,0.008927521989884089,0.008829995135077855,0.008733756052276167,0.008638783875221634,0.008545058149404889,0.008452558822394223,0.008361266234427076,0.00827116110925646,0.008182224545246013,0.008094438006702462,0.008007783315442656,0.007922242642585009,0.007837798500559693,0.007754433735330502,0.007672131518823637,0.007590875341553456,0.0075106490054442565,0.007431436616838486,0.007353222579687227,0.007275991588918674,0.007199728623975859,0.0071244189425233116,0.007050048074314235,0.006976601815214911,0.0069040662213813485,0.006832427603584999,0.006761672521680129,0.006691787779212863,0.006622760418164889,0.006554577713828803,0.006487227169812568,0.00642069651316625,0.006354973689631539,0.006290046859007938,0.006225904390632866,0.006162534858973712,0.006099927039325908,0.0060380699036177606,0.0059769526163161,0.00591656453043145,0.005856895183619281,0.005797934294375944,0.005739671758324063,0.005682097644588238,0.005625202192256366,0.0055689758069246975,0.005513409057325569,0.005458492672032893,0.005404217536246603,0.005350574688651652,0.005297555318350391,0.005245150761866092,0.0051933525002167335,0.0051421521560547825,0.00509154149087446,0.005041512402282152,0.004992056921329441,0.004943167209907469,0.004894835558199246,0.004847054382190926,0.004799816221238688,0.0047531137356902784,0.004706939704560568,0.00466128702325779,0.004616148701361766,0.0045715178604507686,0.004527387731976691,0.004483751655186953,0.004440603075092761,0.004397935540480703,0.004355742701969032,0.004314018310105661,0.004272756213507541,0.0042319503570409115,0.0041915947800396135,0.004151683614562977,0.004112211083690465,0.00407317149985282,0.004034559263199321,0.003996368859998666,0.003958594861074835,0.003921231920275451,0.003884274772972483,0.0038477182345943834,0.0038115571991893978,0.0037757866380179134,0.003740401598175022,0.003705397201241235,0.003670768641961058,0.0036365111869493165,0.003602620173423113,0.003569091007960732,0.003535919165285424,0.0035031001870740653,0.18038296214670715,0.18023633991991156,0.17979847303596413,0.17907528662144204,0.17807641366838206,0.17681484971738107,0.17530650330692038,0.17356967147786997,0.1716244722670076,0.16949226576229354,0.1671950923341083,0.16475515177960803,0.1621943411242165,0.1595338624997783,0.15679390652552885,0.1539934114314928,0.15114989406009602,0.14827934595189574,0.14539618591360087,0.14251325963379305,0.1396418768567074,0.13679187713666435,0.1339717160802557,0.13118856507135152,0.12844841863572293,0.12575620474155308,0.12313273678178135,0.12060924792270594,0.11818112058058797,0.11584321759938995,0.11359075554020509,0.11141927540905718,0.10932461618158718,0.10730289082498198,0.1053504645526099,0.10346393507757802,0.10164011465838718,0.09987601375342454,0.09816882612159324,0.09651591522471661,0.09491480180310252,0.09336315250982281,0.09185876950159846,0.09039958089502857,0.08898363200670519,0.087605973099596,0.08625126096860843,0.08491824959208777,0.08360750436086521,0.08231946270379813,0.0810544469324756,0.07981267622954076,0.07859427777953372,0.07739929705504184,0.07622770728157509,0.07507941811259183,0.07395428355170809,0.07285210916294065,0.0717726586120936,0.07071565958336246,0.06968080911538267,0.06866777840015978,0.06767621708708245,0.06670575713259118,0.06575601623401316,0.06482660088405567,0.0639171090800928,0.06302713272014075,0.06215625971512679,0.06130407584483565,0.06047016638269867,0.059654117512622944,0.05885551755899252,0.05807395804919344,0.05730903462627291,0.05656034782769498,0.05582750374473538,0.05511011457561802,0.054407799084257885,0.05372018297531399,0.05304689919519701,0.052387588167679244,0.05164797924512062,0.05076475802726529,0.04990115081267996,0.04905664589754613,0.048230744273806934,0.04742295957068949,0.046632817959022334,0.04585985802373828,0.0451036306093469,0.0443636986425798,0.04363963693600368,0.042931031975886616,0.04223748169726251,0.04155859524876567,0.04089399274952494,0.04024330504007282,0.03960617342905877,0.03898224943725774,0.038371194540211886,0.03777267991065977,0.037186386161727376,0.036612003091764767,0.03604922943153873,0.03549777259441128,0.03495734843002886,0.03442768098197115,0.03390850224970119,0.03339955195514326,0.03290057731411013,0.03241133281276829,0.031931579989296265,0.031461087220814095,0.030999629515682667,0.030546988311186716,0.030102951276624622,0.029667312121797806,0.029239870410851253,0.028820431381444356,0.028408805769172325,0.028004809637171828,0.027608264210827994,0.027218995717494858,0.02683683523111822,0.026461618521677943,0.026093185909324582,0.025731382123106265,0.025376056164177593,0.025027061173358105,0.02468425430294749,0.024347496592663248,0.024016652849593118,0.023691591532042325,0.023372184637168458,0.023058307592276114,0.022749839149677355,0.02244666128499536,0.02214865909880656,0.021855720721521192,0.02156773722138418,0.02128460251551338,0.02100621328386318,0.020732468886021056,0.020463271280747704,0.020198524948157676,0.019938136814466895,0.0196820161792102,0.0194300746448488,0.019182226048685868,0.018938386397015974,0.01869847380142119,0.018462408417153957,0.018230112383526408,0.018001509766238485,0.01777652650158289,0.017555090342452104,0.017337130806098163,0.017122579123574712,0.01691136819080767,0.01670343252123962,0.016498708199986514,0.016297132839464323,0.016098645536428147,0.01590318683037713,0.015710698663277282,0.015521124340561018,0.015334408493350209,0.015150497041872147,0.014969337160019329,0.01479087724101704,0.014615066864162043,0.014441856762590157,0.014271198792046013,0.014103045900614364,0.013937352099383018,0.013774072434004817,0.013613162957131155,0.01345458070168044,0.013298283654923288,0.013144230733349176,0.012992381758291406,0.01284269743228689,0.012695139316139884,0.012549669806674718,0.012406252115148321,0.012264850246303334,0.012125428978039757,0.011987953841687243,0.011852391102852074,0.01171870774282868,0.01158687144055004,0.011456850555063207,0.01132861410851272,0.011202131769611936,0.011077373837592124,0.010954311226609649,0.010832915450598104,0.010713158608552369,0.010595013370226457,0.010478452962238113,0.010363451154562782,0.010249982247406282,0.010138021058443669,0.01002754291041461,0.009918523619060017,0.009810939481394476,0.009704767264300232,0.009599984193433978,0.009496567942438288,0.00939449662244387,0.009293748771859673,0.009194303346437444,0.009096139709604208,0.00899923762305529,0.008903577237596638,0.008809139084233612,0.00871590406549529,0.008623853446988594,0.008532968849174784,0.00844323223936353,0.008354625923913794,0.008267132540640917,0.008180735051419854,0.008095416734979896,0.008011161179886784,0.00792795227770278,0.007845774216324585,0.00776461147349023,0.007684448810451377,0.007605271265806088,0.007527064149488364,0.007449813036907036,0.0073735037632339075,0.007298122417833701,0.007223655338832793,0.007150089107824013,0.00707741054470033,0.007005606702618102,0.00693466486308314,0.006864572531157176,0.006795317430782229,0.006726887500216995,0.006659270887585631,0.0065924559465332525,0.006526431231986262,0.006461185496014225,0.006396707683791604,0.00633298692965402,0.00627001255325001,0.006207774055783008,0.0061462611163419015,0.006085463588319053,0.006025371495910229,0.005965975030698262,0.005907264548315309,0.005849230565182743,0.005791863755326441,0.00573515494726605,0.005679095120974332,0.005623675404907748,0.005568887073103946,0.005514721542345319,0.005461170369387749,0.005408225248250391,0.005355878007568076,0.005304120608002409,0.005252945139710927,0.005202343819873271,0.00515230899027116,0.005102833114923338,0.005053908777772064,0.00500552868042086,0.004957685639921603,0.004910372586610922,0.004863582561992392,0.00481730871666609,0.0047715443083024825,0.004726282699660093,0.004681517356646475,0.004637241846419619,0.0045934498355312894,0.004550135088109381,0.0045072914640790235,0.004464912917421419,0.004422993494469975,0.004381527332241339,0.004340508656802588,0.004299931781672036,0.004259791106253634,0.004220081114304307,0.00418079637243222,0.004141931528627108,0.0041034813108204796,0.0040654405254754045,0.0040278040562058345,0.003990566862423013,0.003953723978010695,0.00391727051002665,0.003881201637430663,0.19084583209948194,0.1906875429105986,0.1902149108015293,0.18943455593572572,0.18835723097933452,0.1869974213971313,0.18537282661075646,0.18350375701502578,0.18141248474254287,0.179122585290272,0.1766583032275595,0.174043969075317,0.17130348709221271,0.16845990609496495,0.16553507836712533,0.16254940572266147,0.15952166717669736,0.15646891950450403,0.15340646013757386,0.1503478411459504,0.14730492323235217,0.14428795945512643,0.1413056995696297,0.13836550723621346,0.13547348374196425,0.13263879961669503,0.12990391317659972,0.12727395462958432,0.1247431729498148,0.12230622007381659,0.11995811699136534,0.11769422312604756,0.11551020864830373,0.11340202940634102,0.11136590419695885,0.10939829413094242,0.10749588387577019,0.10565556458328142,0.10387441833153102,0.10214970392934047,0.10047884394859229,0.09885941286423738,0.097289126194899,0.09576583054845317,0.0942874944871014,0.09285220013542149,0.09145813546278345,0.09009701747217229,0.0887564362765685,0.08743677441793583,0.08613855987144241,0.08486220307779145,0.08360800854067527,0.08237618565948074,0.08116685879774634,0.0799800765995843,0.07881582057511621,0.07767401298270533,0.07655452404054285,0.07545717850331456,0.07438176164166309,0.07332802466298197,0.07229568961215613,0.07128445379034486,0.07029399372873205,0.0693239687529186,0.06837402417181694,0.06744379412318084,0.06653290410595707,0.06564097322767842,0.06476761619314818,0.0639124450587905,0.0630750707751103,0.062255104537951994,0.06145215896754734,0.060665849132682775,0.05989579343588347,0.05914161437402977,0.05840293918754651,0.057679400410080905,0.05697063632948442,0.056276291369830256,0.05559601640334093,0.05479586348845326,0.05387789270467845,0.0529798333442683,0.05210118244210161,0.05124144865122884,0.05040015226616199,0.0495768252034851,0.04877101094548393,0.04798226445184592,0.04721015204400614,0.04645425126613829,0.045714150726394814,0.04498944992157731,0.04427975904807354,0.04358469880153173,0.042903900167526134,0.042237004205128895,0.04158366182511683,0.04094353356433043,0.04031628935747519,0.03970160830756123,0.039099178455949776,0.03850869655289927,0.03792986782935255,0.03736240577062864,0.03680603189254584,0.03626047552048024,0.03572547357173433,0.03520077034155098,0.03468611729306015,0.034181272851351564,0.03368600220188639,0.03320007709335804,0.03272327564511685,0.03225538215923277,0.03179618693722484,0.03134548610150297,0.030903081421506454,0.030468780144527998,0.030042394831191872,0.029623743195548426,0.029212647949712123,0.028808936653000113,0.028412441565485978,0.02802299950588929,0.027640451713728118,0.02726464371562386,0.02689542519569334,0.026532649869912838,0.026176175364366703,0.025825863097279987,0.025481578164742075,0.025143189230007724,0.024810568416297984,0.02448359120298602,0.02416213632507716,0.023846085675890978,0.023535324212836106,0.023229739866203785,0.022929223450873924,0.02263366858084822,0.02234297158652585,0.02205703143462456,0.021775749650677495,0.021499030244012358,0.021226779635137534,0.020958906585455055,0.02069532212923012,0.020435939507730566,0.020180674105481227,0.01992944338855111,0.01968216684481041,0.01943876592609499,0.01919916399220442,0.018963286256686432,0.018731059734336874,0.018502413190363335,0.018277277091153194,0.018055583556598073,0.01783726631391145,0.017622260652902767,0.017410503382648653,0.0172019327895186,0.016996488596511677,0.016794111923851166,0.016594745250807518,0.016398332378698744,0.016204818395032287,0.01601414963875198,0.01582627366654621,0.01564113922019128,0.015458696194888245,0.015278895608562751,0.015101689572095218,0.014927031260453017,0.014754874884687434,0.014585175664776871,0.014417889803280437,0.014252974459777858,0.01409038772607281,0.013930088602126,0.013772036972705107,0.013616193584720061,0.013462520025223964,0.013310978700060079,0.013161532813127543,0.013014146346254227,0.012868784039650605,0.01272541137292863,0.012583994546666453,0.01244450046450421,0.012306896715747355,0.01217115155846977,0.012037233903094592,0.0119051132964396,0.011774759906214356,0.011646144505949401,0.01151923846035073,0.011394013711061749,0.011270442762820892,0.011148498670002914,0.011028155023533413,0.01090938593815999,0.010792166040075815,0.010676470454879933,0.01056227479586524,0.01044955515262572,0.010338288079969083,0.0102284505871306,0.01012002012727574,0.010012974587283074,0.009907292277801457,0.009802951923568294,0.009699932653987088,0.00959821399395217,0.009497775854914957,0.009398598526183976,0.009300662666453333,0.009203949295549005,0.009108439786391642,0.009014115857165945,0.008920959563691284,0.008828953291989733,0.00873807975104124,0.008648321965726092,0.00855966326994533,0.00847208729991531,0.00838557798763132,0.00830011955449644,0.008215696505107617,0.008132293621199332,0.00804989595573634,0.007968488827153224,0.007888057813737024,0.007808588748146145,0.007730067712065616,0.007652481030992271,0.00757581526914674,0.007500057224510078,0.007425193923978351,0.007351212618636361,0.007278100779143581,0.007205846091231123,0.007134436451305859,0.00706385996216012,0.006994104928781133,0.006925159854261576,0.006857013435805343,0.006789654560827071,0.006723072303143993,0.006657255919254646,0.006592194844705871,0.006527878690543126,0.006464297239842979,0.006401440444325067,0.006339298421042796,0.006277861449147893,0.006217119966730401,0.006157064567729591,0.006097685998914897,0.006038975156935638,0.005980923085435632,0.005923520972234029,0.0058667601465683655,0.005810632076399001,0.0057551283657742815,0.005700240752252354,0.005645961104381472,0.005592281419234979,0.005539193820000397,0.005486690553621103,0.005434763988490168,0.005383406612192688,0.0053326110292985715,0.005282369959202135,0.005232676234008302,0.0051835227964646185,0.005134902697936366,0.005086809096425979,0.005039235254633987,0.004992174538060964,0.004945620413150239,0.0048995664454684566,0.004854006297925498,0.004808933729031069,0.004764342591187851,0.004720226829019845,0.004676580477736185,0.004633397661527389,0.004590672591995987,0.004548399566618729,0.004506572967240294,0.004465187258598407,0.004424236986877718,0.004383716778294296,0.0043436213377081945,0.004303945447264023,0.20235072605678572,0.2021785115295853,0.20166440156637389,0.20081589493963425,0.1996451572830605,0.19816854944453716,0.19640601740129132,0.19438038655899212,0.19211660640801057,0.1896409900602528,0.18698048791630717,0.18416202679504123,0.1812119366129391,0.17815547734893067,0.175016470538834,0.17181703254048264,0.16857740159560466,0.1653158473047994,0.1620486493462341,0.158790131811138,0.155552740060697,0.1523471482008042,0.1491823868397299,0.14606598251204508,0.14300411798960364,0.1400329223264986,0.1371776587932695,0.134431852453479,0.13178949065432186,0.12924498343133398,0.12679312781550614,0.12442907561366505,0.12214830428425083,0.11994659057561556,0.11781998663289422,0.11576479831384184,0.11377756548398382,0.11185504408767989,0.10999418981459208,0.10819214320144864,0.10644621602658913,0.10475387887045959,0.10311274972900988,0.10152058357902657,0.09997526280523457,0.0984747884084352,0.09701727192234125,0.0956009279742533,0.09422406743123059,0.09287771827197215,0.0915507812876594,0.09024378776884949,0.08895725281129968,0.08769158204214857,0.08644708213721833,0.0852239706645315,0.08402238525324952,0.08284239209744867,0.08168399381193195,0.08054713666319359,0.079431717203009,0.07833758833499534,0.07726456484638743,0.07621242843817747,0.07518093228696689,0.07416980517160252,0.07317875519680149,0.07220747314490511,0.07125563548557072,0.07032290707170107,0.06940894354827831,0.06851339349921712,0.06763590035558206,0.06677610408695431,0.06593364269610089,0.0651081535355293,0.06429927446310359,0.06350664485241764,0.06272990647234425,0.061968704248932374,0.06122268692166914,0.06049150760501771,0.059774824265215604,0.059072300121323064,0.05823352044110604,0.057278145712402265,0.05634298332736953,0.05542754113734755,0.05453133735164346,0.0536539006561351,0.052794770282768834,0.05195349603598132,0.051129638281541476,0.05032276790266018,0.04953246622774952,0.04875832493372858,0.047999945928387425,0.047256941214883434,0.04652893274118168,0.04581555223688542,0.045116441039642255,0.04443124991309267,0.0437596388580429,0.04310127691842528,0.04245584198335586,0.04182302058648005,0.041202507703639195,0.04059400654977348,0.03999722837582501,0.03941189226636565,0.038837724938512896,0.038274460542661815,0.03772184046547361,0.03717961313547495,0.036647533831612816,0.03612536449500624,0.0356128735441196,0.035109835693543597,0.034616031776502305,0.03413124857122498,0.0336552786312452,0.03318792011968805,0.032728976647585485,0.03227825711623751,0.03183557556360523,0.0314007510147457,0.03097360733624317,0.030553973094607834,0.03014168141859964,0.029736569865408843,0.02933848029065462,0.028947258722120024,0.028562755237158684,0.028184823843699625,0.027813322364777706,0.027448112326496785,0.027089058849365567,0.026736030542908067,0.026388899403472877,0.026047540715163676,0.025711832953790696,0.025381657693784983,0.02505689951797534,0.024737445930153073,0.024423187270350352,0.024114016632737247,0.02380982978608005,0.023510525096670398,0.023216003453655425,0.022926168196694734,0.02264092504587727,0.022360182033815484,0.022083849439865622,0.021811839726395138,0.021544067477035654,0.02128044933686367,0.02102090395443495,0.020765351925628436,0.02051371573923119,0.020265919724211285,0.020021889998623553,0.019781554420098917,0.019544842537856006,0.019311685546198606,0.019082016239440613,0.01885576896821532,0.018632879597126936,0.018413285463690823,0.018196925338533006,0.017983739386798387,0.0177736691307314,0.017566657413393014,0.017362648363469197,0.01716158736114576,0.016963421005006803,0.016768097079926388,0.01657556452592026,0.01638577340792904,0.01619867488649522,0.016014221189315204,0.015832365583629777,0.015653062349429113,0.015476266753448029,0.01530193502391842,0.015130024326064818,0.014960492738311133,0.014793299229178858,0.014628403634856284,0.014465766637410603,0.014305349743631882,0.014147115264481045,0.013991026295126344,0.013837046695548175,0.013685141071696974,0.013535274757180405,0.013387413795471573,0.013241524922615707,0.013097575550421486,0.012955533750124279,0.012815368236500185,0.01267704835242517,0.012540544053859218,0.012405825895245085,0.012272865015307674,0.012141633123244228,0.012012102485287968,0.01188424591164057,0.011758036743757166,0.011633448841974942,0.011510456573476432,0.011389034800572503,0.011269158869301828,0.011150804598332807,0.011033948268159904,0.010918566610587805,0.010804636798489593,0.010692136435837319,0.010581043547992287,0.010471336572249022,0.010362994348624924,0.010255996110890361,0.010150321477827389,0.010045950444716654,0.009942863375041208,0.009841040992402537,0.009740464372644062,0.009641114936171789,0.009542974440472208,0.009446024972817635,0.009350248943154964,0.009255629077172667,0.009162148409541842,0.009069790277323202,0.00897853831353993,0.008888376440908107,0.008799288865721695,0.008711260071888806,0.008624274815111365,0.008538318117209183,0.008453375260580842,0.008369431782798413,0.00828647347133428,0.008204486358412047,0.008123456715983513,0.008043371050824309,0.007964216099746775,0.007885978824926046,0.007808646409337943,0.0077322062523020995,0.007656645965132267,0.007581953366887037,0.007508116480220109,0.007435123527327985,0.007362962925989562,0.00729162328569943,0.007221093403889131,0.007151362262235466,0.007082419023053019,0.007014253025770102,0.006946853783482691,0.006880210979588634,0.0068143144644967355,0.00674915425241011,0.006684720518182566,0.006621003594243479,0.006557993967593248,0.006495682276864401,0.006434059309447981,0.0063731159986842425,0.006312843421113528,0.0062532327937890675,0.0061942754716478865,0.006135962944939181,0.006078286836708303,0.006021238900336286,0.005964811017130861,0.005908995193970858,0.005853783561000543,0.005799168369373164,0.005745141989043556,0.005691696906606068,0.005638825723179904,0.005586521152338391,0.00553477601808193,0.0054835832528542326,0.005432935895598664,0.005382827089856662,0.00533325008190492,0.005284198218931578,0.0052356649472497675,0.005187643810548865,0.005140128448180329,0.005093112593480008,0.005046590072124084,0.005000554800518575,0.0049550007842221015,0.004909922116399518,0.0048653129763078715,0.004821167627812327,0.004777480417932012 +0.09154924045302677,0.09138181259525248,0.09088373778479016,0.09006736917229759,0.08895241814532165,0.0875647484936505,0.0859348867150156,0.08409640284939304,0.08208431046621115,0.07993360915907648,0.07767805602764566,0.07534921258059354,0.07297577719911438,0.07058318508478022,0.06819343911858936,0.06582512579129268,0.06349356855580818,0.0612110743345431,0.05898723530669015,0.056829255732802265,0.054756455115131476,0.05280154237008069,0.05095718136442819,0.04919835903557117,0.04749960448864599,0.04586199031139689,0.04428596878696612,0.04277133984526459,0.04131738155201091,0.039922962247390656,0.038586635761152385,0.03730672137319399,0.036081370270677766,0.03490862022670724,0.033786440130743126,0.032712765866837266,0.031685528882656404,0.030702678634491432,0.02976219993993708,0.028862126126469927,0.02800054873335957,0.02717562440785618,0.026385579534191354,0.025628713045126147,0.02490339778959102,0.024208080764973376,0.02354128246772582,0.022901595569820774,0.022287683089912472,0.021698276196001443,0.021132171749672555,0.02058822967999923,0.020065370257082354,0.01956257132033797,0.01907886550447238,0.018613337496255683,0.01816512134711902,0.01773339786016013,0.01731739206492221,0.01691637078912237,0.016529640333232794,0.0161565442511564,0.01579646123821997,0.015448803126114278,0.015113012983188524,0.014788563317623146,0.014474954380316022,0.014171712563857707,0.013878388893654822,0.013594557607074337,0.01331981481636577,0.013053777251129684,0.012796081076106943,0.01254638078016149,0.01230434813244158,0.012069671201826183,0.011842053435942,0.011621212796174235,0.011406880945276332,0.011172694876792226,0.010912858633937105,0.01066112212266747,0.010417164126769204,0.010180678779080951,0.00995137471761785,0.009728974292967783,0.00951321282364929,0.009303837896358694,0.009100608708207369,0.008903295448253329,0.008711678715808581,0.008525548973156065,0.008344706030488785,0.008168958561007727,0.007998123644264409,0.007832026335957669,0.007670499262516247,0.00751338223890123,0.007360521908181815,0.007211771401518917,0.007066990017290258,0.006926042918174863,0.006788800845084566,0.006655139846917454,0.006524941025162648,0.00639809029245667,0.006274478144248049,0.006153999442784358,0.00603655321268033,0.005922042447384137,0.0058103739258931406,0.005701458039116892,0.005595208625324677,0.005491542814144315,0.005390380878623222,0.005291646094883035,0.005195264608934844,0.005101165310248688,0.005009279711690798,0.004919541835475946,0.004831888104793755,0.00474625724079529,0.00466259016464249,0.004580829904343562,0.004500921506108784,0.0044228119499857355,0.004346450069538884,0.004271786475357248,0.004198773482186602,0.004127365039490262,0.0040575166652614845,0.00398918538291347,0.003922329661087346,0.0038569093562261575,0.00379288565777302,0.003730221035856,0.003668879191336074,0.0036088250080959106,0.0035500245074565565,0.0034924448046165647,0.0034360540670097875,0.0033808214744898727,0.003326717181248853,0.003273712279385495,0.0032217787640434693,0.003170889500041142,0.0031210181899234608,0.0030721393433658993,0.00302422824786648,0.0029772609406644294,0.0029312141818283173,0.0028860654284569025,0.002841792809943017,0.002798375104249391,0.002755791715150108,0.0027140226503939865,0.0026730485007458536,0.0026328504198682287,0.002593410105003485,0.002554709778421217,0.0025167321695969084,0.0024794604980878775,0.0024428784570775944,0.002406970197557414,0.002371720313118391,0.002337113825326275,0.0023031361696550976,0.002269773181953697,0.0022370110854241657,0.0022048364780890358,0.002173236320726814,0.0021421979252564567,0.0021117089435506754,0.002081757356661793,0.002052331464441603,0.002023419875539552,0.0019950114977633276,0.001967095528787533,0.001939661447194991,0.0019126990038387994,0.0018861982135108758,0.0018601493469051383,0.0018345429228638515,0.001809369700894733,0.0017846206739495195,0.0017602870614526662,0.0017363603025706345,0.0017128320497123517,0.0016896941622521731,0.0016669387004657255,0.0016445579196717802,0.0016225442645712194,0.0016008903637759109,0.0015795890245205737,0.0015586332275498035,0.0015380161221747904,0.0015177310214926324,0.001497771397762213,0.0014781308779313873,0.001458803239308799,0.0014397824053762659,0.0014210624417356637,0.0014026375521857702,0.0013845020749242165,0.0013666504788703358,0.0013490773601037662,0.001331777438415718,0.0013147455539680643,0.0012979766640567115,0.0012814658399757802,0.0012652082639783434,0.001249199226331236,0.0012334341224600124,0.0012179084501810677,0.0012026178070182027,0.0011875578875999752,0.0011727244811360071,0.001158113468968857,0.0011437208221991384,0.0011295425993813363,0.0011155749442881555,0.0011018140837404928,0.001088256325501651,0.0010748980562330318,0.0010617357395094713,0.0010487659138924276,0.0010359851910585606,0.0010233902539826198,0.0010109778551722953,0.0009987448149535963,0.000986688019805017,0.000974804420739105,0.00096309103172945,0.000951544928182255,0.0009401632454505899,0.0009289431773901383,0.0009178819749552652,0.0009069769448336815,0.0008962254481190856,0.0008856248990201717,0.0008751727636049765,0.0008648665585796381,0.0008547038501000677,0.0008446822526160827,0.0008347994277465848,0.0008250530831849862,0.0008154409716339289,0.000805960889768555,0.0007966106772270545,0.0007873882156282242,0.0007782914276148036,0.0007693182759219562,0.000760466762470285,0.0007517349274822579,0.000743120848621855,0.000734622640156387,0.0007262384521399726,0.000717966469617993,0.0007098049118520533,0.0007017520315645125,0.0006938061142024646,0.0006859654772202692,0.0006782284693802182,0.00067059347007092,0.0006630588886425673,0.0006556231637590594,0.0006482847627661421,0.0006410421810752583,0.0006338939415627366,0.0006268385939836154,0.0006198747144000489,0.0006130009046236493,0.0006062157916714421,0.0005995180272350416,0.0005929062871628072,0.0005863792709543181,0.0005799357012672148,0.0005735743234357905,0.0005672939050011085,0.0005610932352523942,0.000554971124779189,0.0005489264050342605,0.0005429579279067611,0.0005370645653054577,0.0005312452087517188,0.0005254987689820983,0.0005198241755600366,0.0005142203764967331,0.0005086863378807348,0.0005032210435160669,0.0004978234945687766,0.0004924927092214365,0.0004872277223356996,0.00048202758512247716,0.00047689136481960927,0.0004718181443769155,0.00046680702214821953,0.00046185711159044574,0.0004569675409694104,0.0004521374530722009,0.11157165976462197,0.11136951272107888,0.11076815376944683,0.10978249871816871,0.10843634525479384,0.1067609135908591,0.10479304445443433,0.10257324173943086,0.10014373986910642,0.09754674500918296,0.09482295434616132,0.09201040901221866,0.0891436922903177,0.0862534506869971,0.08336619325164035,0.08050431350458026,0.0776862763245412,0.07492691637124263,0.07223780243436977,0.06962763136739304,0.06712451843193736,0.06476377064733112,0.06253533673036102,0.060418420598082355,0.05837381285636034,0.056400406616795275,0.05449905306367535,0.052669791906726875,0.050912008450698154,0.04922456932668289,0.047605938356303015,0.046054274367265516,0.044567512924428426,0.04314343394767612,0.041779717104295705,0.040473986725839836,0.03922384783329626,0.03802691467789193,0.03688083302986849,0.035783297281826665,0.034732063280564385,0.03372495766420773,0.03275988436012914,0.03183482879324688,0.0309478602630682,0.030097132869573318,0.029280885301729672,0.028497439746397703,0.027745200128303685,0.027022649852549065,0.026328349188334047,0.0256609324055205,0.025019104753250525,0.024401639351433243,0.023807374050747298,0.023235208304522092,0.022684100085727826,0.022153062874169883,0.02164116273238382,0.021147515483384744,0.02067128399922967,0.02021167560591997,0.01976793960753767,0.019339364930418254,0.018925277886529358,0.018525040054035137,0.018138046272066933,0.01776372274607139,0.017401525259631387,0.017050937488350727,0.016711469411185485,0.016382655814556724,0.01606405488453415,0.01575524688245042,0.015455832899400838,0.01516543368519489,0.014883688547507923,0.014610254317121447,0.01434480437533531,0.014065291590031176,0.013741983395410542,0.01342865696118704,0.01312491959685279,0.012830397238738585,0.012544733433763406,0.012267588384361622,0.011998638050691391,0.011737573306496848,0.011484099145201534,0.011237933933042102,0.010998808706261647,0.010766466509554462,0.010540661773167722,0.010321159726207093,0.01010773584386969,0.00990017532647265,0.00969827260828959,0.00950183089432681,0.009310661723312894,0.009124584555270964,0.008943426382159362,0.008767021360166834,0.008595210462330498,0.008427841150249533,0.008264767063730081,0.008105847727283197,0.007950948272463591,0.007799939175105727,0.007652696006566045,0.00750909919815212,0.00736903381795659,0.007232389359373062,0.0070990595406156725,0.006968942114600502,0.0068419386885993656,0.006717954553101429,0.006596898519360512,0.006478682765137453,0.006363222688171746,0.00625043676695607,0.006140246428402226,0.006032575922019118,0.0059273522002433925,0.005824504804587954,0.005723965757287347,0.0056256694581479725,0.005529552586319137,0.005435554006722819,0.005343614680895567,0.005253677582005325,0.0051656876138285995,0.005079591533477,0.004995337877679779,0.004912876892437595,0.004832160465876109,0.004753142064131685,0.004675776670120186,0.004600020725039085,0.004525832072467163,0.004453169904932479,0.004381994712823141,0.004312268235528831,0.004243953414700681,0.0041770143495265324,0.004111416253925006,0.004047125415562282,0.0039841091566080785,0.003922335796144542,0.003861774614150733,0.0038023958169878004,0.0037441705043151125,0.003687070637367999,0.003631069008537076,0.0035761392121862723,0.0035222556166535366,0.0034693933373806268,0.0034175282111184985,0.003366636771162345,0.0033166962235677525,0.0032676844243047453,0.0032195798573085507,0.0031723616133851255,0.003126009369936761,0.0030805033714693102,0.0030358244108480586,0.002991953811269272,0.0029488734089172107,0.0029065655362754696,0.0028650130060668046,0.0028241990957931203,0.0027841075328507202,0.0027447224801970195,0.002706028522544178,0.00266801065305959,0.0026306542605507724,0.002593945117115192,0.0025578693662356836,0.002522413511303936,0.0024875644045530285,0.0024533092363845004,0.0024196355250725434,0.002386531106830662,0.002353984126226884,0.002321983026932126,0.0022905165427905987,0.002259573689197997,0.002229143754776098,0.0021992162933320188,0.0021697811160915426,0.0021408282841947662,0.0021123481014455386,0.0020843311073038733,0.002056768070112375,0.002029649980548284,0.002002968045291418,0.0019767136809014825,0.0019508785078957303,0.0019254543450199521,0.0019004332037059306,0.001875807282707451,0.001851568962909787,0.001827710802305095,0.0018042255311283184,0.0017811060471474654,0.0017583454111032074,0.001735936842291425,0.0017138737142848321,0.0016921495507878697,0.0016707580216203798,0.0016496929388258492,0.001628948252898937,0.0016085180491293553,0.0015883965440570591,0.0015685780820352973,0.0015490571318979877,0.001529828283727039,0.0015108862457173216,0.0014922258411350564,0.001473842005366863,0.00145572978305626,0.0014378843253249549,0.0014203008870753572,0.0014029748243725977,0.0013859015919026607,0.0013690767405043314,0.001352495914772814,0.0013361548507318946,0.0013200493735733897,0.0013041753954609828,0.0012885289133966148,0.0012731060071473148,0.0012579028372308248,0.0012429156429574584,0.001228140740527218,0.0012135745211798586,0.0011992134493963558,0.0011850540611503845,0.0011710929622076468,0.0011573268264723176,0.0011437523943785648,0.0011303664713259302,0.001117165926157429,0.0011041476896784083,0.0010913087532157652,0.0010786461672156577,0.0010661570398787668,0.0010538385358319212,0.001041687874835171,0.001029702330522724,0.0010178792291774426,0.0010062159485373133,0.0009947099166332204,0.000983358610657106,0.0009721595558592958,0.0009611103244746329,0.0009502085346761669,0.0009394518495557815,0.0009288379761308719,0.0009183646643765347,0.000908029706282064,0.0008978309349316523,0.0008877662236081403,0.0008778334849193486,0.0008680306699464107,0.0008583557674131402,0.0008488068028763302,0.0008393818379360309,0.0008300789694653269,0.0008208963288592409,0.0008118320813018194,0.0008028844250514002,0.0007940515907432073,0.0007853318407088982,0.0007767234683125931,0.0007682247973030303,0.0007598341811810951,0.000751550002582741,0.0007433706726765539,0.0007352946305756469,0.0007273203427636636,0.000719446302534113,0.0007116710294431856,0.000703993068775279,0.000696410991021126,0.0006889233913680441,0.000681528889202198,0.0006742261276221709,0.0006670137729640296,0.0006598905143372282,0.0006528550631711565,0.000645906152772227,0.0006390425378908428,0.0006322629942984327,0.0006255663183740077,0.0006189513267000417,0.0006124168556675951,0.0006059617610901104,0.0005995849178260633,0.0005932852194099446,0.000587061577691496,0.13601737570210815,0.1357730977428659,0.135046411127369,0.13385535614708108,0.1322287109628954,0.13020422107948687,0.1278264144388252,0.1251442300815016,0.12220867911766485,0.11907071872945385,0.11577946499112349,0.11238081103018356,0.10891646369263681,0.10542337071258069,0.10193348369792758,0.09847378916986184,0.09506653771596946,0.09172960664146614,0.08847694110667167,0.08531903003276113,0.08229490420234842,0.07944209769161241,0.07674787473144519,0.07419648147269728,0.07173796131390396,0.06936198333170933,0.06706996650600117,0.06486232043303994,0.06273863407988184,0.060697839881102805,0.05873835462294327,0.056858199049791745,0.055055098364485036,0.053326565852766586,0.05166997180206926,0.05008259975056651,0.048561691926649976,0.047104485544681995,0.045708241425498945,0.04437026622018508,0.04308792933842119,0.041858675522068976,0.04068003386138697,0.039549623925399596,0.038465159568826075,0.03742445088393984,0.0364254046856403,0.03546602385007609,0.034544405769828715,0.033658740140725285,0.03280730625511848,0.031988469943152915,0.03120068027583527,0.030442466120881473,0.029712432623437642,0.0290092576683999,0.0283316883683307,0.027678537610717327,0.02704868068994315,0.02644105204253648,0.02585464209888532,0.025288494260173256,0.024741702005866555,0.024213406134336177,0.02370279213703205,0.02320908770501682,0.02273156036535885,0.022269515243969654,0.021822292950771958,0.021389267582625014,0.020969844839083245,0.020563460245933873,0.020169577481331063,0.019787686799370013,0.019417303546005536,0.019057966762307213,0.01870923787022161,0.01837069943614505,0.018041954007815948,0.017710651342563933,0.017308328880130397,0.016918306994426414,0.016540105714807542,0.016173267665182296,0.015817356841203913,0.015471957460350528,0.01513667288031217,0.014811124581421812,0.014494951209094643,0.014187807672513226,0.013889364296031825,0.013599306019982207,0.01331733164780331,0.013043153136587464,0.012776494928339974,0.012517093319417938,0.012264695865784048,0.012019060821849859,0.01177995661085289,0.011547161324820443,0.011320462252313276,0.011099655432260403,0.010884545232292108,0.01067494395010359,0.010470671436454646,0.01027155473851452,0.010077427762337433,0.00988813095333841,0.009703510993698776,0.0095234205157179,0.009347717830172303,0.0091762666688114,0.009008935940176356,0.008845599497967501,0.00868613592125253,0.008530428305834562,0.008378364066150503,0.00822983474710976,0.008084735845309794,0.007942966639115359,0.007804430027103992,0.00766903237442024,0.0075366833666040585,0.007407295870489135,0.007280785801782737,0.007157071998974357,0.007036076103229376,0.006917722443950295,0.006801937929707751,0.0066886519442531335,0.006577796247353689,0.006469304880194026,0.0063631140751096394,0.00625916216942885,0.006157389523214599,0.0060577384407032135,0.0059601530952590204,0.005864579457663031,0.00577096522757101,0.005679259767983733,0.005589414042576932,0.0055013805557550385,0.005415113295291901,0.0053305676774332966,0.0052477004943438064,0.0051664698637812236,0.00508683518089668,0.005008757072055782,0.004932197350586433,0.004857118974362056,0.004783486005135529,0.004711263569539183,0.004640417821677739,0.00457091590723766,0.0045027259290444065,0.004435816914002598,0.004370158781353348,0.004305722312193273,0.004242479120195581,0.004180401623480646,0.004119463017585679,0.004059637249482623,0.004000898992601333,0.003943223622811712,0.0038865871953240585,0.0038309664224675482,0.0037763386523099207,0.0037226818480802152,0.003669974568363079,0.0036181959480299846,0.003567325679876805,0.003517343996938861,0.0034682316554530755,0.003419969918443078,0.003372540539899454,0.003325925749531458,0.003280108238066558,0.0032350711430761845,0.003190798035304576,0.0031472729054828103,0.0031044801516067143,0.0030624045666608124,0.003021031326771025,0.0029803459797675337,0.0029403344341438677,0.0029009829483950637,0.0028622781207206806,0.002824206879078388,0.0027867564715751266,0.002749914457181386,0.002713668696758184,0.0026780073443834125,0.002642918838966602,0.002608391896141807,0.0025744155004265956,0.002540978897639178,0.002508071587562663,0.002475683316847665,0.002443804072144969,0.002412424073458496,0.0023815337677121945,0.002351123822521844,0.002321185120164798,0.0022917087517403925,0.00226268601151465,0.002234108391441493,0.0022059675758556883,0.0021782554363304575,0.002150964026694054,0.0021240855782003383,0.0020976124948466897,0.002071537348835673,0.0020458528761743535,0.0020205519724068605,0.0019956276884759722,0.001971073226708268,0.001946881936919976,0.0019230473126384511,0.0018995629874357304,0.0018764227313702673,0.0018536204475336094,0.0018311501686975287,0.0018090060540596148,0.0017871823860829963,0.0017656735674275218,0.0017444741179695712,0.0017235786719068406,0.0017029819749463733,0.0016826788815723825,0.0016626643523915228,0.0016429334515530656,0.001623481344241913,0.0016043032942412551,0.0015853946615637792,0.0015667509001484356,0.001548367555620956,0.0015302402631163683,0.0015123647451608306,0.0014947368096119235,0.0014773523476547677,0.0014602073318526647,0.001443297814250588,0.0014266199245293741,0.0014101698682098894,0.001393943924905027,0.0013779384466182717,0.0013621498560874204,0.0013465746451723104,0.0013312093732845483,0.0013160506658589672,0.001301095212864764,0.0012863397673554702,0.001271781144056773,0.0012574162179904388,0.0012432419231341182,0.0012292552511153705,0.0012154532499391265,0.0012018330227475656,0.0011883917266116986,0.0011751265713531452,0.0011620348183960238,0.0011491137796474948,0.0011363608164063567,0.001123773338299066,0.001111348802241851,0.0010990847114289131,0.001086978614345459,0.0010750281038049837,0.0010632308160103934,0.001051584429637705,0.0010400866649424212,0.0010287352828874349,0.0010175280842920657,0.0010064629090015909,0.0009955376350768955,0.0009847501780032182,0.0009740984899180917,0.0009635805588575292,0.0009531944080200468,0.000942938095048276,0.0009328097113271723,0.0009228073812990151,0.0009129292617942941,0.000903173541378235,0.00089353843971249,0.0008840222069317628,0.0008746231230345719,0.0008653394972883106,0.000856169667647824,0.0008471120001873096,0.0008381648885452912,0.0008293267533819641,0.0008205960418490958,0.0008119712270717784,0.0008034508076418604,0.0007950333071228608,0.0007867172735657524,0.0007785012790357509,0.0007703839191495663,0.0007623638126228872,0.16587652025117722,0.16558103911050606,0.16470204566609936,0.16326140100804437,0.16129397121979042,0.15884547328241222,0.1559698188100851,0.15272623399707944,0.14917642235276174,0.14538198979911274,0.14140228421733805,0.13729272904239426,0.13310366551417302,0.12887966831606965,0.12465926723250273,0.12047499197484322,0.11635365506190087,0.11231679441323332,0.10838120918009589,0.10455955867809717,0.10090850462699444,0.09746284123756262,0.09420705869204991,0.09112700518649323,0.0881736294381968,0.0853154087535409,0.0825545648039036,0.07989206287382865,0.07732783833540124,0.07486099485160728,0.0724899756126711,0.07021270959268952,0.06802673517925914,0.06592930366663878,0.0639174650844464,0.06198813871493252,0.06013817047291148,0.05836437911318662,0.056663593010969224,0.05503267904510416,0.05346856490979847,0.051968255993316136,0.05052884779356481,0.049147534691292176,0.047821615771410295,0.04654849827008744,0.045325699128599406,0.04415084505257678,0.04302167140544817,0.0419360202062557,0.040891837452612406,0.03988716994849292,0.038920161782265324,0.037989050571986316,0.037092163571429373,0.03622791371106524,0.0353947956322029,0.034591381759543724,0.0338163184467645,0.03306832222106248,0.03234617614568495,0.03164872631374955,0.03097487848218324,0.03032359485102447,0.029693890990435127,0.02908483291562701,0.028495534308105096,0.02792515388037138,0.027372892880227494,0.02683799273012194,0.02631973279645644,0.02581742828349585,0.02533042824628547,0.024858113716931994,0.024399895938603804,0.02395521470165553,0.023523536776441804,0.023104354437496293,0.02269718407396262,0.022301564881351463,0.021807584186015277,0.021321975041809625,0.02085093936173815,0.02039391790396417,0.01995037735663733,0.019519808954280585,0.0191017271755214,0.018695668517164477,0.01830119033986372,0.017917869780966527,0.017545302730371443,0.01718310286548358,0.016830900741628692,0.016488342934485766,0.016155091231333168,0.01583082186810195,0.015515224809429427,0.01520800306906532,0.01490887206818496,0.014617559029290026,0.014333802403542695,0.014057351329517895,0.013787965121471159,0.013525412785368925,0.013269472561013325,0.013019931488714954,0.012776584999061643,0.012539236524426626,0.012307697130932556,0.012081785169692464,0.011861325946198945,0.011646151406816895,0.011436099841401114,0.011231015601107728,0.011030748830548064,0.010835155213464606,0.010644095731171891,0.010457436433050462,0.010275048218415114,0.01009680662913874,0.009922591652431449,0.009752287533222312,0.009585782595619874,0.009422969072962467,0.009263742945989003,0.009108003788704314,0.008955654621522698,0.008806601771306,0.008660754737935906,0.008518026067071166,0.008378331228776405,0.008241588501711982,0.008107718862601141,0.007976645880703046,0.007848295617039189,0.007722596528126855,0.007599479373999744,0.007478877130295726,0.007360724904210877,0.007244959854129913,0.007131521112746837,0.0070203497135115575,0.006911388520235382,0.006804582159703797,0.006699876957153453,0.006597220874471415,0.006496563450992499,0.0063978557467677605,0.006301050288188878,0.0062061010158573435,0.0061129632345958,0.006021593565497689,0.0059319498999266486,0.005843991355372213,0.005757678233078234,0.005672971977365071,0.005589835136564915,0.005508231325502989,0.005428125189451751,0.0053494823694939546,0.005272269469232,0.005196454022785488,0.0051220044640173795,0.005048890096939588,0.00497708106724354,0.004906548334908686,0.0048372636478431355,0.004769199516510017,0.00470232918950116,0.004636626630015479,0.004572066493204922,0.0045086241043525285,0.004446275437845405,0.004384997096913261,0.0043247662940982205,0.004265560832427157,0.004207359087257348,0.004150139988769356,0.004093883005078305,0.0040385681259421935,0.003984175847040695,0.003930687154802767,0.0038780835117619146,0.0038263468424162175,0.0037754595195760737,0.00372540435117875,0.0036761645675518827,0.0036277238091096593,0.003580066114462792,0.003533175908929057,0.0034870379934273106,0.003441637533741117,0.0033969600501376684,0.003352991407329632,0.0033097178047649485,0.0032671257672350585,0.0032252021357877243,0.0031839340589339803,0.003143308984138812,0.003103314649583565,0.0030639390761924737,0.0030251705599118957,0.0029869976642340136,0.002949409212955786,0.002912394283165539,0.0028759421984473647,0.002840042522297819,0.002804685051745736,0.002769859811168677,0.0027355570462994625,0.0027017672184148273,0.002668480998701723,0.002635689262793771,0.0026033830854723656,0.0025715537355274144,0.0025401926707706826,0.002509291533198602,0.0024788421442979254,0.002448836500490101,0.002419266768709456,0.0023901252821112414,0.002361404535903982,0.0023330971833036363,0.0023051960316043466,0.002277694038362329,0.002250584307689599,0.0022238600866527655,0.0021975147617750955,0.002171541855637233,0.0021459350235739885,0.002120688050463869,0.0020957948476088405,0.002071249449700423,0.0020470460118707356,0.0020231788068247897,0.0019996422220518164,0.001976430757113481,0.001953539021005595,0.001930961729592358,0.0019086937031098635,0.0018867298637371638,0.001865065233232963,0.0018436949306351736,0.0018226141700225047,0.0018018182583353908,0.0017813025932547335,0.0017610626611366835,0.0017410940350020521,0.0017213923725779014,0.0017019534143908673,0.0016827729819098533,0.0016638469757369217,0.0016451713738451642,0.0016267422298614732,0.0016085556713938526,0.0015906078984012873,0.0015728951816051248,0.0015554138609407844,0.0015381603440488471,0.001521131104803686,0.001504322681879529,0.0014877316773521903,0.001471354755335622,0.0014551886406526202,0.0014392301175379743,0.0014234760283740545,0.0014079232724573019,0.001392568804794915,0.0013774096349311465,0.0013624428258017514,0.0013476654926166296,0.001333074801769273,0.0013186679697725192,0.0013044422622198197,0.0012903949927715753,0.0012765235221652235,0.0012628252572492685,0.0012492976500399803,0.0012359381968003998,0.0012227444371411523,0.0012097139531420367,0.0011968443684944687,0.0011841333476637701,0.001171578595070868,0.0011591778542931498,0.0011469289072834055,0.00113482957360705,0.0011228777096967092,0.0011110712081238477,0.0010994079968869416,0.0010878860387160275,0.0010765033303926275,0.0010652579020853526,0.0010541478167003055,0.0010431711692460322,0.0010323260862128434,0.0010216107249656416,0.0010110232731505478,0.0010005619481145314,0.0009902249963378584,0.2023650346658176,0.20200721398676347,0.20094280084310132,0.19919834469923742,0.19681617826562228,0.19385178824604649,0.19037057608308308,0.18644435004259688,0.1821478746857609,0.1775557453075954,0.17273977158868672,0.1677669656570544,0.16269815032340001,0.15758714266578489,0.15248042949763232,0.14741723297558443,0.14242986240525918,0.13754425699971604,0.13278063909998533,0.128155592391916,0.12374927966098506,0.11958864631030804,0.11565525949794443,0.11193238821030918,0.10838485530226294,0.10495011589636605,0.101627664259181,0.09841927855223377,0.09532544378514865,0.09234559083286546,0.08947830436089182,0.08672150158915408,0.08407258437081404,0.08152856731723447,0.07908618475029042,0.07674197917731444,0.07449237381302704,0.07233373145471186,0.07026240177780856,0.06827475887773832,0.06636723065084237,0.06453632139066583,0.06277862877870236,0.06109085627246061,0.05946982173890699,0.057912463046018006,0.05641584120884171,0.05497714158661428,0.0535936735424957,0.05226286890578213,0.05098227951574965,0.0497495740756178,0.04856253450262635,0.04741905192493404,0.04631712244660946,0.04525484277784088,0.04423040580732014,0.04324209617736414,0.04228828590879299,0.041367430111504795,0.0404780628077904,0.03961879288803232,0.03878830021261306,0.037985331869134914,0.03720869859022119,0.03645727133429587,0.03572997802928958,0.035025800477475735,0.03434377141823083,0.033682971744492626,0.033042527867896306,0.03242160922711023,0.03181942593347702,0.031235226547909185,0.030668295982893466,0.030117953523436932,0.02958355096091197,0.029064470833828678,0.02856012476976217,0.028069951922844026,0.02748596222818692,0.026881191725134264,0.026294390798554522,0.025724875688526213,0.02517199408502297,0.024635123464512066,0.02411366952324369,0.023607064701393232,0.023114766792499148,0.02263625763300308,0.022171041867006122,0.021718645781628774,0.02127861620868575,0.020850519488612114,0.02043394049285249,0.02002848170115248,0.019633762330426702,0.019249417512059497,0.01887509751473604,0.01851046701004184,0.01815520437826951,0.017809001052030184,0.017471560895400993,0.017142599616517006,0.01682184421161385,0.016509032438674354,0.016203912318939837,0.015906241664664925,0.015615787631575489,0.015332326294618403,0.015055642245648693,0.014785528211800165,0.014521784693364332,0.014264219620059039,0.014012648024662603,0.01376689173302806,0.013526779069564608,0.013292144577330134,0.013062828751917248,0.012838677788385962,0.01261954334052076,0.012405282291744299,0.012195756537055383,0.01199083277540201,0.011790382311921373,0.011594280869532665,0.01140240840937961,0.011214648959658489,0.011030890452395773,0.010851024567752325,0.010674946585476252,0.010502555243126259,0.010333752600723422,0.010168443911501651,0.010006537498451209,0.009847944636356031,0.00969257943905869,0.009540358751685766,0.00939120204758977,0.009245031329777192,0.009101771036596696,0.008961347951487614,0.008823691116585857,0.008688731750003436,0.008556403166606575,0.008426640702120802,0.008299381640411729,0.008174565143786653,0.008052132186177015,0.007932025489066696,0.007814189460040748,0.0076985701338281925,0.0075851151157310965,0.007473773527326127,0.007364495954336571,0.007257234396578288,0.007151942219882126,0.007048574109909788,0.006947086027774747,0.006847435167390073,0.006749579914466496,0.006653479807089851,0.0065590954978052745,0.006466388717147978,0.006375322238554334,0.006285859844595189,0.006197966294476309,0.0061116072927484034,0.006026749459180429,0.00594336029974353,0.0058614081786606724,0.005780862291478277,0.005701692639114493,0.005623870002848047,0.0055473659202060375,0.005472152661715048,0.005398203208480142,0.0053254912305596615,0.0052539910661005855,0.005183677701208105,0.005114526750517173,0.005046514438439257,0.004979617581058409,0.004913813568648562,0.0048490803487914284,0.004785396410068729,0.004722740766307678,0.0046610929413591455,0.004600432954385399,0.004540741305641635,0.004481998962729803,0.004424187347307861,0.004367288322237174,0.004311284179152463,0.004256157626436114,0.004201891777585129,0.004148470139953859,0.00409587660385927,0.0040440954320365,0.003993111249429459,0.003942909033307484,0.0038934741036938296,0.0038447921140958756,0.003796849042525835,0.0037496311828024475,0.003703125136121679,0.00365731780288958,0.0036121963748061117,0.0035677483271917684,0.0035239614115491692,0.003480823648349638,0.003438323320039373,0.003396448964255858,0.0033551893672479237,0.003314533557493079,0.003274470799503637,0.003234990587817565,0.0031960826411661625,0.003157736896813243,0.003119943505059845,0.0030826928239097223,0.0030459754138885847,0.0030097820330141543,0.0029741036319104693,0.0029389313490623147,0.0029042565062056733,0.0028700706038481917,0.0028363653169175855,0.0028031324905322904,0.002770364135891064,0.0027380524262774807,0.0027061896931762693,0.002674768422496641,0.0026437812509008483,0.0026132209622335223,0.0025830804840489257,0.0025533528842336035,0.002524031367720102,0.002495109273290662,0.002466580070466855,0.0024384373564829507,0.002410674853340779,0.00238328640494252,0.002356265974300508,0.0023296076408207,0.002303305597657823,0.002277354149140164,0.00225174770826216,0.0022264807942417265,0.0022015480301418905,0.002176944140553733,0.002152663949339091,0.0021287023774318003,0.0021050544406945315,0.0020817152478310964,0.002058679998351576,0.0020359439805890593,0.002013502569766493,0.00199135122611249,0.001969485493023803,0.0019479009952743677,0.0019265934372686075,0.0019055586013381686,0.0018847923460810507,0.0018642906047410836,0.0018440493836278213,0.001824064760574803,0.0018043328834354817,0.0017848499686158974,0.0017656122996424655,0.0017466162257648216,0.0017278581605920315,0.0017093345807615559,0.0016910420246400127,0.001672977091055095,0.001655136438057108,0.0016375167817103207,0.0016201148949125698,0.0016029276062425842,0.0015859517988345818,0.0015691844092786602,0.0015526224265472292,0.00153626289094615,0.0015201028930900955,0.0015041395729017604,0.0014883701186336152,0.0014727917659124858,0.001457401796805759,0.0014421975389088241,0.0014271763644532138,0.0014123356894350863,0.001397672972762928,0.0013831857154248453,0.001368871459674268,0.0013547277882338337,0.0013407523235172076,0.001326942726867734,0.001313296697814355,0.0012998119733437167,0.0012864863271883002,0.18316822310211953,0.18295808270200026,0.18233115252705145,0.1812977533030087,0.1798745910253965,0.17808405662646098,0.1759533247492831,0.17351331860068836,0.1707976120357976,0.16784133679117005,0.16468015353441845,0.16134933217215036,0.1578829718648904,0.15431337642581008,0.15067058774018646,0.14698206945621475,0.14327252582859185,0.13956383615496368,0.1358750833415123,0.13222265522066828,0.12862039873737374,0.12507980948093733,0.12161024182235641,0.11821912778238554,0.11491481728815182,0.11174581074421512,0.10872148265965775,0.10583280164752079,0.10307144081224336,0.10042746925267826,0.09786114721582273,0.09536148246128517,0.09292968361383612,0.09056638773826348,0.08827174444225719,0.08604549149689539,0.08388702224875602,0.08179544525240502,0.07976963665004182,0.07780828587967342,0.07590993531441055,0.07407301443291057,0.0722958691013904,0.07057678651663477,0.06891401632174411,0.06730578836462206,0.065750327526482,0.06424586600518736,0.06279065339732852,0.06138296488455666,0.06002110779382482,0.05870342676854789,0.05742830775799847,0.05619418100560317,0.05499952319294528,0.05384285887527916,0.052722761325601844,0.05163785288803247,0.05058680492689758,0.04956833744538172,0.048581218436821595,0.047624263022185524,0.04669633241921005,0.045796332781592584,0.04492321394055695,0.0440759680759729,0.04325362833966383,0.042455267449762135,0.04167999627169687,0.04092696239861787,0.04019534874165919,0.03948437213850789,0.038793281986959555,0.038121358908758535,0.037467913447796194,0.03683228480569885,0.036213839617037634,0.03561197076563222,0.03502092531658377,0.03427202226356667,0.033544435083714456,0.032837403170203186,0.03215019766668641,0.03148212002773866,0.030832500642652867,0.0302006975207384,0.029586095036103034,0.028988102729892582,0.028406154167846205,0.027839705851036012,0.027288236177666746,0.0267512444537813,0.026228249950813496,0.02571879100790844,0.025222424177016037,0.024738723408803096,0.024267279277501982,0.02380769824285054,0.02335960194738771,0.02292262654739206,0.02249642207584267,0.022080651835852817,0.021674991823062324,0.02127913017559217,0.020892766650177107,0.020515612123189437,0.020147388115311863,0.01978782633868797,0.01943666826541468,0.019093664716329287,0.018758575469063368,0.01843116888440564,0.018111221550062218,0.01779851794093385,0.0174928500951027,0.01719401730473359,0.016901825821151305,0.016616088573394767,0.01633662489956757,0.016063260290367795,0.015795826144184334,0.015534159533196023,0.015278102979930364,0.015027504243775407,0.014782216116948221,0.014542096229473604,0.014307006862725853,0.014076814771123193,0.01385139101158559,0.013630610780373262,0.013414353256966187,0.013202501454639153,0.012994942077418518,0.012791565383117936,0.012592265052169834,0.012396938061972266,0.012205484566504837,0.012017807780960043,0.011833813871160294,0.011653411847542448,0.011476513463492021,0.01130303311783854,0.011132887761314342,0.010965996806799893,0.010802282043186654,0.010641667552687951,0.010484079631452417,0.010329446713325894,0.01017769929662513,0.010028769873788559,0.009882592863780702,0.009739104547122918,0.009598243003444506,0.009459948051438264,0.009324161191118873,0.009190825548286687,0.00905988582109693,0.008931288228652027,0.008804980461525252,0.008680911634136944,0.008559032238903749,0.008439294102089568,0.008321650341281408,0.008206055324430013,0.00809246463038502,0.007980835010865566,0.00787112435380828,0.007763291648032446,0.007657296949174861,0.0075531013468384,0.007450666932907109,0.007349956770982536,0.007250934866892269,0.007153566140233761,0.00705781639690851,0.0069636523026090505,0.006871041357221059,0.0067799518701064454,0.0066903529362294135,0.006602214413097778,0.006515506898484742,0.006430201708902269,0.006346270858798583,0.006263687040448721,0.00618242360451695,0.006102454541261761,0.006023754462360859,0.005946298583334164,0.005870062706538964,0.005795023204720799,0.005721157005096188,0.00564844157394885,0.00557685490172058,0.00550637548857971,0.005436982330446994,0.005368654905466399,0.005301373160901782,0.005235117500445359,0.005169868771924144,0.005105608255387386,0.005042317651565515,0.0049799790706844035,0.004918575021624011,0.004858088401408649,0.00479850248501876,0.004739800915510227,0.0046819676944342544,0.004624987172544747,0.004568844040784508,0.004513523321541244,0.004459010360162172,0.004405290816721365,0.004352350658029216,0.00430017614987663,0.0042487538495067576,0.0041980705983047035,0.004148113514700758,0.004098869987278026,0.004050327668078612,0.00400247446610151,0.003955298540986943,0.003908788296878871,0.0038629323764628374,0.003817719655171231,0.003773139235551576,0.003729180441793004,0.0036858328144042233,0.0036430861050404328,0.0036009302714729114,0.003559355472697318,0.0035183520641761516,0.003477910593212043,0.00343802179444583,0.003398676585478127,0.003359866062608605,0.0033215814966901162,0.003283814329094632,0.00324655616778598,0.003209798783498223,0.003173534106014954,0.0031377542205470077,0.003102451364206031,0.003067617922569643,0.003033246426337439,0.002999329548073562,0.0029658600990339723,0.002932831026075691,0.002900235408646129,0.002868066455848829,0.0028363175035852096,0.0028049820117686643,0.002774053561609529,0.0027435258529691425,0.002713392701779769,0.0026836480375303172,0.002654285900814507,0.002625300440940379,0.002596685913599153,0.002568436678592258,0.0025405471976137333,0.0025130120320879874,0.0024858258410601717,0.002458983379138192,0.0024324794944851668,0.0024063091268599276,0.0023804673057056087,0.0023549491482840555,0.0023297498578549614,0.0023048647218990572,0.002280289110382969,0.0022560184740660575,0.0022320483428470905,0.0022083743241500206,0.0021849921013477225,0.00216189743222314,0.002139086147465661,0.0021165541492033438,0.002094297409568867,0.002072311969298726,0.0020505939363651094,0.0020291394846386752,0.0020079448525825746,0.001987006341976101,0.00196632031666742,0.0019458832013549495,0.0019256914803957674,0.0019057416966415193,0.0018860304503002428,0.0018665543978238037,0.001847310250820167,0.0018282947749901936,0.0018095047890875479,0.0017909371639022145,0.0017725888212661728,0.0017544567330810123,0.0017365379203671395,0.0017188294523333304,0.0017013284454670348,0.001684032062644299,0.0016669375122590037,0.18427529444305865,0.1840651729438164,0.18343831448877623,0.18240508312019382,0.18098225149172578,0.17919229305261192,0.17706247182765283,0.1746237979113805,0.17190992091917087,0.16895603018662206,0.1657978209468884,0.16247057214716445,0.15900836626199674,0.15544346645230833,0.15180585323421883,0.1481229123812736,0.1444192584346589,0.14071667382678965,0.13703414181908768,0.1333879516487402,0.12979185587201225,0.12625726233591608,0.12279344605609564,0.11940776918739952,0.11611173737839574,0.1129557901239057,0.10994287104640882,0.1070640928344942,0.10431125916034541,0.10167680098120699,0.09913717621063484,0.09666118929994696,0.09424973759268612,0.0919037375952077,0.08962360213002243,0.08740931544334275,0.08526050053264421,0.08317647901995837,0.08115632401243558,0.07919890646191766,0.07730293557033104,0.07546699379671615,0.07368956701199782,0.07196907032469234,0.07030387006968393,0.06869230241584993,0.06713268900979254,0.06562335003388191,0.06416261501844213,0.06274883171155836,0.061380373275605644,0.06005564404804506,0.058773084075129975,0.057531172601077575,0.056328430671735825,0.0551634229909944,0.05403475914953055,0.05294109432920518,0.05188112957203582,0.050853611690045784,0.04985733288140618,0.04889113010863395,0.047953884286372254,0.04704451931910417,0.04616200102289948,0.04530533596002653,0.04447357021059486,0.04366578810147106,0.04288111090933229,0.04211869555182539,0.0413777332782886,0.040657448369469586,0.03995709685379132,0.03927596524626215,0.03861336931481635,0.03796865287777349,0.037341186635236584,0.036730367036432884,0.03613561518439702,0.035412192247034596,0.034669535360647236,0.03394763784388311,0.03324577084776989,0.032563235498679205,0.03189936155888194,0.031253506145108315,0.030625052503431855,0.030013408838747115,0.02941800719696759,0.028838302398062038,0.02827377101801577,0.027723910417770985,0.027188237817261943,0.026666289412632275,0.026157619534783086,0.025661799847434184,0.025178418582938955,0.024707079814109585,0.024247402760426685,0.02379902112700155,0.02336158247475823,0.02293474762035571,0.02251819006440701,0.022111595446655318,0.021714661026783585,0.02132709518961567,0.020948616973516875,0.020578955620861556,0.020217850149469634,0.01986504894400159,0.01952030936631277,0.019183397383837265,0.018854087215118564,0.018532160991626776,0.018217408435078766,0.017909626549483495,0.017608619327194052,0.0173141974682819,0.017026178112567354,0.016744384583704176,0.016468646144716093,0.01619879776443325,0.015934679894295534,0.015676138255026235,0.015423023632686036,0.015175191683670661,0.014932502748211089,0.01469482167197213,0.014462017635365981,0.014233963990203703,0.014010538103349447,0.013791621207036104,0.013577098255533451,0.013366857787868232,0.013160791796317482,0.012958795600397343,0.012760767726103277,0.012566609790151438,0.012376226388992877,0.012189524992384935,0.012006415841303533,0.011826811850009682,0.011650628512073945,0.011477783810183455,0.011308198129563575,0.011141794174845386,0.01097849689023566,0.01081823338283507,0.010660932848969105,0.010506526503397728,0.010354947511281357,0.010206130922775584,0.010060013610149816,0.009916534207314457,0.009775633051654785,0.009637252128075154,0.009501335015153415,0.009367826833323519,0.009236674194995069,0.00910782515653039,0.00898122917200289,0.008856837048657364,0.008734600904008483,0.00861447412450481,0.008496411325695662,0.008380368313839155,0.008266302048894239,0.008154170608835592,0.008043933155245125,0.007935549900122942,0.007828982073871438,0.007724191894406663,0.007621142537348104,0.0075197981072498915,0.007420123609828499,0.007322084925149225,0.007225648781733767,0.007130782731554668,0.007037455125878531,0.0069456350919302355,0.006855292510343371,0.006766397993367595,0.0066789228638059845,0.006592839134650529,0.006508119489394863,0.006424737262994961,0.006342666423455112,0.006261881554015398,0.006182357835920073,0.00610407103174169,0.006026997469245289,0.0059511140257696455,0.005876398113107619,0.0058028276628689195,0.00573038111230452,0.005659037390580282,0.005588775905480979,0.005519576530529873,0.0054514195925105995,0.005384285859373984,0.0053181565285201375,0.0052530132154398656,0.0051888379427039695,0.005125613129288118,0.005063321580222507,0.005001946476552711,0.004941471365604473,0.004881880151539412,0.004823157086192655,0.004765286760183733,0.0047082540942888565,0.004652044331069319,0.004596643026744846,0.00454203604330455,0.004488209540848491,0.0044351499701497,0.004382844065432751,0.004331278837359209,0.004280441566214266,0.004230319795287796,0.004180901324444075,0.004132174203872329,0.004084126728014892,0.00403674742966518,0.0039900250742308414,0.003943948654157455,0.0038985073835057925,0.003853690692680194,0.0038094882233017,0.003765889823221835,0.0037228855416726924,0.0036804656245496034,0.0036386205098206223,0.003597340823061244,0.0035566173731087186,0.0035164411478329875,0.0034768033100210337,0.003437695193369868,0.0033991082985866824,0.003361034289591665,0.0033234649898205982,0.0032863923786251147,0.003249808587765823,0.0032137058979978543,0.0031780767357444083,0.003142913669856372,0.003108209408455309,0.0030739567958578645,0.0030401488095779176,0.003006778557405915,0.002973839274562036,0.002941324320921185,0.002909227178308463,0.002877541447861635,0.0028462608474604206,0.002815379209219585,0.0027848904770442075,0.002754788704245578,0.002725068051216229,0.002695722783161305,0.0026667472678863972,0.002638135973638936,0.002609883467002151,0.0025819844108404557,0.002554433562293737,0.0025272257708207216,0.002500355976288927,0.0024738192071103223,0.0024476105784217665,0.002421725290308007,0.002396158626067435,0.002370905950518486,0.0023459627083458907,0.0023213244224856663,0.002296986692548202,0.0022729451932773717,0.0022491956730461247,0.002225733952386553,0.0022025559225538516,0.002179657544123645,0.0021570348456207886,0.0021346839221801765,0.002112600934237671,0.002090782106250885,0.0020692237254487573,0.002047922140609716,0.002026873760866667,0.0020060750545393643,0.0019855225479925892,0.0019652128245197776,0.0019451425232516323,0.001925308338088469,0.00190570701665654,0.0018863353592871188,0.0018671902180179784,0.001848268495616904,0.001829567144626029,0.001811083166427412,0.0017928136103286256,0.0017747555726681204,0.18551901216067068,0.1853085223465329,0.18468058547496122,0.1836456426880608,0.18222058719049547,0.18042804561488535,0.17829545465305915,0.17585400263108253,0.17313750976977782,0.17018131715140558,0.16702124444745986,0.16369266244662925,0.1602297107052599,0.15666467531070266,0.15302752835617325,0.14934562019463898,0.14564350819641517,0.14194290144189803,0.13826269909123984,0.13461910049581877,0.13102576683223682,0.12749401659009232,0.12403304017381818,0.12065012184678851,0.11736255835875557,0.11421957605007485,0.1112179723261163,0.10834900370079599,0.10560460419193368,0.10297732303564391,0.10045741362905179,0.09800709947950793,0.09561774725620316,0.09329057353675102,0.09102627404191628,0.08882509809250302,0.08668691576902804,0.08461127798597877,0.0825974698271874,0.0806445575764569,0.07875142992747702,0.07691683387920364,0.07513940582390065,0.07341769832128489,0.07175020302857005,0.07013537022581794,0.06857162534233666,0.0670573828545546,0.06559105789041789,0.06417107584123496,0.0627958802492219,0.06146393920874148,0.060173750491195076,0.05892384557809677,0.05771279276372833,0.056539199468268055,0.055401713883733654,0.05429902605884683,0.05322986851450068,0.05219301646880777,0.051187287739693485,0.05021154238323006,0.04926468211750185,0.04834564957448121,0.04745342741596733,0.04658703734424717,0.04574553903329914,0.04492802900231272,0.04413363944978874,0.043361537063452624,0.04261092181860054,0.041881025775366,0.04117111188341011,0.040480472800995655,0.03980842973402436,0.0391543312994251,0.03851755241636281,0.03789749322784891,0.03729357805467767,0.036609092831513125,0.035850720578036954,0.03511332001391939,0.034396162313949034,0.033698548274248244,0.033019807011880134,0.03235929471872258,0.03171639346827801,0.031090510074014997,0.030481074997657814,0.029887541305805877,0.029309383673204716,0.028746097430939466,0.02819719765785905,0.027662218313492786,0.027140711410768795,0.02663224622685691,0.02613640855050721,0.025652799964260453,0.025181037160005696,0.024720751286354717,0.02427158732638432,0.023833203504346256,0.023405270719974253,0.022987472009112702,0.022579502029400386,0.022181066569825388,0.021791882083001486,0.021411675239083133,0.021040182500257923,0.02067714971484229,0.020322331730016355,0.01997549202229643,0.019636402344889753,0.019304842391097334,0.018980599473001864,0.01866346821468543,0.018353250259276373,0.01804975398915647,0.01775279425868119,0.017462192138821175,0.01717777467313853,0.016899374644555556,0.016626830352395306,0.01635998539920521,0.016098688486883835,0.015842793221682167,0.015592157927644157,0.015346645468091221,0.015106123074770996,0.014870462184300772,0.014639538281574058,0.014413230749794064,0.014191422726829443,0.013974000967595025,0.013760855712182846,0.013551880559467936,0.013346972345948921,0.013146031029574269,0.012948959578329288,0.012755663863369756,0.012566052556487881,0.012380037031726005,0.0121975312709426,0.012018451773157478,0.011842717467508427,0.011670249629653037,0.011500971801472047,0.011334809713921387,0.0111716912128987,0.011011546187990478,0.010854306503977956,0.010699905934975409,0.010548280101096104,0.01039936640753091,0.010253103985938549,0.010109433638050976,0.009968297781394185,0.009829640397043258,0.009693406979319762,0.00955954448735272,0.009428001298427365,0.009298727163041616,0.009171673161607607,0.00904679166272502,0.00892403628296383,0.008803361848094894,0.008684724355710993,0.00856808093917764,0.008453389832866792,0.008340610338616964,0.00822970279337281,0.008120628537958691,0.008013349886936945,0.007907830099514417,0.0078040333514515095,0.007701924707936404,0.00760147009738681,0.007502636286144701,0.007405390854025676,0.007309702170695692,0.007215539372839744,0.007122872342093312,0.0070316716837095705,0.006941908705930407,0.0068535554000402595,0.006766584421073297,0.00668096906915127,0.006596683271428326,0.00651370156462152,0.006431999078102475,0.006351551517533963,0.0062723351490284115,0.006194326783810299,0.006117503763365784,0.006041843945058288,0.0059673256881982075,0.005893927840546981,0.005821629725241417,0.005750411128124342,0.005680252285464325,0.005611133872054823,0.005543036989676538,0.0054759431559116035,0.005409834293297021,0.005344692718806756,0.005280501133648495,0.005217242613368001,0.005154900598247796,0.005093458883991244,0.005032901612683087,0.004973213264014703,0.004914378646768673,0.00485638289055131,0.004799211437765908,0.004742850035819465,0.004687284729552935,0.004632501853890596,0.004578488026699326,0.004525230141851608,0.004472715362485615,0.0044209311144566155,0.004369865079971637,0.004319505191404235,0.004269839625281509,0.004220856796438643,0.004172545352336302,0.004124894167533736,0.0040778923383153805,0.00403152917746415,0.003985794209177691,0.003940677164122771,0.0038961679746244704,0.0038522567699839205,0.00380893387192339,0.0037661897901527107,0.003724015218054141,0.0036824010284826018,0.0036413382696759886,0.0036008181612746703,0.0035608320904450715,0.0035213716081048466,0.003482428425247158,0.0034439944093594696,0.003406061580936218,0.003368622110081047,0.003331668313196501,0.003295192649758486,0.003259187719173655,0.003223646257715714,0.003188561135540438,0.0031539253537756166,0.0031197320416842546,0.003085974453899405,0.0030526459677271724,0.0030197400805179074,0.0029872504071020664,0.0029551706772896853,0.002923494733431344,0.002892216528039506,0.002861330121467203,0.002830829679644166,0.002800709471867635,0.0027709638686466112,0.0027415873395986233,0.002712574451396226,0.0026839198657635783,0.0026556183375205135,0.002627664712673129,0.0026000539265501475,0.0025727810019825657,0.0025458410475269564,0.002519229255730226,0.002492940901434985,0.002466971340124466,0.002441316006306295,0.0024159704119330206,0.002390930144859855,0.0023661908673376125,0.002341748314540249,0.0023175982931264126,0.0022937366798331887,0.0022701594201024492,0.002246862526738043,0.0022238420785933815,0.0022010942192884873,0.0021786151559562345,0.0021564011580159454,0.002134448555975021,0.002112753740256919,0.0020913131600550647,0.0020701233222124474,0.002049180790125277,0.0020284821826713237,0.002008024173161435,0.001987803488313889,0.0019678169072514682,0.0019480612605195682,0.0019285334291262598,0.0019092303436026496,0.0018901489830835826,0.18691578743240875,0.18670448636222312,0.18607415561119905,0.18503535261639506,0.18360515360703775,0.1818064202141157,0.17966685806203994,0.17721793907327013,0.17449376321437887,0.1715299313513331,0.16836249040230528,0.1650269973839372,0.161557732694728,0.15798707722258415,0.15434505419276454,0.15065902600995323,0.14695352899791062,0.1432502247296565,0.1395679450870112,0.1359228086672049,0.13232838802240263,0.12879590990130702,0.125334473697268,0.12195127635293734,0.11867239498545536,0.11554087194198363,0.11254920015779034,0.10968876869710377,0.10695163179612609,0.10433044786169747,0.1018184248706323,0.09939534543898915,0.09703034765183502,0.09472399866956488,0.09247729798619118,0.09029078000709445,0.08816458088694183,0.08609849870716087,0.08409204723352207,0.08214450360060353,0.08025495033625274,0.07842231217553128,0.07664538812684794,0.07492287924932352,0.07325341258513267,0.0716355616670464,0.07006786399314888,0.06854883582973684,0.06707698467144217,0.0656508196560957,0.06426886020118332,0.06292964309994586,0.06163172828824827,0.06037370346864495,0.0591541877554614,0.05797183448452458,0.056825333312787975,0.055713411716930894,0.05463483598557956,0.053588411786991516,0.052572984382957065,0.051587438549724605,0.05063069825822446,0.04970172615837641,0.048799522905673014,0.04792312636269017,0.04707161070315088,0.04624408544200563,0.045439694411301225,0.04465761469847996,0.043897055560987754,0.04315725732883073,0.042437490304635374,0.041737053669110596,0.041055274398361014,0.04039150619819891,0.03974512845964646,0.039115545238825516,0.03850218426374402,0.03786593525054735,0.03709118531089604,0.03633762677919628,0.03560453095898588,0.0348911983951203,0.03419695761538157,0.03352116392230271,0.03286319823426686,0.032222465974829355,0.03159839600899641,0.030990439625122414,0.03039806956101342,0.029820779072731844,0.02925808104462887,0.028709507139049597,0.02817460698419467,0.027652947398617015,0.02714411165086242,0.026647698752759484,0.02616332278494563,0.02569061225320846,0.025229209474279698,0.02477876998977359,0.02433896200697155,0.02390946586525034,0.02348997352694988,0.02308018809155151,0.022679823332075043,0.022288603252652025,0.021906261666262142,0.021532541791695795,0.02116719586881222,0.02080998479122786,0.020460677755604978,0.020119051926733886,0.019784892117671753,0.019457990484202263,0.01913814623293557,0.018825165342400488,0.018518860296493862,0.01821904982971406,0.01792555868360356,0.017638217373872087,0.01735686196768901,0.017081333870669072,0.016811479623078614,0.016547150704842892,0.016288203348928172,0.016034498362707768,0.015785900956941858,0.015542280582003808,0.015303510771029899,0.015069468989659376,0.014840036492064432,0.014615098182977796,0.01439454248544594,0.014178261214035795,0.013966149453258572,0.013758105440963649,0.013554030456479814,0.013353828713292912,0.013157407256046656,0.012964675861683983,0.012775546944536005,0.012589935465185222,0.01240775884293873,0.012228936871744074,0.012053391639407014,0.011881047449958462,0.01171183074903705,0.011545670052154898,0.01138249587572487,0.011222240670723884,0.011064838758887679,0.010910226271322966,0.010758341089436126,0.010609122788082364,0.010462512580835841,0.010318453267299774,0.010176889182365458,0.010037766147341028,0.009901031422872669,0.009766633663585359,0.009634522874368317,0.009504650368244319,0.00937696872575328,0.009251431755790818,0.009127994457844273,0.009006612985565427,0.00888724461163303,0.008769847693848597,0.00865438164241869,0.008540806888377894,0.00842908485310338,0.00831917791888438,0.00821104940050088,0.00810466351777417,0.007999985369051355,0.007896980905589263,0.007795616906799313,0.007695860956326353,0.0075976814189249705,0.007501047418105336,0.00740592881452039,0.007312296185062783,0.007220120802650413,0.007129374616671144,0.007040030234063382,0.006952060901010511,0.0068654404852229655,0.006780143458791304,0.006696144881586073,0.006613420385185754,0.006531946157313731,0.0064516989267669154,0.006372655948815562,0.006294794991061469,0.006218094319735496,0.006142532686419462,0.006068089315179073,0.005994743890089983,0.005922476543147592,0.005851267842544169,0.00578109878130178,0.005711950766248439,0.005643805607326783,0.005576645507221035,0.005510453051295495,0.005445211197830702,0.005380903268548681,0.005317512939418007,0.005255024231727005,0.005193421503419461,0.00513268944068157,0.0050728130497727794,0.0050137776490930775,0.004955568861476854,0.0048981726067088465,0.00484157509425281,0.004785762816186694,0.004730722540337691,0.0046764413036112585,0.004622906405505984,0.004570105401811112,0.0045180260984788575,0.004466656545666604,0.004415985031944393,0.004366000078660426,0.004316690434462309,0.004268045069967295,0.004220053172577516,0.004172704141435604,0.0041259875825171224,0.0040798933038535615,0.004034411310884665,0.003989531801934036,0.003945245163805066,0.0039015419674940945,0.003858412964015399,0.003815849080337194,0.003773841415423409,0.00373238123637868,0.0036914599746942314,0.003651069222589715,0.003611200729450645,0.003571846398356802,0.0035329982826996825,0.003494648582886148,0.003456789643126461,0.0034194139483025906,0.003382514120916628,0.0033460829181155027,0.0033101132287901504,0.0032745980707477892,0.0032395305879534073,0.0032049040478407606,0.0031707118386892666,0.0031369474670656303,0.003103604555328109,0.003070676839192269,0.0030381581653551913,0.003006042489178226,0.0029743238724253746,0.0029429964810562532,0.002912054583072501,0.002881492546414877,0.002851304836911502,0.0028214860162743874,0.0027920307401435103,0.0027629337561775303,0.0027341899021885918,0.0027057941043217926,0.0026777413752767697,0.0026500268125708554,0.002622645596842525,0.002595592990194512,0.0025688643345743866,0.0025424550501931993,0.002516360633979963,0.002490576658071518,0.0024650987683371116,0.0024399226829358313,0.0024150441909073215,0.0023904591507940575,0.0023661634892945017,0.0023421531999468707,0.0023184243418416274,0.002294973038363296,0.0022717954759599365,0.0022488879029398884,0.002226246628295028,0.0022038680205502302,0.0021817485066374146,0.002159884570794857,0.00213827275349015,0.002116909650366643,0.0020957919112128878,0.0020749162389538368,0.002054279388664321,0.0020338781666034175,0.0020137094292695004,0.18848473052732004,0.18827210763406024,0.1876378669785862,0.18659272825923623,0.18515402392462896,0.1833449463214371,0.18119358241516234,0.17873181046805825,0.17599413697756627,0.17301654769022698,0.16983543537448426,0.1664866517100856,0.16300471371455305,0.15942217882464277,0.15576918871745182,0.15207317111564062,0.14835868145089653,0.14464736214371884,0.14095799586539298,0.13730662981714087,0.13370675011677863,0.13016948823170857,0.12670384456564163,0.12331691745109859,0.12004733369380545,0.11692542467076952,0.11394198544418102,0.11108852446057983,0.10835720432977354,0.10574078196071769,0.10323255496637139,0.10082566168285328,0.09848774730600444,0.09620465466034368,0.09397770985280192,0.0918077545271097,0.08969521215060679,0.08764014813624212,0.08564232392158613,0.08370124525275811,0.08181620500556734,0.079986320928219,0.0782105687166521,0.07648781084134587,0.07481682153855544,0.07319630836323905,0.07162493067889746,0.07010131543367198,0.06862407054399391,0.06719179617862935,0.06580309420767914,0.06445657605404495,0.06315086915925874,0.06188462225180582,0.060656509584114615,0.059465234284600293,0.05830953095302893,0.057188167611390145,0.05609994710806493,0.055043708060224,0.05401832540817317,0.05302271064530676,0.052055811778622084,0.05111661306709143,0.05020413457843387,0.04931743159909059,0.04845559392703212,0.04761774507269288,0.04680304138947861,0.046010671152016264,0.04523985359742633,0.044489837942513,0.04375990238758529,0.043049353115849245,0.042357523295755255,0.041683772092317155,0.041027483692350875,0.0403880663475407,0.03976495143846459,0.03915759256198799,0.03839588377975748,0.0376254548247694,0.036875716373852875,0.03614596884344285,0.03543554026584276,0.03474378512224743,0.034070083221049284,0.033413838620755934,0.032774478596601826,0.03215145264982942,0.03154423155850882,0.030952306468647602,0.0303751880243444,0.02981240553564126,0.029263506182746816,0.028728054255274606,0.02820563042516243,0.027695831051913148,0.02719826751887287,0.026712565599232494,0.026238364850500216,0.02577531803622287,0.025323090573744596,0.024881360006876987,0.0244498155023425,0.024028157368928615,0.02361609659831201,0.023213354426567984,0.022819661915392593,0.022434759552146067,0.02205839686782487,0.021690332072129507,0.02133033170483372,0.020978170302672444,0.020633630081041052,0.02029650062979163,0.019966578622468697,0.01964366753835463,0.01932757739670747,0.019018124502635715,0.01871513120404782,0.01841842565916187,0.018127841614076504,0.017843218189938437,0.01756439967924186,0.017291235350853116,0.01702357926333744,0.016761290086209878,0.016504230928742824,0.01625226917597156,0.016005276331579117,0.015763127867333276,0.01552570307877915,0.015292884946900072,0.015064560005478109,0.014840618213885708,0.014620952835075307,0.014405460318522294,0.01419404018790213,0.013986594933291886,0.013783029907685873,0.0135832532276445,0.01338717567788449,0.013194710619639905,0.013005773902630002,0.012820283780468258,0.012638160829373057,0.012459327870028025,0.012283709892459938,0.012111233983801529,0.011941829258819599,0.01177542679308206,0.011611959558661702,0.011451362362261125,0.011293571785659973,0.011138526128388383,0.010986165352526578,0.010836431029551343,0.01068926628913745,0.010544615769835852,0.010402425571550434,0.010262643209742248,0.010125217571284418,0.00999009887190887,0.009857238615174268,0.009726589552896034,0.009598105646981325,0.009471742032607788,0.009347454982699519,0.009225201873643663,0.009104941152200233,0.00898663230356045,0.008870235820503294,0.008755713173614147,0.008643026782519719,0.008532139988101777,0.008423017025651347,0.008315622998929498,0.008209923855095521,0.008105886360475307,0.008003478077134366,0.007902667340226127,0.007803423236088021,0.0077057155810535925,0.007609514900959078,0.007514792411315195,0.00742151999812053,0.007329670199294665,0.0072392161867044225,0.007150131748766601,0.007062391273603005,0.0069759697327288015,0.006890842665255033,0.006806986162588041,0.006724376853604759,0.0066429918902916425,0.0065628089338272706,0.0064838061410943905,0.006405962151607392,0.006329256074837208,0.006253667477924722,0.00617917637376547,0.006105763209454476,0.006033408855078313,0.005962094592843777,0.005891802106528867,0.005822513471248746,0.005754211143523599,0.005686877951638873,0.00562049708628912,0.005555052091493346,0.005490526855776335,0.00542690560360465,0.005364172887069526,0.0053023135778097735,0.0052413128591639714,0.005181156218548182,0.005121829440048955,0.005063318597226175,0.005005610046118236,0.00494869041844426,0.004892546614994646,0.004837165799207107,0.004782535390919969,0.004728643060297872,0.0046754767219254504,0.004623024529061043,0.004571274868048885,0.0045202163528823835,0.0044698378199147385,0.004420128322712067,0.004371077127045548,0.004322673706016228,0.004274907735311141,0.004227769088584836,0.004181247832963048,0.004135334224665647,0.004090018704743133,0.00404529189492612,0.004001144593582276,0.003957567771778305,0.00391455256944443,0.0038720902916365902,0.0038301724048957807,0.0037887905337000327,0.0037479364570069318,0.0037076021048838893,0.003667779555224273,0.00362846103054526,0.003589638894867226,0.003551305650670793,0.0035134539359297774,0.0034760765212184133,0.0034391663068892497,0.0034027163203217436,0.0033667197132379507,0.003331169759084233,0.0032960598504767763,0.0032613834967097533,0.003227134321323005,0.0031933060597294804,0.003159892556899355,0.0031268877650997133,0.0030942857416888297,0.0030620806469621046,0.0030302667420500674,0.0029988383868657675,0.0029677900381005627,0.0029371162472674964,0.0029068116587897073,0.0028768710081343305,0.0028472891199894505,0.0028180609064834355,0.002789181365445395,0.002760645578706144,0.002732448710437413,0.002704586005529878,0.0026770527880078418,0.002649844459480019,0.002622956497625774,0.0025963844547148606,0.0025701239561613308,0.0025441706991094553,0.0025185204510513232,0.0024931690484757754,0.002468112395546486,0.002443346462810278,0.0024188672859334717,0.0023946709644662523,0.0023707536606340867,0.002347111598155944,0.0023237410610876474,0.002300638392691056,0.0022777999943274737,0.0022552223243749937,0.002232901897169463,0.0022108352819676315,0.002189019101933139,0.0021674500331438427,0.002146124803620339,0.1902478156442236,0.19003327874137957,0.18939337019629393,0.1883390264021542,0.1868879226084297,0.1850636949116834,0.18289494407111123,0.18041409892384244,0.17765622099727227,0.17465782688557777,0.17145579299905508,0.16808639103927295,0.1645844847487264,0.16098290148841132,0.1573119777024337,0.15359926626003878,0.1498693862642558,0.1461439919126512,0.1424418358015785,0.13877890296750509,0.13516859424532043,0.13162194057617482,0.1281478332315972,0.1247549201253112,0.12149391969169343,0.11837928848998794,0.1154019275346372,0.1125534484888408,0.10982610777981304,0.10721274769409989,0.10470674363160055,0.1023019568018311,0.09998815637290054,0.09773131226195808,0.09552679675334202,0.09337578273260815,0.09127900430228982,0.08923681660485848,0.08724925005305059,0.08531605910341883,0.08343676581280435,0.08161069848672367,0.0798370257703721,0.0781147865535058,0.07644291606540196,0.07482026852919454,0.07324563673020952,0.07171776883281594,0.07023538275694755,0.06879717840067529,0.06740184796970744,0.06604808464983615,0.06473458983432293,0.06346007909563908,0.06222328706981551,0.06102297140247466,0.059857915887792795,0.058726932915797274,0.05762886532905026,0.056562587776897814,0.05552700764418708,0.0545210656211445,0.0535437359722773,0.052594026554307546,0.051670978626234196,0.05077366648867974,0.049901196984345995,0.04905270888686844,0.04822737220136362,0.047424387396524735,0.04664298458507025,0.04588242266684718,0.04514198844656626,0.04442099573625964,0.043718784450891994,0.043034719704080654,0.04236819090973015,0.04171861089425815,0.04108541502324219,0.04046806034552916,0.03976992884588149,0.03898186551997965,0.03821472838691583,0.03746781793482805,0.0367404618632442,0.036032013961351264,0.035341853027139235,0.034669381827183356,0.03401402609652395,0.03337523357797141,0.032752473100014265,0.032145233692366444,0.031553023738156535,0.030975370161650723,0.030411817650380615,0.02986192791051344,0.0293252789542958,0.028801464418364637,0.028290092911780085,0.02779078739258981,0.027303184571783663,0.02682693434352402,0.026361699240524207,0.025907153913539444,0.02546298463390576,0.025028888818129036,0.024604574573552796,0.0241897602641689,0.023784174095653483,0.023387553718782903,0.022999645850376393,0.022620205910974,0.022248997678486086,0.021885792957066802,0.021530371260529285,0.02118251950961628,0.020842031742490733,0.020508708837838553,0.020182358249985512,0.01986279375548949,0.01954983521066297,0.019243308319525212,0.018943044411698525,0.018648880229794332,0.018360657725839155,0.018078223866338044,0.017801430445567503,0.01753013390672243,0.017264195170561266,0.017003479471194554,0.016747856198706237,0.016497198748285195,0.016251384375574905,0.016010294057960166,0.01577381236152484,0.015541827313416383,0.015314230279387603,0.015090915846273886,0.014871781709189586,0.014656728563236302,0.014445659999514653,0.014238482405261554,0.014035104867922423,0.013835439082989315,0.013639399265442958,0.013446902064633889,0.013257866482464893,0.013072213794723637,0.012889867475433739,0.0127107531240942,0.012534798395685954,0.012361932933322096,0.012192088303438549,0.012025197933411528,0.011861197051501883,0.011700022629031968,0.01154161332469486,0.011385909430916438,0.011232852822179604,0.01108238690523153,0.010934456571098967,0.010789008148832454,0.01064598936091652,0.01050534928027306,0.01036703828879593,0.010231008037354865,0.010097211407211917,0.009965602472789355,0.009836136465742136,0.009708769740278837,0.00958345973968344,0.009460164963992877,0.009338844938780322,0.009219460185008101,0.009101972189904032,0.008986343378823852,0.008872537088061287,0.008760517538571792,0.008650249810570434,0.008541699818977186,0.008434834289673267,0.008329620736539589,0.00822602743924958,0.008124023421784258,0.008023578431648387,0.007924662919757705,0.007827248020974446,0.007731305535266753,0.007636807909471155,0.0075437282196320786,0.007452040153902974,0.0073617179959850985,0.007272736609085832,0.007185071420379476,0.007098698405948778,0.007013594076195505,0.006929735461699651,0.006847100099512638,0.0067656660198711464,0.006685411733312832,0.006606316218185032,0.00652835890852943,0.006451519682331158,0.006375778850119278,0.006301117143908366,0.006227515706465977,0.0061549560808997076,0.006083420200549552,0.006012890379176698,0.005943349301439678,0.005874780013645501,0.005807165914770523,0.005740490747739281,0.005674738590953848,0.0056098938500662955,0.005545941249983874,0.005482865827102668,0.005420652921759992,0.005359288170899277,0.005298757500940466,0.005239047120850371,0.00518014351540398,0.005122033438634243,0.005064703907461623,0.005008142195498883,0.004952335827026181,0.004897272571128932,0.004842940435996476,0.004789327663374295,0.004736422723165816,0.004684214308179148,0.004632691329015015,0.004581842909089406,0.004531658379789956,0.0044821272757595045,0.004433239330304085,0.004384984470922042,0.004337352814948692,0.004290334665315832,0.0042439205064206,0.004198101000101185,0.0041528669817168466,0.004108209456327249,0.004064119594970787,0.00402058873103713,0.003977608356731901,0.003935170119630768,0.003893265819320869,0.0038518874041254376,0.0038110269679115715,0.003770676746976988,0.0037308291170141095,0.0036914765901498434,0.0036526118120573364,0.003614227559139746,0.0035763167357824475,0.0035388723716724847,0.0035018876191829948,0.0034653557508216165,0.0034292701567395036,0.0033936243423012195,0.0033584119257125335,0.003323626635704829,0.003289262309275177,0.0032553128894791004,0.0032217724232765175,0.003188635059427981,0.0031558950464403565,0.0031235467305610705,0.0030915845538182656,0.003060003052107433,0.0030287968533219646,0.0029979606755269938,0.0029674893251751904,0.0029373776953639614,0.0029076207641316426,0.0028782135927934026,0.002849151324314577,0.00282042918172079,0.0027920424665444183,0.0027639865573052683,0.0027362569080260062,0.00270884904678052,0.0026817585742746745,0.0026549811624584706,0.002628512553169401,0.0026023485568049667,0.0025764850510251636,0.0025509179794830543,0.0025256433505831235,0.0025006572362670353,0.002475955770825105,0.0024515351497341837,0.0024273916285203266,0.002403521521645938,0.002379921201421133,0.0023565870969377437,0.002333515693026725,0.0023107035292373925,0.002288147198838388,0.1922304445421223,0.1920133019960228,0.1913656729046806,0.19029877550354835,0.18883073133276,0.18698575508946333,0.1847931189433301,0.18228597340373698,0.17950011052072332,0.17647274947973704,0.17324141163925189,0.16984293462825284,0.16631265621983898,0.1626837808322077,0.1589869264354503,0.15524983828932262,0.151497248498286,0.1477508565065856,0.14402940470842035,0.14034882453911404,0.13672243098488698,0.13316114675345525,0.12967374088628117,0.12627507715004765,0.12302021480699085,0.11991059231620425,0.11693720823901985,0.11409176290145867,0.11136659341944655,0.1087546155983658,0.10624927189962942,0.10384448476947687,0.10153461471425088,0.0993053953868805,0.09712652691494589,0.09499732666484022,0.09291886534651474,0.09089181305047828,0.08891649337540757,0.08699293251417684,0.08512090343149395,0.08329996535450783,0.08152949885608092,0.07980873684528683,0.07813679179692111,0.0765126795550739,0.07493534003961701,0.07340365517122278,0.07191646431264806,0.07047257750367497,0.06907078674499326,0.06770987556411483,0.06638862707438135,0.0651058307170315,0.06386028785623757,0.06265081637854611,0.061476254430888326,0.06033546341572665,0.059227330347748866,0.058150769663667105,0.05710472456536629,0.056088167966346636,0.05510010310242203,0.05413956385964069,0.053205614865267696,0.05229735138158793,0.05141389903672381,0.050554413421975176,0.04971807958099972,0.048904111412546795,0.04811175100524713,0.047340267920307946,0.04658895843549748,0.045857144761787656,0.04514417424224687,0.044449418541182666,0.0437722728303001,0.043112154977402097,0.042468504742245144,0.04184078298328725,0.041220376125020546,0.040413823421037075,0.03962844141784876,0.03886353093274459,0.03811841954368802,0.03739246051780028,0.03668503177581185,0.03599553489272972,0.03532339413460127,0.03466805553109557,0.03402898598342409,0.03340567240695085,0.03279762090778557,0.032204355992496686,0.031625419810055774,0.031060371425052958,0.030508786121204664,0.029970254734118986,0.029444383012322852,0.02893079100550231,0.028429112478941018,0.027938994353149758,0.027460096167669437,0.026992089568099176,0.026534657815370587,0.026087495316348006,0.02565030717484897,0.025222808762213125,0.024804725306558598,0.024395791499930524,0.0239957511225361,0.02360435668331514,0.0232213690761225,0.022846557250807118,0.022479697898538348,0.022120575150722206,0.021768980290895027,0.021424711479013918,0.02108757348756418,0.02075737744896618,0.02043394061375305,0.020117086119035156,0.019806642766779233,0.019502444811463234,0.019204331756665617,0.01891214816020089,0.018625743447400252,0.0183449717321736,0.018069691645502765,0.017799766171020116,0.017535062487367692,0.017275451817020906,0.017020809281290204,0.016771013761224078,0.016525947764152605,0.016285497295610955,0.016049551736416902,0.015818003724664603,0.015590749042420112,0.015367686506916233,0.015148717866038136,0.014933747697925973,0.014722683314505542,0.014515434668778688,0.01431191426571511,0.014112037076580066,0.013915720456562837,0.013722884065556136,0.013533449791954486,0.013347341679343677,0.01316448585596081,0.012984810466801085,0.012808245608270262,0.012634723265268552,0.012464177250607486,0.012296543146664767,0.012131758249178164,0.01196976151309941,0.011810493500416575,0.011653896329867647,0.01149991362846703,0.011348490484774825,0.01119957340383144,0.01105311026369969,0.010909050273543454,0.010767343933183982,0.010627942994076982,0.010490800421648771,0.010355870358945663,0.010223108091539198,0.010092470013640532,0.009963913595378493,0.00983739735119094,0.009712880809294116,0.009590324482182468,0.00946968983812267,0.009350939273602612,0.00923403608670155,0.009118944451341636,0.009005629392394373,0.008894056761604832,0.008784193214305217,0.008676006186889906,0.008569463875019011,0.008464535212530102,0.008361189851027346,0.008259398140125194,0.00815913110832384,0.00806036044448981,0.00796305847992513,0.007867198171,0.007772753082330517,0.007679697370481394,0.007588005768176782,0.007497653568997201,0.0074086166125510045,0.007320871270099489,0.007234394430621559,0.0071491634873035,0.0070651563244359394,0.006982351304708491,0.0069007272568850486,0.006820263463847994,0.0067409396509985715,0.006662735975002407,0.006585633012865537,0.0065096117513338365,0.006434653576602294,0.006360740264324356,0.006287853969912801,0.006215977219119223,0.006145092898887125,0.006075184248466586,0.006006234850783016,0.005938228624052568,0.00587114981363347,0.005804982984109476,0.005739713011595002,0.005675325076256171,0.005611804655040286,0.005549137514608419,0.005487309704461837,0.005426307550259805,0.0053661176473200276,0.005306726854297038,0.005248122287033631,0.005190291312577601,0.0051332215433619955,0.0050769008315412765,0.0050213172634796695,0.0049664591543867485,0.004912315043096527,0.0048588736869837204,0.004806124057015712,0.004754055332934143,0.004702656898562879,0.004651918337239251,0.004601829427362917,0.004552380138061465,0.004503560624967385,0.004455361226103767,0.004407772457876128,0.004360785011165443,0.004314389747521807,0.004268577695454198,0.004223340046813963,0.004178668153269383,0.0041345535228692176,0.004090987816691006,0.004047962845574032,0.004005470566932823,0.003963503081649397,0.00392205263104277,0.0038811115939116287,0.003840672483650607,0.0038007279454362365,0.0037612707534814267,0.003722293808356318,0.0036837901343743013,0.0036457528770398135,0.0036081753005583546,0.0035710507854054747,0.0035343728259535126,0.003498135028155263,0.003462331107281237,0.0034269548857113414,0.003392000290777773,0.0033574613526584952,0.003323332202320239,0.0032896070695083482,0.003256280280784152,0.0032233462576071402,0.003190799514461354,0.0031586346570246764,0.0031268463803803457,0.003095429467268356,0.003064378786377436,0.003033689290675214,0.003003356015776082,0.0029733740783461173,0.0029437386745429536,0.0029144450784913166,0.002885488640792082,0.00285686478706441,0.0028285690165205527,0.0028005969005712723,0.00277294408146269,0.002745606270942646,0.0027185792489562346,0.00269185886236969,0.002665441023722287,0.0026393217100045803,0.0026134969614636815,0.0025879628804338505,0.0025627156301922136,0.0025377514338392076,0.002513066573202239,0.002488657387763265,0.0024645202736088066,0.002440651682402104,0.19446228782164393,0.19424172518651298,0.19358395917476498,0.19250056877344596,0.1910102469818419,0.18913794984062843,0.18691381059720502,0.18437190657985633,0.18154896986874378,0.1784831262352826,0.17521273246460817,0.17177536324803483,0.16820697854873243,0.16454128338818755,0.16080927621183563,0.15703897029232128,0.15325526515319415,0.1494799413151548,0.14573175103061037,0.14202657922472964,0.13837765178679173,0.13479577197163445,0.13128956946026737,0.12788706194578187,0.12463619904487984,0.12152959337706778,0.11855832865949678,0.1157141826812068,0.1129895631111023,0.11037745008939288,0.1078713448070998,0.1054652233793056,0.10315349540495214,0.10093096668205882,0.09878079041515173,0.0966768521978101,0.0946197781559239,0.0926105819310075,0.0906499080458541,0.08873808103650692,0.08687515006585991,0.08506092913797128,0.08329503310870376,0.08157690973936585,0.07990586807102494,0.07828110341226786,0.07670171923679507,0.07516674628211215,0.07367515912930021,0.07222589052878434,0.07081784371913594,0.06944990296699176,0.06812094253671476,0.06682983427919972,0.06557545401061501,0.06435668683438736,0.06317243154319754,0.06202160422260365,0.06090314116403296,0.059816001182151725,0.05875916742035434,0.05773164871772467,0.05673248060177229,0.05576072596306059,0.05481547546058181,0.05389584770044106,0.053000989224670336,0.05213007434210991,0.051282304828915166,0.05045690952246188,0.049653143829041436,0.0488702891629161,0.048107652331692535,0.04736456488080858,0.046640382408024365,0.04593448385709852,0.04524627079847219,0.04457516670346407,0.04392061621745277,0.043282084436579576,0.04265905619172238,0.04193036507808213,0.041125763326927425,0.040341888781843735,0.039578069152970845,0.03883365738844372,0.03810803068967785,0.03740058955788273,0.03671075687217803,0.03603797699946373,0.03538171493596382,0.034741455480146184,0.03411670243663134,0.03350697785052019,0.032911821271504126,0.03233078904704145,0.0317634536438261,0.03120940299670794,0.030668239884242905,0.030139581329977957,0.029623058028597684,0.029118313796054233,0.02862500504277497,0.02814280026910783,0.02767137958211561,0.0272104342328876,0.026759666173535798,0.026318787633079797,0.02588752071141626,0.02546559699063908,0.02505275716295424,0.0246487506744873,0.024253335384300863,0.023866277237945425,0.02348734995493099,0.023116334729491067,0.022753019944058643,0.02239720089489668,0.022048679529328395,0.021707264194071783,0.021372769394167972,0.021045015562037726,0.020723828836211256,0.020409040849304002,0.0201004885248134,0.019798013882358884,0.019501463850975655,0.01921069009010664,0.01892554881795458,0.018645900646853238,0.018371610425362804,0.018102547086778442,0.017838583503773157,0.0175795963489018,0.017325465960712785,0.017076076215209065,0.016831314402438315,0.016591071107977747,0.016355240099101775,0.016123718215433926,0.015896405263876617,0.01567320391764827,0.015454019619239562,0.01523876048712455,0.015027337226068152,0.014819663040867225,0.014615653553391417,0.014415226722774824,0.014218302768628273,0.014024804097144709,0.013834655229978617,0.01364778273577611,0.01346411516425561,0.013283582982725344,0.01310611851493944,0.012931655882199198,0.012760130946599517,0.012591481256342602,0.012425645993028412,0.012262565920843035,0.012102183337568892,0.011944442027345303,0.011789287215102915,0.011636665522613962,0.01148652492608775,0.011338814715252008,0.011193485453864034,0.011050488941589187,0.010909778177201184,0.010771307323046934,0.010635031670729093,0.01050090760796057,0.01036889258654087,0.010238945091418638,0.01011102461079312,0.009985091607217566,0.009861107489666255,0.00973903458653003,0.009618836119501454,0.009500476178322127,0.00938391969635617,0.009269132426959665,0.009156080920619517,0.009044732502827637,0.008935055252670788,0.008827017982104602,0.008720590215888856,0.008615742172161697,0.008512444743624874,0.008410669479324716,0.008310388567002534,0.008211574815996282,0.008114201640673464,0.008018243044377968,0.007923673603868777,0.007830468454239,0.007738603274294218,0.007648054272375477,0.007558798172613242,0.0074708122015932675,0.007384074075425563,0.007298561987198838,0.007214254594808844,0.007131131009147577,0.007049170782642352,0.006968353898129781,0.0068886607580578765,0.006810072174002063,0.006732569356485678,0.006656133905096127,0.006580747798883622,0.00650639338703765,0.006433053379828714,0.0063607108398079934,0.006289349173257496,0.006218952121879476,0.006149503754721708,0.006080988460327834,0.006013390939106856,0.005946696195914528,0.0058808895328409634,0.005815956542195184,0.005751883099684143,0.005688655357777445,0.005626259739252719,0.005564682930917124,0.005503911877496813,0.005443933775692561,0.005384736068394123,0.005326306439049281,0.00526863280618254,0.005211703318060121,0.005155506347494106,0.005100030486785032,0.005045264542796159,0.0049911975321564744,0.004937818676589197,0.004885117398359892,0.004833083315843581,0.004781706239205219,0.004730976166190849,0.004680883278026942,0.0046314179354226504,0.004582570674674874,0.004534332203870904,0.004486693399186825,0.004439645301278586,0.004393179111763844,0.00434728618979013,0.004301958048689438,0.004257186352714768,0.004212962913857079,0.004169279688741033,0.004126128775595253,0.004083502411297768,0.004041392968492516,0.003999792952775698,0.003958694999949907,0.003918091873344754,0.003877976461200504,0.0038383417741152956,0.003799180942552412,0.003760487214406724,0.0037222539526290334,0.003684474632905254,0.003647142841391194,0.003610252272499551,0.003573796726738647,0.0035377701086017187,0.0035021664245040653,0.0034669797807687593,0.0034322043816581585,0.003397834527450591,0.0033638646125608122,0.0033302891237037735,0.0032971026380990364,0.0032642998217166934,0.0032318754275623873,0.0031998242940007877,0.0031681413431170974,0.00313682157911415,0.0031058600867460992,0.0030752520297863397,0.0030449926495292987,0.0030150772633256505,0.0029855012631488246,0.0029562601141937123,0.0029273493535055817,0.002898764588638813,0.002870501496344658,0.0028425558212877727,0.0028149233747895522,0.0027876000335993107,0.0027605817386912755,0.0027338644940873573,0.002707444365705252,0.002681317480230285,0.002655480024011821,0.002629928241982576,0.002604658436600696,0.19697821574637614,0.1967532652806967,0.19608249223679902,0.19497793317963374,0.19345900590085405,0.1915516066510639,0.18928696075588738,0.18670032118482444,0.18382961290017485,0.18071411302519913,0.17739324077663599,0.1739055102665371,0.17028767724366378,0.1665740905243174,0.1627962421908647,0.15898249852521742,0.15515798614519016,0.1513446043780642,0.14756113467081355,0.14382341984566943,0.14014458937777738,0.1365353108722781,0.1330043696255735,0.12960149353389852,0.1263517057282484,0.12324539834730015,0.12027372280487568,0.11742851858389089,0.11470224964496606,0.11208794754883326,0.10957916050673808,0.10716990767233085,0.10485463807466532,0.10262819366682589,0.1004857760293738,0.09841084348485303,0.0963790773802367,0.09439124421828066,0.09244833962599154,0.0905510158897892,0.0886996267004329,0.08689426787413923,0.08513481414617263,0.08342095220193833,0.08175221015723276,0.0801279837279118,0.07854755934424087,0.07701013446965353,0.07551483538023723,0.07406073265265067,0.07264685459540222,0.0712721988436384,0.06993574232125797,0.06863644975749388,0.06737328092830243,0.06614519677684803,0.06495116455180883,0.06379016208777039,0.06266118133857429,0.06156323126199159,0.06049534014297779,0.059456557432398034,0.05844595516897588,0.057462629043962994,0.05650569916059148,0.0555743105339043,0.05466763337064976,0.053784863163828224,0.052925220631916625,0.05208795152882803,0.05127232634708168,0.05047763993367846,0.04970321103539371,0.04894838178787892,0.048212517160921634,0.047495004370369485,0.04679525226573548,0.046112690701084376,0.045446769895653834,0.04479695978963983,0.04416274939970296,0.04353908224037856,0.04271421364656667,0.04191033812332015,0.04112678393355797,0.04036290405980438,0.039618075277323674,0.038891697252815105,0.03818319166959068,0.037492001379880346,0.036817589584641784,0.03615943904096994,0.03551705129709634,0.034889945954723535,0.03427765995836747,0.033679746911248934,0.03309577641720962,0.03252533344802273,0.03196801773548046,0.03142344318753487,0.030891237327783552,0.0303710407575637,0.029862506639885943,0.029365300204476433,0.02887909827315636,0.028403588804816877,0.027938470459248382,0.027483452179104393,0.027038252789271244,0.026602600612971483,0.026176233103906973,0.025758896493790623,0.025350345454632824,0.024950342775151596,0.02455865905073057,0.024175072386335737,0.023799368111840597,0.023431338509232305,0.02307078255117304,0.022717505650441755,0.02237131941977233,0.022032041441637666,0.021699495047547278,0.021373509106445802,0.021053917821801483,0.020740560537021963,0.02043328154881986,0.020131929928183512,0.01983635934862451,0.019546427921371446,0.019261998037222186,0.018982936214751275,0.01870911295460147,0.01844040259959115,0.018176683200390783,0.01791783638651425,0.01766374724241063,0.017414304188424854,0.017169398866420216,0.01692892602986678,0.016692783438193158,0.016460871755232916,0.016233094451581116,0.016009357710697593,0.015789570338601684,0.015573643676997007,0.015361491519693628,0.015153030032180874,0.014948177674221685,0.01474685512534158,0.014548985213095179,0.014354492843986806,0.014163304936946898,0.013975350359250092,0.013790559864778638,0.013608866034536938,0.013430203219318688,0.013254507484448846,0.0130817165565098,0.012911769771973529,0.01274460802766646,0.012580173732986526,0.012418410763812006,0.01225926441802804,0.012102681372610226,0.011948609642202686,0.011796998539134981,0.011647798634815323,0.011500961722454848,0.01135644078106555,0.011214189940684774,0.011074164448780864,0.010936320637789395,0.010800615893744484,0.01066700862595792,0.010535458237708824,0.01040592509790515,0.010278370513682914,0.010152756703902418,0.010029046773515793,0.009907204688767992,0.009787195253202244,0.009668984084442353,0.009552537591718467,0.009437822954115655,0.009324808099514128,0.009213461684198634,0.009103753073111655,0.008995652320729648,0.008889130152535327,0.008784157947071089,0.00868070771854826,0.008578752099994291,0.008478264326920375,0.008379218221487066,0.008281588177156223,0.008185349143808167,0.008090476613309435,0.00799694660551706,0.00790473565470033,0.007813820796370953,0.007724179554504311,0.007635789929139486,0.007548630384345266,0.0074626798365411764,0.0073779176431579795,0.007294323591631181,0.007211877888713086,0.007130561150093723,0.0070503543903219544,0.006971239013013469,0.0068931968013405415,0.006816209908791396,0.0067402608501914065,0.006665332492978609,0.006591408048722532,0.006518471064882327,0.006446505416793884,0.006375495299879495,0.006305425222072978,0.0062362799964543495,0.006168044734084743,0.006100704837039197,0.006034245991628078,0.005968654161802394,0.005903915582738198,0.005840016754591916,0.005776944436424732,0.00571468564028843,0.005653227625468742,0.00559255789288102,0.0055326641796147775,0.005473534453619956,0.005415156908534118,0.005357519958643826,0.005300612233976954,0.005244422575523094,0.005188940030575532,0.005134153848194707,0.005080053474787016,0.005026628549796465,0.004973868901506653,0.004921764542947538,0.004870305667907076,0.004819482647042375,0.004769286024088416,0.0047197065121613365,0.0046707349901543,0.004622362499221353,0.0045745802393494595,0.004527379566014236,0.004480751986917649,0.004434689158806074,0.0043891828843645505,0.0043442251091876175,0.004299807918822821,0.004255923535885402,0.00421256431724232,0.0041697227512640656,0.004127391455140884,0.0040855631722639,0.0040442307696676415,0.004003387235532937,0.0039630256767490026,0.003923139316531597,0.003883721492097876,0.0038447656523948165,0.003806265355880245,0.003768214268355812,0.0037306061608486903,0.003693434907543057,0.00365669448375831,0.003620378963973542,0.0035844825198967705,0.0035489994185784503,0.0035139240205665136,0.0034792507781040076,0.0034449742333665925,0.0034110890167394986,0.0033775898451332614,0.0033444715203360654,0.0033117289274033758,0.003279357033082706,0.0032473508842730927,0.00321570560651828,0.0031844164025333186,0.003153478550762264,0.0031228874039682148,0.0030926383878533436,0.0030627269997087394,0.003033148807093729,0.0030038994465426587,0.0029749746223001706,0.002946370105083015,0.0029180817308681562,0.00289010539970697,0.0028624370745636684,0.002835072780178949,0.00280800860195713,0.002781240684876629,0.19981967460672972,0.19958917440072446,0.1989019498606609,0.1977706156794191,0.1962155049808994,0.19426370064585158,0.19194780523546406,0.1893045530684956,0.1863733708836561,0.1831949841712492,0.17981014789465832,0.1762585570146429,0.172577967965965,0.16880354020349853,0.16496738918416234,0.16109832956403408,0.1572217799020132,0.15335979707229735,0.14953120887953678,0.1457518159641754,0.1420346380099653,0.1383901837434002,0.13483502460446384,0.13142994010663162,0.12817739276348677,0.12506782321525114,0.12209242724119436,0.11924308495575617,0.11651229757160259,0.11389313083599403,0.11137916436040121,0.10896444616170223,0.1066434518184731,0.10441104772024379,0.10226245795165387,0.10019323440948719,0.09819034244207335,0.09622839205888006,0.09430732300885462,0.09242814683086471,0.0905915526520004,0.08879794805911927,0.08704749641457084,0.0853401506834903,0.08367568390392346,0.0820537164748225,0.08047374046515043,0.07893514116292508,0.07743721608909113,0.07597919170018613,0.07456023799741225,0.07317948125000294,0.07183601502855956,0.07052890973054826,0.0692572207658372,0.06801999555598491,0.06681627948682044,0.06564512094047176,0.06450557552023645,0.06339670956974645,0.062317603076982656,0.06126735204352747,0.06024507039030274,0.05924989146276769,0.058280969190999864,0.05733747895348332,0.056418618187350826,0.05552360678254205,0.0546516872925997,0.053802124990648896,0.052974207795350295,0.052167246088451066,0.05138057244258954,0.05061354127553713,0.049865528444863375,0.0491359307950056,0.04842416566712216,0.04772967038055707,0.04705190169348064,0.04639033524915168,0.04574446501326879,0.04511380270699947,0.04440150267413757,0.04357653132165758,0.04277215668658004,0.04198773236529046,0.04122263520573036,0.04047626446636969,0.03974804099576498,0.039037406433923075,0.03834382243635914,0.037666769921413,0.037005748341224394,0.036360274976504445,0.03572988425510419,0.03511412709423667,0.034512570266106136,0.033924795786562045,0.03335040032638852,0.032788994644712764,0.03224020304400543,0.031703662846106095,0.03117902388865286,0.030665948041328623,0.030164108741267136,0.029673190546995937,0.02919288871027298,0.02872290876518956,0.028262966133892353,0.027812785748329606,0.027372101687394606,0.026940656828873612,0.02651820251562661,0.02610449823541388,0.025699311313843166,0.025302416619885377,0.024913596283449965,0.024532639424525965,0.024159341893390685,0.023793506021443502,0.023434940382202927,0.023083459562043086,0.022738883940253217,0.022401039478031997,0.022069757516018227,0.021744874580014638,0.02142623219453913,0.021113676703872403,0.02080705910028584,0.020506234859128343,0.02021106378049527,0.019921409837185097,0.019637141028678463,0.01935812924088127,0.019084250111389763,0.01881538290002952,0.018551410364460154,0.01829221864061755,0.018037697127792563,0.01778773837815249,0.017542237990507602,0.017301094508156922,0.0170642093206308,0.016831486569171338,0.016602833055795428,0.016378158155782526,0.016157373733457114,0.015940394061118083,0.015727135740990723,0.015517517630073262,0.015311460767763744,0.015108888306143235,0.014909725442819788,0.014713899356218712,0.014521339143223627,0.014331975759075598,0.01414574195943092,0.013962572244502118,0.013782402805189897,0.013605171471130101,0.013430817660581788,0.013259282332075607,0.01309050793776337,0.012924438378394769,0.012761018959859805,0.012600196351235155,0.012441918544279255,0.012286134814312523,0.012132795682438661,0.011981852879048908,0.011833259308561913,0.011686969015355063,0.011542937150834875,0.011401119941612201,0.011261474658734345,0.01112395958793694,0.010988534000876541,0.010855158127309927,0.010723793128179138,0.010594401069576558,0.010466944897551858,0.010341388413732073,0.010217696251726577,0.010095833854283625,0.009975767451177873,0.009857464037797276,0.009740891354406998,0.009626017866064446,0.009512812743165103,0.009401245842591369,0.009291287689449878,0.009182909459371502,0.009076082961356237,0.008970780621145301,0.008866975465097486,0.008764641104558537,0.008663751720702018,0.008564282049826791,0.008466207369097182,0.008369503482706236,0.008274146708453684,0.008180113864719927,0.008087382257824795,0.0079959296697575,0.007905734346266896,0.007816774985296236,0.007729030725756019,0.007642481136620442,0.007557106206337143,0.007472886332542272,0.007389802312066512,0.007307835331227766,0.007226966956397513,0.007147179124833417,0.0070684541357703265,0.006990774641758622,0.006914123640245944,0.00683848446539167,0.006763840780107721,0.006690176568318576,0.00661747612743442,0.006545724061028025,0.006474905271712884,0.006405004954213452,0.0063360085886225515,0.006267901933840919,0.006200671021190876,0.006134302148202139,0.006068781872562085,0.006004097006226247,0.00594023460968424,0.0058771819863770655,0.005814926677259024,0.005753456455503117,0.005692759321343172,0.005632823497049585,0.005573637422035429,0.005515189748086596,0.005457469334715804,0.005400465244634202,0.005344166739338113,0.0052885632748082044,0.005233644497315621,0.005179400239335092,0.005125820515559579,0.005072895519014456,0.005020615617268192,0.004968971348737623,0.004917953419082851,0.004867552697692372,0.004817760214253471,0.004768567155406466,0.0047199648614809605,0.0046719448233098065,0.004624498679121494,0.004577618211506586,0.004531295344457027,0.0044855221404761746,0.004440290797758188,0.00439559364743318,0.004351423150878752,0.004307771897094264,0.004264632600136781,0.004221998096617683,0.004179861343256411,0.004138215414492319,0.004097053500151256,0.004056368903166035,0.004016155037349895,0.003976405425219939,0.00393711369587148,0.003898273582900089,0.003859878922371195,0.0038219236508352664,0.00378440180338848,0.003747307511775826,0.003710635002537789,0.0036743785951979377,0.0036385327004908063,0.0036030918186296178,0.0035680505376113206,0.003533403531559983,0.0034991455591060886,0.0034652714618013955,0.0034317761625683955,0.003398654664183855,0.0033659020477944434,0.0033335134714652863,0.0033014841687594213,0.0032698094473477077,0.0032384846876490074,0.003207505341498499,0.0031768669308451995,0.0031465650464767114,0.003116595346770928,0.0030869535564744853,0.0030576354655060607,0.0030286369277856017,0.0029999538600875364,0.002971582240918042,0.16203131045567884,0.1619030830051732,0.16152005630030644,0.1608871394168257,0.16001232516278238,0.1589064198090245,0.15758268966080285,0.1560564462325272,0.1543445940092368,0.15246516484788528,0.15043686123188865,0.1482786272820196,0.14600926218757485,0.14364708610285068,0.14120966404175994,0.13871358926782246,0.13617432435431148,0.1336060955900107,0.1310218347289873,0.12843316115350029,0.12585039721309155,0.12328260967794555,0.12073767075871442,0.1182223328700352,0.11574231214626125,0.11330237657386592,0.11090643542789813,0.10857318009618606,0.10632820536566966,0.10416725842132762,0.1020858798392329,0.10007991217176132,0.09814547537092001,0.09627894452362383,0.09447692965442928,0.09273625737976858,0.0910539542225149,0.08942723141749742,0.08785347105758971,0.08633021344688374,0.08485514554198607,0.08342609037560457,0.08203862876095218,0.0806766056735753,0.07933791613787716,0.07802313164870793,0.0767326820692216,0.0754668705261394,0.07422588725958992,0.07300982243047462,0.07181867790515317,0.07065237805028861,0.06951077958004385,0.06839368050437873,0.06730082823129976,0.06623192687824715,0.06518664384847161,0.06416461572784427,0.06316545355628404,0.06218874752590006,0.06123407115568281,0.060300984989707394,0.059389039862991946,0.058497779776138854,0.0576267444168673,0.05677547136366736,0.055943498003885865,0.05513036319584981,0.05433560870206308,0.05355878041805155,0.05279942941915401,0.0520571128454843,0.0513313946432927,0.050621846179174375,0.04992804674195106,0.04924958394548002,0.048586054044369956,0.04793706217324539,0.04730222251912454,0.0466811584354367,0.04607350250528925,0.045284688000443114,0.04448272869078476,0.04369929722423633,0.04293388282057651,0.04218598896755407,0.041455133201313416,0.04074084686319335,0.04004267483719202,0.0393601752718988,0.03869291929022944,0.038040490689841576,0.03740248563680499,0.036778512354701635,0.03616819081108325,0.035571152402932016,0.03498703964255923,0.0344155058451344,0.03385621481891878,0.03330884055905751,0.0327730669456783,0.03224858744692087,0.031735104827383114,0.03123233086242658,0.030739986058646408,0.030257799380774626,0.029785507985202197,0.0293228569602692,0.028869599073390144,0.02842549452508871,0.027990310709934223,0.02756382198436795,0.027145809441378933,0.026736060691943887,0.0263343696531689,0.025940536343012573,0.025554366681481203,0.025175672298174294,0.024804270346031564,0.02443998332115905,0.02408263888857277,0.023732069713715533,0.023388113299590937,0.0230506118293665,0.022719412014274274,0.022394364946674638,0.022075325958111982,0.021762154482215496,0.02145471392229633,0.02115287152347844,0.020856498249234807,0.020565468662170086,0.020279660808914496,0.01999895610898877,0.01972323924751099,0.019452398071600503,0.01918632349036837,0.018924909378357672,0.01866805248231639,0.018415652331190416,0.018167611149210762,0.0179238337719809,0.017684227565445736,0.017448702347643362,0.017217170313143088,0.016989545960062816,0.016765746019587593,0.01654568938788744,0.016329297060353166,0.016116492068065133,0.015907199416416613,0.015701346025806695,0.015498860674338153,0.015299673942439855,0.015103718159346819,0.014910927351373242,0.014721237191905802,0.014534584953066152,0.0143509094589737,0.014170151040555037,0.01399225149184251,0.013817154027712362,0.013644803243002308,0.013475145072969727,0.013308126755035217,0.013143696791767506,0.01298180491506819,0.012822402051506943,0.01266544028877494,0.012510872843210698,0.012358654028362202,0.01220873922455151,0.01206108484939949,0.011915648329286252,0.011772388071707553,0.011631263438499068,0.011492234719896686,0.011355263109407286,0.011220310679455017,0.011087340357784616,0.010956315904590123,0.010827201890345419,0.010699963674314856,0.01057456738371537,0.010450979893514647,0.010329168806838944,0.010209102435971422,0.010090749783922996,0.009974080526550988,0.009859064995214625,0.009745674159943643,0.009633879613105719,0.009523653553554766,0.009414968771246729,0.009307798632302258,0.009202117064508289,0.009097898543238973,0.00899511807778437,0.00889375119807448,0.008793773941782101,0.008695162841797483,0.008597894914058853,0.008501947645728784,0.008407298983705071,0.00831392732345702,0.008221811498172462,0.008130930768211487,0.008041264810852796,0.007952793710325083,0.00786549794811545,0.007779358393542886,0.007694356294593042,0.007610473269002843,0.0075276912955882,0.0074459927058087415,0.007365360175558381,0.007285776717180024,0.007207225671693481,0.007129690701231979,0.007053155781680132,0.00697760519550892,0.006903023524798227,0.006829395644445685,0.0067567067155532064,0.006684942178986656,0.006614087749104963,0.006544129407650094,0.006475053397797668,0.006406846218360192,0.006339494618139637,0.0062729855904248375,0.0062073063676303325,0.0061424444160698985,0.0060783874308646575,0.006015123330978961,0.005952640254381343,0.005890926553327955,0.005829970789762212,0.005769761730830896,0.005710288344510806,0.005651539795343758,0.005593505440277574,0.005536174824607766,0.005479537678020244,0.005423583910729949,0.005368303609713474,0.0053136870350330755,0.005259724616250127,0.005206406948923616,0.0051537247911940505,0.005101669060448481,0.005050230830064883,0.004999401326234858,0.004949171924859888,0.004899534148522429,0.004850479663527593,0.004802000277014118,0.004754087934132964,0.004706734715292114,0.004659932833464049,0.004613674631556884,0.00456795257984541,0.004522759273461204,0.00447808742994085,0.004433929886828937,0.004390279599336782,0.004347129638053723,0.004304473186710097,0.00426230353999129,0.004220614101399633,0.004179398381165476,0.004138649994204157,0.004098362658118666,0.00405853019124641,0.004019146510749785,0.0039802056307476795,0.0039417016604891145,0.0039036288025663646,0.0038659813511670894,0.0038287536903649894,0.003791940292446539,0.0037555357162749243,0.0037195346056887258,0.0036839316879350437,0.0036487217721366707,0.0036138997477910234,0.003579460583302006,0.003545399324542597,0.0035117110934478673,0.0034783910866376783,0.0034454345740687646,0.0034128368977141763,0.003380593470271222,0.003348699773895949,0.003317151358963846,0.0032859438428567227,0.003255072908773758,0.0032245343045678807,0.0031943238416056244,0.003164437393650461,0.17081750280031877,0.17068077968842668,0.1702724206718397,0.16959779163576702,0.1686656233260469,0.16748770803284488,0.16607850375701955,0.16445467088104979,0.1626345687863329,0.16063773975950138,0.15848440522424456,0.15619499536026882,0.15378972817889408,0.15128824876665356,0.148709334246074,0.1460706654548443,0.14338866266690706,0.14067837997566132,0.13795345120985572,0.13522607935220918,0.13250706122414738,0.12980583951547,0.1271305749098687,0.12448823193990873,0.12188467318172615,0.11932475738197032,0.11681465791863878,0.11438944465038135,0.11205616576266936,0.10980986864211825,0.10764594126023407,0.10556008403543457,0.10354828437922738,0.10160679363937546,0.09973210618637907,0.0979209404191709,0.0961702214917246,0.09447706558486167,0.09283876556719105,0.09125277790676559,0.08971671071007756,0.088228312778567,0.0867854635847038,0.08538605256260064,0.08401665277287962,0.0826695255867305,0.08134530179618048,0.08004447104861312,0.07876739612772654,0.07751432628887651,0.07628540964177775,0.07508070459080353,0.07390019035636412,0.07274377661077054,0.0716113122690682,0.07050259348027253,0.06941737086724079,0.0683553560649382,0.06731622760707769,0.06629963621038759,0.06530520950449044,0.06433255625339883,0.06338127011246845,0.062450932962181294,0.0615411178575204,0.06065139162911956,0.05978131716968119,0.05893045543662348,0.058098367199403415,0.05728461455761539,0.056488762253654144,0.0557103788016906,0.05494903745265813,0.05420431701313629,0.05347580253433823,0.052763085885771534,0.05206576622680134,0.05138345038793734,0.05071575317251045,0.05006229758830658,0.04942271501772973,0.048759444556803484,0.04790849900893201,0.04707687960342028,0.04626406737326541,0.04546955698342562,0.04469285660153425,0.0439334877361198,0.04319098504741454,0.042464896135288026,0.041754781308299065,0.04106021333736108,0.040380777197144876,0.039716069797908676,0.03906569971013954,0.03842928688407834,0.03780646236595163,0.03719686801244352,0.03660015620481414,0.03601598956379834,0.03544404066630299,0.03488399176476892,0.03433553450989596,0.03379836967738004,0.03327220689914245,0.03275676439948731,0.032251768736522336,0.031756954549124146,0.03127206430964305,0.030796848082527518,0.030331063288968365,0.029874474477636036,0.029426853101559045,0.02898797730113014,0.02855763169325001,0.028135607166544393,0.027721700682608662,0.027315715083203115,0.026917458903297897,0.026526746189888643,0.026143396326456264,0.0257672338629618,0.02539808835125056,0.025035794185746207,0.02468019044928654,0.024331120763990213,0.023988433147004024,0.02365197987100007,0.023321617329292728,0.022997205905426223,0.022678609847117986,0.022365697144410557,0.022058339411907907,0.021756411774965373,0.021459792759710602,0.021168364186761348,0.020882011068534476,0.020600621510014287,0.020324086612870478,0.02005230038281581,0.019785159640083098,0.01952256393292937,0.019264415454053024,0.019010618959827225,0.018761081692255023,0.018515713303541532,0.018274425783206,0.018037133387634522,0.017803752571991273,0.017574201924405067,0.017348402102354502,0.017126275771164375,0.016907747544552522,0.01669274392714337,0.016481193258884433,0.016273025661298728,0.016068172985501505,0.015866568761928997,0.015668148151711282,0.015472847899633537,0.015280606288629324,0.015091363095754491,0.014905059549581653,0.014721638288976147,0.014541043323196681,0.01436321999327656,0.014188114934643715,0.01401567604092807,0.01384585242892522,0.013678594404667956,0.013513853430570398,0.013351582093608969,0.013191734074497963,0.01303426411783403,0.012879128003169416,0.012726282516984877,0.012575685425530088,0.012427295448504539,0.012281072233544226,0.012136976331494133,0.011994969172434516,0.011855013042436706,0.011717071061026221,0.01158110715932309,0.011447086058844768,0.01131497325094282,0.01118473497685538,0.011056338208355327,0.010929750628969549,0.010804940615757857,0.010681877221626786,0.010560530158163705,0.010440869778972775,0.010322867063498551,0.010206493601316485,0.010091721576881417,0.009978523754714289,0.0098668734650149,0.00975674458968794,0.009648111548764816,0.009540949287214558,0.009435233262126717,0.009330939430256327,0.009228044235918872,0.009126524599225673,0.009026357904644986,0.008927521989884089,0.008829995135077855,0.008733756052276167,0.008638783875221634,0.008545058149404889,0.008452558822394223,0.008361266234427076,0.00827116110925646,0.008182224545246013,0.008094438006702462,0.008007783315442656,0.007922242642585009,0.007837798500559693,0.007754433735330502,0.007672131518823637,0.007590875341553456,0.0075106490054442565,0.007431436616838486,0.007353222579687227,0.007275991588918674,0.007199728623975859,0.0071244189425233116,0.007050048074314235,0.006976601815214911,0.0069040662213813485,0.006832427603584999,0.006761672521680129,0.006691787779212863,0.006622760418164889,0.006554577713828803,0.006487227169812568,0.00642069651316625,0.006354973689631539,0.006290046859007938,0.006225904390632866,0.006162534858973712,0.006099927039325908,0.0060380699036177606,0.0059769526163161,0.00591656453043145,0.005856895183619281,0.005797934294375944,0.005739671758324063,0.005682097644588238,0.005625202192256366,0.0055689758069246975,0.005513409057325569,0.005458492672032893,0.005404217536246603,0.005350574688651652,0.005297555318350391,0.005245150761866092,0.0051933525002167335,0.0051421521560547825,0.00509154149087446,0.005041512402282152,0.004992056921329441,0.004943167209907469,0.004894835558199246,0.004847054382190926,0.004799816221238688,0.0047531137356902784,0.004706939704560568,0.00466128702325779,0.004616148701361766,0.0045715178604507686,0.004527387731976691,0.004483751655186953,0.004440603075092761,0.004397935540480703,0.004355742701969032,0.004314018310105661,0.004272756213507541,0.0042319503570409115,0.0041915947800396135,0.004151683614562977,0.004112211083690465,0.00407317149985282,0.004034559263199321,0.003996368859998666,0.003958594861074835,0.003921231920275451,0.003884274772972483,0.0038477182345943834,0.0038115571991893978,0.0037757866380179134,0.003740401598175022,0.003705397201241235,0.003670768641961058,0.0036365111869493165,0.003602620173423113,0.003569091007960732,0.003535919165285424,0.0035031001870740653,0.18038296214670715,0.18023633991991156,0.17979847303596413,0.17907528662144204,0.17807641366838206,0.17681484971738107,0.17530650330692038,0.17356967147786997,0.1716244722670076,0.16949226576229354,0.1671950923341083,0.16475515177960803,0.1621943411242165,0.1595338624997783,0.15679390652552885,0.1539934114314928,0.15114989406009602,0.14827934595189574,0.14539618591360087,0.14251325963379305,0.1396418768567074,0.13679187713666435,0.1339717160802557,0.13118856507135152,0.12844841863572293,0.12575620474155308,0.12313273678178135,0.12060924792270594,0.11818112058058797,0.11584321759938995,0.11359075554020509,0.11141927540905718,0.10932461618158718,0.10730289082498198,0.1053504645526099,0.10346393507757802,0.10164011465838718,0.09987601375342454,0.09816882612159324,0.09651591522471661,0.09491480180310252,0.09336315250982281,0.09185876950159846,0.09039958089502857,0.08898363200670519,0.087605973099596,0.08625126096860843,0.08491824959208777,0.08360750436086521,0.08231946270379813,0.0810544469324756,0.07981267622954076,0.07859427777953372,0.07739929705504184,0.07622770728157509,0.07507941811259183,0.07395428355170809,0.07285210916294065,0.0717726586120936,0.07071565958336246,0.06968080911538267,0.06866777840015978,0.06767621708708245,0.06670575713259118,0.06575601623401316,0.06482660088405567,0.0639171090800928,0.06302713272014075,0.06215625971512679,0.06130407584483565,0.06047016638269867,0.059654117512622944,0.05885551755899252,0.05807395804919344,0.05730903462627291,0.05656034782769498,0.05582750374473538,0.05511011457561802,0.054407799084257885,0.05372018297531399,0.05304689919519701,0.052387588167679244,0.05164797924512062,0.05076475802726529,0.04990115081267996,0.04905664589754613,0.048230744273806934,0.04742295957068949,0.046632817959022334,0.04585985802373828,0.0451036306093469,0.0443636986425798,0.04363963693600368,0.042931031975886616,0.04223748169726251,0.04155859524876567,0.04089399274952494,0.04024330504007282,0.03960617342905877,0.03898224943725774,0.038371194540211886,0.03777267991065977,0.037186386161727376,0.036612003091764767,0.03604922943153873,0.03549777259441128,0.03495734843002886,0.03442768098197115,0.03390850224970119,0.03339955195514326,0.03290057731411013,0.03241133281276829,0.031931579989296265,0.031461087220814095,0.030999629515682667,0.030546988311186716,0.030102951276624622,0.029667312121797806,0.029239870410851253,0.028820431381444356,0.028408805769172325,0.028004809637171828,0.027608264210827994,0.027218995717494858,0.02683683523111822,0.026461618521677943,0.026093185909324582,0.025731382123106265,0.025376056164177593,0.025027061173358105,0.02468425430294749,0.024347496592663248,0.024016652849593118,0.023691591532042325,0.023372184637168458,0.023058307592276114,0.022749839149677355,0.02244666128499536,0.02214865909880656,0.021855720721521192,0.02156773722138418,0.02128460251551338,0.02100621328386318,0.020732468886021056,0.020463271280747704,0.020198524948157676,0.019938136814466895,0.0196820161792102,0.0194300746448488,0.019182226048685868,0.018938386397015974,0.01869847380142119,0.018462408417153957,0.018230112383526408,0.018001509766238485,0.01777652650158289,0.017555090342452104,0.017337130806098163,0.017122579123574712,0.01691136819080767,0.01670343252123962,0.016498708199986514,0.016297132839464323,0.016098645536428147,0.01590318683037713,0.015710698663277282,0.015521124340561018,0.015334408493350209,0.015150497041872147,0.014969337160019329,0.01479087724101704,0.014615066864162043,0.014441856762590157,0.014271198792046013,0.014103045900614364,0.013937352099383018,0.013774072434004817,0.013613162957131155,0.01345458070168044,0.013298283654923288,0.013144230733349176,0.012992381758291406,0.01284269743228689,0.012695139316139884,0.012549669806674718,0.012406252115148321,0.012264850246303334,0.012125428978039757,0.011987953841687243,0.011852391102852074,0.01171870774282868,0.01158687144055004,0.011456850555063207,0.01132861410851272,0.011202131769611936,0.011077373837592124,0.010954311226609649,0.010832915450598104,0.010713158608552369,0.010595013370226457,0.010478452962238113,0.010363451154562782,0.010249982247406282,0.010138021058443669,0.01002754291041461,0.009918523619060017,0.009810939481394476,0.009704767264300232,0.009599984193433978,0.009496567942438288,0.00939449662244387,0.009293748771859673,0.009194303346437444,0.009096139709604208,0.00899923762305529,0.008903577237596638,0.008809139084233612,0.00871590406549529,0.008623853446988594,0.008532968849174784,0.00844323223936353,0.008354625923913794,0.008267132540640917,0.008180735051419854,0.008095416734979896,0.008011161179886784,0.00792795227770278,0.007845774216324585,0.00776461147349023,0.007684448810451377,0.007605271265806088,0.007527064149488364,0.007449813036907036,0.0073735037632339075,0.007298122417833701,0.007223655338832793,0.007150089107824013,0.00707741054470033,0.007005606702618102,0.00693466486308314,0.006864572531157176,0.006795317430782229,0.006726887500216995,0.006659270887585631,0.0065924559465332525,0.006526431231986262,0.006461185496014225,0.006396707683791604,0.00633298692965402,0.00627001255325001,0.006207774055783008,0.0061462611163419015,0.006085463588319053,0.006025371495910229,0.005965975030698262,0.005907264548315309,0.005849230565182743,0.005791863755326441,0.00573515494726605,0.005679095120974332,0.005623675404907748,0.005568887073103946,0.005514721542345319,0.005461170369387749,0.005408225248250391,0.005355878007568076,0.005304120608002409,0.005252945139710927,0.005202343819873271,0.00515230899027116,0.005102833114923338,0.005053908777772064,0.00500552868042086,0.004957685639921603,0.004910372586610922,0.004863582561992392,0.00481730871666609,0.0047715443083024825,0.004726282699660093,0.004681517356646475,0.004637241846419619,0.0045934498355312894,0.004550135088109381,0.0045072914640790235,0.004464912917421419,0.004422993494469975,0.004381527332241339,0.004340508656802588,0.004299931781672036,0.004259791106253634,0.004220081114304307,0.00418079637243222,0.004141931528627108,0.0041034813108204796,0.0040654405254754045,0.0040278040562058345,0.003990566862423013,0.003953723978010695,0.00391727051002665,0.003881201637430663,0.19084583209948194,0.1906875429105986,0.1902149108015293,0.18943455593572572,0.18835723097933452,0.1869974213971313,0.18537282661075646,0.18350375701502578,0.18141248474254287,0.179122585290272,0.1766583032275595,0.174043969075317,0.17130348709221271,0.16845990609496495,0.16553507836712533,0.16254940572266147,0.15952166717669736,0.15646891950450403,0.15340646013757386,0.1503478411459504,0.14730492323235217,0.14428795945512643,0.1413056995696297,0.13836550723621346,0.13547348374196425,0.13263879961669503,0.12990391317659972,0.12727395462958432,0.1247431729498148,0.12230622007381659,0.11995811699136534,0.11769422312604756,0.11551020864830373,0.11340202940634102,0.11136590419695885,0.10939829413094242,0.10749588387577019,0.10565556458328142,0.10387441833153102,0.10214970392934047,0.10047884394859229,0.09885941286423738,0.097289126194899,0.09576583054845317,0.0942874944871014,0.09285220013542149,0.09145813546278345,0.09009701747217229,0.0887564362765685,0.08743677441793583,0.08613855987144241,0.08486220307779145,0.08360800854067527,0.08237618565948074,0.08116685879774634,0.0799800765995843,0.07881582057511621,0.07767401298270533,0.07655452404054285,0.07545717850331456,0.07438176164166309,0.07332802466298197,0.07229568961215613,0.07128445379034486,0.07029399372873205,0.0693239687529186,0.06837402417181694,0.06744379412318084,0.06653290410595707,0.06564097322767842,0.06476761619314818,0.0639124450587905,0.0630750707751103,0.062255104537951994,0.06145215896754734,0.060665849132682775,0.05989579343588347,0.05914161437402977,0.05840293918754651,0.057679400410080905,0.05697063632948442,0.056276291369830256,0.05559601640334093,0.05479586348845326,0.05387789270467845,0.0529798333442683,0.05210118244210161,0.05124144865122884,0.05040015226616199,0.0495768252034851,0.04877101094548393,0.04798226445184592,0.04721015204400614,0.04645425126613829,0.045714150726394814,0.04498944992157731,0.04427975904807354,0.04358469880153173,0.042903900167526134,0.042237004205128895,0.04158366182511683,0.04094353356433043,0.04031628935747519,0.03970160830756123,0.039099178455949776,0.03850869655289927,0.03792986782935255,0.03736240577062864,0.03680603189254584,0.03626047552048024,0.03572547357173433,0.03520077034155098,0.03468611729306015,0.034181272851351564,0.03368600220188639,0.03320007709335804,0.03272327564511685,0.03225538215923277,0.03179618693722484,0.03134548610150297,0.030903081421506454,0.030468780144527998,0.030042394831191872,0.029623743195548426,0.029212647949712123,0.028808936653000113,0.028412441565485978,0.02802299950588929,0.027640451713728118,0.02726464371562386,0.02689542519569334,0.026532649869912838,0.026176175364366703,0.025825863097279987,0.025481578164742075,0.025143189230007724,0.024810568416297984,0.02448359120298602,0.02416213632507716,0.023846085675890978,0.023535324212836106,0.023229739866203785,0.022929223450873924,0.02263366858084822,0.02234297158652585,0.02205703143462456,0.021775749650677495,0.021499030244012358,0.021226779635137534,0.020958906585455055,0.02069532212923012,0.020435939507730566,0.020180674105481227,0.01992944338855111,0.01968216684481041,0.01943876592609499,0.01919916399220442,0.018963286256686432,0.018731059734336874,0.018502413190363335,0.018277277091153194,0.018055583556598073,0.01783726631391145,0.017622260652902767,0.017410503382648653,0.0172019327895186,0.016996488596511677,0.016794111923851166,0.016594745250807518,0.016398332378698744,0.016204818395032287,0.01601414963875198,0.01582627366654621,0.01564113922019128,0.015458696194888245,0.015278895608562751,0.015101689572095218,0.014927031260453017,0.014754874884687434,0.014585175664776871,0.014417889803280437,0.014252974459777858,0.01409038772607281,0.013930088602126,0.013772036972705107,0.013616193584720061,0.013462520025223964,0.013310978700060079,0.013161532813127543,0.013014146346254227,0.012868784039650605,0.01272541137292863,0.012583994546666453,0.01244450046450421,0.012306896715747355,0.01217115155846977,0.012037233903094592,0.0119051132964396,0.011774759906214356,0.011646144505949401,0.01151923846035073,0.011394013711061749,0.011270442762820892,0.011148498670002914,0.011028155023533413,0.01090938593815999,0.010792166040075815,0.010676470454879933,0.01056227479586524,0.01044955515262572,0.010338288079969083,0.0102284505871306,0.01012002012727574,0.010012974587283074,0.009907292277801457,0.009802951923568294,0.009699932653987088,0.00959821399395217,0.009497775854914957,0.009398598526183976,0.009300662666453333,0.009203949295549005,0.009108439786391642,0.009014115857165945,0.008920959563691284,0.008828953291989733,0.00873807975104124,0.008648321965726092,0.00855966326994533,0.00847208729991531,0.00838557798763132,0.00830011955449644,0.008215696505107617,0.008132293621199332,0.00804989595573634,0.007968488827153224,0.007888057813737024,0.007808588748146145,0.007730067712065616,0.007652481030992271,0.00757581526914674,0.007500057224510078,0.007425193923978351,0.007351212618636361,0.007278100779143581,0.007205846091231123,0.007134436451305859,0.00706385996216012,0.006994104928781133,0.006925159854261576,0.006857013435805343,0.006789654560827071,0.006723072303143993,0.006657255919254646,0.006592194844705871,0.006527878690543126,0.006464297239842979,0.006401440444325067,0.006339298421042796,0.006277861449147893,0.006217119966730401,0.006157064567729591,0.006097685998914897,0.006038975156935638,0.005980923085435632,0.005923520972234029,0.0058667601465683655,0.005810632076399001,0.0057551283657742815,0.005700240752252354,0.005645961104381472,0.005592281419234979,0.005539193820000397,0.005486690553621103,0.005434763988490168,0.005383406612192688,0.0053326110292985715,0.005282369959202135,0.005232676234008302,0.0051835227964646185,0.005134902697936366,0.005086809096425979,0.005039235254633987,0.004992174538060964,0.004945620413150239,0.0048995664454684566,0.004854006297925498,0.004808933729031069,0.004764342591187851,0.004720226829019845,0.004676580477736185,0.004633397661527389,0.004590672591995987,0.004548399566618729,0.004506572967240294,0.004465187258598407,0.004424236986877718,0.004383716778294296,0.0043436213377081945,0.004303945447264023,0.20235072605678572,0.2021785115295853,0.20166440156637389,0.20081589493963425,0.1996451572830605,0.19816854944453716,0.19640601740129132,0.19438038655899212,0.19211660640801057,0.1896409900602528,0.18698048791630717,0.18416202679504123,0.1812119366129391,0.17815547734893067,0.175016470538834,0.17181703254048264,0.16857740159560466,0.1653158473047994,0.1620486493462341,0.158790131811138,0.155552740060697,0.1523471482008042,0.1491823868397299,0.14606598251204508,0.14300411798960364,0.1400329223264986,0.1371776587932695,0.134431852453479,0.13178949065432186,0.12924498343133398,0.12679312781550614,0.12442907561366505,0.12214830428425083,0.11994659057561556,0.11781998663289422,0.11576479831384184,0.11377756548398382,0.11185504408767989,0.10999418981459208,0.10819214320144864,0.10644621602658913,0.10475387887045959,0.10311274972900988,0.10152058357902657,0.09997526280523457,0.0984747884084352,0.09701727192234125,0.0956009279742533,0.09422406743123059,0.09287771827197215,0.0915507812876594,0.09024378776884949,0.08895725281129968,0.08769158204214857,0.08644708213721833,0.0852239706645315,0.08402238525324952,0.08284239209744867,0.08168399381193195,0.08054713666319359,0.079431717203009,0.07833758833499534,0.07726456484638743,0.07621242843817747,0.07518093228696689,0.07416980517160252,0.07317875519680149,0.07220747314490511,0.07125563548557072,0.07032290707170107,0.06940894354827831,0.06851339349921712,0.06763590035558206,0.06677610408695431,0.06593364269610089,0.0651081535355293,0.06429927446310359,0.06350664485241764,0.06272990647234425,0.061968704248932374,0.06122268692166914,0.06049150760501771,0.059774824265215604,0.059072300121323064,0.05823352044110604,0.057278145712402265,0.05634298332736953,0.05542754113734755,0.05453133735164346,0.0536539006561351,0.052794770282768834,0.05195349603598132,0.051129638281541476,0.05032276790266018,0.04953246622774952,0.04875832493372858,0.047999945928387425,0.047256941214883434,0.04652893274118168,0.04581555223688542,0.045116441039642255,0.04443124991309267,0.0437596388580429,0.04310127691842528,0.04245584198335586,0.04182302058648005,0.041202507703639195,0.04059400654977348,0.03999722837582501,0.03941189226636565,0.038837724938512896,0.038274460542661815,0.03772184046547361,0.03717961313547495,0.036647533831612816,0.03612536449500624,0.0356128735441196,0.035109835693543597,0.034616031776502305,0.03413124857122498,0.0336552786312452,0.03318792011968805,0.032728976647585485,0.03227825711623751,0.03183557556360523,0.0314007510147457,0.03097360733624317,0.030553973094607834,0.03014168141859964,0.029736569865408843,0.02933848029065462,0.028947258722120024,0.028562755237158684,0.028184823843699625,0.027813322364777706,0.027448112326496785,0.027089058849365567,0.026736030542908067,0.026388899403472877,0.026047540715163676,0.025711832953790696,0.025381657693784983,0.02505689951797534,0.024737445930153073,0.024423187270350352,0.024114016632737247,0.02380982978608005,0.023510525096670398,0.023216003453655425,0.022926168196694734,0.02264092504587727,0.022360182033815484,0.022083849439865622,0.021811839726395138,0.021544067477035654,0.02128044933686367,0.02102090395443495,0.020765351925628436,0.02051371573923119,0.020265919724211285,0.020021889998623553,0.019781554420098917,0.019544842537856006,0.019311685546198606,0.019082016239440613,0.01885576896821532,0.018632879597126936,0.018413285463690823,0.018196925338533006,0.017983739386798387,0.0177736691307314,0.017566657413393014,0.017362648363469197,0.01716158736114576,0.016963421005006803,0.016768097079926388,0.01657556452592026,0.01638577340792904,0.01619867488649522,0.016014221189315204,0.015832365583629777,0.015653062349429113,0.015476266753448029,0.01530193502391842,0.015130024326064818,0.014960492738311133,0.014793299229178858,0.014628403634856284,0.014465766637410603,0.014305349743631882,0.014147115264481045,0.013991026295126344,0.013837046695548175,0.013685141071696974,0.013535274757180405,0.013387413795471573,0.013241524922615707,0.013097575550421486,0.012955533750124279,0.012815368236500185,0.01267704835242517,0.012540544053859218,0.012405825895245085,0.012272865015307674,0.012141633123244228,0.012012102485287968,0.01188424591164057,0.011758036743757166,0.011633448841974942,0.011510456573476432,0.011389034800572503,0.011269158869301828,0.011150804598332807,0.011033948268159904,0.010918566610587805,0.010804636798489593,0.010692136435837319,0.010581043547992287,0.010471336572249022,0.010362994348624924,0.010255996110890361,0.010150321477827389,0.010045950444716654,0.009942863375041208,0.009841040992402537,0.009740464372644062,0.009641114936171789,0.009542974440472208,0.009446024972817635,0.009350248943154964,0.009255629077172667,0.009162148409541842,0.009069790277323202,0.00897853831353993,0.008888376440908107,0.008799288865721695,0.008711260071888806,0.008624274815111365,0.008538318117209183,0.008453375260580842,0.008369431782798413,0.00828647347133428,0.008204486358412047,0.008123456715983513,0.008043371050824309,0.007964216099746775,0.007885978824926046,0.007808646409337943,0.0077322062523020995,0.007656645965132267,0.007581953366887037,0.007508116480220109,0.007435123527327985,0.007362962925989562,0.00729162328569943,0.007221093403889131,0.007151362262235466,0.007082419023053019,0.007014253025770102,0.006946853783482691,0.006880210979588634,0.0068143144644967355,0.00674915425241011,0.006684720518182566,0.006621003594243479,0.006557993967593248,0.006495682276864401,0.006434059309447981,0.0063731159986842425,0.006312843421113528,0.0062532327937890675,0.0061942754716478865,0.006135962944939181,0.006078286836708303,0.006021238900336286,0.005964811017130861,0.005908995193970858,0.005853783561000543,0.005799168369373164,0.005745141989043556,0.005691696906606068,0.005638825723179904,0.005586521152338391,0.00553477601808193,0.0054835832528542326,0.005432935895598664,0.005382827089856662,0.00533325008190492,0.005284198218931578,0.0052356649472497675,0.005187643810548865,0.005140128448180329,0.005093112593480008,0.005046590072124084,0.005000554800518575,0.0049550007842221015,0.004909922116399518,0.0048653129763078715,0.004821167627812327,0.004777480417932012 +1.5739999702357612,1.5708815474377427,1.5616096505690351,1.5464286652204933,1.5257275408897648,1.500014679250773,1.469887135274057,1.435997471101608,1.3990214203846831,1.3596289139854716,1.3184601761564467,1.2761077177145534,1.2331042809584707,1.1899162173510456,1.146941427970975,1.104510846822721,1.0628924515050948,1.0222968907881098,0.9828839759889982,0.9447694556987037,0.9082807596197714,0.8739761352612881,0.8417082397206757,0.8110244069565676,0.7814696759057636,0.7530542785791549,0.7257778669299977,0.6996290965523542,0.6745880001528081,0.6506280012037116,0.6277176018663692,0.6058217820547425,0.5849031465400865,0.5649228552687794,0.5458413693007169,0.5276190415004778,0.51021657767429,0.49359539047627315,0.47771786524339377,0.46254755403991343,0.4480493116246419,0.434189384808963,0.42093546473124505,0.40825670991298785,0.39612374655597166,0.3845086513550416,0.37338492111202676,0.36272743261376367,0.35251239555537184,0.34271730073029316,0.3333208652471175,0.324302976157582,0.31564463357363354,0.3073278941030392,0.2993358152316845,0.291652401120158,0.284262550151825,0.27715200446719057,0.27030730163764294,0.263715728567222,0.25736527766175205,0.25124460526545017,0.24534299233627577,0.23965030730927,0.2341569710809903,0.2288539240372897,0.2237325950387946,0.2187848722740175,0.21400307588774917,0.20937993229192384,0.20490855006668687,0.20058239736174058,0.19639528071015344,0.19234132517019986,0.18841495571429068,0.1846108797875053,0.18092407096249744,0.17734975362100341,0.17388338859624988,0.17052065971431024,0.16725746117614523,0.1640898857254735,0.16101421355132756,0.15802690187708757,0.15512457519105374,0.15230401607657118,0.14956215660226846,0.1468960702359322,0.14430296424764089,0.1417801725702739,0.13932514908766358,0.13693546132249249,0.13460878449821342,0.1323428959507434,0.13013566986747443,0.12798507233263898,0.12588915665950187,0.12384605899108077,0.12185399415251945,0.11991125173918858,0.11801619242576801,0.1161672444825559,0.1143629004860738,0.11260171421206415,0.11088229769961648,0.10920331847598777,0.10756349693234839,0.10596160384135477,0.10439645800796604,0.10286692404561645,0.10137191027024223,0.09991036670520732,0.09848128319063662,0.0970836875909969,0.09571664409529598,0.0943792516044914,0.09307064220112161,0.09178997969648572,0.09053645825090993,0.08930930106306001,0.08810775912436113,0.08693111003492497,0.08577865687756443,0.08464972714671476,0.08354367172920453,0.08245986393411818,0.08139769856904318,0.0803565910602232,0.07933597661428113,0.07833530941925816,0.07735406188294772,0.076391723906521,0.0754478021916166,0.07452181957915058,0.07361331441822414,0.07272183996354499,0.07184696379995768,0.07098826729266972,0.07014534506188795,0.06931780448065425,0.06850526519468705,0.06770735866318402,0.06692372771951781,0.06615402615086165,0.06539791829583033,0.06465507865923602,0.06392519154317046,0.06320795069360423,0.0625030589617738,0.06181022797965197,0.061129177848850004,0.0604596368422927,0.05980134111810944,0.05915403444514696,0.05851746793957651,0.05789139981209793,0.057275595125228194,0.056669825560254176,0.0560738691933872,0.05548751028071596,0.054910539051571096,0.05434275150990786,0.053783949243381104,0.05323393923975312,0.052692533710324306,0.052159549920075966,0.051634810024246594,0.05111814091104208,0.05060937405024614,0.05010834534745958,0.049614895003736635,0.04912886738039792,0.04865011086878301,0.04817847776476407,0.04771382414780273,0.04725600976437047,0.046804897915551966,0.04636035534866705,0.0459222521527295,0.04549046165761321,0.04506486033675695,0.044645327713273106,0.04423174626933033,0.043824001358662865,0.04342198112210657,0.043025576406025334,0.04263468068352219,0.04224918997832453,0.041869002791246154,0.04149402002911182,0.0411241449360697,0.040759283027186996,0.040399342024244854,0.040044231793656626,0.0396938642864139,0.039348153480003305,0.039007015322208384,0.03867036767672846,0.03833813027055497,0.03801022464302451,0.037686574096507615,0.03736710364865865,0.03705173998617622,0.03674041142001835,0.03643304784202427,0.036129580682880615,0.03582994287140112,0.035534068795060395,0.03524189426174102,0.03495335646265791,0.03466839393640313,0.03438694653409156,0.03410895538555474,0.03383436286655273,0.033563112566971365,0.033295149259960716,0.033030418871997126,0.0327688684538269,0.03251044615226613,0.03225510118282594,0.03200278380314096,0.03175344528716185,0.03150703790010286,0.03126351487410683,0.031022830384608947,0.030784939527379006,0.030549798296210216,0.03031736356124709,0.03008759304792114,0.02986044531647932,0.02963587974208511,0.02941385649547648,0.02919433652415528,0.028977281534102384,0.028762653971993173,0.028550417007900914,0.028340534518474982,0.02813297107057155,0.02792769190533241,0.02772466292269184,0.027523850666298637,0.02732522230884565,0.027128745637783867,0.02693438904142254,0.02674212149539347,0.026551912549473124,0.02636373231474946,0.026177551451127913,0.025993341155156755,0.02581107314817391,0.025630719664757835,0.02545225344147523,0.025275647705920532,0.025100876166030156,0.02492791299967368,0.02475673284450707,0.02458731078808239,0.024419622358205915,0.024253643513540972,0.02408935063444037,0.023926720514012113,0.02376573034940431,0.02360635773330535,0.023448580645655723,0.023292377445558867,0.02313772686339406,0.022984607993118984,0.02283300028475983,0.022682883537084222,0.022534237890447312,0.022387043819813154,0.022241282127941447,0.022096933938737073,0.021953980690756717,0.02181240413087208,0.02167218630807781,0.021533309567449324,0.02139575654424022,0.021259510158117535,0.02112455360753254,0.020990870364219056,0.02085844416782204,0.020727259020648113,0.020597299182537093,0.020468549165850326,0.02034099373057501,0.020214617879536115,0.020089406853720584,0.019965346127704692,0.01984242140518483,0.019720618614609654,0.019599923904906804,0.01948032364130793,0.019361804401264626,0.01924435297045498,0.01912795633887942,0.019012601697039444,0.01889827643220299,0.018784968124749918,0.01867266454459715,1.4945976900886015,1.4915618222582145,1.482537425840671,1.4677682621786496,1.4476418393087178,1.4226638110675984,1.393426682970257,1.3605762859272221,1.324779262326178,1.2866941519361663,1.2469477731329746,1.2061176745597328,1.1647206409319926,1.1232066609588738,1.0819574253147985,1.0412882905701377,1.0014526687466543,0.9626479242430036,0.9250220300201899,0.8886804157522759,0.8539952727557811,0.821431444262242,0.7908249732858609,0.7618690945295354,0.7340123848490556,0.7072285249645758,0.681518291867329,0.6568718063025719,0.6332708240257428,0.610690680839536,0.589101923668824,0.5684716628873083,0.5487646813170832,0.5299443337681167,0.5119732683831443,0.4948139979277008,0.47842934586252195,0.4627827887871958,0.44783871378751766,0.4335626064347465,0.4199211826999754,0.4068824758722143,0.39441588768843394,0.38249221127533856,0.37108363214195517,0.3601637123149981,0.3497073617524101,0.3396908003746431,0.33009151339443676,0.3208882020850692,0.3120607316814716,0.3035900777461878,0.2954582720364332,0.2876483486692796,0.2801442911879764,0.27293098097787744,0.2659941473551544,0.25932031955292634,0.2528967807511021,0.24671152423431233,0.2407532117150797,0.2350111338218241,0.22947517272368162,0.2241357668431369,0.2189838775919941,0.21401095805599285,0.20920892354578133,0.20457012392787727,0.2000873176470729,0.19575364735138692,0.19156261703122346,0.1875080705866984,0.18358417173914152,0.17978538520608534,0.1761064590623687,0.17254240821338862,0.16908849891055663,0.16574023424239062,0.1624933405385616,0.15934375462781836,0.1562876118942403,0.15332123507955484,0.1504411237827826,0.1476439446113093,0.14492652194060116,0.1422858292425786,0.13971898094516155,0.1372232247882469,0.13479593464345466,0.1324346037673139,0.13013683845963755,0.12790035210057016,0.12572295954187826,0.12360257182944508,0.12153719123565684,0.11952490658176597,0.1175638888317119,0.11565238694002514,0.11378872393781243,0.1119712932417123,0.11019855517184293,0.1084690336656978,0.10678131317573009,0.10513403573935427,0.10352589821067837,0.10195564964409258,0.10042208882045657,0.09892406190727035,0.09746046024469814,0.09603021824998774,0.09463231143317055,0.09326575451747364,0.09192959965829266,0.09062293475490309,0.08934488184958021,0.08809459560901677,0.08687126188332252,0.0856740963381801,0.08450234315595004,0.08335527380189395,0.08223218585180328,0.08113240187762696,0.08005526838786602,0.07900015481973335,0.07796645258019073,0.07695357413325508,0.07596095213102183,0.07498803858606282,0.07403430408299211,0.0730992370270769,0.07218234292797979,0.07128314371674548,0.07040117709430818,0.06953599590987024,0.06868716756762712,0.06785427346033766,0.06703690842842186,0.06623468024324622,0.06544720911339075,0.0646741272127519,0.06391507822935709,0.06316971693390634,0.062437708767034736,0.061718729444385084,0.061012464578635094,0.06031860931762065,0.05963686799782318,0.058966953812450325,0.058308588493426364,0.057661502006629804,0.057025432259760395,0.056400124822219566,0.05578533265647702,0.05518081586036416,0.05458634141979928,0.05400168297147348,0.05342662057501826,0.05286094049425626,0.052304434987101155,0.05175690210372669,0.05121814549264208,0.050687974214299936,0.050166202561934985,0.04965264988929247,0.04914714044495264,0.04864950321296484,0.04815957175952255,0.04767718408540262,0.04720218248394574,0.0467344134043239,0.046273727319878305,0.045819978601316834,0.045373025394552575,0.04493272950301199,0.04449895627421003,0.04407157449042193,0.043650456263282914,0.043235476932160094,0.042826514966128076,0.042423451869423034,0.04202617209021994,0.04163456293260443,0.04124851447161786,0.04086791947123698,0.04049267330519421,0.040122673880510974,0.039757821563643624,0.039398019109139454,0.039043171590710316,0.03869318633461687,0.03834797285529395,0.03800744279311692,0.03767150985423273,0.0373400897523821,0.03701310015262423,0.036690460616910725,0.036372092551426434,0.03605791915563664,0.035747865372980775,0.03544185784314009,0.035139824855838636,0.0348416963061086,0.03454740365097267,0.03425687986748965,0.03397005941212008,0.033686878181351916,0.033407273473558055,0.03313118395202969,0.03285854960914739,0.03258931173165544,0.032323412866987436,0.032060796790622986,0.03180140847442817,0.031545194055949105,0.03129210080863011,0.03104207711291335,0.030795072428205148,0.030551037265668008,0.030309923161814804,0.030071682652877352,0.029836269249927022,0.02960363741471221,0.02937374253620264,0.029146540907805978,0.02892198970524002,0.02870004696504009,0.028480671563672066,0.02826382319724462,0.028049462361791067,0.027837550334106124,0.02762804915311937,0.02742092160179059,0.027216131189502914,0.027013642134948244,0.02681341934948181,0.026615428420933385,0.026419635597863787,0.02622600777424435,0.026034512474557497,0.02584511783929658,0.025657792610856347,0.025472506119803496,0.025289228271508632,0.02510792953313882,0.02492858092099194,0.024751153988165533,0.024575620812549128,0.024401953985133437,0.024230126598619253,0.024060112236327022,0.02389188496139117,0.023725419306232697,0.023560690262304253,0.02339767327009333,0.023236344209384353,0.023076679389765823,0.02291865554137807,0.022762249805893527,0.022607439727725595,0.022454203245453455,0.02230251868346402,0.02215236474379997,0.02200372049820924,0.021856565380392205,0.02171087917843548,0.02156664202743483,0.021423834402295557,0.021282437110708246,0.02114243128629625,0.02100379838192434,0.02086652016317226,0.02073057870196262,0.02059595637034113,0.020462635834404146,0.020330600048372314,0.020199832248800082,0.020070315948925384,0.01994203493314977,0.019814973251647515,0.019689115215102138,0.01956444538956134,0.01944094859141459,0.019318609882484367,0.01919741456523111,0.019077348178066705,0.018958396490777338,0.01884054550004643,0.018723781425082797,0.018608090703345598,0.01849345998636545,0.018379876135661083,0.01826732621874397,0.01815579750521498,0.018045277462946457,0.0179357537543485,0.017827214232719425,0.017719646938672957,0.01761304009664741,0.017507382111489077,0.017402661565110448,1.4239712488757383,1.421007497464357,1.4121994705383978,1.3977908463851882,1.378168553244325,1.3538366268242268,1.325384360879116,1.2934523412386991,1.2586997002909557,1.221775218463738,1.1832939544858763,1.1438201265223837,1.1038561548872123,1.063837199722997,1.0241301987111084,0.985036296406573,0.9467956002924806,0.9095933378586114,0.8735666718423734,0.838811619513697,0.8057334106497834,0.7747120173209,0.7455778627256682,0.718133911289527,0.6918230631671916,0.666520770639441,0.6422294129718883,0.6189409636811792,0.5966392081935367,0.5753016292446272,0.5549009900042045,0.5354066481778522,0.5167856348357224,0.49900353042001044,0.48202516800753015,0.4658151909711118,0.4503384890468385,0.4355605337058417,0.421447630790934,0.4079671056935166,0.39508743394414564,0.3827783279849598,0.37101078906953555,0.35975713167561585,0.34899098649498705,0.3386872869511294,0.3288222432658154,0.31937330732262026,0.3103191309351958,0.3016395196024692,0.2933153833999864,0.2853286863044022,0.2776623949607182,0.27030042766933404,0.26322760418154945,0.2564295967418866,0.24989288269385868,0.24360469887009664,0.23755299791153917,0.2317264066002196,0.22611418624428425,0.2207061951172976,0.21549285292701997,0.21046510726840517,0.20561440200046002,0.2009326474765853,0.19641219255057682,0.19204579827644733,0.18782661321796135,0.18374815028342986,0.17980426500171276,0.17598913515755135,0.17229724170626,0.1687233508909145,0.16526249748835112,0.1619099691134886,0.15866129151533148,0.15551221480122632,0.15245870052964916,0.1494969096152061,0.1466231909929557,0.14383407099222062,0.14112624337348625,0.13849655998464136,0.13594202199581015,0.13345977167471185,0.13104708466682086,0.12870136274726723,0.12642012701337257,0.12420101148895439,0.12204175711349502,0.11994020609096313,0.11789429657501281,0.11590205766866134,0.11396160471816126,0.11207113488212644,0.11022892295829534,0.10843331745141503,0.10668273686702939,0.10497566621680433,0.10331065372210327,0.10168630770341909,0.10010129364400924,0.09855433141702774,0.09704419266599529,0.0955696983292365,0.09412971629948491,0.09272315921047773,0.09134898234282042,0.09000618164203553,0.08869379184205374,0.08741088468789505,0.08615656725172222,0.08492998033672236,0.08373029696377464,0.08255672093604835,0.08140848547705487,0.08028485193796592,0.07918510857019984,0.07810856935964447,0.07705457291899928,0.07602248143500578,0.07501167966750143,0.07402157399745395,0.07305159152123555,0.07210117918867114,0.07116980298243662,0.07025694713659097,0.06936211339215244,0.06848482028770432,0.06762460248322191,0.06678101011533147,0.06595360818236792,0.06514197595767329,0.0643457064296861,0.06356440576740828,0.06279769280999455,0.06204519857920117,0.061306565813552066,0.06058144852313432,0.059869511563965604,0.0591704302309946,0.05848388986878912,0.05780958549904643,0.05714722146411652,0.05649651108572911,0.05585717633822854,0.055228947535590135,0.054611563031571435,0.05400476893236898,0.053408318821201575,0.052821973494233045,0.052245500707338105,0.05167867493318281,0.05112127712815109,0.05057309450867211,0.05003392033649616,0.04950355371254166,0.04898179937890552,0.04846846752867299,0.047963373623190024,0.04746633821644179,0.04697718678625111,0.04649574957197824,0.046021861418441626,0.04555536162579042,0.04509609380507479,0.04464390573925258,0.04419864924942142,0.04376018006603825,0.043328357704917136,0.042903045347812876,0.042484109727377935,0.04207142101633463,0.04166485272066988,0.041264281576692215,0.04086958745179117,0.04048065324875341,0.040097364813474166,0.03971961084594907,0.039347282814396374,0.03898027487239185,0.03861848377889786,0.03826180882105938,0.03791015173967671,0.037563416657233624,0.03722151000838851,0.03688434047282925,0.03655181891040733,0.03622385829844728,0.03590037367116868,0.03558128206112422,0.035266502442583,0.03495595567678975,0.03464956445901529,0.034347253267349095,0.03404894831315688,0.03375457749314336,0.03346407034296729,0.03317735799233793,0.032894373121555874,0.03261504991943241,0.0323393240425431,0.032067132575765545,0.03179841399405947,0.03153310812543348,0.03127115611507118,0.031012500390564555,0.030757084628218814,0.030504853720394545,0.030255753743841297,0.0300097319289999,0.029766736630232073,0.029526717296946302,0.029289624445594846,0.029055409632499425,0.02882402542749338,0.028595425388339816,0.0283695640359064,0.028146396830067078,0.027925880146312684,0.02770797125303538,0.027492628289478682,0.027279810244320184,0.02706947693487041,0.02686158898686972,0.026656107814855612,0.026452995603092683,0.026252215287039145,0.02605373053533543,0.02585750573229707,0.02566350596089952,0.025471696986230082,0.02528204523940387,0.0250945178019205,0.024909082390450563,0.024725707342040666,0.024544361599716673,0.024365014698482627,0.024187636751695486,0.024012198437806817,0.023838670987462403,0.023667026170941668,0.02349723628593565,0.023329274145647224,0.023163113067205063,0.022998726860382474,0.02283608981661362,0.022675176698291836,0.0225159627283507,0.02235842358011261,0.022202535367399103,0.022048274634897527,0.021895618348769984,0.021744543887506084,0.02159502903300577,0.021447051961888633,0.021300591237021292,0.0211556257992606,0.021012134959398493,0.020870098390312314,0.020729496119308036,0.020590308520652887,0.020452516308294304,0.02031610052875359,0.020181042554197844,0.020047324075678597,0.019914927096534956,0.01978383392595859,0.019654027172709754,0.019525489738988794,0.01939820481445219,0.019272155870371763,0.01914732665393317,0.01902370118267037,0.01890126373902891,0.018779998865060113,0.01865989135723842,0.018540926261399582,0.0184230888677987,0.018306364706279464,0.018190739541558705,0.018076199368617804,0.017962730408200532,0.017850319102413525,0.017738952110428734,0.017628616304280805,0.01751929876476238,0.017410986777410962,0.017303667828585882,0.017197329601635145,0.01709195997314465,0.016987547009274226,0.01688407896217365,0.016781544266477835,0.016679931535880977,0.01657922955978332,0.01647942730001386,0.01638051388762388,0.01628247861975023,1.3610449760438743,1.3581445007693898,1.3495264647216452,1.3354348804281906,1.316256762490248,1.2924954058402527,1.2647379385425759,1.2336208747320876,1.1997971008014368,1.1639069615466007,1.1265551134868517,1.0882938127763102,1.0496124738949582,1.0109327571250855,0.972608127017416,0.9349267297152485,0.8981165004793931,0.8623515690263686,0.8277592255318168,0.7944271021378048,0.7628200427576438,0.7332028789910492,0.705406408654639,0.6792786651823376,0.6543792237661296,0.6304253452037568,0.6074215487631194,0.5853621052494018,0.5642331892737557,0.5440147138731504,0.524681874654185,0.5062064343775508,0.48855777981525955,0.471703781771949,0.4556114870840691,0.440247668725395,0.4255792572112374,0.41157367354865,0.39819908117396763,0.3854245717392979,0.37322029729326733,0.3615575593642664,0.3504088636863496,0.3397479477917218,0.3295497874075732,0.3197905865094416,0.31044775497604904,0.30149987703542946,0.29292667306615794,0.2847089568031805,0.27682858957378,0.2692684328440963,0.2620123000748506,0.25504490865673046,0.24835183251087148,0.24191945579224577,0.23573492801400658,0.22978612081662972,0.224061586530561,0.21855051862171704,0.213242714063765,0.20812853764494177,0.20319888819036283,0.1984451666605331,0.19385924607148697,0.1894334431719944,0.18516049180555114,0.18103351788076638,0.1770460158712341,0.1731918267653641,0.16946511738689327,0.16586036100863405,0.16237231918374828,0.15899602472167748,0.15572676573878486,0.15256007071677297,0.14949169450553793,0.14651760521012563,0.14363397190499694,0.14083715312197834,0.13812368606155073,0.13549027648002077,0.13293378920836965,0.13045123926110525,0.12803978349630135,0.12569671279052175,0.12341944469461168,0.12120551653883065,0.11905257895767357,0.11695838980688472,0.11492080844699465,0.1129377903693682,0.11100738214256578,0.10912771665814928,0.10729700865659766,0.10551355051527353,0.10377570828165954,0.10208191793611865,0.10043068186967115,0.0988205655631077,0.09725019445476969,0.09571825098518863,0.09422347180748386,0.09276464515331367,0.09134060834471028,0.08995024544286123,0.08859248502546303,0.08726629808485763,0.08597069603959323,0.08470472885267169,0.08346748325005121,0.0822580810334632,0.08107567748199149,0.07991945983714915,0.07878864586664378,0.0776824825022103,0.07660024454725828,0.07554123345033767,0.07450477614062645,0.0734902239219814,0.0724969514222061,0.07152435559446126,0.0705718547679042,0.06963888774484915,0.06872491294184879,0.0678294075723417,0.06695186686857135,0.0660918033406604,0.06524874607085938,0.06442224004105067,0.06361184549179148,0.06281713731119168,0.06203770445207752,0.061273149375958964,0.060523087522421005,0.05978714680259975,0.05906496711554557,0.05835619988628023,0.057660507624453364,0.05697756350257578,0.05630705095281371,0.05564866328146373,0.055002103300199376,0.05436708297327662,0.05374332307992211,0.05313055289114399,0.05252850986029513,0.051936939326707565,0.0513555942317787,0.050784234846914106,0.05022262851277758,0.04967054938928931,0.04912777821590398,0.04859410208166364,0.0480693142045835,0.04755321371994812,0.047045605477085355,0.04654629984426586,0.046055112521334464,0.045571864359735814,0.0450963811896008,0.04462849365358583,0.044168037047146995,0.043714851164991395,0.043268780153414996,0.04282967236827847,0.04239738023837979,0.041971760133975175,0.041552672240250436,0.04113998043551271,0.040733552173909865,0.04033325837249,0.03993897330240346,0.03955057448409468,0.03916794258630306,0.03879096132872061,0.03841951738815377,0.038053500308052816,0.037692802411254424,0.037337318715830535,0.036986946853898715,0.036641586993284646,0.0363011417619237,0.03596551617488098,0.03563461756390369,0.035308355509393166,0.03498664177470486,0.03466939024269196,0.034356516854390375,0.03404793954978129,0.03374357821053791,0.03344335460468533,0.03314719233309976,0.03285501677778176,0.03256675505182441,0.03228233595102935,0.03200168990709688,0.03172474894233522,0.03145144662583752,0.03118171803105957,0.030915499694763964,0.030652729577267404,0.03039334702395031,0.030137292727979936,0.029884508694208875,0.029634938204195146,0.02938852578231888,0.029145217162945266,0.028904959258600902,0.0286677001291313,0.02843338895179379,0.028201975992268844,0.02797341257654554,0.027747651063656092,0.027524644819232055,0.027304348189845656,0.027086716478121046,0.026871705918580343,0.026659273654203803,0.02644937771367767,0.02624197698931158,0.026037031215592955,0.025834500948369962,0.025634347544632792,0.025436533142876923,0.02524102064403166,0.025047773692927093,0.024856756660293498,0.024667934625266782,0.02448127335838782,0.024296739305078165,0.024114299569580014,0.023933921899338035,0.023755574669819087,0.0235792268697486,0.023404848086752646,0.023232408493395883,0.023061878833594673,0.02289323040940504,0.022726435068164838,0.022561465189982904,0.022398293675565766,0.022236893934365832,0.022077239873049125,0.021919305884266854,0.021763066835724276,0.02160849805953637,0.02145557534186515,0.021304274912822756,0.021154573436642093,0.021006448002099595,0.02085987611318539,0.020714835680015295,0.020571305009971882,0.02042926279907531,0.020288688123571888,0.02014956043173574,0.020011859535877297,0.01987556560455456,0.019740659154975297,0.019607121045593236,0.019474932468886007,0.019344074944312076,0.01921453031144361,0.019086280723264112,0.018959308639634367,0.018833596820915822,0.01870912832174926,0.018585886484985777,0.0184638549357611,0.018343017575715912,0.018223358577352928,0.01810486237852929,0.017987513677079743,0.017871297425568873,0.01775619882616449,0.017642203325634515,0.017529296610460366,0.017417464602064062,0.017306693452148643,0.017196969538143474,0.01708827945875815,0.01698061002963752,0.01687394827911677,0.01676828144407475,0.016663596965879872,0.016559882486430522,0.016457125844284038,0.016355315070873906,0.016254438386811166,0.01615448419827109,0.016055441093457218,0.01595729783914776,0.015860043377316755,0.015763666821830533,0.01566815745521845,0.015573504725511937,0.015479698243155569,0.015386727777984515,0.015294583256268054,1.3048837044274992,1.3020391449058712,1.2935891167131959,1.2797782556409631,1.260994127827903,1.2377399080313907,1.2106013119627106,1.1802116465696848,1.1472185087803983,1.1122548391135878,1.0759159813687225,1.038743359671414,1.0012145337752802,0.9637388154361016,0.9266573261804474,0.890246302011986,0.8547225340495976,0.8202500071134948,0.7869470054704263,0.7549026636118045,0.7246380962289264,0.696296707568072,0.6697131845673704,0.6447399455226243,0.6211123703994172,0.5983935637721727,0.5765650077055707,0.5556237281319097,0.5355586681665153,0.5163524788474525,0.4979830317389893,0.4804246815284089,0.4636493082171536,0.44762716803260827,0.4323275804915933,0.4177194766687135,0.4037718310316639,0.3904539964537687,0.37773595935820964,0.36558852948652404,0.3539834765580326,0.34289362411954727,0.33229290917076326,0.3221564146750989,0.3124603808115993,0.303182199761211,0.2943003979324009,0.2857946087891407,0.2776455388289221,0.2698349287517821,0.2623455114431014,0.25516096805204047,0.24826588316860226,0.241645699876397,0.23528667527448527,0.22917583691496388,0.22330094048377508,0.21765042895823267,0.21221339339956508,0.2069795354793991,0.20193913179334202,0.19708299997832518,0.19240246662324856,0.18788933694172785,0.18353586616007406,0.17933473256322097,0.17527901213312302,0.17136215470963093,0.16757796160094396,0.16392056456967993,0.1603844061205184,0.15696422101682297,0.15365501895504613,0.1504520683282585,0.14735088101275923,0.14434719811445518,0.14143697661502724,0.13861637686068756,0.13588175083960602,0.13322963119709466,0.13065672094066755,0.12815988378984433,0.12573613512863704,0.12338263352101084,0.12109667275236403,0.11887567436242985,0.11671718063715651,0.11461884802951977,0.11257844098097598,0.11059382611732403,0.10866296679448773,0.10678391797129844,0.10495482138808702,0.10317390103117034,0.10143945886476771,0.09974987081310473,0.09810358297668387,0.09649910806767747,0.09493502205060128,0.09340996097518826,0.09192261798937347,0.09047174052110626,0.0890561276183924,0.0876746274378128,0.08632613487228738,0.08500958930954716,0.08372397251331312,0.08246830661974834,0.08124165224214741,0.08004310667743506,0.07887180220832615,0.07772690449547803,0.07660761105432976,0.07551314981160229,0.07444277773686411,0.07339577954475801,0.07237146646381665,0.07136917506806002,0.07038826616774757,0.06942812375598004,0.06848815400796213,0.0675677843299848,0.06666646245535114,0.06578365558465823,0.06491884956795277,0.06407154812651607,0.06324127211208466,0.06242755880149059,0.06162996122482681,0.06084804752531087,0.06008140034920689,0.05932961626418006,0.05859230520460611,0.0578690899424208,0.05715960558219683,0.05646349907916411,0.05578042877903878,0.05511006397851623,0.054452084505389464,0.05380618031731256,0.05317205111824648,0.052549405991741585,0.05193796305019492,0.051337449099304766,0.05074759931698396,0.0501681569460046,0.04959887299974044,0.049039505980351165,0.0484898216088234,0.04794959256629886,0.04741859824616561,0.04689662451638099,0.04638346349157907,0.045878913314482204,0.045382777946194705,0.04489486696497495,0.04441499537307892,0.04394298341133144,0.043478656381057586,0.04302184447304903,0.042572382603247194,0.04213011025485214,0.04169487132655242,0.04126651398663224,0.04084489053267681,0.0404298572566414,0.040021274315053076,0.03961900560410969,0.039222918639485856,0.03883288444062931,0.03844877741936178,0.03807047527260804,0.03769785887906271,0.0373308121996519,0.03696922218161591,0.03661297866606823,0.03626197429888647,0.035916104444804274,0.03557526710455889,0.03523936283498907,0.03490829467195074,0.03458196805594148,0.03426029076032953,0.03394317282207081,0.0336305264748331,0.033322266084418836,0.033018308086401105,0.032718570925890963,0.03242297499933975,0.0321314425983154,0.03184389785516399,0.031560266690488746,0.03128047676237686,0.031004457417311383,0.030732139642693515,0.03046345602092973,0.03019834068501493,0.029936729275557804,0.02967855889920065,0.029423768088369863,0.029172296762323316,0.02892408618943657,0.02867907895068687,0.028437218904290084,0.028198451151453665,0.027962722003194405,0.027729978948198168,0.02750017062167209,0.027273246775159934,0.027049158247287944,0.02682785693540017,0.026609295768064336,0.026393428678408454,0.02618021057826308,0.025969597333083797,0.02576154573761873,0.025556013492307128,0.025352959180375306,0.025152342245610394,0.024954122970786755,0.024758262456727867,0.02456472260197293,0.02437346608303977,0.024184456335255677,0.023997657534140605,0.02381303457732655,0.023630553066987987,0.023450179292777682,0.023271880215242437,0.02309562344970759,0.022921377250613394,0.022749110496291955,0.022578792674163326,0.02241039386634724,0.022243884735669867,0.02207923651205536,0.0219164209792933,0.021755410462162027,0.021596177813906936,0.021438696404055498,0.021282940106561,0.021128883288266634,0.020976500797674213,0.020825767954016486,0.02067666053661708,0.02052915477453272,0.020383227336467313,0.020238855320953184,0.020096016246784424,0.019954688043703823,0.019814849043328833,0.01967647797031243,0.019539553933733064,0.019404056418701656,0.01926996527818696,0.01913726072504674,0.01900592332426156,0.01887593398536433,0.018747273955062073,0.018619924810039105,0.018493868449943673,0.01836908709054707,0.018245563257072463,0.018123279777690515,0.018002219777171254,0.017882366670695177,0.017763704157814,0.017646216216558246,0.017529887097689666,0.01741470131908887,0.01730064366028205,0.01718769915709673,0.017075853096446124,0.01696509101123728,0.016855398675401718,0.016746762099040486,0.01663916752368694,0.016532601417679097,0.016427050471640513,0.016322501594067965,0.016218941907018856,0.016116358741901596,0.01601473963536137,0.0159140723252611,0.015814344746755523,0.015715545028452692,0.015617661488665145,0.015520682631745332,0.015424597144503874,0.015329393892708468,0.01523506191766294,0.015141590432859864,0.01504896882071119,0.01495718662934964,0.014866233569501598,0.014776099511430007,0.014686774481942381,0.014598248661466912,0.014510512381191219,0.01442355612026412,0.8661648404863806,0.8649569086795312,0.8613558571492661,0.8554288131482481,0.8472840748980445,0.8370660790488487,0.824948981675895,0.8111293733513881,0.7958186702852249,0.7792356846625901,0.7615997920735987,0.743125001031676,0.7240151081427877,0.7044600086442854,0.6846331369570696,0.664689941319459,0.6447672514851825,0.6249833763944019,0.6054387651993894,0.586217074863318,0.5673865057869778,0.5490012893553003,0.5311032347521472,0.513723264674816,0.4968961984717281,0.4808585814215892,0.4656451257196266,0.45119820434350677,0.43746524738784154,0.4243871444403847,0.41175993005342176,0.399524303777962,0.3876814702030992,0.3762298687092775,0.3651656482213954,0.35448308548495916,0.3441749504701694,0.3342328230902498,0.32464736569034147,0.31540855580773175,0.3065058835870159,0.2979285180113169,0.2896654458216594,0.28170558667160117,0.27403788772709925,0.26665140058505254,0.2595353430617241,0.2526791480988175,0.24607250175488232,0.23970537199563258,0.23356802976701146,0.2276510636309733,0.2219453890631301,0.216442253352674,0.21113323690595287,0.20601025163484663,0.20106553700601668,0.1962916542372399,0.19168147904938443,0.18722819331592747,0.18292527589547153,0.17876649288377805,0.1747458874810115,0.17085776963476876,0.1670967055898276,0.16345750745087423,0.15993522284313957,0.1565251247384248,0.1532227014992079,0.15002364718120878,0.1469238521244206,0.1439193938544378,0.14100652830857344,0.13818168139575449,0.13544144089446278,0.13278254868908498,0.13020189334224364,0.1276965029980378,0.12526353860937692,0.12290028748109932,0.12060415711954027,0.11837266937827709,0.11620345488950047,0.11409424776987581,0.11204288058972459,0.11004727959433165,0.1081054601661208,0.10621552251681485,0.10437564759871616,0.10258409322461529,0.10083919038618418,0.09913933976090389,0.0974830083981451,0.09586872657520423,0.09429508481458415,0.0927607310541448,0.0912643679621651,0.08980475038964247,0.08838068295266513,0.08699101773790059,0.08563465212467497,0.08431052671745393,0.08301762338276014,0.08175496338503856,0.0805216056161025,0.07931664491319208,0.07813921046088783,0.07698846427242467,0.07586359974611413,0.07476384029293572,0.07368843803146087,0.07263667254655141,0.07160784970845753,0.07060130054908732,0.06961638019248172,0.06865246683660586,0.06770896078377413,0.06678528351718427,0.06588087682111544,0.06499520194257404,0.06412773879220354,0.06327798518245226,0.062445456101072556,0.061629683018165196,0.060830213225019615,0.060046609203182076,0.05927844802219003,0.0585253207645396,0.05778683197653295,0.0570625991436789,0.05635225218947097,0.055655432996352214,0.054971794947788324,0.054301002490406695,0.053642730715237084,0.05299666495709227,0.052362500411252386,0.05173994176658935,0.05112870285435403,0.050528506311885095,0.04993908326050835,0.04936017299698701,0.048791522697861314,0.04823288713608255,0.04768402840937559,0.047144715679763013,0.04661472492376673,0.04609383869277346,0.045581845883108076,0.045078541515370676,0.04458372652262614,0.04409720754702689,0.04361879674451691,0.04314831159723797,0.042685574733300195,0.04223041375359985,0.041782661065354464,0.041342153722086654,0.04090873326975565,0.040482245598780706,0.04006254080169465,0.03964947303619843,0.03924290039336324,0.038842684770788415,0.038448691750485355,0.03806079048129528,0.037678853565656784,0.0373027569505227,0.03693237982227911,0.0365676045054822,0.03620831636526235,0.03585440371324998,0.03550575771686549,0.035162272311854384,0.034823844117924746,0.03449037235736619,0.03416175877652949,0.033837907570058536,0.03351872530775342,0.03320412086397498,0.03289400534948234,0.03258829204560987,0.03228689634069692,0.031989735668670916,0.031696729449719074,0.031407799032952155,0.03112286764099288,0.030841860316416198,0.030564703869961633,0.030291326830465377,0.03002165939643633,0.029755633389219594,0.029493182207686354,0.029234240784398458,0.028978745543181854,0.0287266343580726,0.02847784651357322,0.028232322666176757,0.02799000480711469,0.02775083622627541,0.027514761477263873,0.02728172634355251,0.027051677805687607,0.026824564009513063,0.026600334235379188,0.02637893886829273,0.02616032936898713,0.02594445824587208,0.025731279027835445,0.025520746237869735,0.025312815367487213,0.02510744285190762,0.024904586045983598,0.024704203200841893,0.02450625344121834,0.024310696743455564,0.024117493914151966,0.023926606569431526,0.02373799711481806,0.023551628725691703,0.02336746532831216,0.023185471581382695,0.02300561285814623,0.022827855228989877,0.0226521654445429,0.022478510919255464,0.022306859715434578,0.022137180527732704,0.02196944266806733,0.02180361605096043,0.021639671179283906,0.021477579130400444,0.021317311542681038,0.021158840602396096,0.021002139030961788,0.02084718007253288,0.020693937481933558,0.020542385512909066,0.02039249890669712,0.020244252880902966,0.020097623118670558,0.019952585758143453,0.0198091173822001,0.019667195008463388,0.01952679607957058,0.01938789845369766,0.019250480395330057,0.019114520566274922,0.018979998016901464,0.018846892177610854,0.018715182850522805,0.018584850201374986,0.018455874751629842,0.01832823737077863,0.018201919268843063,0.018076901989064264,0.0179531674007752,0.01783069769245119,0.017709475364934925,0.017589483224826275,0.017470704378039166,0.017353122223514872,0.017236720447090462,0.01712148301551787,0.017007394170626394,0.01689443842362952,0.01678260054956842,0.016671865581888722,0.01656221880715003,0.016453645759858342,0.016346132217425167,0.016239664195244724,0.016134227941888478,0.01602980993441227,0.015926396873775995,0.01582397568036724,0.015722533489632713,0.015622057647809802,0.015522535707757393,0.015423955424884374,0.015326304753169193,0.015229571841273873,0.015133745028745331,0.015038812842303538,0.01494476399221542,0.0148515873687483,0.014759272038706212,0.014667807242042554,0.014577182388549551,0.014487387054621048,0.014398410980089002,0.0143102440651278,0.014222876367229277,0.014136298098243896,0.014050499621486459,0.013965471448906914,0.01388120423832036,0.013797688790700095,0.013714916047527857,0.013632877088202308,0.8318688904401064,0.8306910016981266,0.8271798536452176,0.8214018907174514,0.8134642562655039,0.803509741370149,0.7917103512609349,0.7782600179095259,0.7633670072789197,0.7472465279726294,0.7301139593643088,0.7121790011646111,0.6936409225273548,0.674684973641517,0.6554799274944971,0.6361766496588984,0.6169075502222963,0.5977867515386995,0.5789108035758693,0.5603597898884367,0.5421986865831653,0.5244788598342103,0.507239611389818,0.49050970395158106,0.47433735928627546,0.4589585636336667,0.4443739762818569,0.43052777013111543,0.41736904487870774,0.404851307069639,0.39285408552917467,0.3812239114260066,0.3699602690460913,0.35906275178251035,0.3485286519182258,0.3383533678899243,0.32853076157038713,0.3190534691968296,0.3099131699319379,0.3011008161672114,0.29260682963079193,0.2844212671980769,0.27653396006474495,0.268934629658497,0.26161298336320177,0.2545587928212428,0.24776195728044556,0.24121255416760687,0.23490087880531035,0.2288174749468932,0.22295315758427203,0.21729902928700198,0.21184649115612383,0.20658724932239997,0.20151331778305692,0.19661701825376288,0.19189097760966764,0.18732812340108104,0.18292167785294092,0.17866515069143366,0.17455233108531865,0.17057727894108732,0.1667343157503929,0.163018015153411,0.1594231933521093,0.15594489948276816,0.1525784060357853,0.14931919939318739,0.14616297053944255,0.1431056059887354,0.14014317896133424,0.1372719408334072,0.1344883128771438,0.13178887830243524,0.12917037460645214,0.12662968623350046,0.12416383754455623,0.12176998609315007,0.11944541620241764,0.11718753283650737,0.114993855758426,0.11286201396537993,0.11078974039228105,0.10877486687341884,0.10681531935221213,0.10490911332882474,0.10305434953532168,0.10124920982834287,0.09949195328922009,0.09778091252182078,0.09611449013863398,0.09449115542582966,0.09290944117849517,0.09136794069742367,0.0898653049392606,0.08840023981213116,0.08697150360924745,0.08557790457323476,0.08421829858442736,0.08289158696653645,0.08159671440351607,0.08033266696175707,0.07909847021195907,0.07789318744545368,0.07671591797990059,0.07556579554961308,0.07444198677600636,0.07334368971391461,0.07227013246969867,0.07122057188739264,0.07019429229922865,0.06919060433714659,0.06820884380208049,0.06724837058792851,0.06630856765738793,0.0653888400668859,0.06448861403805636,0.06360733607334268,0.06274447211339258,0.06189950673413149,0.06107194238142176,0.06026129864139332,0.059467111544603164,0.05868893290231619,0.05792632967323189,0.057178883359160215,0.056446189428150814,0.05572785676370529,0.05502350713877469,0.05433277471327786,0.053655305554010345,0.0529907571758065,0.05233879810292169,0.05169910744963782,0.051071374519165304,0.05045529841992613,0.04985058769841178,0.04925695998779277,0.04867414167153263,0.04810186756129949,0.0475398805884713,0.04698793150862473,0.046445778618373616,0.04591318748398513,0.04538993068123484,0.04487578754595364,0.04437054393480657,0.043873991995807715,0.04338592994813748,0.042906161870834666,0.042434497499970525,0.04197075203390133,0.041514745946264434,0.04106630480635272,0.04062525910654501,0.04019144409648783,0.039764699623712235,0.0393448699804288,0.03893180375621307,0.038525353696331616,0.03812537656547198,0.03773173301662646,0.03734428746493173,0.036962907966238065,0.03658746610021155,0.03621783685778026,0.03585389853274442,0.03549553261736386,0.03514262370177614,0.03479505937707344,0.03445273014189153,0.0341155293123714,0.03378335293534282,0.03345609970461701,0.03313367088024963,0.032815970210659094,0.032502903857485096,0.03219438032308285,0.03189031038053621,0.03159060700610593,0.031295185314006976,0.03100396249342515,0.03071685774769297,0.03043379223552622,0.030154689014259398,0.029879472984991183,0.029608070839570854,0.029340411009354528,0.029076423615669474,0.028816040421909044,0.02855919478721359,0.02830582162166601,0.02805585734294984,0.027809239834418572,0.02756590840451413,0.02732580374749878,0.027088867905441967,0.02685504423141994,0.026624277353887497,0.026396513142169547,0.0261716986730455,0.025949782198377676,0.025730713113750286,0.025514441928081867,0.02530092023418047,0.02509010068019974,0.024881936941975553,0.02467638369620452,0.024473396594437397,0.02427293223786229,0.02407494815284208,0.023879402767191398,0.023686255387159193,0.0234954661750967,0.02330699612778859,0.023120807055418777,0.022936861561158834,0.022755123021351027,0.022575555566268796,0.02239812406143527,0.022222794089483053,0.02204953193253181,0.021878304555075022,0.021709079587352586,0.02154182530919607,0.021376510634333136,0.02121310509513011,0.021051578827766874,0.020891902557824266,0.020734047586273206,0.02057798577585177,0.020423689537820786,0.020271131819079538,0.020120286089638676,0.019971126330433204,0.01982362702146643,0.019677763130277245,0.019533510100714406,0.019390843842016406,0.019249740718181866,0.01911017753762282,0.01897213154309542,0.018835580401892576,0.01870050219629932,0.018566875414296642,0.018434678940508972,0.018303892047387107,0.01817449438662192,0.018046465980776284,0.01791978721513645,0.017794438829770724,0.017670401911791058,0.017547657887813747,0.017426188516607877,0.017305975881933198,0.017187002385556874,0.0170692507404455,0.016952703964127628,0.016837345372222715,0.016723158572128145,0.016610127456865104,0.016498236199075027,0.016387469245163187,0.016277811309587303,0.016169247369282456,0.0160617626582244,0.015955342662123093,0.015849973113244202,0.015745639985356785,0.01564232948879876,0.015540028065663623,0.015438722385099654,0.01533839933872141,0.015239046036128936,0.015140649800534221,0.015043198164487247,0.014946678865704987,0.014851079842996027,0.014756389232279954,0.014662595362700205,0.014569686752824126,0.014477652106932592,0.014386480311393716,0.01429616043111963,0.014206681706103414,0.014118033548035997,0.014030205536997145,0.013943187418223256,0.013856969098946759,0.013771540645306116,0.013686892279326096,0.013603014375962631,0.01351989746021577,0.013437532204305115,0.013355909424907608,0.013275020080456714,0.013194855268499072,0.013115406223110448,0.013036664312367063,0.012958621035871925,0.8015536629779262,0.8004020649560617,0.7969696090332136,0.7913221924267905,0.7835660248437303,0.7738425518554257,0.7623219978771983,0.7491960658923794,0.734670349441967,0.718956967767703,0.7022678428365939,0.6848089175595918,0.6667754881689564,0.6483487071827636,0.6296932178739264,0.610955812008903,0.5922649601798888,0.5737310451875095,0.5554471285956663,0.5374900932081601,0.5199220246167863,0.5027917188920081,0.48613622778543236,0.4699823754082173,0.4544034247939138,0.4396200885765091,0.42560287178554623,0.4122977336384693,0.3996554191673892,0.3876309523847911,0.3761702456308295,0.3650943501234403,0.35435922410237886,0.34396573631887933,0.33391242700321305,0.3241959050467192,0.31481119825750675,0.3057520596900689,0.29701123351048303,0.28858068407454135,0.2804517919275842,0.2726155203400309,0.2650625558105505,0.25778342573351,0.25076859616377917,0.24400855233569912,0.2374938643194678,0.23121523993411044,0.2251635667873386,0.21932994508338471,0.2137057126297734,0.20828246328549838,0.20305205992403155,0.1980066428352355,0.19313863435804962,0.1884407404210186,0.1839059495665332,0.1795275299477001,0.17529902471117828,0.17121424611407862,0.16726726866746394,0.16345242155076492,0.15976428050065797,0.15619765934314056,0.15274760130762954,0.1494093702371479,0.14617844178703995,0.1430504946868541,0.1400214021249541,0.13708722330267034,0.13424419519410621,0.13148872453914295,0.12881738008948354,0.1262268851217267,0.12371411022640169,0.121276066377666,0.11890989828527489,0.11661287802749562,0.11438239896164042,0.11221596990713063,0.11011120959476145,0.10806584137467001,0.10607768817502362,0.10414466770269738,0.10226478787696891,0.10043614248709576,0.09865690706442475,0.09692533495990592,0.09523975361778425,0.09359856103651813,0.09200022240814877,0.09044326692752543,0.08892628476318776,0.0874479241818552,0.08600688881885313,0.08460193508708118,0.08323186971747533,0.08189554742412851,0.08059186868769744,0.07931977765086605,0.07807826012003168,0.07686634166764295,0.07568308582984468,0.07452759239446405,0.07339899577451085,0.07229646346269375,0.07121919456264862,0.07016641839284372,0.06913739315926687,0.06813140469331844,0.0671477652514233,0.06618581237311673,0.06524490779454419,0.06432443641441975,0.06342380530974431,0.06254244279864447,0.06167979754788462,0.06083533772273786,0.060008550176987877,0.05919893968102859,0.058406028186063705,0.0576293541225689,0.05686847173125197,0.056122950424872795,0.05539237417931737,0.054676340952491256,0.05397446212959471,0.053286361993468756,0.05261167721876195,0.05195005638870991,0.05130115953343656,0.050664657688689975,0.050040232474017995,0.049427575689427114,0.04882638892963466,0.04823638321503439,0.04765727863860109,0.04708880402794327,0.04653069662178667,0.04598270176020659,0.045444572587936355,0.044916069770163054,0.04439696122019995,0.04388702183849085,0.04338603326242026,0.042893783626412996,0.04241006733187212,0.04193468482648388,0.04146744239247177,0.04100815194338644,0.04055663082905483,0.040112701648302114,0.03967619206912122,0.039246934655941035,0.038824766703682324,0.03840953007830729,0.038001071063561626,0.0375992402136578,0.037203892211626045,0.03681488573309168,0.03643208331524997,0.036055351230799546,0.03568455936664321,0.03531958110713747,0.034960293221704554,0.03460657575662097,0.03425831193081285,0.0339153880354767,0.033577693337385514,0.03324511998571326,0.032917562922238644,0.03259491979479214,0.03227709087380312,0.03196397897183633,0.03165548936598639,0.031351529723017656,0.031052010027140628,0.030756842510322784,0.030465941585021892,0.03017922377926226,0.029896607673949655,0.029618013842341282,0.029343364791590713,0.02907258490627626,0.028805600393850446,0.028542339231926703,0.028282731117336368,0.028026707416888032,0.027774201119768086,0.027525146791510934,0.02727948052949309,0.027037139919884032,0.02679806399600321,0.02656219319803425,0.026329469334035994,0.02609983554221676,0.025873236254414705,0.025649617160744487,0.025428925175370768,0.02521110840335834,0.024996116108572688,0.02478389868258439,0.024574407614544783,0.024367595461997755,0.024163415822597543,0.02396182330669239,0.02376277351075516,0.02356622299162245,0.023372129241517558,0.02318045066383223,0.022991146549633672,0.02280417705488202,0.022619503178326148,0.02243708674005808,0.02225689036070491,0.022078877441230545,0.021903012143336044,0.021729259370430742,0.02155758474915904,0.0213879546114629,0.021220335977165074,0.021054696537048945,0.020891004636428522,0.020729229259184776,0.020569340012256368,0.020411307110571444,0.020255101362400205,0.02010069415512335,0.019948057441396272,0.019797163725699684,0.01964798605126255,0.01950049798734893,0.019354673616890833,0.01921048752446382,0.019067914784589614,0.01892693095035661,0.018787512042351014,0.018649634537882674,0.018513275360504542,0.018378411869811165,0.018245021851509256,0.01811308350775388,0.01798257544773715,0.017853476678528633,0.01772576659615465,0.01759942497691154,0.01747443196890489,0.017350768083810676,0.01722841418884574,0.017107351498949087,0.016987561569162146,0.016869026287204145,0.01675172786623833,0.016635648837818703,0.016520772045018745,0.016407080635731413,0.016294558056138105,0.016183188044340623,0.016072954624153528,0.015963842099047974,0.01585583504624801,0.01574891831097145,0.015643077000812307,0.015538296480262094,0.01543456236536196,0.015331860518488102,0.015230177043261696,0.015129498279581982,0.015029810798780314,0.014931101398887519,0.014833357100017005,0.01473656513985699,0.01464071296926904,0.014545788247991477,0.014451778840444485,0.01435867281163159,0.014266458423139686,0.014175124129230724,0.014084658573024595,0.013995050582771581,0.01390628916820827,0.013818363517000009,0.013731262991263475,0.013644977124169184,0.013559495616621004,0.013474808334012272,0.013390905303053032,0.013307776708671101,0.013225412890981586,0.01314380434232435,0.013062941704368912,0.012982815765281179,0.012903417456955625,0.01282473785230741,0.012746768162624066,0.012669499734976825,0.012592924049685946,0.012517032717844013,0.012441817478891769,0.012367270198246783,0.7748375916087769,0.7737088869006077,0.7703449713777388,0.7648113152982786,0.7572133912130177,0.7476915662416805,0.7364146141745224,0.7235723935056823,0.7093682543851112,0.6940116899343243,0.6777116516944535,0.6606708262253825,0.6430810409942236,0.6251198497292784,0.6069482516028962,0.5887094300797561,0.5705283560563665,0.5525120825618205,0.5347505594657205,0.517317810586313,0.5002733370173591,0.4836636351142902,0.4675237422791409,0.45187874643087983,0.43683913772441996,0.4225887927641566,0.40907865699482815,0.3962564168465741,0.38407439877693933,0.3724890772902357,0.3614606433267279,0.3508920801539989,0.34064293881844293,0.3307112380904964,0.3210968759024678,0.3117977678382659,0.3028101908652571,0.2941290857644448,0.285748321129686,0.27766092212678656,0.2698592673259285,0.2623352569040726,0.2550804553979728,0.2480862120075321,0.24134376123026882,0.2348443063679114,0.22857908820145087,0.2225394408899866,0.21671683691810048,0.21110292270130968,0.20568954626000532,0.20046877819197273,0.1954329270109371,0.19057454977369376,0.18588645878960883,0.1813617250938028,0.1769936792657196,0.17277591008886936,0.1687022614725707,0.16476682799145778,0.16096394934311767,0.15728820397574242,0.15373440209675032,0.15029757823814408,0.1469729835240847,0.1437560777610462,0.14064252144878522,0.13762816779227277,0.1347090547791108,0.13188139737396223,0.12914157987035316,0.12648614843133846,0.12391180384250301,0.12141539449457175,0.1189939096076447,0.11664447270447624,0.11436433533701953,0.11215087106717819,0.11000156970059935,0.10791403177036729,0.10588596326601865,0.10391517060205005,0.10199955581940481,0.10013711201256023,0.09832591897452148,0.09656413905171249,0.09485001320046844,0.09318185723696322,0.09155805827223648,0.08997707132416392,0.08843741609835953,0.08693767393008296,0.08547648487959737,0.0840525449734977,0.08266460358487655,0.08131146094543051,0.07999196578290362,0.07870501307746391,0.07744954193101224,0.07622453354357293,0.07502900929123946,0.073862028900432,0.07272268871339137,0.0716101200402141,0.07052348759284321,0.06946198799673946,0.06842484837614948,0.06741132500911455,0.0664207020485241,0.06545229030579466,0.06450542609384584,0.06357947012628352,0.06267380646985367,0.061787841547347955,0.060921003188379085,0.060072739725494186,0.05924251913328516,0.058429828208279834,0.0576341717874711,0.05685507200354094,0.05609206757485706,0.05534471312848112,0.05461257855449264,0.05389524839005417,0.05319232123167659,0.052503409174302226,0.05182813727582783,0.05116614304580082,0.050517075957093045,0.04988059697938095,0.0492563781333908,0.0486441020648562,0.04804346163723211,0.04745415954224413,0.04687590792741566,0.04630842803972387,0.04575144988464117,0.0452047118997968,0.0446679606425677,0.04414095049094349,0.043623443357014104,0.04311520841251278,0.04261602182582865,0.04212566650995653,0.04164393188088546,0.04117061362591963,0.04070551348150113,0.04024843902007903,0.039799203445619505,0.039357625397360436,0.03892352876144683,0.038496742490071165,0.03807710042780936,0.037664441144811295,0.0372586077765477,0.0368594478698305,0.03646681323481239,0.03608055980272701,0.03570054748910287,0.03532664006221939,0.03495870501657901,0.03459661345118201,0.034240239952388285,0.03388946248118659,0.033544162264672994,0.03320422369156393,0.03286953421158016,0.032539984238525214,0.03221546705692535,0.031895878732066354,0.031581118023295586,0.03127108630045693,0.03096568746331987,0.03066482786389667,0.030368416231519292,0.030076363600569724,0.029788583240755253,0.029504990589833382,0.029225503188675298,0.028950040618593305,0.028678524440830435,0.028410878138131087,0.028147027058316475,0.027886898359775206,0.02763042095880985,0.02737752547875742,0.02712814420081967,0.026882211016540883,0.02663966138186102,0.02640043227269809,0.026164462141992174,0.02593169087816076,0.025702059764910492,0.025475511442360165,0.025251989869416416,0.025031440287368253,0.02481380918464744,0.0245990442627141,0.024387094403031242,0.024177909635078234,0.023971441105378983,0.023767641047499382,0.02356646275298236,0.02336786054318693,0.02317178974200198,0.02297820664939601,0.022787068515784735,0.022598333517179083,0.022411960731090103,0.022227910113166313,0.022046142474531284,0.021866619459807037,0.021689303525792385,0.021514157920776964,0.02134114666447058,0.02117023452852168,0.021001387017612668,0.02083457035110754,0.02066975144523462,0.020506897895787118,0.020345977961325805,0.020186960546861695,0.020029815188011016,0.019874512035600884,0.019721021840713126,0.01956931594015383,0.019419366242329483,0.019271145213523414,0.019124625864555368,0.018979781737813034,0.01883658689464324,0.018695015903094584,0.01855504382599308,0.018416646209349755,0.018279799071082577,0.018144478890046167,0.018010662595360202,0.017878327556023036,0.017747451570808235,0.017618012858430267,0.017489990047972727,0.01736336216957299,0.01723810864535031,0.017114209280576817,0.0169916442550789,0.01687039411486423,0.016750439763967156,0.01663176245650763,0.01651434378895243,0.016398165692579493,0.016283210426134585,0.01616946056867543,0.016056899012600767,0.01594550895685296,0.01583527390029623,0.015726177635260265,0.015618204241246453,0.015511338078791688,0.015405563783486838,0.015300866260140664,0.015197230677091798,0.0150946424606594,0.014993087289730336,0.014892551090480733,0.01479302003122342,0.014694480517383656,0.014596919186595416,0.014500322903916028,0.014404678757157584,0.014309974052327647,0.014216196309181722,0.014123333256880173,0.014031372829748907,0.013940303163139824,0.013850112589390402,0.013760789633875503,0.013672323011154433,0.01358470162120639,0.013497914545753832,0.013411951044672039,0.013326800552479317,0.013242452674910449,0.01315889718556761,0.013076124022647741,0.012994123285746017,0.012912885232729154,0.012832400276682431,0.012752658982923772,0.012673652066085917,0.012595370387263325,0.012517804951224067,0.012440946903681768,0.012364787528630154,0.01228931824573538,0.012214530607786395,0.01214041629820173,0.012066967128589295,0.011994175036361503,0.011922032082401217,0.01185053044877849,0.7513959137131119,0.7502870025681438,0.7469823643162002,0.7415471496437058,0.7340862697014346,0.7247392526215516,0.7136737185326656,0.7010780284245044,0.6871536776224376,0.6721079541981151,0.6561472834522185,0.6394715535192215,0.6222695857140791,0.6047157938257509,0.5869679804100214,0.5691661501755042,0.5514321805146749,0.5338701733203883,0.5165673148492064,0.499595085604408,0.48301068461769897,0.4668585578019992,0.45117194513123576,0.43597438429916663,0.42142822429947024,0.40765395057203113,0.3945959328397187,0.3822035377937284,0.37043062066631127,0.3592350499324983,0.34857829021649167,0.3384222938755609,0.32862362009609153,0.3191181535694384,0.30990726748412484,0.3009902902608958,0.29236484265558593,0.2840271364882953,0.275972237200404,0.26819429287719443,0.2606867325999656,0.2534424370633429,0.2464538843527553,0.23971327365894185,0.2332126295387607,0.22694388913387264,0.22089897454742358,0.21506985236479484,0.20944858209458134,0.2040273551069588,0.1987985254599693,0.19375463383323174,0.18888842563291186,0.1841928641919595,0.17966113986449295,0.17528667570309395,0.1710631303098742,0.16698439836708423,0.16304460927855918,0.1592381242883865,0.15555953238747464,0.15200364527001844,0.14856549156037238,0.1452403104951532,0.14202354521456786,0.13891083579117805,0.13589801210167488,0.13298108662855024,0.13015624726237224,0.12741985016186247,0.12476841271735552,0.12219860665382327,0.11970725130129162,0.11729130705385023,0.1149478690328105,0.1126741609647518,0.11046752928155733,0.10832543744612708,0.10624546050501231,0.10422527986704332,0.10226267830541307,0.10035553517919443,0.09850182186944582,0.09669959742405108,0.09494700440497646,0.0932422649311711,0.09158367690998533,0.08996961044996404,0.08839850444763336,0.08686886334099371,0.08537925402249755,0.08392830290431305,0.08251469312897289,0.08113716191853743,0.07979449805570309,0.07848553949044935,0.07720917106610364,0.07596432235883964,0.07474996562500785,0.07356511385079705,0.07240881889905292,0.07128016974829635,0.07017829081916241,0.06910234038381968,0.06805150905402454,0.06702501834376018,0.06602211930257587,0.06504209121597082,0.06408424036929025,0.06314789887188395,0.06223242353835144,0.06133719482391526,0.06046161581112714,0.05960511124519999,0.05876712661549923,0.057947127280765745,0.05714459763582762,0.056359040317672124,0.055589975448822604,0.05483693991615299,0.05409948668329422,0.05337718413493558,0.05266961545139274,0.05197637801192788,0.05129708282533262,0.05063135398645043,0.04997882815730134,0.049339154071597224,0.04871199206148659,0.04809701360540527,0.047493900896023886,0.04690234642727866,0.04632205259956131,0.04575273134217925,0.0451941037522567,0.04464589974925792,0.04410785774441286,0.04357972432430584,0.04306125394795938,0.042552208656779604,0.042052357796733206,0.041561477752207476,0.04107935169098386,0.040605769319816264,0.04014052665012398,0.0396834257733142,0.039234274645316085,0.03879288687988453,0.038359081550281615,0.03793268299895245,0.037513520654840975,0.03710142885798536,0.03669624669108931,0.036297817817740184,0.035905990326988,0.03552061658400542,0.03514155308654909,0.03476866032698701,0.03440180265963579,0.03404084817318316,0.03368566856797336,0.03333613903795377,0.03299213815706934,0.03265354776993266,0.03232025288657705,0.03199214158112333,0.031669104894201716,0.03135103673895783,0.03103783381051258,0.030729395498718816,0.030425623804084246,0.030126423256734328,0.0298317008382794,0.029541365906483614,0.029255330122611285,0.028973507381347435,0.028695813743186433,0.028422167369197976,0.028152488458061373,0.027886699185295953,0.027624723644589094,0.027366487791143146,0.027111919386967075,0.026860947948026043,0.026613504693191393,0.026369522494911497,0.026128935831541238,0.02589168074126919,0.0256576947775742,0.025426916966163848,0.02519928776333198,0.024974749015684177,0.024753243921180126,0.024534716991447023,0.024319114015308216,0.02410638202349427,0.02389646925448483,0.023689325121441954,0.023484900180199213,0.02328314609825907,0.023084015624774135,0.022887462561468293,0.022693441734467676,0.022501908967007808,0.02231282105298972,0.02212613573134648,0.02194181166120259,0.021759808397790882,0.02158008636910281,0.021402606853249684,0.021227331956502036,0.021054224591995102,0.020883248459068707,0.020714368023223545,0.02054754849667477,0.020382755819475924,0.020219956641202966,0.020059118303173373,0.019900208821184463,0.019743196868753133,0.0195880517608434,0.019434743438058375,0.019283242451290646,0.019133519946809594,0.018985547651773342,0.01883929786015366,0.018694743419054503,0.018551857715419385,0.018410614663109597,0.01827098869034304,0.018132954727482224,0.017996488195161923,0.017861564992740865,0.017728161487074044,0.017596254501590646,0.017465821305669565,0.017336839604304884,0.01720928752804763,0.017083143623221712,0.01695838684240085,0.016834996535139715,0.016712952438953776,0.016592234670535142,0.01647282371720343,0.016354700428580296,0.016237846008482514,0.01612224200702656,0.016007870312940067,0.01589471314606961,0.015782753050084992,0.0156719728853699,0.015562355822094679,0.015453885333467435,0.01534654518915411,0.015240319448868205,0.015135192456120845,0.015031148832128836,0.014928173469874472,0.014826251528315992,0.01472536842673869,0.014625509839249259,0.014526661689404764,0.014428810144973733,0.014331941612827366,0.014236042733952738,0.014141100378590466,0.014047101641488683,0.013954033837272123,0.013861884495924124,0.01377064135837434,0.013680292372194938,0.013590825687397959,0.013502229652332836,0.01341449280968112,0.013327603892546521,0.013241551820634929,0.013156325696526083,0.013071914802031449,0.012988308594636577,0.012905496704027467,0.012823468928694792,0.012742215232618714,0.012661725742028805,0.012581990742237892,0.012503000674549665,0.012424746133233985,0.012347217862573206,0.012270406753974004,0.01219430384314457,0.012118900307334833,0.012044187462639414,0.011970156761358836,0.011896799789421257,0.01182410826386028,0.011752074030348607,0.011680689060786838,0.011609945450943106,0.011539835418146537,0.011470351299029763,0.011401485547320806,0.7309518826348819,0.7298599170020802,0.7266060442481583,0.7212551918498433,0.7139118675963435,0.7047149765790651,0.6938312540109063,0.6814478786274322,0.6677648454038093,0.6529876230369989,0.6373205189744431,0.6209610453720328,0.6040954453994429,0.5868954184297875,0.5695159861246638,0.5520943739823589,0.5347497439758598,0.5175835993654003,0.500680686767715,0.4841102369770116,0.46792740937340555,0.4521748306872345,0.43688414433957184,0.42208472624514426,0.4079859192272357,0.3946350733905584,0.3819783420400271,0.3699667311022324,0.3585555776329911,0.34770409302929867,0.3373749618877384,0.3275339888578425,0.31813142037294084,0.3090231759696231,0.30018651716978273,0.2916222988549839,0.2833295899244981,0.2753059678859542,0.26754777986760037,0.2600503720589302,0.25280828992699034,0.2458154517273628,0.23906529787354142,0.2325509186821551,0.22626516290363347,0.22020072929846585,0.21435024334733319,0.20870632100021624,0.2032616211844131,0.19800888861152688,0.1929409882513502,0.18805093268073864,0.18333190336803604,0.17877726681981312,0.17438058639565415,0.17013563048961008,0.16603637768068497,0.16207701937079294,0.1582519603545478,0.15455581770033597,0.15098341826622907,0.14752979512502906,0.14419018313075155,0.1409600138223596,0.13783490982909602,0.13481067891513507,0.13188330777799995,0.1290489556956863,0.12630394810063694,0.12364477014454787,0.12106806030572859,0.11857060408082411,0.11614932779381419,0.11380129254810076,0.11152368834143056,0.10931382835816758,0.10716914344945049,0.1050871768080147,0.10306557884172682,0.10110210224745186,0.09919459728497339,0.09734100724905892,0.09553936413666513,0.09378778450515726,0.09208446551672807,0.0904276811636728,0.08881577866862524,0.08724717505377448,0.0857203538727096,0.08423386209855402,0.08278630716201921,0.08137635413296453,0.08000272303925857,0.07866418631673347,0.07735956638423024,0.07608773333788493,0.07484760275900736,0.07363813363002503,0.07245832635329241,0.07130722086764527,0.07018389485785466,0.06908746205235568,0.06801707060474044,0.06697190155484843,0.06595116736535214,0.06495411052999923,0.06398000224984764,0.06302814117401008,0.062097852201561186,0.061188485341511556,0.06029941462781925,0.05943003708662516,0.05857977175302956,0.05774805873483293,0.05693435832087297,0.056138150131634104,0.05535893230997876,0.05459622074995689,0.053849548361720144,0.05311846437074394,0.05240253364958415,0.05170133608053434,0.051014465947614517,0.050341531356429985,0.04968215368047077,0.04903596703256495,0.048402617760205054,0.047781763963569056,0.047173075035120283,0.046576231219695716,0.045990923194110724,0.04541685166529617,0.0448537269860752,0.04430126878772112,0.043759205628488944,0.043227274657331595,0.042705221292100685,0.04219279891151636,0.04168976856025875,0.041195898666566345,0.04071096477172913,0.04023474927094617,0.039767041164994764,0.03930763582221482,0.038856334750335765,0.03841294537767286,0.03797728084328837,0.037549159795686946,0.03712840619966494,0.03671484915094255,0.03630832269823133,0.03590866567238987,0.035515721522369995,0.03512933815763634,0.03474936779677645,0.03437566682203566,0.034008095639498775,0.03364651854469349,0.03329080359336506,0.03294082247720124,0.03259645040430152,0.03225756598417062,0.03192405111706329,0.031595790887480865,0.031272673461649525,0.030954589988810958,0.030641434506169924,0.030333103847335688,0.03002949755412501,0.029730517791580285,0.02943606926606953,0.029146059146350312,0.028860396987461703,0.02857899465734707,0.02830176626608454,0.028028628097626157,0.027759498543941996,0.027494298041479636,0.02723294900983498,0.026975375792561707,0.02672150460002546,0.026471263454224493,0.02622458213550578,0.025981392131090797,0.02574162658535621,0.02550522025179077,0.025272109446569165,0.025042232003679107,0.02481552723154748,0.02459193587109843,0.024371400055202733,0.02415386326945743,0.023939270314247824,0.02372756726804916,0.023518701451911383,0.023312621395096673,0.02310927680181828,0.02290861851904278,0.022710598505321537,0.02251516980060365,0.022322286497008296,0.02213190371051216,0.02194397755352355,0.021758465108310338,0.021575324401254446,0.021394514377896207,0.021215994878751386,0.021039726615865614,0.02086567115008365,0.02069379086901089,0.020524048965636314,0.020356409417602948,0.020190836967097645,0.020027297101340626,0.019865756033656742,0.01970618068510287,0.01954853866664036,0.019392798261828898,0.019238928410025925,0.019086898690074905,0.018936679304468098,0.018788241063961993,0.018641555372639357,0.01849659421339663,0.018353330133844683,0.01821173623261235,0.018071786146032727,0.01793345403520848,0.01779671457343825,0.017661542933994048,0.017527914778238847,0.017395806244075183,0.017265193934708576,0.017136054907723988,0.017008366664459346,0.01688210713966873,0.016757254691468677,0.016633788091552523,0.016511686515672308,0.016390929534374547,0.0162714971039837,0.016153369557827656,0.01603652759769291,0.015920952285508695,0.01580662503524886,0.015693527605046304,0.015581642089513724,0.01547095091226514,0.015361436818629177,0.015253082868553248,0.015145872429689275,0.015039789170656508,0.014934817054478298,0.014830940332182936,0.014728143536569987,0.014626411476132356,0.014525729229132183,0.014426082137824965,0.014327455802829302,0.014229836077634435,0.01413320906324676,0.014037561102967427,0.013942878777298504,0.013849148898975932,0.013756358508120823,0.013664494867512311,0.013573545457973233,0.013483497973868197,0.013394340318710923,0.013306060600875221,0.013218647129410796,0.01313208840995802,0.01304637314075991,0.012961490208768616,0.012877428685844858,0.012794177825044706,0.012711727056995773,0.012630065986356891,0.012549184388360413,0.012469072205435926,0.012389719543909793,0.01231111667078322,0.012233254010583014,0.012156122142285142,0.012079711796307967,0.012004013851575053,0.011929019332642659,0.011854719406894195,0.011781105381796693,0.011708168702219138,0.011635900947811799,0.011564293830441956,0.011493339191688589,0.011423029000391853,0.011353355350256517,0.011284310457509154,0.011215886658604993,0.011148076407986712,0.011080872275891192,0.011014266946204243,0.713270557661871,0.7121929011894692,0.7089819140657179,0.7037023875290522,0.696458568984974,0.6873889365063948,0.6766595853220189,0.6644568004956347,0.650979402604819,0.6364313971605666,0.6210153524277044,0.6049267976590293,0.5883497972820048,0.5714537342390127,0.5543912387498386,0.5372971317827463,0.5202882146064196,0.5034637225412778,0.48690626632650247,0.470683102067172,0.45484759495063354,0.4394407684605331,0.4244928566209633,0.4100586504766807,0.3963592728306853,0.38338531604626,0.3710847559358929,0.3594102297752246,0.3483185391723999,0.3377702140333897,0.3277291291682679,0.31816216637765543,0.30903891593770966,0.30029613183521836,0.29181008678903175,0.28357457377497713,0.2755902247438917,0.2678560899413258,0.26036989666909854,0.25312827880411465,0.24612697882573487,0.23936102438551468,0.23282488159398756,0.22651258723456066,0.2204178620755791,0.21453420735853446,0.2088549864147351,0.2033734932165461,0.19808300951333557,0.19297685204551762,0.18804841117559065,0.18329118212877205,0.1786987898983726,0.1742650087446013,0.1699837770998372,0.16584920858969404,0.16185559978552913,0.1579974352212606,0.15426939013408358,0.15066633132383184,0.14718331646955443,0.1438155921921468,0.14055859110913374,0.13740792809047966,0.1343593958918625,0.13140896031448707,0.12855275501621644,0.12578707607854328,0.12310837641627556,0.12051326010186808,0.11799847666337628,0.1155609154044069,0.11319759978494172,0.11090568189423113,0.10868243704037898,0.10652525847551815,0.10443165227110748,0.10239923235368237,0.10042571570835451,0.09850891775457143,0.09664674789650958,0.09483720524851652,0.09307837453477347,0.09136842216093492,0.08970559245469312,0.08808820407147473,0.08651464656078849,0.08498337708852466,0.08349291730999606,0.08204185038843732,0.08062881815352284,0.0792525183943449,0.07791170228143092,0.07660517191227402,0.07533177797502615,0.07409041752506941,0.07288003186934257,0.0716996045533779,0.07054815944627124,0.06942475891886367,0.06832850211065503,0.06725852328113473,0.06621399024133562,0.06519410286170639,0.0641980916524496,0.0632252164127222,0.06227476494523443,0.06134605183295887,0.060438417274778,0.05955122597713531,0.058683866098808365,0.05783574824612168,0.05700630451604914,0.05619498758473758,0.055401269839190505,0.05462464254988983,0.05386461508228746,0.053120714145213424,0.05239248307429996,0.05167948114869624,0.05098128293936694,0.05029747768740085,0.049627668710816336,0.04897147283845665,0.04832851986959143,0.04769845205798463,0.047080923619188544,0.04647560025992651,0.04588215872848243,0.045300286385042535,0.04472968079104629,0.04417004931659583,0.04362110876505349,0.04308258501399919,0.04255421267176045,0.042035734748752114,0.041526902342941964,0.041027474338750425,0.040537217118752966,0.040055904287589456,0.03958331640748184,0.039119240744847135,0.038663471027467124,0.038215807211729125,0.037776055259481446,0.03734402692403974,0.03691953954494997,0.03650241585109183,0.036092483771746835,0.035689576255273345,0.03529353109504832,0.03490419076233632,0.03452140224579701,0.03414501689732008,0.033774890283913846,0.033410882045384664,0.03305285575753944,0.0327006788006898,0.03235422223321246,0.03201336066995334,0.0316779721652648,0.03134793810048368,0.031023143075645576,0.03070347480527571,0.030388824018068625,0.030079084360298526,0.029774152302808204,0.02947392705141476,0.029178310460606795,0.028887206950384593,0.028600523426118876,0.028318169201307294,0.028040055923099938,0.027766097500496974,0.02749621003509739,0.02723031175430383,0.026968322946880372,0.02671016590077682,0.026455764843116337,0.026205045882277813,0.025957936951977418,0.025714367757276466,0.025474269722443724,0.0252375759405891,0.025004221125014794,0.024774141562207808,0.024547275066413098,0.024323560935732656,0.02410293990968069,0.02388535412815391,0.023670747091754447,0.023459063623417566,0.023250249831295,0.023044253072850844,0.022841021920116358,0.0226405061260723,0.022442656592109554,0.022247425336531037,0.02205476546405988,0.021864631136309702,0.02167697754319294,0.021491760875225134,0.021308938296697142,0.02112846791968292,0.02095030877885659,0.020774420807082222,0.020600764811760118,0.02042930245189466,0.02025999621586202,0.02009280939985519,0.0199277060869761,0.019764651126962376,0.019603610116519038,0.019444549380237965,0.019287435952086613,0.019132237557440392,0.01897892259564937,0.018827460123114214,0.018677819836857977,0.01852997205857518,0.01838388771914607,0.01823953834359346,0.018096896036476594,0.01795593346770123,0.017816623858734556,0.017678940969213536,0.01754285908392846,0.017408353000177033,0.01727539801547163,0.01714396991559032,0.017014044962960658,0.01688559988536688,0.016758611864965998,0.01663305852760915,0.016508917932454327,0.0163861685618624,0.01626478931156951,0.016144759481122477,0.01602605876457552,0.015908667241435314,0.015792565367848576,0.015677733968026263,0.015564154225892237,0.015451807676956314,0.015340676200400038,0.015230742011370528,0.015121987653475673,0.015014395991476474,0.014907950204166166,0.014802633777436652,0.014698430497522041,0.01459532444441566,0.01449329998545715,0.014392341769080018,0.014292434718720734,0.014193564026880757,0.014095715149338335,0.013998873799505662,0.013903025942928313,0.013808157791919464,0.013714255800329795,0.01362130665844597,0.013529297288014412,0.013438214837389257,0.01334804667679626,0.013258780393714779,0.013170403788371116,0.013082904869340741,0.012996271849258185,0.01291049314062756,0.012825557351736147,0.01274145328266421,0.012658169921390279,0.012575696439988515,0.012494022190917104,0.012413136703392034,0.012333029679848057,0.012253690992481598,0.012175110679874139,0.012097278943695233,0.012020186145479863,0.011943822803482123,0.011868179589600543,0.011793247326373595,0.01171901698404518,0.01164547967769488,0.011572626664435252,0.01150044934067169,0.011428939239424231,0.011358088027709488,0.011287887503981997,0.011218329595631057,0.011149406356534965,0.01108110996466868,0.011013432719764559,0.010946367041025282,0.010879905464885382,0.010814040642823647,0.010748765339222319,0.010684072429273083,0.6981539018287685,0.6970880939398569,0.6939126372303727,0.6886922658173047,0.6815310971355095,0.6725673616935817,0.6619667399468455,0.6499148898869083,0.6366097602432718,0.6222542254348687,0.6070494690153344,0.5911894065427714,0.574856299879523,0.5582175911422691,0.5414238871614273,0.5246079587242282,0.507884581909795,0.49135103677109104,0.4750880851317995,0.4591612678805992,0.44362238720010605,0.4285110662812855,0.41385630521233296,0.399765822781757,0.38642472677426554,0.3737874253568009,0.3618037680025226,0.3504280572565785,0.3396185793693425,0.32933719178353266,0.31954895974235564,0.3102218354468606,0.30132637416057867,0.2928354824755133,0.2846787737676216,0.27675299564132316,0.26905738396894086,0.2615925817689835,0.2543578096799739,0.24735109460667343,0.2405694730071352,0.23400917028799223,0.22766575802227074,0.2215342908321263,0.2156094248179576,0.20988551938826142,0.20435672427295343,0.1990170534007153,0.19386044720030834,0.18888082475695045,0.18407212712228943,0.1794283529468978,0.17494358747964064,0.17061202586114735,0.16642799152992102,0.1623859504606372,0.1584805218638131,0.154706485895213,0.15105878885119026,0.14753254626170892,0.1441230442365842,0.14082573937019827,0.13763625746666228,0.1345503913091755,0.1315640976641151,0.12867349368192013,0.1258748528316434,0.12316460048477763,0.12053930924538787,0.117995694107752,0.11553060750893382,0.11314103433230628,0.11082408690785134,0.10857700004669843,0.10639712614018974,0.10428193034749768,0.10222898589090106,0.10023596947323604,0.09830065682852449,0.09642091841367145,0.09459471524660831,0.09282009489403797,0.09109518761038352,0.08941820262789564,0.08778742459686772,0.08620121017390815,0.08465798475543121,0.08315623935307831,0.08169452760718056,0.08027146293413391,0.07888571580331244,0.0775360111389096,0.0762211258421408,0.07493988642906807,0.07369116677937831,0.07247388599148376,0.07128700633937855,0.07012953132673126,0.06900050383390499,0.0678990043536102,0.06682414931108879,0.06577508946487659,0.06475100838425647,0.06375112099979366,0.06277467222336083,0.06182093563428905,0.06088921222839477,0.05997882922680286,0.05908913894156544,0.058219517695309524,0.05736936479218506,0.05653810153756981,0.05572517030410423,0.054930033641703964,0.05415217342939922,0.053391090066870636,0.05264630170370721,0.05191734350451229,0.051203766948033934,0.05050513915866287,0.04982104226865611,0.0491510728095688,0.048494841131440966,0.04785197084837427,0.04722209830916806,0.04660487209181499,0.045999952520656015,0.04540701120509096,0.04482573059880298,0.04425580357846752,0.04369693304103521,0.043148831518662945,0.04261122081045168,0.04208383163018021,0.041566403269274875,0.04105868327426885,0.040560427138087336,0.04007139800448618,0.039591366385024154,0.039120109887993,0.03865741295871881,0.03820306663073597,0.03775686828730437,0.03731862143280187,0.03688813547354032,0.03646522550755508,0.036049712122983205,0.03564142120462049,0.03524018374829384,0.03484583568269625,0.034458217698352125,0.03407717508338145,0.033702557565779695,0.03333421916190888,0.03297201803093136,0.03261581633493022,0.0322654801044524,0.03192087910925781,0.031581886734035565,0.03124837985887624,0.030920238744297102,0.03059734692062772,0.030279591081559462,0.029966860981698592,0.029659049337941865,0.029356051734517167,0.02905776653154132,0.028764094776935426,0.02847494012157551,0.028190208737532,0.02790980923927617,0.02763365260773576,0.027361652117071384,0.027093723264080303,0.02682978370010904,0.02656975316537853,0.026313553425625056,0.026061108210967552,0.025812343156903707,0.025567185747363712,0.025325565259731724,0.02508741271176068,0.02485266081030999,0.02462124390182609,0.024393097924511595,0.02416816036210796,0.02394637019923379,0.02372766787822224,0.023511995257391703,0.023299295570707375,0.023089513388773412,0.02288259458110801,0.022678486279653968,0.02247713684348102,0.022278495824628205,0.02208251393505552,0.02188914301465567,0.021698336000289805,0.021510046895813373,0.021324230743048,0.021140843593675476,0.020959842482013866,0.0207811853986463,0.020604831264872257,0.020430739907954066,0.02025887203712412,0.020089189220335507,0.019921653861722597,0.019756229179749826,0.0195928791860265,0.019431568664758363,0.019272263152822676,0.019114928920438888,0.018959532952416782,0.018806042929964885,0.01865442721303326,0.01850465482318162,0.01835669542694882,0.018210519319709136,0.018066097409998774,0.01792340120429872,0.017782402792254084,0.017643074832322247,0.017505390537830613,0.017369323663432266,0.017234848491948902,0.01710193982158217,0.016970572953489707,0.01684072367970822,0.016712368271414767,0.016585483467514907,0.016460046463549257,0.01633603490090327,0.016213426856317645,0.01609220083168474,0.01597233574412359,0.01585381091632707,0.015736606067167046,0.01562070130255658,0.01550607710655669,0.015392714332720764,0.015280594195672242,0.015169698262902548,0.01506000844678996,0.014951506996827084,0.014844176492053218,0.014737999833684574,0.014632960237938177,0.014529041229039405,0.014426226632413712,0.014324500568052087,0.01422384744404765,0.014124251950298658,0.014025699052369646,0.013928173985511431,0.013831662248830902,0.013736149599608623,0.013641622047758721,0.01354806585042901,0.013455467506733203,0.013363813752616882,0.013273091555849251,0.013183288111138683,0.01309439083536963,0.013006387362953786,0.01291926554129738,0.012833013426377587,0.01274761927842611,0.012663071557718408,0.012579358920462089,0.012496470214785997,0.012414394476824521,0.012333120926895078,0.012252638965766421,0.012172938171016324,0.012094008293472968,0.01201583925374217,0.011938421138814917,0.011861744198754118,0.011785798843459632,0.011710575639505897,0.01163606530705501,0.01156225871683993,0.011489146887216677,0.01141672098128528,0.011344972304074058,0.011273892299790289,0.011203472549131805,0.011133704766659692,0.011064580798229931,0.010996092618483487,0.010928232328390651,0.010860992152852108,0.01079436443835228,0.010728341650664521,0.010662916372607998,0.010598081301852143,0.010533829248770872,0.010470153134342998,0.010407045988098353,0.6854357079269946,0.6843794347810052,0.6812325911856513,0.6760599265276704,0.6689655479553456,0.6600876037794913,0.6495915682127739,0.6376627202927528,0.6244984199009207,0.6103007224594763,0.5952697613126298,0.5795981879321261,0.5634668187830787,0.5470415124786266,0.5304712030327696,0.5138869487713433,0.4974018203533084,0.4811114404052687,0.4650949949116897,0.44941655610767145,0.43412658245276886,0.4192634889160237,0.40485649719586786,0.391098370526879,0.37807625571209097,0.3657371967704098,0.3540329646931825,0.3429195588903641,0.3323567687651558,0.3223077873182744,0.3127388698802233,0.30361903207451746,0.2949197819613539,0.2866148820269749,0.27868013728858393,0.27104895861348416,0.26362824177111677,0.2564180550701778,0.24941923441383668,0.24263131653703127,0.2360527422474026,0.22968103778299326,0.22351297545798937,0.21754471499722222,0.21177192708758352,0.20618990072282964,0.2007936359096341,0.19557792325287388,0.1905374118599853,0.18566666690965158,0.18096021812446092,0.17641260027904093,0.1720183867666523,0.1677722171427806,0.16366881946452777,0.15970302815246773,0.15586979801580825,0.1521642150040279,0.148581504177936,0.14511703532957151,0.1417663266245415,0.13852504658997217,0.1353890147273334,0.13235420099057027,0.12941672433576465,0.1265728505190862,0.12381898929362326,0.12115169113332448,0.11856764359269964,0.1160636673941558,0.11363671232006353,0.11128385297443119,0.10900228446801417,0.10678931807157471,0.10464237687414468,0.10255899147624485,0.10053679574247826,0.09857352263285446,0.09666700012814704,0.09481514726107886,0.09301597026221083,0.0912675588268308,0.08956808250726037,0.08791578723309715,0.0863089919605801,0.08474608545111897,0.08322552317795172,0.08174582435931797,0.08030556911573093,0.07890339574855794,0.07753799813674049,0.07620812324811177,0.07491256876173384,0.07365018079736595,0.07241985174821161,0.0712205182129964,0.07005115902347041,0.0689107933633792,0.06779847897512511,0.06671331045028613,0.06565441760032481,0.0646209639039063,0.06361214502730549,0.06262718741458356,0.061665346944248044,0.06072590764928077,0.05980818049752005,0.05891150222952733,0.058035234251137054,0.05717876157809122,0.056341491830194816,0.0555228542725921,0.0547222989018652,0.05393929557473256,0.05317333317729406,0.052423918832803076,0.05169057714607735,0.050972849482756384,0.05027029328166558,0.04958248139869128,0.04890900148059603,0.04824945536730951,0.04760345852130064,0.04697063948271194,0.04635063934897198,0.045743111277727386,0.04514772001193252,0.04456414142603052,0.04399206209221021,0.043431178865748064,0.04288119848854492,0.04234183720995982,0.04181282042412519,0.041293882322948755,0.04078476556406952,0.04028522095303222,0.03979500713904039,0.0393138903236266,0.03884164398163905,0.038378048593977386,0.03792289139150976,0.03747596610967818,0.03703707275327987,0.036606017370961155,0.03618261183898497,0.035766673653831856,0.03535802573325277,0.03495649622537794,0.03456191832552102,0.03417413010033322,0.03379297431898336,0.03341829829103607,0.03304995371075138,0.03268779650750614,0.03233168670207432,0.0319814882685123,0.031637069001392924,0.03129830038817256,0.030965057486457188,0.03063721880595977,0.030314666194952978,0.029997284731012618,0.02968496261588592,0.02937759107429778,0.029075064256534715,0.028777279144645604,0.028484135462113768,0.02819553558684387,0.027911384467341836,0.02763158954194577,0.027356060660985494,0.027084710011755414,0.02681745204617449,0.02655420341104101,0.02629488288076427,0.02603941129248032,0.025787711483453848,0.025539708230679862,0.0252953281925879,0.025054499852779168,0.024817153465707554,0.024583221004230493,0.024352636108961413,0.024125334039344325,0.023901251626396097,0.023680327227043097,0.023462500679996307,0.02324771326310299,0.02303590765212436,0.02282702788087564,0.022621019302689584,0.022417828553144625,0.022217403514013863,0.022019693278392864,0.02182464811695317,0.02163221944529236,0.021442359792331712,0.021255022769726233,0.021070163042252576,0.020887736299132438,0.020707699226266987,0.020530009479343105,0.02035462565778287,0.02018150727950474,0.020010614756472155,0.019841909370992866,0.019675353252753217,0.01951090935655465,0.0193485414407296,0.019188214046216245,0.019029892476262064,0.018873542776744186,0.018719131717077765,0.018566626771695727,0.018415996102081496,0.01826720853933046,0.01812023356723041,0.017975041305837353,0.01783160249553238,0.01768988848154358,0.017549871198918744,0.017411523157929088,0.01727481742989743,0.017139727633430333,0.01700622792104448,0.016874292966174598,0.01674389795054637,0.016615018551909194,0.0164876309321121,0.016361711725513945,0.016237238027716195,0.016114187384610866,0.01599253778172762,0.015872267633878216,0.01575335577508346,0.015635781448775324,0.015519524298268101,0.015404564357484354,0.015290882041935018,0.015178458139940808,0.01506727380408876,0.01495731054291891,0.01484855021282897,0.014740975010196751,0.01463456746370913,0.014529310426893226,0.014425187070842907,0.014322180877136947,0.014220275630938358,0.014119455414275488,0.01401970459949534,0.01392100784288519,0.013823350078459017,0.013726716511900175,0.013631092614660612,0.013536464118208549,0.013442817008421492,0.01335013752012043,0.013258412131742016,0.013167627560141672,0.01307777075552822,0.012988828896523351,0.012900789385342816,0.012813639843097736,0.012727368105208803,0.012641962216934914,0.012557410429009708,0.012473701193383955,0.012390823159072178,0.012308765168097147,0.012227516251533958,0.012147065625647937,0.012067402688124774,0.011988517014390063,0.011910398354017216,0.01183303662721799,0.011756421921417893,0.011680544487910576,0.011605394738590803,0.011530963242764114,0.011457240724028941,0.011384218057232607,0.011311886265496608,0.011240236517310572,0.011169260123692288,0.011098948535413948,0.011029293340289206,0.010960286260523923,0.010891919150125723,0.010824183992371929,0.01075707289733537,0.010690578099463596,0.010624691955214021,0.01055940694074067,0.010494715649632317,0.01043061079070134,0.010367085185819603,0.010304131767803554,0.010241743578344717,0.010179913765985584,0.6749775025935849,0.6739285735931281,0.6708037935151936,0.6656679934705598,0.65862538056764,0.649814173955002,0.6393998356260987,0.6275674978310053,0.6145141978737998,0.6004414673160765,0.5855487070137547,0.5700276376298484,0.5540579716805633,0.5378043265682262,0.5214142997552929,0.5050175612474884,0.4887257832072055,0.4726332165700376,0.4568177332060216,0.44134217268248793,0.42625585923625187,0.4115961827182288,0.39742308808012955,0.3839680891617022,0.3712269926259603,0.359149088578626,0.3476881138276691,0.3368017936870849,0.3264514374244403,0.31660158039297276,0.3072196668696597,0.29827576845362447,0.289742333587459,0.2815939643693405,0.27380721733878877,0.26636042536066423,0.25920188233063274,0.2522375218349579,0.24546475998248604,0.23888476670485048,0.23249750737519953,0.22630192443014724,0.2202961002340883,0.21447740206086335,0.20884261029162135,0.20338803106033998,0.19810959464232372,0.19300294089192344,0.18806349300853528,0.18328652085661062,0.1786671949936042,0.17420063247819553,0.16988193544380245,0.16570622333419652,0.16166865961080096,0.15776447365833898,0.15398897853645244,0.15033758515215084,0.14680581336072834,0.14338930044149767,0.14008380733976614,0.13688522301661116,0.133789567203871,0.13079299182254278,0.1278917812877998,0.12508235189351372,0.12236125044200191,0.11972515226130824,0.11717085873174063,0.11469529442551303,0.1122955039476347,0.10996864855296917,0.1077120026024465,0.1055229499114697,0.10339898003492191,0.10133768452552354,0.09933675319613912,0.09739397041094597,0.09550721142576461,0.09367443879386851,0.09189369885019047,0.09016311828388028,0.0884809008069007,0.08684532392412157,0.08525473580875073,0.08370755228550619,0.08220225392263236,0.08073738323305472,0.07931154198397683,0.07792338861366997,0.07657163575367289,0.07525504785410737,0.07397243890963061,0.07272267028317381,0.07150464862448204,0.07031732388034288,0.06915968739331939,0.06803077008568888,0.06692964072539975,0.06585540427075208,0.06480720029060821,0.06378420145698922,0.0627856121069226,0.06181066687058373,0.06085862936275038,0.059928790934751154,0.059020469484151336,0.0581330083195382,0.057265775077819235,0.05641816069162845,0.055589578404448524,0.05477946283120315,0.0539872690621728,0.053212471808132544,0.052454564584782884,0.05171305893455299,0.050987483683992696,0.05027738423504884,0.04958232188855827,0.04890187319844503,0.0482356293551101,0.04758319559661619,0.04694419064632034,0.04631824617569468,0.04570500629108974,0.04510412704332817,0.04451527595900522,0.04393813159246216,0.04337238309745186,0.042817729817534136,0.0422738808943368,0.04174055489281244,0.04121747944269311,0.0407043908953738,0.040201033995506924,0.03970716156659413,0.039222534209948236,0.038746920016379006,0.03828009429001885,0.03782183928372872,0.03737194394553301,0.036930203675597274,0.03649642009324802,0.03607040081358093,0.03565195923322466,0.035240914324830015,0.03483709043991027,0.034440317119639845,0.034050428913262,0.03366726520376187,0.03329067004048816,0.032920491978399045,0.03255658392366206,0.032198802985311185,0.03184701033270164,0.03150107105851464,0.031160854047055514,0.03082623184763696,0.030497080552811758,0.03017327968125417,0.029854712065094043,0.02954126374150136,0.02923282384835953,0.028929284523840918,0.028630540809726542,0.02833649055831106,0.02804703434274964,0.027762075370691083,0.02748151940107765,0.027205274663970356,0.0269332517832784,0.026665363702279756,0.026401525611807548,0.02614165488100929,0.025885670990564956,0.025633495468269766,0.025385051826885757,0.02514026550417597,0.024899063805025417,0.024661375845580008,0.024427132499313563,0.024196266344952505,0.023968711616187535,0.023744404153095536,0.023523281355216256,0.02330528213621315,0.02309034688005988,0.02287841739869436,0.022669436891087878,0.022463349903666992,0.022260102292049534,0.02205964118403673,0.021861914943817444,0.02166687313734245,0.021474466498817683,0.021284646898285464,0.02109736731024676,0.02091258178328843,0.020730245410681976,0.020550314301911073,0.020372745555104245,0.020197497230333185,0.02002452832374833,0.019853798742521557,0.019685269280569698,0.019518901595024812,0.01935465818343369,0.019192502361655362,0.01903239824243296,0.018874310714620236,0.018718205423032902,0.01856404874891188,0.018411807790971475,0.018261450347014374,0.018112944896096397,0.017966260581216035,0.017821367192519814,0.01767823515099929,0.017536835492666537,0.017397139853190427,0.017259120452981978,0.017122750082706733,0.016988002089219273,0.01685485036189891,0.016723269319376646,0.01659323389664144,0.016464719532508786,0.016337702157446808,0.016212158181743035,0.016088064484003083,0.015965398399970226,0.01584413771165725,0.015724260636776042,0.015605745818461947,0.015488572315279107,0.015372719591498931,0.015258167507645543,0.015144896311294521,0.015032886628123963,0.014922119453204956,0.014812576142525945,0.014704238404745188,0.014597088293160023,0.014491108197892136,0.014386280838278063,0.014282589255460266,0.014180016805172467,0.014078547150714982,0.013978164256110011,0.013878852379437631,0.01378059606634224,0.013683380143706809,0.01358718971349018,0.013492010146719618,0.013397827077638964,0.013304626398004022,0.013212394251522252,0.013121117028432458,0.013030781360221814,0.012941374114472465,0.012852882389838973,0.012765293511149486,0.012678595024627825,0.01259277469323477,0.012507820492121426,0.012423720604196121,0.0123404634157984,0.012258037512478111,0.012176431674877905,0.012095634874712867,0.012015636270849199,0.011936425205475354,0.011857991200365618,0.011780323953231659,0.011703413334162202,0.011627249382144432,0.011551822301669741,0.011477122459417965,0.011403140381019214,0.011329866747892289,0.011257292394154532,0.01118540830360531,0.01111420560677811,0.011043675578060604,0.010973809632880664,0.010904599324957631,0.010836036343614177,0.010768112511151366,0.010700819780281806,0.010634150231621058,0.010568096071236068,0.010502649628246865,0.01043780335248372,0.0103735498121953,0.010309881691807939,0.01024679178973514,0.010184273016233864,0.010122318391309396,0.010060921042665502,0.010000074203699217,0.4922566831895949,0.491731032779063,0.4901616582823024,0.48757100773344036,0.4839955737725032,0.47948457964181224,0.47409826614322376,0.46790588945716116,0.46098355029724497,0.4534119743332215,0.4452743535147805,0.43665434023875577,0.42763426410490524,0.4182936171856586,0.40870783080585354,0.39894734666034004,0.38907696884044324,0.3791554714700139,0.36923542907291707,0.35936323303528955,0.34957925688015207,0.339918134759755,0.330409120836076,0.3210765013974466,0.31194003611850707,0.30301540941127053,0.29431467706510994,0.28590256515366497,0.277866473371873,0.2701855241005889,0.26283860814654364,0.25580617260616995,0.2490700853943794,0.24261351323748295,0.23642081163961984,0.23047742551261868,0.22476979931579208,0.21928529568886018,0.21401212168013595,0.20893926177671387,0.20405641703380162,0.19935394968070316,0.1948151068077003,0.19038543969668462,0.1860570282384452,0.18183068897327176,0.17770674366198913,0.17368508068931884,0.169765211353506,0.16594632118155742,0.1622273164693436,0.15860686628892354,0.1550834402331879,0.15165534218411947,0.14832074039745086,0.14507769419611874,0.14192417755848488,0.13885809987709974,0.1358773241508254,0.1329796828577674,0.13016299174081092,0.12742506172050896,0.12476370913363982,0.12217676447930446,0.11966207983854035,0.11721753511855086,0.11484104325820425,0.11253055451823482,0.11028405996725806,0.10809959426323468,0.10597523781953194,0.10390911843528132,0.10189941246089625,0.09994434556176972,0.09804219313610728,0.09619128043624657,0.09438998243729924,0.09263672349152675,0.09092997680237525,0.08926826374791237,0.08765015307974272,0.08607426002013668,0.08453924527730979,0.08304381399609553,0.08158671465901983,0.08016673795077693,0.07878271559724379,0.0774335191887227,0.0761180589955907,0.07483528278337952,0.07358417463325413,0.07236375377283501,0.0711730734216222,0.07001121965443108,0.06887731028570926,0.06777049377701917,0.06668994816953479,0.06563488004291941,0.06460452350171197,0.06359813918993308,0.06261501333442052,0.06165445681718323,0.06071580427681581,0.05979841323894681,0.05890166327546418,0.05802495519221058,0.05716771024471097,0.05632936938145498,0.05550939251412791,0.05470725781422661,0.05392246103536857,0.05315451486062745,0.05240294827419677,0.051667305956631826,0.05094714770298685,0.0502420478630816,0.04955159480318206,0.04887539038837537,0.04821304948489707,0.04756419948173999,0.04692847983082077,0.04630554160503724,0.04569504707354703,0.04509666929362929,0.04451009171847223,0.04393500782030957,0.04337112072828349,0.042818142880468785,0.0422757956895062,0.04174380922128446,0.04122192188618213,0.04070988014234359,0.04020743821051452,0.03971435779996964,0.03923040784509244,0.03875536425215229,0.03828900965589645,0.0378311331855344,0.03738153023973959,0.03694000227030911,0.036506356574106155,0.036080406092976136,0.035661969221289336,0.03525086962080787,0.0348469360425822,0.03445000215557425,0.03405990638175701,0.033676491737408915,0.03329960568035814,0.0329290999629354,0.0325648304904066,0.03220665718465249,0.031854443852900365,0.03150805806129157,0.031167371013093706,0.03083225743137782,0.030502595445964804,0.03017826648449266,0.02985915516742375,0.029545149206842626,0.029236139308890845,0.028932019079702574,0.02863268493468698,0.028338036011045394,0.028047974083382603,0.027762403482295677,0.02748123101582799,0.027204365893666014,0.026931719653987184,0.026663206092845712,0.026398741196001843,0.026138243073105392,0.025881631894130796,0.025628829827994384,0.025379760983258434,0.025134351350848492,0.024892528748705532,0.024654222768304784,0.024419364722961343,0.024187887597868343,0.023959726001794194,0.0237348161203795,0.023513095670978867,0.02329450385898027,0.023078981335560644,0.022866470156815533,0.022656913744216235,0.022450256846348975,0.022246445501880055,0.022045427003716197,0.02184714986430641,0.02165156378204959,0.02145861960876614,0.021268269318199366,0.021080465975502664,0.02089516370768749,0.020712317674990776,0.020531884043132432,0.020353819956433514,0.020178083511759284,0.020004633733265983,0.019833430547919067,0.019664434761756572,0.019497608036873098,0.01933291286910161,0.01917031256636251,0.01900977122766677,0.018851253722743825,0.018694725672276008,0.018540153428720514,0.01838750405769369,0.018236745319907058,0.018087845653630027,0.01794077415766478,0.017795500574818074,0.017651995275847182,0.01751022924387347,0.01737017405924151,0.017231801884812138,0.017095085451674277,0.016959998045264914,0.016826513491877464,0.016694606145554965,0.0165642508753488,0.016435423052934172,0.01630809854057283,0.01618225367940574,0.01605786527807378,0.01593491060165006,0.015813367360876324,0.01569321370169357,0.015574428195059515,0.01545698982703932,0.0153408779891675,0.01522607246906817,0.015112553441326702,0.015000301458607526,0.014889297443005552,0.014779522677629985,0.01467095879840963,0.014563587786114125,0.014457391958586025,0.01435235396317368,0.014248456769363819,0.014145683661604631,0.014044018232314385,0.0139434443750706,0.013843946277975498,0.013745508417188483,0.013648115550626642,0.013551752711823862,0.013456405203945754,0.013362058593957019,0.013268698706932836,0.013176311620515432,0.0130848836595082,0.012994401390604303,0.012904851617246067,0.01281622137461261,0.012728497924728509,0.012641668751695125,0.012555721557037347,0.012470644255163685,0.012386424968938256,0.012303052025357182,0.012220513951332088,0.012138799469573622,0.012057897494573862,0.011977797128685718,0.01189848765829336,0.011819958550076122,0.011742199447359259,0.011665200166551195,0.011588950693664177,0.011513441180917577,0.011438661943418211,0.011364603455920075,0.01129125634965816,0.01121861140925548,0.011146659569702245,0.011075391913402437,0.011004799667290155,0.010934874200010295,0.010865607019163812,0.010796989768616141,0.010729014225864515,0.010661672299466445,0.010594956026525135,0.01052885757023113,0.01046336921745867,0.010398483376416532,0.01033419257434893,0.010270489455289118,0.010207366777861446,0.01014481741313187,0.010082834342506132,0.010021410655672242,0.009960539548589326,0.009900214321519144,0.009840428377100639,0.48927359675993215,0.4887456166699332,0.4871693671884983,0.484567631252854,0.4809774362023448,0.47644870698607816,0.47104251169813216,0.46482901305996954,0.4578852501838662,0.45029287410172286,0.442135949587694,0.4334989172446914,0.4244647866880893,0.41511360696359195,0.40552123667792295,0.3957584156245823,0.3858901231160456,0.3759751962403147,0.3660661737154686,0.356209327401004,0.34644484309018037,0.3368071141327559,0.3273251149386049,0.31802282580491226,0.3089196852503389,0.3000310507245791,0.29137627996326293,0.28307267131376196,0.2751391944226276,0.26755378454280304,0.2602959982453481,0.2533468737787858,0.24668880503784693,0.2403054276818915,0.23418151611081053,0.22830289015450775,0.2226563304623009,0.21722950169310395,0.21201088270761112,0.20698970305335296,0.2021558851110171,0.197499991339791,0.19301317612058896,0.1886867979893337,0.18447770184628684,0.180361027020373,0.17633781255488598,0.1724086237432793,0.16857360823026904,0.16483254772182082,0.16118490537755154,0.15762986902015882,0.15416639034098722,0.15079322031185244,0.14750894103298856,0.1443119942582884,0.14120070684243002,0.1381733133530907,0.13522797608552364,0.13236280270775466,0.12957586175387542,0.12686519617017197,0.12422883510571567,0.12166480412539338,0.11917113400962041,0.11674586829177988,0.11438706967133953,0.11209282542839143,0.10986125195365186,0.10769049849714943,0.10557875022853308,0.10352423069277891,0.10152520373625813,0.09957997497033338,0.0976868928324945,0.09584434929834139,0.09405078029205463,0.09230466583740855,0.09060452998668693,0.08894894056051653,0.08733650872774769,0.08576588845095359,0.08423577582018796,0.08274490829467435,0.0812920638697648,0.07987606018425923,0.07849575358119472,0.07715003813358873,0.07583784464496642,0.07455813963322974,0.07330992430521253,0.07209223352816374,0.07090413480357123,0.06974472724782099,0.06861314058352642,0.0675085341447142,0.06643009589853562,0.06537704148560076,0.06434861328076356,0.06334407947567054,0.06236273318416036,0.061403891571318495,0.060466895006691425,0.05955110624207367,0.058655909613992356,0.057780710270943156,0.056924933425266035,0.056088023629472815,0.055269444076699474,0.05446867592495369,0.053685217644704325,0.05291858438933608,0.05216830738796699,0.05143393336004596,0.050715023951201844,0.050011155189718,0.04932191696305047,0.04864691251378344,0.04798575795438815,0.047338081800215114,0.0467035245200812,0.04608173810387118,0.04547238564655199,0.04487514094803792,0.044289688128305194,0.04371572125723883,0.04315294399864151,0.042601069267884734,0.042059818902695716,0.04152892334655913,0.04100812134427948,0.040497159649213035,0.039995792741726266,0.039503782558439136,0.03902089823183774,0.03854691583983003,0.03808161816487862,0.03762479446230841,0.03717624023743515,0.036735757031167486,0.03630315221372689,0.03587823878618663,0.03546083518949692,0.035050765120705915,0.034647857356091584,0.034251945580912345,0.03386286822553324,0.03348046830765756,0.03310459328042345,0.03273509488613198,0.03237182901538634,0.032014655571411275,0.03166343833936738,0.03131804486044524,0.030978346310556362,0.030644217383441426,0.030315536178008324,0.029992184089750726,0.029674045706073127,0.029361008705373087,0.029052963759733055,0.02874980444108384,0.028451427130691837,0.028157730931858443,0.027868617585692878,0.027583991389843535,0.02730375912007785,0.027027829954589327,0.026756115400941662,0.026488529225537016,0.026224987385517436,0.02596540796300781,0.025709711101603038,0.025457818945026536,0.02520965557786885,0.024965146968331513,0.024724220912899716,0.024486806982875538,0.024252836472692697,0.02402224234995912,0.023794959207153937,0.023570923214921134,0.023350072076903785,0.023132344986053342,0.022917682582372152,0.022706026912027995,0.022497321387793725,0.022291510750767005,0.02208854103331499,0.02188835952321216,0.021690914728918924,0.021496156345964624,0.021304035224394283,0.02111450333724377,0.020927513750000903,0.020743020591026104,0.020560979022892868,0.020381345214618027,0.020204076314752194,0.020029130425295295,0.019856466576416022,0.019686044701942334,0.01951782561559789,0.01935177098795886,0.019187843324108986,0.0190260059419621,0.01886622295123918,0.018708459233070556,0.018552680420204623,0.018398852877805384,0.01824694368481174,0.01809692061584964,0.01794875212367117,0.01780240732210645,0.01765785596951237,0.01751506845269709,0.017374015771311414,0.01723466952268705,0.017097001887108974,0.016960985613507194,0.016826594005557156,0.016693800908168972,0.0165625806943621,0.01643290825250584,0.016304758973917654,0.01617810874080805,0.016052933914557563,0.015929211324320625,0.015806918255942583,0.015686032441180754,0.015566532047220479,0.015448395666478166,0.015331602306678337,0.015216131381201935,0.015101962699693751,0.014989076458921526,0.014877453233881571,0.014767073969138325,0.014657919970396912,0.014549972896297518,0.014443214750425901,0.01433762787353528,0.014233194935969255,0.014129898930284974,0.014027723164066745,0.013926651252926069,0.013826667113682143,0.013727754957718765,0.01362989928450935,0.013533084875309218,0.01343729678700795,0.013342520346136665,0.013248741143028825,0.013155945026124901,0.013064118096422874,0.012973246702065943,0.012883317433065603,0.01279431711615526,0.012706232809772521,0.01261905179916276,0.01253276159160544,0.012447349911756148,0.012362804697102193,0.012279114093530089,0.012196266450998042,0.012114250319315182,0.012033054444021635,0.01195266776236697,0.011873079399386298,0.011794278664067412,0.011716255045611457,0.011638998209780734,0.011562497995333095,0.011486744410539837,0.011411727629786513,0.011337437990250577,0.011263865988659165,0.011191002278120336,0.011118837665028193,0.011047363106040051,0.010976569705121238,0.010906448710659407,0.010836991512643931,0.010768189639909338,0.010700034757442415,0.01063251866374796,0.010565633288276336,0.010499370688907286,0.010433723049490692,0.01036868267744197,0.010304242001391737,0.010240393568885989,0.010177130044138796,0.01011444420583379,0.010052328944973675,0.009990777262778153,0.00992978226862564,0.009869337178041632,0.009809435310729992,0.009750070088646723,0.4881785444368794,0.48764616041721176,0.4860568456578826,0.48343381400243374,0.47981478304323527,0.47525058824042155,0.46980337891706264,0.4635445140654281,0.456552286788018,0.4489096050140425,0.4407017444382684,0.4320142700849249,0.4229311986943252,0.41353344842446366,0.4038975978598383,0.3940949550040385,0.38419091998217897,0.3742446130233583,0.36430873176624795,0.3544295984595036,0.34464735741649044,0.33499628526535824,0.3255051802962651,0.316197801837182,0.3070933355349412,0.2982068652679277,0.289604873906029,0.28138575485711875,0.2735295173961325,0.26601486242617334,0.25882202104294777,0.25193262680454687,0.2453295999235362,0.2389970421779049,0.23292014146392678,0.22708508502751654,0.22147898051243098,0.21608978405433715,0.2109062347304353,0.20591779474710875,0.20111459481184857,0.19648738419349215,0.19202748502586048,0.1877267504552968,0.18357752627375648,0.17956359719692241,0.1756390595679935,0.17179951239504307,0.16804580282709408,0.16437837087252616,0.16079729701926118,0.15730234616219216,0.153893007907188,0.1505685333680999,0.14732796860765962,0.14417018489738995,0.141093905986917,0.13809773258164496,0.13518016423067777,0.13233961882531886,0.129574449904057,0.12688296195256105,0.1242634238784401,0.1217140808306541,0.11923316452251587,0.11681890220658468,0.11446952443843726,0.1121832717556059,0.10995840038744484,0.10779318710167846,0.10568593328371687,0.10363496833613982,0.10163865247714038,0.09969537900915112,0.09780357612170716,0.09596170828594118,0.09416827729229575,0.09242182297740138,0.09072092368117946,0.08906419647072573,0.08745029716346263,0.08587792017831587,0.08434579824050166,0.08285270196241103,0.08139743932049112,0.07997885504565559,0.07859582994254032,0.07724728015117444,0.07593215636279406,0.0746494430001169,0.0733981573710476,0.07217734880352905,0.07098609776833027,0.06982351499550593,0.06868874058952215,0.06758094314727102,0.0664993188826119,0.06544309076041505,0.06441150764272836,0.06340384344912543,0.062419396332984906,0.0614574878751104,0.06051746229576571,0.059598685686031834,0.058700545259087564,0.05782244862187747,0.056963823067450896,0.05612411488812982,0.05530278870949896,0.05449932684518201,0.053713228672216055,0.05294401002678745,0.052191202620052675,0.05145435347365642,0.05073302437460757,0.05002679134905092,0.049335244154505076,0.048657985790102776,0.04799463202432225,0.047344810939755524,0.04670816249438638,0.0460843380988826,0.04547300020940238,0.04487382193541837,0.04428648666204267,0.04371068768639683,0.043146127867515205,0.04259251928932283,0.042049582936227674,0.04151704838085387,0.04099465348350407,0.040482144102897195,0.03997927381777509,0.039485803658966236,0.0390015018515235,0.03852614356653363,0.03805951068225642,0.03760139155421729,0.037151580793914986,0.036709879055819065,0.03627609283231665,0.03585003425632537,0.03543152091125529,0.0350203756480384,0.03461642640895818,0.0342195060579926,0.0338294522174408,0.033446107110569424,0.033069317410049585,0.03269893409195476,0.032334812295109136,0.03197681118556031,0.03162479382599596,0.03127862704989728,0.030938181340246663,0.030603330712618997,0.03027395260246937,0.029949927756473864,0.029631140127750876,0.02931747677481708,0.029008827764138264,0.02870508607612207,0.028406147514436618,0.0281119106185158,0.027822276579131656,0.0275371491569152,0.02725643460371832,0.02698004158669563,0.02670788111501799,0.02643986646910686,0.026175913132297623,0.025915938724842873,0.02565986294015718,0.025407607483234312,0.025159096011142232,0.024914254075525458,0.024673009067036362,0.02443529016162853,0.024201028268633403,0.023970155980567082,0.023742607524593878,0.02351831871558932,0.023297226910746646,0.023079270965661498,0.022864391191853715,0.022652529315663788,0.02244362843847937,0.02223763299824176,0.0220344887321902,0.021834142640791233,0.02163654295282182,0.021441639091557052,0.021249381642026575,0.02105972231930313,0.020872613937781035,0.020688010381418754,0.020505866574904438,0.020326138455715872,0.020148782947044586,0.01997375793154821,0.019801022225911517,0.01963053555618177,0.01946225853385397,0.01929615263268022,0.01913218016618057,0.01897030426582565,0.018810488859876823,0.01865269865285499,0.01849689910561964,0.01834305641603961,0.0181911375002292,0.01804110997434036,0.017892942136884627,0.017746602951571343,0.017602062030645398,0.017459289618703785,0.01731825657698203,0.017178934368090076,0.01704129504118512,0.01690531121756668,0.016770956076682414,0.016638203342526067,0.01650702727042246,0.01637740263418165,0.01624930471361229,0.016122709282384802,0.015997592596228086,0.015873931381455823,0.01575170282380785,0.015630884557597688,0.015511454655156897,0.015393391616568827,0.015276674359677576,0.015161282210370945,0.015047194893123499,0.014934392521793518,0.014822855590668253,0.014712564965744286,0.014603501876243156,0.014495647906349754,0.014388984987168885,0.014283495388894424,0.014179161713181052,0.014075966885717434,0.013973894148991787,0.013872927055244358,0.01377304945960234,0.01367424551339234,0.013576499657621687,0.013479796616629056,0.013384121391895324,0.013289459256011443,0.013195795746800083,0.013103116661582944,0.01301140805159423,0.01292065621653305,0.012830847699251354,0.012741969280574137,0.012654007974248795,0.012566951022016637,0.012480785888808283,0.012395500258055359,0.012311082027116758,0.012227519302817505,0.012144800397093312,0.012062913822742957,0.01198184828928164,0.011901592698894186,0.01182213614248589,0.011743467895825654,0.011665577415782755,0.011588454336651864,0.011512088466565089,0.01143646978398794,0.011361588434299017,0.011287434726447308,0.011213999129689314,0.01114127227040145,0.011069244928965619,0.01099790803672824,0.010927252673026735,0.010857270062286612,0.010787951571183592,0.010719288705870677,0.010651273109268148,0.010583896558415485,0.010517150961881626,0.010451028357234913,0.010385520908569014,0.010320620904084275,0.01025632075372356,0.010192612986858945,0.010129490250031539,0.010066945304739984,0.010004971025277871,0.009943560396619342,0.009882706512349248,0.00982240257263991,0.009762641882271368,0.0097034178486943,0.4889729419626274,0.48843399252912684,0.4868251631067078,0.4841702021237299,0.4805076852750191,0.47588958355687494,0.4703794007283443,0.4640500031193176,0.45698127581222503,0.44925773767163896,0.4409662351678132,0.4321938142777481,0.4230258443207778,0.4135444407263286,0.4038272082582648,0.3939463041869861,0.383967803496858,0.3739513358591686,0.36394995657257384,0.35401021034816815,0.3441723468418607,0.33447064929904274,0.32493384172283746,0.3155855448727575,0.3064447565761612,0.29753951045965404,0.28900060874547123,0.2808399577745183,0.27303548424313917,0.2655666738825393,0.2584144454634849,0.2515610359242448,0.24498989560235265,0.2386855926404788,0.23263372571901145,0.22682084434620597,0.22123437600750914,0.21586255954150746,0.2106943841693216,0.20571953365934012,0.20092833515798342,0.196311712262515,0.19186114195222342,0.18756861503106573,0.18342659976796355,0.17942800845085616,0.17556616659745589,0.17181673792902163,0.1681446229153978,0.16455022496291777,0.16103430748251615,0.15759727719639163,0.15423922488804967,0.15095996307241186,0.14775906063961552,0.14463587456468546,0.14158957880334622,0.138619190514455,0.13572359376269305,0.132901560862628,0.1301517715285084,0.12747282999351192,0.12486328025901115,0.12232161962931958,0.11984631068036923,0.11743579180345809,0.11508848645646326,0.1128028112464647,0.1105771829588832,0.10841002463950562,0.10629977082727494,0.10424487202767278,0.10224379850859308,0.10029504349335756,0.09839712581864897,0.09654859211860709,0.09474801859057812,0.09299401239234634,0.09128521271574179,0.08962029157686308,0.08799795435900684,0.08641694014043334,0.0848760218358301,0.0833740061769954,0.08190973355552056,0.0804820777477211,0.07908994553961454,0.07773227626789059,0.07640804129075524,0.07511624340099154,0.07385591619206411,0.07262612338671046,0.07142595813638822,0.07025454229877612,0.06911102569965774,0.06799458538465536,0.06690442486556383,0.06583977336530994,0.06479988506510233,0.0637840383566939,0.06279153510230487,0.06182169990434493,0.06087387938666311,0.0599474414888515,0.05904177477474436,0.05815628775609559,0.05729040823216656,0.05644358264581564,0.05561527545645371,0.05480496853019519,0.05401216054732222,0.053236366427124926,0.05247711677010665,0.05173395731740419,0.05100644842730956,0.050294164568630645,0.049596693830645376,0.048913637449350976,0.04824460934965424,0.047589235703182665,0.046947154501320316,0.046318015143087185,0.045701478037464376,0.04509721421977175,0.04450490498166341,0.043924241514363235,0.04335492456471117,0.04279666410361622,0.042249179006526014,0.04171219674548759,0.041185453092443584,0.040668691833352866,0.04016166449277077,0.039664130068517316,0.03917585477608436,0.03869661180240846,0.03822618106870151,0.037764349001984214,0.0373109083150109,0.03686565779428178,0.036428402095821134,0.03599895154845694,0.03557712196430265,0.03516273445617294,0.0347556152616791,0.03435559557373293,0.03396251137723784,0.03357620329171449,0.03319651641964138,0.03282330020028957,0.03245640826884799,0.032095698320619974,0.03174103198011981,0.03139227467486344,0.031049295513680117,0.03071196716937661,0.0303801657655722,0.030053770767564734,0.0297326648770586,0.02941673393061363,0.02910586680166975,0.02879995530601817,0.028498894110573342,0.02820258064533827,0.027910915018429024,0.027623799934046796,0.02734114061329018,0.02706284471768805,0.026788822275367594,0.026518985609745072,0.02625324927065021,0.02599152996779552,0.025733746506493214,0.02547981972554947,0.025229672437245346,0.024983229369330555,0.024740417108955234,0.024501164048470848,0.024265400333023265,0.02403305780988459,0.02380406997945024,0.023578371947844238,0.023355900381077824,0.023136593460694237,0.022920390840860328,0.022707233606842226,0.022497064234818846,0.02228982655298886,0.022085465703914998,0.021883928108074425,0.02168516142856343,0.02148911453691828,0.021295737480013233,0.021104981447999854,0.020916798743243856,0.02073114275023482,0.020547967906427468,0.020367229673984546,0.02018888451239287,0.0200128898519146,0.01983920406785527,0.019667786455613654,0.019498597206488458,0.019331597384216862,0.019166748902221337,0.019004014501535132,0.018843357729391854,0.018684742918450837,0.018528135166638458,0.018373500317587926,0.018220804941650678,0.01807001631746886,0.017921102414085014,0.017774031873572065,0.01762877399416969,0.01748529871390389,0.01734357659468244,0.017203578806844685,0.017065277114153,0.01692864385921197,0.016793651949302293,0.016660274842612142,0.016528486534859704,0.01639826154628925,0.016269574909030717,0.016142402154813447,0.016016719303017055,0.015892502849056397,0.015769729753084705,0.015648377429007283,0.015528423733795342,0.015409846957092507,0.015292625811100491,0.015176739420741703,0.01506216731408495,0.01494888941302903,0.014836886024236655,0.014726137830307379,0.014616625881187844,0.014508331585808325,0.014401236703939557,0.01429532333826543,0.014190573926660123,0.014086971234670006,0.013984498348189574,0.013883138666327196,0.013782875894455489,0.013683694037441295,0.013585577393046916,0.013488510545502657,0.013392478359241646,0.013297465972793772,0.013203458792835248,0.013110442488385676,0.013018402985153362,0.012927326460020988,0.012837199335668965,0.012748008275332281,0.012659740177688512,0.012572382171869576,0.012485921612598615,0.012400346075444896,0.012315643352194868,0.01223180144633699,0.012148808568653779,0.012066653132923058,0.011985323751721457,0.011904809232328803,0.011825098572732043,0.011746180957721742,0.01166804575508432,0.011590682511882968,0.011514080950827007,0.011438230966726406,0.011363122623030734,0.011288746148446783,0.011215091933637412,0.011142150527996093,0.011069912636496105,0.0109983691166134,0.010927510975318739,0.01085732936614038,0.01078781558629333,0.010718961073873793,0.01065075740511858,0.010583196291724493,0.010516269578230372,0.010449969239456956,0.010384287378004476,0.010319216221806007,0.010254748121736356,0.010190875549272208,0.010127591094205997,0.010064887462409368,0.010002757473645835,0.009941194059432522,0.009880190260946635,0.009819739226979686,0.009759834211935173,0.009700468573869777,0.4916712903226328,0.4911235211736153,0.4894884518759698,0.48679047684528487,0.4830692101014438,0.47837799952933924,0.4727819959327049,0.46635590554019946,0.45918156598675886,0.45134548382793854,0.4429364581741469,0.4340433930948531,0.42475337462770335,0.4151500600447739,0.40531240044391365,0.39531369486605306,0.3852209562109749,0.37509455661887586,0.36498811244149,0.35494856575381484,0.3450164196403691,0.33522608726071973,0.3256063190627735,0.3161806777053339,0.3069680840958987,0.2980762690376976,0.2895781334117922,0.28145098898929855,0.2736737047448161,0.26622658757488465,0.2590912725493286,0.2522506219879832,0.24568863268550875,0.2393903506432427,0.23334179270506059,0.22752987453442614,0.22194234440965507,0.2165677223534111,0.21139524414960595,0.2064148098370849,0.2016169363026013,0.19699271362714696,0.1925337648689881,0.1882322089935879,0.1840806266857708,0.18007202880226603,0.1761998272437886,0.17245780804519767,0.16884010649959655,0.16532197113549515,0.16187364515819608,0.15849597234045462,0.1551897137268511,0.15195531164167425,0.14879292484969114,0.14570246117092678,0.1426836075819003,0.13973585786872095,0.13685853792193145,0.13405082878086627,0.13131178754769013,0.12864036629866804,0.12603542912418855,0.123495767429768,0.12102011362867342,0.1186071533535809,0.11625553630979563,0.11396388588697576,0.11173080764003082,0.10955489674314713,0.10743474451394795,0.10536894409812858,0.10335609539786633,0.10139480932091298,0.0994837114208694,0.09762144499308174,0.09580667368506932,0.0940380836748903,0.09231438546599434,0.0906343153424759,0.08899663652439924,0.08740014005887267,0.08584364547911519,0.08432600126030403,0.08284608509810462,0.08140280403304442,0.07999509444134434,0.07862192191073245,0.07728228101758343,0.075975195019995,0.07469971547976186,0.0734549218246497,0.07223992086117416,0.07105384624677144,0.06989585792925236,0.06876514156043646,0.06766090789005787,0.06658239214518508,0.06552885339982585,0.06449957393869854,0.0634938586186326,0.06251103423062694,0.0615504488650768,0.06061147128242475,0.05969349029104899,0.05879591413396983,0.05791816988567725,0.05705970286016754,0.05621997603102824,0.05539846946432358,0.05459467976477946,0.053808119535702026,0.05303831685292276,0.05228481475293368,0.05154717073535623,0.05082495627973733,0.050117756376643716,0.04942516907296833,0.04874680503127757,0.04808228710305168,0.04743124991557804,0.0467933394722565,0.046168212766053346,0.04555553740582237,0.04495499125516987,0.044366262083587064,0.04378904722950206,0.043223053274939034,0.04266799573145923,0.042123598737035584,0.04158959476355972,0.04106572433463186,0.04055173575331697,0.040047384839545466,0.03955243467684834,0.03906665536809699,0.03858982379997216,0.03812172341583893,0.0376621439967493,0.037210881450292124,0.03676773760699274,0.03633252002402452,0.0359050417959467,0.035485121372224974,0.03507258238129348,0.03466725346090295,0.0342689680945476,0.03387756445373249,0.03349288524586924,0.03311477756759365,0.032743092763308355,0.03237768628874132,0.03201841757935441,0.031665149923406556,0.031317750339501446,0.030976089458458242,0.030640041409329535,0.030309483709429267,0.029984297158208183,0.029664365734837574,0.02934957649936088,0.029039819497285315,0.028734987667472442,0.02843497675322128,0.0281396852164121,0.027849014154601687,0.027562867220964127,0.027281150546959003,0.02700377266764246,0.02673064444951055,0.026461679020786676,0.02619679170406472,0.025935899951211473,0.025678923280459308,0.02542578321559834,0.025176403227194923,0.024930708675761443,0.024688626756810376,0.024450086447714122,0.024215018456317985,0.023983355171233463,0.023755030613754363,0.023529980391340237,0.023308141652601713,0.023089453043746624,0.022873854666424488,0.022661288036924312,0.022451696046678783,0.02224502292402095,0.022041214197161006,0.02184021665832998,0.02164197832905495,0.021446448426523563,0.02125357733100334,0.0210633165542715,0.020875618709030656,0.020690437479268128,0.02050772759152946,0.020327444787076748,0.020149545794894214,0.01997398830552222,0.019800730945683628,0.019629733253678967,0.01946095565552354,0.019294359441803556,0.019129906745221064,0.01896756051881342,0.018807284514817595,0.018649043264160687,0.018492802056557945,0.018338526921191218,0.01818618460795804,0.0180357425692656,0.017887168942354224,0.01774043253213515,0.01759550279451935,0.017452349820230216,0.017310944319078016,0.017171257604683448,0.017033261579636045,0.016896928721074452,0.01676223206667069,0.01662914520101235,0.0164976422423647,0.016367697829802793,0.01623928711070348,0.01611238572858061,0.01598696981126011,0.015863015959379098,0.01574050123520031,0.015619403151732773,0.015499699662149655,0.015381369149490814,0.015264390416646682,0.015148742676610552,0.015034405542992532,0.01492135902078931,0.014809583497396367,0.014699059733862443,0.014589768856373926,0.014481692347963836,0.014374812040440428,0.014269110106524116,0.014164569052192558,0.014061171709223785,0.013958901227932422,0.01385774107009366,0.01375767500205063,0.013658687087995799,0.013560761683427063,0.01346388342876875,0.013368037243155276,0.01327320831837279,0.01317938211295119,0.013086544346407334,0.012994680993630856,0.012903778279410583,0.01281382267309671,0.012724800883396621,0.012636699853296721,0.012549506755111793,0.012463208985654593,0.01237779416152369,0.012293250114507175,0.012209564887095717,0.01212672672810669,0.012044724088412595,0.011963545616772342,0.011883180155763428,0.01180361673780918,0.011724844581302874,0.01164685308682249,0.011569631833435613,0.011493170575090783,0.011417459237095112,0.011342487912672155,0.0112682468596021,0.011194726496939388,0.011121917401806236,0.01104981030626149,0.010978396094239524,0.01090766579856143,0.010837610598013843,0.010768221814494255,0.010699490910222311,0.010631409485012502,0.010563969273610472,0.010497162143088028,0.010430980090297531,0.010365415239382534,0.010300459839345098,0.010236106261665578,0.010172346997976884,0.01010917465778922,0.010046581966265145,0.009984561762044335,0.009923106995114303,0.009862210724729294,0.009801866117373688,0.009742066444769847 +0.03579924437593393,0.03572254158630032,0.03549449912482741,0.0351211727019998,0.03461220008922477,0.033980178766097845,0.033239902737715876,0.032407541297317176,0.03149983791252365,0.030533392317602978,0.029524068027471526,0.028486545665208897,0.027434023450101645,0.026378052058366682,0.02532848242928616,0.024293501397549398,0.0232797301299876,0.02229236291131118,0.02133532767429831,0.02041145390089764,0.019528658237311418,0.01870034899955963,0.01792281996867748,0.017185038958352734,0.016475995361133755,0.015795886255293882,0.015144642617933553,0.01452192205683228,0.013927168366330185,0.013359662095811195,0.012818562964089692,0.012302945028077179,0.011811825519729658,0.011344188226101492,0.010899002221366352,0.010475236680112451,0.01007187241684646,0.009687910713410578,0.009322379917458684,0.008974340223351626,0.008642886982581529,0.008327152834456578,0.008026308898872486,0.007739565231085713,0.007466170702822019,0.007205412444017959,0.00695661495436209,0.006719138972868729,0.006492380176341055,0.006275767763292966,0.006068762968110093,0.0058708575406210784,0.005681572218405672,0.005500455212803464,0.005327080724431678,0.005161047499904246,0.005001977438108078,0.0048495142517699765,0.004703322187958632,0.004563084809522625,0.004428503838207134,0.004299298059198609,0.004175202286116209,0.004055966384915787,0.0039413543547711675,0.003831143463729302,0.003725123436747215,0.0036230956936172004,0.0035248726342394154,0.0034302769687010585,0.003339141089647916,0.00325130648450216,0.0031666231851475335,0.0030849492527982004,0.0030061502958660517,0.0029300990187403012,0.00285667479950801,0.002785763294742886,0.002717256069600038,0.0026510502515572154,0.0025870482062438404,0.0025251572338932026,0.0024652892850516254,0.002407360694260595,0.002351291930515064,0.0022970073633807628,0.002244435043723953,0.002193506498083974,0.002144156535778455,0.0020963230678963762,0.0020499469373921886,0.0020049717595446463,0.0019613437721002418,0.0019190116944625413,0.0018779265953357803,0.0018380417682709402,0.0017993126146010337,0.001761696533285668,0.0017251528172215081,0.0016896425556019868,0.001655128541940217,0.0016215751873953853,0.0015889484390654827,0.0015572157029352383,0.0015263457711862745,0.0014963087535978814,0.0014670760127843637,0.001438620103032738,0.0014109147125185386,0.0013839346086948635,0.0013576555866609671,0.0013320544203306057,0.001307108816232323,0.0012827973697834322,0.001259099523892029,0.0012359955297484655,0.0012134664096779687,0.0011914939219343627,0.0011700605273210298,0.0011491493575349911,0.0011287441851340321,0.001108829395034616,0.0010893899574535492,0.0010704114022121417,0.0010518797943256004,0.001033781710806961,0.0010161042186173064,0.0009988348536993554,0.0009819616010351127,0.0009654728756710228,0.000949357504659112,0.0009336047098639364,0.0009182040915892066,0.0009031456129802787,0.0008884195851615826,0.0008740166530696666,0.0008599277819460967,0.0008461442444553288,0.0008326576083951955,0.0008194597249697684,0.0008065427175951088,0.0007938989712115077,0.0007815211220759819,0.0007694020480109828,0.0007575348590866009,0.0007459128887141536,0.0007345296851314025,0.0007233790032595822,0.0007124547969142311,0.0007017512113524375,0.0006912625761403959,0.000680983398325361,0.0006709083558979574,0.0006610322915305581,0.0006513502065787444,0.000641857255333589,0.0006325487395125102,0.0006234201029781523,0.0006144669266742197,0.0006056849237684185,0.0005970699349930527,0.0005886179241739014,0.0005803249739392419,0.0005721872816005402,0.0005642011551971873,0.0005563630096978835,0.0005486693633518183,0.0005411168341826834,0.000533702136619606,0.0005264220782587037,0.0005192735567496427,0.0005122535568018541,0.000505359147304939,0.0004985874785587478,0.0004919357796081156,0.00048540135567793746,0.00047898158570425887,0.0004726739199574635,0.0004664758777533949,0.00046038504524911387,0.00045439907331948115,0.0004485156755113278,0.0004427326260720781,0.0004370477580495522,0.0004314589614603241,0.000425964181523666,0.0004205614169584641,0.00041524871834058326,0.0004100241865183273,0.00040488597108346257,0.0003998322688958942,0.00039486132265965224,0.0003899714195482514,0.0003851608898775477,0.0003804281058240527,0.00037577148018719166,0.00037118946519363547,0.00036668055134212905,0.0003622432662873432,0.0003578761737610763,0.000353577872529632,0.00034934699538583154,0.0003451822081744176,0.00034108220884958637,0.00033704572656352675,0.00033307152078462836,0.00032915838044449906,0.0003253051231125668,0.00032151059419730237,0.0003177736661731595,0.00031409323783212096,0.0003104682335591901,0.00030689760263080034,0.00030338031853537414,0.0002999153783152845,0.00029650180192933464,0.00029313863163518586,0.0002898249313909225,0.00028655978627512057,0.0002833423019247574,0.00028017160399039753,0.00027704683760792153,0.00027396716688640667,0.00027093177441146575,0.0002679398607635636,0.00026499064405084694,0.00026208335945584826,0.00025921725879579866,0.0002563916100959244,0.0002536056971753724,0.00025085881924531234,0.00024815029051885836,0.0002454794398323039,0.00024284561027745414,0.00024024815884456379,0.00023768645607558697,0.0002351598857274223,0.00023266784444473857,0.00023020974144219442,0.00022778499819565507,0.00022539304814215002,0.0002230333363883232,0.00022070531942700242,0.00021840846486177124,0.00021614225113917993,0.0002139061672884043,0.00021169971266809905,0.00020952239672025492,0.00020737373873076315,0.00020525326759658014,0.00020316052159921732,0.0002010950481843778,0.00019905640374758314,0.0001970441534255259,0.00019505787089307852,0.00019309713816570938,0.0001911615454071718,0.00018925069074229677,0.00018736418007477004,0.00018550162690965903,0.00018366265218066098,0.00018184688408185004,0.00018005395790380847,0.0001782835158740539,0.00017653520700154467,0.00017480868692525361,0.00017310361776661198,0.00017141966798574101,0.00016975651224137453,0.00016811383125430777,0.0001664913116743554,0.00016488864595065294,0.0001633055322052282,0.00016174167410974862,0.00016019678076537234,0.00015867056658555514,0.0001571627511818145,0.0001556730592523013,0.00015420122047312497,0.00015274696939237626,0.00015131004532670312,0.00014989019226046324,0.0001484871587473091,0.00014710069781416867,0.00014573056686754927,0.00014437652760211834,0.0001430383459114455,0.000141715791800926,0.00014040863930276095,0.0001391166663929657,0.0001378396549103669,0.00013657739047747946,0.00013532966242328566,0.0001340962637078148,0.00013287699084848636,0.00013167164384819672,0.00013048002612504124,0.00012930194444370772,0.0001281372088484365,0.00012698563259753165,0.040141639439674984,0.0400562189783376,0.039802255663426094,0.03938648552381264,0.03881962844315976,0.03811569520495258,0.0372911380229871,0.03636393685600674,0.03535270858073531,0.03427590917113003,0.033151175708990475,0.03199483071499718,0.030821550101527307,0.029644180366453488,0.02847368110074963,0.027319164841720766,0.026188006465603365,0.02508599720292071,0.02401752265944738,0.022985748932574393,0.02200139269800625,0.0210777534436089,0.020210245016263388,0.019390215393643197,0.018602094964147314,0.017845190145441548,0.01711955905803495,0.016424943139881146,0.015760833566757903,0.015126527998703903,0.014521178465407117,0.013943831314029079,0.013393460171673054,0.012868992849293052,0.012369333054720075,0.011893377704910115,0.011440030541891938,0.011008212670315253,0.010596870551407808,0.01020498191127513,0.009831559951985359,0.009475656192395088,0.009136362211993218,0.008812810524718473,0.008504174770203895,0.008209669376357524,0.007928548819015047,0.007660106580809992,0.007403673891755174,0.007158618317795784,0.006924342250146896,0.00670028133722199,0.006485902891930242,0.0062807042997735365,0.0060842114471852055,0.005895977184748353,0.005715579836022053,0.005542621759602394,0.0053767279695674805,0.005217544817483535,0.005064738737628765,0.004917995055878358,0.0047770168617860915,0.004641523942702732,0.004511251778250253,0.004385950593113774,0.004265384465845748,0.004149330491218516,0.004037577993567271,0.003929927788529628,0.00382619149058643,0.00372619086385821,0.003629757213661878,0.0035367308164189694,0.0034469603855979323,0.0033603025714686453,0.0032766214925610323,0.003195788296818665,0.003117680750550564,0.0030421828533903684,0.0029691844775767426,0.0028985810299666805,0.0028302731352975825,0.0027641663393002183,0.002700170830357976,0.002638201178491503,0.002578176090524921,0.00252001818037083,0.0024636537534364045,0.002409012604222712,0.0023560278262524546,0.002304635633515747,0.002254775192684784,0.002206388465393129,0.002159420059926777,0.002113817091717303,0.002069529052069999,0.002026507684595735,0.0019847068688558867,0.0019440825107586459,0.001904592439278735,0.0018661963091014151,0.0018288555088165038,0.0017925330743170387,0.0017571936070767385,0.0017228031970043026,0.001689329349592017,0.0016567409170956523,0.001625008033498026,0.0015941020530282968,0.0015639954920206793,0.0015346619739123578,0.0015060761771933085,0.001478213786131329,0.0014510514441096847,0.0014245667094225894,0.0013987380133851813,0.0013735446206236401,0.001348966591418336,0.001324984745983318,0.0013015806305703708,0.0012787364852941973,0.0012564352135813214,0.0012346603531517444,0.001213396048446751,0.0011926270244235551,0.0011723385616404585,0.001152516472561733,0.0011331470790159005,0.0011142171907438366,0.0010957140849788818,0.0010776254870027012,0.0010599395516250158,0.0010426448455380303,0.0010257303304995948,0.0010091853473008434,0.0009929996004782607,0.0009771631437307355,0.0009616663660054684,0.0009464999782185151,0.0009316550005769254,0.0009171227504726918,0.0009028948309190659,0.000888963119502066,0.0008753197578217222,0.000861957141398055,0.0008488679100196135,0.0008360449385122141,0.0008234813279075465,0.0008111703969921657,0.0007991056742185955,0.0007872808899606721,0.0007756899690972901,0.000764327023908407,0.0007531863472687057,0.0007422624061250343,0.000731549835243842,0.0007210434312166858,0.0007107381467113151,0.0007006290849572332,0.0006907114944550587,0.0006809807638990634,0.0006714324173037788,0.0006620621093250256,0.0006528656207667611,0.0006438388542654489,0.0006349778301441315,0.0006262786824283624,0.0006177376550173579,0.000609351098003177,0.0006011154641316208,0.0005930273053988074,0.0005850832697772186,0.0005772800980661223,0.0005696146208606944,0.0005620837556349525,0.0005546845039336218,0.0005474139486684729,0.0005402692515144481,0.0005332476504018208,0.0005263464571000986,0.0005195630548899726,0.0005128948963197968,0.0005063395010428533,0.000499894453732489,0.0004935574020716797,0.0004873260548141429,0.0004811981799140805,0.00047517160272191663,0.0004692442042431475,0.00046341391945814816,0.0004576787357002659,0.00045203669109002414,0.000446485873023293,0.0004410244167111228,0.00043565050376952674,0.00043036236085707875,0.00042515825835855365,0.0004200365091129323,0.0004149954671838655,0.0004100335266712857,0.00040514912056238423,0.0004003407196205867,0.0003956068313110528,0.0003909459987614521,0.00038635679975648985,0.00038183784576520895,0.0003773877809996715,0.0003730052815039403,0.0003686890542723067,0.00036443783639554414,0.00036025039423439865,0.00035612552261916766,0.0003520620440744908,0.0003480588080685172,0.00034411469028540703,0.0003402285919205748,0.0003363994389977015,0.00033262618170682405,0.00032890779376274534,0.0003252432717831217,0.00032163163468538477,0.0003180719231020697,0.0003145631988137442,0.0003111045441990157,0.0003076950617010522,0.000304333873309937,0.000301020120060505,0.000297752961544993,0.00029453157544008106,0.00029135515704779743,0.0002882229188499147,0.000285134090075233,0.00028208791627950587,0.00027908365893747675,0.0002761205950466506,0.0002731980167424809,0.00027031523092446654,0.00026747155889297105,0.0002646663359962983,0.0002618989112877373,0.00025916864719229286,0.0002564749191826821,0.00025381711546445406,0.0002511946366698263,0.00024860689556001884,0.00024605331673579464,0.0002435333363559976,0.0002410464018637339,0.00023859197172009886,0.00023616951514510726,0.00023377851186565197,0.00023141845187029034,0.00022908883517057494,0.00022678917156883157,0.00022451898043211654,0.0002222777904721944,0.00022006513953133614,0.0002178805743738151,0.00021572365048282623,0.0002135939318627922,0.00021149099084680605,0.00020941440790909105,0.0002073637714823595,0.00020533867777982467,0.00020333873062187266,0.00020136354126714631,0.0001994127282479537,0.00019748591720990453,0.00019558274075556575,0.00019370283829212888,0.0001918458558828967,0.000190011446102515,0.0001881992678958195,0.00018640898644024125,0.00018464027301158574,0.0001828928048531904,0.0001811662650482975,0.00017946034239556542,0.00017777473128767214,0.00017610913159283188,0.00017446324853926114,0.00017283679260242176,0.00017122947939500883,0.00016964102955958934,0.00016807116866384623,0.00016651962709830014,0.00016498613997651234,0.00016347044703765405,0.0001619722925513874,0.00016049142522502389,0.00015902759811282991,0.00015758056852751366,0.00015615009795376722,0.00015473595196382735,0.00015333790013503262,0.00015195571596924928,0.00015058917681421138,0.0001492380637866511,0.0001479021616972088,0.04500537669881223,0.04491021067964621,0.0446272718054109,0.044164061097449664,0.04353251471139735,0.04274823096088258,0.041829523191082164,0.040796401666775256,0.03966958165875121,0.03846959585808974,0.03721606309732602,0.035927138150111,0.03461914376337915,0.033306368657419004,0.03200100468186222,0.0307131919082994,0.029451140700526346,0.02822130307746434,0.027028570502271334,0.025876480481275114,0.02477883023767314,0.02374859252693359,0.02278045592416988,0.02186813024177699,0.02099329826744286,0.020151986065682876,0.01934441859296442,0.0185704542597964,0.017829658840656088,0.01712136904013393,0.01644474648003621,0.01579882302710587,0.01518253843991632,0.014594771307099762,0.014034364200729803,0.013500143895838961,0.012990937422017632,0.012505584624293903,0.012042947823518628,0.011601919084820625,0.01118142552799216,0.010780433046957898,0.010397948746771326,0.010033022355582765,0.009684746825251443,0.009352258296915616,0.009034735576285832,0.008731399236887047,0.008441510447269594,0.008164369599777116,0.00789931480312975,0.007645720288478483,0.007402994768201213,0.007170579778221054,0.006947948027677978,0.006734601774178272,0.006530071238258475,0.006333913067044675,0.006145708854141248,0.005965063720425278,0.00579160495858714,0.005624980742777982,0.005464858903604502,0.005310925767838701,0.005162885061546019,0.0050204568748621,0.004883376686286162,0.0047513944441272635,0.004624273702583075,0.0045017908098510225,0.004383734145630137,0.004269903405396239,0.004160108928860434,0.004054171070092232,0.003951919606869877,0.0038531931869072327,0.0037578388087179068,0.003665711334972761,0.0035766730363204035,0.0034905931637468175,0.0034073475476585763,0.003326818221973582,0.0032488930716138517,0.003173465501883362,0.00310043412831303,0.003029702485644192,0.0029611787547021433,0.002894775505999643,0.0028304094589783647,0.002768001255872561,0.002707475249245751,0.00264875930231133,0.0025917846012128796,0.002536485478489679,0.0024827992470080234,0.0024306660436862484,0.0023800286823875147,0.002330832515393674,0.0022830253029178494,0.0022365570901450023,0.002191380091326493,0.0021474485804868436,0.002104718788327534,0.0020631488049447917,0.002022698487999611,0.001983329376004836,0.0019450046064151492,0.001907688838227589,0.0018713481788171895,0.001835950114753856,0.0018014634463599207,0.0017678582257848825,0.001735105698389029,0.0017031782472384795,0.0016720493405305984,0.0016416934817768609,0.0016120861625830748,0.0015832038178771209,0.0015550237834419589,0.0015275242556235767,0.0015006842530888174,0.0014744835805175264,0.0014489027941198603,0.0014239231688770386,0.0013995266674084923,0.0013756959103767036,0.0013524141483440642,0.0013296652350025377,0.0013074336017017195,0.0012857042332040085,0.0012644626446020797,0.001243694859335432,0.001223387388247953,0.0012035272096311417,0.0011841017502014753,0.0011650988669621863,0.0011465068299044456,0.001128314305503639,0.0011105103409701845,0.0010930843492163022,0.001076026094501704,0.001059325678724624,0.0010429735283251282,0.0010269603817700675,0.0010112772775910965,0.0009959155429475274,0.0009808667826891476,0.0009661228688937353,0.0009516759308564691,0.0009375183455091599,0.0009236427282488655,0.0009100419241556044,0.0008967089995814137,0.0008836372340925384,0.0008708201127482198,0.0008582513187005424,0.0008459247260996924,0.000833834393291241,0.0008219745562913387,0.0008103396225272677,0.0007989241648313375,0.0007877229156761364,0.0007767307616408014,0.0007659427380974823,0.0007553540241082466,0.0007449599375230588,0.0007347559302699907,0.0007247375838288467,0.0007149006048806344,0.0007052408211248037,0.0006957541772571146,0.0006864367311012813,0.0006772846498873962,0.0006682942066713688,0.0006594617768889578,0.0006507838350388753,0.0006422569514894248,0.000633877789403653,0.0006256431017776937,0.000617549728588074,0.0006095945940430984,0.0006017747039341727,0.0005940871430830372,0.000586529072880705,0.0005790977289147882,0.0005717904186813211,0.0005646045193778124,0.0005575374757742311,0.0005505867981589295,0.0005437500603562403,0.0005370248978133135,0.0005304090057531679,0.0005239001373914597,0.0005174961022146032,0.000511194764316552,0.0005049940407923714,0.0004988919001861312,0.0004928863609911321,0.0004869754902005643,0.0004811574019064262,0.0004754302559452191,0.0004697922565884083,0.0004642416512760779,0.0004587767293921315,0.00045339582107959986,0.00044809729609433953,0.00044287956269600874,0.00043774106657474323,0.0004326802898122949,0.0004276957498764557,0.00042278599864735764,0.0004179496214747698,0.0004131852362650882,0.00040849149259701583,0.00040386707086498584,0.000399310681449145,0.0003948210639112276,0.0003903969862152119,0.00038603724397197635,0.00038174065970708864,0.00037750608215099337,0.0003733323855506729,0.00036921846900224144,0.00036516325580361007,0.000361165692826585,0.00035722474990779315,0.0003533394192576339,0.00034950871488687577,0.0003457316720501294,0.00034200734670571337,0.0003383348149913327,0.00033471317271511336,0.00033114153486133585,0.0003276190351105813,0.0003241448253736638,0.0003207180753389674,0.00031733797203277117,0.0003140037193920269,0.00031071453784935546,0.0003074696639297459,0.0003042683498586101,0.00030110986318089496,0.0002979934863907552,0.0002949185165716295,0.0002918842650462725,0.00028889005703645686,0.0002859352313320576,0.00028301913996925675,0.00028014114791745137,0.00027730063277479477,0.0002744969844719409,0.00027172960498381414,0.00026899790804917067,0.0002663013188976274,0.0002636392739840526,0.00026101122073000574,0.00025841661727204844,0.000255854932216707,0.00025332564440192943,0.00025082824266474033,0.00024836222561504647,0.0002459271014153051,0.0002435223875659225,0.00024114761069624025,0.00023880230636085114,0.0002364860188412172,0.00023419830095234166,0.00023193871385437692,0.00022970682686905512,0.00022750221730071866,0.00022532447026192952,0.0002231731785034445,0.0002210479422484614,0.00021894836903100755,0.0002168740735383869,0.00021482467745748252,0.00021279980932492395,0.00021079910438092284,0.00020882220442670275,0.00020686875768545482,0.0002049384186666337,0.00020303084803361207,0.0002011457124745241,0.00019928268457623167,0.00019744144270133294,0.00019562167086814735,0.0001938230586335227,0.00019204530097849867,0.0001902880981966589,0.00018855115578513725,0.00018683418433821823,0.00018513689944340858,0.00018345902157998839,0.00018180027601991737,0.00018016039273105938,0.00017853910628267387,0.0001769361557530629,0.00017535128463939086,0.00017378424076956833,0.0001722347762161596,0.050453561920151116,0.050347484494363784,0.050032106045371984,0.04951579059697373,0.048811845695409736,0.047937658301733306,0.04691363663833526,0.04576207362438838,0.04450604063301072,0.04316839875453107,0.041770985320361796,0.04033400293358894,0.03887561186605989,0.03741170730816814,0.035955851306418256,0.03451932443768854,0.03311126267451097,0.031738848631560596,0.03040753180652971,0.02912126586223202,0.02789862074072156,0.026750519069552864,0.025671021510401015,0.024654742539878517,0.023684958110508164,0.02275096802478833,0.02185321491337866,0.020991717196735375,0.02016615115313259,0.019375922015699976,0.018620224777283007,0.01789809559242073,0.01720845476373818,0.016550142319692866,0.01592194715819788,0.015322630666355884,0.014750945644678656,0.014205651274964582,0.013685524781233582,0.013189370347187422,0.012716025773980942,0.012264367290122884,0.011833312861394576,0.011421824292710199,0.011028908365475517,0.010653617212465024,0.010295048096956373,0.009952342733039476,0.009624686258927616,0.009311305954182603,0.00901146977428451,0.008724484761541178,0.008449695379383544,0.008186481807275338,0.007934258225392963,0.0076924711116848725,0.007460597568534604,0.007238143691934572,0.007024642992575007,0.006819654875432613,0.0066227631822256775,0.006433574799303978,0.0062517183321569554,0.006076842846640342,0.005908616676171879,0.005746726293537097,0.005590875245458271,0.005440783147757505,0.005296184738709114,0.005156828988034654,0.005022478258904891,0.004892907520298144,0.004767903607062117,0.004647264525075496,0.004530798798969387,0.004418324859943736,0.0043096704713173764,0.004204672189539201,0.004103174858500779,0.0040050311350943125,0.0039101010440708815,0.0038182515603536345,0.0037293562170757693,0.003643294737703787,0.0035599526907108977,0.003479221165357859,0.003400996467224556,0.0033251798322284113,0.003251677157938173,0.00318039875107346,0.003111259090151169,0.0030441766023046844,0.0029790734533719013,0.002915875350401123,0.002854511355784075,0.0027949137122759535,0.0027370176782133405,0.0026807613722825254,0.002626085627239915,0.0025729338520200395,0.0025212519017075207,0.0024709879548837424,0.002422092397888656,0.0023745177155735575,0.0023282183881434397,0.002283150793716987,0.0022392731162557892,0.0021965452585376998,0.002154928759868211,0.0021143867182478217,0.002074883716727275,0.002036385753702313,0.001998860176915578,0.0019622756209458337,0.001926601947982656,0.0018918101916935665,0.0018578725040052006,0.0018247621046310585,0.0017924532331870479,0.001760921103749293,0.0017301418617143337,0.0017000925428325344,0.0016707510342926963,0.0016420960377439688,0.0016141070341465142,0.0015867642503515865,0.0015600486273150789,0.0015339417898558045,0.0015084260178751421,0.0014834842189580815,0.0014590999022830644,0.001435257153769695,0.0014119406123991303,0.001389135447645086,0.0013668273379576306,0.0013450024502438523,0.0013236474202949426,0.001302749334109919,0.001282295710070278,0.0012622744819224506,0.0012426739825261524,0.0012234829283311627,0.0012046904045450444,0.0011862858509576217,0.0011682590483898352,0.0011506001057354086,0.001133299447567097,0.0011163478022793265,0.0010997361907413247,0.0010834559154360214,0.0010674985500616406,0.0010518559295731203,0.001036520140643407,0.0010214835125240003,0.0010067386082862249,0.0009922782164256093,0.0009780953428117876,0.0009641832029687837,0.0009505352146697997,0.0009371449908323158,0.0009240063326997857,0.0009111132232970469,0.0008984598211466044,0.0008860404542347553,0.0008738496142158665,0.000861881950844386,0.0008501322666246493,0.0008385955116684415,0.0008272667787518372,0.0008161412985621468,0.0008052144351268916,0.0007944816814171072,0.0007839386551170133,0.0007735810945535779,0.0007634048547786826,0.0007534059037976479,0.0007435803189378772,0.0007339242833519229,0.0007244340826489383,0.0007151061016497668,0.000705936821260114,0.0006969228154571172,0.0006880607483847767,0.0006793473715534542,0.0006707795211397055,0.0006623541153820384,0.000654068152068873,0.0006459187061151106,0.0006379029272234814,0.0006300180376277237,0.0006222613299140786,0.0006146301649181146,0.0006071219696939426,0.0005997342355530996,0.000592464516170099,0.0005853104257525267,0.0005782696372728329,0.0005713398807596381,0.0005645189416463452,0.000557804659174609,0.0005511949248509837,0.0005446876809544733,0.0005382809190931831,0.0005319726788082225,0.0005257610462232217,0.0005196441527374892,0.0005136201737616047,0.0005076873274935901,0.0005018438737342979,0.0004960881127406749,0.000490418384115275,0.0004848330657310647,0.00047933057269000635,0.00047390935631428684,0.0004685679031691424,0.00046330473411589714,0.0004581184033944791,0.0004530074977341505,0.00044797063549156357,0.0004430064658151475,0.0004381136678350145,0.00043329094987730135,0.0004285370487023666,0.00042385072876583536,0.0004192307815017858,0.0004146760246273797,0.0004101853014680294,0.000405757480302661,0.00040139145372822136,0.0003970861380428364,0.00039284047264701944,0.0003886534194623575,0.0003845239623669546,0.000380451106647303,0.00037643387846587656,0.000372471324343982,0.00036856251065944584,0.0003647065231584671,0.00036090246648142935,0.00035714946370203095,0.00035344665587938893,0.00034979320162273017,0.0003461882766681373,0.00034263107346715953,0.0003391208007867727,0.00033565668332038437,0.00033223796130952123,0.00032886389017592905,0.0003255337401636181,0.000322246795990725,0.0003190023565107684,0.00031579973438304094,0.00031263825575190203,0.0003095172599345846,0.00030643609911741387,0.0003033941380600659,0.0003003907538076673,0.0002974253354104917,0.0002944972836510726,0.000291606010778378,0.0002887509402490275,0.0002859315064751872,0.0002831471545790124,0.00028039734015347406,0.00027768152902926766,0.000274999197047782,0.00027234982983982903,0.0002697329226100273,0.0002671479799266789,0.0002645945155169114,0.0002620720520670448,0.0002595801210279466,0.00025711826242526937,0.0002546860246744178,0.0002522829644001558,0.0002499086462606148,0.00024756264277572143,0.0002452445341598205,0.00024295390815839762,0.0002406903598888403,0.00023845349168500645,0.00023624291294564327,0.00023405823998644477,0.00023189909589567127,0.00022976511039328785,0.0002276559196934136,0.00022557116637011878,0.00022351049922639339,0.0002214735731662316,0.00021946004906973752,0.00021746959367121364,0.00021550187944005197,0.00021355658446448148,0.00021163339233799808,0.00020973199204844722,0.0002078520778697061,0.00020599334925582374,0.0002041555107376482,0.00020233827182181976,0.00020054134689207446,0.0565573354006299,0.056439019073222005,0.05608725766169111,0.055511392400939094,0.05472628276100727,0.053751337991662415,0.05260933209076438,0.05132513223612177,0.04992446268443577,0.048432801642075286,0.046874475350766644,0.04527197930182257,0.0436455269347297,0.042012804594869016,0.04038889865732548,0.038786355554853394,0.03721533606299922,0.03568382949099745,0.03419789956025558,0.03276236698550723,0.03140154000045111,0.030122923128999567,0.02892001994499633,0.027786964354111616,0.026712415559386714,0.0256770038006231,0.024680283459855724,0.02372248660210873,0.022803445476114896,0.021922671859231753,0.02107942543147715,0.020272772001413118,0.019501632554724917,0.01876482415074973,0.018061093682475528,0.01738914546474472,0.016747663540328413,0.016135329506379005,0.01555083657275643,0.014992900474558165,0.014460267776991798,0.013951722033673557,0.01346608819025347,0.013002235564104783,0.01255907967758884,0.012135583176316512,0.011730756024492412,0.011343655135933342,0.010973383571053064,0.010619089406378221,0.010279964363233555,0.009955242265701582,0.009644197384202819,0.009346142709695733,0.009060428194107338,0.008786438984957337,0.008523593675815186,0.008271342589129335,0.008029166103800287,0.0077965730364999,0.007573099083059828,0.007358305324064859,0.007151776797087421,0.006953121136648129,0.0067619672819178925,0.006577964251392017,0.0064007799831246725,0.006230100238672482,0.006065627568561424,0.0059070803368687945,0.005754191802358082,0.0056067092535411174,0.005464393194995493,0.005327016582285548,0.005194364102873283,0.005066231500461444,0.004942424940302986,0.00482276041308854,0.0047070631751302645,0.004595167222661653,0.004486914798180032,0.004382155926859766,0.004280747981180852,0.004182555272008595,0.004087448664469564,0.0039953052170647275,0.003906007842548774,0.0038194449892048525,0.00373551034121836,0.003654102536940875,0.0035751249039110552,0.0034984852095676314,0.0034240954266653236,0.003351871512461333,0.003281733200804642,0.0032136038063153754,0.0031474100398962593,0.0030830818348634185,0.003020552183037499,0.002959756980172201,0.0029006348801423492,0.0028431271573509634,0.0027871775768472285,0.0027327322716857658,0.0026797396270829723,0.0026281501709581427,0.0025779164704729032,0.002528993034208504,0.0024813362196407594,0.00243490414559959,0.002389656609414848,0.00234555500847246,0.0023025622659220983,0.0022606427602916953,0.002219762258783903,0.0021798878540395354,0.0021409879041688145,0.0021030319758637618,0.002065990790414621,0.0020298361724675326,0.0019945410013676307,0.0019600791649428506,0.0019264255155923044,0.001893555828551798,0.0018614467622149646,0.0018300758203990237,0.0017994213164476138,0.0017694623390714706,0.0017401787198334162,0.00171155100218816,0.00168356041199558,0.0016561888294278036,0.0016294187621971126,0.0016032333200350064,0.0015776161903575411,0.0015525516150541338,0.0015280243683432721,0.0015040197356391422,0.001480523493377897,0.0014575218897550169,0.001435001626326825,0.0014129498404338117,0.0013913540884038331,0.0013702023294966336,0.0013494829105532534,0.0013291845513148306,0.001309296330379089,0.0012898076717626588,0.0012707083320401514,0.0012519883880321553,0.0012336382250160954,0.0012156485254342746,0.0011980102580765426,0.00118071466771442,0.001163753265165762,0.0011471178177700483,0.0011308003402546055,0.0011147930859745259,0.001099088538508495,0.0010836794035944764,0.001068558601389728,0.0010537192590407095,0.0010391547035482859,0.0010248584549158745,0.001010824219567241,0.0009970458840222215,0.0009835175088191996,0.0009702333226728796,0.0009571877168578864,0.0009443752398077629,0.0009317905919202772,0.0009194286205602975,0.0009072843152512872,0.0008953528030480178,0.0008836293440823801,0.0008721093272750846,0.0008607882662063249,0.000849661795138877,0.0008387256651868539,0.0008279757406246863,0.0008174079953301306,0.0008070185093558953,0.000796803465624854,0.0007867591467433409,0.0007768819319283463,0.0007671682940436048,0.0007576147967403396,0.0007482180916986641,0.0007389749159651885,0.0007298820893836148,0.0007209365121142436,0.0007121351622390584,0.0007034750934490463,0.0006949534328106552,0.0006865673786080208,0.0006783141982584966,0.0006701912262983469,0.0006621958624360313,0.0006543255696706522,0.0006465778724727448,0.0006389503550255334,0.0006314406595240366,0.0006240464845300301,0.0006167655833807228,0.000609595762649299,0.0006025348806551152,0.000595580846022137,0.0005887316162835489,0.0005819851965309835,0.0005753396381068175,0.000568793037337732,0.0005623435343084285,0.0005559893116737634,0.0005497285935080679,0.0005435596441903929,0.0005374807673241708,0.0005314903046904152,0.000525586635233056,0.0005197681740753634,0.0005140333715663711,0.0005083807123563448,0.000502808714500085,0.0004973159285873877,0.000491900936899538,0.0004865623525910128,0.00048129881889562136,0.0004761090083560169,0.00047099162207614047,0.00046594538899555023,0.0004609690651850347,0.0004560614331627657,0.0004512213012303918,0.00044644750282821336,0.00044173889590909334,0.0004370943623302703,0.000432512807262586,0.0004279931586166046,0.0004235343664848979,0.0004191354026002282,0.00041479525980894197,0.00041051295155911777,0.00040628751140311145,0.00040211799251381935,0.00039800346721448077,0.00039394302652143035,0.00038993577969943745,0.000385980853829244,0.0003820773933869707,0.00037822455983487255,0.0003744215312232966,0.00037066750180335167,0.00036696168165000756,0.00036330329629535407,0.00035969158637156814,0.0003561258072634873,0.0003526052287703514,0.0003491291347765119,0.0003456968229307883,0.00034230760433430723,0.0003389608032364028,0.00033565575673854484,0.0003323918145059036,0.0003291683384863881,0.00032598470263697196,0.0003228402926569582,0.00031973450572818005,0.0003166667502617681,0.0003136364456513749,0.00031064302203268914,0.0003076859200489377,0.0003047645906223826,0.0003018784947314977,0.0002990271031937349,0.0002962098964536854,0.00029342636437654625,0.00029067600604661814,0.0002879583295708472,0.0002852728518871652,0.00028261909857751465,0.0002799966036854865,0.000277404909538315,0.00027484356657326333,0.0002723121331681776,0.00026981017547611367,0.0002673372672639776,0.0002648929897549546,0.0002624769314747709,0.00026008868810157524,0.0002577278623193855,0.0002553940636749921,0.00025308690843826544,0.00025080601946567496,0.00024855102606707137,0.0002463215638755405,0.00024411727472028663,0.00024193780650248948,0.0002397828130739729,0.00023765195411872624,0.00023554489503711898,0.00023346130683276763,0.05038425610178945,0.050314699359302245,0.050107250396335484,0.049765517811843296,0.049295336668259755,0.048704515433866925,0.04800251119251678,0.047200057913987147,0.04630877396547251,0.04534077364733882,0.044308303918173614,0.04322342243074784,0.042097727377889776,0.04094214419109098,0.039766769395765116,0.03858076822601183,0.037392320046716145,0.036208604163471,0.03503581805637446,0.033879220236713005,0.03274319057385864,0.0316313018736811,0.030546397548552165,0.029490671283129655,0.0284665563340085,0.027488794179944282,0.02655985945075538,0.025676553686620078,0.024835936539565843,0.02403462274557814,0.023260301571415263,0.02250948696787789,0.021782387611601086,0.02107903109057433,0.020399292553275564,0.01974292028664396,0.019109558353580993,0.018498766468970806,0.017910037322189487,0.017342811568411234,0.01679649071431923,0.016270448119379773,0.015764038323997958,0.015276604902561448,0.01480748702416307,0.014356024887574394,0.013921564180800788,0.013503459699690945,0.01310107824500236,0.012713800903318974,0.012341024804273022,0.011982164434820754,0.011636652580762822,0.011303940956281292,0.010983500573895631,0.010674821899901517,0.010377414833859783,0.010090808545075372,0.009814551194087305,0.009548209562917746,0.00929136861416754,0.00904363099584039,0.008804616506069347,0.008573961529567896,0.008351318455619927,0.00813635508573076,0.007928754037586378,0.007728212150743838,0.007534439898426325,0.007347160808912886,0.007166110899259062,0.006991038123477081,0.006821701836759895,0.006657872276909451,0.006499330063764619,0.006345865717116651,0.006197279193368097,0.00605337944097634,0.00591398397456791,0.00577891846747726,0.005648016362362776,0.005521118499465006,0.005398072762024398,0.005278733738317047,0.005162962399742092,0.005050625794374327,0.004941596755375826,0.004835753623667598,0.004732979984252564,0.0046331644155925885,0.0045362002514539425,0.00444198535464066,0.004350421902062012,0.004261416180586563,0.004174878393159801,0.004090722474678966,0.004008865917140043,0.003929229603587456,0.00385173765042412,0.0037763172576518633,0.0037028985666357752,0.003631414525005456,0.003561800758319783,0.0034939954481483276,0.0034279392162311247,0.0033635750144012425,0.0033008480199680636,0.003239705536276463,0.003180096898168497,0.0031219733820938523,0.0030652881206236398,0.003009996021137644,0.0029560536884677825,0.0029034193512890087,0.0028520527920653464,0.002801915280363853,0.002752969509362373,0.002705179535386314,0.0026585107203159226,0.002612929676718651,0.0025684042155645426,0.002524903296393233,0.002482396979806593,0.0024408563821696344,0.0024002536324055517,0.002360561830781305,0.0023217550095815634,0.0022838080955767306,0.002246696874195704,0.0022103979553167105,0.002174888740597898,0.002140147392269877,0.0021061528033187457,0.0020728845689910293,0.0020403229595564775,0.0020084488942660266,0.001977243916448647,0.0019466901696908706,0.0019167703750471393,0.0018874678092320875,0.0018587662837466715,0.0018306501248953459,0.0018031041546509269,0.0017761136723276618,0.0017496644370248986,0.0017237426508042752,0.001698334942567842,0.00167342835260349,0.0016490103177674408,0.0016250686572743661,0.0016015915590678542,0.0015785675667437573,0.0015559855670027483,0.0015338347776072767,0.0015121047358205707,0.0014907852873064522,0.0014698665754686335,0.0014493390312111717,0.0014291933631006392,0.00140942054791278,0.0013900118215466825,0.0013709586702908873,0.0013522528224253086,0.0013338862401456374,0.0013158511117955579,0.0012981398443939198,0.0012807450564445307,0.001263659571015931,0.0012468764090806965,0.0012303887831026808,0.0012141900908620947,0.0011982739095087241,0.0011826339898332065,0.0011672642507482556,0.0011521587739705427,0.0011373117988953496,0.001122717717655993,0.0011083710703608664,0.0010942665405002873,0.0010803989505171314,0.0010667632575341467,0.001053354549231884,0.0010401680398714774,0.0010271990664560005,0.0010144430850256992,0.0010018956670813245,0.0009895524961307267,0.000977409364354159,0.0009654621693831512,0.0009537069111892931,0.0009421396890782056,0.0009307566987848822,0.0009195542296665377,0.0009085286619893975,0.0008976764643054817,0.0008869941909166109,0.000876478479421921,0.000866126048345937,0.0008559336948443799,0.0008458982924843889,0.0008360167890970294,0.0008262862046990021,0.0008167036294812002,0.0008072662218616694,0.0007979712066007459,0.0007888158729758229,0.0007797975730140615,0.0007709137197806398,0.0007621617857206592,0.0007535393010529903,0.0007450438522137854,0.0007366730803484767,0.000728424679850152,0.0007202963969428445,0.0007122860283082751,0.0007043914197542236,0.0006966104649235339,0.0006889411040420414,0.0006813813227042123,0.000673929150695175,0.0006665826608480504,0.0006593399679350677,0.0006521992275917368,0.0006451586352726836,0.0006382164252381811,0.0006313708695704596,0.0006246202772185225,0.0006179629930709058,0.0006113973970551896,0.0006049219032634884,0.00059853495910305,0.0005922350444712425,0.000586020670953894,0.0005798903810465531,0.0005738427473977213,0.000567876372073386,0.000561989885842304,0.0005561819474811131,0.0005504512430989598,0.0005447964854808113,0.0005392164134489279,0.0005337097912420032,0.0005282754079112115,0.000522912076732918,0.0005176186346373293,0.0005123939416526689,0.000507236880364387,0.0005021463553890089,0.00049712129286199,0.0004921606399394145,0.0004872633643129039,0.0004824284537374404,0.0004776549155717387,0.0004729417763306254,0.00046828808124932007,0.0004636928938590567,0.00045915529557381124,0.00045467438528776384,0.0004502492789832534,0.0004458791093487482,0.00044156302540677007,0.00043730019215130106,0.0004330897901944694,0.0004289310154222904,0.00042482307865903665,0.00042076520534021713,0.00041675663519374494,0.00041279662192912246,0.000408884432934467,0.00040501934898099184,0.0004012006639349446,0.0003974276844766451,0.00039369972982646626,0.0003900161314775691,0.00038637623293523465,0.0003827793894624907,0.0003792249678320299,0.0003757123460841185,0.00037224091329036236,0.0003688100693232378,0.00036541922463106816,0.00036206780001849247,0.0003587552264321462,0.00035548094475144746,0.0003522444055843969,0.0003490450690681297,0.0003458824046742701,0.00034275589101880917,0.00033966501567647114,0.0003366092749993969,0.000333588173940108,0.00033060122587849346,0.00032764795245289507,0.00032472788339504675,0.00032184055636882557,0.00031898551681272693,0.0003161623177858792,0.00031337051981764573,0.00031060969076060447,0.0003078794056468764,0.05668876879614748,0.056610807142339965,0.05637829398062103,0.055995282416665494,0.05546832533345346,0.054806189941394315,0.054019491611300416,0.053120275087196724,0.05212157270478916,0.05103696760503976,0.04988018578293699,0.04866473506128444,0.047403602694633,0.046109017135651784,0.04479227415609919,0.043463623363782226,0.04213220831019529,0.040806051767870014,0.03949207717950064,0.038196157495857135,0.03692318337344534,0.035677143770615996,0.034461213181514246,0.03327784094781163,0.03213086597519468,0.03103750781014248,0.029998321798650484,0.02900978401742041,0.02806865310725707,0.02717194346382599,0.026311307440975765,0.025475955346684825,0.024666034173685368,0.02388168648421885,0.023122876459148817,0.022389418494706853,0.02168100266810092,0.02099721722994819,0.020337568321632808,0.01970149713845961,0.019088394769046797,0.01849761494131597,0.01792848489855173,0.01738031461745341,0.016852404565783533,0.01634405218124181,0.015854557236693774,0.01538322624046989,0.014929376004560863,0.014492336498619642,0.014071453093732963,0.013666088287205643,0.013275622988040043,0.012899457432419237,0.012537011789213244,0.012187726507352194,0.011851062449629102,0.01152650085116165,0.011213543135180259,0.010911710613957777,0.010620544098522583,0.010339603437133197,0.010068466999370982,0.009806731120006993,0.009554009514465604,0.00930993267574375,0.009074147260926351,0.008846315473998749,0.008626114450426183,0.0084132356479259,0.008207384246960589,0.008008278563758539,0.007815649478011874,0.0076292398768942424,0.007448804116592315,0.007274107502174081,0.007104925786326038,0.006941044687226269,0.006782259425625589,0.006628374281036726,0.0064792021668036845,0.006334564223705866,0.006194289431685286,0.006058214239203691,0.0059261822096995575,0.005798043684579036,0.005673655462144775,0.005552880491866102,0.005435587583373882,0.005321651129572043,0.0052109508432612575,0.0051033715066737114,0.004998802733340445,0.004897138741717084,0.004798278140015726,0.004702123721706967,0.004608582271177065,0.004517564379037494,0.004428984266615675,0.004342759619163533,0.004258811427347442,0.004177063836601656,0.004097444003941776,0.004019881961861855,0.00394431048894885,0.003870664986870413,0.0037988833634074537,0.0037289059212206824,0.003660675252052085,0.003594136136084624,0.003529235446190261,0.0034659220568147783,0.003404146757260912,0.0033438621691399112,0.0032850226677803244,0.00322758430738749,0.0031715047497620345,0.0031167431963953465,0.0030632603237670014,0.0030110182216835004,0.0029599803345011617,0.0029101114050874644,0.002861377421381671,0.0028137455654244003,0.002767184164729395,0.0027216626458828512,0.002677151490256611,0.0026336221917304006,0.002591047216323883,0.0025493999636420277,0.0025086547300467573,0.002468786673467991,0.0024297717797746297,0.0023915868306290454,0.0023542093727534647,0.0023176176885384603,0.00228179076793073,0.002246708281537187,0.0022123505548877274,0.0021786985438018015,0.0021457338108050897,0.002113438502548439,0.002081795328180577,0.002050787538630261,0.002020398906755961,0.0019906137083213664,0.0019614167037602663,0.0019327931206932355,0.0019047286371619459,0.0018772093655483834,0.0018502218371481845,0.0018237529873673267,0.0017977901415155938,0.001772321001168984,0.0017473336310759174,0.0017228164465834385,0.0016987582015593904,0.0016751479767899886,0.0016519751688309787,0.001629229479292832,0.00160690090454152,0.0015849797257957376,0.0015634564996049557,0.0015423220486908565,0.0015215674531370348,0.0015011840419120782,0.0014811633847122152,0.0014614972841091257,0.0014421777679914168,0.0014231970822864229,0.0014045476839511367,0.0013862222342212564,0.0013682135921069822,0.0013505148081264268,0.0013331191182662074,0.0013160199381602028,0.0012992108574775986,0.001282685634512017,0.0012664381909629975,0.0012504626069029824,0.0012347531159218328,0.0012193041004419593,0.0012041100871976436,0.0011891657428713658,0.0011744658698818978,0.0011600054023176022,0.001145779402009551,0.0011317830547389468,0.001118011666573998,0.0011044606603306001,0.0010911255721529451,0.001078002048208925,0.0010650858414961188,0.0010523728087544532,0.0010398589074809398,0.0010275401930434104,0.001015412815889068,0.0010034730188444327,0.0009917171345035815,0.000980141582700858,0.0009687428680656788,0.000957517577655894,0.0009464623786671195,0.0009355740162151733,0.0009248493111891866,0.0009142851581724186,0.0009038785234289418,0.0008936264429534094,0.0008835260205818255,0.0008735744261613055,0.0008637688937763471,0.0008541067200301444,0.0008445852623787011,0.0008352019375159426,0.0008259542198082815,0.0008168396397764938,0.000807855782623817,0.0007990002868083122,0.0007902708426581186,0.0007816651910281241,0.0007731811219967568,0.0007648164736012448,0.0007565691306104825,0.0007484370233339139,0.0007404181264653693,0.0007325104579607668,0.0007247120779482813,0.0007170210876703116,0.0007094356284558945,0.0007019538807227134,0.0006945740630076709,0.0006872944310252563,0.0006801132767524695,0.0006730289275398932,0.0006660397452477409,0.000659144125406207,0.0006523404963994233,0.0006456273186720207,0.0006390030839579111,0.0006324663145303709,0.0006260155624727915,0.000619649408969602,0.0006133664636164134,0.0006071653637491811,0.0006010447737915324,0.0005950033846197696,0.0005890399129450382,0.0005831531007121625,0.000577341714514452,0.0005716045450242926,0.0005659404064388107,0.0005603481359402379,0.0005548265931706132,0.0005493746597201553,0.0005439912386292191,0.0005386752539031947,0.0005334256500400539,0.0005282413915701592,0.000523121462608032,0.0005180648664155546,0.0005130706249765201,0.0005081377785820069,0.0005032653854263456,0.0004984525212134036,0.0004936982787727354,0.0004890017676855449,0.0004843621139199973,0.00047977845947568714,0.0004752499620370473,0.00047077579463527375,0.0004663551453187604,0.00046198721683164115,0.00045767122630026557,0.00045340640492736345,0.00044919199769378077,0.00044502726306735573,0.0004409114727190262,0.00043684391124574094,0.0004328238759000906,0.00042885067632649485,0.00042492363430363523,0.00042104208349314767,0.00041720536919426796,0.00041341284810432493,0.00040966388808490325,0.00040595786793358587,0.00040229417716096535,0.00039867221577301044,0.0003950913940584621,0.00039155113238120557,0.00038805086097750676,0.00038459001975787446,0.00038116805811357936,0.0003777844347276014,0.000374438617389916,0.00037113008281705026,0.0003678583164756806,0.00036462281241033106,0.0003614230730749337,0.00035825860916821644,0.06377894625583057,0.06369149024145421,0.06343066618222193,0.06300103549320442,0.062409971516256456,0.061667336512150776,0.060785067589337965,0.05977670354418449,0.05865688626768448,0.0574408684394567,0.056144054439901045,0.054781594820195664,0.05336804738614783,0.051917110941228035,0.050441431698170974,0.04895247770417133,0.04746047345152996,0.04597438507124853,0.044501945905128994,0.04304971253787839,0.04162314225515827,0.040226684121611185,0.03886387724079452,0.037537451118333474,0.03625398127946595,0.035032300845433274,0.03387065213411763,0.032765158687448455,0.03171225278039273,0.03070864631468433,0.02975022123976903,0.028822324908380728,0.027921511423729253,0.02704807513552882,0.02620210179033815,0.02538350040294058,0.024592031832094387,0.023827334184724026,0.023088945226642885,0.02237632201165892,0.021688857958681022,0.02102589761251876,0.020386749321410425,0.01977069605563923,0.0191770045790069,0.01860493316979463,0.018053738071575023,0.017522678837559705,0.017011022715702984,0.016518048206067455,0.016043047907075537,0.015585330753569118,0.015144223737010598,0.014719073186792473,0.014309245681358647,0.0139141286487684,0.01353313070818797,0.013165681796687194,0.012811233119437751,0.012469256955909188,0.012139246349900653,0.011820714707061851,0.011513195319964198,0.011216240837674269,0.010929422694074011,0.010652330506893851,0.010384571457414166,0.010125769659104764,0.009875565522025289,0.009633615118567428,0.009399589555061687,0.009173174352903216,0.008954068842067153,0.008741985569267693,0.00853664972247494,0.008337798573044813,0.008145180936362474,0.007958556651568497,0.007777696080692031,0.007602379627297947,0.007432397274589034,0.007267548142750767,0.007107640065235722,0.006952489183577559,0.006801919560265595,0.0066557628091612,0.006513857742889212,0.0063760500366276274,0.006242191907686977,0.006112141810271333,0.0059857641448094676,0.005862928981242292,0.005743511795671181,0.005627393219771398,0.005514458802394952,0.005404598782800306,0.0052977078749663065,0.005193685062458407,0.005092433403346314,0.004993859844679338,0.004897875046052435,0.00480439321181494,0.004713331931487936,0.00462461202798486,0.0045381574132390915,0.004453894950866747,0.004371754325507483,0.004291667918506426,0.004213570689611104,0.004137400064381744,0.004063095827020755,0.0039906000183457385,0.003919856838645251,0.003850812555165457,0.0037834154139954673,0.00371761555612486,0.0036533649374623778,0.003590617252615258,0.003529327862236641,0.003469453723763481,0.0034109533253717807,0.0033537866229878892,0.0032979149802022626,0.0032433011109410255,0.0031899090247555053,0.003137703974602189,0.0030866524069872473,0.003036721914359404,0.0029878811896406426,0.00294009998278794,0.0028933490592887995,0.0028476001604943644,0.002802825965701467,0.0027590000558984024,0.002716096879094937,0.0026740917171584533,0.0026329606540863707,0.0025926805456445282,0.0025532289903071304,0.002514584301437102,0.0024767254806467133,0.002439632192285193,0.0024032847389988694,0.0023676640383145436,0.00233275160019891,0.0022985295055475657,0.0022649803855627412,0.002232087401977455,0.002199834228088283,0.0021682050305594667,0.002137184451964349,0.0021067575940292974,0.00207691000155053,0.0020476276469524254,0.0020188969154592224,0.001990704590853295,0.001963037841793073,0.0019358842086675087,0.0019092315909624961,0.001883068235117353,0.0018573827228505662,0.0018321639599333174,0.0018074011653931934,0.0017830838611284394,0.0017592018619158082,0.0017357452657951937,0.0017127044448154473,0.0016900700361253086,0.001667832933396351,0.0016459842785629742,0.0016245154538668508,0.0016034180741933478,0.0015826839796871798,0.0015623052286369626,0.0015422740906168748,0.0015225830398752874,0.001503224748960397,0.0014841920825734891,0.0014654780916400338,0.0014470760075909754,0.0014289792368450357,0.0014111813554843677,0.0013936761041162325,0.001376457382912611,0.0013595192468218455,0.0013428559009448376,0.00132646169606978,0.0013103311243591795,0.0012944588151836323,0.001278839531096056,0.0012634681639419106,0.0012483397310996615,0.0012334493718466674,0.0012187923438461477,0.0012043640197499487,0.0011901598839136678,0.001176175529219383,0.0011624066540021668,0.001148849059076786,0.0011354986448603378,0.001122351408588073,0.0011094034416184832,0.0010966509268246125,0.0010840901360684272,0.0010717174277554797,0.0010595292444664601,0.001047522110663614,0.001035692630468828,0.00102403748551103,0.0010125534328406685,0.0010012373029083526,0.0009900859976061497,0.0009790964883688185,0.0009682658143330919,0.0009575910805531524,0.0009470694562699086,0.0009366981732328688,0.0009264745240722932,0.0009163958607202068,0.0009064595928784691,0.0008966631865325095,0.0008870041625088312,0.0008774800950752867,0.0008680886105823645,0.0008588273861442131,0.0008496941483582565,0.000840686672061713,0.0008318027791243447,0.0008230403372758534,0.0008143972589669666,0.0008058715002630529,0.0007974610597693683,0.0007891639775865687,0.0007809783342959728,0.0007729022499732961,0.0007649338832300339,0.0007570714302817699,0.0007493131240421943,0.0007416572332424734,0.0007341020615748599,0.0007266459468598743,0.000719287260236448,0.0007120244053739854,0.0007048558177061055,0.0006977799636850573,0.0006907953400563282,0.0006839004731527636,0.000677093918207738,0.0006703742586864873,0.0006637401056354779,0.0006571900970489309,0.0006507228972521256,0.0006443371963010385,0.0006380317093975931,0.0006318051763203784,0.0006256563608701403,0.0006195840503297005,0.0006135870549378569,0.0006076642073769363,0.0006018143622733707,0.0005960363957112489,0.0005903292047581984,0.0005846917070033523,0.0005791228401071058,0.0005736215613621139,0.0005681868472654998,0.0005628176931017316,0.0005575131125359335,0.0005522721372174351,0.0005470938163929987,0.0005419772165298118,0.0005369214209476885,0.0005319255294603549,0.000526988658025513,0.0005221099384035273,0.0005172885178243093,0.0005125235586623988,0.0005078142381198778,0.0005031597479169102,0.0004985592939898002,0.0004940120961961687,0.0004895173880272838,0.00048507441632719705,0.0004806824410185548,0.0004763407348348834,0.0004720485830592579,0.0004678052832689865,0.0004636101450864126,0.0004594624899354674,0.00045536165080389997,0.0004513069720110897,0.00044729780898110805,0.0004433335280211435,0.0004394135061049574,0.0004355371306613107,0.00043170379936727894,0.0004279129199461723,0.0004241639099701529,0.00042045619666726785,0.000416789216732856,0.07175429563002163,0.07165608884851175,0.07136321038613934,0.07088080571268641,0.07021719035874785,0.0693834830602053,0.06839313585601928,0.06726139770426014,0.0660047500211461,0.06464035023703608,0.06318551389369358,0.061657258204862696,0.06007192164925474,0.05844486616753299,0.056790261688759974,0.05512094745871634,0.05344836110413929,0.051782524425025504,0.05013207429294299,0.048504327416046204,0.04690536877887866,0.045340154986840374,0.04381262531167632,0.04232581477973887,0.04089094293070546,0.03952640010597889,0.038228356753609596,0.03699255026131858,0.03581505521198091,0.034692251795689175,0.033620797627441475,0.03259170082054639,0.03159161665911406,0.030620623163773095,0.029678968043295492,0.028766690783798916,0.027883654595973945,0.027029575021012584,0.02620404533984704,0.02540655897791294,0.024636529126187787,0.023893305813527846,0.023176190668724613,0.022484449606268903,0.02181732366005664,0.02117403817587696,0.020553810558115716,0.019955856749661025,0.0193793966073073,0.018823658318675794,0.018287881991007685,0.017771322527569366,0.017273251893844346,0.016792960863306058,0.016329760321307618,0.015882982195594062,0.015451980072878183,0.015036129552964534,0.014634828384840105,0.014247496422916322,0.013873575436211113,0.01351252879846474,0.013163841083071552,0.012827017583120177,0.012501583773701024,0.012187084730996212,0.011883084520309783,0.0115891655632325,0.011304927992416749,0.011029989000981996,0.01076398219230339,0.010506556934902557,0.010257377726221623,0.010016123568310008,0.009782487357807323,0.009556175292034088,0.009336906292576884,0.009124411447332625,0.008918433471678177,0.008718726189153375,0.008525054031831202,0.008337191560356009,0.008154923003504308,0.007978041816981241,0.0078063502610867044,0.007639658996808994,0.007477786699836808,0.007320559691957129,0.007167811589258891,0.007019382966551096,0.006875121037393487,0.006734879349124082,0.006598517492283658,0.006465900823827603,0.006336900203533878,0.006211391743024581,0.006089256566835495,0.005970380584976714,0.0058546542764567515,0.0057419724832495226,0.005632234214207209,0.005525342458443366,0.005421204007721809,0.005319729287417603,0.005220832195624394,0.005124429950007525,0.0050304429420182815,0.004938794598103876,0.00484941124756072,0.004762221996703187,0.00467715860902762,0.004594155391072288,0.004513149083687771,0.004434078758443169,0.004356885718914212,0.004281513406605022,0.004207907311271817,0.0041360148854291895,0.0040657854628264045,0.00399717018069902,0.003930121905604686,0.003864595162665656,0.0038005460680482404,0.0037379322645197913,0.003676712859928201,0.0036168483684633173,0.0035583006545606907,0.0035010328793189244,0.0034450094493082275,0.0033901959676514554,0.0033365591872701285,0.0032840669661880688,0.003232688224794504,0.0031823929049717347,0.0031331519309989314,0.0030849371721450424,0.0030377214068732675,0.0029914782885783887,0.00294618231278537,0.00290180878574103,0.002858333794331527,0.0028157341772662697,0.002773987497467487,0.002733072015610105,0.002692966664759624,0.002653651026055564,0.002615105305395059,0.0025773103110692673,0.002540247432310002,0.0025038986187052212,0.002468246360444879,0.002433273669358444,0.0023989640607106188,0.002365301535720249,0.002332270564770741,0.0022998560712820903,0.0022680434162140536,0.002236818383174699,0.0022061671641067015,0.0021760763455267907,0.002146532895294462,0.00211752414988754,0.0020890378021618844,0.002061061889576063,0.002033584782860236,0.0020065951751107617,0.001980082071293135,0.0019540347781349305,0.0019284428943941053,0.0019032963014858361,0.00187858515445365,0.001854299873270805,0.0018304311344575505,0.0018069698630026638,0.0017839072245759066,0.001761234618020059,0.001738943668111141,0.00171702621857643,0.0016954743253591103,0.0016742802501209216,0.0016534364539725185,0.001632935591422855,0.0016127705045393063,0.001592934217309407,0.0015734199301975494,0.0015542210148881744,0.0015353310092086473,0.0015167436122250498,0.0014984526795036245,0.0014804522185324742,0.0014627363842967976,0.0014452994750020545,0.0014281359279394634,0.0014112403154887525,0.0013946073412524098,0.001378231836317357,0.00136210875563878,0.0013462331745417182,0.0013306002853364439,0.0013152053940426779,0.0013000439172196944,0.0012851113788976863,0.00127040340760713,0.0012559157335024448,0.001241644185576875,0.0012275846889646905,0.0012137332623284606,0.0012000860153277358,0.001186639146166542,0.0011733889392170317,0.0011603317627161137,0.0011474640665332784,0.001134782380006555,0.0011222833098444704,0.0011099635380918801,0.001097819820156997,0.0010858489828981968,0.0010740479227680593,0.0010624136040129062,0.0010509430569259385,0.0010396333761522691,0.0010284817190437665,0.0010174853040625716,0.0010066414092312552,0.0009959473706282176,0.0009854005809269925,0.000974998487977554,0.0009647385934288624,0.0009546184513908522,0.0009446356671347608,0.000934787895830501,0.0009250728413200534,0.0009154882549253003,0.000906031934289771,0.0008967017222527579,0.0008874955057549914,0.0008784112147749251,0.000869446821294328,0.0008606003382927675,0.0008518698187696894,0.0008432533547933584,0.0008347490765759686,0.0008263551515737299,0.0008180697836116433,0.0008098912120318586,0.0008018177108650385,0.0007938475880239516,0.0007859791845187973,0.000778210873693232,0.0007705410604809387,0.0007629681806817819,0.0007554907002570759,0.0007481071146434962,0.000740815948084764,0.0007336157529810042,0.0007265051092549297,0.0007194826237344903,0.0007125469295514686,0.0007056966855556428,0.0006989305757438202,0.0006922473087036483,0.0006856456170715264,0.000679124257004277,0.0006726820076642943,0.0006663176707174923,0.0006600300698440722,0.000653818050261449,0.0006476804782591009,0.0006416162407450831,0.0006356242448036155,0.0006297034172637924,0.0006238527042788215,0.0006180710709156261,0.0006123575007544698,0.0006067109954984395,0.0006011305745922582,0.0005956152748504987,0.000590164150094701,0.0005847762707992347,0.0005794507237457257,0.0005741866116856124,0.0005689830530108864,0.0005638391814326046,0.0005587541456670009,0.0005537271091290866,0.0005487572496333362,0.0005438437591015241,0.0005389858432773254,0.0005341827214476067,0.0005294336261701522,0.0005247378030077938,0.0005200945102685349,0.0005155030187517924,0.0005109626115004038,0.0005064725835583089,0.0005020322417338233,0.0004976409043681592,0.0004932979011093476,0.0004890025726911732,0.00048475427071713686,0.08072776433772054,0.08061735002185272,0.08028807766669935,0.07974576750885704,0.07899982288904642,0.07806281180728533,0.07694993146083896,0.07567839781503549,0.07426680426060991,0.07273449061835793,0.07110095722109382,0.06938534997270623,0.0676060326466714,0.06578025351703203,0.06392390561971745,0.062051374011305505,0.0601754594463058,0.05830736577899487,0.056456737789398206,0.05463173664826764,0.05283914148839002,0.05108446720772402,0.04937209043390033,0.04770537734431304,0.04610304700522013,0.044579449089676745,0.04312949452938254,0.041748497136001365,0.04043213894202734,0.03917643592312763,0.03797770739404898,0.036832239033341145,0.035724305090659055,0.03464699961178028,0.03360078237818911,0.03258586835058036,0.03160226320651637,0.03064979541697564,0.029728144955101985,0.028836868795301993,0.02797542340325771,0.027143184442526724,0.02633946393505217,0.025563525114586073,0.02481459520659947,0.02409187635779145,0.02339455492468056,0.022721809315286348,0.022072816561495772,0.0214467577832554,0.020842822689560316,0.020260213245848355,0.01969814662296069,0.019155857529489735,0.018632600017085034,0.01812764883727139,0.017640300418311976,0.017169873521778768,0.016715709630571923,0.016277173113106325,0.01585365120225065,0.015444553822151997,0.015049313291359062,0.01466738392652853,0.01429824156737895,0.013941383040475881,0.013596325576689789,0.013262606194862749,0.012939781062196249,0.012627424840149278,0.012325130023135346,0.012032506276062489,0.011749179775643671,0.011474792559495135,0.011209001886248673,0.010951479609221855,0.010701911565647365,0.010459996982959074,0.010225447903246369,0.009997988626644142,0.009777355174153006,0.009563294770134565,0.009355565344559408,0.009153935054903946,0.008958181827479823,0.008768092917873116,0.008583464490082257,0.008404101213896554,0.008229815879992481,0.008060429032198427,0.00789576861635544,0.007735669645175481,0.00757997387850724,0.0074285295184000335,0.007281190918370693,0.007137818306278783,0.006998277520231491,0.0068624397569411735,0.006730181331989034,0.006601383451448672,0.006475931994349856,0.006353717305479307,0.006234633998027189,0.006118580765619067,0.006005460203278473,0.005895178636892854,0.005787645960769187,0.005682775482888378,0.005580483777476528,0.0054806905445409304,0.0053833184760232996,0.005288293128245855,0.005195542800340929,0.005104998418364187,0.00501659342481589,0.004930263673298528,0.004845947328058198,0.0047635847681694625,0.004683118496130397,0.004604493050655295,0.004527654923454084,0.004452552479804024,0.004379135882726407,0.004307357020593242,0.004237169437992263,0.004168528269695886,0.004101390177579212,0.0040357132903453535,0.003971457145922359,0.003908582636400408,0.003847051955390038,0.0037868285476826704,0.0037278770611041357,0.0036701633004561913,0.0036136541834475553,0.003558317698517876,0.003504122864468275,0.0034510396918110593,0.003399039145758583,0.0033480931107756377,0.003298174356620218,0.003249256505806384,0.003201314002421525,0.0031543220822363503,0.0031082567440488744,0.0030630947222041703,0.0030188134602389164,0.002975391085597832,0.0029328063853745223,0.0028910387830302,0.0028500683160473904,0.002809875614475175,0.0027704418803286193,0.002731748867802915,0.002693778864267018,0.0026565146720030288,0.0026199395906572253,0.002584037400373838,0.002548792345580565,0.0025141891193982396,0.0024802128486476676,0.0024468490794286838,0.0024140837632457774,0.0023819032436586895,0.0023502942434348267,0.0023192438521825016,0.002288739514445545,0.0022587690182386795,0.0022293204840070752,0.0022003823539913374,0.002171943381981613,0.0021439926234452958,0.0021165194260119283,0.0020895134203023293,0.0020629645110868573,0.0020368628687600834,0.002011198921118897,0.0019859633454325457,0.0019611470607917704,0.0019367412207274696,0.0019127372060872723,0.0018891266181601087,0.001865901272039524,0.001843053190215441,0.0018205745963867424,0.0017984579094853278,0.0017766957379036553,0.0017552808739184182,0.0017342062883019726,0.0017134651251154715,0.0016930506966760612,0.0016729564786919203,0.0016531761055586741,0.0016337033658115703,0.0016145321977267413,0.0015956566850671631,0.0015770710529671402,0.0015587696639505241,0.0015407470140779925,0.001522997729217956,0.0015055165614376027,0.0014882983855090198,0.001471338195526483,0.0014546311016309086,0.00143817232683786,0.0014219572039648144,0.001405981172654971,0.0013902397764936362,0.001374728660214109,0.001359443566990121,0.0013443803358112146,0.001329534898939039,0.0013149032794410873,0.0013004815887994456,0.0012862660245922053,0.0012722528682443948,0.0012584384828469477,0.0012448193110406766,0.0012313918729634648,0.001218152764258311,0.001205098654140521,0.00119222628352145,0.0011795324631877014,0.001167014072033362,0.001154668055343717,0.0011424914231289223,0.0011304812485055014,0.001118634666124745,0.0011069488706460396,0.0010954211152538168,0.0010840487102166852,0.0010728290214875686,0.0010617594693430623,0.0010508375270613906,0.0010400607196372575,0.0010294266225326005,0.0010189328604622457,0.001008577106212909,0.0009983570794951332,0.0009882705458266541,0.0009783153154463726,0.0009684892422581336,0.000958790222802967,0.0009492161952594851,0.0009397651384711121,0.0009304350709995668,0.0009212240502036769,0.0009121301713429432,0.0009031515667047373,0.0008942864047548722,0.0008855328893105472,0.0008768892587350597,0.0008683537851537692,0.0008599247736903495,0.0008516005617231784,0.0008433795181609211,0.0008352600427368959,0.0008272405653216133,0.0008193195452531026,0.0008114954706841615,0.0008037668579464943,0.0007961322509309337,0.0007885902204833416,0.0007811393638159097,0.0007737783039330499,0.0007665056890719295,0.0007593201921568582,0.0007522205102673128,0.0007452053641192448,0.0007382734975590467,0.0007314236770702099,0.0007246546912920011,0.0007179653505499647,0.0007113544863978814,0.00070482095117096,0.0006983636175496975,0.0006919813781344797,0.0006856731450303329,0.0006794378494416648,0.0006732744412768018,0.0006671818887617855,0.0006611591780635481,0.0006552053129219349,0.000649319314290415,0.0006435002199853791,0.0006377470843434721,0.0006320589778871489,0.0006264349869979303,0.0006208742135973055,0.0006153757748350057,0.0006099388027845621,0.0006045624441457477,0.0005992458599539927,0.0005939882252963879,0.0005887887290341858,0.0005836465735316693,0.000578560974391056,0.0005735311601935344,0.0005685563722460662,0.0005636358643339092,0.09082771633739416,0.090703395663934,0.09033267020971333,0.08972214461496042,0.0888824858147629,0.08782794336657246,0.08657573635518191,0.08514535554856735,0.08355783164284192,0.08183501701610771,0.07999892067987163,0.07807112577711928,0.07607230778037363,0.0740218609695846,0.07193763185509187,0.06983575149764702,0.06773055427784695,0.06563456837906938,0.0635585626808768,0.06151163545635999,0.0595013317802822,0.05753377850402677,0.055613827743938506,0.05374611486757813,0.051958207018433206,0.050257442527733724,0.048638225260939326,0.04709540300428265,0.045624225738030266,0.044220308425488936,0.04287959776676355,0.041598342440906065,0.04037066503078139,0.039178217497731586,0.038018380959442044,0.03689160165654482,0.0357980780756698,0.034737796710562076,0.03371056434050869,0.03271603693103599,0.0317537453217515,0.03082311790536212,0.029923500524590856,0.029054173823848735,0.028214368293415275,0.0274032772378906,0.026620067890181606,0.025863890878728233,0.025133888240345556,0.024429200155025574,0.02374897056276349,0.023092351806691044,0.02245850843166405,0.02184662025328511,0.02125588479914814,0.02068551921213594,0.020134761694582618,0.01960287256231263,0.019089134968734454,0.01859285535127765,0.01811336364554721,0.01765001330636016,0.017202181169452248,0.016769267182886818,0.016350694033030567,0.01594590668637591,0.015554371865306605,0.015175577473190196,0.014809031981805703,0.014454263792081262,0.014110820577322814,0.01377826861664079,0.0134561921249333,0.013144192584690873,0.01284188808392753,0.012548912663707895,0.012264915678077621,0.011989561168577929,0.011722527255047585,0.01146350554398366,0.011212200555380669,0.010968329168659545,0.010731620088068326,0.01050181332771079,0.010278659716197508,0.010061920420780024,0.009851366490698258,0.009646778419406544,0.00944794572524766,0.009254666550102713,0.009066747275502258,0.008884002155642754,0.008706252966749164,0.008533328672195743,0.008365065102798356,0.008201304651689901,0.008041895983195345,0.007886693755122107,0.007735558353906822,0.0075883556420563054,0.007444956717343371,0.007305237683235393,0.007169079430038582,0.007036367426276042,0.00690699151981894,0.006780845748316534,0.0066578281584879235,0.0065378406338555215,0.006420788730513903,0.006306581520555422,0.006195131442779017,0.006086354160332808,0.005980168424956167,0.005876495947497058,0.005775261274405429,0.005676391669908043,0.005579817003589629,0.005485469643118609,0.005393284351863034,0.005303198191164085,0.005215150427036645,0.005129082441084062,0.005044937645421196,0.004962661401413878,0.004882200942046346,0.004803505297745955,0.00472652522549556,0.004651213141076419,0.004577523054292533,0.004505410507030724,0.004434832514025285,0.00436574750619547,0.004298115276434627,0.00423189692773526,0.004167054823540299,0.004103552540213528,0.004041354821533434,0.00398042753511324,0.003920737630658372,0.003862253099976956,0.0038049429386597957,0.0037487771093563374,0.003693726506570792,0.003639762922909853,0.0035868590167165474,0.0035349882810251426,0.003484125013780301,0.003434244289261424,0.0033853219306589086,0.0033373344837507256,0.0032902591916309067,0.003244073970441614,0.0031987573860669475,0.0031542886317442397,0.0031106475065534067,0.0030678143947466593,0.003025770245880149,0.0029844965557153853,0.0029439753478554182,0.0029041891560849437,0.0028651210073846146,0.0028267544055895224,0.0027890733156664235,0.0027520621485822992,0.0027157057467397192,0.002679989369955431,0.0026448986819598086,0.0026104197373943917,0.0025765389692886504,0.0025432431769948855,0.0025105195145630798,0.002478355479538043,0.002446738902160455,0.0024156579349571988,0.0023851010427040553,0.002355056992746241,0.0023255148456623703,0.0022964639462587774,0.0022678939148796976,0.0022397946390226102,0.002212156265245542,0.0021849691913552204,0.0021582240588656635,0.002131911745715406,0.0021060233592350664,0.002080550229354312,0.002055483902039695,0.002030816132954195,0.0020065388813306786,0.0019826443040499913,0.0019591247499173956,0.0019359727541289184,0.0019131810329208229,0.0018907424783956995,0.0018686501535177037,0.0018468972872719232,0.0018254772699810003,0.0018043836487733722,0.00178361012319813,0.001763150540980101,0.0017429988939113561,0.0017231493138733182,0.0017035960689851554,0.0016843335598737774,0.0016653563160615515,0.001646658992466602,0.001628236366012911,0.0016100833323455257,0.001592194902647433,0.0015745662005548129,0.0015571924591665433,0.0015400690181456356,0.0015231913209086928,0.001506554911900691,0.0014901554339522586,0.0014739886257160958,0.001458050319180667,0.0014423364372578957,0.0014268429914426717,0.0014115660795416159,0.0013965018834691187,0.0013816466671076671,0.001366996774231315,0.0013525486264894385,0.0013382987214491217,0.0013242436306943322,0.001310379997979569,0.0012967045374368488,0.0012832140318338738,0.0012699053308818035,0.0012567753495910932,0.0012438210666739814,0.0012310395229916333,0.0012184278200452695,0.0012059831185092537,0.001193702636805114,0.0011815836497152757,0.001169623487034811,0.0011578195322606765,0.0011461692213167605,0.0011346700413137956,0.00112331952934325,0.0011121152713036203,0.0011010549007588108,0.001090136097827124,0.0010793565881001166,0.0010687141415903734,0.0010582065717074718,0.0010478317342608547,0.0010375875264894215,0.0010274718861165465,0.0010174827904299633,0.0010076182553858672,0.0009978763347361398,0.0009882551191785565,0.0009787527355288549,0.000969367345914273,0.0009600971469877394,0.0009509403691624249,0.0009418952758655563,0.0009329601628115162,0.0009241333572932559,0.0009154132174916558,0.0009067981318023927,0.000898286518179509,0.000889876823495641,0.0008815675229181042,0.0008733571193004978,0.0008652441425895036,0.0008572271492461226,0.0008493047216813691,0.0008414754677057338,0.000833738019992113,0.0008260910355518171,0.0008185331952234214,0.0008110632031737833,0.0008036797864113222,0.0007963816943109011,0.000789167698150101,0.0007820365906566984,0.000774987185566702,0.0007680183171931184,0.0007611288400047893,0.0007543176282152296,0.0007475835753810885,0.0007409255940101329,0.0007343426151782124,0.000727833588155332,0.0007213974800403065,0.0007150332754038969,0.000708739975940257,0.0007025166001262376,0.0006963621828886582,0.0006902757752791271,0.0006842564441562627,0.0006783032718752201,0.0006724153559840861,0.0006665918089273003,0.0006608317577556686,0.0006551343438429064,0.10220034804846635,0.10206012721355608,0.10164201276992102,0.10095352760173168,0.10000681653211126,0.09881809327526365,0.09740693454575017,0.09579547809025173,0.09400758371769494,0.09206801216103927,0.09000166735215867,0.08783293547392095,0.08558514104418874,0.0832801280157553,0.08093796363126977,0.0785767551529921,0.0762125646861741,0.07385940486322574,0.07152929767598083,0.06923237968891807,0.06697703871444918,0.06477006934220846,0.06261683715336647,0.06052635928420099,0.05853207611327344,0.0566342154035575,0.05482662915760908,0.05310365389557395,0.051460065390480175,0.04989103827381861,0.048392109920514334,0.04695914810182932,0.045588321962664796,0.04427075141580652,0.04298826298221601,0.0417402923784439,0.0405272938091329,0.03934946879979476,0.038206802250678754,0.03709909500943195,0.03602599307085189,0.03498701356914555,0.03398156776527515,0.0330089812534993,0.03206851162100302,0.031159363795103864,0.030280703306878695,0.029431667689847344,0.028611376219179942,0.027818938182172084,0.027053459854999056,0.026314050345051125,0.02559982644267921,0.024909916611426053,0.024243464231861606,0.023599630201297517,0.022977594979726408,0.022376560161559974,0.021795749642995535,0.021234410446031093,0.02069181325238633,0.020167252693570916,0.019660047437214574,0.019169540104341437,0.018695097047457445,0.018236108015191464,0.017791985725505794,0.017362165366334743,0.016946104039711817,0.01654328016304193,0.016153192839052893,0.0157753612041926,0.015409323763630002,0.01505463771969258,0.014710878299413595,0.014377638085841566,0.014054526356954969,0.013741168435248408,0.013437205050466828,0.013142291717418696,0.012856098130363095,0.012578307575062599,0.012308616359309988,0.01204673326243239,0.01179237900407302,0.011545285732364644,0.011305196531435387,0.011071864948094153,0.01084505453740855,0.010624538426826244,0.010410098898421549,0.010201526988788387,0.009998622106084714,0.009801191663682629,0.009609050729875392,0.00942202169307337,0.0092399339419222,0.009062623559763986,0.008889933032884299,0.008721710971976854,0.008557811846278908,0.00839809572983991,0.008242428059392059,0.008090679403322401,0.007942725241244453,0.0077984457536950415,0.007657725621494391,0.007520453834327576,0.007386523508115559,0.007255831710773615,0.007128279295958545,0.007003770744430702,0.006882214012672806,0.006763520388416158,0.006647604352752674,0.006534383448514329,0.00642377815462181,0.00631571176611961,0.006210110279620495,0.006106902283906861,0.006006018855437638,0.005907393458528453,0.005810961849980243,0.005716661987946459,0.005624433944832026,0.005534219824037621,0.005445963680362199,0.005359611443891734,0.005275110847209764,0.005192411355769328,0.005111464101281849,0.005032221817977361,0.004954638781602506,0.004878670751028157,0.004804274912345423,0.004731409825331537,0.0046600353721795145,0.004590112708383744,0.004521604215683006,0.004454473456967617,0.004388685133057205,0.004324205041267934,0.004261000035684767,0.004199037989062148,0.004138287756280797,0.00407871913928735,0.004020302853454267,0.003963010495293673,0.0039068145114658,0.00385168816902444,0.003797605526845537,0.00374454140818448,0.003692471374315739,0.0036413716992052176,0.0035912193451711413,0.003541991939491273,0.003493667751913635,0.0034462256730345194,0.003399645193504627,0.0033539063840288437,0.003308989876125597,0.003264876843614538,0.0032215489847998136,0.0031789885053223887,0.003137178101651457,0.003096100945189024,0.0030557406669628,0.0030160813428814427,0.0029771074795312265,0.002938804000490281,0.002901156233139961,0.00286414989595352,0.0028277710862413324,0.0027920062683364356,0.00275684226220086,0.0027222662324369574,0.0026882656776871638,0.0026548284204074156,0.002621942596998175,0.0025895966482807715,0.0025577793103041925,0.002526479605469937,0.002495686833963025,0.0024653905654759643,0.0024355806312162417,0.0024062471161850675,0.002377380351717529,0.0023489709082746097,0.002321009588476301,0.0022934874203683316,0.00226639565091257,0.00223972573969319,0.0022134693528304437,0.002187618357094687,0.002162164814212345,0.0021371009753579947,0.002112419275824846,0.0020881123298673574,0.0020641729257101,0.002040594020715906,0.002017368736708744,0.001994490355444936,0.0019719523142277258,0.0019497482016599193,0.0019278717535302038,0.001906316848827329,0.0018850775058790225,0.001864147878610268,0.0018435222529171117,0.0018231950431522705,0.001803160788717734,0.0017834141507619733,0.0017639499089771079,0.0017447629584930416,0.0017258483068654834,0.0017072010711537877,0.001688816475086776,0.001670689846312657,0.0016528166137305838,0.0016351923049010575,0.00161781254353273,0.0016006730470424697,0.0015837696241871209,0.0015670981727639735,0.0015506546773778349,0.001534435207272821,0.0015184359142260354,0.001502653030502052,0.0014870828668655473,0.0014717218106504967,0.001456566323884012,0.0014416129414633134,0.0014268582693835728,0.0014122989830157573,0.00139793182543236,0.0013837536057796631,0.001369761197695246,0.0013559515377688368,0.0013423216240457992,0.0013288685145714473,0.001315589325975097,0.0013024812320927889,0.0012895414626269473,0.001276767301842612,0.0012641560872985367,0.0012517052086123237,0.0012394121062585335,0.0012272742703988927,0.001215289239743214,0.0012034546004407454,0.0011917679850005157,0.0011802270712400183,0.0011688295812615278,0.0011575732804547786,0.0011464559765258149,0.0011354755185508324,0.0011246297960544331,0.0011139167381115215,0.0011033343124723263,0.0010928805247094784,0.0010825534173870288,0.0010723510692504134,0.001062271594436819,0.0010523131417056175,0.0010424738936877698,0.0010327520661542995,0.001023145907302823,0.0010136536970618154,0.0010042737464122094,0.0009950043967254575,0.000985844019118129,0.0009767910138221932,0.0009678438095706782,0.000959000862998283,0.0009502606580566259,0.0009416217054434055,0.0009330825420455351,0.0009246417303955506,0.0009162978581410242,0.0009080495375267479,0.0008998954048890121,0.0008918341201620993,0.0008838643663963177,0.0008759848492874087,0.0008681942967170905,0.0008604914583041471,0.0008528751049662151,0.0008453440284916466,0.0008378970411213189,0.0008305329751400902,0.0008232506824777748,0.0008160490343190746,0.000808926920722644,0.0008018832502487491,0.0007949169495954032,0.0007880269632428492,0.0007812122531058905,0.0007744717981942559,0.0007678045942804887,0.000761209653575317,0.11501262071136177,0.1148541428162809,0.11438162491752596,0.11360367334153923,0.11253417489084193,0.11119165490148626,0.10959845926279065,0.10777982717958703,0.10576292387609215,0.10357589709409697,0.10124701003060567,0.09880388877235506,0.09627290679851123,0.09367871477809006,0.09104391205266327,0.08838884752407479,0.08573153221836356,0.083087643208708,0.08047059825987328,0.07789168184611302,0.07536020547658398,0.07288368802717372,0.07046804464374123,0.06813237755379267,0.06590908828058416,0.06379242205019901,0.06177562933971474,0.059852489041621625,0.05801725940258504,0.05626463421023023,0.05458970359464759,0.052987918896250076,0.051455061123804276,0.04998721258858693,0.04857284383162385,0.04719453030752651,0.04585252608840474,0.04454731944920696,0.043279138709492126,0.04204798866877682,0.04085368358470018,0.039695876797750766,0.038574087162012514,0.037487722478113536,0.03643610014635367,0.035418465268014954,0.03443400642435189,0.033481869357833274,0.03256116877078023,0.03167099844435185,0.030810439866656353,0.02997856954385279,0.029174465152906868,0.028397210679716737,0.027645900671913613,0.026919643722114528,0.02621756528467602,0.02553880991734066,0.024882543028515215,0.024247952201186085,0.023634248155839574,0.023040665406856318,0.02246646265994196,0.02191092299194057,0.021373353848883912,0.020853086893347614,0.0203494777278767,0.019861905517552108,0.0193897725314904,0.018932503620231127,0.018489545643454237,0.018060366860355687,0.017644456293091006,0.017241323072092272,0.016850495770664137,0.016471521735022445,0.016103966414937845,0.01574741269920478,0.01540146025940937,0.015065724904799687,0.01473983795050335,0.014423445600837881,0.014116208349082967,0.0138178003946998,0.013527909078716791,0.013246234337743487,0.012972488176862385,0.012706394161497558,0.012447686928191946,0.012196111714124706,0.011951423905102872,0.01171338860167297,0.011481780202961036,0.011256382007779064,0.011036985832512858,0.010823391645278345,0.010615407215815685,0.010412847780571815,0.010215535722433298,0.010023300264552917,0.009835977177726635,0.009653408500784683,0.009475442273457736,0.00930193228121058,0.009132737811527172,0.008967723421158473,0.008806758713853013,0.008649718128110901,0.008496480734507055,0.00834693004216209,0.008200953813939102,0.008058443889970892,0.007919296019136398,0.0077834096981136665,0.007650688017666426,0.00752103751582183,0.007394368037619935,0.007270592601129744,0.007149627269432577,0.007031391028300707,0.006915805669297819,0.006802795678049738,0.006692288127441244,0.006584212575509668,0.0064785009678103855,0.006375087544050409,0.006273908748785473,0.0061749031459918825,0.006078011337333819,0.005983175883948767,0.005890341231593497,0.005799453638989591,0.005710461109222131,0.005623313324049461,0.005537961580991382,0.005454358733063643,0.005372459131042509,0.005292218568139797,0.005213594226979006,0.005136544628769617,0.00506102958457563,0.0049870101485886865,0.00491444857331128,0.004843308266565987,0.004773553750249388,0.004705150620749754,0.004638065510958726,0.0045722660538029675,0.004507720847229873,0.004444399420583166,0.004382272202307921,0.004321310488924844,0.0042614864152215595,0.004202772925605695,0.004145143746570364,0.004088573360224964,0.004033036978843086,0.003978510520387316,0.003924970584967057,0.0038723944321904886,0.0038207599593729595,0.0037700456805662193,0.0037202307063723843,0.003671294724512345,0.0036232179811154543,0.0035759812627010287,0.0035295658788240675,0.003483953645355757,0.0034391268683755106,0.003395068328647498,0.0033517612666589263,0.003309189368197645,0.0032673367504457017,0.003226187948570618,0.0031857279027925865,0.0031459419459094985,0.00310681579126136,0.003068335521117523,0.003030487575468395,0.002993258741207956,0.0029566361416904262,0.0029206072266468176,0.0028851597624482794,0.0028502818227010927,0.002815961779162815,0.00278218829296571,0.002748950306136329,0.0027162370334005053,0.0026840379542614696,0.0026523428053429527,0.0026211415729856676,0.002590424486088489,0.002560182009185048,0.0025304048357474513,0.002501083881707576,0.002472210279189689,0.002443775370445319,0.0024157707019834443,0.002388188018889485,0.0023610192593248288,0.0023342565492022573,0.002307892197029581,0.0022819186889160513,0.002256328683735682,0.0022311150084421997,0.0022062706535293493,0.002181788768632802,0.002157662658267706,0.0021338857776974536,0.0021104517289294816,0.0020873542568327318,0.002064587245373865,0.0020421447139671806,0.00202002081393476,0.001998209825073241,0.0019767061523228804,0.0019555043225364683,0.0019345989813440152,0.0019139848901102172,0.001893656922981588,0.0018736100640205499,0.0018538394044227925,0.001834340139816259,0.0018151075676382635,0.0017961370845884087,0.0017774241841551788,0.0017589644542129017,0.001740753574687985,0.0017227873152912884,0.0017050615333149154,0.0016875721714912028,0.0016703152559121894,0.0016532868940070358,0.001636483272576374,0.0016199006558811637,0.0016035353837845535,0.001587383869945341,0.0015714426000606914,0.0015557081301574775,0.0015401770849302048,0.0015248461561240506,0.0015097121009621161,0.0014947717406146698,0.0014800219587101232,0.0014654596998857114,0.0014510819683769842,0.0014368858266448467,0.0014228683940392516,0.0014090268454978309,0.001395358410279272,0.0013818603707297262,0.0013685300610815259,0.0013553648662834284,0.0013423622208609044,0.0013295196078062772,0.0013168345574973753,0.001304304646644008,0.0012919274972614122,0.0012797007756701112,0.0012676221915208727,0.0012556894968447543,0.0012439004851270167,0.0012322529904043237,0.0012207448863848262,0.001209374085589919,0.0011981385385177346,0.0011870362328272547,0.0011760651925426658,0.0011652234772774894,0.0011545091814775096,0.0011439204336825754,0.0011334553958063027,0.0011231122624333397,0.0011128892601337044,0.0011027846467938074,0.0010927967109634015,0.0010829237712184536,0.0010731641755391914,0.001063516300702984,0.0010539785516918386,0.0010445493611136814,0.001035227188637588,0.0010260105204422327,0.0010168978686772748,0.001007887770937518,0.0009989787897490914,0.000990169512067833,0.000981458548789227,0.0009728445342696858,0.0009643261258588416,0.0009559020034427414,0.0009475708689972421,0.0009393314461518865,0.0009311824797635634,0.0009231227354998746,0.0009151509994320347,0.0009072660776367498,0.0008994667958072638,0.0008917519988730251,0.0008841205506278894,0.1294557719771939,0.12927622851980153,0.12874095196864377,0.12785983847146729,0.12664884615795288,0.1251292441810373,0.12332665774368917,0.12126998846627635,0.11899029190136207,0.11651968715134713,0.11389035977892803,0.11113370157521554,0.10827961227220577,0.10535597138095602,0.10238827458359961,0.09939941921673129,0.09640961734917329,0.09343641228626406,0.09049477428158491,0.08759725300330734,0.0847541671527331,0.08197381497213749,0.07926293619632833,0.07665943164111788,0.07418183370958717,0.07182209869293747,0.06957281867278235,0.06742716191084927,0.065378819678561,0.0634219587414722,0.06155117881998935,0.05976147443814678,0.05804820064939897,0.056407042194628595,0.05483398570415886,0.053316482674132526,0.05183650651421195,0.05039446518475816,0.04899091172536528,0.047626129343516184,0.04630016831885237,0.04501287949925234,0.0437639444794663,0.042552902609250515,0.041379175015763985,0.040242085847925935,0.03914088096206982,0.03807474427116096,0.037042811976287414,0.0360441848912533,0.035077939059857434,0.03414313485253238,0.03323882471488673,0.032364059726313545,0.0315178951124053,0.030699394841131253,0.029907635419433604,0.029141708994541164,0.02840072585285364,0.02768381639862672,0.026990132685196806,0.026318849562702144,0.025669165498488473,0.025040303119387902,0.02443150951878289,0.023842056365880132,0.02327123984965475,0.022718380485625304,0.0221828228097867,0.021663934980699507,0.02116110830775045,0.020673756721092992,0.020201316196480856,0.019743244146273674,0.019299018786206296,0.018868138486002897,0.01845012111068429,0.018044503358269966,0.01765084009864009,0.01726870371749583,0.01689768346865145,0.016537384837262175,0.01618742891610793,0.01584745179657009,0.01551710397557756,0.015196049779480277,0.014883966805508807,0.014580545381289113,0.014285488042647366,0.013998509029801879,0.013719333801902642,0.013447698569749535,0.01318334984646313,0.012926044015773852,0.012675546917559836,0.012431633450207662,0.01219408718934255,0.011962700022433046,0.011737271798782938,0.01151760999438449,0.011303529391117347,0.011094851769773196,0.010891405616378259,0.010693025841308606,0.01049955351068364,0.010310835589542907,0.010126724696318454,0.009947078868131492,0.009771761336446305,0.009600640312643367,0.00943358878307363,0.009270484313179317,0.009111208860280917,0.008955648594637815,0.008803693728418957,0.00865523835222075,0.008510180278791349,0.00836842089363543,0.008229865012179906,0.008094420743207096,0.007961999358262792,0.007832515166766418,0.007705885396560649,0.007582030079651847,0.007460871942897123,0.007342336303417085,0.0072263509685114935,0.007112846139872419,0.00700175432189824,0.006893010233916279,0.006786550726140074,0.006682314699185877,0.006580243026987499,0.0064802784829533335,0.006382365669219836,0.006286450948856162,0.00619248238089165,0.006100409658034323,0.006010184046960101,0.00592175833105813,0.00583508675551841,0.005750124974661386,0.005666830001405976,0.005585160158781807,0.005505075033396177,0.005426535430765724,0.005349503332435131,0.005273941854800777,0.005199815209566192,0.005127088665757331,0.005055728513231153,0.004985702027609664,0.004916977436581896,0.004849523887511701,0.004783311416296584,0.00471831091742475,0.004654494115176793,0.004591833535926933,0.004530302481494634,0.004469875003503281,0.004410525878704382,0.004352230585224743,0.004294965279701009,0.004238706775262668,0.004183432520329315,0.004129120578188318,0.0040757496073218,0.0040232988424501554,0.00397174807626579,0.003921077641827055,0.003871268395586327,0.0038223017010275743,0.0037741594128867387,0.0037268238619346866,0.003680277840298049,0.0036345045872977575,0.0035894877757843362,0.0035452114989515627,0.003501660257607409,0.003458818947887591,0.0034166728493920605,0.00337520761372919,0.0033344092534523086,0.0032942641313719115,0.00325475895023147,0.003215880742731255,0.003177616861887825,0.003139954971716152,0.003102883038222998,0.0030663893206982038,0.0030304623632950835,0.002995090986887401,0.002960264281193395,0.0029259715971574345,0.002892202539578409,0.0028589469599777403,0.0028261949496969797,0.0027939368332169584,0.002762163161691096,0.002730864706683799,0.0027000324541082876,0.0026696575983555476,0.002639731536608029,0.002610245863331453,0.0025811923649389098,0.002552563014619966,0.0025243499673306812,0.002496545554937624,0.0024691422815110438,0.0024421328187623904,0.002415510001620001,0.002389266823939818,0.002363396434345357,0.002337892132192915,0.002312747363658058,0.002287955717938338,0.002263510923569643,0.0022394068448513558,0.0022156374783771303,0.0021921969496675564,0.0021690795099018347,0.002146279532744086,0.0021237915112626397,0.0021016100549381173,0.0020797298867578267,0.0020581458403939844,0.0020368528574620454,0.0020158459848578707,0.001995120372170151,0.001974671269166253,0.001954494023348723,0.001934584077580867,0.0019149369677781106,0.001895548320664311,0.0018764138515901386,0.0018575293624117821,0.001838890739428456,0.0018204939513760093,0.0018023350474759775,0.0017844101555375975,0.0017667154801113596,0.0017492473006928205,0.0017320019699743614,0.0017149759121444527,0.0016981656212321603,0.0016815676594959573,0.001665178655855258,0.0016489953043637943,0.0016330143627227795,0.0016172326508337147,0.0016016470493888466,0.0015862544984984767,0.0015710519963541942,0.0015560365979264124,0.0015412054136959047,0.0015265556084179208,0.0015120843999179559,0.0014977890579183813,0.001483666902895123,0.0014697153049630328,0.0014559316827898415,0.0014423135025373665,0.0014288582768292924,0.0014155635637450596,0.001402426965838464,0.0013894461291811093,0.0013766187424293593,0.0013639425359143916,0.0013514152807548448,0.0013390347879909121,0.0013267989077399773,0.0013147055283726887,0.0013027525757090988,0.001290938012234263,0.0012792598363329476,0.0012677160815424348,0.0012563048158236085,0.0012450241408493061,0.00123387219130963,0.0012228471342339486,0.0012119471683286445,0.0012011705233308109,0.0011905154593770109,0.0011799802663868884,0.001169563263461146,0.0011592627982937467,0.0011490772465974541,0.0011390050115429858,0.0011290445232109837,0.0011191942380565862,0.0011094526383864667,0.0010998182318475121,0.0010902895509274984,0.001080865152466923,0.0010715436171819602,0.0010623235491983058,0.0010532035755952593,0.0010441823459603151,0.0010352585319536064,0.0010264308268820958,0.1457496953312044,0.14554570931533942,0.14493763223294284,0.1439369113571127,0.1425619923192288,0.1408374326147191,0.13879277698177472,0.1364612900537204,0.13387864402829572,0.13108165015373777,0.12810710565801714,0.12499080616483353,0.12176675134231726,0.11846655142685186,0.11511902618731723,0.11174997659348723,0.10838210281370526,0.10503503951382956,0.10172547981281123,0.09846736168221684,0.09527209417860956,0.09214880497203205,0.08911167019414543,0.08621223942572745,0.083451921922642,0.08082189193484292,0.07831401690073518,0.07592079283789725,0.07363528667509806,0.07145108468395586,0.06936224628202287,0.06736326257566724,0.06544901909350567,0.06361476223207406,0.06185606899591737,0.060168819666662474,0.05854196840376742,0.05695463922262519,0.0554066383510375,0.05389861950979637,0.052430953904096404,0.051003767667140584,0.0496169759742032,0.0482703138961879,0.04696336412016991,0.045695581704424,0.044466316061054105,0.04327483037336535,0.04212031866032813,0.04100192069923631,0.0399187350114235,0.03886983010652551,0.037854254169123525,0.03687104335876559,0.03591922888080411,0.0349978429720336,0.034105923931722834,0.03324252031595745,0.03240669440114534,0.031597525011260216,0.030814109793090218,0.03005556701417444,0.029321036949485055,0.02860968291510203,0.027920692000035198,0.027253275541112787,0.02660666938016234,0.025980133937737817,0.0253729541332042,0.024784439177074704,0.02421392225800209,0.023660760143842923,0.02312433271347975,0.022604042433770385,0.022099313793958134,0.021609592708039447,0.02113434589408582,0.020673060238111333,0.020225242148913258,0.01979041690929404,0.019368128028183874,0.01895793659739842,0.018559420656143338,0.018172174565767005,0.017795808396796033,0.01742994732987035,0.017074231071810563,0.016728313287785193,0.01639186105024496,0.016064554305093584,0.015746085355379247,0.015436158362612914,0.015134488865723104,0.014840803317519564,0.014554838638462428,0.014276341787458624,0.014005069349354875,0.01374078713872985,0.013483269819585144,0.013232300540476052,0.012987670584621042,0.012749179034513797,0.012516632450540714,0.012289844563127893,0.01206863597791518,0.011852833893475995,0.011642271831099211,0.011436789376163374,0.011236231930630931,0.011040450476220444,0.010849301347807705,0.010662646016628788,0.01048035088287375,0.010302287077260263,0.010128330271210262,0.009958360495247173,0.00979226196525638,0.009629922916265254,0.009471235443402146,0.009316095349724671,0.00916440200060383,0.009016058184373687,0.008870969978963843,0.0087290466242489,0.008590200399851165,0.008454346508158668,0.008321402962317889,0.008191290478977974,0.008063932375574312,0.007939254471941238,0.007817184996065546,0.007697654493789346,0.00758059574228617,0.007465943667140332,0.0073536352628694734,0.0072436095167312305,0.007135807335673657,0.007030171476283731,0.0069266464776025416,0.006825178596680296,0.006725715746746321,0.006628207437882893,0.006532604720088748,0.006438860128628655,0.006346927631569041,0.0062567625794011025,0.0061683216566647565,0.006081562835482501,0.005996445330922191,0.005912929558108818,0.005830977091011244,0.005750550622828535,0.00567161392791191,0.005594131825153379,0.005518070142779591,0.0054433956844925305,0.005370076196896912,0.005298080338164373,0.005227377647879081,0.005157938518016957,0.005089734165011813,0.005022736602860449,0.004956918617227765,0.0048922537405077255,0.004828716227801931,0.0047662810337781355,0.004704923790373749,0.004644620785307532,0.004585348941370051,0.0045270857964593535,0.004469809484332244,0.004413498716043971,0.004358132762046015,0.004303691434919346,0.00425015507271555,0.0041975045228829465,0.004145721126754273,0.004094786704575082,0.0040446835410495735,0.003995394371386623,0.003946902367824649,0.0038991911266176,0.003852244655465028,0.0038060473613674432,0.003760584038893159,0.0037158398588394643,0.0036718003572737174,0.0036284514249400215,0.0035857792970184813,0.00354377054322208,0.0035024120582210984,0.0034616910523811327,0.0034215950428037856,0.0033821118446595204,0.003343229562800222,0.0033049365836436205,0.0032672215673180717,0.003230073440058677,0.0031934813868465064,0.0031574348442803862,0.003121923493675147,0.003086937254376765,0.0030524662772872615,0.003018500938591796,0.0029850318336814047,0.0029520497712631796,0.0029195457676530682,0.002887511041243855,0.0028559370071423265,0.0028248152719705867,0.002794137628824366,0.002763896052384798,0.002734082694177006,0.002704689877971145,0.0026757100953213224,0.002647136001236561,0.0026189604099810947,0.0025911762909983154,0.0025637767649548554,0.002536755099900593,0.0025101047075412166,0.002483819139618544,0.002457892084396496,0.002432317363248219,0.0024070889273413968,0.002382200854418894,0.0023576473456706918,0.002333422722695423,0.0023095214245477296,0.0022859380048690144,0.0022626671290988808,0.002239703571764991,0.002217042213847968,0.00219467804022025,0.00217260613715557,0.002150821689907244,0.0021293199803533633,0.0021080963847059184,0.002087146371283094,0.002066465498341916,0.0020460494119695916,0.0020258938440321814,0.0020059946101778233,0.0019863476078941676,0.001966948814617379,0.0019477942858915876,0.0019288801535770933,0.0019102026241062287,0.0018917579767846469,0.001873542562137713,0.001855552800299915,0.001837785179446253,0.001820236254264631,0.001802902644467288,0.00178578103334113,0.0017688681663351102,0.0017521608496838027,0.0017356559490661104,0.001719350388298309,0.0017032411480597761,0.001687325264651402,0.0016715998287850052,0.0016560619844031511,0.0016407089275287208,0.0016255379051427082,0.0016105462140903466,0.0015957312000140827,0.0015810902563129444,0.00156662082312762,0.0015523203863501052,0.0015381864766578998,0.00152421666857153,0.0015104085795350198,0.0014967598690185419,0.0014832682376428948,0.001469931426324688,0.0014567472154423458,0.0014437134240218423,0.0014308279089418534,0.001418088564157909,0.0014054933199445676,0.0013930401421558035,0.0013807270315025853,0.001368552022847442,0.0013565131845154287,0.0013446086176213546,0.0013328364554122223,0.001321194862625272,0.0013096820348606159,0.0012982961979683223,0.001287035607449707,0.0012758985478719433,0.0012648833322963786,0.0012539883017196338,0.0012432118245273578,0.0012325522959604682,0.001222008137593091,0.001211577796822519,0.0012012597463703883,0.0011910524837950643,0.14104665434272004,0.14090644131608412,0.1404876686073087,0.13979586978283748,0.13884005338015365,0.13763239677039443,0.1361878458456151,0.13452364519268123,0.13265882592796607,0.13061367844063945,0.12840923520480915,0.12606678507053387,0.12360743564518482,0.12105173515097545,0.11841936004090034,0.11572887009067451,0.11299752892471265,0.11024118510304096,0.107474206992245,0.1047094635832073,0.10195834306167958,0.09923080112508809,0.09653543161086303,0.09387955281404496,0.0912693038070485,0.08870974604018837,0.08620496643254393,0.08377435110728423,0.08144413575406151,0.07920932657459717,0.07706474959695322,0.07500557902230785,0.07302730935469798,0.07112573010827275,0.06929690282236771,0.06753714014622798,0.06584298678252139,0.06421120210272728,0.06263874426835024,0.061122755710408545,0.05966054983557055,0.05824959884167919,0.05688519799867084,0.055551231864956044,0.05424551086237524,0.05296846706694116,0.05172038001264373,0.050501393751348905,0.04931153266762027,0.048150716056646316,0.047018771492724376,0.045915447030534594,0.04484042229198704,0.043793318498715136,0.04277370751475097,0.041781119966308206,0.04081505250609828,0.039874974288847585,0.03896033272293844,0.038070558560455624,0.03720507038501034,0.036363278553197396,0.035544588642039736,0.034748404451090516,0.0339741306041926,0.033221174792381125,0.032488949695896996,0.03177687462001257,0.03108437687626557,0.030410892937751097,0.02975586939439188,0.029118763731614813,0.028499044953492945,0.027896194069285105,0.027309704460369167,0.02673908214272466,0.026183845938577362,0.02564352756927112,0.025117671680146333,0.024605835806989256,0.024107590292541264,0.023622518160563176,0.023150214954115202,0.022690288543894467,0.022242358911789325,0.021806057914188375,0.021381029029000773,0.020966927089885304,0.020563418010706287,0.02017017850285873,0.019786895787761972,0.01941326730648296,0.01904900042822024,0.018693812159092344,0.018347428852490483,0.018009585922050077,0.017680027558142238,0.017358506448617368,0.017044783504437947,0.016738627590692924,0.0164398152634037,0.016148130512447737,0.015863364510832426,0.015585315370516916,0.015313787904891822,0.015048593397999287,0.014789549380522432,0.01453647941254824,0.014289212873057728,0.01404758475609949,0.013811435473553594,0.013580610664390992,0.013354961010316087,0.013134342057655339,0.012918614045369203,0.012707641739030941,0.012501294270626828,0.012299444984023123,0.012101971285934748,0.011908754502246122,0.01171967973951459,0.011534635751499486,0.011353514810555281,0.011176212583733839,0.011002628013430502,0.010832663202431394,0.010666223303201411,0.010503216411268728,0.01034355346256148,0.010187148134549559,0.010033916751062025,0.009883778190639856,0.009736653798295788,0.00959246730055473,0.009451144723654638,0.009312614314782417,0.009176806466239423,0.009043653642418886,0.00891309030949019,0.008785052867689085,0.008659479586107662,0.008536310539896208,0.008415487549778219,0.00829695412379139,0.00818065540117043,0.008066538098283497,0.00795455045655011,0.007844642192258371,0.007736764448210077,0.0076308697471226886,0.007526911946721082,0.007424846196450458,0.007324628895752382,0.007226217653839952,0.007129571250915476,0.007034649600776152,0.006941413714750361,0.006849825666918842,0.006759848560567156,0.006671446495823988,0.006584584538439033,0.006499228689658897,0.006415345857154879,0.006332903826967603,0.006251871236426575,0.00617221754800836,0.0060939130240991205,0.006016928702624379,0.005941236373517171,0.005866808555990265,0.005793618476583086,0.005721640047955567,0.0056508478483979115,0.005581217102033761,0.005512723659687868,0.005445343980395116,0.005379055113526559,0.0053138346815111755,0.005249660863128405,0.005186512377354563,0.005124368467739917,0.005063208887298188,0.005003013883890792,0.004943764186085131,0.004885440989473551,0.004828025943433601,0.00477150113831488,0.004715849093037796,0.004661052743087286,0.004607095428890814,0.0045539608845642215,0.004501633227014073,0.004450096945382938,0.004399336890827066,0.004349338266612228,0.004300086618519935,0.00425156782555069,0.004203768090915068,0.004156673933303117,0.004110272178420756,0.004064549950786433,0.0040194946657773085,0.003975094021917323,0.003931335993398455,0.0038882088228284,0.0038457010141947673,0.00380380132604139,0.0037624987648474206,0.0037217825786034753,0.003681642250578442,0.0036420674932692546,0.00360304824252967,0.003564574651870479,0.0035266370869262223,0.0034892261200833658,0.003452332525263068,0.003415947272855797,0.0033800615248011285,0.0033446666298087885,0.0033097541187160884,0.0032753156999781063,0.0032413432552848135,0.003207828835303057,0.00317476465553804,0.003142143092310975,0.0031099566788496745,0.0030781981014872473,0.003046860195967216,0.003015935943850542,0.002985418469021756,0.0029553010342910444,0.0029255770380898676,0.0028962400112558513,0.002867283613906051,0.00283870163239445,0.0028104879763517212,0.0027826366758049903,0.002755141878374152,0.002727997846543853,0.0027011989550077826,0.0026747396880834958,0.0026486146371959758,0.002622818498426826,0.002597346070128592,0.002572192250601236,0.002547352035829266,0.002522820517277736,0.002498592879745661,0.0024746643992742704,0.0024510304411097758,0.0024276864577180797,0.0024046279868503028,0.002381850649657975,0.0023593501488553604,0.0023371222669291373,0.002315162864392805,0.0022934678780851727,0.0022720333195113914,0.0022508552732257965,0.0022299298952544204,0.002209253411557279,0.0021888221165284284,0.0021686323715330294,0.0021486806034806583,0.0021289633034330263,0.0021094770252463074,0.0020902183842462286,0.002071184055935326,0.0020523707747317436,0.0020337753327379707,0.002015394578539658,0.0019972254160329976,0.001979264803280151,0.001961509751391908,0.0019439573234371328,0.001926604633377499,0.0019094488450278517,0.0018924871710408204,0.001875716871915202,0.0018591352550277592,0.0018427396736871624,0.0018265275262102961,0.0018104962550197965,0.0017946433457623854,0.0017789663264477509,0.001763462766606705,0.0017481302764690936,0.0017329665061601963,0.0017179691449154496,0.0017031359203129432,0.0016884645975234784,0.001673952978577085,0.001659598901646438,0.0016454002403461436,0.0016313549030476347,0.0016174608322095574,0.001603716003722601,0.0015901184262692377,0.001576666140697378,0.0015633572194078819,0.15918283939700112,0.15902276868182458,0.1585447313379802,0.15775517350514476,0.156664583279758,0.1552871258511955,0.15364016727749816,0.15174371694138195,0.14961982163753218,0.14729194413294822,0.14478435628849617,0.14212157207717022,0.1393278398624533,0.13642670688697736,0.1334406627383958,0.13039086310518905,0.12729693071599837,0.12417682709699056,0.12104678665974572,0.1179213035241942,0.11481316120410878,0.11173349563333658,0.10869188279317896,0.1056964432414597,0.10275395700260971,0.09986998344963104,0.09705147031611132,0.09433753211217666,0.09173551376389233,0.08923929648157755,0.08684317676288529,0.08454183285569367,0.08233029435051721,0.0802039145722349,0.0781583454794885,0.07618951481401402,0.07429360527168671,0.07246703549285083,0.07070644269192392,0.06900866676636981,0.06737073574228601,0.06578985242928212,0.06426338217089228,0.06278872430936894,0.06135144910522651,0.05994327799773185,0.058564751884246445,0.057216247997460605,0.05589799745243054,0.05461010158891254,0.05335254710416749,0.05212521999262656,0.05092791832504914,0.049760363911931914,0.04862221290452369,0.04751306539270878,0.046432474062321615,0.04537995197611873,0.04435497954269603,0.04335701073654776,0.04238547863065113,0.041439800300334534,0.04051938115428844,0.03962361874533968,0.03875190611019701,0.03790363468400186,0.03707819683204308,0.036274988037701544,0.035493408782447534,0.034732866150677826,0.033992775189221835,0.03327256004869788,0.03257165493129059,0.03188950486719584,0.031225566339816862,0.03057930777773409,0.029950209929728168,0.029337766137373274,0.02874148251824095,0.028160878071358326,0.027595484715312493,0.02704484726822677,0.02650852337787137,0.025986083409179524,0.02547711029565505,0.024981199360395067,0.024497958111768872,0.02402700601823178,0.02356797426617397,0.023120505504253493,0.02268425357722736,0.022258883251900428,0.021844069937503187,0.02143949940247628,0.02104486748938785,0.020659879829469756,0.02028425155805506,0.01991770703198429,0.019559979549933992,0.01921081107642383,0.018869951970161114,0.01853716071726795,0.018212203669812216,0.01789485479001859,0.017584895400418164,0.017282113940157877,0.016986305727618202,0.016697272729447942,0.016414823336066652,0.016138772143669763,0.015868939742719065,0.015605152512884076,0.01534724242437882,0.015095046845604088,0.014848408357014517,0.01460717457108859,0.014371197958287736,0.014140335678875645,0.013914449420453374,0.01369340524108067,0.013477073417827902,0.013265328300614176,0.013058048171178943,0.012855115107041253,0.012656414850284698,0.012461836681030881,0.012271273295442602,0.012084620688112656,0.01190177803869525,0.011722647602629886,0.011547134605828189,0.011375147143178298,0.011206596080737345,0.011041394961479822,0.010879459914477644,0.010720709567382159,0.010565064962097467,0.01041244947352085,0.010262788731241321,0.010116010544088202,0.009972044827418638,0.009830823533049506,0.009692280581729652,0.009556351798058879,0.009422974847763587,0.00929208917723498,0.009163635955251711,0.009037558016799148,0.008913799808907812,0.008792307338433983,0.008673028121711047,0.008555911135995463,0.00844090677264594,0.008327966791965194,0.008217044279643138,0.00810809360474183,0.008001070379159685,0.007895931418524842,0.007792634704459087,0.0076911393481624,0.007591405555267761,0.0074933945919200265,0.007397068752028484,0.007302391325654765,0.0072093265684893115,0.00711783967237689,0.007027896736853398,0.006939464741652346,0.00685251152014998,0.006767005733710326,0.006682916846898299,0.006600215103529502,0.006518871503522912,0.006438857780531021,0.0063601463803156354,0.0062827104398434875,0.006206523767074699,0.0061315608214202915,0.006057796694841208,0.005985207093569697,0.005913768320427502,0.005843457257720538,0.005774251350689905,0.005706128591496744,0.005639067503725601,0.00557304712738477,0.0055080470043872105,0.0054440471644956545,0.00538102811171289,0.005318970811105149,0.00525785667604066,0.0051976675558299094,0.005138385723753349,0.005079993865463706,0.005022475067748077,0.004965812807639802,0.004909990941866444,0.0048549936966224725,0.004800805657656728,0.004747411760661426,0.004694797281955412,0.004642947829449722,0.00459184933388633,0.004541488040341167,0.004491850499982631,0.004442923562075813,0.004394694366226138,0.004347150334853124,0.004300279165886713,0.004254068825679967,0.004208507542128618,0.004163583797993629,0.004119286324417885,0.004075604094631533,0.004032526317840358,0.003990042433289436,0.003948142104498823,0.003906815213663905,0.0038660518562159676,0.0038258423355374206,0.0037861771578276177,0.0037470470271126527,0.0037084428403969497,0.0036703556829502794,0.0036327768237268267,0.003595697710912317,0.003559109967593925,0.003523005387551033,0.0034873759311617046,0.0034522137214216568,0.003417511040072348,0.0033832603238351886,0.003349454160747285,0.0033160852865974934,0.003283146581458289,0.003250631066311071,0.0032185318997624934,0.0031868423748476465,0.003155555915919427,0.003124666075620084,0.003094166531932901,0.003064051085312137,0.0030343136558875503,0.0030049482807430992,0.0029759491112661854,0.0029473104105660988,0.002919026550959288,0.002891092011520062,0.002863501375693649,0.0028362493289713214,0.002809330656624658,0.0027827402414976154,0.0027564730618551375,0.002730524189285521,0.0027048887866565514,0.002679562106122719,0.002654539487182517,0.0026298163547842836,0.002605388217479602,0.002581250665621934,0.00255739936961055,0.002533830078177493,0.002510538616716643,0.0024875208856542327,0.002464772858858433,0.0024422905820884336,0.0024200701714808676,0.002398107812072875,0.0023763997563612032,0.0023549423228952818,0.0023337318949047375,0.002312764918959401,0.002292037903661307,0.0022715474183677676,0.002251290091944956,0.002231262611550333,0.0022114617214443774,0.0021918842218298412,0.0021725269677182546,0.0021533868678230575,0.002134460883477996,0.0021157460275810984,0.002097239363562783,0.002078938004377796,0.0020608391115204835,0.0020429398940621656,0.0020252376077109736,0.0020077295538928532,0.0019904130788534155,0.0019732855727801375,0.0019563444689445703,0.0019395872428633327,0.0019230114114784475,0.0019066145323557103,0.0018903942029009579,0.0018743480595940136,0.0018584737772390505,0.0018427690682320849,0.0018272316818443034,0.0018118594035212018,0.17969784482850484,0.17951445878307615,0.17896685393344078,0.17806259558044565,0.1768139841089484,0.1752376151425834,0.17335380672563566,0.1711859306747227,0.16875968861807844,0.16610237281499227,0.1632421481380527,0.16020738546230653,0.15702606914911887,0.15372529332646093,0.15033085408571525,0.14686693813761667,0.14335590324603845,0.13981814200615003,0.13627201819200585,0.1327338637870395,0.12921802468500154,0.12573694364682145,0.12230127017711062,0.11891998833071347,0.11560055491105012,0.11234904195576467,0.10919052307390419,0.10616220133353697,0.10325793008933459,0.10047096626851904,0.0977950221126539,0.0952242285796852,0.09275310214648845,0.09037651465446261,0.08808966588246185,0.0858880585678216,0.08376747562813185,0.08172395936425067,0.07975379244932605,0.07785348053023289,0.07601973628642761,0.07424946480796213,0.07253975016898322,0.07088784308589621,0.06929114956098785,0.067743740638506,0.06622815979901564,0.06474289280888758,0.0632884468691034,0.06186517060688614,0.06047327094033943,0.05911282878154729,0.057783813579535694,0.05648609672281403,0.055219463835233365,0.053983626009410104,0.05277823002930634,0.05160286763849913,0.05045708391353501,0.049340384802925276,0.04825224389236902,0.047192108455614674,0.04615940484857848,0.0451535433020053,0.04417392216510402,0.04321993164972622,0.042290957121417914,0.041386381980552195,0.04050559017358568,0.039647968371411074,0.03881290784873721,0.03799980609568517,0.03720806818998623,0.03643710795569553,0.03568634893195605,0.034955225173100346,0.03424318189941098,0.03354967601591694,0.03287417651490203,0.03221616477622476,0.031575134778102726,0.030950593229676016,0.030342059635522656,0.029749066301161718,0.029171158287629416,0.02860789332233186,0.0280588416725439,0.027523585987264978,0.02700172111243451,0.026492853883967167,0.025996602902541157,0.02551259829357973,0.02504048145549799,0.024579904798863187,0.02413053147881666,0.023692035122789,0.023264099555297284,0.022846418521337293,0.022438695409731126,0.02204064297755081,0.02165198307660494,0.0212724463828235,0.02090177212923064,0.020539707843112737,0.02018600908785599,0.019840439209858785,0.01950276909083852,0.019172776905792915,0.018850247886794867,0.018534974092780866,0.01822675418541723,0.017925393211103154,0.017630702389140305,0.01734249890604769,0.017060605716009085,0.016784851347384735,0.016515069715223724,0.01625109993969124,0.015992786170301806,0.015739977415863037,0.015492527380001092,0.015250294302145953,0.015013140803846114,0.014780933740280767,0.014553544056823303,0.014330846650530468,0.014112720236405418,0.013899047218299904,0.01368971356431723,0.013484608686568395,0.01328362532515619,0.013086659436241715,0.012893610084064705,0.012704379336783863,0.012518872166012922,0.012336996349918871,0.012158662379769156,0.011983783369801682,0.011812274970302778,0.011644055283782763,0.011479044784131549,0.011317166238657576,0.011158344632898845,0.011002507098108084,0.01084958284131812,0.010699503077885676,0.010552200966432303,0.010407611546088132,0.010265671675956036,0.010126319976713422,0.009989496774276099,0.009855144045440804,0.009723205365441663,0.009593625857344279,0.009466352143210014,0.009341332296968182,0.009218515798925813,0.009097853491863086,0.00897929753864851,0.008862801381321029,0.008748319701584847,0.008635808382660959,0.008525224472450745,0.008416526147959118,0.008309672680932027,0.008204624404663186,0.008101342681928945,0.007999789874005058,0.00789992931073176,0.007801725261584155,0.007705142907713092,0.007610148314921595,0.0075167084075396535,0.00742479094316946,0.0073343644882656305,0.0072453983945219335,0.007157862776034778,0.007071728487216867,0.0069869671014303894,0.0069035508903191305,0.00682145280381026,0.00674064645076364,0.006661106080246503,0.006582806563407844,0.006505723375936015,0.00642983258107525,0.006355110813183013,0.006281535261808695,0.006209083656276625,0.006137734250752526,0.006067465809780977,0.005998257594274157,0.005930089347937699,0.005862941284118735,0.005796794073059776,0.00573162882954729,0.005667427100939315,0.005604170855559874,0.005541842471448515,0.005480424725450485,0.005419900782639225,0.005360254186057909,0.005301468846769597,0.005243529034206065,0.005186419366805667,0.0051301248029288135,0.005074630632044451,0.005019922466176722,0.004965986231603499,0.004912808160799825,0.004860374784615463,0.004808672924682283,0.004757689686041481,0.004707412449984509,0.004657828867101183,0.004608926850526586,0.004560694569382702,0.004513120442406929,0.004466193131761884,0.004419901537020825,0.004374234789323706,0.0043291822456964875,0.0042847334835313085,0.004240878295220399,0.004197606682939552,0.00415490885357724,0.0041127752138027645,0.004071196365271848,0.004030163099963355,0.003989666395643938,0.003949697411456474,0.0039102474836290166,0.003871308121299142,0.0038328710024522037,0.003794927969968471,0.003757471027776343,0.0037204923371091077,0.00368398421286041,0.0036479391200375764,0.0036123496703084515,0.0035772086186393343,0.0035425088600218617,0.003508243426284718,0.003474405482989693,0.00344098832640803,0.003407985380575415,0.003375390194423014,0.003343196438983,0.0033113979046649816,0.0032799884986030397,0.0032489622420701567,0.003218313267958381,0.003188035818323303,0.0031581242419898626,0.0031285729922192335,0.0030993766244339204,0.003070529793999935,0.0030420272540641804,0.003013863853446037,0.0029860345345804513,0.0029585343315126204,0.0029313583679417094,0.0029045018553125975,0.002877960090954672,0.0028517284562653506,0.0028258024149384886,0.0028001775112353145,0.002774849368297296,0.0027498136864998386,0.0027250662418449273,0.0027006028843928895,0.0026764195367312707,0.00265251219248019,0.0026288769148330258,0.002605509835132046,0.0025824071514768216,0.0025595651273660615,0.0025369800903709346,0.002514648430839323,0.00249256660063062,0.0024707311118791716,0.0024491385357870515,0.0024277855014442954,0.0024066686946763397,0.002385784856917861,0.0023651307841125904,0.0023447033256376484,0.002324499383252904,0.0023045159100737902,0.0022847499095673914,0.002265198434571337,0.0022458585863342107,0.002226727513577971,0.0022078024115809954,0.0021890805212815704,0.002170559128401492,0.0021522355625885467,0.002134107196578394,0.00211617144537466,0.0020984257654470015,0.2029258024404346,0.20271483007025545,0.2020849371202596,0.20104508023813006,0.19960980962605387,0.19779873167900425,0.1956358110431483,0.19314855882122725,0.19036715756202302,0.18732357270163727,0.18405069500691754,0.1805815504724823,0.1769486043796714,0.17318317612015102,0.16931497196585923,0.16537173495912694,0.16137900489033238,0.15735997702325857,0.1533354456914085,0.14932381785678922,0.14534118186337294,0.14140141759006786,0.13751633570534866,0.13369583548985323,0.12994807253005047,0.12628505689307995,0.12276145407695827,0.11938334370076033,0.11614274665243322,0.1130322276689074,0.11004485119622728,0.10717414139188393,0.10441404582931436,0.10175890251686683,0.0992034098883848,0.0967425994623834,0.09437181090101139,0.09208666923029404,0.08988306400940951,0.0877571302602125,0.08570523098835554,0.08372394114554833,0.08181003289826423,0.07996046208226694,0.07817235573475073,0.07644300060691465,0.07476983256952448,0.07314258805893724,0.07154624384956937,0.06998114551152707,0.06844779553343418,0.06694654086836611,0.06547758918383645,0.06404102400830107,0.06263681877688752,0.061264849795597744,0.05992490815575242,0.058616710639949214,0.05733990966753088,0.05609410233200946,0.054878838585633936,0.053693628627385956,0.05253794955071451,0.05141125130647125,0.050312962034779134,0.04924249281763921,0.048199241901444104,0.04718259843597666,0.046191945773611374,0.04522666436953857,0.04428613432094296,0.04336973758028561,0.042476859875033905,0.04160689236359105,0.04075923305468356,0.03993328801505542,0.03912847238818652,0.038344211244613687,0.03757994028255793,0.03683510639577511,0.036109168123937094,0.03540159599929366,0.03471187280208424,0.03403949373582377,0.0333839665324933,0.03274481149663265,0.03212156149632995,0.03151376190833963,0.030920970523697893,0.030342757419558164,0.0297787048023287,0.02922840682659807,0.028691469393877324,0.0281675099346718,0.02765615717701727,0.02715705090423258,0.026669841704319328,0.026194190713113297,0.0257297693530796,0.025276259069350895,0.02483335106443093,0.024400746032793273,0.02397815389641315,0.023565293542166358,0.023161892561848887,0.022767686995486945,0.022382421078485197,0.02200584699308449,0.021637724624492146,0.021277821322016718,0.02092591166543706,0.02058177723680138,0.020245206397806456,0.01991599407283851,0.019593941537763247,0.01927885621447769,0.018970551471236146,0.018668846428730915,0.018373565771877366,0.018084539567259302,0.01780160308615174,0.017524596633037803,0.017253365379524804,0.01698775920355819,0.016727632533811494,0.016472844199149423,0.016223257283034302,0.015978738982752178,0.015739160473338683,0.01550439677606406,0.015274326631365204,0.01504883237608377,0.014827799824887841,0.014611118155749045,0.014398679799352495,0.014190380332306674,0.01398611837404461,0.013785795487285948,0.013589316081946906,0.013396587322385507,0.013207519037861824,0.013022023636114936,0.012840016019942236,0.012661413506679311,0.012486135750482522,0.012314104667310016,0.012145244362514072,0.011979481060947152,0.0118167430394947,0.011656960561946967,0.01150006581613041,0.011345992853209075,0.01119467752908918,0.011046057447842561,0.010900071907079966,0.010756661845204869,0.010615769790474386,0.010477339811809512,0.010341317471285558,0.010207649778244619,0.010076285144969662,0.009947173343866968,0.009820265466096045,0.00969551388160209,0.009572872200494893,0.009452295235727003,0.009333738967026568,0.00921716050603322,0.00910251806260197,0.00898977091222634,0.00887887936454355,0.008769804732883442,0.008662509304819484,0.00855695631369205,0.008453109911064653,0.008350935140081409,0.008250397909693405,0.008151464969724482,0.008054103886742405,0.007958283020712732,0.007863971502403404,0.007771139211514738,0.007679756755511202,0.007589795449125619,0.007501227294518223,0.007414024962063267,0.007328161771742733,0.007243611675127596,0.007160349237921891,0.007078349623055777,0.0069975885743045465,0.006918042400416862,0.006839687959734703,0.0067625026452891,0.00668646437035245,0.00661155155443595,0.006537743109713957,0.006465018427862012,0.006393357367295252,0.006322740240791057,0.00625314780348676,0.006184561241237263,0.006116962159321131,0.00605033257148401,0.005984654889308369,0.005919911911896892,0.005856086815862259,0.005793163145610674,0.005731124803910588,0.005669956042737878,0.005609641454386204,0.0055501659628370385,0.005491514815378741,0.005433673574467241,0.005376628109821425,0.005320364590743348,0.0052648694786593215,0.005210129519872238,0.005156131738519631,0.005102863429730445,0.0050503121529752925,0.004998465725601771,0.004947312216552037,0.004896839940254743,0.004847037450686534,0.004797893535598796,0.004749397210902071,0.0047015377152063165,0.004654304504510144,0.004607687247035028,0.004561675818200156,0.0045162602957340816,0.00447143095491723,0.004427178263953967,0.004383492879468136,0.004340365642119199,0.004297787572335941,0.0042557498661622796,0.004214243891214392,0.004173261182743899,0.004132793439804844,0.004092832521521506,0.004053370443452841,0.004014399374052737,0.003975911631221555,0.003937899678947116,0.0039003561240321645,0.00386327371290663,0.003826645328520342,0.003790463987316395,0.0037547228362808448,0.0037194151500674136,0.003684534328195371,0.003650073892317141,0.0036160274835554495,0.003582388859906784,0.0035491518937098144,0.0035163105691765712,0.0034838589799855504,0.0034517913269332444,0.0034201019156445893,0.003388785154339171,0.0033578355516521653,0.0033272477145089223,0.0032970163460503904,0.003267136243609795,0.003237602296737728,0.0032084094852749792,0.0031795528774719935,0.003151027628152594,0.003122828976922438,0.003094952246419617,0.003067392840606959,0.0030401462431045912,0.003013208015562269,0.0029865737960691895,0.0029602392976018376,0.00293420030650776,0.0029084526810246665,0.0028829923498342232,0.0028578153106487347,0.0028329176288310848,0.0028082954360460805,0.002783944928942826,0.002759862367867486,0.0027360440756048114,0.002712486436148898,0.002689185893501499,0.0026661389504975992,0.0026433421676573306,0.002620792162064051,0.002598485606266923,0.002576419227208589,0.0025545898051764796,0.002532994172777341,0.0025116292139348234,0.0024904918629085684,0.0024695791033354795,0.002448887967291761,0.002428415534375491,0.22925618370412115,0.2290122800207084,0.2282841882165534,0.22708262180921907,0.22542496705286014,0.22333461606600907,0.22084010349594022,0.21797410670887898,0.2147723739934808,0.21127264335434282,0.2075136072270168,0.203533967497802,0.19937161238183312,0.19506293369131145,0.19064229115325088,0.18614162058994688,0.18159017538070304,0.1770143857172551,0.17243781751070414,0.16788121200780232,0.16336258776944673,0.15889738820524657,0.1544986599547617,0.15017724974295085,0.14594203197099542,0.14184302425690357,0.13791472374074265,0.13414767908946376,0.1305330896531615,0.12706275210415802,0.12372901213706962,0.12052472068647843,0.11744319418373834,0.11447817843112267,0.11162381572033703,0.10887461486539499,0.10622542385726132,0.10367140488042813,0.10120801146014385,0.09883096753449586,0.09653624826753145,0.09432006243923195,0.09217883626545734,0.0901091985161543,0.08810796681375047,0.08617213500558478,0.08429886151486415,0.08248545858417211,0.08072938233386348,0.07901887484224632,0.0773396584630452,0.07569229993629162,0.07407732770574713,0.07249511567365657,0.07094589890258948,0.06942978828427844,0.06794678417552345,0.06649678901665958,0.06507961895987573,0.06369501454364644,0.062342650456115735,0.06102214443464572,0.05973306535157753,0.05847494053760786,0.05724726239445666,0.05604949434800281,0.054881076191731104,0.05374142886863121,0.05262995873761064,0.05154606136811496,0.050489124904117604,0.049458533036176956,0.04845366761753556,0.0474739109577731,0.04651864782498354,0.04558726718501062,0.044679163704049236,0.043793739038642934,0.0429304029351003,0.0420885741584103,0.04126768126893917,0.04046716326348293,0.03968647009577731,0.038925063090057624,0.03818241526000081,0.03745801154416984,0.03675134896794267,0.03606193674097787,0.03538929629827328,0.034732961292088256,0.03409247754124349,0.03346740294358318,0.03285730735683369,0.032261772452467155,0.031680391546706085,0.031112769412333496,0.03055852207458002,0.0300172765939487,0.029488670838559054,0.028972353248248647,0.028467982592412955,0.02797522772334577,0.027493767326577965,0.02702328966958344,0.026563492349989087,0.026114082044306965,0.0256747742580568,0.025245293078033332,0.024825370927339652,0.024414748323754155,0.02401317364186617,0.023620402879371418,0.023236199427840585,0.0228603338482014,0.02249258365115511,0.022132733082666164,0.021780572914644823,0.021435900240905453,0.021098518278434546,0.020768236174006922,0.02044486881613475,0.020128236652329587,0.019818165511637734,0.019514486432396626,0.019217035495132512,0.018925653660537764,0.01864018661242702,0.01836048460558243,0.018086402318389858,0.01781779871014979,0.01755453688296876,0.01729648394810791,0.017043510896678764,0.016795492474569934,0.01655230706149369,0.016313836554024626,0.016079966252530786,0.015850584751870195,0.015625583835744333,0.015404858374599519,0.015188306226954558,0.01497582814406168,0.014767327677782395,0.014562711091578497,0.014361887274519224,0.014164767658195626,0.013971266136457295,0.013781298987868536,0.013594784800794577,0.013411644401027841,0.013231800781871103,0.013055179036583955,0.012881706293122783,0.012711311651086368,0.012543926120792973,0.012379482564417163,0.01221791563910749,0.01205916174202402,0.01190315895722284,0.011749847004323953,0.011599167188899617,0.011451062354524588,0.011305476836423922,0.011162356416669572,0.011021648280865205,0.01088330097626872,0.010747264371303623,0.010613489616404145,0.010481929106154975,0.010352536442673968,0.01022526640019614,0.010100074890818033,0.009976918931356582,0.009855756611290034,0.00973654706173795,0.00961925042544562,0.009503827827737218,0.00939024134840555,0.00927845399450104,0.009168429673994933,0.00906013317028115,0.008953530117490024,0.00884858697658614,0.00874527101221982,0.008643550270311138,0.008543393556337377,0.008444770414301079,0.008347651106356385,0.008252006593067497,0.008157808514282643,0.008065029170598776,0.007973641505398352,0.007883619087438398,0.007794936093974522,0.007707567294398144,0.007621488034374657,0.007536674220461898,0.007453102305194009,0.007370749272616558,0.0072895926242540635,0.0072096103655003895,0.007130780992414475,0.007053083478909318,0.006976497264320856,0.0069010022413455475,0.006826578744331356,0.006753207537914779,0.0066808698059895805,0.006609547140997249,0.006539221533530155,0.006469875362233989,0.006401491384003817,0.006334052724461489,0.0062675428687064185,0.0062019456523316335,0.006137245252694245,0.006073426180435614,0.006010473271240886,0.005948371677830927,0.0058871068621797655,0.005826664587950644,0.005767030913141867,0.005708192182939159,0.005650135022765373,0.0055928463315226,0.005536313275021269,0.005480523279588225,0.0054254640258514,0.0053711234426933215,0.005317489701369266,0.005264551209784708,0.0052122966069281275,0.005160714757452278,0.005109794746402398,0.005059525874084617,0.005009897651071383,0.004960899793340132,0.004912522217539486,0.004864755036381673,0.004817588554155685,0.0047710132623579255,0.004725019835437865,0.004679599126653276,0.004634742164034232,0.004590440146451158,0.004546684439784295,0.004503466573191691,0.004460778235473367,0.0044186112715271795,0.004376957678896305,0.00433580960440353,0.004295159340870948,0.00425499932392281,0.004215322128867701,0.004176120467659986,0.004137387185936568,0.004099115260127577,0.0040612977946386675,0.004023928019103583,0.003986999285703371,0.003950505066552681,0.003914438951149451,0.003878794643887035,0.0038435659616273747,0.0038087468313320735,0.0037743312877518416,0.0037403134711711593,0.003706687625207227,0.0036734480946620973,0.003640589323425296,0.003608105852427273,0.0035759923176410524,0.003544243448131284,0.0035128540641492807,0.0034818190752732596,0.003451133478591473,0.003420792356928587,0.0033907908771130513,0.003361124288284748,0.0033317879202422636,0.0033027771818275667,0.003274087559348634,0.0032457146150380216,0.0032176539855466426,0.003189901380472332,0.003162452580921212,0.003135303438102353,0.0031084498719539454,0.0030818878698004983,0.0030556134850401825,0.0030296228358619617,0.003003912103990682,0.0029784775334608894,0.00295331542941751,0.002928422156943102,0.0029037941399114218,0.0028794278598654986,0.0028553198549211133,0.0028314667186938604,0.0028078650992497977 +0.11659164125434844,0.11636731549234791,0.11569614290357288,0.11459402218558218,0.11314154253794602,0.11129325306910579,0.10937684510803666,0.1072842141691753,0.10502606504108822,0.10260639776606995,0.10006445518409518,0.09743971633698484,0.09476502570997154,0.09206750797501619,0.08936937755024212,0.08668678394939976,0.08382729778326656,0.08101469158772763,0.07830199476987607,0.0756144634646518,0.07307062317155964,0.0706728633325947,0.06838812152298032,0.06620650616026134,0.06380970138313706,0.061457018343379986,0.05918977257806805,0.05702307295804268,0.05497623791600716,0.05308932382394407,0.05140466022220925,0.04991002018883119,0.04847529750867822,0.047110304803041514,0.045797006832465854,0.04453429398384636,0.04302472270633672,0.041165995432328094,0.039409746117769706,0.03775465293547821,0.036200011429284015,0.03481458652783546,0.03369980356050459,0.0327154583145389,0.03177283671155043,0.03086993109439798,0.03000480506647775,0.02920457339525512,0.028602251157579188,0.027997795802132942,0.027391318316894588,0.026782922457068217,0.026172705296285542,0.02555560650439915,0.02493479804071503,0.024312405835400546,0.023688505755665865,0.023063169067245353,0.0224785594243312,0.021966378012402057,0.02145317939794813,0.020939009177941583,0.020423910344055843,0.019915799178332538,0.019507142444130564,0.019097842436246498,0.018687926208066873,0.018277419355067024,0.01786634610916684,0.017545723848799977,0.017243621192696,0.016941151270213336,0.01663832844046511,0.016335166339618044,0.01606273322023891,0.015809143987348073,0.01555530243940384,0.015301217887020647,0.01504689919693839,0.014821180777782817,0.014632153267732593,0.014442969977634704,0.014253636347032222,0.01406415756942521,0.01388081293705748,0.013713326375805308,0.01354572426542841,0.013378010433328761,0.013210188542327691,0.013044975892334542,0.012895777595780328,0.012746492304052363,0.012597122757025523,0.012447671582355485,0.012298495231191784,0.012164668376540013,0.012030775002065877,0.011896817104114046,0.01176279660100407,0.011628715336762668,0.011512535877283167,0.011397993758244757,0.011283404148122605,0.01116876839565616,0.01105408779963572,0.010949965584171507,0.01084817482648283,0.010746347504989498,0.010644484613508204,0.01054258711060288,0.01046271488060375,0.010390963436055518,0.010319189520953181,0.01024739372087242,0.010175576601462597,0.01010725398910178,0.010040790111800283,0.009974307982075072,0.009907808056733223,0.009841290777648047,0.009742183727889117,0.009619530581522954,0.009496847740961495,0.009374135921052268,0.009251395814159152,0.009135176892196162,0.00902507394311108,0.008914947379806018,0.008804797749916065,0.008694625584484354,0.008591982701030254,0.008498287672952206,0.008404574762138087,0.008310844368659661,0.008217096880899966,0.008126671890266054,0.008041172652763169,0.007955658832574309,0.007870130744842352,0.007784588695820214,0.007696056403111205,0.00760207546265935,0.007508080142278587,0.007414070742536844,0.007320047555806741,0.0072287598909209225,0.0071436208227732825,0.007058470025848237,0.006973307737544506,0.006888134188997171,0.006807105529427336,0.006737489774960816,0.006667865356941821,0.006598232445374905,0.006528591205920541,0.006458941800033539,0.006389284385094206,0.006319619114536627,0.006249946137971208,0.006180265601302623,0.006110577646844478,0.006040882413427858,0.0059711800365077825,0.005901470648264931,0.005831754377703948,0.005762031350747912,0.005692301690330594,0.005622565516483398,0.005552822946421256,0.005483074094624543,0.005413319072918164,0.005343557990548858,0.005273790954257942,0.005204018068353537,0.005134239434779304,0.00506693478212997,0.005021702939700523,0.0049764675615636645,0.004931228708078573,0.00488598643827422,0.004840740809885699,0.004795491879389429,0.004750239702037828,0.004704984331891581,0.004659725821852182,0.004614464223692758,0.004569199588088051,0.00452393196464335,0.004478661401923125,0.004433387947477493,0.004388111647869141,0.004342832548698781,0.0042975506946298,0.004252266129412804,0.004206978895908175,0.0041616890361091275,0.004116396591163528,0.00407110160139499,0.0040258041063240225,0.003980504144687229,0.003935201754457252,0.003898963132835512,0.003862845641830175,0.00382672630212825,0.0037906051417099388,0.0037544821880168182,0.003718357467965216,0.003682231007958687,0.003646102833900135,0.0036099729712041075,0.003573841444807711,0.003537708279182241,0.0035015734983439776,0.0034654371258646924,0.003429299184882356,0.0033931596981105375,0.0033570186878485657,0.003320876175990901,0.003284732184036352,0.0032485867330969424,0.0032124398439070485,0.003176291536831278,0.003140141831873145,0.0031039907486829937,0.0030678383065657513,0.0030316845244889546,0.003005335628767795,0.002980002738049038,0.002954668946990959,0.0029293342679871937,0.0029039987132193665,0.002878662294661945,0.0028533250240862663,0.0028279869130651246,0.0028026479729769452,0.0027773082150098125,0.002751967650165755,0.002726626289264243,0.0027012841429462755,0.0026759412216780143,0.0026505975357543525,0.0026252530953027177,0.002599907910286103,0.0025745619905066953,0.002549215345609109,0.0025238679850835676,0.0024985199182689503,0.002473171154356144,0.002447821702390569,0.0024224715712753866,0.00239712076977424,0.002377457045604641,0.0023588067512780343,0.002340155982527009,0.002321504745407897,0.002302853045884112,0.0022842008898279506,0.0022655482830223022,0.0022468952311625904,0.0022282417398581385,0.002209587814634015,0.0021909334609326123,0.0021722786841151484,0.002153623489463414,0.0021349678821809648,0.0021163118673947967,0.0020976554501567247,0.002078998635444739,0.0020603414281645757,0.0020416838331507614,0.002023025855168108,0.002004367498912968,0.001985708769014476,0.0019670496700357164,0.001948390206475151,0.0019297303827674635,0.0019149676269607475,0.0019011313563419231,0.0018872948282739883,0.0018734580458649097,0.0018596210121794522,0.0018457837302400945,0.0018319462030277325,0.0018181084334824165,0.0018042704245040367,0.0017904321789531641,0.0017765936996515146,0.0017627549893827813,0.0017489160508932476,0.0017350768868923919,0.0017212375000536814,0.001707397893014954,0.0016935580683791842,0.0016797180287150316,0.0016658777765573916,0.0016520373144081138,0.001638196644736332,0.0016243557699791664,0.0016105146925422208,0.0015966734148001053,0.12972392885713532,0.12947479680385612,0.12872942261960565,0.12749379105600128,0.12584433933316166,0.12379212837262438,0.1215237994530271,0.11919203460046845,0.11666387556220884,0.11395099496153963,0.11110543345747007,0.10817074227563488,0.1051831273460811,0.10217246274055508,0.09916318818040688,0.0961751017523168,0.09322677731864742,0.09028892637049196,0.0872516503599081,0.08423747679642417,0.08141097849329428,0.07872896704280787,0.07617450680452921,0.07376264495972314,0.07113278393164708,0.06851247492511557,0.0659865372872565,0.06359037598922421,0.06141735369473018,0.059487312903800826,0.05774267777861237,0.056063176920279886,0.05446176030550592,0.05292693877545227,0.05145017012928359,0.0500302294438212,0.04842906305915952,0.04633407289919139,0.04435723561990123,0.0425052945096094,0.04085160963168863,0.039523045593948904,0.038351170362664756,0.037229258839264846,0.03615494921514958,0.03512594998932714,0.03414005089509336,0.03319862318766717,0.03250367692121136,0.03180622808938875,0.03110640704334802,0.030404335636688328,0.02970012787267092,0.028979947926067017,0.028247656740035855,0.02751346724699959,0.02677747049596646,0.026039752009836575,0.025337552036672307,0.024762539799425217,0.024186367712869326,0.023609087836409987,0.023030749252319044,0.022451398268894807,0.021995900048651987,0.021549011797773143,0.02110144057036991,0.02065321477290358,0.020204361297019743,0.01983526117925119,0.0195029701605877,0.019170269231259512,0.018837174439281634,0.018503701023834817,0.018192414126621207,0.01790600620074813,0.017619309213684417,0.017332333846278268,0.01704509026962117,0.016779141478461154,0.016565636626940286,0.016351953352650276,0.016138097893981473,0.01592407620683351,0.015713227259670844,0.015524134446547648,0.015334909384006003,0.015145556458272202,0.014956079866751416,0.014766483627932788,0.014597797239490798,0.014429157706502799,0.01426042171551381,0.014091592278509094,0.01392267228514129,0.013769177430613512,0.013617919967396754,0.01346658865019622,0.013315185677406168,0.01316371316218745,0.013029062173187942,0.012899661698936695,0.01277020687592237,0.0126406992494656,0.012511140307595413,0.012398702161925238,0.012294946428551341,0.012191152948535337,0.012087322749018655,0.011983456820669069,0.011892485886502886,0.011811032657488781,0.011729553597676868,0.011648049380955735,0.011566520658258238,0.011488004822394704,0.011412552705328021,0.011337079609390776,0.011261586060187704,0.011186072566122791,0.01108352773116534,0.010944285338220566,0.01080500882007709,0.01066569899910181,0.010526356671770135,0.010393307074752276,0.010271526281217086,0.010149719051153213,0.010027885998258327,0.009906027717618164,0.00978874262697029,0.009682195632596627,0.009575628057796642,0.009469040363436067,0.009362432996902656,0.009258112877211457,0.009160884810794169,0.00906363996361465,0.008966378698651946,0.008869101368635925,0.008769942675176032,0.008663068345337172,0.008556177469688913,0.008449270394375761,0.00834234745609546,0.008237162367950157,0.008141961174252853,0.00804674671209869,0.007951519250277737,0.007856279050481633,0.007762877518044211,0.007684914931629421,0.0076069425302500195,0.007528960506660204,0.007450969048684351,0.007372968339374121,0.007294958557157518,0.007216939875984542,0.007138912465466318,0.007060876491009105,0.0069828321139444975,0.006904779491652627,0.00682671877768314,0.00674865012187069,0.006670573670446462,0.006592489566145606,0.00651439794831181,0.006436298952996165,0.006358192713054587,0.0062800793582408684,0.006201959015296448,0.006123831808038156,0.006045697857440859,0.005967557281719358,0.005889410196406485,0.005811256714428801,0.005758307665166395,0.005706983585917022,0.005655655519239893,0.005604323532902234,0.005552987693184653,0.005501648064921555,0.005450304711541013,0.0053989576951019155,0.00534760707633133,0.005296252914659951,0.005244895268256617,0.005193534194061519,0.00514216974781914,0.005090801984108693,0.005039430956375061,0.00498805671695805,0.00493667931712076,0.004885298807077756,0.004833915236021021,0.004782528652146473,0.004731139102679008,0.004679746633896786,0.0046283512911555165,0.004576953118910521,0.0045255521607396945,0.004482341765449737,0.004440885347273934,0.004399426783758022,0.004357966107383943,0.004316503350007854,0.004275038542875673,0.004233571716637589,0.004192102901362165,0.004150632126550604,0.004109159421149448,0.004067684813564129,0.004026208331671478,0.003984730002831958,0.003943249853902105,0.003901767911245444,0.0038602842007443433,0.0038187987478108462,0.003777311577397435,0.003735822714007313,0.0036943321817050198,0.003652840004125618,0.0036113462044847274,0.003569850805587797,0.0035283538298390657,0.0034868552992508967,0.00345438750407327,0.0034250632487232836,0.0033957379398094787,0.0033664115918360456,0.0033370842190588654,0.0033077558354911983,0.0032784264549084036,0.003249096090853306,0.003219764756641102,0.003190432465364067,0.0031610992298965936,0.0031317650628992716,0.0031024299768236813,0.0030730939839166667,0.0030437570962244987,0.0030144193255973407,0.002985080683692791,0.002955741181980159,0.0029264008317442204,0.0028970596440889653,0.0028677176299411714,0.0028383748000543117,0.0028090311650115357,0.002779686735229415,0.0027503415209611513,0.0027264543294190117,0.0027050948072330576,0.0026837347357703753,0.002662374122041038,0.0026410129729474924,0.0026196512952866313,0.0025982890957517817,0.0025769263809349453,0.0025555631573283997,0.0025341994313268336,0.0025128352092291476,0.0024914704972402325,0.002470105301472978,0.002448739627949648,0.0024273734826038332,0.0024060068712820474,0.0023846397997452935,0.002363272273670887,0.0023419042986536675,0.0023205358802077325,0.002299167023767879,0.002277797734691067,0.002256428018257754,0.002235057879673544,0.0022136873240701854,0.002195862454638123,0.0021800161680345332,0.002164169583319935,0.002148322704090657,0.002132475533892981,0.002116628076224228,0.0021007803345335545,0.002084932312222827,0.0020690840126473893,0.002053235439117063,0.002037386594896674,0.002021537483207008,0.0020056881072255395,0.0019898384700871145,0.001973988574884886,0.001958138424670744,0.0019422880224562095,0.0019264373712130699,0.001910586473874005,0.0018947353333334481,0.001878883952447933,0.0018630323340369322,0.0018471804808834246,0.0018313283957345004,0.1444367818038963,0.14415994771689153,0.1433317146039842,0.1419587979149677,0.1400667113614984,0.13778689291143145,0.13509391885641525,0.13250419912948946,0.12965915496339842,0.12661309944011975,0.12342346389278024,0.12013827898195681,0.11679744140702934,0.11343383708018673,0.11007433656716134,0.10674067471188593,0.10345022436070732,0.10023673678775827,0.09708144733636077,0.09387893929853212,0.09073219696757578,0.08772774337347725,0.08486781898726099,0.08219721657236613,0.07931546821656409,0.07639727321451008,0.07358629109735512,0.0710720047304816,0.06887220014695095,0.06683917535369083,0.06487875370784339,0.06299666990261632,0.06120448234359467,0.05947830598222555,0.05781730735516378,0.05622014086389408,0.05453618914858642,0.052173806914617926,0.04996578629251738,0.047980242585469825,0.04639163390160386,0.04499559872419571,0.04365934401554418,0.04238011298340422,0.04115521007327966,0.03998201961506744,0.038859542924839834,0.03778756159141279,0.03691696548956958,0.036073229796279214,0.03522657111899934,0.034377139781448386,0.0335250764189343,0.03268554448571637,0.0318636782497133,0.031039643322240257,0.030213543860160567,0.02938547769410765,0.028568693678175012,0.027923211217610426,0.027276404151845304,0.026628332019845314,0.025979050952560537,0.02532861390556841,0.02481236729609107,0.02433485618620805,0.023856603054534953,0.023377638808595627,0.02289799270595635,0.022473020770979575,0.02209778332022318,0.02172207541514347,0.021345915501174602,0.020969321093018453,0.020609075971380807,0.020285621909907816,0.019961836190006358,0.019637731084430628,0.019313318279506417,0.018999268484527442,0.018758129487200195,0.01851678582985901,0.0182752446785763,0.018033512874533156,0.01779159695191754,0.01757718129385634,0.01736355330631759,0.0171497787687096,0.01693586249864878,0.016721809108148737,0.01652730353352933,0.016336808124544338,0.01614620212883919,0.015955489004323746,0.01576467206829327,0.015587902445096169,0.015417035038024326,0.015246082977361667,0.015075048786340167,0.014903934890246448,0.0147475898020549,0.014601408157219336,0.014455164228636823,0.014308859789545639,0.014162496547364248,0.014036797988076919,0.013932345106618636,0.013827853684217612,0.013723324770949341,0.01361875937955732,0.01351907993002753,0.013426615467500581,0.013334121270839654,0.013241598116710784,0.013149046755292756,0.013058722003538458,0.012973068113236303,0.012887390077734446,0.0128016885026793,0.012715963973874679,0.012612021158721247,0.01245394912078242,0.01229583781291646,0.012137688182546699,0.011979501147234388,0.01182567122893675,0.011691076599726104,0.011556452357093102,0.011421799189237442,0.011287117763464591,0.011154112171772992,0.011032952497797795,0.010911769107599723,0.010790562532826226,0.01066933328955997,0.010548836038903534,0.010438272001848386,0.01032768862945013,0.01021708634036938,0.010106465541432824,0.009995609614821092,0.009874074890075397,0.00975252110278163,0.00963094865212355,0.00950935792637932,0.009387749303288038,0.009280929026023498,0.009174495731988376,0.009068047717690033,0.008961585279730424,0.008855108706922552,0.008766503174769746,0.00867921510304278,0.008591916120581692,0.008504606440550408,0.00841728627069089,0.008329955813492562,0.008242615266357934,0.008155264821760832,0.00806790466739874,0.007980534986340734,0.007893155957167738,0.0078057677541098925,0.007718370547177907,0.007630964502289849,0.007543549781393253,0.00745612654258398,0.007368694940218649,0.007281255125025279,0.007193807244209136,0.007106351441554729,0.0070188878575254965,0.0069314166293578386,0.006843937891154084,0.0067564517739713,0.006668958405907298,0.00660374059157073,0.006545514941291424,0.006487284710858304,0.006429049978163583,0.006370810819389151,0.006312567309053134,0.006254319520055776,0.006196067523722207,0.006137811389845487,0.006079551186727415,0.006021286981218231,0.005963018838754895,0.005904746823398958,0.005846470997871651,0.005788191423589471,0.005729908160697868,0.005671621268103868,0.005613330803508572,0.005555036823436953,0.005496739383268424,0.005438438537265659,0.005380134338602532,0.00532182683939203,0.005263516090711754,0.005205202142630223,0.005153794193209158,0.0051062099917783665,0.005058623297729058,0.005011034148816636,0.0049634425820685125,0.004915848633802152,0.004868252339641999,0.004820653734535889,0.004773052852771614,0.00472544972799182,0.004677844393209634,0.004630236880823343,0.004582627222630563,0.004535015449842758,0.004487401593097959,0.0044397856824745,0.004392167747503685,0.004344547817182301,0.004296925919984589,0.004249302083874583,0.0042016763363167875,0.004154048704287941,0.00410641921428769,0.004058787892349102,0.004011154764049497,0.003971196376179616,0.0039372551196235036,0.0039033126288217507,0.0038693689207677257,0.0038354240121636204,0.003801477919427129,0.003767530658696963,0.003733582245839217,0.0036996326964530255,0.0036656820258761766,0.0036317302491909566,0.0035977773812289698,0.0035638234365767806,0.0035298684295808794,0.0034959123743526018,0.0034619552847733586,0.003427997174498794,0.0033940380569637916,0.0033600779453868963,0.0033261168527746973,0.0032921547919260346,0.0032581917754365653,0.0032242278157022827,0.0031902629249238768,0.003156297115110543,0.0031270940081532337,0.0031026318218255852,0.003078168998789134,0.0030537055471675408,0.003029241474959618,0.003004776790041763,0.002980311500170245,0.0029558456129838155,0.00293137913600556,0.0029069120766453817,0.0028824444422021,0.0028579762398654915,0.0028335074767186345,0.0028090381597395114,0.002784568295803268,0.002760097891684057,0.0027356269540568696,0.002711155489499648,0.0026866835044946696,0.0026622110054306076,0.0026377379986041653,0.0026132644902217574,0.002588790486401119,0.0025643159931731624,0.002539841016483175,0.0025182674770522274,0.0025001192508144776,0.0024819706789590366,0.002463821765652131,0.0024456725150019693,0.0024275229310599705,0.0024093730178217252,0.002391222779227978,0.0023730722191655385,0.002354921341468428,0.0023367701499184997,0.0023186186482465525,0.002300466840133146,0.002282314729209443,0.002264162319058245,0.0022460096132145262,0.002227856615166449,0.0022097033283561066,0.0021915497561802743,0.0021733959019913504,0.0021552417690978267,0.002137087360765207,0.0021189326802166985,0.0021007777306338996,0.16094296282295756,0.16063515466768324,0.1597142814809537,0.15818789252255355,0.15606823114134996,0.15347704202471515,0.15041966054845732,0.1473927670857533,0.1441854434535513,0.14075987454338929,0.13718735595621337,0.13350994213480244,0.12976200579745018,0.12599457085898855,0.12224015434125249,0.11851730158015622,0.1148450269554292,0.11124211320266508,0.10777112260067422,0.10435603112594498,0.10104549527922778,0.09779355864468851,0.09459033887387684,0.091628412606712,0.08847683566693794,0.08525482768052466,0.08226101183977301,0.07977876492868764,0.07741478904436382,0.07513002147388675,0.07292637030460908,0.0708281401149695,0.06881178236044026,0.06686949111395961,0.06500038219521136,0.06320298434899219,0.0614547138654283,0.05881685413458659,0.0564179762923496,0.054509498686673694,0.052845058289840076,0.05125207734807572,0.049727370184079585,0.04826778962802387,0.046870257670687664,0.045537415972066814,0.04426163644371961,0.04303810241041927,0.041966552846023526,0.040950804695229985,0.0399314642841031,0.03890871660228836,0.03788273471163651,0.03688217195204059,0.03595992179289636,0.035035189030044246,0.03410809307635342,0.03317874608605575,0.032247253476285515,0.031501288546679114,0.030775278404260236,0.030047820740102156,0.029318979884433514,0.028588816524379113,0.027990860298886002,0.027482149523552976,0.026972633344964574,0.02646234536617774,0.025951317394230684,0.02547008238937241,0.025046385200625743,0.0246221470512528,0.024197389186364347,0.02377213177768708,0.02335422394276662,0.022988959280065144,0.022623313379911754,0.022257300373018738,0.02189093371398604,0.021524226220474132,0.021246551559032895,0.020974073331932946,0.020701368245717812,0.020428444171543086,0.020155308626868654,0.01990715934702098,0.01966590501956825,0.019424482363483323,0.019182896921127613,0.018941153998004327,0.018716411587307545,0.01850123808293983,0.018285937572453035,0.01807051403334083,0.017854971281131723,0.017650985028704113,0.01745797352479809,0.01726486482197836,0.01707166182179089,0.016878367312997637,0.016700422870293483,0.016545438824020944,0.016390387674042634,0.016235271333628693,0.01608009164493633,0.015937387502125477,0.015823705854212406,0.015709981591039437,0.015596215875343359,0.015482409828468996,0.015370450774564011,0.015265489741870907,0.015160494425664382,0.015055465722676794,0.014950404499018617,0.014846339926588742,0.014749107594634377,0.014651847428215035,0.014554560126447789,0.014457246365515387,0.014355405187611475,0.014178817056866553,0.014002184383710986,0.013825508244155314,0.013648789680252385,0.013472029701419672,0.013320281177190033,0.013168751955813037,0.01301718968471737,0.01286559512730047,0.012713969023925355,0.01257521035338277,0.012437409456266079,0.012299581800883619,0.012161727983574216,0.012023848583318512,0.011896578756459846,0.011770829710802268,0.011645058835491188,0.011519266600535824,0.011393453462733467,0.01125859759469948,0.011121768284796794,0.010984917657727059,0.010848046157464106,0.010711154215917144,0.010587108058793065,0.010466776538391152,0.010346428133313459,0.01022606318412965,0.010105682022455533,0.010001921674843822,0.009904243810418746,0.009806553560283364,0.009708851166660468,0.009611136865604874,0.00951341088719625,0.009415673455727802,0.009317924789886417,0.009220165102926347,0.009122394602836363,0.009024613492502127,0.008926821969859874,0.008829020228047301,0.008731208455547647,0.008633386836328702,0.008535555549978133,0.00843771477183138,0.008339864673097745,0.008242005420980738,0.008144137178794196,0.008046260106075852,0.007948374358694154,0.007850480088954285,0.007752577445699092,0.007654666574406992,0.007574587539136408,0.007508540083000687,0.007442487358779233,0.00737642945613115,0.007310366462744757,0.007244298464391342,0.007178225544978036,0.007112147786597195,0.007046065269575925,0.006979978072523305,0.006913886272375843,0.006847789944442601,0.0067816891624470355,0.006715583998569253,0.006649474523486156,0.006583360806410476,0.006517242915128353,0.006451120916036837,0.006384994874178204,0.0063188648532752625,0.0062527309157645004,0.006186593122828328,0.006120451534427311,0.006054306209329463,0.005988157205140657,0.005926922176507381,0.005871933747243788,0.005816942398035712,0.005761948173132166,0.005706951115928079,0.005651951268985584,0.005596948674053775,0.005541943372088017,0.005486935403269487,0.005431924807022474,0.005376911622032895,0.0053218958862654665,0.005266877636980315,0.005211856910750057,0.005156833743474713,0.0051018081703978315,0.005046780226121388,0.004991749944620421,0.0049367173592571095,0.004881682502795261,0.004826645407412876,0.004771606104715863,0.004716564625750654,0.004661521001016515,0.004606475260478241,0.0045571705628313745,0.004518260647089941,0.004479349297224142,0.0044404365329819735,0.004401522373772753,0.00436260683867484,0.00432368994644211,0.004284771715511293,0.004245852164008654,0.004206931309756428,0.004168009170279714,0.004129085762812024,0.004090161104301858,0.004051235211418513,0.00401230810055779,0.00397337978784807,0.003934450289155172,0.0038955196200881792,0.0038565877960045724,0.003817654832015341,0.0037787207429898777,0.0037397855435612826,0.0037008492481304784,0.0036619118708712617,0.003622973425734753,0.0035872595120034004,0.003559244128577663,0.0035312280060594272,0.003503211153875925,0.003475193581309378,0.003447175297499779,0.00341915631144761,0.0033911366320168407,0.0033631162679370807,0.0033350952278064895,0.0033070735200941876,0.0032790511531426564,0.0032510281351704313,0.0032230044742739988,0.003194980178430389,0.003166955255499349,0.0031389297132254535,0.0031109035592405566,0.003082876801065421,0.0030548494461120866,0.003026821501685787,0.002998792974986911,0.00297076387311284,0.00294273420306014,0.0029147039717259413,0.002888497009357783,0.0028677125462297113,0.0028469276818407765,0.002826142421023931,0.002805356768544761,0.002784570729102904,0.002763784307333167,0.0027429975078066184,0.002722210335031926,0.002701422793456112,0.0026806348874658615,0.0026598466213885127,0.0026390579994930797,0.0026182690259912156,0.0025974797050384176,0.0025766900407346556,0.0025559000371255486,0.0025351096982032346,0.002514319027907207,0.0024935280301254695,0.0024727367086950294,0.002451945067402993,0.002431153109987354,0.0024103608401378073,0.17958915880586906,0.1792241370105191,0.17813213527778007,0.1764233585197356,0.17406535362743852,0.17109299169221617,0.16769278588766784,0.16406438552755018,0.16044172447057933,0.1566190342803908,0.15261271246584152,0.14848040511519278,0.14427496098020118,0.14003973337290612,0.13581696765452092,0.13165500839365202,0.12755245024824402,0.12352557486251957,0.11962560965742204,0.11583854429527647,0.11223573840232655,0.10878183610559529,0.10547172607239359,0.10218067949914111,0.09877587931568446,0.09529015094024279,0.09244950756530187,0.08970932211838221,0.08705275966655796,0.08448441252750266,0.08202148591502721,0.07966889781244607,0.0773993839806425,0.07521295510403815,0.07310868832759047,0.07108498550268809,0.0691553747854876,0.06641890591716129,0.06411533149710218,0.06212943970534187,0.060228837012785016,0.05840989422063846,0.05666897528139811,0.05500502523277872,0.053419300660624607,0.051899282437432866,0.05044196722791646,0.0490444338069062,0.047753833845349314,0.046536273018972944,0.04531430548467814,0.04408815850842863,0.042858044695975456,0.041638283020587114,0.04060357732924078,0.039566023378746734,0.03852575839982314,0.03748291127422094,0.03643760313453802,0.035568629501514265,0.0347737151246742,0.03397718137065593,0.03317910033722334,0.032379540034318,0.031674757321160936,0.03111454826860243,0.030553433539430946,0.029991450990355314,0.029428636451999234,0.028877207519716407,0.028398840138093327,0.027919849431172,0.027440259924459448,0.02696009490255336,0.026479376484849063,0.02606166695410153,0.025648783144263637,0.025235476520894466,0.02482176260898122,0.02440765619745134,0.02407197963190571,0.02376441208378771,0.023456583460573662,0.02314850283712332,0.022840178879885088,0.022552347451597503,0.022279871097482064,0.022007200993597476,0.021734343530734203,0.021461304826144088,0.021201050831716087,0.02095801550941335,0.020714834043634875,0.020471511019203602,0.020228050833958747,0.019992165862850016,0.019774150946012408,0.019556024214923525,0.01933778901310077,0.019119448553899136,0.01891229830989483,0.01875425516846268,0.018596142358166045,0.018437961868697488,0.01827971561568414,0.018123910170255213,0.017994872996500526,0.017865786587630807,0.01773665228915659,0.01760747139861856,0.017478245167686365,0.017359045460045207,0.017239863484802734,0.01712064294650317,0.0170013848470819,0.016882090154487425,0.016770930665402996,0.016660526082253293,0.016550090162950004,0.016439623689520205,0.016329127418500875,0.016147466067933415,0.01595196609841304,0.015756417196413575,0.015560820536720333,0.015365177257274404,0.015187524551782034,0.01501522369244536,0.01484288461726674,0.014670508210199452,0.014498095328487962,0.014336824924172408,0.014180131521457544,0.014023407182728091,0.013866652598351407,0.013709868438572258,0.013562077184727158,0.013419085729834504,0.013276069040776793,0.01313302766156391,0.01298996212089344,0.012840907377383099,0.01268784497650244,0.012534758338003198,0.012381647967307067,0.012228514356083166,0.012084298473238475,0.011947319898823975,0.0118103217910755,0.011673304544453152,0.011536268543032998,0.011413342239048581,0.011304083287002737,0.011194810257112489,0.011085523425004412,0.010976223059277434,0.010866909421723178,0.010757582767540875,0.010648243345542928,0.01053889139835302,0.01042952716259676,0.010320150869086768,0.010210762742998019,0.010101363004039864,0.009991951866620333,0.009882529540004669,0.009773096228469504,0.00966365213144886,0.009554197443677801,0.009444732355329586,0.009335257052148183,0.00922577171557762,0.009116276522883819,0.009006771647275391,0.008897257258018768,0.008787733520549713,0.008689735595263912,0.008614824735883295,0.00853990780808641,0.008464984915241844,0.00839005615844341,0.008315121636572208,0.008240181446357743,0.008165235682434985,0.008090284437401596,0.008015327801872434,0.007940365864532131,0.007865398712187216,0.007790426429814369,0.007715449100609352,0.007640466806033323,0.007565479625857888,0.0074904876382085915,0.007415490919608118,0.007340489545016105,0.007265483587869685,0.007190473120121977,0.007115458212279234,0.007040438933438018,0.006965415351319139,0.006890387532302695,0.0068177802006876035,0.006754195168192436,0.006690606707590621,0.006627014870860165,0.006563419708974722,0.00649982127192858,0.006436219608759978,0.006372614767573824,0.006309006795564619,0.006245395739036928,0.006181781643427129,0.006118164553323578,0.006054544512486248,0.005990921563866714,0.005927295749625832,0.005863667111152607,0.005800035689081798,0.0057364015233110875,0.005672764653017688,0.0056091251166753755,0.00554548295206924,0.005481838196311885,0.005418190885858247,0.00535454105652003,0.005290888743480737,0.005229632047479152,0.005185071176993103,0.005140508639223838,0.00509594445713388,0.005051378653291493,0.005006811249879692,0.004962242268703807,0.0049176717312000165,0.004873099658443113,0.004828526071154052,0.004783950989707893,0.004739374434140379,0.004694796424155481,0.00465021697913226,0.0046056361181314506,0.004561053859902567,0.0045164702228895634,0.004471885225237598,0.004427298884799045,0.0043827112191394116,0.004338122245543063,0.004293531981019406,0.004248940442307642,0.004204347645882701,0.004159753607960397,0.004115954354996614,0.0040838698666616,0.004051784519060658,0.004019698323150592,0.003987611289719449,0.0039555234293898395,0.003923434752622009,0.0038913452697173882,0.003859254990821095,0.0038271639259253,0.003795072084872052,0.003762979477356063,0.0037308861129278486,0.0036987920009959414,0.0036666971508299054,0.0036346015715628473,0.003602505272193913,0.0035704082615911036,0.0035383105484932,0.003506212141512498,0.0034741130491370686,0.0034420132797330057,0.0034099128415465926,0.00337781174270685,0.003345709991227105,0.0033137643419105284,0.0032899608254988518,0.003266156842499582,0.0032423523985274597,0.0032185474991188734,0.0031947421497335055,0.0031709363557556377,0.003147130122495416,0.0031233234551904096,0.0030995163590065056,0.0030757088390394034,0.0030519009003157852,0.0030280925477945125,0.0030042837863677235,0.002980474620862263,0.002956665056040392,0.0029328550966011666,0.002909044747181453,0.002885234012356899,0.0028614228966432685,0.002837611404497022,0.0028137995403166084,0.0027899873084433493,0.0027661747131624073,0.14844286825730932,0.14828228924022396,0.14780140549072304,0.14700275440164903,0.1459191754012439,0.14456309127482436,0.14291968868280552,0.14108077491192028,0.1390033911861378,0.13675939013299782,0.13436343474519502,0.13185516274321984,0.1292472139241201,0.12649908203787774,0.12377534700011672,0.1209453671467082,0.1181626200979404,0.11534002360430973,0.11254229550753117,0.10968351126775511,0.10677095608741943,0.10396435812545726,0.10119839428523984,0.09847064654717115,0.0958486906267298,0.09333246954047782,0.09091297500076068,0.08860478168988313,0.0864214191820454,0.0843143832046737,0.08225636343109392,0.08027717397380287,0.07834615165599655,0.07633882834309186,0.07416451195617817,0.07208712925681572,0.0700779140776522,0.06813159057177415,0.06624862346929547,0.06442881208863005,0.06269216913677311,0.06101317152595052,0.05939097495986841,0.05782451350823396,0.056312492941947435,0.05485355769392839,0.05348713154501737,0.052112306983777806,0.05072949617205023,0.049339086908058036,0.04794144421772584,0.046607667826679806,0.04549973220569122,0.04438688102007302,0.04326934027353289,0.04214732319465098,0.0410210310596049,0.040083437999342955,0.03926127443933048,0.038436403242841935,0.03760894083200694,0.036778997385649534,0.03597233491945333,0.035360179758976526,0.03474642254586035,0.03413112844008628,0.03351435926662422,0.03289617371596504,0.03234219768778427,0.03181596177326992,0.03128866016774114,0.030760333473311956,0.030231020329336722,0.029726274191955053,0.02927104105473086,0.02881505269019165,0.028358336389201367,0.02790091818454566,0.027446198243546938,0.027106239802454205,0.026765813990196313,0.026424936851428774,0.026083623725032878,0.02574188928138586,0.02543023842915219,0.025127833297264864,0.024825091822087267,0.0245220248855882,0.024218642916671924,0.023932672247945774,0.023662435109794693,0.023391943504657006,0.023121205283587805,0.022850227985022738,0.02258809768997835,0.02234529375628149,0.022102294645419015,0.021859106109612354,0.021615733681759328,0.021383589213573796,0.02122641375397569,0.0210691296236597,0.020911739887031475,0.02075424749647556,0.020596655297338996,0.020451440713202245,0.020306583630056503,0.02016164220464446,0.02001661869734375,0.019871515289846035,0.01973561361064038,0.01960173714573393,0.019467792667806138,0.019333781926851406,0.01919970661429905,0.019072416907883395,0.018948291423777536,0.018824110605340023,0.018699875821479837,0.018575588397011823,0.018401204753265805,0.018186883825943335,0.017972478620706552,0.017757991144920583,0.01754342334364196,0.01733783357511103,0.017143516057394288,0.01694913081092274,0.01675467939089837,0.016560163305954705,0.01637165279075309,0.016194830105736063,0.016017952548516845,0.015841021335304684,0.015664037647143286,0.015490844329243669,0.015329396660790537,0.015167904200246602,0.01500636790704787,0.014844788713814153,0.01468184259604639,0.014511802315011197,0.014341719693809018,0.014171595609881307,0.014001430916940073,0.01383240630403675,0.013677442701299437,0.013522444343040955,0.01336741192686764,0.01321234613211296,0.013057321853764361,0.012935869101997897,0.012814391732187767,0.012692890223416135,0.012571365042601219,0.012449816644880103,0.012328245473973628,0.012206651962541639,0.012085036532522983,0.011963399595464039,0.01184174155283443,0.01172006279633354,0.01159836370818231,0.011476644661408221,0.011354906020118329,0.011233148139762872,0.011111371367391154,0.01098957604189522,0.010867762494248432,0.01074593104773418,0.010624082018166628,0.010502215714105837,0.010380332437062009,0.01025843248169625,0.010136516136013043,0.010014583681546544,0.009918700720153105,0.009834107205129082,0.009749503077247859,0.009664888515037624,0.009580263693123689,0.009495628782334089,0.009410983949802847,0.009326329359067674,0.009241665170166977,0.009156991539732474,0.009072308621078922,0.008987616564292337,0.008902915516312929,0.00881820562101793,0.008733487019300643,0.008648759849147277,0.008564024245711259,0.00847928034138642,0.008394528265875582,0.008309768146259514,0.008225000107062501,0.008140224270316129,0.00805544075562224,0.00797064968021167,0.00788585115900364,0.007806550744154115,0.007733276891254568,0.007659996891944478,0.007586710837994865,0.007513418819410019,0.007440120924470603,0.007366817239774551,0.0072935078502768345,0.007220192839329097,0.007146872288716125,0.007073546278693376,0.007000214888022364,0.0069268781940052,0.006853536272519026,0.006780189198047619,0.006706837043714063,0.006633479881311589,0.006560117781333717,0.006486750813003413,0.006413379044302481,0.006340002541998141,0.006266621371670897,0.006193235597740706,0.0061198452834923525,0.006046450491101324,0.005980075509839829,0.005929182665558781,0.005878286841322472,0.005827388077324739,0.005776486413069753,0.0057255818873873775,0.005674674538446733,0.005623764403770811,0.005572851520250012,0.005521935924155343,0.005471017651152045,0.005420096736311347,0.005369173214123454,0.005318247118509452,0.005267318482832929,0.005216387339912012,0.0051654537220297185,0.0051145176609454284,0.005063579187905388,0.005012638333653134,0.004961695128439475,0.004910749602032939,0.004859801783728635,0.004808851702358211,0.004757899386298921,0.004709591792356862,0.004672931500787823,0.004636269660843871,0.004599606291696323,0.004562941412220437,0.004526275041001161,0.004489607196338671,0.0044529378962542224,0.004416267158494928,0.004379595000539392,0.004342921439602703,0.004306246492641359,0.004269570176358551,0.004232892507208328,0.004196213501400655,0.004159533174905918,0.004122851543459236,0.004086168622565273,0.004049484427501864,0.004012798973324607,0.003976112274870852,0.003939424346763676,0.0039027352034156832,0.00386604485903326,0.003829353327619672,0.00379347238383287,0.0037662648923958916,0.003739056551081779,0.003711847369698836,0.003684637357917753,0.003657426525274341,0.0036302148811718344,0.0036030024348831656,0.003575789195553527,0.003548575172202164,0.0035213603737248686,0.0034941448088960433,0.0034669284863708045,0.003439711414686955,0.0034124936022673007,0.003385275057421175,0.003358055788346677,0.0033308358031324736,0.003303615109759586,0.0032763937161035114,0.0032491716299355503,0.0032219488589248398,0.0031947254106400036,0.0031675012925508205,0.16218075706364948,0.16200554473176978,0.16148085059860023,0.16060947806327616,0.159396017050372,0.15789291829011623,0.1561003311312086,0.15404426831220114,0.15175816616408147,0.1492858204880487,0.1466312060186798,0.14383949130923168,0.1409973127075276,0.13796051005910576,0.13496853581666307,0.13184019541266115,0.12873159989309074,0.125487878894429,0.12207650465954445,0.11877651361279433,0.11560226950775707,0.1125501707045475,0.10952389278509847,0.10655042588511647,0.10371203054103842,0.10097227744925724,0.09833934863454549,0.09585131307744145,0.09347517615299052,0.09118522165328634,0.08897667032877052,0.08675792505231421,0.08424178365162877,0.08156004833366476,0.07925590022904926,0.07704347231971712,0.07489634228533835,0.07281602918620737,0.07080311167870078,0.06887738684026128,0.0670193565409331,0.06522277210689098,0.06348685724216406,0.06181348001268348,0.06021458541100009,0.058827929930417806,0.05738710074802054,0.05592464359036494,0.05445347498470624,0.052974018071768714,0.051486671189718405,0.04999763820852214,0.048818312179556705,0.04763362494541757,0.04644382321003869,0.045249139742641914,0.04404979427238083,0.04302029829835745,0.042254768275397904,0.0414866572479625,0.04071607633586973,0.03994313069951702,0.03916791991053502,0.03849208139148563,0.03782775773656956,0.03716173238423011,0.036494073895035006,0.03582484735145815,0.035200880433371155,0.03463114020801365,0.03406022040330241,0.033488166036097354,0.03291501994510126,0.032348665806353726,0.03185638300913032,0.031363265717560415,0.030869344140225647,0.03037464709156351,0.029879202068653472,0.02948317650856655,0.029114413939967467,0.028745152113846633,0.028375408029006288,0.02800519794244361,0.027656750442625937,0.027329130849908408,0.027001139311565055,0.026672787883581867,0.026344088119303843,0.026025032556666106,0.02573223178972501,0.025439149705110825,0.02514579499827784,0.0248521760179358,0.024563304895679927,0.02434943882836177,0.024135397417300673,0.023921185839639886,0.02370680907483164,0.023492271913798084,0.02331473938580046,0.023142413666896372,0.02296996998355104,0.02279741163958107,0.022624741818842622,0.02246196049276434,0.022303240501717777,0.022144426322447834,0.021985520483678606,0.02182652542597221,0.02167435433060409,0.021527658094697134,0.0213808859241496,0.021234039776178777,0.021087121542401666,0.02095635931187675,0.020848230922827282,0.02074005343286047,0.02063182805874477,0.020523555977995434,0.02037783593978263,0.020141317577382543,0.019904704499338736,0.019667998965376902,0.019431203164974126,0.019198321216557873,0.01898387069337065,0.018769344068352393,0.018554743091802602,0.018340069461531352,0.018126762396173817,0.017931613464826975,0.017736402889070177,0.01754113203737185,0.01734580223857326,0.017150414783296198,0.01696520866287289,0.01678019221775841,0.0165951246674606,0.016410007100995567,0.016224840577096118,0.016037796768193464,0.015850475283971252,0.01566310733598724,0.015475693882342231,0.01528823585535306,0.015114301518651332,0.01494358969873158,0.014772839718792619,0.014602052341084252,0.014431228307989269,0.014290329919561631,0.014160477024183346,0.014030597883052666,0.013900693004545996,0.013770762884194281,0.01364080800508163,0.013510828838232847,0.013380825842984872,0.013250799467344655,0.013120750148336047,0.012990678312330254,0.012860584375368193,0.012730468743469777,0.012600331812931975,0.012470173970616715,0.01233999559423008,0.012209797052588095,0.01207957870587717,0.011949340905903567,0.011819083996334334,0.011688808312931903,0.01155851418377702,0.0114282019294877,0.011297871863429267,0.011167524291917433,0.011051807412584583,0.010956197469136009,0.010860575333069111,0.010764941209723688,0.010669295299944653,0.010573637800203603,0.010477968902718099,0.01038228879556427,0.01028659766278849,0.010190895684514343,0.010095183037046322,0.009999459892969988,0.009903726421250557,0.009807982787325423,0.00971222915319682,0.00961646567752,0.009520692515688945,0.009424909819920686,0.009329117739334383,0.009233316420030706,0.009137506005167603,0.00904168663503358,0.008945858447120359,0.00885002157619059,0.00875417615434627,0.008661245648354172,0.008580173113232937,0.008499093668637452,0.008418007417824645,0.008336914462061137,0.008255814900671793,0.008174708831085929,0.00809359634888207,0.00801247754783269,0.007931352519945341,0.00785022135550494,0.007769084143113725,0.007687940969730134,0.007606791920707675,0.007525637079830574,0.007444476529350568,0.007363310350021692,0.00728213862113424,0.007200961420547731,0.007119778824723892,0.007038590908756752,0.006957397746403998,0.0068761994101164394,0.006794995971066734,0.0067137874991784014,0.00663332245345851,0.006577011402707561,0.0065206970029695185,0.006464379299443162,0.006408058336550806,0.006351734157955601,0.006295406806576834,0.0062390763246063345,0.006182742753523836,0.006126406134111784,0.006070066506470647,0.00601372391003229,0.005957378383574478,0.005901029965234393,0.00584467869252164,0.005788324602331889,0.005731967730958473,0.0056756081141053445,0.005619245786898942,0.005562880783899853,0.005506513139114122,0.0054501428860050365,0.005393770057503019,0.005337394686016939,0.005281016803444284,0.005224636441181183,0.0051825074103690055,0.005141941618901365,0.0051013741091150856,0.005060804902224961,0.0050202340191190945,0.004979661480365147,0.00493908730621694,0.0048985115166198185,0.004857934131217013,0.004817355169355248,0.004776774650090304,0.004736192592192946,0.004695609014153643,0.0046550239341882444,0.004614437370243041,0.004573849339999674,0.004533259860880469,0.004492668950052615,0.004452076624433253,0.004411482900694011,0.004370887795265474,0.004330291324341463,0.004289693503883817,0.004249094349625878,0.004208493877077098,0.004177056011065296,0.004147911940099999,0.004118766955352806,0.004089621067341137,0.004060474286435536,0.004031326622862213,0.004002178086705562,0.003973028687910582,0.003943878436285639,0.003914727341504353,0.0038855754131082586,0.003856422660509032,0.0038272690929906255,0.0037981147197117945,0.0037689595497077616,0.003739803591892646,0.003710646855061433,0.003681489347891947,0.0036523310789471014,0.0036231720566763997,0.00359401228941814,0.003564851785401189,0.0035356905527468255,0.177368809636256,0.1771682325890019,0.17657487658167914,0.17562340699297982,0.17429850316201662,0.1726070914281199,0.17063434197879218,0.16834540062186767,0.16583460257245436,0.16308114640821575,0.16013980896413513,0.15706885897563239,0.15391986258630916,0.1506088571527993,0.1471868759287203,0.14363998942332937,0.13993775097056077,0.13608168981751897,0.13236954338934057,0.12869276208868424,0.1252576037505224,0.12190682398621507,0.11859070106205137,0.11537443876958614,0.11227336097385242,0.10928804330052758,0.10642564333509781,0.10373993521331495,0.10115205666843269,0.09863033307994541,0.09606776618149432,0.09313617613688664,0.09011205204029692,0.08718145700497874,0.08474948404787136,0.08238498087175085,0.08008964850005541,0.07786523694657074,0.07573122711981241,0.07367625283664468,0.07168716672898699,0.06976366882010601,0.06791013570825823,0.06615446859972778,0.06461137061617833,0.06312461438504555,0.06160816366183878,0.06005324506134407,0.05848879944062891,0.05691528968031284,0.0553331515882503,0.05374279564725331,0.05242774411121518,0.05118898397720279,0.049944728814280547,0.048695228963568225,0.047440720752242774,0.04625868768678048,0.04554033082898525,0.04481948740507671,0.0440962646202251,0.043370763929989155,0.042643081397262826,0.04192132961227018,0.04120244630653427,0.040481674088485374,0.039759089192366814,0.03903476398254677,0.03832983187033,0.03771311526946008,0.037095089796508086,0.036475805496478664,0.03585530999052684,0.03523364861498855,0.03468532083685318,0.03415214107659237,0.03361807051726264,0.03308314113637387,0.03254738344759828,0.03208052168698411,0.031681120677526126,0.031281166070292,0.030880676752812593,0.030479670787207883,0.03008901734316622,0.02973412490317846,0.029378820180592225,0.029023116566476274,0.028667026892731127,0.028310563460227818,0.02799291250889641,0.02767538683590143,0.027357559097845503,0.027039438564220798,0.02672103413751005,0.02651157717450854,0.026333639606761005,0.026155557424395,0.025977334867845366,0.025798976016727457,0.0256145421842732,0.025425752064932812,0.025236829882663517,0.02504777934364105,0.02485860401924108,0.024675726651164773,0.024501829967254793,0.024327827868345708,0.02415372319022498,0.02397951866964231,0.023808766919559344,0.02364803404028177,0.023487216198177802,0.023326315587458308,0.02316533432866361,0.02301311820489824,0.022925412162171588,0.02283766546104269,0.022749879110999616,0.022662054088908003,0.022574191340301236,0.022314293260698864,0.022053186079850257,0.021791974777730774,0.021530661824669263,0.021269249614629056,0.021029555477659525,0.020792812129585045,0.02055598506737736,0.020319076206119474,0.02008208740377407,0.01986176726331494,0.019646333178193094,0.019430831241050262,0.01921526295040067,0.0189996297615868,0.018786696647984838,0.01857503896777116,0.018363321666597942,0.01815154601713629,0.01793971325660833,0.017731119820766247,0.01752482009396866,0.017318468194275998,0.01711206519931444,0.01690561215766233,0.01670839170382191,0.01652038006829344,0.01633232559128112,0.016144229129937154,0.015956091519036972,0.015788913189405923,0.015650279264566993,0.015511616781411594,0.015372926293980385,0.015234208342292341,0.015095463452780651,0.01495669213871628,0.014817894900613896,0.01467907222662308,0.014540224592907304,0.014401352464005215,0.014262456293182953,0.014123536522771797,0.013984593584494293,0.01384562789977851,0.01370663988006309,0.013567629927087864,0.013428598433178212,0.013289545781517524,0.013150472346410673,0.013011378493539907,0.012872264580208632,0.012733130955580494,0.01259397796090875,0.012454805929758062,0.012319045450380121,0.012211024773117226,0.012102990066653942,0.011994941567570035,0.01188687950725874,0.011778804112067413,0.011670715603435158,0.011562614198023003,0.011454500107842963,0.011346373540381515,0.011238234698719403,0.011130083781647435,0.011021920983780159,0.010913746495662967,0.0108055605038789,0.01069736319115069,0.010589154736439529,0.01048093531504262,0.010372705098684414,0.01026446425560837,0.010156212950664257,0.010047951345392995,0.009939679598110361,0.00983139786398531,0.00972310629511887,0.009614805040619253,0.009522923585137774,0.009433216156691564,0.009343501063091262,0.009253778418498592,0.009164048334883233,0.009074310922074977,0.008984566287814355,0.008894814537803195,0.008805055775751114,0.00871529010342328,0.008625517620685615,0.008535738425548695,0.00844595261421167,0.00835616028110256,0.00826636151891987,0.008176556418671823,0.008086745069714782,0.007996927559790498,0.007907103975063333,0.007817274400154292,0.007727438918176488,0.007637597610768332,0.007547750558126083,0.007457897839036542,0.007368039530906593,0.007297805370408961,0.007235496378598361,0.0071731836672169974,0.007110867286312047,0.00704854728507425,0.006986223711855169,0.006923896614185785,0.0068615660387937386,0.006799232031620121,0.006736894637836788,0.006674553901861368,0.006612209867373762,0.006549862577331284,0.006487512073983477,0.0064251583988873765,0.006362801592920718,0.006300441696296525,0.006238078748576479,0.006175712788684158,0.006113343854917729,0.0060509719849632815,0.005988597215906036,0.005926219584243031,0.005863839125894707,0.005801455876216114,0.005749238459381808,0.005704353510329749,0.005659466627030563,0.0056145778333721395,0.005569687152874067,0.005524794608694607,0.0054799002236382,0.0054350040201615185,0.005390106020380609,0.005345206246077262,0.00530030471870526,0.005255401459397096,0.005210496488969252,0.005165589827928671,0.005120681496478424,0.005075771514523247,0.005030859901675577,0.004985946677260262,0.004941031860320303,0.0048961154696219875,0.004851197523659878,0.004806278040661722,0.004761357038593763,0.004716434535164751,0.0046715105478310655,0.004633153245844389,0.004601977491959455,0.004570800743681062,0.004539623012452561,0.004508444309557304,0.004477264646121365,0.004446084033116353,0.004414902481361993,0.004383720001529164,0.004352536604141963,0.00432135229958059,0.0042901670980837895,0.004258981009751165,0.00422779404454595,0.004196606212296802,0.0041654175227004726,0.004134227985323965,0.0041030376096066095,0.0040718464048626404,0.00404065438028272,0.004009461544936409,0.003978267907774066,0.0039470734776288815,0.19421357572952683,0.19399434540820062,0.19333787033991856,0.19224776474101188,0.19077067645779403,0.18892249283968668,0.18668721250878836,0.18418684290258985,0.18137130631761247,0.1783239145309022,0.1750860984424577,0.17167220021270851,0.1680854700814077,0.16428447407381117,0.16027869795299132,0.1561211072665048,0.15191095207657235,0.14773319102264687,0.1436270042947629,0.13951958287718405,0.13580016690262678,0.1321149018969368,0.12847522518880533,0.12499479342061785,0.12160445099953314,0.11834760803370625,0.1152632594819822,0.11233287587326624,0.1094019955385944,0.10640038523923341,0.10298650843032146,0.09966915006490498,0.09643976242395404,0.09334662305907604,0.09066878739859467,0.08814139197387151,0.08568712384268627,0.08332453734274897,0.08105424041283894,0.07885371960283742,0.07672342099503572,0.07466932773352926,0.07273768660486349,0.07102017502359288,0.0693703648504239,0.06777165239522762,0.0661785697259693,0.06452625757646842,0.06286349796187365,0.0611907985768828,0.05950863750109267,0.05781746509690919,0.05638282274459148,0.05520316439965048,0.054018112235425214,0.05282791224002926,0.051632796644858696,0.050432984797739853,0.04959634992312472,0.048816861447215636,0.04803472373147174,0.0472500499185049,0.046462947136684835,0.04567814562368143,0.044900433920398906,0.04412061983857201,0.0433387883869224,0.04255502025610533,0.04176939207582484,0.04108932935668189,0.04042079467942802,0.03975086029541456,0.03907957926615352,0.03840700210447212,0.03778403912061167,0.0372073134815852,0.03662959806619612,0.03605092848327454,0.035471338709326825,0.03492007878354685,0.03448756374654987,0.034054433276540404,0.0336207084183055,0.03318640929550019,0.03275155515898823,0.032362933069435586,0.03197809325729199,0.03159281020768727,0.031207098211853704,0.030820970968582002,0.030491887267212428,0.030190610210111834,0.029889039273769836,0.029587183497228105,0.02928505156099651,0.029039889221150778,0.028863351331439056,0.028686666393452617,0.028509838728847256,0.028332872495074376,0.028148068765630262,0.02794126062180362,0.027734304274302755,0.027527203891678523,0.027319963490577415,0.0271140661943844,0.02692355763186669,0.026732930808252193,0.026542188911990425,0.02635133501996391,0.026160372102246476,0.026004610710885556,0.025851397335017824,0.025698103244294227,0.025544730511143424,0.025391281138816012,0.025291690602179343,0.02520648216797761,0.0251212343368703,0.02503594808158515,0.024950624343590626,0.024731494415333073,0.024443375035556263,0.02415513812912792,0.02386678649024067,0.023578322826545508,0.023304625117150923,0.023043378750853077,0.022782037915772668,0.02252060477741778,0.02225908143658514,0.022005452369789416,0.021762130477295947,0.021518730236570936,0.02127525338136761,0.021031701595396912,0.020790584645892615,0.0205543696830798,0.020318086711861652,0.020081737186747543,0.019845322521658378,0.01961112321216783,0.019383932298571466,0.01915668267316009,0.018929375550893218,0.018702012113920825,0.018477842886700152,0.018270786564669565,0.018063682041049665,0.01785653028198891,0.017649332228367984,0.017446960613357668,0.01730003355331493,0.017153075578284067,0.017006087289082823,0.016859069271296514,0.016712022095752233,0.01656494631897948,0.016417842483652134,0.016270711119014205,0.016123552741290185,0.015976367854082057,0.015829156948748445,0.015681920504773985,0.015534658990123504,0.015387372861583851,0.015240062565095634,0.015092728536069211,0.014945371199693993,0.01479799097123464,0.014650588256317442,0.014503163451208712,0.014355716943079673,0.014208249110266483,0.01406076032251946,0.013913250941244265,0.013765721319734862,0.013636960257154369,0.013514057690780542,0.013391139111409446,0.013268204788076702,0.01314525498394139,0.013022289956446675,0.01289930995747163,0.012776315233481689,0.012653306025672667,0.012530282570110155,0.01240724509786626,0.012284193835148675,0.012161129003428986,0.012038050819565578,0.011914959495922807,0.011791855240486378,0.011668738256976658,0.011545608744955535,0.01142246689993294,0.011299312913468956,0.011176146973272443,0.011052969263298778,0.010929779963840989,0.010806579251621807,0.010683367299881261,0.010572866017794572,0.010473614447643245,0.01037435422770172,0.010275085486943607,0.01017580835186222,0.010076522946529595,0.009977229392653981,0.00987792780963691,0.009778618314626095,0.009679301022569413,0.009579976046266132,0.009480643496416693,0.00938130348167234,0.009281956108680954,0.009182601482133993,0.009083239704811065,0.00898387087762342,0.008884495099656033,0.008785112468209932,0.008685723078840612,0.008586327025398233,0.008486924400065252,0.008387515293393192,0.008288099794339716,0.008188677990302103,0.00810012946843066,0.008031188852100447,0.007962244039871426,0.00789329508824403,0.007824342052750342,0.007755384987973662,0.0076864239475695935,0.007617458984285479,0.0075484901499795155,0.007479517495640212,0.007410541071403515,0.007341560926571418,0.0072725771096291015,0.007203589668261695,0.007134598649371568,0.007065604099093307,0.006996606062810147,0.00692760458516917,0.006858599710096255,0.006789591480810457,0.0067205799398390624,0.006651565129030329,0.0065825470895677935,0.0065135258619833936,0.006444501486170129,0.006380062371968018,0.006331623624784855,0.006283182749867078,0.006234739773501604,0.006186294721569444,0.006137847619553465,0.0060893984925465714,0.00604094736525847,0.005992494262023492,0.005944039206807667,0.005895582223215589,0.005847123334497812,0.005798662563556715,0.005750199932953616,0.005701735464915032,0.005653269181338751,0.005604801103800567,0.005556331253559389,0.005507859651563659,0.005459386318456911,0.005410911274583396,0.005362434539993382,0.005313956134449084,0.005265476077429065,0.005216994388133899,0.005170148476659046,0.005135621729970717,0.0051010938607833805,0.005066564882012652,0.005032034806393278,0.004997503646482263,0.004962971414661891,0.00492843812314319,0.004893903783968366,0.004859368409014115,0.0048248320099944205,0.004790294598463374,0.004755756185817837,0.004721216783300533,0.004686676402002135,0.004652135052864228,0.004617592746681757,0.004583049494105437,0.004548505305644583,0.00451396019166889,0.0044794141624111975,0.004444867227969681,0.004410319398310083,0.21288349357670536,0.2126436271494331,0.21192538245884507,0.21073278531569686,0.20907242131613685,0.20699026371078924,0.20454172160366008,0.20171557286872935,0.198598974496324,0.19521877753560227,0.19159981565554324,0.18776017851433288,0.18335126625510026,0.17893154002480083,0.17425846809036252,0.16972301120663535,0.16503861914174908,0.16050934957084034,0.15595683366437244,0.15146883055840402,0.14732626060232482,0.1432653641652469,0.13931295397343776,0.1354953608690745,0.13178655447533769,0.12823094807497687,0.12490492526435142,0.12148427515023821,0.11792036332107662,0.11399047972790624,0.1102731074033032,0.10671149674066728,0.10327777992733193,0.10000862286138208,0.097050424171072,0.0943488248102698,0.09173670450290694,0.08923280714191067,0.08680149373727887,0.08444434382451735,0.08216802484694068,0.08003915051584058,0.07812753636768095,0.0762971247220842,0.07452231545242921,0.07280233041385512,0.07113227837210319,0.06937760411088852,0.06761143862470166,0.06583434035729198,0.06404683528260606,0.06224941896749102,0.06058540429552085,0.0594802781149727,0.05836992516968488,0.05725458408223353,0.05613448014759344,0.0550098261750409,0.05403876852373612,0.05319618659297422,0.052350646064900586,0.051502273508197735,0.05065118876405947,0.04979762476448219,0.04895653694029807,0.048113102180257494,0.04726741557476379,0.04641956738107506,0.0455696433107433,0.04479111168456906,0.044068703215369154,0.043344735076469874,0.042619266529079526,0.04189235398460493,0.04118285588998018,0.04055858091303758,0.03993320197423385,0.03930675888674406,0.038679289635981245,0.038050830479550914,0.03755859339043491,0.03708962042688406,0.03661998486015846,0.03614970917979134,0.03567881489821419,0.035238628395522616,0.03482186416300344,0.034404606039411666,0.03398686998974766,0.03356867131593512,0.03320044664335179,0.03294067358844138,0.032680639958309665,0.03242035378810982,0.03215982279364927,0.031905522076086566,0.03171217736763987,0.03151866713476284,0.031324996254478855,0.0311311694181244,0.030937191139920574,0.03071395161821156,0.030487263588042303,0.030260413498029378,0.03003340587880983,0.029806245096928655,0.02959238338635019,0.029383563228678394,0.029174613643582023,0.028965538100327884,0.028756339947498086,0.02859182409603438,0.028462017622831445,0.02833214096502274,0.028202195929039872,0.028072184260887083,0.02795722923054696,0.027863217677720882,0.027769161529977618,0.0276750618910065,0.027580919828953835,0.0274224426717851,0.027104538850684704,0.026786502035623116,0.0264683353958857,0.026150042002392123,0.02583670012815875,0.025548433069396765,0.02526005913867484,0.024971580791384618,0.02468300040938974,0.024394938389199733,0.024116843322317602,0.023838656477089794,0.023560379888959107,0.023282015534496263,0.02300356533349539,0.022742657048228653,0.022482466458522404,0.022222200778270036,0.021961861606170953,0.02170145049651942,0.02144986200970053,0.021199610511368448,0.020949294155970466,0.020698914279762223,0.02044847218307664,0.020215451037668024,0.01998737699236256,0.019759249676341267,0.01953107015284669,0.019302839457429374,0.019125844553937555,0.018971043394234412,0.01881620954094554,0.018661343626857688,0.01850644626877829,0.018351518068035158,0.018196559610955527,0.018041571469328256,0.017886554200848354,0.017731508349547846,0.017576434446206716,0.017421333008753353,0.017266204542648822,0.01711104954125716,0.016955868486205054,0.016800661847724562,0.016645430084988134,0.01649017364642986,0.016334892970055737,0.01617958848374542,0.016024260605539315,0.015868909743920304,0.015713536298083752,0.01555814065819911,0.015402723205661857,0.015252908033522522,0.01511254021519439,0.01497215368954942,0.014831748771405443,0.014691325768691147,0.014550884982634326,0.014410426707940549,0.014269951232969593,0.01412945883990461,0.013988949804915763,0.013848424398320628,0.013707882884736003,0.013567325523228283,0.013426752567457807,0.013286164265818736,0.01314556086157444,0.013004942592990594,0.012864309693460415,0.012723662391629864,0.012583000911517268,0.012442325472629202,0.012301636290075116,0.012160933574674262,0.012020217533063737,0.011879488367801193,0.011742979216165243,0.01163317058933689,0.011523352179953102,0.01141352413406568,0.011303686594912703,0.01119383970298573,0.011083983596094998,0.010974118409434384,0.010864244275641331,0.010754361324858346,0.010644469684791108,0.010534569480764934,0.010424660835781325,0.010314743870569819,0.010204818703641521,0.010094885451339538,0.00998494422788846,0.009874995145442152,0.009765038314131776,0.00965507384210945,0.009545101835593832,0.009435122398912957,0.00932513563454585,0.00921514164316475,0.009105140523672981,0.008995132373244952,0.008917487865101614,0.008841206437736136,0.008764920330802792,0.00868862960713528,0.00861233432849204,0.008536034555580035,0.008459730348076941,0.008383421764652758,0.008307108862991951,0.008230791699812818,0.008154470330888678,0.008078144811067268,0.008001815194289809,0.00792548153361057,0.007849143881213888,0.00777280228843286,0.0076964568057664995,0.0076201074828967505,0.007543754368704818,0.007467397511288169,0.0073910369579750735,0.0073146727553408016,0.007238304949222465,0.007161933584733473,0.007085558706278719,0.0070292338040267984,0.006977233601635432,0.006925231094847626,0.006873226312055488,0.006821219281213599,0.00676921002984807,0.006717198585063937,0.006665184973553835,0.0066131692216057384,0.0065611513551104995,0.006509131399570009,0.006457109380103636,0.006405085321456089,0.0063530592480042294,0.006301031183763857,0.006249001152396992,0.006196969177217592,0.006144935281198573,0.006092899486977935,0.006040861816864914,0.005988822292845894,0.005936780936590817,0.005884737769458096,0.00583269281250085,0.005780646086472216,0.005738299184501124,0.005699827619486917,0.005661354791635937,0.005622880715439562,0.005584405405186576,0.005545928874966591,0.005507451138674067,0.005468972210011004,0.005430492102490821,0.0053920108294414505,0.005353528404008634,0.005315044839158917,0.005276560147683175,0.005238074342199033,0.005199587435154188,0.005161099438829275,0.005122610365340547,0.005084120226643133,0.005045629034533086,0.005007136800650504,0.004968643536482051,0.004930149253363511,0.23373677372570462,0.23346104095531062,0.23263543188225277,0.23126466877062418,0.22944483541196395,0.22712433239545923,0.22435763898836825,0.22122360854895692,0.21773556364844285,0.2139045481839647,0.20940211639728268,0.20467976759236256,0.19979064394229834,0.1948454697209119,0.18977111798836743,0.18468105983053507,0.17955243995080888,0.174541349338455,0.16948173333933486,0.16461517796123368,0.15994490619304302,0.15546096742114515,0.1511784108662457,0.1469727385585868,0.14291125590792944,0.13907909042917743,0.13509603856213867,0.13089885168620707,0.1263867733330662,0.12218492178864197,0.11816178822983678,0.11431199621973273,0.11069750761962617,0.10720295655665567,0.10393209962581997,0.1010494582172691,0.09829503585850244,0.09561412729534818,0.0930100013779476,0.0904894400723398,0.08814008443469502,0.0860131726820162,0.08398351865299776,0.082013867968502,0.08010378215159937,0.07826081069101988,0.07648281252909497,0.07464394548369478,0.0727692880670158,0.0708825663573384,0.06898436081465766,0.06707521846024177,0.06515565498360654,0.06401996321632096,0.06300161511268987,0.061978517686802535,0.060950885701188326,0.05991892203309282,0.058908113513106285,0.05799773660700174,0.05708404476014228,0.05616718003823259,0.05524727695768089,0.05432446294791703,0.053409417585400173,0.052497494996791426,0.05158305065240995,0.05066618585515488,0.049746996802462896,0.04885263383945936,0.0480722437673813,0.04729011019273555,0.046506299526973084,0.04572087498405875,0.04493389676231153,0.04423585388478986,0.04355904465821667,0.042881044867037026,0.04220189712299225,0.041521642096417934,0.040921783104777704,0.04041410840694406,0.03990569275673386,0.039396561372484463,0.03888673837481237,0.038390504670707086,0.03796019068341252,0.03752935028684609,0.037098000544962234,0.03666615781154082,0.03623383776575512,0.03598841527585131,0.035758657235318646,0.03552866903013383,0.035298457712325246,0.035068030055459706,0.03485056516744335,0.03463865650854005,0.03442656649263349,0.034214300430724646,0.03400186343284959,0.03377167953878292,0.03352340886014821,0.0332749553056904,0.033026324002223904,0.03277751989044826,0.03253804632470041,0.03231904432459919,0.03209990253587766,0.031880624715820156,0.03166121449070107,0.03145845463398972,0.031348475970003196,0.03123843609556695,0.03112833659038583,0.03101817898119747,0.03090800395520252,0.030804289001423634,0.030700523426334992,0.030596708486090612,0.030492845396296424,0.03038893533361117,0.03006972887301388,0.029718838939244024,0.029367801694400782,0.029016620632017334,0.02866529913772718,0.02833727337954688,0.02801693505184647,0.027696477476272918,0.027375903379857743,0.027055215408353872,0.026737953781951918,0.0264225923695784,0.026107126399785085,0.025791558181082728,0.025475889955517778,0.025175827069801586,0.02488932723330987,0.02460274244646607,0.024316074522210334,0.024029325223012335,0.023747483972360324,0.023471917824607273,0.02319627832230663,0.02292056698030079,0.02264478527261667,0.022379865954825766,0.022135011181798774,0.02189009768368916,0.021645126635249652,0.0214000991805688,0.021176984709934236,0.021013097269630087,0.020849174296806036,0.02068521648070188,0.020521224493114353,0.0203571989889435,0.020193140606716828,0.020029049969094076,0.01986492768335567,0.0197007743418693,0.019536590522543824,0.019372376789264827,0.019208133692314944,0.019043861768778984,0.018879561542936782,0.018715233526638102,0.018550878219668533,0.018386496110100743,0.018222087674633507,0.01805765337892135,0.01789319367788844,0.017728709016036244,0.017564199827738658,0.01739966653752762,0.017235109560368587,0.017070529301929482,0.016910070898882898,0.016749861484378962,0.016589630545661455,0.01642937844374622,0.016269105531777024,0.016108812155235554,0.015948498652149232,0.015788165353290133,0.015627812582368138,0.015467440656217408,0.015307049884979365,0.015146640572275376,0.014986213015378566,0.014825767505378113,0.014665304327338402,0.014504823760455709,0.014344326078205339,0.014183811548489002,0.014023280433775641,0.013862732991237425,0.013702169472884683,0.013541590125691791,0.013380995191723987,0.01322038490825827,0.013059759507901116,0.012926434449374944,0.012804937924803488,0.012683430475358744,0.012561912263662241,0.012440383449211233,0.012318844188453014,0.012197294634858928,0.012075734938992735,0.011954165248580579,0.01183258570857716,0.01171099646123025,0.011589397646144828,0.011467789400342446,0.011346171858321897,0.011224545152116908,0.011102909411352443,0.010981264763298998,0.010859611332927429,0.01073794924295863,0.010616278613915463,0.010494599564171482,0.010372912209998393,0.010251216665614038,0.01012951304322559,0.010007801453075041,0.00990591540932011,0.009822613556772606,0.009739306470174786,0.00965599421987569,0.009572676875018244,0.009489354503566014,0.009406027172328085,0.009322694946983349,0.00923935789210537,0.009156016071184207,0.00907266954665012,0.008989318379895417,0.008905962631295828,0.008822602360232511,0.008739237625111185,0.00865586848338303,0.008572494991564083,0.00848911720525423,0.008405735179155617,0.008322348967091716,0.008238958622023618,0.008155564196068277,0.008072165740515171,0.007988763305842481,0.007905356941734163,0.007831930706576779,0.007775078926717017,0.007718224567149009,0.0076613676596723945,0.007604508235595898,0.007547646325747471,0.007490781960482662,0.007433915169694285,0.007377045982821157,0.007320174428856584,0.007263300536357487,0.007206424333451692,0.007149545847846698,0.007092665106837372,0.007035782137313587,0.006978896965768327,0.006922009618304224,0.006865120120641316,0.006808228498124049,0.006751334775728106,0.00669443897806707,0.006637541129399628,0.006580641253635088,0.00652373937434037,0.006466835514746021,0.006413651446666976,0.006370786335377136,0.006327919783468614,0.00628505180747071,0.006242182423681195,0.006199311648170432,0.006156439496785244,0.006113565985153315,0.006070691128686334,0.006027814942584226,0.0059849374418387115,0.005942058641236796,0.005899178555364787,0.005856297198611042,0.005813414585169812,0.005770530729044471,0.005727645644050627,0.0056847593438197975,0.005641871841801809,0.005598983151268337,0.005556093285315791,0.005513202256868217,0.25699459193830765,0.25669214158631876,0.25578657446683567,0.2542831901888861,0.252190650955467,0.24957690276622918,0.2464963523015061,0.242808088457956,0.23843714664368504,0.23371672149274508,0.22867571144254492,0.22339881599163458,0.21795376237278957,0.21240500721723982,0.20688967204759676,0.20116031537449175,0.19558966525077387,0.1899789471043817,0.1844393804127943,0.17906041206138665,0.1737797456514774,0.16890653687848936,0.1641746838181122,0.15953820473494168,0.15511063881079679,0.15050606979287945,0.14560088297189672,0.1404419101035595,0.13564311747566504,0.1310823459101595,0.12672071045059982,0.12259552263783023,0.11871491440218858,0.1149775213967146,0.1113584143705499,0.10833096626794453,0.10538352894343701,0.10251323154727358,0.09972704860487774,0.09713229161777359,0.09476737527352803,0.09251904330190143,0.0903347116769558,0.08821512225641179,0.08618062614122332,0.08420537599434953,0.08228887828361306,0.08038669052877546,0.07844846543503402,0.07649721446905829,0.07453356426317112,0.07255810550911632,0.07057139519651434,0.06908917422034362,0.0681303905378811,0.06716694471148915,0.06619904780401907,0.06522689921959786,0.06425068742908087,0.06326816150511964,0.062281324886132895,0.06129092050754112,0.06029709992513377,0.059300006712301186,0.05830426977123114,0.0573194123512892,0.056331722670638094,0.05534131478037355,0.05434829698022987,0.05335277215717956,0.052474853083679524,0.051629455884771344,0.05078217580244713,0.04993308400329207,0.049082248254392474,0.048275918730834734,0.047543660426454644,0.04681006541182832,0.046075181669885695,0.04533905499365433,0.04460891676822207,0.04405948223453711,0.04350921624521165,0.04295814718501376,0.04240630220065984,0.04185370726542619,0.041426061131677794,0.041041760625002685,0.04065698948480788,0.040271762868933164,0.03988609530852927,0.039564861725504094,0.03931334058515299,0.03906155861781387,0.03880952383996998,0.03855724395080021,0.03830991596648341,0.03807789687358265,0.03784567236307568,0.03761324846933727,0.037380630997837186,0.037146067380350985,0.03687419795558219,0.03660212148831488,0.03632984380081747,0.03605737050345843,0.03578470700407442,0.035580752376394235,0.03538776853559692,0.03519466092440647,0.03500143285229813,0.03480808751396499,0.034664802872682504,0.03454342599078434,0.03442198118553965,0.03430047020121212,0.034178894723877064,0.03406119784638091,0.033946732122106645,0.033832210189278566,0.033717633436086455,0.03360300320612763,0.0333771355938384,0.03299003438910068,0.03260276551257308,0.03221533295208659,0.03182774057198586,0.031446263054554155,0.03108049190254439,0.03071458032482238,0.03034853154175165,0.02998234867746589,0.029619283349784746,0.029272075497666025,0.028924748968203493,0.028577306388843916,0.028229750311193635,0.027884138936462705,0.027568691819431026,0.027253148309079375,0.026937510468048854,0.026621780301412892,0.026305959758652662,0.026002118642470325,0.025698613603325576,0.025395027075169243,0.025091360734335627,0.024787616212169062,0.02455041952326193,0.024322552094446344,0.024094629521870536,0.02386665290453256,0.023638623312854636,0.023448599531377182,0.023268461864404823,0.023088284775282335,0.022908069025940263,0.022727815359098784,0.022547524498864772,0.022367197151307465,0.022186834005012347,0.022006435731617844,0.02182600298632703,0.02164553640840651,0.021465036621664522,0.02128450423491227,0.021103939842411237,0.020923344024300173,0.0207427173470117,0.0205620603636721,0.020381373614487518,0.02020065762711882,0.020019912917039154,0.019839139987884225,0.019658339331787882,0.01947751142970736,0.019296656751736835,0.019115775757413144,0.018934070455270745,0.018751377957386836,0.01856866021809535,0.018385917661624663,0.01820315070293137,0.018020359747948377,0.017837545193830014,0.017654707429186824,0.01747184683431292,0.017288963781408602,0.017106058634791123,0.01692313175110353,0.016740183479514753,0.016557214161913962,0.01637422413309837,0.016191213720957727,0.01600818324664841,0.015825133024766725,0.01564206336351506,0.015458974564862664,0.015275866924704094,0.015092740733008241,0.014909596273967554,0.01472643382614055,0.014543253662590702,0.014370146434449834,0.0142357339397976,0.01410130902607053,0.013966871878431607,0.013832422678478874,0.013697961604330264,0.013563488830708249,0.013429004529017945,0.013294508867427177,0.013160002010942097,0.013025484121480756,0.012890955357946737,0.01275641587629662,0.01262186582960965,0.012487305368153442,0.012352734639448335,0.012218153788329618,0.012083562957009917,0.011948962285136155,0.011814351909848746,0.011679731965837332,0.011545102585395033,0.011410463898473085,0.01127581603273039,0.011141159113585429,0.011007423878752165,0.010917681327242012,0.01082793298494358,0.010738178929777796,0.010648419238326911,0.010558653985864195,0.01046888324638163,0.01037910709261695,0.010289325596081152,0.010199538827082938,0.010109746854754917,0.010019949747077938,0.009930147570904952,0.009840340391985268,0.009750528274986,0.009660711283515207,0.00957088948014347,0.00948106292642499,0.009391231682918102,0.009301395809206312,0.00921155536391662,0.009121710404739632,0.009031860988448093,0.008942007170914923,0.008852149007132125,0.008762286551226685,0.008695672416570446,0.008632327729162287,0.008568980127406837,0.008505629647135651,0.008442276323628945,0.008378920191625198,0.008315561285332288,0.008252199638437504,0.008188835284117265,0.008125468255047674,0.008062098583412832,0.007998726300914928,0.00793535143878309,0.00787197402778209,0.007808594098221775,0.00774521167996441,0.007681826802433762,0.007618439494622989,0.007555049785102563,0.007491657702027916,0.007428263273147664,0.007364866525809992,0.007301467486970669,0.007238066183199894,0.007174662640689151,0.007123188588565542,0.007075427282907163,0.007027664348469152,0.006979899803889582,0.006932133667545809,0.0068843659575595715,0.006836596691800702,0.006788825887892073,0.006741053563213794,0.006693279734907403,0.0066455044198799355,0.006597727634808429,0.006549949396143165,0.006502169720112058,0.006454388622724324,0.006406606119774105,0.00635882222684464,0.0063110369593110515,0.006263250332344378,0.006215462360914902,0.0061676730597954735,0.2831628278819052,0.282813773928705,0.2817687254301408,0.28003395900402084,0.2775438839983904,0.27431694308977256,0.2704319780875717,0.2660097425842396,0.2610835691708942,0.25573377071424885,0.25012964599655535,0.24425626888781815,0.23819123452234373,0.23200125305715455,0.2258186272872838,0.21950251709744353,0.21329346003629954,0.20699347709802665,0.2009749296875176,0.19495976153103714,0.18904699354317325,0.18368205477996735,0.1784301754785723,0.17330415952149592,0.1680406842585906,0.16233146178550828,0.15643903804602,0.15091802167403218,0.14572835973298728,0.14076886241737108,0.1360429637198162,0.13164529235463848,0.12742921269909185,0.12338950721636537,0.11956724561726273,0.11620823464255459,0.11305518468367079,0.10998411740548283,0.10711804364816792,0.10449140327584931,0.10200476067525317,0.09958524593063214,0.09724967020806352,0.09499278929154513,0.09279938506180316,0.09066945522977451,0.08860254970300868,0.0866011991003227,0.08473889629362966,0.08286921317902371,0.0809870633407535,0.07909304059595991,0.07718770504565843,0.07533919586378224,0.07430553788888274,0.07326661364279104,0.0722226617965964,0.07117390787006879,0.07012056504357121,0.06906162876227713,0.06799643857049159,0.0669272200012572,0.0658541445299253,0.06477737460549694,0.0636970641960985,0.0626301619553077,0.06156440200339148,0.06049557846404969,0.059423813724747004,0.05834922405215357,0.05732403022915405,0.05641008815099669,0.05549402234136673,0.054575913311835256,0.05365583772294214,0.05273386860124866,0.0519296876846236,0.05113620219334929,0.050341264170114336,0.04954492539687493,0.04874723530925067,0.04806231025764454,0.047466918723603445,0.046870622585181355,0.04627345252479644,0.04567543789562141,0.04514587684296469,0.04481980018125205,0.04449330815254754,0.04416641418088448,0.04383913113391722,0.04351147135062622,0.043235482301180045,0.042959899311486534,0.04268402877205704,0.04240787947051324,0.04213145984870974,0.041871814470018524,0.04161759112554128,0.04136314112179701,0.04110847108138208,0.04085358737708265,0.04057548555823255,0.040277589100284256,0.039979464011469894,0.039681116688386184,0.03938255329606022,0.03913285651846337,0.038973383762810225,0.038813804934294635,0.0386541228788374,0.0384943403433708,0.038339211703941056,0.03820534745369918,0.03807140555685105,0.03793738801403579,0.03780329675895844,0.03766935794629863,0.037543103714938644,0.037416785256471234,0.037290404162341265,0.0371639619727236,0.03703746017854147,0.03664408331066965,0.03621688846389549,0.03578950667325871,0.03536194236640297,0.03493419983445638,0.03451450426377764,0.034097237188828795,0.03367980819206941,0.033262220971987735,0.0328444791170104,0.032449506879775415,0.03206713581502953,0.03168463258841129,0.031302000114680165,0.030919241224793673,0.030555396020210124,0.03020799577822819,0.029860488145105637,0.029512875410337768,0.029165159799761572,0.028823327871797363,0.028489165262870715,0.028154909911790857,0.027820563731924028,0.027486128585141205,0.027196259401769392,0.02699182395060498,0.02678733737736628,0.026582800703776208,0.02637821492491761,0.026175324262035022,0.025977411409067223,0.025779453814707018,0.025581452346061916,0.025383407848317288,0.025185321145419853,0.0249871930407357,0.024789024317684222,0.024590815740351383,0.024392568054075386,0.024194281986016593,0.02399595824570464,0.023797597525565466,0.023599200501433017,0.02340076783303701,0.023202300164479377,0.023003798124691024,0.022805262327873107,0.02260669337392565,0.022408091848855956,0.02220945832517879,0.022010793362299934,0.021812097506887472,0.021613371293230276,0.021414615243586933,0.021215829868517874,0.021008498952070475,0.02080029026312413,0.02059205240111092,0.02038378585493815,0.020175491102853976,0.019967168612737816,0.019758818842378175,0.01955044223974183,0.01934203924323739,0.019133610281964534,0.018925155775961433,0.01871667613644151,0.018508171766023256,0.018299643058952635,0.018091090401321362,0.0178825141712726,0.01767391473920647,0.01746529246797618,0.017256647713078468,0.017047980822840838,0.016839292138597986,0.01663058199486812,0.016421850719521663,0.016213098633945357,0.016004326053200905,0.01583495390133608,0.01568624334694544,0.015537518843664362,0.015388780598925261,0.015240028816175878,0.015091263694976067,0.01494248543108789,0.01479369421656703,0.014644890239849766,0.014496073685837468,0.014347244735980723,0.014198403568357073,0.01404955035775075,0.01390068527572808,0.013751808490711271,0.01360292016804981,0.013454020470091888,0.013305109556249936,0.01315618758306829,0.01300725470428721,0.012858311070905003,0.012709356831240763,0.012560392130991074,0.01241141711328958,0.012262431918762712,0.012137787605187609,0.01204119160741417,0.0119445892763723,0.01184798069707093,0.011751365953062622,0.011654745126474466,0.011558118298038112,0.01146148554712057,0.011364846951751391,0.011268202588651808,0.011171552533262068,0.011074896859767754,0.010978235641127028,0.01088156894909434,0.010784896854246454,0.01068821942600629,0.01059153673266654,0.010494848841412456,0.010398155818345314,0.010301457728502847,0.010204754635881639,0.010108046603457765,0.010011333693206894,0.009914615966125329,0.009817893482247717,0.009729439256642032,0.009658864857347963,0.00958828711488471,0.00951770607038411,0.009447121764343687,0.0093765342366377,0.009305943526530004,0.009235349672685522,0.009164752713181592,0.00909415268551992,0.00902354962663633,0.00895294357291235,0.008882334560185353,0.00881172262375869,0.0087411077984124,0.008670490118411894,0.008599869617518184,0.008529246328997141,0.00845862028562857,0.008387991519714979,0.008317360063091079,0.008246725947131214,0.008176089202758453,0.0081054498604526,0.008034807950258,0.007967626594892432,0.007914412584489196,0.007861196705836774,0.00780797898031222,0.007754759428992868,0.007701538072662212,0.007648314931814203,0.0075950900266589134,0.007541863377127365,0.007488635002876432,0.007435404923293376,0.007382173157501203,0.007328939724362255,0.007275704642483355,0.007222467930220005,0.0071692296056805275,0.00711598968673089,0.007062748190997922,0.007009505135873944,0.006956260538520597,0.006903014415872679,0.3120513187233951,0.311616804135507,0.31031740526929874,0.30818014436608515,0.30520629848395453,0.30141352483807304,0.29704069174799413,0.2919632005447555,0.2864618470203014,0.2804826644771631,0.27413243830702166,0.26751017056838744,0.260702909014665,0.2537776624415903,0.2467936302034459,0.23991586498025985,0.23287580502523927,0.22600908689690144,0.21923573661727022,0.2124905593058805,0.2060651256739903,0.19993370752509454,0.19404353158465648,0.18809092183004178,0.18146025220475462,0.17469892205409596,0.16833261615728728,0.16240103709326517,0.15673756736261626,0.15133338089137435,0.14630832719750778,0.14151428138823827,0.13692453648767888,0.13258742962926126,0.12849116130083663,0.12472743566102615,0.12135748502210829,0.11819421217838472,0.11528443224424445,0.11254125128715833,0.10986671429401025,0.10729899880175026,0.10479900489618893,0.10236595726676803,0.10000062893092604,0.09770690806520016,0.09550020028654249,0.0933563310417163,0.09142384643246032,0.08965785029071484,0.08787942917979853,0.08608917460567515,0.08428764469504191,0.08247536621973764,0.08108678524598091,0.07996746122986632,0.07884243290458262,0.0777119564425767,0.07657627403899452,0.0754356147650584,0.07428708027408534,0.07313357183780503,0.071975689346896,0.07081361744747201,0.0696475311527453,0.06848467532498106,0.06733533089581073,0.06618251816624887,0.06502637608661463,0.06386703665484512,0.06270462532111945,0.061681229549125124,0.06069124964730648,0.05969895524753902,0.0587044334767474,0.05770776732580982,0.05676320242740991,0.05590527220614833,0.055045697675377224,0.054184537662799646,0.05332184832521991,0.05246367334081129,0.05189226700683152,0.05131995266688235,0.05074676123334479,0.05017272227619396,0.049597864092596235,0.04919783927609854,0.048869748914064294,0.04854123659125555,0.04821231586780066,0.04788299974518772,0.04756566535353257,0.04726410567888327,0.046962217576874465,0.04666001112306412,0.04635749599541475,0.04605944384871192,0.04578119802750532,0.045502693480017536,0.045223937794945095,0.04494493827386208,0.04466570194436084,0.04437906454146484,0.04409201978913266,0.043804752075647775,0.043517267609870416,0.04322957237700255,0.04304417825057984,0.04288720397894107,0.04273012397261115,0.04257294105589764,0.04241565795533214,0.042264213817659775,0.04211651108062599,0.04196872153655223,0.041820847412716605,0.04167289086221203,0.04152881133199958,0.041389500167271366,0.04125011715971889,0.041110664082380906,0.040971142651415576,0.04072704330117981,0.04024554364756742,0.03976382497217587,0.039281892480999246,0.03879975121900254,0.03832048301386914,0.037855586803178104,0.03739050316501345,0.03692523639546432,0.03645979066236602,0.03599658761238629,0.03557567933635308,0.0351546199863869,0.03473341290576035,0.03431206134131842,0.0338905684468907,0.03350589734020226,0.03312333752736723,0.032740657627152454,0.0323578601912175,0.0319749477005177,0.03163289304074355,0.03129850630075065,0.03096402529134777,0.0306294519511892,0.03029478816692524,0.030055261960378905,0.029848106267065203,0.029640897937531777,0.029433638020519178,0.029226327537509107,0.029012365654783653,0.0287949234597358,0.028577431302729814,0.028359890149164922,0.02814230094010694,0.02792466459304396,0.0277069820026172,0.02748925404131952,0.027271481560174272,0.027053665389386448,0.026835806338971528,0.026617905199360886,0.02639996274198887,0.026181979719853147,0.02596395686806119,0.0257458949043548,0.025527794529616534,0.02530965642836141,0.025091481269205667,0.024873269705325957,0.024655022374899298,0.024436739901529142,0.024218422894656415,0.024000071949959876,0.023781687649736902,0.023557677616609415,0.023320587877046772,0.023083463748509336,0.02284630580880553,0.02260911462311076,0.022371890744312062,0.022134634713338222,0.021897347059480408,0.021660028300701666,0.021422678943940034,0.02118529948539539,0.020947890410814202,0.02071045219576175,0.020472985305886145,0.020235490197177488,0.0199979673162124,0.01976041710039765,0.01952283997820335,0.019285236369388604,0.019047606685224063,0.01880995132870126,0.01857227069474189,0.018334565170397943,0.018096835135046528,0.017859080960578075,0.017624301594090362,0.017463180826362036,0.017302044430043108,0.017140892638025682,0.016979725678716088,0.016818543776143984,0.016657347150064148,0.01649613601605956,0.01633491058563956,0.016173671066335063,0.01601241766179361,0.01585115057186698,0.015689869992701146,0.015528576116821303,0.015367269133215077,0.015205949227413114,0.015044616581569548,0.014883271374535824,0.0147219137819373,0.014560543976245033,0.014399162126846147,0.014237768400114264,0.01407636295947368,0.013914945965466396,0.01375351757581493,0.013592077945484293,0.013476254397873783,0.013368992051309666,0.013261722535569976,0.013154445946662723,0.013047162378953732,0.0129398719252013,0.012832574676591763,0.01272527072277081,0.01261796015187732,0.012510643050574657,0.012403319504081212,0.01229598959620176,0.012188653409354988,0.01208131102460334,0.011973962521680575,0.011866607979019126,0.01175924747377626,0.011651881081861272,0.01154450887795894,0.011437130935555453,0.011329747326962222,0.011222358123339046,0.011114963394718264,0.011007563210025462,0.010900157637102429,0.01081256956958722,0.010733938427714456,0.010655303485909328,0.010576664790812691,0.010498022388345877,0.0104193763237254,0.010340726641476335,0.010262073385445441,0.010183416598814886,0.010104756324113697,0.010026092603230959,0.009947425477427737,0.009868754987348646,0.009790081173034358,0.009711404073931522,0.009632723728904734,0.009554040176247114,0.009475353453690868,0.009396663598417425,0.009317970647068415,0.009239274635754215,0.009160575600064556,0.009081873575077677,0.009003168595369487,0.008924460695023366,0.008856762341603966,0.008797472194186732,0.008738179921687505,0.008678885548358455,0.008619589098112116,0.008560290594528081,0.008500990060857817,0.008441687520031122,0.008382382994661576,0.008323076507051837,0.008263768079199764,0.008204457732802668,0.008145145489263138,0.008085831369693977,0.008026515394922966,0.007967197585498388,0.007907877961692842,0.007848556543508495,0.0077892333506815485,0.0077299084026867205,0.3442113454260628,0.34371383765198477,0.34222452362880984,0.33975292862387485,0.336314593544547,0.33206833784973283,0.32704265384088366,0.3213409657348301,0.3150039509233252,0.30827573474704495,0.30112540375186286,0.2936684531829208,0.2860025506064447,0.2782098360552759,0.27035896035982077,0.2625875313194791,0.2547439599049784,0.24710075824832078,0.23944085608458576,0.23207734138565714,0.2248660516292402,0.21779457339398564,0.21113184311167638,0.203449828248527,0.19564871216813084,0.1882889729323447,0.18147341252713686,0.17497326670972185,0.1687781010579389,0.16300915633937907,0.157532354941984,0.1522942773189708,0.14733511805284805,0.14267473106337925,0.13820382149812127,0.13393487473841248,0.13044785223731173,0.1272414912091816,0.12422731911941912,0.12129451869047397,0.11846623131034562,0.115703771513364,0.11301024332355417,0.11038761336522955,0.10786839756453218,0.10541718759589834,0.10303326695356915,0.10071667947198687,0.09849025544067977,0.09685235336995561,0.09520221768612772,0.093540430132481,0.09186753987952999,0.0901840654612239,0.08853816750065073,0.08733349067293465,0.08612231050747425,0.0849049193321837,0.08368159358509764,0.0824525947737368,0.08121718798001758,0.07997471802441955,0.07872726723222855,0.07747504633675141,0.07621825509108103,0.07495708292106246,0.07371060590708235,0.07246703767772007,0.07121967949898145,0.06996868209420591,0.06871418870707845,0.06749924479544797,0.06642996873672173,0.06535805828528223,0.06428361296208984,0.0632067275573478,0.062127492394590665,0.061168340895172056,0.06023928893430894,0.05930843388636142,0.05837583986489813,0.05744156809230178,0.056686727986491416,0.056178597541674334,0.055669648665551255,0.05515990906308771,0.05464940524364102,0.054153531030613974,0.05379472507598672,0.05343543464746382,0.05307567537935243,0.05271546225999813,0.05235480966379547,0.052019252506409985,0.05168898612905437,0.051358354536319185,0.0510273688780117,0.050696039866282745,0.050379847452469546,0.05007508995307387,0.049770044535518525,0.04946471960636311,0.04915912325567224,0.04887263619938264,0.04862250291611347,0.048372166243807975,0.04812163187028166,0.04787090527775826,0.04763145445292896,0.04745840876157305,0.04728524114481785,0.047111954873101256,0.04693855310324473,0.04676503888325012,0.046601837370747516,0.04643888867091642,0.04627584250549749,0.0461127013658405,0.045949467660648516,0.04579395383922307,0.045640255221983055,0.04548647590225215,0.045332617864617564,0.04517868303024487,0.04476572659564296,0.04421693904341925,0.043667897227326495,0.04311860717054637,0.04256907471063587,0.042039167089791316,0.04152730489638926,0.0410152324341015,0.04050295450699746,0.03999047577621878,0.039497405474895886,0.03903395808462801,0.03857034114715293,0.03810655840297064,0.03764261348504751,0.03719070224094514,0.036769600108045065,0.03634836021102217,0.03592698548799727,0.035505478795395756,0.03510385801773801,0.0347951046539173,0.03448626061545368,0.03417732777381577,0.033868307950097314,0.03356549181303994,0.03333536420666069,0.033105175713420816,0.03287492755071679,0.03264462090419467,0.03241425692876918,0.032175563645460536,0.03193672123866418,0.03169782283113823,0.03145886950213188,0.03121986230376345,0.030980802261864122,0.030741690376783575,0.03050252762417337,0.0302633149557386,0.030024053299963042,0.02978474356280752,0.02954538662838714,0.029305983359617552,0.02906653459884511,0.028827041168451906,0.028587503871439303,0.028347923491995053,0.028108300796033908,0.027868636531726332,0.027628931430006064,0.02738918620506099,0.027149401554806846,0.02690957816134835,0.02666971669141829,0.026429817796808613,0.026171375799545843,0.025901540835239628,0.025631665891456514,0.025361751638404213,0.025091798731672124,0.024821807812625243,0.02455177950878674,0.02428171443420686,0.024011613189824633,0.023741476363809935,0.023471304531902933,0.023201098257738775,0.022930858093162365,0.022660584578537188,0.022390278243036993,0.022119939604936134,0.021849569171887323,0.021579167441190896,0.021308734900059707,0.021038272025868755,0.020767779286404515,0.020497257140103402,0.0202267060362837,0.01995612641537006,0.019685518709115078,0.019448718084944333,0.019274640470715688,0.01910054559421889,0.01892643371214581,0.018752305076255076,0.01857815993348681,0.018403998526079445,0.01822982109168024,0.018055627863453334,0.017881419070186675,0.01770719493639138,0.01753295568240312,0.017358701524478302,0.017184432674888023,0.017010149342009045,0.01683585173041467,0.016661540040958343,0.016487214470859688,0.016312875213786042,0.01613852245993172,0.015964156396097343,0.01578977720576265,0.015615385069161892,0.015440980163354942,0.01526656266229691,0.015100177663044846,0.014980685668930046,0.014861185392307422,0.014741676944281771,0.014622160434051942,0.01450263596895138,0.014383103654489224,0.014263563594387007,0.014144015890617773,0.014024460643442607,0.013904897951446225,0.013785327911573272,0.013665750619160422,0.0135461661679711,0.013426574650227563,0.013306976156642572,0.01318737077644992,0.013067758597436032,0.012948139705967235,0.012828514187019878,0.012708882124207984,0.01258924359981024,0.012469598694798079,0.0123499474888596,0.012230290060426467,0.012110626486698351,0.01202263132939558,0.011935025955107011,0.011847416246618805,0.01175980225700868,0.01167218403853743,0.01158456164266449,0.011496935120063044,0.011409304520636179,0.011321669893529994,0.011234031287149067,0.011146388749170242,0.011058742326556096,0.010971092065569357,0.01088343801178456,0.010795780210101937,0.010708118704759557,0.010620453539345796,0.010532784756810944,0.010445112399479966,0.010357436509062541,0.010269757126665231,0.010182074292802231,0.010094388047405888,0.010006698429838168,0.009919005478899463,0.00984995006344679,0.009783891418423382,0.009717830347795381,0.00965176687917323,0.009585701039781819,0.00951963285646619,0.009453562355698926,0.009387489563586513,0.009321414505875533,0.009255337207959674,0.009189257694884708,0.009123175991355295,0.009057092121740603,0.008991006110079951,0.008924917980089129,0.00885882775516483,0.008792735458390844,0.008726641112543086,0.00866054474009487,0.2848790721685212,0.2846022818666303,0.28377312556812756,0.2823952205998258,0.2804745088615002,0.27801913091719804,0.27503925842582627,0.2716206257544878,0.26796470541436473,0.26386551973235794,0.2593377954413559,0.2547867703245533,0.24988219233321388,0.24481793350934225,0.23966787731018732,0.23393946471789726,0.2272149204862497,0.2203914588890592,0.21368012019255467,0.20703623944679056,0.20041742733705323,0.19406856761898678,0.18774348597973162,0.18161676308738764,0.17569631291000554,0.16988128913102468,0.1642654872324607,0.15892323071897066,0.1538036357139644,0.14890103156733434,0.1443261389581903,0.14050653811221436,0.1372062213329981,0.1340562231914421,0.13104205246958628,0.12812459737446757,0.12530737919372326,0.12263190997452468,0.12003735422852824,0.11752192713748712,0.11511683415318438,0.112796801617459,0.11053992046914725,0.10833226047045333,0.1061900257638076,0.10447340180141809,0.10312101547760588,0.10175303076614775,0.10037011757528887,0.09897291470144964,0.09756203106640668,0.09613804695438574,0.09493189178841988,0.09371885398484206,0.09249616978468106,0.09126423930210335,0.09002344361089745,0.08877414565435662,0.08751569453608007,0.08624915562187552,0.08497509563694773,0.08369381374422599,0.08240559501561034,0.08111071114204096,0.07983034506287112,0.07854767327649868,0.07725919000284551,0.07596511560419811,0.07466566032895543,0.07337477558363116,0.07226434166734678,0.07114983290705428,0.07003139742070225,0.06890917672029383,0.06778330604591964,0.0667210331841402,0.06574988029210907,0.06477591644039744,0.06379923863374315,0.0628199397177732,0.06183810858480246,0.06134237172217205,0.06092538940311523,0.06050744038201618,0.060088556324022185,0.05966876759314918,0.059262645679632346,0.05887958771400764,0.05849578384775226,0.0581112574836482,0.057726031097443856,0.057340126281129784,0.05698557646997128,0.05663182129351039,0.05627750098886097,0.055922632409032925,0.05556723176851382,0.05522849591935735,0.05490130901430091,0.05457367507964149,0.05424560690613853,0.053917116817576875,0.053621791080699095,0.05342208200545807,0.05322213789544089,0.05302196520929923,0.052821570178399974,0.0526209588164216,0.052432714086460996,0.05224473807959521,0.05205657551779924,0.051868231291472104,0.051679710126242964,0.05149920734053773,0.05132206657216683,0.05114477227677939,0.05096732832842333,0.0507897384751826,0.05061685758461196,0.050449559443903134,0.050282133981514834,0.05011458429332534,0.04994691337800158,0.04967114436809965,0.04905405909002629,0.04843655932828081,0.04781865480461213,0.04720035494575881,0.04658418855297248,0.04602704311886034,0.04546956584494205,0.0449117642468718,0.04435364561973612,0.04379521704593249,0.04328264843445059,0.042777487967272355,0.04227206553319519,0.04176638682886978,0.041260457390173644,0.040786685491938465,0.04032734597870455,0.03986779327698423,0.03940803187298303,0.03894806613025365,0.03858838698407485,0.038316742683082765,0.03804498512239753,0.03777311661057377,0.03750113939497848,0.03723625939541209,0.0369826361847733,0.03672891764294179,0.03647510565375178,0.03622120205259723,0.035965648172012886,0.035705418069952845,0.03544509949608417,0.03518469414683562,0.03492420367628627,0.03466362969746323,0.03440297378359126,0.03414223746930187,0.033881422251791644,0.0336205295919465,0.03335956091542339,0.03309851761369338,0.03283740104505215,0.03257621253558836,0.03231495338012537,0.032053624843127466,0.031792228159574554,0.03153076453581139,0.03126923515036023,0.031007641154713644,0.030745983674097054,0.030484263808206926,0.030222482631922967,0.029960641196001465,0.02969874052773784,0.029436781631615082,0.029144440760142047,0.028839262737828067,0.028534020267217956,0.02822871441879065,0.027923346239869966,0.02761791675524167,0.027312426967751303,0.027006877858887276,0.026701270389337207,0.026395605499535752,0.02608988411019068,0.025784107122794366,0.02547827542011803,0.025172389866695604,0.024866451309284134,0.02456046057731909,0.024254418483351387,0.023948325823471513,0.023642183377725147,0.0233359919105083,0.023029752170958588,0.022723464893331716,0.022417130797366874,0.022110750588641082,0.021804324958917754,0.021533392405757704,0.0213462923586145,0.021159165804147947,0.02097201313286883,0.020784834727821278,0.020597630964756336,0.020410402212306247,0.020223148832151015,0.02003587117918025,0.019848569601653637,0.019661244441350992,0.019473896033724028,0.019286524708041156,0.01909913078752884,0.018911714589508487,0.01872427642553259,0.018536816601511588,0.018349335417842835,0.01816183316953344,0.01797431014631964,0.017786766632786097,0.017599202908476323,0.017411619248005685,0.017224015921168952,0.017036393193045212,0.016848751324099995,0.016715339038243793,0.01658267993393542,0.016450007833603203,0.016317322908999114,0.01618462532894894,0.016051915259415874,0.015919192863558727,0.015786458301792247,0.015653711731844225,0.015520953308811172,0.015388183185214347,0.015255401511050856,0.015122608433847086,0.014989804098709054,0.014856988648371827,0.014724162223247387,0.014591324961473298,0.014458476998956346,0.014325618469418901,0.014192749504442326,0.014059870233509257,0.013926980784047032,0.013794081281465935,0.013661171849200564,0.013528252608748362,0.013421671493231195,0.013324357392539806,0.013227036370608625,0.013129708510975256,0.01303237389589205,0.0129350326063505,0.012837684722105112,0.01274033032169808,0.012642969482480736,0.012545602280637124,0.012448228791205752,0.01235084908810088,0.012253463244134658,0.012156071331036017,0.012058673419471958,0.011961269579066881,0.011863859878421862,0.011766444385133202,0.011669023165811903,0.011571596286100067,0.011474163810689593,0.011376725803339097,0.011279282326890547,0.01118183344328683,0.011084379213586272,0.010999904875028103,0.01092649067596494,0.010853072584114179,0.010779650642921742,0.01070622489522423,0.010632795383260533,0.010559362148682052,0.01048592523256296,0.010412484675410009,0.010339040517173234,0.010265592797254308,0.0101921415545168,0.010118686827295225,0.010045228653403843,0.009971767070146405,0.009898302114323554,0.009824833822242179,0.009751362229723504,0.00967788737211132,0.30794138487379547,0.30762327342453505,0.30667038541498254,0.30508702717796343,0.30288026870344,0.3002312059373048,0.297032920039073,0.293285651753484,0.2890044627990106,0.28447820944178215,0.27962514334167493,0.27433150738317913,0.2691390914782834,0.2636753671319231,0.2584821932371123,0.2535356050278006,0.24728502384302284,0.23970004326445585,0.23224033958258336,0.22473553691394008,0.21756591358404234,0.21039355649007555,0.20343611950121862,0.1967078852382166,0.19008748860398758,0.18370976855466709,0.17758956552228797,0.17170390471592228,0.16608489936040205,0.16111116834113318,0.15726879361895854,0.15431153134197995,0.1514915081990199,0.14820835043267389,0.14482499640254104,0.14156879215999094,0.1384723495194434,0.13547200751592128,0.13256555335730086,0.12979563699764377,0.1271196835211072,0.12452284164916615,0.12202173404027482,0.11962243686998265,0.11727056119513372,0.11499908681879238,0.11368929195753419,0.11236334708482106,0.11102193952387755,0.10966572550107476,0.10829533128055593,0.10691135431522333,0.10555168633894578,0.104229569041345,0.10289624064689613,0.10155216424023351,0.10019778118594376,0.09883351212747922,0.09745949191497041,0.0960752608013828,0.0946822821331456,0.09328090337654228,0.09187145577267755,0.09045425513703674,0.08903529724430274,0.08763061444954605,0.08621917157505991,0.08480122508446457,0.08337701972765962,0.08194678912971207,0.08059913091227024,0.0793767757467582,0.07814985406559109,0.07691853073861435,0.07568296334535456,0.07444330253946313,0.0734623176864636,0.07257616015175648,0.07168738863055049,0.07079609279323992,0.06990235849415455,0.06907555929412106,0.06862835886694471,0.06818006231459055,0.06773070565908541,0.06728032344151125,0.06682894879291233,0.0663925115983586,0.06596347270829762,0.06553358112348372,0.06510286346872486,0.06467134532038572,0.06424741705809854,0.06385177578908587,0.06345546795721797,0.06305851351969262,0.06266093167602278,0.06226274090211776,0.06189149567311617,0.06152489286433889,0.06115777825258652,0.06079016642387591,0.06042207143426125,0.06012639353634078,0.05990259408237648,0.05967852538799344,0.059454194824738286,0.05922960950589388,0.059007675847852624,0.05879721337115893,0.058586531282227204,0.05837563536319184,0.05816453120076302,0.057953224194169026,0.05775386154331806,0.057555302239569034,0.05735656688693598,0.057157659914012206,0.05695858560592487,0.05668298319367854,0.056370765787494254,0.05605830523333378,0.05574560742635374,0.055432678077239506,0.05495220907217761,0.05426845554154661,0.053584231924831846,0.052899549218130525,0.052214418084929756,0.05154572281921284,0.050928338138198796,0.05031057698406373,0.04969244786169943,0.049073959027139076,0.048458522696784835,0.04789900245170665,0.04733917826667242,0.04677905677947324,0.04621864443987963,0.04565794751613989,0.045194274811719254,0.044743263015898864,0.044292036816933465,0.043840600716518026,0.04338895909359258,0.043044605691785656,0.04274143126813783,0.04243812734805474,0.04213469656545705,0.041831141484622365,0.04153934145424434,0.04125626597715348,0.04097308147911185,0.04068979011014158,0.040406393965105314,0.04011710197469295,0.03982017935522966,0.03952315328865811,0.03922602575474893,0.03892879868395586,0.03863147395892201,0.03833405341593621,0.03803653884632884,0.03773893199782632,0.03744123457585396,0.037143448244792175,0.03684557462919368,0.036547615314949565,0.036249571850423434,0.035951445747542124,0.035653238482849486,0.03535495149852755,0.035056586203375886,0.034758143973765164,0.03445962615455516,0.03416103405998265,0.033862368974519004,0.0335636321537036,0.033264824824941745,0.03296594818828417,0.032667003417177536,0.032344876140032675,0.03201915034977919,0.031693354022165075,0.031367488326959264,0.031041554408667633,0.030715553387205365,0.0303894863585524,0.030063354395378824,0.029737158547660836,0.02941089984327199,0.02908457928855789,0.028758197868892003,0.028431756549218618,0.028105256274571274,0.0277786979705833,0.027452082543979243,0.02712541088305135,0.02679868385812608,0.0264719023220082,0.026145067110420254,0.025818179042424866,0.025491238920835456,0.02516424753261426,0.02483720564926286,0.024510114027192918,0.024238986997251973,0.02403662719679046,0.023834237983640438,0.023631819790499022,0.023429373041796847,0.02322689815389601,0.02302439553527944,0.02282186558673511,0.022619308701537763,0.022416725265620368,0.02221411565774598,0.022011480249672432,0.021808819406312945,0.02160613348589175,0.02140342284009869,0.021200687814233225,0.020997928747351246,0.02079514597240424,0.02059233981637523,0.020389510600413756,0.020186658639961868,0.019983784244882057,0.019780887719579504,0.0195779693631212,0.01937502946935179,0.01917866194648248,0.019027550126944143,0.01887642290753992,0.018725280492297647,0.018574123081757703,0.018422950873049068,0.01827176405995877,0.01812056283300407,0.017969347379500632,0.017818117883629157,0.017666874526502153,0.017515617486225148,0.01736434693796054,0.017213063053987534,0.01706176600376136,0.016910455953970466,0.016759133068594417,0.016607797508956315,0.016456449433777883,0.01630508899923154,0.016153716358990818,0.016002331664281944,0.01585093506392996,0.015699526704407805,0.015548106729882355,0.015396675282259636,0.015280641772794396,0.0151697739085408,0.015058897947736584,0.014948013987956602,0.014837122125275354,0.014726222454295291,0.014615315068176314,0.014504400058661377,0.014393477516104598,0.014282547529497251,0.014171610186493133,0.014060665573434886,0.013949713775376692,0.013838754876109537,0.01372778895818432,0.013616816102934826,0.013505836390499853,0.013394849899846403,0.01328385670878929,0.01317285689401342,0.013061850531093912,0.012950837694515984,0.012839818457695884,0.012728792892998188,0.01261776107175593,0.012530732949062798,0.012455743519306867,0.0123807500048898,0.012305752451317912,0.01223075090346057,0.012155745405561151,0.012080736001247934,0.012005722733544688,0.011930705644881995,0.011855684777106265,0.011780660171490624,0.01170563186874459,0.011630599909023539,0.011555564331938982,0.011480525176566614,0.01140548248145618,0.01133043628464022,0.011255386623642779,0.33405091470333753,0.3336920887768582,0.3326173097764605,0.3308316340791222,0.32834335795204994,0.3252912098571925,0.3216095929635677,0.3174331493085421,0.3128306285630987,0.3076740426976445,0.30215410073283133,0.2967563775644985,0.2909303136985579,0.2855127786865544,0.28005991774338546,0.27455272315181256,0.2689374999617745,0.26146450729595655,0.2529385763965511,0.2447842401110977,0.23659399437433126,0.22867514331102054,0.22097488433051787,0.21338654400291537,0.2061262461399172,0.19910269664003863,0.1922960641618947,0.1858532926295048,0.18028856948864255,0.1757892767207281,0.17238510758744682,0.16914792616098537,0.16608323750231402,0.16311185588878752,0.16012836095256958,0.15667333380229395,0.1531887843817512,0.1498184755157444,0.14662298066782814,0.14352388771146035,0.14051909890544673,0.13764182601182945,0.1348704664758054,0.13217888238431869,0.129575270916427,0.12707892595864212,0.12521278364988678,0.12394843420588063,0.12266820911762671,0.12137277506093831,0.1200627691791406,0.11873880010669705,0.11740144901506641,0.11597977835412002,0.11452903472812972,0.11306573439578059,0.1115903904304722,0.11010349222088313,0.10860550652972698,0.1070960874783603,0.10557573271418592,0.10404555539514948,0.10250594214383649,0.10095726176062347,0.09939986608418205,0.09784902522693105,0.0963050164634577,0.09475340115650628,0.0931944656578067,0.09162848337906987,0.09005571543235354,0.08863618842985917,0.087291752066351,0.08594216877657439,0.08458762316000945,0.08322829172620345,0.08186434329416756,0.08107467894842907,0.08030423830413475,0.07953146676236454,0.07875644382780829,0.07797924564739554,0.07731064761887768,0.07683097394304174,0.07635009369575059,0.07586804632828727,0.07538486968086013,0.07490060005906322,0.07442043078619687,0.07394013604220076,0.07345886110166432,0.07297663643543116,0.07249349132142265,0.07202636866043752,0.07158335024968088,0.0711395650925644,0.07069503605479094,0.07024978513845144,0.06980415836408528,0.069394156900518,0.0689835489447309,0.06857235186011844,0.06816058237753372,0.06774825662271672,0.0674422531809904,0.06719154410430354,0.06694052495803737,0.0666892042045944,0.06643759001111363,0.06619130590889949,0.06595549976990318,0.06571944060799687,0.06548313506567653,0.06524658956177071,0.06501069680430319,0.06478839841389149,0.06456589183954643,0.06434318234365233,0.06412027501750217,0.06389717478800816,0.0634613173196024,0.06297330640119284,0.06248490448710155,0.061996121034397535,0.06150696520511475,0.06086471975896901,0.060107266902909025,0.05934927820201946,0.05859076616295558,0.05783174291511798,0.05709943237697726,0.056415436976385465,0.055731012330716624,0.05504616811722497,0.05436091373073839,0.05368601407123875,0.05306607353216212,0.05244578637012957,0.05182516014072526,0.05120420218603101,0.050582919641965936,0.05014496106624053,0.04970998961218313,0.04927480529281395,0.0488394125697377,0.04840381578315319,0.048047756369072984,0.047709445931196,0.047370986718101055,0.047032381750881334,0.04669363397091367,0.04637006257795642,0.04605416127511405,0.045738134700324305,0.045421985320294817,0.04510571553857005,0.04477788138141701,0.044439335846310046,0.04410066885270228,0.04376188272168616,0.04342297971663734,0.04308396204496973,0.042744831859835304,0.04240559126176023,0.0420662423002232,0.04172678697517658,0.041387227238520286,0.04104756499551357,0.040707802106147516,0.04036794038646551,0.04002798160983875,0.0396879275082016,0.039347779773236884,0.03900754005752984,0.03866720997567815,0.03832679110536641,0.0379862849884036,0.037645693131730565,0.037305017008384976,0.0369642580584445,0.03662341768993362,0.03628249727970138,0.035936122493085414,0.03558928097667859,0.03524236208431636,0.034895367097688784,0.03454829727083936,0.03420115383089944,0.03385393797880437,0.03350665088997743,0.033159293715002265,0.032811867580269535,0.032464373588604094,0.032116812819876724,0.03176918633158912,0.031421495159449093,0.031073740317924505,0.030725922800780396,0.030378043581604834,0.030030103614309273,0.029682103833623553,0.029334045155572062,0.02898592847793629,0.02863775468070314,0.02828952462650462,0.027941239161035924,0.027592899113470105,0.027309438468573918,0.027091074230904476,0.026872677287004678,0.026654248117513175,0.026435787193896894,0.026217294978666913,0.025998771925588665,0.02578021847988903,0.025561635078451977,0.02534302215001434,0.02512438011535385,0.024905709387471855,0.02468701037177106,0.02446828346623133,0.024249529061574335,0.024030747541430326,0.02381193928249704,0.02359310465469447,0.02337424402131866,0.023155357739185266,0.02293644615877522,0.022717509624373997,0.022498548474207288,0.02227956304057307,0.022060553649972826,0.02184931423567473,0.02167717585365722,0.021505019389174,0.02133284508153104,0.021160653165948586,0.020988443873644704,0.020816217431921934,0.020643974064249313,0.020471713990342172,0.020299437426242514,0.020127144584392558,0.019954835673711157,0.019782510899666216,0.01961017046434537,0.01943781456652492,0.01926544340173917,0.01909305716234345,0.018920656037580336,0.018748240213641906,0.018575809873730503,0.01840336519812042,0.01823090636421343,0.018058433546597683,0.017885946917102723,0.01771344664485399,0.017540932896325336,0.017410117663294658,0.017283814180268246,0.017157501186609248,0.017031178796788587,0.016904847123517253,0.016778506277781442,0.01665215636887336,0.016525797504425014,0.016399429790439086,0.016273053331319735,0.016146668229903776,0.016020274587488188,0.01589387250386026,0.015767462077325198,0.015641043404733945,0.015514616581509396,0.015388181701674351,0.01526173885787506,0.015135288141407636,0.015008829642242583,0.014882363449048322,0.014755889649216343,0.014629408328881925,0.014502919572948272,0.014376423465108229,0.014285097429322078,0.0142097269844449,0.01413435230495063,0.01405897343794182,0.013983590429861746,0.013908203326505818,0.013832812173032755,0.013757417013976458,0.01368201789325559,0.013606614854185113,0.013531207939486468,0.013455797191297527,0.013380382651183517,0.013304964360145471,0.013229542358630705,0.01315411668654199,0.013078687383246726,0.36379878667039667,0.36339247988476997,0.36217557409038914,0.360154063359093,0.35733777524962024,0.3538243887411713,0.3496639486920957,0.344850314686705,0.33954227691519845,0.3340255861884813,0.3282968928863307,0.32205455359901575,0.31628309910240027,0.3102740074872697,0.3041897107009809,0.2979540050467743,0.29171225853798693,0.2853627462320883,0.2765725926866196,0.2671372867776496,0.25810094612716533,0.24921128183138933,0.24044188738502378,0.23215466197100054,0.22403698858016263,0.21613375110308958,0.20873054898704668,0.20229263147776513,0.19688934274720132,0.19297629518054257,0.18924800873273964,0.18563423105817758,0.18214002820275754,0.178918038432535,0.17579830815833455,0.17271451918504385,0.1695754201622826,0.16598152288312473,0.16237561455448718,0.15888321794488078,0.15556930891649343,0.15235375731616854,0.14923383262731676,0.1462415245870894,0.14335906318007535,0.14055778744442887,0.13784452069093658,0.13655802440461887,0.13536106496510836,0.13414867522187887,0.1329214936053466,0.1316801309737961,0.13042517150494543,0.12911497154590734,0.12754076234614825,0.12595180674767628,0.12434870319379958,0.12273202309199466,0.12110231195229035,0.1194600905044281,0.117804554090102,0.11613712553176121,0.11445859992480717,0.11276940991752993,0.11106996850050439,0.10936066993284042,0.10766536820524074,0.10597021305001154,0.10426644620024447,0.1025543893090989,0.10083434966262826,0.09910662087797402,0.09767111930409036,0.09628447437126932,0.09489235075326653,0.09349494366746985,0.09209243985721116,0.09076604595015124,0.09005709211401507,0.0893458373065272,0.08863236023080191,0.0879167362716679,0.08719903765531298,0.08657911206569587,0.08605954852031365,0.08553863469843614,0.08501641454025914,0.08449293020383673,0.08396822214883402,0.08343861569032031,0.08290769749826103,0.08237565937096368,0.08184253598263273,0.0813083606578355,0.0807930478278598,0.08029723728969425,0.0798005395369742,0.07930298093418174,0.07880458685509477,0.07830875200989967,0.0778497661951805,0.07739007824080321,0.07692970818567701,0.07646867534196712,0.07600699832640714,0.07567523850294124,0.07539449718207332,0.07511339670881892,0.07483194685869698,0.07455015706746597,0.07427520176713098,0.07401109548763249,0.07374669602845614,0.07348201106785608,0.07321704802643386,0.07294313494274848,0.07258844099609014,0.07223340335626874,0.07187803069242549,0.07152233139271712,0.07116631357528577,0.07061322696065518,0.07001978119394103,0.06942584340509601,0.06883142547242428,0.06823653890465907,0.0674979416633194,0.0666590667989615,0.0658195777775376,0.06497948890935278,0.06413881407410407,0.06332859555174611,0.0625709852328837,0.0618128828421768,0.061054299456432676,0.060295245829875985,0.05955588773128462,0.05891740328721279,0.05827854934282348,0.05763933394128191,0.05699976489890753,0.05635984981296948,0.05589829272035004,0.055440273253366,0.05498202177352287,0.05452354313776406,0.05406484207110414,0.053671802120558054,0.05329435348775708,0.05291673303413023,0.052538944244820314,0.052160990513146877,0.05179956319992573,0.05144709001222361,0.05109447213155678,0.05074171240410383,0.05038881360326096,0.050020699732582906,0.049637274224204685,0.04925370631096272,0.048869998711635776,0.04848615407748455,0.04810217499430036,0.04771806398439098,0.04733382350849062,0.0469494559676024,0.04656496370478163,0.0461803490068449,0.045795614106031744,0.045410761181602054,0.04502579236137957,0.0446407097232467,0.044255515296578625,0.04387021106363861,0.04348479896092126,0.0430992808804515,0.04271365867103938,0.042327934139498015,0.04194210905181071,0.041556185134270424,0.04117016407457654,0.04078404752289535,0.04039783709289266,0.04002550166340383,0.039654813122348906,0.039284038962143726,0.0389131806000194,0.03854223942266386,0.03817121678702673,0.0378001140211097,0.03742893242472701,0.037057673270243015,0.03668633780328621,0.03631492724344636,0.03594344278494031,0.035571885597266865,0.03520025682583765,0.03482855759258839,0.03445678899657699,0.0340849521145538,0.033713048001524415,0.03334107769129166,0.03296904219698151,0.03259694251155363,0.032224779608301085,0.03185255444132623,0.03148026794601197,0.03110792103947548,0.03079590407980023,0.030560863630853943,0.030325786729791054,0.030090673911948352,0.02985552570245097,0.02962034261645265,0.029385125159372794,0.029149873827120268,0.02891458910631769,0.028679271474515967,0.028443921400403915,0.028208539344011338,0.027973125756909693,0.02773768108240109,0.02750220575570852,0.027266700204157647,0.027031164847353854,0.02679560009735783,0.02656000635884995,0.026324384029296627,0.02608873349910949,0.025853055151800374,0.025617349364132323,0.025381616506269435,0.02514585694191633,0.02491377974831176,0.024717702236397077,0.024521603394240504,0.02432548350392019,0.024129342842695745,0.023933181683112547,0.02373700029310086,0.023540798936072492,0.02334457787101754,0.023148337352593487,0.022952077631217517,0.02275579895315368,0.022559501560598584,0.02236318569176444,0.022166851580962786,0.021970499458680626,0.021774129551660398,0.021577742082975082,0.021381337272101546,0.021184915334994968,0.020988476484155884,0.020792020928701246,0.02059554887443088,0.020399060523893203,0.020202556076448445,0.020006035728333576,0.01985262600439456,0.01970874564185221,0.01956485405730999,0.019420951385703062,0.019277037759893655,0.019133113310708317,0.018989178166978423,0.018845232455577732,0.018701276301459045,0.018557309827692273,0.018413333155497317,0.01826934640428044,0.018125349691667725,0.017981343133538247,0.017837326844056076,0.017693300935703583,0.017549265519310017,0.017405220704083412,0.017261166597639876,0.017117103306032246,0.016973030933779956,0.016828949583894498,0.01668485935790814,0.016540760355900165,0.016396652676522443,0.016294213088558895,0.016220052131266285,0.016145886856950533,0.016071717313565385,0.01599754354839314,0.015923365608056194,0.015849183538529366,0.015774997385150015,0.015700807192629836,0.015626613005065584,0.015552414865949375,0.015478212818179972,0.015404006904071696,0.015329797165365163,0.015255583643236969,0.015181366378309153,0.39805039747711257,0.3975649375475983,0.3961404013804968,0.3938419902999666,0.3906407780033826,0.38655282307712335,0.3817908767139124,0.3762663633702093,0.3702041609980197,0.36379047998976444,0.357774923748534,0.3515869529738901,0.344968435139586,0.33819056979739365,0.33125956696017267,0.3242261807034095,0.3171264728023775,0.31006696657556093,0.30291096045825433,0.29271314856528713,0.2823412541673746,0.2722755148987775,0.26261865476948176,0.25314702513869186,0.24399575048956643,0.23539442375897832,0.2276900561564901,0.22103203700335505,0.21653945898715476,0.21220889906310866,0.2080174761094729,0.2039944970452129,0.20014607404571857,0.19646688940104606,0.19297193048781,0.18964324188612178,0.18640956973807757,0.1832166705468108,0.17993180929283703,0.17622994077713233,0.17248041958413618,0.1688557034831895,0.16540397122627168,0.16205226827350813,0.15879848089229476,0.15568318621135036,0.15267205725418428,0.1502503509295537,0.14915150501252203,0.14804669956990507,0.14692722664567107,0.145793601957763,0.14464640062106718,0.14348617335285932,0.1420958780893633,0.14037604585792277,0.13863950147252774,0.13688691426382812,0.1351189239985468,0.13333614206464467,0.1315391526414888,0.12972674747376184,0.12790118054837443,0.12606299425928158,0.12421267565900959,0.12235069003196526,0.12047748188996048,0.11862404325327214,0.11676554602854358,0.11489723418806455,0.11301947135502795,0.11113260511953069,0.10923696780109246,0.10794148103951925,0.10668022364103531,0.10541378292084526,0.1041423423666508,0.10286607758315086,0.10167126210916211,0.10088084557665862,0.10008775969688757,0.09929209527185333,0.09849393930820662,0.09769337519740172,0.09700868781388117,0.0964290060172116,0.09584775612283271,0.09526498893058861,0.09468075319451716,0.09409509571796987,0.09352752883813142,0.09295934657412261,0.09238991648722433,0.0918192770692954,0.09124746532270415,0.0906838558141731,0.09012930471746478,0.08957372035244746,0.08901713332797423,0.08845957310845647,0.08790340664923357,0.08738986508106016,0.08687550542593682,0.08636035096992399,0.0858444241582108,0.08532774663111659,0.0849469165686199,0.08463269522576175,0.08431805524470849,0.08400300799513288,0.08368756445296856,0.083378513992728,0.08308283752991882,0.08278681923174717,0.08249046803402757,0.08219379257366216,0.08189006824491527,0.08131685959621271,0.08074307247701466,0.08016872145514048,0.07959382062752304,0.07901838363851549,0.0783823335319694,0.07772540762797168,0.07706791447891244,0.0764098677611173,0.075751280726379,0.07495887731157351,0.07403011723697768,0.07310064900319481,0.07217048909238112,0.07123965349172355,0.07033289082029108,0.06949398147350512,0.06865450466884135,0.06781447316791499,0.06697389936135317,0.06614464626650911,0.06552142179629253,0.06489782171943767,0.06427385420540722,0.06364952719361384,0.06302484840129709,0.06249824750281869,0.061987403764057585,0.061476290546848555,0.0609649134886892,0.06045327807414103,0.06000334898239108,0.059582326222002324,0.05916110388192625,0.05873968600806976,0.05831807653986536,0.05791106443794898,0.057517864909531716,0.05712449730290812,0.05673096492267262,0.05633727098899969,0.05592963016394864,0.05549722443245585,0.05506465147785481,0.054631914491460654,0.054199016585393105,0.05376596079498813,0.053332750081117195,0.05289938733242502,0.052465875367493586,0.05203221693691858,0.05159841472532492,0.051164471353306464,0.050730389379298545,0.05029617130139215,0.04986181955907387,0.04942733653491845,0.04899272455621816,0.04855798589655861,0.048123122777340065,0.04768813736925417,0.04725303179369951,0.04681780812416303,0.0463824683875486,0.04594701456546369,0.04551144859546896,0.04507577237227611,0.04466823029529723,0.04427130677070907,0.043874287801654956,0.04347717496768942,0.04307996981432866,0.04268267385395884,0.04228528856670941,0.041887815401301494,0.04149025577586803,0.04109261107875421,0.04069488266928273,0.040297071878505966,0.0398991800099305,0.03950120834021881,0.03910315811987621,0.03870503057390546,0.038306826902453,0.03790854828143076,0.03751019586312018,0.03711177077675766,0.03671327412910796,0.03631470700501057,0.03591607046792024,0.03551736556042707,0.03511859330476124,0.034757269372840384,0.034504986689551036,0.03425266327791627,0.034000299735953636,0.0337478966502723,0.03349545459634515,0.0332429741387663,0.03299045583150809,0.03273790021816814,0.032485307832209424,0.03223267919719386,0.03198001482701252,0.031727315226102594,0.0314745808896658,0.031221812303876977,0.030969009946087398,0.03071617428502596,0.03046330578098806,0.03021040488602639,0.029957472044133453,0.029704507691419475,0.02945151225628552,0.02919848615959507,0.028945429814834608,0.02869234362827676,0.028439227999135567,0.028212765595393,0.027989412038871724,0.027766033528177112,0.027542630391902856,0.027319202953053692,0.02709575152916265,0.02687227643240885,0.026648777969725847,0.026425256442913693,0.02620171214874486,0.025978145379068555,0.0257545564209115,0.025530945556579546,0.02530731306375038,0.02508365921557072,0.0248599842807471,0.02463628852363556,0.02441257220433149,0.024188835578751466,0.023965078898719266,0.023741302412046705,0.023517506362613294,0.023293690990443153,0.02306985653178362,0.022846003219175366,0.022665375089461745,0.02251257598661653,0.02235976447788823,0.022206940712350198,0.022054104836781753,0.02190125699571421,0.021748397331473202,0.021595525984220227,0.02144264309199548,0.02128974879075532,0.021136843214413205,0.020983926494877566,0.020830998762089353,0.02067806014405814,0.020525110766899668,0.020372150754868486,0.020219180230393607,0.020066199314111945,0.01991320812490033,0.019760206779909605,0.019607195394593165,0.019454174082739528,0.019301142956501906,0.019148102126427063,0.018995051701485903,0.018868658355878004,0.018786672383084055,0.018704681441328492,0.018622685585745688,0.01854068487069733,0.018458679349786726,0.018376669075870905,0.01829465410107436,0.018212634476801652,0.018130610253749572,0.01804858148192029,0.017966548210631893,0.017884510488531118,0.01780246836360443,0.01772042188318938 +0.004173551009915724,0.004165507849649879,0.0041415887303289985,0.004102410590655413,0.004048956290170256,0.003982512427725143,0.003904592857325426,0.0038168560516847754,0.0037210240758906526,0.0036188095112136606,0.003511854656507608,0.003401685194527988,0.003289678611710604,0.003177046222325274,0.003064826742691451,0.0029538889464914273,0.0028449409020040017,0.0027385435194343245,0.0026351265041472337,0.0025350052276427995,0.002439052823944449,0.002348753203340218,0.0022637350238247987,0.0021828189139294217,0.002104814549379089,0.0020297564694239686,0.0019576509751207003,0.0018884749269097425,0.0018221819390660898,0.0017587076587157787,0.001697974210704652,0.00163989389848684,0.0015843722527078333,0.001531310515853444,0.0014806076451036694,0.0014321619077616327,0.0013858721352519524,0.0013416386933394237,0.0012993642182906073,0.0012589541614213048,0.0012203171779315192,0.001183365390172533,0.0011480145504832063,0.0011141841244309122,0.0010817973116334046,0.0010507810182418399,0.0010210657925701994,0.001000209650660708,0.0009866607944895068,0.0009734790983572728,0.0009606517298759088,0.0009481662687919566,0.0009360107114679106,0.0009241734713933125,0.0009126433764982641,0.0009014096639177636,0.0008904619727472713,0.0008797903352407716,0.0008693851668261555,0.0008592372552480794,0.0008493377490952317,0.0008396781459223109,0.0008302502801393885,0.000821046310808966,0.000812058709463794,0.0008032802480366329,0.0007947039869736528,0.000786323263587756,0.0007781316806950526,0.0007701230955669895,0.0007622916092212171,0.0007546315560677337,0.0007471374939199955,0.0007398041943762022,0.0007326266335719851,0.0007255999833020752,0.0007187196025067084,0.0007119810291158073,0.0007053799722427735,0.0006989123047185031,0.0006925740559553988,0.0006863614051302169,0.0006802706746748117,0.00067429832406297,0.0006684409438817828,0.0006626952501760799,0.0006570580790541331,0.0006515263815437318,0.0006460972186872733,0.0006407677568652091,0.0006355352633374876,0.0006303971019926233,0.0006253507292949832,0.0006203936904206775,0.0006155236155730942,0.0006107382164694721,0.0006060352829902844,0.0006014126799833399,0.0005968683442153099,0.0005924002814633111,0.0005880065637397085,0.0005836853266437042,0.0005794347668332786,0.0005752531396118261,0.000571138756623682,0.0005670899836532643,0.0005631052385227222,0.000559182989083349,0.0005553217512960174,0.0005515200873964881,0.0005477766041413363,0.0005440899511306127,0.0005404588192035838,0.000536881938903874,0.0005333580790108709,0.000529886045134076,0.0005264646783674141,0.0005230928540007409,0.0005197694802856442,0.0005164934972531987,0.0005132638755810658,0.0005100796155076986,0.0005069397457914122,0.0005038433227123171,0.0005007894291149662,0.0004977771734900443,0.0004948056890931562,0.0004918741330990708,0.0004889816857898588,0.0004861275497752452,0.00048331094924391137,0.0004805311292442248,0.00047778735499312607,0.00047507891121192897,0.000472405101487863,0.0004697652476601305,0.0004671586892295474,0.0004645847827906335,0.0004620429014852095,0.00045953243447661453,0.0004570527864435483,0.00045460337709284706,0.00045218364069026835,0.00044979302560858446,0.00044743099389225465,0.00044509702083791786,0.0004427905945901469,0.00044051121575175786,0.000438258397008097,0.0004360316627647291,0.00043383054879800705,0.00043165460191791694,0.00042950337964281683,0.0004273764498855037,0.0004252733906501847,0.0004231937897399434,0.00042113724447420393,0.00041910336141591167,0.000417091756107957,0.0004151020528185232,0.00041313388429502337,0.00041118689152622694,0.0004092607235123535,0.00040735503704276445,0.00040546949648098224,0.0004036037735567547,0.00040175754716492815,0.00039993050317079957,0.0003981223342217979,0.00039633273956519825,0.0003945614248716612,0.0003928081020644,0.00039107248915371695,0.00038935431007679184,0.00038765329454246573,0.00038596917788086976,0.00038430170089771116,0.00038265060973308407,0.0003810156557245669,0.0003793965952745549,0.00037779318972159707,0.00037620520521563827,0.00037463241259703235,0.0003730745872791423,0.0003715315091344872,0.00037000296238424486,0.0003684887354910256,0.0003669886210547959,0.000365502415711868,0.0003640299200367904,0.00036257093844712545,0.0003611252791109527,0.00035969275385703213,0.0003582731780875528,0.00035686637069332446,0.00035547215397141734,0.000354090353545096,0.0003527207982860055,0.00035136332023855273,0.0003500177545463454,0.0003486839393807161,0.00034736171587118673,0.0003460509280378542,0.0003447514227256136,0.00034346304954018924,0.0003421856607858656,0.0003409191114049239,0.0003396632589186968,0.0003384179633701908,0.0003371830872682529,0.00033595849553318683,0.00033474405544382845,0.00033353963658600466,0.0003323451108023291,0.0003311603521433308,0.0003299852368198094,0.0003288196431564571,0.0003276634515466539,0.0003265165444084244,0.0003253788061415108,0.0003242501230855574,0.00032313038347931463,0.000322019477420899,0.0003209172968290436,0.00031982373540530274,0.00031873868859722167,0.00031766205356238155,0.0003165937291333629,0.0003155336157835542,0.00031448161559379884,0.0003134376322198528,0.00031240157086064263,0.0003113733382272656,0.00031035284251276215,0.00030933999336259796,0.0003083347018458507,0.00030733688042709854,0.0003063464429389393,0.00030536330455519737,0.0003043873817647308,0.00030341859234586736,0.0003024568553414374,0.00030150209103436623,0.0003005542209238549,0.00029961316770209945,0.0002986788552315439,0.0002977512085226534,0.00029683015371220176,0.0002959156180420351,0.0002950075298383306,0.00029410581849131657,0.00029321041443544475,0.00029232124913002044,0.0002914382550402345,0.0002905613656186468,0.00028969051528706215,0.0002888256394188098,0.0002879666743214085,0.00028711355721962474,0.0002862662262388695,0.0002854246203889886,0.00028458867954838486,0.00028375834444848276,0.00028293355665854193,0.00028211425857076856,0.0002813003933857689,0.0002804919050983,0.0002796887384833203,0.00027889083908234994,0.00027809815319008844,0.0002773106278413426,0.00027652821079820924,0.00027575085053753125,0.0002749784962386073,0.0002742110977711698,0.00027344860568358676,0.00027269097119132833,0.0002719381461656548,0.00027119008312253954,0.00027044673521182315,0.000269708056206569,0.00026897400049265404,0.00026824452305855367,0.00026751957948533984,0.0002667991259368719,0.0002660831191501953,0.00026537151642610726,0.0002646642756199313,0.00026396135513246467,0.00026326271390109915,0.0002625683113911279,0.0002618781075872028,0.0002611920629849752,0.000260510138582892,0.0002598322958741426,0.00025915849683878344,0.00025848870393597854,0.0002578228800964215,0.0002571609887148816,0.00025650299364290177,0.004742830228054324,0.004733727558499295,0.004706656972021915,0.0046623148068327845,0.00460181053309305,0.004526596715836565,0.004438382843919982,0.004339042191256941,0.004230520446332711,0.00411475325264084,0.003993597543909592,0.003868779152902286,0.0037418570358001427,0.003614202833582159,0.0034869934686533573,0.0033612140033287634,0.0032376679481886375,0.0031169924605928896,0.0029996762850145087,0.002886078753847164,0.0027773980924465733,0.0026751329878617063,0.0025788112663280675,0.002487502967429624,0.0023994948766044434,0.002314723168884049,0.0022332085715107853,0.0021549371436253885,0.0020798673195617833,0.0020079359485033416,0.0019390634101678341,0.0018731578993030436,0.001810118975999786,0.0017498404771044778,0.0016922128785211855,0.0016371251905785377,0.0015844664600292361,0.0015341269434298395,0.0014859990081082595,0.0014399778089772596,0.0013959617822312024,0.0013538529905514612,0.0013135573488301559,0.0012749847545634814,0.0012380491429133684,0.0012026684829019305,0.0011687647282295588,0.0011435323355651985,0.0011281270005504395,0.0011131365847353637,0.0010985467654966174,0.0010843436619106148,0.00107051384262975,0.0010570443289521436,0.0010439225939931904,0.0010311365587232823,0.0010186745855110036,0.0010065254697070398,0.0009946784297152243,0.0009831230959213393,0.000971849498787993,0.0009608480563691768,0.0009501095614536932,0.0009396251685085893,0.0009293863805613383,0.0009193850361336501,0.0009096132963165173,0.0009000636320577867,0.0008907288117178036,0.0008816018889358757,0.0008726761908388495,0.0008639453066151896,0.0008554030764695935,0.0008470435809676935,0.0008388611307754139,0.0008308502567931169,0.0008230057006822544,0.0008153224057788699,0.0008077955083867109,0.0008004203294410935,0.00079319236653349,0.0007861072862856217,0.0007791609170618879,0.000772349242007892,0.0007656683924029636,0.0007591146413145196,0.0007526843975417664,0.0007463741998370178,0.0007401807113924615,0.0007341007145808061,0.000728131105938604,0.0007222688913809336,0.0007165111816372002,0.0007108551878974855,0.0007052982176596782,0.0006998376707678524,0.0006944710356328904,0.00068919588562636,0.0006840098756396555,0.0006789107388001665,0.0006738962833369585,0.0006689643895887821,0.0006641130071472926,0.0006593401521291619,0.0006546439045706281,0.0006500224059386105,0.0006454738567526808,0.0006409965143125991,0.0006365886905261015,0.0006322487498323429,0.0006279751072161749,0.0006237662263089555,0.0006196206175717742,0.000615536836556983,0.000611513482244493,0.0006075491954491262,0.0006036426572956892,0.0005997925877586158,0.0005959977442629697,0.0005922569203441407,0.0005885689443633188,0.0005849326782762098,0.0005813470164524928,0.0005778108845437394,0.0005743232383974047,0.0005708830630149686,0.0005674893715520711,0.0005641412043587815,0.0005608376280582095,0.0005575777346616201,0.0005543606407185704,0.0005511854865003771,0.0005480514352154962,0.0005449576722553631,0.0005419034044694153,0.0005388878594678915,0.0005359102849513594,0.0005329699480656829,0.0005300661347813695,0.0005271981492963053,0.0005243653134607303,0.0005215669662236823,0.0005188024630998855,0.0005160711756562348,0.0005133724910171243,0.0005107058113876912,0.0005080705535944008,0.0005054661486421254,0.0005028920412870989,0.0005003476896250683,0.0004978325646940832,0.0004953461500911896,0.0004928879416026591,0.0004904574468470506,0.00048805418493066434,0.00048567768611491283,0.00048332749149503903,0.000481003152689871,0.00047870423154207977,0.00047643029982855697,0.00047418093898056685,0.00047195573981318134,0.00046975430226378823,0.00046757623513920887,0.0004654211558711532,0.00046328869027967924,0.00046117847234438173,0.000459090143982948,0.0004570233548369084,0.0004549777620642369,0.0004529530301385723,0.0004509488306548437,0.00044896484214098915,0.00044700074987564863,0.0004450562457115338,0.00044313102790430613,0.00044122480094675216,0.0004393372754080969,0.00043746816777819677,0.0004356172003165408,0.00043378410090581625,0.0004319686029099022,0.0004301704450361591,0.0004283893712017922,0.00042662513040425746,0.00042487747659547055,0.00042314616855974803,0.00042143096979532524,0.0004197316483993608,0.00041804797695624377,0.00041637973242918266,0.00041472669605489653,0.0004130886532413292,0.0004114653934683081,0.0004098567101909801,0.00040826240074603125,0.000406682266260523,0.0004051161115632801,0.00040356374509878574,0.00040202497884341557,0.0004004996282240388,0.0003989875120388371,0.00039748845238029846,0.00039600227456031053,0.0003945288070373106,0.00039306788134535936,0.0003916193320251776,0.0003901829965569976,0.0003887587152952215,0.00038734633140482383,0.0003859456907994068,0.000384556642080924,0.0003831790364809624,0.000381812727803567,0.00038045757236956305,0.00037911342896228696,0.0003777801587747557,0.00037645762535816924,0.00037514569457173873,0.00037384423453378835,0.0003725531155741097,0.0003712722101874902,0.0003700013929884428,0.00036874054066705165,0.0003674895319459178,0.00036624824753819703,0.0003650165701066335,0.00036379438422364115,0.0003625815763323482,0.0003613780347085951,0.0003601836494238534,0.00035899831230906074,0.00035782191691929947,0.0003566543584993478,0.000355495533950051,0.00035434534179548677,0.0003532036821509306,0.00035207045669154386,0.00035094556862183665,0.0003498289226458267,0.00034872042493790106,0.00034761998311436565,0.00034652750620563227,0.00034544290462907207,0.000344366090162483,0.0003432969759181683,0.0003422354763176012,0.0003411815070666874,0.0003401349851315518,0.00033909582871490804,0.00033806395723294015,0.0003370392912927063,0.0003360217526700592,0.0003350112642880305,0.0003340077501957232,0.0003330111355476534,0.000332021346583557,0.00033103831060862343,0.0003300619559741888,0.00032909221205881296,0.00032812900924979855,0.0003271722789250914,0.0003262219534355783,0.0003252779660877669,0.0003243402511268202,0.000323408743719972,0.0003224833799402853,0.00032156409675074786,0.00032065083198872316,0.0003197435243507001,0.00031884211337738323,0.0003179465394390852,0.0003170567437214247,0.00031617266821131655,0.0003152942556832677,0.00031442144968591996,0.000313554194528907,0.00031269243526995587,0.0003118361177022574,0.00031098518834210174,0.0003101395944167412,0.0003092992838525232,0.0003084642052632435,0.00030763430793874123,0.00030680954183371717,0.0003059898575567837,0.0003051752063597099,0.00030436554012690123,0.0003035608113650795,0.0003027609731931553,0.00030196597933231903,0.000301175784096299,0.00030039034238182915,0.0002996096096592929,0.0002988335419635465,0.0002980620958849289,0.0002972952285604228,0.00029653289766500674,0.0002957750614031617,0.00029502167850053686,0.00537600782142343,0.005365734372605871,0.005335181203394845,0.005285131965885834,0.005216835389130588,0.005131926638546511,0.005032330529648402,0.004920156871661443,0.004797597741566354,0.0046668347106628575,0.004529961519316962,0.004388925001585571,0.004245484664461132,0.0041011895051789125,0.003957369496795189,0.0038151386370631774,0.0036754064067411733,0.0035388947620872205,0.0034061582449124643,0.0032776053159866243,0.0031547979583706333,0.003039222588348717,0.0029303226505402948,0.0028274256565699258,0.0027284906073798436,0.0026330837154097107,0.002541245157359073,0.002452974391620831,0.0023682381262608,0.002286977198555011,0.002209112440261569,0.0021345496213341164,0.0020631835726846954,0.0019949015891821973,0.00192958620986717,0.001867117465290899,0.0018073746733118332,0.0017502378555562688,0.0016955888376969526,0.001643312088133224,0.0015932953417663116,0.0015454300484857404,0.0014996116797292701,0.0014557399210291758,0.0014137187737682526,0.0013734565853562933,0.0013348660236425563,0.001304360630976767,0.0012868877485541295,0.0012698823275934831,0.001253328457429,0.001237210694679688,0.0012215140756644302,0.0012062241230014158,0.0011913268474587932,0.0011768087459570924,0.0011626567964789071,0.0011488584505207277,0.001135401623618156,0.001122274684387308,0.0011094664424523423,0.001096966135564753,0.001084763416167847,0.0010728483376149516,0.0010612113402115534,0.0010498432372208885,0.0010387352009447925,0.0010278787489698216,0.0010172657306496912,0.0010068883138797575,0.0009967389722054397,0.0009868104722968334,0.000977095861811654,0.0009675884576618657,0.0009582818346932213,0.0009491698147814784,0.0009402464563458801,0.0009315060442763681,0.0009229430802688918,0.0009145522735609893,0.0009063285320583747,0.0008982669538415701,0.0008903628190415894,0.0008826115820722298,0.0008750088642065276,0.0008675504464848372,0.000860232262941321,0.00085305039413655,0.000846001060983224,0.0008390806188526977,0.0008322855519502274,0.0008256124679467829,0.0008190580928562983,0.0008126192661469179,0.0008062929360755913,0.0008000761552356176,0.000793966076307262,0.0007879599480016341,0.0007820551111890104,0.0007762489952025619,0.0007705391143091776,0.0007649230643395055,0.00075939851946927,0.0007539632291449511,0.0007486150151466161,0.0007433517687814126,0.0007381714482013922,0.0007330720758397723,0.0007280517359597261,0.0007231085723105841,0.0007182407858860903,0.000713446632779885,0.0007087244221336676,0.000704072514173389,0.0006994893183295808,0.0006949732914376413,0.0006905229360143363,0.0006861367986070255,0.0006818134682119911,0.0006775515747588897,0.0006733497876580593,0.0006692068144078509,0.0006651213992591533,0.0006610923219345801,0.0006571183963996148,0.0006531984696835721,0.0006493314207479508,0.0006455161594000653,0.0006417516252499812,0.0006380367867086528,0.0006343706400256105,0.0006307522083643057,0.0006271805409134823,0.0006236547120329866,0.000620173820432541,0.0006167369883819126,0.0006133433609512907,0.0006099921052804225,0.0006066824098753322,0.0006034134839314547,0.0006001845566819471,0.000596994876770278,0.0005938437116459264,0.0005907303469822802,0.0005876540861158286,0.0005846142495056448,0.0005816101742124829,0.0005786412133965534,0.000575706735833258,0.0005728061254461382,0.0005699387808563867,0.0005671041149481178,0.0005643015544489387,0.0005615305395250829,0.000558790523390558,0.0005560809719297999,0.0005534013633331772,0.0005507511877450033,0.0005481299469234372,0.000545537153911866,0.0005429723327213454,0.0005404350180235767,0.0005379247548541496,0.0005354410983255518,0.0005329836133496315,0.0005305518743691191,0.0005281454650979287,0.0005257639782697936,0.00052340701539507,0.0005210741865253031,0.0005187651100252994,0.0005164794123524606,0.0005142167278430289,0.0005119766985051055,0.0005097589738181063,0.0005075632105384693,0.0005053890725113634,0.0005032362304882279,0.0005011043619498494,0.0004989931509348917,0.000496902287873599,0.0004948314694265308,0.0004927803983281598,0.000490748783235107,0.0004887363385789449,0.0004867427844233327,0.0004847678463253768,0.0004828112552010502,0.00048087274719457507,0.00047895206355154504,0.00047704895049577827,0.00047516315910968915,0.0004732944452180864,0.0004714425692753233,0.00046960729625559344,0.0004677883955463841,0.0004659856408449034,0.000464198810057409,0.0004624276852013703,0.0004606720523102981,0.00045893170134125497,0.00045720642608488465,0.00045549602407791165,0.00045380029651802517,0.0004521190481810941,0.0004504520873405765,0.00044879922568913974,0.00044716027826236497,0.00044553506336448,0.0004439234024960907,0.00044232512028378047,0.0004407400444116045,0.0004391680055543594,0.0004376088373125955,0.00043606237614934184,0.0004345284613284206,0.0004330069348543978,0.00043149764141405493,0.0004300004283193594,0.0004285151454518786,0.0004270416452086297,0.0004255797824492482,0.000424129414444533,0.0004226904008262488,0.0004212626035381893,0.0004198458867884695,0.00041844011700295763,0.0004170451627798961,0.0004156608948456129,0.0004142871860113188,0.0004129239111309511,0.00041157094706005944,0.0004102281726156438,0.0004088954685369939,0.0004075727174474518,0.0004062598038170805,0.0004049566139262411,0.0004036630358299915,0.0004023789593233667,0.0004011042759074444,0.00039983887875621793,0.00039858266268424187,0.00039733552411501166,0.00039609736105008993,0.0003948680730389403,0.0003936475611494471,0.0003924357279391111,0.00039123247742691385,0.00039003771506578586,0.00038885134771573273,0.00038767328361754655,0.00038650343236710746,0.00038534170489027623,0.00038418801341830834,0.0003830422714638531,0.00038190439379745815,0.00038077429642460146,0.00037965189656321484,0.00037853711262172556,0.00037742986417753057,0.00037633007195598075,0.0003752376578097981,0.0003741525446989327,0.0003730746566708733,0.0003720039188413459,0.0003709402573754485,0.0003698835994691802,0.0003688338733313523,0.00036779100816589983,0.00036675493415453346,0.0003657255824397832,0.0003647028851083827,0.0003636867751749968,0.0003626771865662901,0.0003616740541053322,0.00036067731349629896,0.0003596869013095106,0.00035870275496676637,0.00035772481272697623,0.00035675301367209434,0.0003557872976933118,0.0003548276054775559,0.00035387387849424354,0.0003529260589823035,0.0003519840899374575,0.0003510479150997617,0.00035011747894137126,0.0003491927266545747,0.0003482736041400469,0.0003473600579953334,0.0003464520355035734,0.0003455494846224161,0.0003446523539731776,0.0003437605928301936,0.0003428741511103798,0.00034199297936300514,0.0003411170287596334,0.0003402462510842816,0.00033938059872375896,0.000338520024658185,0.006078762344885898,0.00606719856754685,0.006032807027060078,0.005976467090433561,0.005899580178793345,0.005803981738335648,0.005691832863014659,0.005565503050916169,0.005427455054425966,0.005280140806470252,0.00512591458900286,0.004966966602376038,0.0048052774139185185,0.004642591723312627,0.0044804085861403975,0.004319984631045866,0.004162346744440249,0.004008311002921193,0.0038585051429017546,0.0037133932933790647,0.003575099084849712,0.003444899585921344,0.0033221653105613745,0.0032063235474809803,0.0030954985960790797,0.002988486949076426,0.002885354684188244,0.0027861201502957637,0.002690762935145702,0.0025992316677827835,0.002511450719092943,0.0024273258892575297,0.0023467491836978863,0.002269602782933621,0.002195762309580677,0.0021250994897283704,0.002057484297769903,0.0019927866645874323,0.0019308778195945334,0.0018716313280377234,0.0018149238764468647,0.0017606358513885163,0.0017086517497694814,0.001658860452866713,0.001611155390995743,0.0015654346211950228,0.0015216008364426592,0.0014846379005411146,0.001464864517675866,0.001445616271969521,0.001426875575239497,0.0014086253257325858,0.0013908489265628125,0.0013735302971105549,0.0013566538786357351,0.0013402046351659858,0.0013241680505529675,0.0013085301224499218,0.0012932773538430272,0.00127839674266588,0.0012638757699410775,0.0012497023868176817,0.0012358650008115174,0.00122235246150274,0.0012091540458993042,0.001196259443638956,0.0011836587421689448,0.0011713424120170515,0.0011593012922444417,0.0011475265761525827,0.0011360097972997838,0.0011247428158710406,0.0011137178054327092,0.0011029272400951578,0.0010923638820988812,0.0010820207698329456,0.001071891206290487,0.0010619687479608451,0.0010522471941552694,0.0010427205767601455,0.0010333831504098898,0.001024229383069374,0.001015253947015555,0.0010064517102059598,0.000997817728021778,0.000989347235372628,0.000981035639149547,0.0009728785110133816,0.0009648715805049716,0.0009570107284641479,0.0009492919807447218,0.0009417115022124878,0.0009342655910143436,0.0009269506731062097,0.0009197632970282604,0.0009127001289161861,0.0009057579477378064,0.0008989336407443256,0.0008922241991266109,0.0008856267138666217,0.0008791383717749067,0.0008727564517054774,0.0008664783209393813,0.0008603014317293334,0.0008542233179974683,0.0008482415921790691,0.0008423539422052291,0.0008365581286180007,0.0008308519818114107,0.0008252333993927367,0.0008197003436580574,0.0008142508391767456,0.0008088829704798233,0.0008035948798470335,0.000798384765188299,0.0007932508780148606,0.0007881915214960122,0.0007832050485974672,0.0007782898602973397,0.0007734444038764324,0.0007686671712791603,0.0007639566975419335,0.0007593115592858833,0.0007547303732710476,0.0007502117950090183,0.0007457545174316498,0.0007413572696131013,0.0007370188155428608,0.0007327379529475373,0.0007285135121590366,0.0007243443550273165,0.0007202293738755485,0.0007161674904958966,0.0007121576551840982,0.0007081988458112135,0.0007042900669307714,0.0007004303489199764,0.0006966187471533614,0.0006928543412075402,0.0006891362340957765,0.0006854635515309458,0.0006818354412159133,0.0006782510721599765,0.0006747096340203782,0.0006712103364678538,0.0006677524085750921,0.000664335098227339,0.0006609576715540964,0.0006576194123811132,0.0006543196217018112,0.0006510576171674232,0.0006478327325949383,0.0006446443174923415,0.0006414917366002991,0.0006383743694496778,0.0006352916099343535,0.0006322428658985191,0.0006292275587381417,0.0006262451230158638,0.0006232950060888882,0.00062037666774932,0.0006174895798765456,0.0006146332261010583,0.0006118071014794514,0.0006090107121800515,0.0006062435751788141,0.0006035052179651424,0.0006007951782571432,0.0005981130037261158,0.0005954582517298277,0.0005928304890542794,0.0005902292916637013,0.0005876542444583437,0.000585104941039959,0.000582580983484557,0.0005800819821222366,0.0005776075553238071,0.0005751573292940256,0.0005727309378710806,0.0005703280223322596,0.0005679482312054801,0.0005655912200865034,0.0005632566514616679,0.000560944194535861,0.0005586535250656691,0.0005563843251974389,0.0005541362833101078,0.0005519090938626705,0.000549702457246045,0.0005475160796392951,0.0005453496728699856,0.0005432029542785594,0.0005410756465865953,0.0005389674777688524,0.0005368781809288859,0.0005348074941782385,0.0005327551605189991,0.0005307209277296504,0.0005287045482541258,0.0005267057790938859,0.0005247243817030383,0.0005227601218863086,0.0005208127696998069,0.0005188820993545045,0.0005169678891223405,0.0005150699212448258,0.0005131879818441509,0.0005113218608366445,0.0005094713518485498,0.0005076362521340491,0.0005058163624954141,0.000504011487205302,0.0005022214339310629,0.000500446013661025,0.0004986850406327169,0.0004969383322628955,0.00049520570907943,0.0004934869946549024,0.000491782015541915,0.0004900906012100305,0.0004884125839843412,0.00048674779898553327,0.00048509608407150856,0.00048345727978044064,0.00048183122927524457,0.00048021777828945964,0.0004786167750744074,0.0004770280703477087,0.00047545151724303025,0.00047388697126106894,0.0004723342902217194,0.00047079333421741644,0.00046926396556757385,0.00046774604877414196,0.00046623945047822126,0.00046474403941770126,0.00046325968638593023,0.00046178626419131596,0.0004603236476179226,0.00045887171338697164,0.0004574303401192359,0.00045599940829833585,0.00045457880023484396,0.0004531684000312567,0.00045176809354775327,0.0004503777683687426,0.00044899731377017214,0.00044762662068759313,0.0004462655816849203,0.0004449140909239253,0.00044357204413440467,0.0004422393385850087,0.00044091587305474634,0.00043960154780508425,0.0004382962645526973,0.00043699992644280835,0.0004357124380231109,0.0004344337052182665,0.0004331636353049688,0.00043190213688752243,0.0004306491198739782,0.0004294044954527733,0.00042816817606986755,0.00042694007540639196,0.00042572010835673616,0.00042450819100714086,0.00042330424061472026,0.0004221081755869367,0.00042091991546151406,0.0004197393808867492,0.0004185664936022591,0.00041740117642011937,0.00041624335320639426,0.0004150929488630447,0.00041394988931022826,0.00041281410146892734,0.00041168551324396763,0.00041056405350736665,0.00040944965208201755,0.0004083422397257249,0.0004072417481155254,0.0004061481098323604,0.0004050612583460364,0.00040398112800048964,0.00040290765399935563,0.0004018407723917971,0.000400780420058644,0.0003997265346987869,0.0003986790548158478,0.00039763791970510125,0.00039660306944067124,0.0003955744448629468,0.00039455198756626817,0.0003935356398868404,0.0003925253448908767,0.0003915210463629849,0.00039052268879474994,0.0003895302173735572,0.0003885435779716204,0.00038756271713521616,0.00685709769843798,0.006844115682338583,0.006805505054961962,0.006742249760040048,0.006655918089746322,0.006548564450453761,0.006422608377029417,0.006280703583864413,0.006125609270586947,0.005960073709021167,0.005786737010005979,0.0056080566222912595,0.005426256128097889,0.005243295620244807,0.00506086049271436,0.004880364792044255,0.00470296519998002,0.004529582052659752,0.004360924365057599,0.004197565090066127,0.004042307891500946,0.0038960595325593906,0.003758127365375383,0.003627883621213582,0.0035040623502019916,0.003384456536035085,0.003269031631591839,0.0031578317564905575,0.003050855259364334,0.002948063520804347,0.002849388574546658,0.0027547396265508186,0.002664008570736923,0.002577074608448153,0.002493808079461312,0.0024140736081784374,0.0023377326614103864,0.0022646456053211864,0.0021946733396084194,0.0021276785775337756,0.0020635268313755253,0.0020020871545263622,0.001943232683913322,0.00188684101970741,0.0018327944734273032,0.0017809802104434636,0.0017312903085257108,0.0016864248585725299,0.0016640965357421814,0.001642356416099335,0.0016211851613456639,0.001600563929129401,0.00158047439938727,0.0015608987921662005,0.0015418198783953413,0.0015232209848580103,0.0015050859944195744,0.0014873993424048086,0.0014701460098779885,0.001453311514458859,0.001436881899207696,0.001420843720024226,0.0014051840319328436,0.0013898903745642405,0.0013749507570894831,0.0013603536428198142,0.001346087933645678,0.0013321429544576203,0.0013185084376644647,0.001305174507901653,0.001292131667002894,0.0012793707792935882,0.001266883057249728,0.0012546600475557132,0.0012426936175850725,0.0012309759423197923,0.0012194994917188156,0.001208257018539794,0.001197241546614669,0.0011864463595760357,0.0011758649900285433,0.0011654912091569063,0.0011553190167614192,0.001145342631709395,0.0011355564827907087,0.00112595519996486,0.0011165336059858737,0.0011072867083921705,0.0010982096918473517,0.0010892979108184466,0.00108054688257824,0.0010719522805180094,0.0010635099277580902,0.0010552157910431708,0.0010470659749100453,0.0010390567161157364,0.0010311843783145007,0.0010234454469721281,0.0010158365245071836,0.0010083543256484207,0.0010009956729985423,0.0009937574927947725,0.0009866368108568438,0.0009796307487139751,0.0009727365199021942,0.0009659514264241066,0.0009592728553634451,0.0009526982756472426,0.0009462252349483721,0.0009398513567222569,0.000933574337371143,0.0009273919435300442,0.000921302009468741,0.0009153024346041268,0.0009093911811180994,0.0009035662716758184,0.0008978257872397287,0.0008921678649750021,0.0008865906962419101,0.000881092524671442,0.0008756716443201,0.0008703263979003306,0.000865055175083103,0.0008598564108694432,0.0008547285840275628,0.0008496702155929232,0.0008446798674281612,0.0008397561408402915,0.0008348976752526569,0.0008301031469290191,0.0008253712677477334,0.0008207007840235896,0.0008160904753753173,0.0008115391536367196,0.0008070456618096201,0.0008026088730566088,0.00079822768973213,0.0007939010424500641,0.0007896278891863208,0.0007854072144149889,0.0007812380282764658,0.0007771193657764273,0.0007730502860141916,0.000769029871439287,0.0007650572271351089,0.0007611314801283881,0.0007572517787236114,0.000753417291861215,0.0007496272084986448,0.0007458807370133253,0.0007421771046267256,0.0007385155568485022,0.0007348953569401326,0.0007313157853971076,0.0007277761394489817,0.0007242757325766462,0.0007208138940459945,0.0007173899684575133,0.0007140033153110665,0.0007106533085853211,0.0007073393363312264,0.0007040608002790826,0.0007008171154585259,0.0006976077098311205,0.0006944320239349589,0.0006912895105408493,0.0006881796343197074,0.0006851018715205909,0.0006820557096591872,0.0006790406472161838,0.0006760561933452691,0.0006731018675903892,0.00067017719961184,0.0006672817289210249,0.0006644150046234401,0.0006615765851696457,0.0006587660381139206,0.0006559829398803701,0.0006532268755361179,0.0006504974385714595,0.0006477942306866614,0.0006451168615851633,0.0006424649487730389,0.0006398381173643578,0.000637235999892413,0.0006346582361264916,0.0006321044728940349,0.0006295743639080514,0.0006270675695994869,0.0006245837569545302,0.0006221225993565848,0.000619683776432792,0.0006172669739049388,0.0006148718834446482,0.0006124982025326072,0.0006101456343218382,0.0006078138875047755,0.0006055026761840656,0.0006032117197469925,0.0006009407427433233,0.000598689474766588,0.0005964576503385873,0.000594245008797068,0.000592051294186451,0.0005898762551515493,0.0005877196448340978,0.0005855812207721212,0.0005834607448019626,0.0005813579829629287,0.0005792727054044853,0.0005772046862958477,0.0005751537037380121,0.0005731195396780523,0.0005711019798256538,0.0005691008135718463,0.0005671158339097749,0.0005651468373575713,0.0005631936238831703,0.0005612559968310505,0.0005593337628508346,0.00055742673182772,0.0005555347168146133,0.0005536575339660142,0.0005517950024735336,0.0005499469445030099,0.0005481131851332191,0.0005462935522960325,0.000544487876718111,0.0005426959918639919,0.0005409177338805749,0.0005391529415429498,0.0005374014562015547,0.0005356631217305668,0.000533937784477574,0.0005322252932144271,0.0005305254990892649,0.0005288382555796962,0.0005271634184470424,0.0005255008456917076,0.0005238503975095626,0.0005222119362493569,0.0005205853263711382,0.0005189704344055888,0.000517367128914352,0.0005157752804512384,0.0005141947615243353,0.0005126254465589688,0.0005110672118615325,0.0005095199355840895,0.0005079834976898211,0.0005064577799192228,0.0005049426657570631,0.0005034380404000992,0.0005019437907254634,0.0005004598052597986,0.0004989859741490488,0.0004975221891289167,0.0004960683434959675,0.0004946243320793814,0.0004931900512132797,0.0004917653987096919,0.0004903502738320798,0.0004889445772694425,0.00048754821111098154,0.0004861610788212816,0.0004847830852160468,0.0004834141364383383,0.0004820541399353087,0.0004807030044354521,0.0004793606399262872,0.000478026957632544,0.00047670186999479084,0.0004753852906485067,0.0004740771344035776,0.0004727773172242402,0.0004714857562094001,0.0004702023695733825,0.00046892707662706657,0.0004676597977593965,0.0004664004544192853,0.00046514896909785516,0.000463905265311059,0.00046266926758264275,0.000461440901427443,0.00046022009333503475,0.00045900677075367234,0.0004578008620745771,0.0004566022966165232,0.00045541100461072437,0.0004542269171860179,0.00045304996635435186,0.00045188008499652104,0.00045071720684821456,0.0004495612664863137,0.00044841219931545756,0.0004472699415548787,0.00044613443022546294,0.0004450056031370805,0.00044388339887615374,0.0004427677567934514,0.005592089689413904,0.005585146117431319,0.005564433507886022,0.005530300983666189,0.005483313526008669,0.005424228089675171,0.00535396287009493,0.005273562010631286,0.005184158182256102,0.005086935358598059,0.0049830937940066235,0.004873818760144678,0.004760254083096625,0.004643481016201246,0.0045245025358022425,0.004404232789829572,0.00428349117541773,0.004163000368868716,0.004043387565937453,0.0039251881939135445,0.003808851409175515,0.0036947467761433376,0.0035831716204130152,0.003474358648520764,0.0033685673666352064,0.0032673355127306653,0.003170940751712919,0.003079072973886813,0.002991446610091681,0.0029077273951411305,0.002826642736477955,0.0027478359988039255,0.0026713367062381286,0.0025971558858532387,0.002525288908173587,0.002455718030705802,0.002388414655662634,0.0023233413181243745,0.0022604534240219876,0.0021997007589837775,0.0021410287896165285,0.0020843797785220475,0.002029693733516541,0.001976909210316495,0.0019259639865409832,0.001894643507868724,0.0018713727454916615,0.0018486145326187693,0.0018263589881567126,0.0018045958230562004,0.0017833144461604242,0.0017625040555257292,0.0017421537169102395,0.0017222524309558813,0.0017027891904296678,0.0016837530287455362,0.0016651330608521409,0.0016469185174515497,0.0016290987734033703,0.0016116633710690552,0.0015946020392638494,0.0015779047084025738,0.0015615615223560394,0.0015455628474714878,0.0015298992791542164,0.0015145616463594109,0.0014995410142981693,0.0014848286856240457,0.001470416200332261,0.0014562953345739942,0.0014424580985612514,0.0014288967337160777,0.0014156037091961416,0.0014025717179119337,0.0013897936721350855,0.0013772626987831815,0.0013649721344554978,0.0013529155202827983,0.0013410865966456522,0.0013294792978077697,0.0013180877465040566,0.00130690624851642,0.0012959292872663174,0.0012851515184472717,0.0012745677647172738,0.0012641730104676217,0.0012539623966810916,0.0012439312158908685,0.0012340749072483985,0.001224389051706956,0.001214869367326169,0.001205511704700694,0.0011963120425160204,0.0011872664832324287,0.0011783712488978005,0.001169622677089038,0.0011610172169814032,0.0011525514255441539,0.0011442219638611265,0.0011360255935738742,0.0011279591734450385,0.0011200196560395127,0.0011122040845201995,0.0011045095895559599,0.0010969333863383363,0.00108947277170413,0.0010821251213606444,0.0010748878872105644,0.0010677585947730381,0.0010607348406982027,0.0010538142903717853,0.0010469946756068104,0.0010402737924194824,0.0010336494988860416,0.00102711971307805,0.0010206824110730616,0.001014335625037951,0.001008077441382404,0.0010019059989796583,0.0009958194874523467,0.0009898161455207497,0.0009838942594112233,0.0009780521613224444,0.0009722882279474236,0.0009666008790488959,0.0009609885760863494,0.0009554498208925129,0.0009499831543974557,0.0009445871553985427,0.0009392604393742815,0.0009340016573406341,0.0009288094947479614,0.0009236826704171144,0.0009186199355131309,0.0009136200725551905,0.0009086818944611991,0.0009038042436259793,0.0008989859910315487,0.0008942260353883299,0.0008895233023061846,0.0008848767434939182,0.0008802853359864565,0.0008757480813984167,0.0008712640052031585,0.0008668321560364,0.0008624516050233011,0.0008581214451283464,0.0008538407905270217,0.0008496087759985136,0.0008454245563386408,0.000841287305792313,0.0008371962175046471,0.0008331505029902485,0.0008291493916198377,0.0008251921301236249,0.0008212779821108897,0.0008174062276049919,0.0008135761625934837,0.0008097870985925912,0.0008060383622256452,0.0008023292948148911,0.0007986592519863034,0.0007950276032867446,0.0007914337318132706,0.0007878770338539655,0.0007843569185399676,0.0007808728075083324,0.0007774241345752058,0.0007740103454191463,0.0007706308972740815,0.0007672852586316361,0.0007639729089525276,0.0007606933383865926,0.0007574460475013304,0.0007542305470185287,0.0007510463575587537,0.0007478930093934226,0.0007447700422042416,0.000741677004849655,0.0007386134551382031,0.0007355789596084785,0.0007325730933154614,0.0007295954396230839,0.0007266455900026842,0.0007237231438373414,0.0007208277082317348,0.0007179588978274353,0.000715116334623457,0.0007122996478017894,0.0007095084735579144,0.0007067424549360285,0.0007040012416688455,0.0007012844900218491,0.0006985918626418814,0.0006959230284098153,0.0006932776622973392,0.0006906554452276101,0.0006880560639396904,0.0006854792108566907,0.000682924583957381,0.0006803918866513299,0.000677880827657335,0.0006753911208850969,0.0006729224853200164,0.0006704746449110745,0.0006680473284615766,0.0006656402695228362,0.0006632532062905876,0.0006608858815040847,0.0006585380423478516,0.0006562094403558867,0.000653899831318391,0.0006516089751908466,0.0006493366360054104,0.0006470825817845754,0.0006448465844569589,0.0006426284197752596,0.0006404278672362417,0.0006382447100027245,0.0006360787348274899,0.0006339297319791166,0.0006317974951695772,0.0006296818214836627,0.0006275825113101194,0.0006254993682744455,0.000623432199173362,0.0006213808139107971,0.0006193450254354742,0.000617324649679974,0.0006153195055012414,0.0006133294146225173,0.0006113542015766747,0.0006093936936508204,0.0006074477208322755,0.0006055161157557852,0.0006035987136519559,0.0006016953522969318,0.0005998058719631699,0.0005979301153714114,0.0005960679276437358,0.00059421915625768,0.00059238365100144,0.0005905612639300317,0.0005887518493225065,0.0005869552636400979,0.0005851713654853181,0.0005834000155619686,0.0005816410766360658,0.0005798944134975853,0.0005781598929231084,0.0005764373836392635,0.0005747267562869798,0.0005730278833865356,0.0005713406393033392,0.000569664900214488,0.0005680005440760416,0.000566347450590994,0.0005647055011779463,0.0005630745789404606,0.0005614545686370324,0.000559845356651747,0.0005582468309655339,0.000556658881128033,0.0005550813982300759,0.0005535142748766981,0.0005519574051607651,0.0005504106846371241,0.000548874010297297,0.0005473472805447141,0.0005458303951704209,0.0005443232553293291,0.0005428257635169285,0.0005413378235464834,0.000539859340526689,0.0005383902208398014,0.0005369303721201716,0.0005354797032332507,0.0005340381242549962,0.0005326055464516994,0.0005311818822602227,0.0005297670452686019,0.0005283609501970685,0.0005269635128794245,0.0005255746502447936,0.0005241942802997415,0.0005228223221107094,0.0005214586957868354,0.0005201033224630844,0.0005187561242837084,0.0005174170243860295,0.0005160859468845493,0.0005147628168553256,0.0005134475603206876,0.0005121401042342275,0.000510840376466069,0.0005095483057884413,0.000508263821861488,0.0005069868552193754,0.0005057173372566517,0.0005044552002148554,0.0063010833615435875,0.006293275288056432,0.006269983795209852,0.006231601227649614,0.006178762516458233,0.0061123183437820135,0.006033300613259782,0.005942882796869095,0.005842337890727856,0.00573299658955438,0.005616207935265996,0.005493304187267005,0.005365571085109005,0.005234224104925,0.005100390807769137,0.0049650989766559335,0.004829269954089963,0.004693716420118339,0.004559143777517352,0.004426154314628435,0.004295253374949633,0.004166856854947684,0.004041299460313595,0.003918843262799713,0.003799896622592076,0.003686263571474095,0.0035780263987986545,0.003474842021221569,0.0033763942126994475,0.0032823911454487363,0.0031919748651586966,0.003104022912471947,0.0030185585572287668,0.0029356050817227635,0.0028551673614512093,0.002777234728002135,0.0027017835263861752,0.0026287793806710875,0.0025581791861316945,0.002489932848708871,0.002423984793791724,0.002360275266551568,0.0022987414455540056,0.002239318390372023,0.002181939842614802,0.002143213852230727,0.0021170962557386795,0.0020915452070690834,0.0020665504847256697,0.002042101333392194,0.0020181865887978316,0.0019947947859098787,0.0019719142523514444,0.0019495331887592648,0.001927639737623375,0.0019062220419923948,0.0018852682952787952,0.0018647667832649166,0.0018447059192878224,0.001825074273469281,0.0018058605967592074,0.0017870538404694458,0.0017686431718957898,0.00175061798655468,0.0017329679174965908,0.0017156828421031757,0.001698752886723945,0.0016821684294645374,0.0016659201013996651,0.0016499987864493542,0.0016343956201258852,0.0016191019873337896,0.0016041095193798254,0.0015894100903305506,0.0015749958128363742,0.0015608590335247795,0.0015469923280524314,0.0015333884958924813,0.0015200405549235176,0.001506941735876766,0.0014940854766904172,0.0014814654168119929,0.0014690753914847348,0.0014569094260472209,0.0014449617302714753,0.0014332266927607063,0.0014216988754235471,0.0014103730080397478,0.0013992439829283755,0.0013883068497280529,0.0013775568102965526,0.0013669892137348947,0.0013565995515406055,0.0013463834528924616,0.001336336680068584,0.0013264551239986393,0.0013167347999502985,0.0013071718433488257,0.0012977625057292198,0.0012885031508187285,0.0012793902507478585,0.0012704203823876456,0.0012615902238101565,0.0012528965508699329,0.0012443362339030289,0.0012359062345407101,0.0012276036026346126,0.0012194254732902751,0.001211369064005458,0.0012034316719105058,0.001195610671107128,0.001187903510102502,0.001180307709335682,0.0011728208587928265,0.0011654406157086206,0.0011581647023505691,0.0011509909038833258,0.0011439170663103092,0.0011369410944894946,0.0011300609502210947,0.0011232746504041718,0.001116580265259785,0.0011099759166181208,0.001103459776267359,0.001097030064361675,0.0010906850478865017,0.0010844230391786483,0.0010782423944992602,0.0010721415126577108,0.0010661188336842354,0.0010601728375498095,0.0010543020429311836,0.0010485050060194821,0.001042780319370671,0.0010371266107963828,0.0010315425422933468,0.001026026809010236,0.0010205781382503138,0.0010151952885085692,0.001009877048542119,0.00100462223647239,0.0009994296989181805,0.0009942983101582069,0.0009892269713221008,0.0009842146096088718,0.000979260177531559,0.0009743626521874107,0.0009695210345524108,0.0009647343487993232,0.0009600016416383566,0.0009553219816797127,0.0009506944588169781,0.0009461181836308672,0.0009415922868123903,0.0009371159186047704,0.000932688248263518,0.0009283084635337776,0.0009239757701446146,0.0009196893913193964,0.0009154485673017932,0.0009112525548968663,0.0009071006270265316,0.0009029920722991329,0.0008989261945924451,0.0008949023126496769,0.0008909197596880331,0.0008869778830194296,0.0008830760436827706,0.0008792136160876299,0.0008753899876687394,0.0008716045585509973,0.0008678567412246652,0.0008641459602302529,0.0008604716518529574,0.000856833263826202,0.0008532302550439909,0.0008496620952817885,0.0008461282649256748,0.0008426282547093744,0.0008391615654590611,0.0008357277078455625,0.0008323262021437401,0.0008289565779988788,0.0008256183741996926,0.0008223111384579285,0.0008190344271942112,0.0008157878053299753,0.0008125708460852726,0.0008093831307823223,0.0008062242486544741,0.0008030937966605996,0.0007999913793045957,0.0007969166084598943,0.0007938691031988414,0.0007908484896266876,0.0007878544007201963,0.000784886476170604,0.0007819443622308435,0.0007790277115669332,0.0007761361831132774,0.0007732694419319244,0.0007704271590755421,0.0007676090114540424,0.0007648146817047117,0.0007620438580658212,0.0007592962342534705,0.0007565715093417149,0.0007538693876457879,0.0007511895786083445,0.0007485317966886848,0.0007458957612547398,0.0007432811964779076,0.0007406878312305336,0.0007381153989859931,0.0007355636377213355,0.0007330322898223174,0.0007305211019908871,0.0007280298251549456,0.0007255582143803606,0.000723106028785167,0.0007206730314559082,0.0007182589893659742,0.000715863673296012,0.0007134868577562428,0.0007111283209106688,0.0007087878445031507,0.0007064652137852073,0.0007041602174456093,0.0007018726475416335,0.0006996022994319586,0.0006973489717111593,0.0006951124661457717,0.0006928925876118087,0.0006906891440338098,0.0006885019463252853,0.0006863308083305436,0.0006841755467679112,0.0006820359811741965,0.0006799119338505048,0.0006778032298092574,0.0006757096967224329,0.0006736311648710173,0.000671567467095535,0.000669518438747771,0.0006674839176435479,0.0006654637440165661,0.0006634577604732759,0.0006614658119487881,0.0006594877456636999,0.0006575234110819421,0.0006555726598695232,0.0006536353458541838,0.0006517113249859583,0.0006498004552985514,0.000647902596871597,0.0006460176117937238,0.0006441453641264107,0.0006422857198686199,0.0006404385469222176,0.0006386037150580793,0.0006367810958829667,0.0006349705628070886,0.0006331719910123401,0.000631385257421241,0.0006296102406664777,0.0006278468210611283,0.0006260948805694902,0.0006243543027785067,0.0006226249728698164,0.0006209067775923305,0.0006191996052354164,0.0006175033456026174,0.0006158178899859053,0.0006141431311404573,0.0006124789632599727,0.0006108252819524282,0.0006091819842163856,0.000607548968417743,0.0006059261342669522,0.0006043133827967148,0.000602710616340082,0.0006011177385090259,0.000599534654173415,0.0005979612694404088,0.0005963974916342575,0.0005948432292765065,0.000593298392066562,0.0005917628908626574,0.0005902366376631827,0.0005887195455883724,0.0005872115288623565,0.0005857125027955271,0.0005842223837672821,0.0005827410892090665,0.0005812685375877536,0.0005798046483893431,0.0005783493421029449,0.0005769025402050914,0.0005754641651443275,0.0005740341403261012,0.007086543552041397,0.007077779795175658,0.007051637407224375,0.007008556488759439,0.0069492492589473525,0.006874669960367234,0.006785976134813453,0.006684484152799046,0.006571622061017215,0.006448882674270116,0.006317779441109585,0.0061798070428758034,0.006036408038953959,0.005888946232731417,0.005738686868434937,0.005586783319035813,0.005434269605840445,0.005282057897805516,0.005130940056270719,0.004981592295164828,0.004834582092390665,0.004690376591623795,0.0045493518556604445,0.004411802457898808,0.004278425084125855,0.004151199887441266,0.00402997244592249,0.003914365064706042,0.0038040292426590586,0.0036986430436143753,0.0035977945927072965,0.003499956905865794,0.0034047758797374904,0.003312291077793997,0.003222520466507745,0.003135463619402731,0.003051104599711736,0.0029694145315766265,0.002890353875596305,0.0028138744283178188,0.0027399210673988757,0.0026684332650778425,0.0025993463925680273,0.0025325928373245835,0.0024681029540318,0.0024201832238181374,0.002390934947448321,0.0023623102102421044,0.0023342986585037527,0.0023068892455792305,0.0022800703791639614,0.002253830049512837,0.0022281559406640756,0.002203035526595916,0.002178456154048866,0.0021544051135762386,0.0021308697002219885,0.002107837265078639,0.0020852952588421587,0.0020632312683566013,0.0020416330470315013,0.002020488539912809,0.001999785904098642,0.0019795135251107214,0.0019596600297586207,0.0019402142959720184,0.001921165460016823,0.0019025029214613932,0.0018842163462141001,0.0018662956679135886,0.0018487310879172628,0.0018315130741043324,0.0018146323586802138,0.0017980799351465398,0.0017818470545793905,0.0017659252213390745,0.0017503061883198162,0.0017349819518318607,0.00171994474619677,0.0017051870381252666,0.001690701520937723,0.001676481108677833,0.0016625189301642063,0.0016488083230167502,0.0016353428276895238,0.0016221161815372595,0.0016091223129372808,0.0015963553354863798,0.0015838095422874953,0.0015714794003390737,0.0015593595450373724,0.001547444774799329,0.0015357300458128938,0.0015242104669189135,0.0015128812946281483,0.0015017379282753996,0.0014907759053121644,0.0014799908967375694,0.001469378702667873,0.001458935248042967,0.0014486565784685827,0.0014385388561923781,0.0014285783562111827,0.001418771462507463,0.0014091146644117098,0.0013996045530880919,0.0013902378181400896,0.0013810112443331675,0.0013719217084308454,0.0013629661761413385,0.0013541416991711126,0.0013454454123821707,0.0013368745310498682,0.0013284263482176955,0.00132009823214621,0.001311887623852679,0.0013037920347383823,0.0012958090443006569,0.0012879362979264226,0.0012801715047646683,0.0012725124356747983,0.0012649569212482045,0.0012575028499003723,0.0012501481660310613,0.0012428908682497344,0.0012357290076642684,0.0012286606862302524,0.0012216840551587556,0.0012147973133804404,0.001207998706063678,0.0012012865231849658,0.0011946590981494285,0.0011881148064596442,0.0011816520644309055,0.0011752693279513187,0.001168965091284741,0.0011627378859153372,0.0011565862794319067,0.0011505088744505675,0.0011445043075744678,0.0011385712483888415,0.0011327083984904744,0.0011269144905499762,0.0011211882874057803,0.0011155285811887221,0.001109934192475839,0.0011044039694726318,0.0010989367872224645,0.0010935315468422293,0.0010881871747832489,0.0010829026221165989,0.0010776768638417172,0.00107250889821774,0.0010673977461165337,0.0010623424503966895,0.0010573420752977845,0.0010523957058539877,0.0010475024473265801,0.0010426614246544892,0.0010378717819222783,0.0010331326818450296,0.0010284433052693094,0.0010238028506899214,0.0010192105337816916,0.001014665586945815,0.001010167258870255,0.0010057148141037503,0.0010013075326427952,0.000996944709531362,0.0009926256544727568,0.0009883496914532552,0.0009841161583771445,0.0009799244067126471,0.0009757738011485392,0.0009716637192609675,0.0009675935511901644,0.0009635626993267099,0.0009595705780070913,0.000955616613218067,0.0009517002423097818,0.0009478209137171685,0.0009439780866894016,0.0009401712310272209,0.0009363998268276674,0.00093266336423625,0.0009289613432060879,0.0009252932732639052,0.0009216586732826171,0.0009180570712603518,0.0009144880041055758,0.0009109510174282855,0.0009074456653369674,0.0009039715102411441,0.0009005281226594406,0.0008971150810327833,0.0008937319715428052,0.0008903783879351524,0.0008870539313475556,0.0008837582101425996,0.0008804908397448814,0.0008772514424826165,0.0008740396474334307,0.0008708550902742272,0.000867697413135034,0.0008645662644567315,0.0008614612988524119,0.0008583821769724677,0.0008553285653731118,0.0008523001363883308,0.0008492965680051632,0.0008463175437421077,0.0008433627525307078,0.0008404318886001432,0.0008375246513647129,0.0008346407453142283,0.0008317798799070781,0.0008289417694660492,0.000826126133076712,0.0008233326944883522,0.0008205611820173328,0.0008178113284528874,0.0008150828709651645,0.0008123755510155749,0.0008096891142693155,0.0008070233105099994,0.0008043778935563978,0.0008017526211811206,0.00079914725503131,0.0007965615605512115,0.0007939953069065891,0.0007914482669109239,0.0007889202169534097,0.0007864109369285598,0.0007839202101675451,0.0007814478233711013,0.000778993566543996,0.0007765572329310646,0.0007741386189546385,0.0007717375241535003,0.0007693537511231942,0.0007669871054577109,0.0007646373956925326,0.0007623044332488978,0.0007599880323794019,0.000757688010114792,0.0007554041862119532,0.0007531363831030611,0.000750884425845899,0.0007486481420752077,0.0007464273619551908,0.0007442219181330175,0.0007420316456933629,0.0007398563821139626,0.0007376959672220881,0.0007355502431520152,0.0007334190543033977,0.0007313022473005372,0.0007291996709525213,0.0007271111762142573,0.000725036616148266,0.0007229758458873578,0.0007209287225980625,0.0007188951054448424,0.0007168748555550778,0.0007148678359847394,0.0007128739116848257,0.0007108929494684868,0.0007089248179788118,0.0007069693876573326,0.0007050265307131032,0.0007030961210924799,0.0007011780344494947,0.0006992721481168357,0.000697378341077414,0.0006954964939365321,0.0006936264888945659,0.0006917682097202491,0.0006899215417244696,0.0006880863717345794,0.0006862625880692629,0.0006844500805138361,0.0006826487402960967,0.0006808584600626217,0.000679079133855538,0.0006773106570897412,0.0006755529265305936,0.0006738058402719969,0.0006720692977149485,0.000670343199546484,0.000668627447719029,0.0006669219454301727,0.0006652265971027791,0.0006635413083655303,0.0006618659860338154,0.0006602005380909799,0.0006585448736699594,0.0006568989030352072,0.000655262537565017,0.0006536356897341478,0.0006520182730967743,0.007955386519578523,0.007945568010530707,0.007916279184705884,0.007868012816621304,0.007801566373288106,0.007718008324143267,0.007618634791079127,0.00750491976545165,0.007378462322145598,0.00724093410652961,0.007094029925448828,0.006939423635830318,0.006778730800443574,0.006613478865875849,0.00644508498617414,0.006274841111982363,0.006103905607322965,0.00593330044064022,0.005763912904548077,0.005596500823582807,0.005431700282709917,0.005270035025163427,0.005111926804590619,0.00495770611684165,0.004808557080704095,0.0046664208410921925,0.004530932288986991,0.004401677294250009,0.004278273276733093,0.004160366419979846,0.004047629159073421,0.003939135100208869,0.003833490310856372,0.003730712013080177,0.003630835692738652,0.003533875131847655,0.003439825637376365,0.003348666943247018,0.0032603657973117282,0.0031748782503918994,0.0030921516677988054,0.0030121264855895065,0.0029347377344896937,0.0028599163542455523,0.0027875903204096827,0.002728366899394439,0.0026956862418249833,0.0026636885668396494,0.0026323636801475763,0.0026017004945656772,0.002571687203715071,0.002542311433901528,0.0025135603765128784,0.002485420903066252,0.002457879664842207,0.002430923178861617,0.0024045379017847163,0.002378710293152738,0.002353426869243927,0.002328674248678209,0.002304439190783781,0.002280708627624009,0.0022574696904831913,0.0022347097315188005,0.0022124163412045477,0.002190577362118277,0.0021691808995608526,0.002148215329435828,0.0021276693037674435,0.002107531754189332,0.0020877918936942574,0.002068439216901772,0.002049463499066448,0.0020308547940226323,0.002012603431237193,0.001994700012118151,0.001977135405710571,0.0019599007438915435,0.0019429874161628997,0.0019263870641264421,0.0019100915757155107,0.0018940930792455985,0.0018783839373396308,0.0018629567407738457,0.0018478043022847226,0.0018329196503711958,0.0018182960231204123,0.001803926862082256,0.0017898058062124753,0.0017759266859014788,0.001762283517103071,0.001748870495573837,0.0017356819912330928,0.00172271254264992,0.0017099568516630176,0.0016974097781372322,0.0016850663348597695,0.001672921682577205,0.001660971125174688,0.001649210104996907,0.0016376341983101392,0.001626239110904417,0.0016150206738335413,0.0016039748392915223,0.0015930976766225092,0.0015823853684617372,0.001571834207004618,0.0015614405904009578,0.0015512010192708934,0.0015411120933397228,0.001531170508188008,0.0015213730521136943,0.001511716603103055,0.0015021981259067069,0.001492814669217957,0.0014835633629497135,0.0014744414156069438,0.0014654461117515295,0.001456574809556115,0.0014478249384442803,0.0014391939968137525,0.0014306795498398898,0.001422279227356467,0.0014139907218112691,0.0014058117862933474,0.0013977402326298862,0.0013897739295497637,0.0013819108009115206,0.0013741488239934585,0.0013664860278432733,0.001358920491685463,0.0013514503433840574,0.001344073757958727,0.0013367889561522823,0.0013295942030477688,0.0013224878067329851,0.0013154681170111228,0.0013085335241554534,0.001301682457706573,0.0012949133853106844,0.0012882248115971453,0.0012816152770941608,0.001275083357180975,0.0012686276610752558,0.001262246830854508,0.0012559395405099534,0.0012497044950320712,0.0012435404295263318,0.0012374461083581778,0.001231420324326065,0.0012254618978617437,0.0012195696762564384,0.0012137425329123818,0.0012079793666185093,0.00120227910084953,0.0011966406830876014,0.0011910630841655775,0.0011855452976313487,0.0011800863391323016,0.0011746852458192566,0.0011693410757692,0.0011640529074261568,0.0011588198390594514,0.0011536409882389293,0.001148515491326394,0.0011434425029827524,0.0011384211956903644,0.0011334507592898873,0.001128530400531389,0.0011236593426390141,0.0011188368248888079,0.0011140621021993433,0.0011093344447344643,0.0011046531375180503,0.0011000174800601568,0.0010954267859942365,0.0010908803827250732,0.001086377611087087,0.0010819178250125263,0.001077500391209447,0.001073124688848961,0.0010687901092615332,0.0010644960556420592,0.0010602419427632778,0.0010560271966974727,0.0010518512545460287,0.0010477135641766347,0.0010436135839679346,0.0010395507825612523,0.0010355246386193372,0.0010315346405917983,0.0010275802864870122,0.001023661083650346,0.001019776548548505,0.001015926206559694,0.0010121095917695801,0.00100832624677277,0.001004575722479629,0.0010008575779283603,0.0009971713801020274,0.0009935167037505525,0.000989893131217403,0.000986300252270881,0.0009827376639398482,0.0009792049703538181,0.0009757017825871352,0.000972227718507313,0.0009687824026272518,0.0009653654659612903,0.0009619765458850077,0.0009586152859985072,0.0009552813359933242,0.0009519743515226356,0.0009486939940747837,0.0009454399308500248,0.0009422118346402931,0.0009390093837120633,0.0009358322616920914,0.0009326801574560005,0.0009295527650196205,0.0009264497834330445,0.0009233709166772093,0.0009203158735630794,0.000917284367633261,0.0009142761170659893,0.0009112908445814873,0.0009083282773504978,0.0009053881469050924,0.0009024701890515677,0.0008995741437854313,0.000896699755208387,0.0008938467714473367,0.0008910149445751899,0.0008882040305336385,0.0008854137890576597,0.0008826439836018131,0.0008798943812682615,0.0008771647527363952,0.000874454872194136,0.0008717645172707941,0.0008690934689714535,0.000866441511612886,0.0008638084327608504,0.0008611940231688819,0.0008585980767184181,0.0008560203903602828,0.0008534607640574673,0.0008509190007292261,0.0008483949061963323,0.0008458882891276294,0.0008433989609877131,0.0008409267359857676,0.0008384714310255608,0.0008360328656564497,0.0008336108620255279,0.0008312052448307718,0.0008288158412752054,0.0008264424810220412,0.0008240849961508196,0.0008217432211144167,0.0008194169926970284,0.0008171061499730222,0.0008148105342666439,0.0008125299891126231,0.000810264360217524,0.0008080134954219799,0.0008057772446636752,0.0008035554599411013,0.0008013479952780938,0.0007991547066890315,0.0007969754521448265,0.0007948100915395629,0.0007926584866578393,0.0007905205011427581,0.0007883960004646024,0.0007862848518900783,0.0007841869244522406,0.0007821020889209943,0.000780030217774186,0.0007779711851692949,0.0007759248669156365,0.0007738911404471713,0.0007718698847958216,0.0007698609805653153,0.0007678643099055692,0.0007658797564875165,0.0007639072054784876,0.0007619465435180289,0.0007599976586942098,0.0007580604405203704,0.0007561347799123502,0.000754220569166099,0.0007523177019357659,0.0007504260732121807,0.0007485455793017496,0.0007466761178057714,0.0007448175876000917,0.0007429698888151916,0.0007411329228166341,0.0007393065921858626,0.008914995531607564,0.008904014910227891,0.008871259364368292,0.008817279658735324,0.008742967112957339,0.008649515955126112,0.008538374880793873,0.008411191423061796,0.008269752966393361,0.008115928064392834,0.007951611224923664,0.007778673613556859,0.007598921317378372,0.007414062012918964,0.007225680176329803,0.007035220411261749,0.006843978070303616,0.006653096105046722,0.006463566976828348,0.006276238465613792,0.006091822296489919,0.005910904632598536,0.005733957635671085,0.005561351452098819,0.00539505326761532,0.0052365908958595725,0.005085475429245063,0.00494125468339456,0.004803510357040631,0.004671855107125628,0.004545929902532673,0.004425369011554235,0.00430853583453552,0.004194713885786303,0.004083961605091688,0.0039763119148764885,0.0038717758076794776,0.0037703455986567826,0.0036719978487575952,0.0035766959714009306,0.0034843925403520546,0.0033950313195530756,0.003308549037288222,0.003224876927613008,0.00314394206174134,0.003070875772675116,0.0030344433734255127,0.0029987550494531934,0.0029638011653447894,0.00292957094281362,0.0028960526653182338,0.0028632338578502533,0.002831101444444073,0.002799641885759472,0.0027688412988872307,0.0027386855613380752,0.00270916040098861,0.002680251473587059,0.002651944429260864,0.0026242249693183475,0.0025970788945028204,0.002570492145730922,0.002544450838235392,0.0025189412899307003,0.0024939500447263793,0.0024694638914330045,0.002445469878828983,0.002421955327392049,0.0023989078381394606,0.002376315298968846,0.002354165888843795,0.002332448080128767,0.002311150639338922,0.0022902626265392137,0.00226977339359802,0.002249672581474048,0.0022299501166947126,0.0022105962071621347,0.002191601337406722,0.002172956263392241,0.0021546520069632012,0.00213667985001214,0.0021190313284357716,0.0021016982259378235,0.002084672567729361,0.002067946614170011,0.002051512854386566,0.0020353639999014027,0.0020194929782967677,0.002003892926937702,0.0019885571867726995,0.00197347929622713,0.0019586529852031105,0.001944072169195674,0.0019297309435338187,0.0019156235777527937,0.0019017445101028802,0.0018880883421975127,0.0018746498338040407,0.0018614238977777324,0.0018484055951399072,0.0018355901302999997,0.001822972846420257,0.0018105492209223343,0.0017983148611335085,0.0017862655000704995,0.0017743969923583332,0.001762705310281819,0.0017511865399660936,0.00173983687768396,0.0017286526262862908,0.0017176301917523834,0.0017067660798571888,0.001696056892951531,0.0016854993268526468,0.0016750901678412023,0.0016648262897616417,0.0016547046512227425,0.0016447222928946638,0.0016348763348999274,0.0016251639742947135,0.0016155824826376553,0.0016061292036430026,0.0015968015509154854,0.0015875970057635455,0.001578513115088771,0.001569547489348419,0.0015606978005885572,0.0015519617805454318,0.0015433372188122017,0.0015348219610692446,0.0015264139073752705,0.0015181110105172706,0.00150991127441705,0.0015018127525924445,0.0014938135466708747,0.0014859118049537975,0.0014781057210298103,0.0014703935324347865,0.0014627735193573899,0.0014552440033880221,0.0014478033463099914,0.0014404499489310857,0.0014331822499541501,0.0014259987248853659,0.0014188978849785146,0.0014118782762143876,0.0014049384783136752,0.0013980771037823024,0.001391292796987994,0.0013845842332669922,0.001377950118059643,0.0013713891860741094,0.0013649002004769678,0.0013584819521097892,0.001352133258730894,0.0013458529642810827,0.0013396399381728433,0.0013334930746019878,0.0013274112918809614,0.0013213935317930704,0.0013154387589669702,0.0013095459602704737,0.0013037141442233022,0.0012979423404279194,0.0012922295990178414,0.0012865749901229543,0.0012809776033509712,0.0012754365472848247,0.0012699509489951673,0.0012645199535675832,0.001259142723644075,0.0012538184389780885,0.001248546296002945,0.0012433255074130126,0.0012381553017572285,0.0012330349230445913,0.0012279636303612644,0.001222940697498704,0.0012179654125927435,0.0012130370777730351,0.0012081550088226028,0.0012033185348472193,0.0011985269979541081,0.0011937797529399069,0.0011890761669874318,0.0011844156193709689,0.0011797975011699385,0.0011752212149904397,0.0011706861746946717,0.0011661918051378258,0.0011617375419122526,0.0011573228310986553,0.0011529471290241866,0.001148609902027006,0.0011443106262273928,0.001140048787304964,0.0011358238802819378,0.0011316354093122585,0.0011274828874762554,0.0011233658365808847,0.0011192837869652287,0.0011152362773111408,0.0011112228544588644,0.0011072430732275548,0.0011032964962403578,0.0010993826937541762,0.001095501243493779,0.0010916517304901806,0.0010878337469232677,0.0010840468919682956,0.0010802907716464568,0.0010765649986791673,0.0010728691923460366,0.001069202978346493,0.0010655659886647474,0.001061957861438278,0.0010583782408294937,0.0010548267769006402,0.001051303125491748,0.0010478069481016602,0.001044337911771874,0.0010408956889733105,0.0010374799574958116,0.0010340904003402873,0.001030726705613546,0.0010273885664255431,0.0010240756807891858,0.0010207877515224985,0.0010175244861531092,0.0010142855968250032,0.0010110708002075079,0.0010078798174063513,0.001004712373876874,0.0010015681993392317,0.0009984470276955693,0.0009953485969491644,0.0009922726491253349,0.0009892189301942689,0.000986187189995571,0.0009831771821645341,0.000980188664060137,0.0009772213966945742,0.0009742751446644773,0.0009713496760836379,0.0009684447625172402,0.0009655601789175601,0.0009626957035611467,0.0009598511179872919,0.000957026206937962,0.0009542207582990058,0.0009514345630426474,0.0009486674151712818,0.0009459191116624145,0.0009431894524148795,0.0009404782401961698,0.0009377852805909225,0.0009351103819505041,0.0009324533553436992,0.000929814014508392,0.0009271921758043403,0.0009245876581669151,0.0009220002830618217,0.0009194298744407925,0.0009168762586981671,0.0009143392646284222,0.0009118187233845628,0.0009093144684373824,0.000906826335535585,0.0009043541626666783,0.0009018977900187256,0.0008994570599428472,0.0008970318169165072,0.0008946219075075245,0.00089222718033885,0.0008898474860539972,0.0008874826772832282,0.0008851326086103865,0.0008827971365403898,0.0008804761194674133,0.000878169417643625,0.0008758768931486264,0.0008735984098594404,0.0008713338334211048,0.0008690830312178727,0.0008668458723449051,0.0008646222275805921,0.0008624119693593607,0.0008602149717450349,0.0008580311104046925,0.0008558602625830544,0.0008537023070773136,0.0008515571242124966,0.0008494245958172653,0.0008473046052001863,0.0008451970371264707,0.0008431017777950944,0.0008410187148164144,0.00083894773719017,0.0008368887352838991,0.009973191644524789,0.009960932994438974,0.009924364913172327,0.009864101872591948,0.00978113829930646,0.009676806584307194,0.00955272305212243,0.009410725910792872,0.009252809457154293,0.009081058619649826,0.008897587366792177,0.008704483714902855,0.00850376316665279,0.00829733152168622,0.00808695721371249,0.007874252700971892,0.007660663991338825,0.007447467114769576,0.007235770240878032,0.007026520145378114,0.006820511820529169,0.006618400168895395,0.006420712889540354,0.006227958175348045,0.006043021576168658,0.005866712758423323,0.0056985006198436395,0.005537893545076958,0.005384436062213749,0.005237705805900323,0.0050973107583811425,0.004962886742243337,0.004833842488697418,0.004708267374855914,0.004585897321396433,0.004466790419132685,0.0043509788473059235,0.004238472486030335,0.004129262193246974,0.004023322752512785,0.003920615504724451,0.0038210906814958086,0.003724689460788344,0.0036313457669268114,0.003540987837652571,0.003453539580617543,0.003410551675117716,0.003370838685671493,0.003331922798269909,0.0032937940183051964,0.003256441138118558,0.0032198519495315494,0.0031840134310107196,0.003148911912029305,0.0031145332169888176,0.003080862790872115,0.003047885808604375,0.0030155872699198245,0.0029839520813604746,0.002952965126871187,0.0029226113283108784,0.002892875697059871,0.0028637433777811056,0.002835199685279037,0.002807230135296033,0.0027798204699956536,0.002752956678796233,0.0027266250151443197,0.002700812009749939,0.0026755044807459634,0.002650689541178403,0.0026263546041895296,0.002602487386210161,0.0025790759084413414,0.0025561084968717574,0.0025335737810461795,0.0025114606917761894,0.0024897584579584553,0.002468456602646837,0.0024475449385056485,0.00242701356275544,0.00240685285170779,0.002387053454974306,0.0023676062894225245,0.002348502532942313,0.002329733618078145,0.0023112912255735607,0.002293167277869766,0.0022753539325922048,0.002257843576055199,0.002240628816809977,0.002223702479256747,0.002207057597339372,0.002190687408336908,0.002174585346764298,0.0021587450383920214,0.002143160294392861,0.0021278251056211757,0.0021127336370302123,0.002097880222230146,0.0020832593581891694,0.0020688657000792416,0.002054694056266075,0.0020407393834440766,0.002026996781914662,0.00201346149100671,0.0020001288846374808,0.0019869944670117892,0.0019740538684566203,0.001961302841389166,0.0019487372564147888,0.0019363530985521955,0.001924146463582749,0.001912113554520234,0.0019002506781984905,0.0018885542419730722,0.0018770207505338352,0.001865646802825262,0.0018544290890707958,0.0018433643878985175,0.0018324495635645363,0.0018216815632710755,0.0018110574145760946,0.0018005742228915968,0.0017902291690671908,0.0017800195070565952,0.001769942561663809,0.001759995726366339,0.0017501764612129535,0.001740482290792919,0.0017309108022747742,0.001721459643511772,0.001712126521211755,0.0017029091991691693,0.001693805496557093,0.0016848132862768122,0.001675930493363302,0.0016671550934443259,0.0016584851112512481,0.0016499186191799029,0.0016414537358992877,0.0016330886250068791,0.0016248214937285123,0.0016166505916613415,0.0016085742095584415,0.0016005906781532072,0.001592698367022579,0.0015848956834873492,0.0015771810715483542,0.001569553010857246,0.0015620100157206893,0.001554550634136503,0.0015471734468610289,0.0015398770665062786,0.0015326601366659261,0.0015255213310692108,0.0015184593527614867,0.0015114729333108071,0.0015045608320394563,0.0014977218352795042,0.0014909547556517437,0.00148425843136688,0.001477631725548533,0.0014710735255770962,0.0014645827424537442,0.001458158310183947,0.0014517991851798492,0.0014455043456806712,0.0014392727911907966,0.0014331035419347484,0.0014269956383285089,0.0014209481404667589,0.0014149601276252043,0.001409030697777858,0.001403158967128489,0.0013973440696558978,0.0013915851566724793,0.0013858813963957915,0.0013802319735323873,0.0013746360888738805,0.0013690929589045906,0.0013636018154204262,0.0013581619051587872,0.0013527724894388422,0.0013474328438121653,0.0013421422577231832,0.0013369000341791858,0.0013317054894295781,0.0013265579526541608,0.001321456765659941,0.0013164012825864692,0.0013113908696192565,0.001306424904711039,0.0013015027773107663,0.0012966238880998129,0.0012917876487355045,0.001286993481601506,0.0012822408195649183,0.0012775291057399824,0.001272857793257931,0.0012682263450431172,0.0012636342335950047,0.001259080940775919,0.0012545659576043717,0.001250088784053853,0.0012456489288567522,0.0012412459093134975,0.0012368792511065533,0.00123254848811925,0.0012282531622592747,0.0012239928232865944,0.0012197670286458707,0.0012155753433030494,0.0012114173395861069,0.0012072925970298375,0.00120320070222444,0.0011991412486679807,0.0011951138366224838,0.0011911180729735904,0.0011871535710936824,0.001183219950708411,0.0011793168377664013,0.001175443864312237,0.0011716006683624852,0.0011677868937847108,0.0011640021901794778,0.0011602462127650764,0.0011565186222651127,0.0011528190847987234,0.001149147271773423,0.001145502859780467,0.0011418855304927335,0.0011382949705649127,0.0011347308715361202,0.001131192929734748,0.0011276808461855086,0.0011241943265186947,0.0011207330808814275,0.001117296823851045,0.0011138852743504144,0.0011104981555652008,0.0011071351948630335,0.0011037961237144336,0.001100480677615603,0.001097188596012918,0.0010939196222290997,0.0010906735033910562,0.001087449990359351,0.00108424883765914,0.001081069803412754,0.0010779126492736855,0.0010747771403620452,0.0010716630452014561,0.0010685701356572576,0.0010654981868761086,0.0010624469772268748,0.0010594162882427917,0.0010564059045648526,0.0010534156138864628,0.0010504452068991806,0.0010474944772397013,0.001044563221437913,0.001041651238866059,0.0010387583316890032,0.0010358843048154521,0.0010330289658502965,0.0010301921250478732,0.0010273735952662235,0.0010245731919223276,0.0010217907329481742,0.0010190260387478232,0.0010162789321553017,0.001013549238393365,0.0010108367850330923,0.0010081414019543335,0.0010054629213068899,0.001002801177472533,0.001000156007027768,0.0009975272487073243,0.000994914743368424,0.0009923183339556791,0.000989737865466754,0.0009871731849186813,0.0009846241413148315,0.0009820905856125345,0.0009795723706913667,0.0009770693513219803,0.0009745813841356164,0.0009721083275941607,0.0009696500419607938,0.0009672063892712269,0.0009647772333054215,0.0009623624395599219,0.000959961875220684,0.0009575754091364081,0.0009552029117924226,0.0009528442552849837,0.0009504993132961311,0.0009481679610689818,0.0009458500753834878,0.011138188893439385,0.011124527662170619,0.011083775452833962,0.011016616549309884,0.010924158369087701,0.010807884717459073,0.01066959563678284,0.010511338326886742,0.01033533389453472,0.010143904476000576,0.009939404660116289,0.009724160255009348,0.009500416437690434,0.0092702963348803,0.009035770207596102,0.008798634713597896,0.008560501225708277,0.008322791884983565,0.00808674193969561,0.007853406927558546,0.007623673360237133,0.00739827172951807,0.007177790843435711,0.0069631979100617525,0.006757982922398251,0.006562235654993311,0.006375382690606734,0.0061968922555828525,0.006026270814718971,0.005863059961362028,0.005706833577918036,0.005557195243503273,0.005413775867105961,0.005275672915952489,0.0051409997394064036,0.005009709631039565,0.004881862703009269,0.004757492591435556,0.004636610092612299,0.004519206466747181,0.004405256415300413,0.00429472074455957,0.00418754873258088,0.0040836802194608186,0.003983047442465112,0.00388557663808938,0.003827708426635287,0.0037836222208397995,0.003740395320889162,0.0036980191517151802,0.0036564835822846687,0.0036157771763370684,0.0035758874144009713,0.0035368008898433233,0.003498503481516467,0.00346098050538026,0.003424216847282329,0.003388197078895056,0.0033529055586300643,0.0033183265191796636,0.0032844441431796284,0.003251242628337378,0.0032187062432353203,0.0031868193748947997,0.0031555665690697465,0.0031249325641396404,0.0030949023193735724,0.0030654610382549116,0.0030365941874789196,0.0030082875121676877,0.0029805270477836175,0.0029532991291705314,0.002926590397099546,0.0029003878026543093,0.0028746786097515174,0.0028494503960558013,0.002824691052520387,0.002800388781754078,0.0027765320953930463,0.002753109810633035,0.0027301110460594322,0.0027075252168939257,0.002685342029764108,0.002663551477086443,0.0026421438311427206,0.002621109637920029,0.0026004397107731677,0.002580125123963373,0.0025601572061172075,0.0025405275336449463,0.0025212279241519134,0.002502250429870463,0.0024835873311378712,0.0024652311299396944,0.0024471745435362333,0.00242941049818608,0.0024119321229790127,0.0023947327437869297,0.00237780587734154,0.002361145225444028,0.002344744669311554,0.00232859826406399,0.0023127002333525036,0.002297044964132166,0.0022816270015782844,0.0022664410441466244,0.002251481938776548,0.0022367446762360382,0.002222224386606254,0.0022079163349044135,0.00219381591684201,0.0021799186547159263,0.0021662201934299426,0.0021527162966430966,0.002139402843042565,0.0021262758227374714,0.002113331333770505,0.002100565578744412,0.002087974861559507,0.0020755555842597163,0.0020633042439833793,0.002051217430015871,0.0020392918209407034,0.002027524181886342,0.002015911361865048,0.002004450291201466,0.0019931379790475313,0.0019819715109809393,0.0019709480466845704,0.001960064817703636,0.0019493191252785412,0.0019387083382503886,0.0019282298910367824,0.001917881281675482,0.0019076600699336728,0.0018975638754801449,0.0018875903761187522,0.0018777373060805402,0.001868002454372658,0.001858383663182172,0.001848878826332392,0.0018394858877904456,0.0018302028402238607,0.001821027723604527,0.0018119586238585438,0.0018029936715598654,0.0017941310406667697,0.001785368947299218,0.0017767056485557872,0.001768139441368808,0.0017596686613963763,0.0017512916819497036,0.001743006912954955,0.001734812799948023,0.0017267078231012335,0.0017186904962809076,0.0017107593661344377,0.0017029130112062336,0.0016951500410812355,0.001687469095555148,0.0016798688438304206,0.0016723479837372416,0.0016649052409783156,0.0016575393683970806,0.001650249145268189,0.0016430333766096479,0.0016358908925159174,0.0016288205475110315,0.0016218212199213848,0.0016148918112672505,0.0016080312456725296,0.00160123846929213,0.0015945124497561882,0.0015878521756308931,0.001581256655895097,0.0015747249194322786,0.00156825601453734,0.001561849008437857,0.001555502986828988,0.0015492170534220286,0.0015429903295058206,0.0015368219535207405,0.0015307110806449318,0.0015246568823920875,0.0015186585462208288,0.0015127152751549672,0.0015068262874144546,0.001500990816056713,0.0014952081086278123,0.0014894774268234545,0.001483798046159271,0.0014781692556501882,0.0014725903574985774,0.0014670606667909877,0.0014615795112029734,0.0014561462307120568,0.0014507601773183732,0.001445420714772817,0.0014401272183125224,0.001434879074403261,0.0014296756804888242,0.0014245164447469517,0.001419400785851708,0.0014143281327420759,0.0014092979243966693,0.0014043096096141721,0.0013993626467995982,0.0013944565037560196,0.0013895906574816338,0.0013847645939721095,0.0013799778080278422,0.0013752298030662372,0.001370520090938687,0.0013658481917521615,0.0013612136336953523,0.0013566159528690374,0.0013520546931207935,0.0013475294058837687,0.001343039650019448,0.0013385849916642831,0.001334165004080146,0.0013297792675083244,0.0013254273690272017,0.0013211089024133147,0.0013168234680057895,0.0013125706725740979,0.0013083501291888567,0.0013041614570958582,0.0013000042815930236,0.0012958782339102986,0.0012917829510923724,0.001287718075884219,0.0012836832566192125,0.0012796781471099685,0.0012757024065416776,0.001271755699367906,0.0012678376952088737,0.0012639480687519477,0.0012600864996545566,0.0012562526724492417,0.001252446276450895,0.0012486670056661385,0.0012449145587046715,0.0012411886386926886,0.0012374889531882247,0.0012338152140983852,0.0012301671375984087,0.0012265444440525957,0.001222946857936871,0.0012193741077631708,0.0012158259260054208,0.0012123020490271573,0.0012088022170107676,0.001205326173888172,0.001201873667273103,0.0011984444483948103,0.001195038272033189,0.0011916548964552968,0.0011882940833532736,0.0011849555977834975,0.001181639208107108,0.0011783446859317606,0.001175071806054593,0.0011718203464064507,0.0011685900879971783,0.001165380814862147,0.0011621923140098488,0.0011590243753705756,0.0011558767917462047,0.0011527493587609333,0.0011496418748131014,0.0011465541410279672,0.0011434859612114397,0.0011404371418047704,0.0011374074918401663,0.0011343968228972423,0.001131404949060428,0.0011284316868771778,0.001125476855317024,0.001122540275731488,0.0011196217718146926,0.001116721169564851,0.0011138382972464681,0.0011109729853532786,0.0011081250665719638,0.001105294375746482,0.001102480749843193,0.001099684027916597,0.0010969040510757544,0.0010941406624513622,0.0010913937071634614,0.001088663032289731,0.0010859484868344295,0.0010832499216979052,0.0010805671896466974,0.0010779001452842032,0.0010752486450218636,0.0010726125470509411,0.0010699917113147993,0.0010673859994817028,0.012418522434089663,0.012403325615327436,0.012357992443089365,0.012283283471786106,0.012180429569043184,0.012051079982719542,0.011897235513845278,0.01172117176698821,0.011525357762822272,0.011312374960404539,0.011084841052029842,0.01084534191180851,0.010596373964123133,0.010340298137773256,0.010079305598807027,0.009815394679159728,0.009550357867035852,0.009285777392563194,0.009023027799773299,0.008763283902888563,0.008507532637484947,0.008256587495008905,0.008011104438775795,0.0077730884757718135,0.007545922445449407,0.0073291047496539434,0.007122020316601569,0.0069240975142680706,0.006734804748921167,0.006553647337161618,0.00638016463207353,0.006213927384548816,0.006054535321570114,0.005901614924178137,0.005753993393013265,0.0056098713961851175,0.005469289467655818,0.005332312607940851,0.0051989785738359665,0.0050693015382643316,0.004943275424273942,0.004820876918096948,0.004702068172673403,0.004586799217560828,0.004475010094084479,0.004366632736239475,0.004290007688826496,0.004241188386349861,0.004193288079228868,0.004146300454813242,0.004100217218600666,0.004055028389244845,0.004010722561286936,0.003967287138508462,0.003924708540641532,0.0038829723860008157,0.003842063652416412,0.0038019668186650016,0.003762665988417809,0.0037241449985467895,0.003686387513469697,0.0036493771070535007,0.0036130973334535083,0.003577531788128958,0.003542664160150058,0.0035084782768005714,0.003474958141372157,0.0034420879649541595,0.0034098521929358445,0.00337823552686109,0.0033472229422037768,0.003316799702572297,0.003286951370792022,0.003257663817265583,0.0032289232259655985,0.0032007160983723677,0.0031730292556355214,0.003145849839203948,0.0031191653101408532,0.0030929634473150294,0.003067232344636917,0.0030419604074866154,0.0030171363484655395,0.0029927491825846603,0.0029687882219903467,0.0029452430703152646,0.0029221036167304134,0.0028993600297662057,0.0028770027509597697,0.002855022488379368,0.0028334102100698077,0.0028121571374558232,0.0027912547387369748,0.0027706947223010846,0.0027504690301801754,0.002730569831569065,0.0027109895164237636,0.0026917206891531446,0.002672756162416653,0.0026540889510369213,0.0026357122660352014,0.0026176195087961574,0.002599804265365676,0.0025822603008865525,0.0025649815541733054,0.0025479621324281687,0.0025311963060986784,0.002514678503877225,0.0024984033078411837,0.0024823654487335194,0.0024665598013815953,0.00245098138025262,0.0024356253351436796,0.0024204869470033793,0.0024055616238832784,0.002390844897015762,0.002376332417015601,0.0023620199502025012,0.002347903375040887,0.0023339786786946994,0.0023202419536934396,0.0023066893947065676,0.0022933172954230966,0.002280122045533422,0.0022671001278098206,0.0022542481152832737,0.002241562668513116,0.0022290405329466675,0.0022166785363662367,0.002204473586420078,0.0021924226682352565,0.0021805228421092134,0.002168771241277611,0.002157165069755812,0.0021457016002517405,0.002134378172147181,0.0021231921895458385,0.002112141119385439,0.002101222489611712,0.0020904338874124387,0.0020797729575088796,0.002069237400503295,0.0020588249712801235,0.002048533477459127,0.002038360777898811,0.002028304781247935,0.0020183634445440817,0.0020085347718570928,0.001998816812976107,0.0019892076621385465,0.0019797054567997573,0.0019703083764415446,0.0019610146414187064,0.001951822511841917,0.0019427302864957706,0.0019337363017909476,0.0019248389307489242,0.0019160365820185597,0.001907327698923195,0.0018987107585372253,0.0018901842707912079,0.0018817467776045941,0.0018733968520448009,0.0018651330975122302,0.0018569541469499505,0.0018488586620773453,0.0018408453326470412,0.001832912875723958,0.0018250600349862258,0.0018172855800468483,0.0018095883057955818,0.0018019670317604175,0.0017944206014877267,0.0017869478819408432,0.0017795477629161882,0.001772219156476444,0.001764960996400222,0.0017577722376477549,0.0017506518558418236,0.0017435988467638175,0.0017366122258641046,0.001729691027786401,0.0017228343059057208,0.0017160411318792495,0.0017093105952100574,0.0017026418028229435,0.0016960338786522159,0.0016894859632409747,0.0016829972133513946,0.001676566801585922,0.0016701939160188568,0.0016638777598380224,0.0016576175509962266,0.001651412521872306,0.0016452619189411602,0.0016391650024528968,0.0016331210461205097,0.001627129336815924,0.0016211891742742425,0.0016152998708056953,0.0016094607510153624,0.001603671151530227,0.0015979304207334101,0.0015922379185053519,0.0015865930159718064,0.0015809950952582333,0.0015754435492507074,0.001569937781362892,0.0015644772053090145,0.001559061244882705,0.0015536893337413417,0.0015483609151959923,0.001543075442006609,0.0015378323761823668,0.0015326311887871047,0.0015274713597494547,0.0015223523776778647,0.001517273739680125,0.0015122349511873699,0.0015072355257824085,0.001502274985032307,0.001497352858324949,0.0014924686827096907,0.0014876220027418355,0.0014828123703308177,0.0014780393445921701,0.0014733024917028487,0.0014686013847601785,0.0014639356036440726,0.0014593047348825494,0.0014547083715203812,0.0014501461129909341,0.0014456175649908516,0.0014411223393578244,0.0014366600539510996,0.001432230332534809,0.0014278328046640097,0.0014234671055732562,0.0014191328760678266,0.0014148297624174036,0.0014105574162521343,0.0014063154944611422,0.0014021036590931972,0.0013979215772597544,0.0013937689210400859,0.0013896453673885726,0.001385550598044029,0.0013814842994411152,0.001377446162623573,0.001373435883159521,0.0013694531610585138,0.0013654977006904497,0.001361569210706286,0.0013576674039603653,0.0013537919974345558,0.0013499427121639338,0.0013461192731641248,0.001342321409360149,0.0013385488535168594,0.0013348013421707649,0.0013310786155633747,0.0013273804175759287,0.001323706495665486,0.0013200566008024208,0.0013164304874091,0.001312827913299973,0.0013092486396228315,0.001305692430801291,0.0013021590544785209,0.0012986482814620183,0.0012951598856696224,0.0012916936440765835,0.0012882493366637045,0.0012848267463665506,0.0012814256590257212,0.0012780458633380159,0.0012746871508087089,0.0012713493157046989,0.0012680321550086159,0.0012647354683738884,0.0012614590580805906,0.0012582027289922781,0.0012549662885136031,0.0012517495465487968,0.0012485523154609729,0.0012453744100321606,0.0012422156474241922,0.0012390758471403135,0.0012359548309875408,0.0012328524230397298,0.0012297684496014086,0.0012267027391722036,0.001223655122412046,0.0012206254321069827,0.0012176135031356423,0.0012146191724363787,0.0012116422789749507,0.0012086826637128889,0.0012057401695764111,0.001202814641425934,0.013822922718595731,0.013806049448447702,0.013755715002117325,0.01367276294949485,0.013558558535881483,0.013414931116867498,0.01324410008075007,0.0130485897669033,0.012831139236078508,0.012594612486323743,0.012341913950276907,0.012075913022381543,0.011799380129504098,0.011514935639374372,0.01122501182323946,0.010931827229104612,0.010637372210736412,0.010343403988711256,0.010051449461381801,0.009762813990770043,0.009478594512731801,0.00919969551752301,0.00892687121656839,0.008664030641374389,0.008413159039531855,0.008173552917091506,0.00794455710222818,0.0077255611774675196,0.007515996162181391,0.00731533143475944,0.007123071882263243,0.006938755264458818,0.006761949778747078,0.006592251812536352,0.006429283869867047,0.006271777196483302,0.0061178822294686575,0.0059676572028883905,0.005821175334427943,0.005678481609723729,0.005539596464337053,0.005404519150442193,0.005273230791035247,0.005145697131056476,0.005021870999511954,0.0049016944997975435,0.004801744056284039,0.004747830244850018,0.00469488973849498,0.004642919583527787,0.004591914319649458,0.004541866325600861,0.0044927661289160675,0.004444602682743539,0.004397363612579553,0.0043510354356226105,0.0043056037552937475,0.004261053433300337,0.004217368741450493,0.004174533495248634,0.004132531171141768,0.004091345009119677,0.004050958102222202,0.004011353474363575,0.003972514147747411,0.003934423201025767,0.0038970638192377697,0.00386041933646078,0.003824473272010368,0.003789209360939576,0.003754611579506207,0.0037206641662094805,0.0036873516389292534,0.003654658808644486,0.003622570790155923,0.0035910730101888547,0.0035601512132127713,0.0035297914652745186,0.003499980156108866,0.0034707039997604,0.0034419500339239683,0.0034137056181852755,0.003385958431324908,0.003358696467827041,0.0033319080337186366,0.0033055817418503187,0.003279706506714626,0.003254271538888582,0.003229266339174072,0.0032046806925016464,0.003180504661655313,0.00315672858086666,0.0031333430493231686,0.003110338924626676,0.003087707316235054,0.00306543957891446,0.0030435273062265115,0.0030219623240695754,0.0030007366842927786,0.002979842658396083,0.0029592727313289546,0.002939019595397775,0.0029190761442893336,0.002899435467217938,0.002880090843200437,0.0028610357354633773,0.002842263785984862,0.0028237688101733433,0.002805544791683577,0.0027875858773711345,0.0027698863723843704,0.0027524407353934415,0.0027352435739552735,0.0027182896400122863,0.0027015738255238165,0.0026850911582275254,0.002668836797528526,0.0026528060305139223,0.002636994268089552,0.0026213970412368097,0.002606009997386241,0.0025908288969050427,0.002575849609695584,0.0025610681119021084,0.0025464804827220557,0.002532082901319809,0.0025178716438393014,0.00250384308051281,0.002489993672863083,0.0024763199709955577,0.0024628186109784634,0.0024494863123075694,0.0024363198754531056,0.0024233161794861052,0.002410472179781841,0.0023977849057973074,0.002385251458920995,0.0023728690103920615,0.002360634799286767,0.0023485461305700695,0.0023366003732097304,0.002324794958351441,0.002313127377552462,0.0023015951810719274,0.00229019597621605,0.0022789274257359136,0.002267787246276628,0.0022567732068757094,0.002245883127509126,0.0022351148776833443,0.0022244663750719835,0.0022139355841951022,0.002203520515140274,0.0021932192223235334,0.002183029803289045,0.0021729503975462553,0.0021629791854428687,0.002153114387072959,0.0021433542612186393,0.002133697104324247,0.002124141249502103,0.002114685065568382,0.0021053269561085892,0.002096065358571234,0.0020868987433889743,0.0020778256131261624,0.002068844501652162,0.002059953973339102,0.002051152622283816,0.002042439071552773,0.0020338119724493424,0.002025270003802802,0.0020168118712779754,0.0020084363067053583,0.002000142067430599,0.001991927935682978,0.0019837927179620837,0.0019757352444423463,0.0019677543683943996,0.0019598489656232863,0.0019520179339225304,0.0019442601925437303,0.00193657468168129,0.001928960361971452,0.0019214162140055915,0.001913941237857052,0.0019065344526211889,0.0018991948959681383,0.0018919216237080862,0.001884713709368292,0.0018775702437819456,0.0018704903346881353,0.001863473106342735,0.0018565176991399445,0.0018496232692438617,0.0018427889882301504,0.001836014042737252,0.0018292976341268983,0.0018226389781537471,0.0018160373046436184,0.0018094918571803737,0.0018030018928009654,0.0017965666816985154,0.001790185506933065,0.0017838576641500154,0.0017775824613056235,0.0017713592183997784,0.001765187267215579,0.0017590659510655598,0.0017529946245444657,0.0017469726532881895,0.0017409994137389225,0.0017350742929161816,0.0017291966881935867,0.0017233660070813015,0.0017175816670137191,0.0017118430951426344,0.0017061497281353945,0.0017005010119780953,0.001694896401783554,0.001689335361604091,0.0016838173642486978,0.0016783418911048215,0.0016729084319643721,0.0016675164848539163,0.001662165555869049,0.0016568551590125668,0.0016515848160366343,0.001646354056288646,0.001641162416560763,0.0016360094409429253,0.0016308946806794656,0.0016258176940288764,0.0016207780461270198,0.0016157753088534433,0.0016108090607007712,0.0016058788866472066,0.0016009843780318046,0.0015961251324327487,0.0015913007535483348,0.0015865108510806545,0.0015817550406219967,0.001577032943543667,0.0015723441868874422,0.0015676884032593962,0.0015630652307261025,0.0015584743127131568,0.0015539152979059708,0.0015493878401526794,0.0015448915983692797,0.001540426236446795,0.0015359914231604908,0.0015315868320810871,0.0015272121414878226,0.0015228670342834953,0.0015185511979112748,0.0015142643242733267,0.001510006109651155,0.0015057762546277212,0.0015015744640110701,0.001497400446759737,0.0014932539159096235,0.0014891345885024588,0.0014850421855157768,0.001480976431794273,0.0014769370559827007,0.0014729237904600881,0.0014689363712753324,0.0014649745380841822,0.0014610380340873798,0.0014571266059702139,0.0014532400038432239,0.0014493779811841428,0.0014455402947809986,0.0014417267046764118,0.0014379369741129202,0.0014341708694795131,0.0014304281602591608,0.0014267086189774204,0.0014230120211520855,0.0014193381452437621,0.0014156867726074953,0.0014120576874453146,0.0014084506767597254,0.0014048655303080817,0.0014013020405579137,0.0013977600026430217,0.0013942392143205234,0.0013907394759286693,0.0013872605903454847,0.0013838023629482497,0.0013803646015736533,0.0013769471164788178,0.001373549720302988,0.0013701722280299918,0.0013668144569514086,0.0013634762266303718,0.0013601573588661315,0.001356857677659243,0.0013535770091773923,0.015360135107809035,0.015341437825111588,0.015285661760071016,0.015193740417817165,0.015067184639041088,0.014908018955469119,0.014718699683535395,0.014502020842457096,0.014261014367872889,0.013998850803537008,0.013718745817329705,0.013423876687508352,0.013117311541149944,0.012801952779830535,0.012480494936160704,0.012155396253814527,0.011828862607391546,0.011502841969788735,0.011179027458696325,0.010858867000781912,0.010543577788783768,0.01023416392363291,0.009932140806334703,0.009642774515541196,0.009366363255705829,0.00910216561119918,0.008849488941555166,0.008607686053281058,0.008376152063194761,0.008154321453737932,0.007941665317172187,0.007737688783061996,0.0075419286217306815,0.007353951015308617,0.007173349487337786,0.006999742981620246,0.006832030650429595,0.006668085440554573,0.006507905456308508,0.006351575944478961,0.006199152703200111,0.006050665781159851,0.005906122876571314,0.005765512435664055,0.005628806457285621,0.005495963015161492,0.0053674629338029385,0.005308103746038552,0.005249762926343278,0.005192442284383992,0.0051361404831963,0.005080853441664152,0.0050265746976703015,0.004973295734810362,0.0049210062755201765,0.004869694543388351,0.004819347497303662,0.004769951039952808,0.004721490203031497,0.0046739493113713134,0.004627312128028738,0.004581561982220107,0.004536681881833696,0.004492654612103404,0.004449462821885593,0.004407089098853125,0.0043655160347940355,0.0043247262820908525,0.004284702602350532,0.004245427908060043,0.004206885298051569,0.004169058087485537,0.004131929832982381,0.0040954843534699815,0.004059705747254448,0.004024578405765034,0.003990087024379205,0.003956216610686902,0.003922952490514959,0.003890280311997361,0.003858186047945375,0.0038266559967418765,0.003795676781961564,0.003765235350893112,0.0037353189721207277,0.003705915232304568,0.003677012032281436,0.0036485975825959476,0.003620660398556385,0.0035931892948997653,0.003566173380140609,0.0035396020506670363,0.0035134649846424878,0.00348775213576195,0.0034624537269061263,0.0034375602437313768,0.0034130624282285517,0.003388951272277816,0.003365218011225431,0.0033418541175022293,0.003318851294302031,0.0032962014693353825,0.003273896788670461,0.0032519296106730262,0.0032302925000531908,0.003208978222026575,0.0031879797365954635,0.003167290192954624,0.0031469029240244403,0.003126811441114809,0.0031070094287205634,0.0030874907394494084,0.003068249389083105,0.0030492795517704898,0.00303057555535282,0.0030121318768193345,0.0029939431378918214,0.002976004100736683,0.002958309663801608,0.002940854857775664,0.0029236348416696754,0.0029066448990146755,0.002889880434175652,0.0028733369687782002,0.002857010138244628,0.002840895688437677,0.0028249894724082956,0.0028092874472449188,0.0027937856710216506,0.002778480299841894,0.0027633675849754965,0.002748443870086146,0.002733705588546343,0.0027191492608374585,0.0027047714920323575,0.002690568969357415,0.002676538459832379,0.002662676807984823,0.002648980933637166,0.0026354478297640543,0.0026220745604172368,0.0026088582587165694,0.002595796124904335,0.002582885424461089,0.0025701234862810806,0.002557507700904829,0.002545035518807637,0.0025327044487416166,0.0025205120561297622,0.0025084559615101295,0.0024965338390287844,0.002484743414979274,0.0024730824663878027,0.0024615488196420895,0.0024501403491625443,0.0024388549761145866,0.002427690667160179,0.0024166454332479903,0.002405717328440289,0.002394904448775658,0.0023842049311663554,0.0023736169523287556,0.002363138727746428,0.0023527685106642256,0.002342504591112597,0.0023323452949610213,0.0023222889829998313,0.0023123340500489933,0.0023024789240935505,0.002292722065444459,0.002283061965924072,0.0022734971480756283,0.0022640261643955624,0.002254647596588407,0.0022453600548431774,0.0022361621771306663,0.0022270526285209616,0.0022180301005206623,0.002209093310428774,0.0022002410007112,0.002191471938392863,0.002182784914467002,0.0021741787433212294,0.0021656522621794423,0.0021572043305596116,0.0021488338297464874,0.002140539662279037,0.0021323207514519714,0.0021241760408311416,0.0021161044937820102,0.0021081050930112154,0.0021001768401205313,0.0020923187551729217,0.0020845298762704294,0.0020768092591432205,0.002069155976749868,0.0020615691188882123,0.002054047791816575,0.0020465911178851387,0.0020391982351768553,0.0020318682971579957,0.002024600472337796,0.002017393943936982,0.002010247909564934,0.0020031615809052864,0.0019961341834094917,0.001989164955998428,0.0019822531507716,0.0019753980327237236,0.0019685988794686596,0.0019618549809701197,0.001955165639279411,0.0019485301682796192,0.0019419478934362623,0.001935418151554241,0.0019289402905406491,0.001922513669173647,0.0019161376568769758,0.0019098116334999922,0.001903534989103127,0.0018973071237486285,0.0018911274472962602,0.0018849953792040852,0.001878910348334024,0.0018728717927620404,0.0018668791595930028,0.001860931904779776,0.0018550294929468027,0.0018491713972177664,0.0018433570990473592,0.0018375860880569892,0.0018318578618744118,0.0018261719259769688,0.0018205277935386167,0.0018149249852804344,0.0018093630293245877,0.0018038414610517303,0.0017983598229615308,0.0017929176645365402,0.0017875145421090768,0.001782150018731142,0.0017768236640473567,0.0017715350541706095,0.0017662837715606433,0.0017610694049052925,0.0017558915490043779,0.001750749804656174,0.0017456437785464646,0.0017405730831398876,0.0017355373365738368,0.0017305361625546,0.0017255691902557757,0.0017206360542189644,0.001715736394256477,0.0017108698553562828,0.0017060360875889539,0.0017012347460165814,0.00169646549060368,0.0016917279861300004,0.001687021902105123,0.001682346912684929,0.0016777026965898339,0.0016730889370246771,0.0016685053216004076,0.001663951542257246,0.0016594272951895844,0.0016549322807723828,0.0016504662034890875,0.0016460287718610917,0.0016416196983785247,0.0016372386994325872,0.0016328854952491986,0.0016285598098240111,0.0016242613708587253,0.0016199899096987509,0.0016157451612720181,0.0016115268640291129,0.0016073347598845687,0.001603168594159328,0.0015990281155244003,0.0015949130759455071,0.0015908232306289837,0.0015867583379686175,0.0015827181594936122,0.0015787024598175013,0.001574711006588155,0.001570743570438617,0.0015667999249390323,0.0015628798465494246,0.0015589831145733954,0.0015551095111127637,0.0015512588210229643,0.001547430831869408,0.001543625333884612,0.0015398421199261498,0.0015360809854354344,0.0015323417283971998,0.0015286241492998146,0.0015249280510963147,0.0015212532391661539,0.013367618692921836,0.01335586740010659,0.013320757241721621,0.01326271480385218,0.013182436091976,0.013080865011908758,0.012959165026462495,0.012818685568301031,0.012660924982676744,0.012487491821680706,0.012300066224872822,0.012100362923436624,0.011890097128528782,0.011670954244268153,0.011444564015391245,0.011212479406993629,0.010976160239603397,0.010736961379895053,0.010496125120658383,0.010254777272436925,0.010013926428064195,0.009774465842190983,0.009537177381603658,0.00930273703942047,0.00907172155882899,0.008844615772766882,0.008621820329257564,0.008405103168917287,0.008196858970908771,0.007996700325252602,0.00780421660468407,0.00761902197951948,0.007440753760339116,0.007269070853506727,0.007103652322976403,0.006944196051894782,0.0067904174976419875,0.006642048534165653,0.006498836375710061,0.0063605425763389924,0.006226942099932457,0.006097822455660851,0.0059733338957143065,0.005915528348962499,0.005858233353301129,0.005801489722862795,0.005745333055601782,0.005689794135645398,0.005634899319440386,0.005580670903883526,0.0055271274752229866,0.0054742842380284895,0.005422153323941168,0.00537074408025221,0.005320063338623638,0.005270115664476189,0.005220903587722444,0.005172427815637841,0.00512468742874353,0.005077680060617658,0.005031402062584775,0.004985848654232127,0.004941014060696556,0.004896891637644032,0.004853473984832974,0.004810753049120199,0.00476872021772457,0.004727366402521982,0.004686682116101222,0.004646657540264408,0.0046072825876100135,0.004568546956795159,0.004530440182028555,0.0044929516773054385,0.00445607077585817,0.004419786765255433,0.004384088918553402,0.0043489665218644485,0.004314408898681347,0.004280405431265394,0.00424694557938092,0.00421401889663281,0.004181615044643249,0.004149723805281113,0.004118335091138845,0.004087438954434676,0.004057025594500118,0.004027085364000417,0.0039976087740197916,0.003968586498131761,0.003940009375564402,0.003911868413557768,0.0038841547890044914,0.003856859849453095,0.0038299751135474906,0.0038034922709684013,0.0037774031819365348,0.0037516998763301025,0.003726374552466399,0.0037014195755898905,0.003676827476106196,0.0036525909475975888,0.003628702844650468,0.0036051561805245744,0.0035819441246881987,0.0035590600002426876,0.003536497281256188,0.003514249590025383,0.003492310694280288,0.003470674504347803,0.003449335070285801,0.0034282865789995245,0.0034075233513504704,0.003387039839265755,0.0033668306228569534,0.0033468904075543006,0.0033272140212625757,0.003307796411543966,0.0032886326428317723,0.003269717893679761,0.0032510474540496897,0.0032326167226400864,0.0032144212042586238,0.003196456507240126,0.003178718340911234,0.0031612025131038603,0.003143904927717668,0.0031268215823325794,0.0031099485658719573,0.0030932820563160804,0.003076818318466992,0.003060553701763842,0.003044484638148984,0.003028607639984242,0.003012919298017406,0.002997416279397536,0.0029820953257396333,0.0029669532512371596,0.0029519869408220355,0.002937193348371518,0.002922569494960525,0.002908112467159463,0.0028938194153759872,0.002879687552240102,0.002865714151031879,0.0028518965441502128,0.0028382321216226672,0.002824718329654684,0.00281135266921762,0.002798132694674611,0.0027850560124434184,0.0027721202796950352,0.0027593232030876753,0.002746662537534806,0.0027341360850065585,0.002721741693363712,0.0027094772552229873,0.0026973407068534485,0.002685330027102685,0.002673443236352172,0.0026616783955009235,0.002650033604976955,0.0026385070037751586,0.0026270967685216133,0.002615801112563117,0.002604618285081291,0.002593546570230885,0.002582584286300975,0.002571729784899125,0.002560981450157401,0.0025503376979597063,0.0025397969751900563,0.0025293577590007046,0.0025190185561001425,0.002508777902060009,0.0024986343606405075,0.002488586523133735,0.002478633007724622,0.0024687724588685184,0.0024590035466855354,0.0024493249663707253,0.002439735437619794,0.0024302337040700366,0.0024208185327556776,0.0024114887135776733,0.002402243058787247,0.0023930804024828523,0.0023839996001203015,0.0023749995280353264,0.0023660790829787143,0.002357237181663282,0.002348472760322501,0.0023397847742803925,0.002331172197532544,0.0023226340223375078,0.0023141692588188557,0.00230577693457716,0.0022974560943117535,0.0022892057994521736,0.0022810251277985485,0.0022729131731712747,0.002264869045069269,0.002256891868336772,0.002248980782838368,0.0022411349431421456,0.0022333535182104632,0.0022256356910985006,0.002217980658660116,0.0022103876312608442,0.002202855832498016,0.0021953844989274444,0.0021879728797969157,0.00218062023678603,0.002173325843752262,0.002166088986483234,0.002158908962454675,0.00215178508059436,0.00214471666105155,0.00213770303497189,0.002130743544277602,0.0021238375414529558,0.002116984389334539,0.0021101834609066478,0.0021034341391013237,0.0020967358166030384,0.0020900878956579805,0.0020834897878875733,0.0020769409141064266,0.0020704407041444045,0.002063988596672734,0.002057584039034098,0.0020512264870766214,0.0020449154049914744,0.0020386502651542826,0.002032430547970039,0.0020262557417214527,0.002020125342420806,0.002014038853664909,0.0020079957864934527,0.002001995659250399,0.0019960379974484433,0.0019901223336365108,0.001984248207270004,0.001978415164584053,0.0019726227584694095,0.0019668705483510897,0.0019611581000695873,0.0019554849857647376,0.0019498507837619407,0.0019442550784609235,0.0019386974602268528,0.001933177525283724,0.0019276948756101143,0.0019222491188369667,0.0019168398681476807,0.001911466742180243,0.0019061293649313934,0.001900827365662812,0.0018955603788092805,0.0018903280438886537,0.0018851300054138142,0.0018799659128063478,0.001874835420312025,0.0018697381869180773,0.0018646738762720055,0.0018596421566021814,0.0018546427006400107,0.001849675185543652,0.0018447392928233387,0.0018398347082680783,0.0018349611218739478,0.0018301182277737525,0.0018253057241681017,0.0018205233132578336,0.0018157707011778586,0.0018110475979321416,0.001806353717330139,0.0018016887769243771,0.0017970524979492766,0.0017924446052612084,0.001787864827279623,0.0017833128959293932,0.001778788546584267,0.0017742915180113564,0.001769821552316792,0.0017653783948922651,0.0017609617943627283,0.0017565715025350268,0.001752207274347515,0.001747868867820608,0.0017435560440083322,0.0017392685669506665,0.001735006203626879,0.0017307687239097053,0.0017265559005203528,0.001722367508984417,0.001718203327588481,0.0017140631373376482,0.0017099467219137876,0.0017058538676345573,0.014874585357536696,0.014861484421965564,0.014822342377264113,0.01475763637396959,0.014668144855330013,0.014554923402852677,0.014419272929408181,0.014262701999769242,0.014086885274957484,0.013893620129186475,0.013684783388747408,0.01346228991788071,0.013228054463946,0.012983957812840714,0.012731817933339268,0.01247336643742909,0.012210230376012392,0.011943919139657649,0.0116758160480133,0.01140717408792524,0.0111391151930006,0.01087263243717908,0.010608594531418849,0.010347752055414954,0.010090744915994517,0.009838110592493515,0.009590511703170742,0.009351452079000407,0.009121658722473298,0.008900666916882426,0.008688039191326428,0.00848336360942873,0.00828625215856683,0.008096339236538078,0.007913280231932322,0.007736750194076681,0.007566442588171764,0.007402068131120503,0.007243353703515987,0.007090041333331927,0.006941887246942084,0.0067986609832482595,0.006660144566870053,0.006585925276508276,0.006523791518339173,0.006462162063571142,0.006401082432995434,0.006340592632313722,0.006280727558166051,0.006221517389988302,0.006162987965539181,0.0061051611385717465,0.0060480551176579295,0.005991684785618625,0.005936061999375035,0.005881195870338334,0.005827093025682519,0.005773757851031899,0.0057211927152307,0.005669398177959882,0.005618373181038779,0.005568115224286741,0.0055186205268435125,0.005469884174851086,0.005421900256388308,0.005374661984533446,0.005328161809398562,0.0052823915199485365,0.0052373423363789645,0.0051930049937887746,0.005149369817838765,0.005106426793050252,0.005064165624351474,0.005022575792441065,0.004981646603498575,0.004941367233730169,0.004901726769206744,0.004862714241411365,0.004824318658883237,0.004786529035313947,0.004749334414422884,0.004712723891909846,0.004676686634761853,0.0046412118981634,0.004606289040240711,0.004571907534849713,0.004538056982598052,0.004504727120277175,0.004471907828861889,0.004439589140222669,0.004407761242682124,0.0043764144855342755,0.004345539382636481,0.004315126615171345,0.004285167033668381,0.0042556516593660575,0.004226571684988263,0.004197918474999995,0.004169683565404247,0.004141858663132852,0.0041144356450808165,0.004087406556828859,0.004060763611092667,0.004034499185936677,0.004008605822783284,0.003983076224247413,0.003957903251822239,0.0039330799234401186,0.003908599410928845,0.0038844550373832946,0.0038606402744686273,0.003837148739670235,0.0038139741935043973,0.0037911105367005905,0.003768551807367481,0.003746292178150895,0.003724325953392761,0.0037026475662983835,0.003681251576117812,0.0036601326653481455,0.00363928563696081,0.0036187054116584827,0.003598387025165246,0.0035783256255535745,0.0035585164706098656,0.0035389549252421194,0.0035196364589306743,0.0035005566432239634,0.003481711149280666,0.0034630957454586195,0.0034447062949521535,0.0034265387534775952,0.0034085891670076933,0.003390853669554887,0.0033733284810037165,0.003356009904991703,0.0033388943268391705,0.0033219782115271115,0.003305258101722836,0.003288730615853104,0.003272392446223526,0.003256240357184413,0.003240271183341795,0.0032244818278130715,0.003208869260526696,0.0031934305165644927,0.0031781626945466684,0.0031630629550580113,0.0031481285191146515,0.003133356666670525,0.0031187447351628023,0.003104290118094952,0.003089990263657249,0.0030758426733832867,0.003061844900841934,0.003047994550363902,0.003034289275801672,0.0030207267793225428,0.003007304810233578,0.0029940211638376877,0.0029808736803200995,0.0029678602436645956,0.0029549787805981825,0.002942227259564181,0.0029296036897224586,0.002917106119976188,0.0029047326380247014,0.002892481369441097,0.002880350476774721,0.0028683381586772,0.002856442649051734,0.0028446622162249602,0.002832995162140472,0.0028214398215738695,0.0028099945613684163,0.0027986577796907967,0.0027874279053064378,0.002776303396873942,0.0027652827422577826,0.002754364457859181,0.002743547087964361,0.0027328292041097248,0.0027222094044637084,0.0027116863132243736,0.002701258580032856,0.0026909248794018212,0.002680683910158669,0.002670534394903166,0.0026604750794786986,0.0026505047324573375,0.002640622144637914,0.0026308261285568854,0.002621115518011573,0.002611489167595639,0.0026019459522460034,0.00259248476680145,0.0025831045255721766,0.002573804161920139,0.0025645826278499822,0.0025554388936099575,0.0025463719473029405,0.0025373807945070098,0.002528464457905403,0.0025196219769255666,0.002510852407387163,0.0025021548211585248,0.0024935283058216445,0.0024849719643452784,0.0024764849147659463,0.0024680662898767664,0.002459715236923569,0.0024514309173085734,0.002443212506301009,0.0024350591927546957,0.00242697017883245,0.0024189446797368225,0.0024109819234474244,0.002403081150464361,0.0023952416135577157,0.0023874625775228905,0.0023797433189418115,0.002372083125949417,0.0023644812980058764,0.002356937145673916,0.0023494499904013204,0.0023420191643085345,0.0023346440099809534,0.002327323880266142,0.0023200581380756215,0.002312846156191143,0.002305687317075349,0.002298581012686827,0.0022915266442991196,0.0022845236223239846,0.0022775713661385487,0.0022706693039162723,0.002263816872461811,0.00225701351704934,0.0022502586912646096,0.002243551856850434,0.002236892483555553,0.0022302800489868817,0.0022237140384648167,0.0022171939448818972,0.00221071926856438,0.002204289517136882,0.0021979042053899014,0.002191562855150267,0.002185264995154194,0.0021790101609232265,0.00217279789464274,0.0021666277450429834,0.00216049926728279,0.002154412022835507,0.002148365579377517,0.002142359510679027,0.0021363933964971124,0.00213046682247102,0.0021245793800196994,0.002118730666241279,0.0021129202838148092,0.0021071478409039313,0.0021014129510625056,0.002095715233142273,0.002090054311202226,0.0020844298144199642,0.0020788413770048047,0.0020732886381126113,0.0020677712417624147,0.0020622888367545786,0.002056841076590732,0.002051427619395226,0.0020460481278381766,0.002040702269059994,0.0020353897145975104,0.002030110140311385,0.002024863226315099,0.0020196486569052548,0.002014466120493246,0.0020093153095383266,0.002004195920481822,0.001999107653682778,0.0019940502133547595,0.001989023307503872,0.001984026647868038,0.0019790599498573035,0.0019741229324954,0.001969215318362372,0.001964336833538286,0.0019594872075479946,0.001954666173307011,0.001949873467068261,0.0019451088283699632,0.0019403719999844201,0.001935662727867758,0.0019309807611106657,0.0019263258518899117,0.0019216977554208973,0.0019170962299109868,0.0019125210365137457,0.016529864212107278,0.016515276794798396,0.016471694155518808,0.016399649372837326,0.0163000120628977,0.01617396129718953,0.016022949948979976,0.015848662470758834,0.015652968347238894,0.015437873525688981,0.015205472011505468,0.01495789956268652,0.014697291063575983,0.014425742750813398,0.014145280045482104,0.01385783135045441,0.01356520782696724,0.013269088885172144,0.012971012915975834,0.012672372654379132,0.012374414490633638,0.012078241024382024,0.01178481617684565,0.01149497222518179,0.011209418190916172,0.010928749091880578,0.010655211690474736,0.010392131329242457,0.010139083374251808,0.009895577895224413,0.009661152438360725,0.009435370439528322,0.009217819711850784,0.00900811100885533,0.008805876663054577,0.00861076929887422,0.00842246061812904,0.008240640255732637,0.008065014702955718,0.007895306295331698,0.007731252262148132,0.007572603834412407,0.007419125408169512,0.007322608183540275,0.007254652304614288,0.007187988029513283,0.007121900513490591,0.0070563468415401846,0.006991372386570699,0.006927017090872217,0.006863315860484276,0.006800298945637957,0.006737992305348925,0.006676417954804869,0.006615594294666702,0.006555536421806382,0.00649625642133034,0.0064377636400061505,0.006380064941423801,0.006323164943385644,0.00626706623815062,0.00621176959624536,0.006157274154620087,0.0061035775899695,0.006050676278054463,0.00599856543987224,0.005947239275510479,0.005896691086505669,0.0058469133875024455,0.005797898007981191,0.005749636184784397,0.005702118646142213,0.00565533568785341,0.005609277242244171,0.005563932940487555,0.005519292168826502,0.005475344119210921,0.0054320778348194675,0.005389482250904724,0.005347546231367481,0.0053062586014354885,0.00526560817679084,0.005225583789466709,0.005186174310804519,0.005147368671741322,0.005109155880674476,0.005071525039128251,0.005034465355431647,0.004997966156594906,0.004962016898558638,0.004926607174973756,0.004891726724655066,0.004857365437841811,0.004823513361383387,0.004790160702960097,0.0047572978344375605,0.004724915294445893,0.004693003790263907,0.004661554199084901,0.004630557568730012,0.004600005117871058,0.004569888235818586,0.004540198481924543,0.004510927584646436,0.004482067440313266,0.004453610111630739,0.004425547825959468,0.004397872973396837,0.004370578104688974,0.004343655928998776,0.004317099311551432,0.004290901271177433,0.00426505497777167,0.0042395537496834924,0.004214391051053664,0.0041895604891099125,0.004165055811433178,0.004140870903204965,0.004116999784444006,0.004093436607241699,0.004070175653002469,0.004047211329695801,0.004024538169125418,0.004002150824220796,0.003980044066354409,0.003958212782689689,0.0039366519735618685,0.00391535674989481,0.0038943223306565408,0.003873544040354392,0.003853017306572708,0.003832737657553508,0.0038127007198215843,0.0037929022158546466,0.0037733379617995314,0.003754003865234138,0.00373489592297629,0.003716010218938977,0.0036973429220320654,0.0036788902841107386,0.003660648637969539,0.0036426143953827293,0.0036247840451898174,0.003607154151425964,0.0035897213514969814,0.0035724823543976237,0.003555433938973435,0.0035385729522247845,0.003521896307652687,0.0035054009836454876,0.003489084021906005,0.003472942525917692,0.0034569736594497824,0.0034411746451001694,0.003425542762875196,0.003410075348806013,0.0033947697935998097,0.0033796235413261757,0.0033646340881369925,0.003349798981019363,0.0033351158165810008,0.0033205822398665735,0.0033061959432052097,0.0032919546650876405,0.003277856189072558,0.0032638983427213776,0.003250078996560837,0.0032363960630722275,0.003222847495707242,0.0032094312879292577,0.0031961454722795363,0.0031829881194678244,0.0031699573374862518,0.003157051270746565,0.0031442680992395124,0.003131606037716097,0.0031190633348899106,0.0031066382726603267,0.003094329165355286,0.003082134358994055,0.003070052230568718,0.003058081187344123,0.003046219666175971,0.0030344661328460414,0.0030228190814146944,0.0030112770335897782,0.0029998385381115934,0.002988502170153458,0.0029772665307376714,0.0029661302461658655,0.0029550919674641257,0.0029441503698418633,0.0029333041521643444,0.002922552036438574,0.0029118927673117048,0.0029013251115823273,0.0028908478577237147,0.002880459815418933,0.0028701598151076218,0.0028599467075436365,0.00284981936336393,0.002839776672667852,0.0028298175446067908,0.002819940906983818,0.0028101457058632403,0.002800430905189364,0.0027907954864147435,0.0027812384481373425,0.0027717588057463802,0.0027623555910768617,0.0027530278520720985,0.0027437746524545765,0.00273459507140454,0.002725488203246198,0.0027164531571414845,0.002707489056790839,0.0026985950401412413,0.0026897702591010078,0.002681013879261277,0.002672325079623976,0.002663703052336248,0.0026551470024307774,0.002646656147572384,0.0026382297178103517,0.002629866955336413,0.0026215671142484436,0.00261332946031929,0.0026051532707711276,0.0025970378340548013,0.002588982449634197,0.002580986427775486,0.0025730490893411573,0.0025651697655885257,0.002557347797972926,0.002549582537955187,0.0025418733468134088,0.00253421959545899,0.002526620664256531,0.0025190759428479047,0.002511584829980082,0.002504146733336741,0.002496761069373646,0.0024894272631573863,0.002482144748207849,0.0024749129663439763,0.0024677313675328725,0.002460599409742125,0.0024535165587954025,0.0024464822882309303,0.002439496079163172,0.0024325574201473693,0.002425665807046916,0.0024188207429036573,0.002412021737810693,0.002405268308788073,0.0023985599796609654,0.0023918962809403926,0.002385276749706447,0.0023787009294939715,0.0023721683701804497,0.0023656786278763884,0.0023592312648178363,0.0023528258492611144,0.002346461955379785,0.002340139163163525,0.0023338570583192443,0.002327615232174077,0.002321413281580392,0.0023152508088227154,0.0023091274215264173,0.00230304273256835,0.0022969963599891773,0.0022909879269075,0.0022850170614356134,0.0022790833965970416,0.002273186570245518,0.0022673262249857085,0.002261502008095428,0.002255713571449336,0.002249960571444229,0.0022442426689255985,0.0022385595291157722,0.0022329108215433636,0.0022272962199740795,0.0022217154023428513,0.0022161680506873316,0.002210653851082483,0.002205172493576611,0.0021997236721284633,0.002194307084545575,0.0021889224324238136,0.0021835694210879035,0.002178247759533249,0.0021729571603687258,0.002167697339760545,0.002162468017377257,0.0021572689163355794,0.0021520997631474244,0.0021469602876677666,0.0021418502230435153,0.01834425460332089,0.018328035415784195,0.018279578224512753,0.018199477694629044,0.018088703831568582,0.0179485716638489,0.017780701340258276,0.017586970890364796,0.0173694641678427,0.017130416558457293,0.01687216090440473,0.016597075809114487,0.01630753808811954,0.01600588067307953,0.015694356805284145,0.015375110912038123,0.015050156173132895,0.014721358472783826,0.014390426201488081,0.01405890522039612,0.01372817821979262,0.013399467681259195,0.013073841676798946,0.012752221794310863,0.01243539255557198,0.012124473383176638,0.011824236186934957,0.011535351887049154,0.011257280266216205,0.010989509669313788,0.010731555581164723,0.010482959235467434,0.010243286263684395,0.010012125390207212,0.009789087178080141,0.009573802828004033,0.009365923032062625,0.009165116882642562,0.008971070836239554,0.008783487731282723,0.008602085858648013,0.008426598083228968,0.008256771014699042,0.008132419177086653,0.008057561896916293,0.007984274008346502,0.007912507448936717,0.00784187369181661,0.007771753698499829,0.007702185061459565,0.007633213831644803,0.00756488067990147,0.007497221278403159,0.007430266669026513,0.007364043616864532,0.007298574947592065,0.0072338798678300105,0.007169974268025593,0.007106871007670799,0.007044580182928321,0.006983109376938148,0.006922463893232261,0.006862646972806643,0.006803659995493014,0.006745502666329504,0.006688173187681188,0.006631668417875531,0.006575984017133263,0.006521114581570404,0.006467053766034943,0.0064137943965219026,0.0063613285728880385,0.006309647762555666,0.006258742885865063,0.0062086043937022925,0.006159222337991847,0.006110586435613539,0.006062686126264601,0.00601551062475625,0.005969048968200528,0.005923290058512911,0.005878222700622249,0.005833835636756643,0.005790117577140767,0.0057470572274174675,0.005704643313082794,0.005662864601197019,0.005621709919618994,0.005581168173985692,0.005541228362643957,0.005501879589723499,0.005463111076522921,0.005424912171369241,0.0053872723580944155,0.005350181263262056,0.005313628662265387,0.0052776044844074724,0.005242098817063223,0.005207101909017439,0.005172604173060858,0.005138596187921434,0.005105068699600812,0.005072012622177686,0.0050394190381377515,0.00500727919828078,0.0049755845212531725,0.004944326592748617,0.00491349716441674,0.004883088152513577,0.004853091636327904,0.004823499856411093,0.004794305212637091,0.004765500262116891,0.004737077716987397,0.0047090304420959,0.004681351452596121,0.004654033911472151,0.004627071127004395,0.004600456550189456,0.004574183772126305,0.004548246521378264,0.004522638661319806,0.004497354187476466,0.0044723872248652674,0.0044477320253410585,0.0044233829649556996,0.0043993345413342105,0.00437558137107228,0.004352118187159721,0.004328939836431665,0.004306041277052268,0.00428341757603188,0.004261063906780603,0.004238975546699688,0.004217147874812599,0.004195576369436148,0.004174256605893949,0.0041531842542718075,0.0041323550772162385,0.004111764927776562,0.004091409747290088,0.00407128556331158,0.004051388487586263,0.0040317147140663786,0.004012260516971372,0.003993022248890843,0.003973996338930573,0.0039551792909007415,0.003936567681545969,0.003918158158816592,0.0038999474401809507,0.0038819323109771813,0.0038641096228050663,0.0038464762919563082,0.0038290292978829963,0.003811765681703612,0.003794682544745261,0.003777777047122317,0.0037610464063500258,0.0037444878959925856,0.0037280988443449347,0.0037118766331477576,0.0036958186963342112,0.0036799225188086948,0.003664185635256089,0.003648605628981121,0.0036331801307772347,0.0036179068178236943,0.003602783412611029,0.003587807681893529,0.0035729774356683458,0.0035582905261806333,0.00354374484695362,0.0035293383318436506,0.003515068954119044,0.003500934725562333,0.0034869336955952986,0.0034730639504262843,0.0034593236122188176,0.003445710838281591,0.003432223820278765,0.0034188607834602035,0.0034056199859113616,0.0033924997178216127,0.0033794983007714684,0.003366614087037421,0.0033538454589142988,0.0033411908280547593,0.003328648634824914,0.003316217347676421,0.003303895462534062,0.0032916815021985265,0.003279574015764043,0.0032675715780505943,0.0032556727890498123,0.0032438762733848756,0.0032321806797835813,0.003220584680564307,0.003209086971134727,0.0031976862695025296,0.0031863813157983,0.003175170871809939,0.0031640537205283327,0.003153028665704064,0.0031420945314149353,0.0031312501616436316,0.003120494419865826,0.0031098261886480278,0.00309924436925499,0.003088747881266693,0.003078335662204114,0.003068006667164141,0.003057759868463019,0.0030475942552881867,0.0030375088333584152,0.003027502624591717,0.0030175746667812087,0.0030077240132784532,0.0029979497326842034,0.0029882509085462534,0.002978626639064421,0.002969076036802092,0.0029595982284046658,0.0029501923543242656,0.0029408575685508135,0.0029315930383493473,0.0029223979440030114,0.002913271478562179,0.0029042128475990987,0.0028952212689680778,0.0028862959725710537,0.002877436200128528,0.0028686412049553577,0.002859910251741822,0.002851242616339368,0.0028426375855511543,0.002834094456927319,0.002825612538564476,0.002817191148909926,0.002808829616569944,0.002800527280122304,0.002792283487932968,0.0027840975979765412,0.0027759689776608175,0.002767897003654988,0.0027598810617215476,0.0027519205465518478,0.0027440148616051864,0.002736163418951126,0.002728365639115428,0.0027206209509290508,0.0027129287913804155,0.002705288605470819,0.0026976998460727032,0.002690161973791099,0.002682674456827823,0.002675236770848542,0.0026678483988525617,0.0026605088310454037,0.002653217564713808,0.0026459741041034964,0.002638777960299337,0.0026316286511079666,0.0026245257009428714,0.0026174686407116356,0.002610457007705641,0.0026034903454918855,0.0025965682038070113,0.002589690138453518,0.0025828557111978695,0.00257606448967082,0.002569316047269623,0.0025626099630622038,0.00255594582169319,0.0025493232132918933,0.00254274173338191,0.0025362009827926673,0.0025297005675726206,0.0025232400989041188,0.002516819193020018,0.0025104374711217353,0.0025040945592990486,0.0024977900884513493,0.0024915236942104173,0.0024852950168647407,0.0024791037012851192,0.002472949396851841,0.0024668317573831536,0.0024607504410651244,0.002454705110382754,0.0024486954320525334,0.00244272107695604,0.002436781720074964,0.0024308770404272693,0.0024250067210045013,0.0024191704487103935,0.0024133679143003997,0.0024075988123225013,0.0024018628410590456,0.002396159702469646,0.02032784433105141,0.02030984207888358,0.0202560584074876,0.02016715536741691,0.020044212801201215,0.01988869448020329,0.019702403544804303,0.019487429767599793,0.019246091460926786,0.018980874917831927,0.01869437412748314,0.018389233181578042,0.01806809334016565,0.017733546210477444,0.017388093964880124,0.01703411702839539,0.01667384923501535,0.01630936010452678,0.015942543635031375,0.015575112838430967,0.015208599157475956,0.014844355880094404,0.014483564694710434,0.01412724459417268,0.013776264273980161,0.013434935303647597,0.0131063366223799,0.012789884724958728,0.012485024316738926,0.012191227262404273,0.011907991495501315,0.0116348399085781,0.011371319239642111,0.011116998967285088,0.010871470224010265,0.010634344735027858,0.010405253787920173,0.010183847237064619,0.009969792545463247,0.009762773865665235,0.009562491160663154,0.009368659365026934,0.009181007586052642,0.009022001003145999,0.008939671851576297,0.008859044626879094,0.008780068524373989,0.008702694566450208,0.008626875535810537,0.008552155150802042,0.008477942082058288,0.008404283918254563,0.008331228282199857,0.008258817432879931,0.008187088632708313,0.008116074503149311,0.00804580336692576,0.007976299575509002,0.007907583820993965,0.007839673431808592,0.007772582652000494,0.0077063229040780145,0.007640903035581732,0.007576329549715632,0.007512606820488217,0.007449737292910455,0.0073877216688604435,0.007326559079274023,0.007266247243350951,0.007206782615480799,0.007148160520594036,0.0070903752786442,0.0070334203189067555,0.006977288284766649,0.006921971129641257,0.006867460204657908,0.006813746338680726,0.006760819911247095,0.006708670918946228,0.00665728903574118,0.006606663667705439,0.0065567840026131375,0.006507639054797746,0.006459217705660907,0.0064115087401896646,0.00636450087981418,0.006318182811911523,0.006272543216242966,0.006227570788585695,0.006183254261802408,0.006139582424573555,0.006096544137996551,0.0060541283502439525,0.006012324109453832,0.005971120575012823,0.0059305070273788394,0.005890472876579317,0.005851007669506763,0.005812101096126935,0.0057737429947022035,0.005735923356124768,0.005698632327447535,0.005661860214689997,0.005625597484993744,0.005589834768191792,0.005554562857852829,0.005519772711855012,0.005485455452539897,0.005451602366490505,0.005418204903977291,0.00538525467810773,0.005352743463714823,0.005320663196015753,0.00528900596906775,0.005257764034048659,0.005226929797383995,0.005196495818742045,0.00516645480891654,0.005136799627612826,0.005107523281154634,0.005078618920124594,0.005050079836951179,0.005021899463453686,0.0049940713683557505,0.004966589254775432,0.004939446957701776,0.0049126384414638295,0.004886157797199238,0.00485999924032856,0.004834157108039382,0.00480862585678625,0.004783400059809535,0.004758474404676899,0.004733843690850747,0.004709502827284432,0.0046854468300486975,0.004661670819991757,0.004638170020433554,0.004614939754896121,0.004591975444871614,0.004569272607627708,0.004546826854052857,0.004524633886540743,0.004502689496914765,0.004480989564393256,0.004459530053594529,0.0044383070125831375,0.004417316570956398,0.0043965549379712966,0.004376018400711532,0.004355703322294792,0.004335606140118855,0.004315723364147544,0.004296051575234956,0.00427658742348791,0.004257327626666338,0.004238268968620195,0.004219408297763401,0.004200742525583427,0.004182268625186214,0.004163983629875641,0.004145884631767227,0.004127968780434669,0.004110233281589537,0.004092675395792646,0.004075292437196855,0.0040580817723206535,0.0040410408188512855,0.004024167044477691,0.0040074579657518134,0.0039909111469779756,0.003974524199129786,0.003958294778793324,0.003942220587136859,0.003926299368905823,0.003910528911442627,0.0038949070437307586,0.0038794316354626565,0.0038641005961302533,0.0038489118741384942,0.0038338634559404927,0.00381895336519409,0.0038041796619395435,0.0037895404417969615,0.0037750338351841355,0.0037606580065532775,0.003746411153646726,0.003732291506771011,0.0037182973280884862,0.0037044269109267045,0.0036906785791044694,0.0036770506862745336,0.00366354161528224,0.0036501497775400225,0.0036368736124167984,0.0036237115866425483,0.0036106621937271946,0.0035977239533935457,0.0035848954110241234,0.0035721751371210354,0.0035595617267791474,0.003547053799171801,0.003534649997048866,0.003522348986246792,0.0035101494552105357,0.003498050114526531,0.0034860496964670994,0.003474146954545511,0.0034623406630815688,0.0034506296167776214,0.0034390126303042133,0.003427488537895824,0.003416056192955902,0.003404714467671119,0.0033934622526348227,0.0033822984564788735,0.0033712220055143773,0.0033602318433805594,0.0033493269307017857,0.0033385062447524156,0.003327768779129516,0.0033171135434328044,0.003306539562952118,0.003296045878361921,0.0032856315454227137,0.003275295634689364,0.0032650372312257037,0.003254855434325892,0.0032447493572418415,0.003234718126916807,0.0032247608837248777,0.003214876781216417,0.003205064985868884,0.0031953246768434227,0.0031856550457467093,0.003176055296398048,0.0031665246446016797,0.0031570623179238357,0.0031476675554749146,0.003138339607696264,0.003129077736151585,0.003119881213322994,0.0031107493224112057,0.0031016813571402746,0.003092676621566409,0.0030837344298908858,0.0030748541062769336,0.0030660349846706276,0.003057276408625335,0.0030485777311301167,0.0030399383144416254,0.0030313575299195355,0.0030228347578655198,0.003014369387365382,0.003005960816134703,0.0029976084503675446,0.0029893117045883605,0.0029810700015068838,0.0029728827718761763,0.0029647494543532946,0.002956669495363103,0.0029486423489646827,0.0029406674767205195,0.0029327443475684074,0.0029248724376957458,0.0029170512304165907,0.002909280216051056,0.0029015588918071262,0.0028938867616649685,0.0028862633362632967,0.0028786881327882347,0.0028711606748642563,0.0028636804924473095,0.002856247121720029,0.0028488601049890794,0.0028415189905843454,0.0028342233327602606,0.002826972691598975,0.002819766632915379,0.0028126047281640887,0.0028054865543480087,0.0027984116939288625,0.002791379734739332,0.0027843902698968842,0.002777442897719327,0.002770537221641801,0.002763672850135493,0.0027568493966278365,0.0027500664794242236,0.002743323721631141,0.0027366207510808606,0.0027299572002573687,0.002723332706223837,0.0027167469105513326,0.002710199459248899,0.002703690002694969,0.0026972181955699,0.002690783696789885,0.0026843861694420303,0.002678025280720609