diff --git a/.devcontainer.json b/.devcontainer.json index 75877d8b..c8b423bb 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -4,8 +4,16 @@ "extensions": [ "bbenoist.Nix", "ms-python.python", - "batisteo.vscode-django" - ] + "batisteo.vscode-django", + "ms-python.black-formatter" + ], + "settings": { + "[python]": { + "editor": { + "defaultFormatter": "ms-python.black-formatter" + } + } + } } }, "image": "ghcr.io/cachix/devenv:latest", diff --git a/core/migrations/0030_weightpercentile_weightpercentile_unique_age_sex.py b/core/migrations/0030_weightpercentile_weightpercentile_unique_age_sex.py new file mode 100644 index 00000000..5477e244 --- /dev/null +++ b/core/migrations/0030_weightpercentile_weightpercentile_unique_age_sex.py @@ -0,0 +1,92 @@ +# Generated by Django 4.2.5 on 2023-09-20 10:56 + +from django.db import migrations, models, transaction +from django.utils import dateparse +import csv + + +def add_to_ORM(WeightPercentile: models.Model, alias, filepath: str, sex: str): + with open(filepath) as csvfile: + weight_reader = csv.DictReader(csvfile) + data_list = [] + for row in weight_reader: + data_list.append( + WeightPercentile( + age_in_days=dateparse.parse_duration(f'P{row["Age"]}D'), + sex=sex, + p3_weight=row["P3"], + p15_weight=row["P15"], + p50_weight=row["P50"], + p85_weight=row["P85"], + p97_weight=row["P97"], + ) + ) + WeightPercentile.objects.using(alias).bulk_create(data_list, batch_size=50) + + +def insert_weight_percentiles(apps, schema_editor): + WeightPercentile: models.Model = apps.get_model("core", "WeightPercentile") + db_alias = schema_editor.connection.alias + with transaction.atomic(): + add_to_ORM( + WeightPercentile, + db_alias, + "core/migrations/weight_percentile_boys.csv", + "boy", + ) + with transaction.atomic(): + add_to_ORM( + WeightPercentile, + db_alias, + "core/migrations/weight_percentile_girls.csv", + "girl", + ) + + +def remove_weight_percentiles(apps, schema_editor): + WeightPercentile: models.Model = apps.get_model("core", "WeightPercentile") + db_alias = schema_editor.connection.alias + with transaction.atomic(): + WeightPercentile.objects.using(db_alias).all().delete() + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0029_alter_pumping_options_remove_pumping_time_and_more"), + ] + + operations = [ + migrations.CreateModel( + name="WeightPercentile", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("age_in_days", models.DurationField()), + ("p3_weight", models.FloatField()), + ("p15_weight", models.FloatField()), + ("p50_weight", models.FloatField()), + ("p85_weight", models.FloatField()), + ("p97_weight", models.FloatField()), + ( + "sex", + models.CharField( + choices=[("girl", "Girl"), ("boy", "Boy")], max_length=255 + ), + ), + ], + ), + migrations.AddConstraint( + model_name="weightpercentile", + constraint=models.UniqueConstraint( + fields=("age_in_days", "sex"), name="unique_age_sex" + ), + ), + migrations.RunPython(insert_weight_percentiles, remove_weight_percentiles), + ] diff --git a/core/migrations/weight_percentile_boys.csv b/core/migrations/weight_percentile_boys.csv new file mode 100644 index 00000000..4df2bf40 --- /dev/null +++ b/core/migrations/weight_percentile_boys.csv @@ -0,0 +1,1858 @@ +Age,L,M,S,P01,P1,P3,P5,P10,P15,P25,P50,P75,P85,P90,P95,P97,P99,P999 +0,0.3487,3.3464,0.14602,2.048,2.331,2.507,2.604,2.758,2.865,3.027,3.346,3.687,3.878,4.011,4.215,4.35,4.613,5.088 +1,0.3127,3.3174,0.14693,2.033,2.311,2.485,2.58,2.732,2.838,3,3.317,3.657,3.85,3.983,4.188,4.324,4.59,5.072 +2,0.3029,3.337,0.14676,2.049,2.327,2.501,2.597,2.75,2.856,3.018,3.337,3.679,3.872,4.007,4.212,4.35,4.618,5.104 +3,0.2959,3.3627,0.14647,2.068,2.348,2.523,2.619,2.772,2.879,3.042,3.363,3.707,3.901,4.037,4.244,4.382,4.652,5.142 +4,0.2903,3.3915,0.14611,2.09,2.371,2.547,2.644,2.798,2.905,3.069,3.392,3.738,3.933,4.07,4.278,4.418,4.69,5.184 +5,0.2855,3.4223,0.14571,2.114,2.396,2.573,2.67,2.825,2.933,3.098,3.422,3.771,3.968,4.105,4.315,4.456,4.73,5.227 +6,0.2813,3.4545,0.14528,2.138,2.422,2.6,2.697,2.853,2.962,3.128,3.455,3.805,4.003,4.142,4.353,4.495,4.771,5.272 +7,0.2776,3.4879,0.14483,2.163,2.449,2.628,2.726,2.883,2.992,3.159,3.488,3.841,4.04,4.18,4.393,4.535,4.813,5.318 +8,0.2742,3.5222,0.14436,2.189,2.476,2.656,2.755,2.913,3.023,3.191,3.522,3.877,4.078,4.219,4.433,4.577,4.857,5.365 +9,0.2711,3.5576,0.14388,2.215,2.505,2.686,2.786,2.944,3.055,3.224,3.558,3.915,4.118,4.259,4.475,4.619,4.901,5.413 +10,0.2681,3.5941,0.14339,2.242,2.534,2.717,2.817,2.977,3.088,3.259,3.594,3.954,4.158,4.3,4.518,4.663,4.947,5.463 +11,0.2654,3.6319,0.1429,2.271,2.564,2.748,2.849,3.01,3.123,3.294,3.632,3.995,4.2,4.343,4.562,4.708,4.994,5.514 +12,0.2628,3.671,0.14241,2.3,2.596,2.781,2.883,3.045,3.158,3.331,3.671,4.036,4.243,4.387,4.608,4.755,5.044,5.567 +13,0.2604,3.7113,0.14192,2.33,2.628,2.814,2.917,3.08,3.194,3.368,3.711,4.079,4.288,4.433,4.655,4.804,5.094,5.622 +14,0.2581,3.7529,0.14142,2.36,2.661,2.849,2.952,3.117,3.232,3.407,3.753,4.124,4.334,4.48,4.704,4.854,5.146,5.678 +15,0.2558,3.7956,0.14093,2.392,2.695,2.885,2.989,3.155,3.271,3.447,3.796,4.169,4.381,4.529,4.754,4.905,5.2,5.736 +16,0.2537,3.8389,0.14044,2.424,2.73,2.921,3.026,3.193,3.31,3.488,3.839,4.216,4.429,4.578,4.805,4.957,5.254,5.794 +17,0.2517,3.8828,0.13996,2.456,2.764,2.957,3.063,3.232,3.349,3.529,3.883,4.262,4.477,4.627,4.857,5.01,5.309,5.854 +18,0.2497,3.927,0.13948,2.489,2.8,2.994,3.101,3.271,3.389,3.57,3.927,4.31,4.526,4.677,4.909,5.063,5.365,5.914 +19,0.2478,3.9714,0.139,2.522,2.835,3.031,3.139,3.31,3.43,3.612,3.971,4.357,4.575,4.728,4.961,5.116,5.42,5.973 +20,0.246,4.0158,0.13853,2.555,2.87,3.068,3.176,3.349,3.47,3.654,4.016,4.404,4.624,4.778,5.013,5.169,5.476,6.033 +21,0.2442,4.0603,0.13807,2.587,2.906,3.105,3.214,3.388,3.51,3.695,4.06,4.452,4.674,4.828,5.065,5.223,5.532,6.093 +22,0.2425,4.1046,0.13761,2.62,2.941,3.142,3.252,3.428,3.55,3.737,4.105,4.499,4.722,4.878,5.116,5.276,5.587,6.152 +23,0.2408,4.1489,0.13715,2.653,2.977,3.179,3.29,3.467,3.59,3.778,4.149,4.546,4.771,4.928,5.168,5.329,5.642,6.212 +24,0.2392,4.193,0.1367,2.686,3.012,3.216,3.328,3.506,3.63,3.82,4.193,4.593,4.82,4.978,5.22,5.381,5.697,6.27 +25,0.2376,4.2369,0.13626,2.719,3.047,3.252,3.365,3.545,3.67,3.861,4.237,4.64,4.868,5.028,5.271,5.434,5.751,6.329 +26,0.2361,4.2806,0.13582,2.751,3.082,3.289,3.403,3.584,3.71,3.902,4.281,4.687,4.916,5.077,5.322,5.486,5.806,6.387 +27,0.2346,4.324,0.13539,2.784,3.117,3.325,3.44,3.622,3.749,3.943,4.324,4.733,4.964,5.126,5.372,5.537,5.859,6.445 +28,0.2331,4.3671,0.13497,2.816,3.152,3.362,3.477,3.66,3.788,3.983,4.367,4.779,5.012,5.174,5.422,5.589,5.913,6.502 +29,0.2317,4.41,0.13455,2.848,3.187,3.398,3.514,3.698,3.827,4.024,4.41,4.824,5.059,5.222,5.472,5.639,5.966,6.559 +30,0.2303,4.4525,0.13413,2.88,3.221,3.433,3.55,3.736,3.866,4.063,4.453,4.87,5.105,5.27,5.522,5.69,6.018,6.615 +31,0.229,4.4946,0.13372,2.912,3.255,3.469,3.587,3.774,3.904,4.103,4.495,4.914,5.152,5.317,5.57,5.74,6.07,6.671 +32,0.2276,4.5363,0.13332,2.943,3.289,3.504,3.622,3.811,3.942,4.142,4.536,4.959,5.197,5.364,5.619,5.789,6.121,6.726 +33,0.2263,4.5776,0.13292,2.974,3.322,3.539,3.658,3.848,3.98,4.181,4.578,5.002,5.243,5.41,5.667,5.838,6.172,6.78 +34,0.225,4.6185,0.13253,3.005,3.355,3.574,3.693,3.884,4.017,4.22,4.619,5.046,5.288,5.456,5.714,5.886,6.222,6.833 +35,0.2237,4.659,0.13215,3.036,3.388,3.608,3.728,3.92,4.054,4.258,4.659,5.089,5.332,5.502,5.761,5.934,6.272,6.887 +36,0.2225,4.699,0.13177,3.066,3.421,3.642,3.763,3.956,4.09,4.296,4.699,5.131,5.376,5.546,5.807,5.981,6.321,6.939 +37,0.2213,4.7386,0.13139,3.097,3.453,3.675,3.797,3.991,4.127,4.333,4.739,5.173,5.419,5.59,5.852,6.028,6.369,6.99 +38,0.2201,4.7778,0.13102,3.126,3.485,3.708,3.831,4.026,4.163,4.37,4.778,5.215,5.462,5.634,5.898,6.074,6.417,7.042 +39,0.2189,4.8166,0.13066,3.156,3.517,3.741,3.865,4.061,4.198,4.406,4.817,5.256,5.504,5.678,5.942,6.119,6.465,7.092 +40,0.2178,4.8549,0.1303,3.185,3.548,3.774,3.898,4.096,4.233,4.443,4.855,5.296,5.546,5.72,5.986,6.164,6.511,7.142 +41,0.2166,4.8928,0.12994,3.215,3.579,3.806,3.931,4.13,4.268,4.478,4.893,5.337,5.587,5.762,6.03,6.208,6.557,7.191 +42,0.2155,4.9303,0.1296,3.243,3.61,3.838,3.964,4.163,4.302,4.514,4.93,5.376,5.628,5.804,6.073,6.252,6.603,7.239 +43,0.2144,4.9674,0.12925,3.272,3.64,3.87,3.996,4.196,4.336,4.549,4.967,5.416,5.669,5.845,6.115,6.296,6.648,7.287 +44,0.2133,5.0041,0.12891,3.3,3.671,3.901,4.028,4.229,4.37,4.584,5.004,5.454,5.709,5.886,6.157,6.339,6.692,7.335 +45,0.2122,5.0404,0.12858,3.328,3.7,3.932,4.06,4.262,4.403,4.618,5.04,5.493,5.748,5.927,6.199,6.381,6.736,7.381 +46,0.2112,5.0763,0.12825,3.356,3.73,3.963,4.091,4.294,4.436,4.652,5.076,5.531,5.787,5.966,6.24,6.423,6.78,7.427 +47,0.2101,5.1118,0.12792,3.383,3.759,3.993,4.122,4.326,4.469,4.686,5.112,5.568,5.826,6.006,6.28,6.464,6.822,7.473 +48,0.2091,5.1469,0.1276,3.411,3.788,4.024,4.153,4.358,4.501,4.719,5.147,5.605,5.864,6.045,6.321,6.505,6.865,7.518 +49,0.2081,5.1817,0.12729,3.437,3.817,4.053,4.183,4.389,4.533,4.752,5.182,5.642,5.902,6.083,6.36,6.545,6.907,7.563 +50,0.2071,5.2161,0.12698,3.464,3.846,4.083,4.213,4.42,4.565,4.784,5.216,5.678,5.939,6.121,6.4,6.585,6.948,7.607 +51,0.2061,5.2501,0.12667,3.491,3.874,4.112,4.243,4.451,4.596,4.817,5.25,5.714,5.976,6.159,6.438,6.625,6.989,7.65 +52,0.2052,5.2837,0.12637,3.517,3.902,4.141,4.273,4.481,4.627,4.848,5.284,5.75,6.013,6.196,6.476,6.664,7.029,7.693 +53,0.2042,5.3171,0.12607,3.543,3.929,4.17,4.302,4.512,4.658,4.88,5.317,5.785,6.049,6.233,6.514,6.702,7.069,7.735 +54,0.2032,5.35,0.12577,3.569,3.957,4.198,4.331,4.541,4.688,4.911,5.35,5.819,6.085,6.269,6.552,6.741,7.109,7.777 +55,0.2023,5.3826,0.12548,3.594,3.984,4.226,4.359,4.571,4.718,4.942,5.383,5.854,6.12,6.305,6.589,6.778,7.148,7.818 +56,0.2014,5.4149,0.1252,3.62,4.011,4.254,4.388,4.6,4.748,4.973,5.415,5.888,6.155,6.341,6.626,6.816,7.186,7.859 +57,0.2005,5.4468,0.12491,3.645,4.038,4.282,4.416,4.629,4.777,5.003,5.447,5.921,6.189,6.376,6.662,6.852,7.224,7.9 +58,0.1996,5.4784,0.12463,3.67,4.064,4.309,4.444,4.658,4.806,5.033,5.478,5.955,6.224,6.411,6.697,6.889,7.262,7.94 +59,0.1987,5.5097,0.12436,3.694,4.09,4.336,4.471,4.686,4.835,5.063,5.51,5.988,6.257,6.446,6.733,6.925,7.299,7.979 +60,0.1978,5.5407,0.12409,3.719,4.116,4.363,4.499,4.714,4.864,5.092,5.541,6.02,6.291,6.48,6.768,6.961,7.336,8.018 +61,0.1969,5.5714,0.12382,3.743,4.142,4.39,4.526,4.742,4.892,5.121,5.571,6.053,6.324,6.514,6.803,6.996,7.373,8.057 +62,0.196,5.6018,0.12356,3.767,4.167,4.416,4.553,4.769,4.92,5.15,5.602,6.085,6.357,6.547,6.837,7.031,7.409,8.095 +63,0.1952,5.6319,0.1233,3.791,4.192,4.442,4.579,4.797,4.948,5.179,5.632,6.116,6.39,6.58,6.871,7.066,7.445,8.133 +64,0.1943,5.6617,0.12304,3.814,4.217,4.468,4.606,4.824,4.976,5.207,5.662,6.148,6.422,6.613,6.905,7.1,7.48,8.171 +65,0.1935,5.6912,0.12279,3.837,4.242,4.494,4.632,4.851,5.003,5.235,5.691,6.179,6.454,6.645,6.938,7.134,7.515,8.208 +66,0.1926,5.7205,0.12254,3.861,4.267,4.519,4.658,4.877,5.03,5.263,5.721,6.209,6.485,6.678,6.971,7.168,7.55,8.245 +67,0.1918,5.7494,0.12229,3.884,4.291,4.544,4.683,4.904,5.057,5.291,5.749,6.24,6.516,6.709,7.004,7.201,7.584,8.281 +68,0.191,5.7781,0.12205,3.906,4.315,4.569,4.709,4.93,5.084,5.318,5.778,6.27,6.547,6.741,7.036,7.234,7.618,8.317 +69,0.1902,5.8065,0.12181,3.929,4.339,4.594,4.734,4.956,5.11,5.345,5.807,6.3,6.578,6.772,7.068,7.266,7.652,8.352 +70,0.1894,5.8346,0.12157,3.951,4.363,4.618,4.759,4.981,5.136,5.372,5.835,6.329,6.608,6.803,7.1,7.298,7.685,8.387 +71,0.1886,5.8625,0.12134,3.974,4.386,4.643,4.783,5.007,5.162,5.398,5.863,6.359,6.638,6.834,7.131,7.33,7.718,8.422 +72,0.1878,5.8901,0.12111,3.996,4.41,4.667,4.808,5.032,5.187,5.425,5.89,6.387,6.668,6.864,7.162,7.362,7.751,8.457 +73,0.187,5.9174,0.12088,4.018,4.433,4.691,4.832,5.057,5.213,5.451,5.917,6.416,6.698,6.894,7.193,7.393,7.783,8.491 +74,0.1863,5.9445,0.12066,4.039,4.456,4.714,4.856,5.081,5.238,5.476,5.945,6.445,6.727,6.923,7.224,7.424,7.815,8.525 +75,0.1855,5.9713,0.12044,4.06,4.478,4.738,4.88,5.106,5.263,5.502,5.971,6.473,6.756,6.953,7.254,7.455,7.847,8.558 +76,0.1847,5.9979,0.12022,4.082,4.501,4.761,4.904,5.13,5.288,5.527,5.998,6.501,6.784,6.982,7.284,7.485,7.878,8.591 +77,0.184,6.0242,0.12001,4.103,4.523,4.784,4.927,5.154,5.312,5.552,6.024,6.528,6.813,7.011,7.313,7.515,7.909,8.624 +78,0.1832,6.0503,0.1198,4.124,4.545,4.807,4.95,5.178,5.336,5.577,6.05,6.556,6.841,7.039,7.343,7.545,7.94,8.656 +79,0.1825,6.0762,0.11959,4.144,4.567,4.829,4.973,5.201,5.36,5.602,6.076,6.583,6.868,7.068,7.372,7.575,7.971,8.689 +80,0.1818,6.1018,0.11939,4.165,4.589,4.852,4.996,5.225,5.384,5.626,6.102,6.61,6.896,7.096,7.4,7.604,8.001,8.721 +81,0.181,6.1272,0.11918,4.185,4.61,4.874,5.019,5.248,5.408,5.651,6.127,6.636,6.923,7.124,7.429,7.633,8.031,8.752 +82,0.1803,6.1523,0.11899,4.205,4.631,4.896,5.041,5.271,5.431,5.674,6.152,6.663,6.95,7.151,7.457,7.662,8.06,8.783 +83,0.1796,6.1772,0.11879,4.225,4.653,4.918,5.063,5.294,5.454,5.698,6.177,6.689,6.977,7.178,7.485,7.69,8.09,8.814 +84,0.1789,6.2019,0.1186,4.245,4.674,4.939,5.085,5.316,5.477,5.722,6.202,6.715,7.004,7.205,7.513,7.718,8.119,8.845 +85,0.1782,6.2264,0.11841,4.265,4.694,4.961,5.107,5.339,5.5,5.745,6.226,6.74,7.03,7.232,7.54,7.746,8.148,8.875 +86,0.1775,6.2507,0.11822,4.284,4.715,4.982,5.128,5.361,5.522,5.768,6.251,6.766,7.056,7.259,7.568,7.774,8.176,8.905 +87,0.1768,6.2748,0.11803,4.304,4.735,5.003,5.15,5.383,5.545,5.791,6.275,6.791,7.082,7.285,7.595,7.801,8.204,8.935 +88,0.1761,6.2986,0.11785,4.323,4.756,5.024,5.171,5.405,5.567,5.814,6.299,6.816,7.108,7.311,7.621,7.828,8.232,8.965 +89,0.1754,6.3223,0.11767,4.342,4.776,5.045,5.192,5.426,5.589,5.837,6.322,6.841,7.133,7.337,7.648,7.855,8.26,8.994 +90,0.1747,6.3457,0.1175,4.361,4.796,5.065,5.213,5.448,5.611,5.859,6.346,6.865,7.158,7.363,7.674,7.882,8.288,9.023 +91,0.174,6.369,0.11732,4.38,4.815,5.086,5.234,5.469,5.632,5.881,6.369,6.89,7.183,7.388,7.7,7.909,8.315,9.052 +92,0.1734,6.3921,0.11715,4.398,4.835,5.106,5.254,5.49,5.654,5.903,6.392,6.914,7.208,7.413,7.726,7.935,8.342,9.081 +93,0.1727,6.4149,0.11698,4.417,4.854,5.126,5.275,5.511,5.675,5.925,6.415,6.938,7.233,7.438,7.752,7.961,8.369,9.109 +94,0.172,6.4376,0.11682,4.435,4.874,5.146,5.295,5.532,5.696,5.947,6.438,6.962,7.257,7.463,7.777,7.987,8.396,9.138 +95,0.1714,6.4601,0.11666,4.453,4.893,5.165,5.315,5.552,5.717,5.968,6.46,6.985,7.281,7.488,7.803,8.013,8.423,9.166 +96,0.1707,6.4824,0.11649,4.471,4.912,5.185,5.335,5.573,5.738,5.989,6.482,7.009,7.305,7.512,7.827,8.038,8.449,9.193 +97,0.1701,6.5046,0.11634,4.489,4.93,5.204,5.355,5.593,5.759,6.011,6.505,7.032,7.329,7.536,7.852,8.063,8.475,9.221 +98,0.1694,6.5265,0.11618,4.506,4.949,5.224,5.374,5.613,5.779,6.031,6.527,7.055,7.353,7.56,7.877,8.088,8.501,9.248 +99,0.1688,6.5483,0.11603,4.524,4.968,5.243,5.394,5.633,5.799,6.052,6.548,7.078,7.376,7.584,7.901,8.113,8.526,9.275 +100,0.1682,6.5699,0.11588,4.541,4.986,5.262,5.413,5.653,5.819,6.073,6.57,7.1,7.399,7.608,7.926,8.138,8.552,9.302 +101,0.1675,6.5914,0.11573,4.558,5.004,5.281,5.432,5.672,5.839,6.093,6.591,7.123,7.423,7.631,7.95,8.163,8.577,9.329 +102,0.1669,6.6126,0.11558,4.576,5.022,5.299,5.451,5.692,5.859,6.114,6.613,7.145,7.445,7.655,7.974,8.187,8.602,9.355 +103,0.1663,6.6338,0.11544,4.592,5.04,5.318,5.47,5.711,5.879,6.134,6.634,7.167,7.468,7.678,7.997,8.211,8.627,9.381 +104,0.1657,6.6547,0.1153,4.609,5.058,5.336,5.488,5.73,5.898,6.154,6.655,7.189,7.491,7.701,8.021,8.235,8.652,9.407 +105,0.1651,6.6755,0.11516,4.626,5.076,5.354,5.507,5.749,5.917,6.174,6.676,7.211,7.513,7.723,8.044,8.259,8.676,9.433 +106,0.1644,6.6962,0.11502,4.643,5.093,5.372,5.525,5.768,5.937,6.193,6.696,7.233,7.535,7.746,8.068,8.282,8.701,9.459 +107,0.1638,6.7166,0.11489,4.659,5.11,5.39,5.543,5.787,5.956,6.213,6.717,7.254,7.557,7.768,8.091,8.306,8.725,9.485 +108,0.1632,6.737,0.11476,4.675,5.128,5.408,5.562,5.805,5.975,6.232,6.737,7.276,7.579,7.791,8.113,8.329,8.749,9.51 +109,0.1626,6.7572,0.11463,4.692,5.145,5.426,5.58,5.824,5.993,6.251,6.757,7.297,7.601,7.813,8.136,8.352,8.773,9.535 +110,0.162,6.7772,0.1145,4.708,5.162,5.443,5.597,5.842,6.012,6.27,6.777,7.318,7.623,7.835,8.159,8.375,8.796,9.56 +111,0.1614,6.7971,0.11438,4.724,5.179,5.461,5.615,5.86,6.03,6.289,6.797,7.339,7.644,7.857,8.181,8.398,8.82,9.585 +112,0.1609,6.8168,0.11425,4.739,5.195,5.478,5.633,5.878,6.049,6.308,6.817,7.359,7.665,7.878,8.203,8.42,8.843,9.61 +113,0.1603,6.8365,0.11413,4.755,5.212,5.495,5.65,5.896,6.067,6.327,6.837,7.38,7.686,7.9,8.225,8.443,8.867,9.635 +114,0.1597,6.8559,0.11401,4.771,5.228,5.512,5.667,5.914,6.085,6.345,6.856,7.4,7.707,7.921,8.247,8.465,8.89,9.659 +115,0.1591,6.8753,0.1139,4.786,5.245,5.529,5.684,5.931,6.103,6.364,6.875,7.421,7.728,7.943,8.269,8.487,8.913,9.683 +116,0.1585,6.8945,0.11378,4.802,5.261,5.546,5.702,5.949,6.121,6.382,6.895,7.441,7.749,7.964,8.291,8.509,8.935,9.707 +117,0.158,6.9135,0.11367,4.817,5.277,5.562,5.718,5.966,6.138,6.4,6.914,7.461,7.769,7.984,8.312,8.531,8.958,9.731 +118,0.1574,6.9325,0.11356,4.832,5.293,5.579,5.735,5.983,6.156,6.418,6.933,7.481,7.79,8.005,8.334,8.553,8.981,9.755 +119,0.1568,6.9513,0.11345,4.847,5.309,5.595,5.752,6.001,6.173,6.436,6.951,7.501,7.81,8.026,8.355,8.575,9.003,9.779 +120,0.1563,6.9699,0.11334,4.862,5.325,5.611,5.768,6.018,6.191,6.454,6.97,7.52,7.83,8.046,8.376,8.596,9.025,9.802 +121,0.1557,6.9885,0.11324,4.877,5.34,5.628,5.785,6.034,6.208,6.472,6.989,7.54,7.85,8.067,8.397,8.617,9.047,9.826 +122,0.1551,7.0069,0.11313,4.891,5.356,5.644,5.801,6.051,6.225,6.489,7.007,7.559,7.87,8.087,8.418,8.639,9.069,9.849 +123,0.1546,7.0252,0.11303,4.906,5.371,5.66,5.817,6.068,6.242,6.507,7.025,7.578,7.89,8.107,8.438,8.66,9.091,9.872 +124,0.154,7.0434,0.11293,4.92,5.387,5.675,5.834,6.084,6.259,6.524,7.043,7.597,7.91,8.127,8.459,8.681,9.112,9.895 +125,0.1535,7.0615,0.11283,4.935,5.402,5.691,5.85,6.101,6.276,6.541,7.062,7.617,7.929,8.147,8.48,8.701,9.134,9.918 +126,0.1529,7.0794,0.11274,4.949,5.417,5.707,5.865,6.117,6.292,6.558,7.079,7.635,7.949,8.167,8.5,8.722,9.155,9.941 +127,0.1524,7.0972,0.11265,4.963,5.432,5.722,5.881,6.133,6.308,6.575,7.097,7.654,7.968,8.187,8.52,8.743,9.177,9.963 +128,0.1519,7.1149,0.11255,4.977,5.447,5.738,5.897,6.149,6.325,6.592,7.115,7.673,7.987,8.206,8.54,8.763,9.198,9.985 +129,0.1513,7.1325,0.11246,4.991,5.461,5.753,5.912,6.165,6.341,6.609,7.133,7.691,8.006,8.225,8.56,8.783,9.219,10.008 +130,0.1508,7.15,0.11237,5.005,5.476,5.768,5.928,6.181,6.357,6.625,7.15,7.71,8.025,8.245,8.58,8.804,9.24,10.03 +131,0.1502,7.1674,0.11229,5.019,5.491,5.783,5.943,6.197,6.373,6.642,7.167,7.728,8.044,8.264,8.6,8.824,9.261,10.052 +132,0.1497,7.1846,0.1122,5.032,5.505,5.798,5.958,6.213,6.389,6.658,7.185,7.746,8.063,8.283,8.619,8.844,9.281,10.074 +133,0.1492,7.2018,0.11212,5.046,5.52,5.813,5.973,6.228,6.405,6.674,7.202,7.764,8.081,8.302,8.639,8.864,9.302,10.096 +134,0.1487,7.2188,0.11204,5.059,5.534,5.828,5.988,6.244,6.421,6.691,7.219,7.782,8.1,8.321,8.658,8.883,9.322,10.118 +135,0.1481,7.2357,0.11196,5.073,5.548,5.842,6.003,6.259,6.436,6.707,7.236,7.8,8.118,8.34,8.677,8.903,9.343,10.139 +136,0.1476,7.2525,0.11188,5.086,5.562,5.857,6.018,6.274,6.452,6.723,7.253,7.818,8.136,8.358,8.696,8.922,9.363,10.161 +137,0.1471,7.2692,0.1118,5.099,5.576,5.871,6.033,6.289,6.467,6.738,7.269,7.835,8.154,8.377,8.715,8.942,9.383,10.182 +138,0.1466,7.2858,0.11172,5.112,5.59,5.886,6.047,6.304,6.483,6.754,7.286,7.853,8.172,8.395,8.734,8.961,9.403,10.203 +139,0.1461,7.3023,0.11165,5.125,5.604,5.9,6.062,6.319,6.498,6.77,7.302,7.87,8.19,8.413,8.753,8.98,9.423,10.225 +140,0.1456,7.3187,0.11158,5.138,5.617,5.914,6.076,6.334,6.513,6.785,7.319,7.888,8.208,8.431,8.772,8.999,9.443,10.246 +141,0.1451,7.335,0.1115,5.151,5.631,5.928,6.091,6.349,6.528,6.801,7.335,7.905,8.226,8.449,8.79,9.018,9.462,10.266 +142,0.1446,7.3512,0.11143,5.164,5.644,5.942,6.105,6.363,6.543,6.816,7.351,7.922,8.243,8.467,8.809,9.037,9.482,10.287 +143,0.1441,7.3673,0.11137,5.176,5.658,5.956,6.119,6.378,6.558,6.831,7.367,7.939,8.261,8.485,8.827,9.056,9.501,10.308 +144,0.1436,7.3833,0.1113,5.189,5.671,5.97,6.133,6.392,6.573,6.847,7.383,7.956,8.278,8.503,8.846,9.075,9.52,10.329 +145,0.1431,7.3992,0.11123,5.201,5.684,5.983,6.147,6.407,6.587,6.862,7.399,7.972,8.296,8.521,8.864,9.093,9.54,10.349 +146,0.1426,7.415,0.11117,5.214,5.697,5.997,6.161,6.421,6.602,6.877,7.415,7.989,8.313,8.538,8.882,9.111,9.559,10.37 +147,0.1421,7.4307,0.11111,5.226,5.71,6.01,6.175,6.435,6.616,6.891,7.431,8.006,8.33,8.556,8.9,9.13,9.578,10.39 +148,0.1416,7.4463,0.11104,5.238,5.723,6.024,6.188,6.449,6.631,6.906,7.446,8.022,8.347,8.573,8.918,9.148,9.597,10.41 +149,0.1411,7.4618,0.11098,5.25,5.736,6.037,6.202,6.463,6.645,6.921,7.462,8.039,8.364,8.59,8.935,9.166,9.616,10.43 +150,0.1406,7.4772,0.11092,5.262,5.749,6.05,6.215,6.477,6.659,6.935,7.477,8.055,8.38,8.607,8.953,9.184,9.634,10.45 +151,0.1401,7.4925,0.11087,5.274,5.762,6.063,6.229,6.491,6.673,6.95,7.493,8.071,8.397,8.624,8.971,9.202,9.653,10.47 +152,0.1396,7.5077,0.11081,5.286,5.774,6.076,6.242,6.504,6.687,6.964,7.508,8.087,8.414,8.641,8.988,9.22,9.671,10.49 +153,0.1391,7.5228,0.11075,5.298,5.787,6.089,6.255,6.518,6.701,6.979,7.523,8.103,8.43,8.658,9.006,9.238,9.69,10.51 +154,0.1387,7.5379,0.1107,5.309,5.799,6.102,6.268,6.532,6.715,6.993,7.538,8.119,8.447,8.675,9.023,9.255,9.708,10.529 +155,0.1382,7.5528,0.11065,5.321,5.811,6.115,6.281,6.545,6.728,7.007,7.553,8.135,8.463,8.692,9.04,9.273,9.727,10.549 +156,0.1377,7.5677,0.11059,5.333,5.824,6.128,6.294,6.558,6.742,7.021,7.568,8.151,8.479,8.708,9.057,9.29,9.745,10.568 +157,0.1372,7.5824,0.11054,5.344,5.836,6.14,6.307,6.572,6.755,7.035,7.582,8.166,8.495,8.724,9.074,9.308,9.763,10.587 +158,0.1368,7.5971,0.11049,5.355,5.848,6.153,6.32,6.585,6.769,7.049,7.597,8.182,8.511,8.741,9.091,9.325,9.78,10.607 +159,0.1363,7.6117,0.11044,5.367,5.86,6.166,6.333,6.598,6.782,7.063,7.612,8.197,8.527,8.757,9.108,9.342,9.798,10.626 +160,0.1358,7.6262,0.1104,5.378,5.872,6.178,6.345,6.611,6.796,7.076,7.626,8.213,8.543,8.773,9.125,9.359,9.816,10.645 +161,0.1354,7.6406,0.11035,5.389,5.884,6.19,6.358,6.624,6.809,7.09,7.641,8.228,8.559,8.79,9.141,9.376,9.834,10.664 +162,0.1349,7.655,0.11031,5.4,5.896,6.202,6.37,6.637,6.822,7.103,7.655,8.243,8.575,8.806,9.158,9.393,9.852,10.683 +163,0.1344,7.6692,0.11026,5.411,5.907,6.215,6.383,6.65,6.835,7.117,7.669,8.258,8.59,8.821,9.174,9.41,9.869,10.701 +164,0.134,7.6834,0.11022,5.422,5.919,6.227,6.395,6.662,6.848,7.13,7.683,8.273,8.606,8.837,9.191,9.427,9.886,10.72 +165,0.1335,7.6975,0.11018,5.433,5.93,6.239,6.407,6.675,6.861,7.144,7.698,8.288,8.621,8.853,9.207,9.443,9.904,10.739 +166,0.1331,7.7115,0.11013,5.444,5.942,6.251,6.42,6.687,6.874,7.157,7.712,8.303,8.636,8.869,9.223,9.46,9.921,10.757 +167,0.1326,7.7255,0.11009,5.454,5.953,6.262,6.432,6.7,6.886,7.17,7.726,8.318,8.652,8.885,9.239,9.476,9.938,10.776 +168,0.1322,7.7394,0.11005,5.465,5.965,6.274,6.444,6.712,6.899,7.183,7.739,8.333,8.667,8.9,9.255,9.493,9.955,10.794 +169,0.1317,7.7532,0.11002,5.475,5.976,6.286,6.456,6.725,6.912,7.196,7.753,8.347,8.682,8.916,9.272,9.509,9.973,10.812 +170,0.1313,7.7669,0.10998,5.486,5.987,6.298,6.467,6.737,6.924,7.209,7.767,8.362,8.697,8.931,9.287,9.525,9.989,10.831 +171,0.1308,7.7805,0.10994,5.496,5.998,6.309,6.479,6.749,6.937,7.222,7.781,8.376,8.712,8.946,9.303,9.541,10.006,10.849 +172,0.1304,7.7941,0.10991,5.507,6.009,6.321,6.491,6.761,6.949,7.235,7.794,8.391,8.727,8.962,9.319,9.558,10.023,10.867 +173,0.1299,7.8076,0.10987,5.517,6.02,6.332,6.503,6.773,6.961,7.247,7.808,8.405,8.742,8.977,9.335,9.574,10.04,10.885 +174,0.1295,7.821,0.10984,5.527,6.031,6.343,6.514,6.785,6.974,7.26,7.821,8.419,8.757,8.992,9.35,9.59,10.056,10.903 +175,0.129,7.8344,0.1098,5.538,6.042,6.355,6.526,6.797,6.986,7.273,7.834,8.434,8.771,9.007,9.366,9.605,10.073,10.92 +176,0.1286,7.8477,0.10977,5.548,6.053,6.366,6.537,6.809,6.998,7.285,7.848,8.448,8.786,9.022,9.381,9.621,10.089,10.938 +177,0.1282,7.8609,0.10974,5.558,6.064,6.377,6.549,6.821,7.01,7.297,7.861,8.462,8.801,9.037,9.397,9.637,10.106,10.956 +178,0.1277,7.8741,0.10971,5.568,6.075,6.388,6.56,6.833,7.022,7.31,7.874,8.476,8.815,9.052,9.412,9.653,10.122,10.973 +179,0.1273,7.8871,0.10968,5.578,6.085,6.399,6.571,6.844,7.034,7.322,7.887,8.49,8.829,9.066,9.427,9.668,10.138,10.991 +180,0.1269,7.9002,0.10965,5.588,6.096,6.41,6.583,6.856,7.046,7.334,7.9,8.504,8.844,9.081,9.442,9.684,10.155,11.008 +181,0.1264,7.9131,0.10962,5.597,6.106,6.421,6.594,6.867,7.057,7.347,7.913,8.517,8.858,9.095,9.457,9.699,10.171,11.026 +182,0.126,7.926,0.10959,5.607,6.117,6.432,6.605,6.879,7.069,7.359,7.926,8.531,8.872,9.11,9.472,9.715,10.187,11.043 +183,0.1256,7.9389,0.10957,5.617,6.127,6.443,6.616,6.89,7.081,7.371,7.939,8.545,8.887,9.125,9.488,9.73,10.203,11.06 +184,0.1251,7.9516,0.10954,5.627,6.137,6.454,6.627,6.902,7.092,7.383,7.952,8.558,8.9,9.139,9.502,9.745,10.219,11.077 +185,0.1247,7.9643,0.10951,5.636,6.148,6.464,6.638,6.913,7.104,7.395,7.964,8.572,8.914,9.153,9.517,9.76,10.235,11.094 +186,0.1243,7.977,0.10949,5.646,6.158,6.475,6.649,6.924,7.115,7.407,7.977,8.586,8.929,9.168,9.532,9.776,10.25,11.112 +187,0.1239,7.9895,0.10946,5.655,6.168,6.486,6.659,6.935,7.127,7.418,7.99,8.599,8.942,9.182,9.547,9.791,10.266,11.128 +188,0.1235,8.0021,0.10944,5.665,6.178,6.496,6.67,6.946,7.138,7.43,8.002,8.612,8.956,9.196,9.562,9.806,10.282,11.145 +189,0.123,8.0145,0.10942,5.674,6.188,6.507,6.681,6.957,7.15,7.442,8.015,8.625,8.97,9.21,9.576,9.821,10.297,11.162 +190,0.1226,8.0269,0.1094,5.683,6.198,6.517,6.691,6.968,7.161,7.453,8.027,8.639,8.984,9.224,9.591,9.836,10.313,11.179 +191,0.1222,8.0392,0.10937,5.693,6.208,6.527,6.702,6.979,7.172,7.465,8.039,8.652,8.997,9.238,9.605,9.85,10.328,11.196 +192,0.1218,8.0515,0.10935,5.702,6.218,6.538,6.713,6.99,7.183,7.477,8.052,8.665,9.011,9.252,9.619,9.865,10.344,11.212 +193,0.1214,8.0637,0.10933,5.711,6.228,6.548,6.723,7.001,7.194,7.488,8.064,8.678,9.024,9.266,9.634,9.88,10.359,11.229 +194,0.121,8.0759,0.10931,5.72,6.238,6.558,6.734,7.012,7.205,7.499,8.076,8.691,9.038,9.279,9.648,9.894,10.374,11.245 +195,0.1206,8.0879,0.10929,5.729,6.247,6.568,6.744,7.022,7.216,7.511,8.088,8.704,9.051,9.293,9.662,9.909,10.39,11.262 +196,0.1201,8.1,0.10927,5.738,6.257,6.578,6.754,7.033,7.227,7.522,8.1,8.717,9.064,9.307,9.676,9.923,10.405,11.278 +197,0.1197,8.112,0.10925,5.747,6.267,6.588,6.764,7.044,7.238,7.533,8.112,8.73,9.078,9.32,9.69,9.938,10.42,11.294 +198,0.1193,8.1239,0.10924,5.756,6.276,6.598,6.775,7.054,7.249,7.544,8.124,8.742,9.091,9.334,9.705,9.952,10.435,11.311 +199,0.1189,8.1357,0.10922,5.765,6.286,6.608,6.785,7.065,7.259,7.555,8.136,8.755,9.104,9.347,9.718,9.966,10.45,11.327 +200,0.1185,8.1475,0.1092,5.774,6.295,6.618,6.795,7.075,7.27,7.567,8.148,8.767,9.117,9.361,9.732,9.981,10.465,11.343 +201,0.1181,8.1593,0.10919,5.782,6.304,6.628,6.805,7.086,7.281,7.578,8.159,8.78,9.13,9.374,9.746,9.995,10.48,11.359 +202,0.1177,8.171,0.10917,5.791,6.314,6.638,6.815,7.096,7.291,7.589,8.171,8.793,9.143,9.387,9.76,10.009,10.494,11.375 +203,0.1173,8.1826,0.10915,5.8,6.323,6.647,6.825,7.106,7.302,7.599,8.183,8.805,9.156,9.4,9.774,10.023,10.509,11.391 +204,0.1169,8.1942,0.10914,5.809,6.332,6.657,6.835,7.116,7.312,7.61,8.194,8.817,9.169,9.414,9.787,10.037,10.524,11.407 +205,0.1165,8.2058,0.10913,5.817,6.342,6.667,6.844,7.127,7.323,7.621,8.206,8.83,9.182,9.427,9.801,10.051,10.538,11.423 +206,0.1161,8.2173,0.10911,5.826,6.351,6.676,6.854,7.137,7.333,7.632,8.217,8.842,9.194,9.44,9.815,10.065,10.553,11.438 +207,0.1157,8.2287,0.1091,5.834,6.36,6.686,6.864,7.147,7.343,7.643,8.229,8.854,9.207,9.453,9.828,10.079,10.567,11.454 +208,0.1153,8.2401,0.10908,5.843,6.369,6.695,6.874,7.157,7.354,7.653,8.24,8.866,9.22,9.466,9.841,10.092,10.582,11.47 +209,0.1149,8.2514,0.10907,5.851,6.378,6.705,6.883,7.167,7.364,7.664,8.251,8.879,9.232,9.479,9.855,10.106,10.596,11.485 +210,0.1145,8.2627,0.10906,5.859,6.387,6.714,6.893,7.177,7.374,7.674,8.263,8.891,9.245,9.492,9.868,10.12,10.611,11.501 +211,0.1142,8.2739,0.10905,5.868,6.396,6.723,6.902,7.187,7.384,7.685,8.274,8.903,9.257,9.504,9.882,10.133,10.625,11.516 +212,0.1138,8.2851,0.10903,5.876,6.405,6.733,6.912,7.197,7.394,7.695,8.285,8.915,9.27,9.517,9.895,10.147,10.639,11.532 +213,0.1134,8.2963,0.10902,5.884,6.414,6.742,6.922,7.206,7.404,7.706,8.296,8.927,9.282,9.53,9.908,10.16,10.653,11.547 +214,0.113,8.3074,0.10901,5.893,6.423,6.751,6.931,7.216,7.415,7.716,8.307,8.939,9.294,9.543,9.921,10.174,10.667,11.562 +215,0.1126,8.3184,0.109,5.901,6.431,6.76,6.94,7.226,7.424,7.726,8.318,8.95,9.307,9.555,9.934,10.187,10.681,11.578 +216,0.1122,8.3294,0.10899,5.909,6.44,6.769,6.95,7.236,7.434,7.737,8.329,8.962,9.319,9.568,9.947,10.201,10.695,11.593 +217,0.1118,8.3404,0.10898,5.917,6.449,6.779,6.959,7.245,7.444,7.747,8.34,8.974,9.331,9.58,9.96,10.214,10.709,11.608 +218,0.1115,8.3513,0.10897,5.925,6.458,6.788,6.968,7.255,7.454,7.757,8.351,8.986,9.343,9.593,9.973,10.227,10.723,11.623 +219,0.1111,8.3621,0.10896,5.933,6.466,6.797,6.977,7.264,7.464,7.767,8.362,8.997,9.355,9.605,9.986,10.24,10.737,11.638 +220,0.1107,8.3729,0.10895,5.941,6.475,6.805,6.987,7.274,7.474,7.777,8.373,9.009,9.367,9.617,9.999,10.254,10.751,11.653 +221,0.1103,8.3837,0.10894,5.949,6.483,6.814,6.996,7.283,7.483,7.787,8.384,9.02,9.379,9.63,10.011,10.267,10.764,11.668 +222,0.1099,8.3944,0.10894,5.957,6.492,6.823,7.005,7.293,7.493,7.797,8.394,9.032,9.391,9.642,10.024,10.28,10.778,11.683 +223,0.1096,8.4051,0.10893,5.965,6.5,6.832,7.014,7.302,7.502,7.807,8.405,9.043,9.403,9.654,10.037,10.293,10.792,11.698 +224,0.1092,8.4157,0.10892,5.973,6.509,6.841,7.023,7.311,7.512,7.817,8.416,9.055,9.415,9.666,10.05,10.306,10.805,11.712 +225,0.1088,8.4263,0.10891,5.98,6.517,6.85,7.032,7.321,7.522,7.827,8.426,9.066,9.427,9.678,10.062,10.319,10.819,11.727 +226,0.1084,8.4369,0.10891,5.988,6.525,6.858,7.041,7.33,7.531,7.837,8.437,9.077,9.439,9.69,10.075,10.332,10.833,11.742 +227,0.1081,8.4474,0.1089,5.996,6.534,6.867,7.05,7.339,7.541,7.847,8.447,9.089,9.45,9.702,10.087,10.344,10.846,11.757 +228,0.1077,8.4578,0.10889,6.004,6.542,6.876,7.058,7.348,7.55,7.857,8.458,9.1,9.462,9.714,10.1,10.357,10.859,11.771 +229,0.1073,8.4683,0.10889,6.011,6.55,6.884,7.067,7.358,7.559,7.866,8.468,9.111,9.474,9.726,10.112,10.37,10.873,11.786 +230,0.107,8.4787,0.10888,6.019,6.559,6.893,7.076,7.367,7.569,7.876,8.479,9.122,9.485,9.738,10.124,10.383,10.886,11.8 +231,0.1066,8.489,0.10887,6.026,6.567,6.902,7.085,7.376,7.578,7.886,8.489,9.133,9.497,9.75,10.137,10.395,10.899,11.814 +232,0.1062,8.4993,0.10887,6.034,6.575,6.91,7.094,7.385,7.587,7.895,8.499,9.144,9.508,9.762,10.149,10.408,10.912,11.829 +233,0.1059,8.5096,0.10886,6.042,6.583,6.919,7.102,7.394,7.597,7.905,8.51,9.155,9.52,9.774,10.161,10.42,10.926,11.843 +234,0.1055,8.5198,0.10886,6.049,6.591,6.927,7.111,7.403,7.606,7.914,8.52,9.166,9.531,9.785,10.173,10.433,10.939,11.858 +235,0.1051,8.53,0.10885,6.056,6.599,6.935,7.12,7.412,7.615,7.924,8.53,9.177,9.542,9.797,10.186,10.445,10.952,11.872 +236,0.1048,8.5401,0.10885,6.064,6.607,6.944,7.128,7.42,7.624,7.933,8.54,9.188,9.554,9.809,10.198,10.458,10.965,11.886 +237,0.1044,8.5502,0.10884,6.071,6.615,6.952,7.137,7.429,7.633,7.943,8.55,9.199,9.565,9.82,10.21,10.47,10.978,11.9 +238,0.104,8.5603,0.10884,6.079,6.623,6.96,7.145,7.438,7.642,7.952,8.56,9.21,9.576,9.832,10.222,10.482,10.991,11.914 +239,0.1037,8.5704,0.10884,6.086,6.631,6.969,7.154,7.447,7.651,7.962,8.57,9.221,9.588,9.843,10.234,10.495,11.004,11.928 +240,0.1033,8.5804,0.10883,6.093,6.639,6.977,7.162,7.456,7.66,7.971,8.58,9.231,9.599,9.855,10.246,10.507,11.017,11.942 +241,0.103,8.5903,0.10883,6.1,6.647,6.985,7.17,7.464,7.669,7.98,8.59,9.242,9.61,9.866,10.258,10.519,11.029,11.956 +242,0.1026,8.6003,0.10882,6.108,6.655,6.993,7.179,7.473,7.678,7.989,8.6,9.253,9.621,9.878,10.269,10.531,11.042,11.97 +243,0.1023,8.6102,0.10882,6.115,6.662,7.001,7.187,7.482,7.687,7.999,8.61,9.263,9.632,9.889,10.281,10.543,11.055,11.984 +244,0.1019,8.62,0.10882,6.122,6.67,7.009,7.195,7.49,7.696,8.008,8.62,9.274,9.643,9.9,10.293,10.556,11.068,11.998 +245,0.1015,8.6299,0.10882,6.129,6.678,7.018,7.204,7.499,7.704,8.017,8.63,9.285,9.654,9.912,10.305,10.568,11.081,12.012 +246,0.1012,8.6397,0.10881,6.137,6.685,7.026,7.212,7.508,7.713,8.026,8.64,9.295,9.665,9.923,10.316,10.58,11.093,12.025 +247,0.1008,8.6494,0.10881,6.144,6.693,7.034,7.22,7.516,7.722,8.035,8.649,9.306,9.676,9.934,10.328,10.592,11.106,12.039 +248,0.1005,8.6592,0.10881,6.151,6.701,7.042,7.228,7.525,7.731,8.044,8.659,9.316,9.687,9.945,10.34,10.604,11.118,12.053 +249,0.1001,8.6689,0.10881,6.158,6.708,7.05,7.237,7.533,7.739,8.053,8.669,9.327,9.698,9.956,10.352,10.616,11.131,12.067 +250,0.0998,8.6785,0.10881,6.165,6.716,7.057,7.245,7.542,7.748,8.062,8.679,9.337,9.708,9.968,10.363,10.627,11.143,12.08 +251,0.0994,8.6882,0.1088,6.172,6.724,7.066,7.253,7.55,7.757,8.071,8.688,9.347,9.719,9.979,10.375,10.639,11.156,12.094 +252,0.0991,8.6978,0.1088,6.179,6.731,7.073,7.261,7.558,7.765,8.08,8.698,9.358,9.73,9.99,10.386,10.651,11.168,12.107 +253,0.0987,8.7073,0.1088,6.186,6.739,7.081,7.269,7.567,7.774,8.089,8.707,9.368,9.741,10.001,10.397,10.663,11.18,12.121 +254,0.0984,8.7169,0.1088,6.193,6.746,7.089,7.277,7.575,7.782,8.098,8.717,9.378,9.751,10.012,10.409,10.675,11.193,12.134 +255,0.0981,8.7264,0.1088,6.199,6.753,7.097,7.285,7.583,7.791,8.107,8.726,9.388,9.762,10.023,10.42,10.686,11.205,12.148 +256,0.0977,8.7359,0.1088,6.206,6.761,7.105,7.293,7.592,7.799,8.116,8.736,9.399,9.773,10.034,10.432,10.698,11.217,12.161 +257,0.0974,8.7453,0.1088,6.213,6.768,7.112,7.301,7.6,7.808,8.124,8.745,9.409,9.783,10.044,10.443,10.71,11.23,12.175 +258,0.097,8.7548,0.1088,6.22,6.776,7.12,7.309,7.608,7.816,8.133,8.755,9.419,9.794,10.055,10.454,10.721,11.242,12.188 +259,0.0967,8.7642,0.1088,6.227,6.783,7.128,7.317,7.616,7.825,8.142,8.764,9.429,9.804,10.066,10.466,10.733,11.254,12.201 +260,0.0963,8.7735,0.1088,6.234,6.79,7.135,7.324,7.624,7.833,8.151,8.774,9.439,9.815,10.077,10.477,10.744,11.266,12.215 +261,0.096,8.7829,0.1088,6.24,6.798,7.143,7.332,7.633,7.841,8.159,8.783,9.449,9.825,10.088,10.488,10.756,11.278,12.228 +262,0.0957,8.7922,0.1088,6.247,6.805,7.151,7.34,7.641,7.85,8.168,8.792,9.459,9.836,10.098,10.499,10.767,11.29,12.241 +263,0.0953,8.8015,0.1088,6.254,6.812,7.158,7.348,7.649,7.858,8.177,8.802,9.469,9.846,10.109,10.51,10.779,11.303,12.254 +264,0.095,8.8107,0.1088,6.261,6.819,7.166,7.356,7.657,7.866,8.185,8.811,9.479,9.856,10.12,10.522,10.79,11.314,12.267 +265,0.0947,8.82,0.1088,6.267,6.827,7.173,7.363,7.665,7.875,8.194,8.82,9.489,9.867,10.13,10.533,10.802,11.326,12.28 +266,0.0943,8.8292,0.1088,6.274,6.834,7.181,7.371,7.673,7.883,8.202,8.829,9.499,9.877,10.141,10.544,10.813,11.338,12.293 +267,0.094,8.8384,0.1088,6.281,6.841,7.188,7.379,7.681,7.891,8.211,8.838,9.509,9.888,10.152,10.555,10.824,11.35,12.306 +268,0.0937,8.8475,0.1088,6.287,6.848,7.196,7.387,7.689,7.899,8.219,8.848,9.519,9.898,10.162,10.566,10.836,11.362,12.319 +269,0.0933,8.8567,0.1088,6.294,6.855,7.203,7.394,7.697,7.908,8.228,8.857,9.529,9.908,10.173,10.577,10.847,11.374,12.332 +270,0.093,8.8658,0.1088,6.3,6.862,7.211,7.402,7.705,7.916,8.236,8.866,9.539,9.918,10.183,10.588,10.858,11.386,12.345 +271,0.0927,8.8748,0.1088,6.307,6.87,7.218,7.409,7.713,7.924,8.245,8.875,9.548,9.928,10.194,10.598,10.869,11.398,12.358 +272,0.0923,8.8839,0.10881,6.313,6.876,7.226,7.417,7.721,7.932,8.253,8.884,9.558,9.939,10.204,10.61,10.881,11.41,12.371 +273,0.092,8.8929,0.10881,6.32,6.884,7.233,7.425,7.728,7.94,8.262,8.893,9.568,9.949,10.215,10.62,10.892,11.421,12.384 +274,0.0917,8.9019,0.10881,6.326,6.891,7.24,7.432,7.736,7.948,8.27,8.902,9.577,9.959,10.225,10.631,10.903,11.433,12.397 +275,0.0913,8.9109,0.10881,6.333,6.898,7.248,7.44,7.744,7.956,8.278,8.911,9.587,9.969,10.235,10.642,10.914,11.445,12.41 +276,0.091,8.9199,0.10881,6.339,6.905,7.255,7.447,7.752,7.964,8.287,8.92,9.597,9.979,10.246,10.653,10.925,11.456,12.422 +277,0.0907,8.9288,0.10882,6.346,6.911,7.262,7.455,7.76,7.972,8.295,8.929,9.606,9.989,10.256,10.664,10.936,11.468,12.435 +278,0.0904,8.9377,0.10882,6.352,6.918,7.27,7.462,7.767,7.98,8.303,8.938,9.616,9.999,10.266,10.674,10.947,11.48,12.448 +279,0.09,8.9466,0.10882,6.359,6.925,7.277,7.469,7.775,7.988,8.311,8.947,9.626,10.009,10.277,10.685,10.958,11.491,12.461 +280,0.0897,8.9555,0.10882,6.365,6.932,7.284,7.477,7.783,7.996,8.32,8.956,9.635,10.019,10.287,10.696,10.969,11.503,12.473 +281,0.0894,8.9643,0.10882,6.371,6.939,7.291,7.484,7.791,8.004,8.328,8.964,9.645,10.029,10.297,10.706,10.98,11.514,12.486 +282,0.0891,8.9731,0.10883,6.378,6.946,7.298,7.492,7.798,8.011,8.336,8.973,9.654,10.039,10.307,10.717,10.991,11.526,12.498 +283,0.0887,8.9819,0.10883,6.384,6.953,7.306,7.499,7.806,8.019,8.344,8.982,9.664,10.049,10.317,10.728,11.002,11.537,12.511 +284,0.0884,8.9907,0.10883,6.39,6.96,7.313,7.506,7.813,8.027,8.352,8.991,9.673,10.059,10.327,10.738,11.013,11.549,12.523 +285,0.0881,8.9995,0.10884,6.396,6.966,7.32,7.514,7.821,8.035,8.361,9,9.683,10.069,10.338,10.749,11.024,11.56,12.536 +286,0.0878,9.0082,0.10884,6.403,6.973,7.327,7.521,7.829,8.043,8.369,9.008,9.692,10.078,10.348,10.759,11.034,11.572,12.549 +287,0.0875,9.0169,0.10884,6.409,6.98,7.334,7.528,7.836,8.051,8.377,9.017,9.701,10.088,10.358,10.77,11.045,11.583,12.561 +288,0.0871,9.0256,0.10884,6.415,6.987,7.341,7.536,7.844,8.058,8.385,9.026,9.711,10.098,10.368,10.78,11.056,11.594,12.573 +289,0.0868,9.0342,0.10885,6.421,6.993,7.348,7.543,7.851,8.066,8.393,9.034,9.72,10.108,10.378,10.791,11.067,11.606,12.586 +290,0.0865,9.0429,0.10885,6.428,7,7.355,7.55,7.859,8.074,8.401,9.043,9.73,10.117,10.388,10.801,11.077,11.617,12.598 +291,0.0862,9.0515,0.10885,6.434,7.007,7.362,7.557,7.866,8.081,8.409,9.052,9.739,10.127,10.398,10.811,11.088,11.628,12.61 +292,0.0859,9.0601,0.10886,6.44,7.014,7.369,7.564,7.874,8.089,8.417,9.06,9.748,10.137,10.408,10.822,11.099,11.64,12.623 +293,0.0856,9.0687,0.10886,6.446,7.02,7.376,7.571,7.881,8.097,8.425,9.069,9.757,10.146,10.418,10.832,11.109,11.651,12.635 +294,0.0852,9.0772,0.10887,6.452,7.027,7.383,7.578,7.889,8.104,8.433,9.077,9.767,10.156,10.428,10.843,11.12,11.662,12.648 +295,0.0849,9.0858,0.10887,6.458,7.033,7.39,7.586,7.896,8.112,8.441,9.086,9.776,10.166,10.438,10.853,11.131,11.673,12.66 +296,0.0846,9.0943,0.10887,6.465,7.04,7.397,7.593,7.903,8.12,8.448,9.094,9.785,10.175,10.447,10.863,11.141,11.684,12.672 +297,0.0843,9.1028,0.10888,6.471,7.047,7.404,7.6,7.911,8.127,8.456,9.103,9.794,10.185,10.457,10.874,11.152,11.696,12.684 +298,0.084,9.1113,0.10888,6.477,7.053,7.411,7.607,7.918,8.135,8.464,9.111,9.803,10.194,10.467,10.884,11.162,11.707,12.696 +299,0.0837,9.1198,0.10888,6.483,7.06,7.418,7.614,7.926,8.142,8.472,9.12,9.813,10.204,10.477,10.894,11.173,11.718,12.708 +300,0.0834,9.1282,0.10889,6.489,7.066,7.425,7.621,7.933,8.15,8.48,9.128,9.822,10.213,10.487,10.904,11.183,11.729,12.721 +301,0.0831,9.1366,0.10889,6.495,7.073,7.431,7.628,7.94,8.157,8.488,9.137,9.831,10.223,10.496,10.914,11.194,11.74,12.733 +302,0.0827,9.145,0.1089,6.501,7.079,7.438,7.635,7.947,8.165,8.495,9.145,9.84,10.232,10.506,10.925,11.204,11.751,12.745 +303,0.0824,9.1534,0.1089,6.507,7.086,7.445,7.642,7.955,8.172,8.503,9.153,9.849,10.242,10.516,10.935,11.215,11.762,12.757 +304,0.0821,9.1618,0.1089,6.513,7.092,7.452,7.649,7.962,8.18,8.511,9.162,9.858,10.251,10.526,10.945,11.225,11.773,12.769 +305,0.0818,9.1701,0.10891,6.519,7.099,7.459,7.656,7.969,8.187,8.519,9.17,9.867,10.261,10.535,10.955,11.236,11.784,12.781 +306,0.0815,9.1785,0.10891,6.525,7.105,7.466,7.663,7.976,8.195,8.527,9.179,9.876,10.27,10.545,10.965,11.246,11.795,12.793 +307,0.0812,9.1868,0.10892,6.531,7.112,7.472,7.67,7.984,8.202,8.534,9.187,9.885,10.279,10.555,10.975,11.256,11.806,12.805 +308,0.0809,9.1951,0.10892,6.537,7.118,7.479,7.677,7.991,8.209,8.542,9.195,9.894,10.289,10.564,10.985,11.267,11.816,12.817 +309,0.0806,9.2034,0.10893,6.542,7.125,7.486,7.684,7.998,8.217,8.55,9.203,9.903,10.298,10.574,10.995,11.277,11.828,12.829 +310,0.0803,9.2117,0.10893,6.548,7.131,7.492,7.691,8.005,8.224,8.557,9.212,9.912,10.307,10.584,11.005,11.287,11.838,12.841 +311,0.08,9.2199,0.10894,6.554,7.137,7.499,7.697,8.012,8.231,8.565,9.22,9.921,10.317,10.593,11.015,11.298,11.849,12.853 +312,0.0797,9.2282,0.10894,6.56,7.144,7.506,7.704,8.019,8.239,8.573,9.228,9.93,10.326,10.603,11.025,11.308,11.86,12.865 +313,0.0794,9.2364,0.10894,6.566,7.15,7.513,7.711,8.027,8.246,8.58,9.236,9.939,10.335,10.612,11.035,11.318,11.871,12.876 +314,0.0791,9.2446,0.10895,6.572,7.156,7.519,7.718,8.034,8.253,8.588,9.245,9.947,10.345,10.622,11.045,11.328,11.882,12.888 +315,0.0788,9.2528,0.10895,6.578,7.163,7.526,7.725,8.041,8.261,8.595,9.253,9.956,10.354,10.631,11.055,11.338,11.892,12.9 +316,0.0785,9.261,0.10896,6.584,7.169,7.532,7.732,8.048,8.268,8.603,9.261,9.965,10.363,10.641,11.065,11.349,11.903,12.912 +317,0.0782,9.2691,0.10896,6.589,7.175,7.539,7.738,8.055,8.275,8.61,9.269,9.974,10.372,10.65,11.075,11.359,11.914,12.923 +318,0.0779,9.2773,0.10897,6.595,7.182,7.546,7.745,8.062,8.282,8.618,9.277,9.983,10.381,10.66,11.085,11.369,11.925,12.935 +319,0.0776,9.2854,0.10897,6.601,7.188,7.552,7.752,8.069,8.29,8.626,9.285,9.991,10.39,10.669,11.094,11.379,11.935,12.947 +320,0.0773,9.2935,0.10898,6.607,7.194,7.559,7.759,8.076,8.297,8.633,9.294,10,10.4,10.678,11.104,11.389,11.946,12.959 +321,0.077,9.3016,0.10898,6.613,7.201,7.565,7.765,8.083,8.304,8.641,9.302,10.009,10.409,10.688,11.114,11.399,11.956,12.97 +322,0.0767,9.3097,0.10899,6.618,7.207,7.572,7.772,8.09,8.311,8.648,9.31,10.018,10.418,10.697,11.124,11.41,11.967,12.982 +323,0.0764,9.3178,0.10899,6.624,7.213,7.579,7.779,8.097,8.318,8.656,9.318,10.027,10.427,10.707,11.134,11.42,11.978,12.994 +324,0.0761,9.3258,0.109,6.63,7.219,7.585,7.785,8.104,8.326,8.663,9.326,10.035,10.436,10.716,11.144,11.43,11.988,13.006 +325,0.0758,9.3339,0.10901,6.635,7.225,7.591,7.792,8.111,8.333,8.67,9.334,10.044,10.445,10.725,11.153,11.44,11.999,13.017 +326,0.0755,9.3419,0.10901,6.641,7.232,7.598,7.799,8.118,8.34,8.678,9.342,10.053,10.454,10.735,11.163,11.45,12.01,13.029 +327,0.0752,9.3499,0.10902,6.647,7.238,7.604,7.805,8.125,8.347,8.685,9.35,10.061,10.463,10.744,11.173,11.46,12.02,13.041 +328,0.0749,9.3579,0.10902,6.653,7.244,7.611,7.812,8.132,8.354,8.693,9.358,10.07,10.472,10.753,11.182,11.47,12.031,13.052 +329,0.0746,9.3659,0.10903,6.658,7.25,7.617,7.819,8.139,8.361,8.7,9.366,10.079,10.481,10.763,11.192,11.48,12.041,13.064 +330,0.0744,9.3739,0.10903,6.664,7.256,7.624,7.825,8.146,8.368,8.708,9.374,10.087,10.49,10.772,11.202,11.49,12.052,13.075 +331,0.0741,9.3819,0.10904,6.67,7.262,7.63,7.832,8.152,8.375,8.715,9.382,10.096,10.499,10.781,11.212,11.5,12.062,13.087 +332,0.0738,9.3898,0.10904,6.675,7.269,7.637,7.839,8.159,8.382,8.722,9.39,10.104,10.508,10.79,11.221,11.509,12.073,13.098 +333,0.0735,9.3978,0.10905,6.681,7.275,7.643,7.845,8.166,8.389,8.73,9.398,10.113,10.517,10.8,11.231,11.52,12.083,13.11 +334,0.0732,9.4057,0.10905,6.687,7.281,7.65,7.852,8.173,8.397,8.737,9.406,10.122,10.526,10.809,11.24,11.529,12.094,13.121 +335,0.0729,9.4136,0.10906,6.692,7.287,7.656,7.858,8.18,8.404,8.744,9.414,10.13,10.535,10.818,11.25,11.539,12.104,13.133 +336,0.0726,9.4215,0.10907,6.698,7.293,7.662,7.865,8.187,8.411,8.752,9.422,10.139,10.544,10.827,11.26,11.549,12.115,13.144 +337,0.0723,9.4294,0.10907,6.703,7.299,7.669,7.872,8.194,8.418,8.759,9.429,10.147,10.553,10.836,11.269,11.559,12.125,13.156 +338,0.072,9.4373,0.10908,6.709,7.305,7.675,7.878,8.2,8.425,8.766,9.437,10.156,10.562,10.846,11.279,11.569,12.136,13.167 +339,0.0718,9.4452,0.10908,6.715,7.311,7.682,7.885,8.207,8.432,8.774,9.445,10.164,10.571,10.855,11.288,11.579,12.146,13.178 +340,0.0715,9.453,0.10909,6.72,7.317,7.688,7.891,8.214,8.439,8.781,9.453,10.173,10.58,10.864,11.298,11.589,12.156,13.19 +341,0.0712,9.4609,0.1091,6.726,7.323,7.694,7.898,8.221,8.446,8.788,9.461,10.181,10.589,10.873,11.308,11.599,12.167,13.201 +342,0.0709,9.4687,0.1091,6.731,7.329,7.701,7.904,8.227,8.452,8.795,9.469,10.19,10.597,10.882,11.317,11.608,12.177,13.213 +343,0.0706,9.4765,0.10911,6.737,7.335,7.707,7.911,8.234,8.459,8.802,9.477,10.198,10.606,10.891,11.327,11.618,12.187,13.224 +344,0.0703,9.4844,0.10911,6.742,7.341,7.713,7.917,8.241,8.466,8.81,9.484,10.207,10.615,10.9,11.336,11.628,12.198,13.235 +345,0.0701,9.4922,0.10912,6.748,7.347,7.719,7.924,8.248,8.473,8.817,9.492,10.215,10.624,10.909,11.346,11.638,12.208,13.247 +346,0.0698,9.4999,0.10913,6.753,7.353,7.726,7.93,8.254,8.48,8.824,9.5,10.224,10.633,10.919,11.355,11.647,12.218,13.258 +347,0.0695,9.5077,0.10913,6.759,7.359,7.732,7.936,8.261,8.487,8.831,9.508,10.232,10.642,10.927,11.364,11.657,12.228,13.269 +348,0.0692,9.5155,0.10914,6.764,7.365,7.738,7.943,8.268,8.494,8.839,9.516,10.24,10.65,10.937,11.374,11.667,12.239,13.281 +349,0.0689,9.5232,0.10915,6.77,7.371,7.744,7.949,8.274,8.501,8.846,9.523,10.249,10.659,10.946,11.384,11.677,12.249,13.292 +350,0.0686,9.531,0.10915,6.775,7.377,7.751,7.956,8.281,8.508,8.853,9.531,10.257,10.668,10.955,11.393,11.686,12.259,13.303 +351,0.0684,9.5387,0.10916,6.781,7.383,7.757,7.962,8.288,8.515,8.86,9.539,10.266,10.677,10.964,11.402,11.696,12.27,13.315 +352,0.0681,9.5464,0.10916,6.786,7.389,7.763,7.969,8.295,8.521,8.867,9.546,10.274,10.685,10.973,11.412,11.705,12.28,13.325 +353,0.0678,9.5542,0.10917,6.792,7.395,7.77,7.975,8.301,8.528,8.874,9.554,10.282,10.694,10.982,11.421,11.715,12.29,13.337 +354,0.0675,9.5619,0.10918,6.797,7.401,7.776,7.981,8.308,8.535,8.881,9.562,10.291,10.703,10.991,11.431,11.725,12.3,13.348 +355,0.0672,9.5696,0.10918,6.803,7.407,7.782,7.988,8.315,8.542,8.889,9.57,10.299,10.712,11,11.44,11.734,12.31,13.359 +356,0.067,9.5772,0.10919,6.808,7.413,7.788,7.994,8.321,8.549,8.896,9.577,10.307,10.72,11.008,11.449,11.744,12.32,13.37 +357,0.0667,9.5849,0.1092,6.813,7.418,7.794,8,8.328,8.556,8.903,9.585,10.316,10.729,11.018,11.459,11.754,12.331,13.382 +358,0.0664,9.5926,0.1092,6.819,7.425,7.801,8.007,8.334,8.562,8.91,9.593,10.324,10.738,11.026,11.468,11.763,12.341,13.393 +359,0.0661,9.6002,0.10921,6.824,7.43,7.807,8.013,8.341,8.569,8.917,9.6,10.332,10.746,11.035,11.477,11.773,12.351,13.404 +360,0.0659,9.6079,0.10922,6.83,7.436,7.813,8.019,8.348,8.576,8.924,9.608,10.341,10.755,11.044,11.487,11.783,12.361,13.415 +361,0.0656,9.6155,0.10922,6.835,7.442,7.819,8.026,8.354,8.583,8.931,9.616,10.349,10.763,11.053,11.496,11.792,12.371,13.426 +362,0.0653,9.6231,0.10923,6.84,7.448,7.825,8.032,8.361,8.589,8.938,9.623,10.357,10.772,11.062,11.505,11.802,12.381,13.437 +363,0.065,9.6308,0.10924,6.846,7.454,7.831,8.038,8.367,8.596,8.945,9.631,10.365,10.781,11.071,11.515,11.811,12.392,13.449 +364,0.0648,9.6384,0.10925,6.851,7.459,7.837,8.045,8.374,8.603,8.952,9.638,10.374,10.789,11.08,11.524,11.821,12.402,13.46 +365,0.0645,9.646,0.10925,6.857,7.465,7.844,8.051,8.38,8.61,8.959,9.646,10.382,10.798,11.089,11.533,11.83,12.412,13.471 +366,0.0642,9.6535,0.10926,6.862,7.471,7.85,8.057,8.387,8.616,8.966,9.654,10.39,10.807,11.097,11.542,11.84,12.422,13.482 +367,0.064,9.6611,0.10927,6.867,7.477,7.856,8.063,8.393,8.623,8.973,9.661,10.398,10.815,11.106,11.551,11.849,12.432,13.493 +368,0.0637,9.6687,0.10927,6.873,7.483,7.862,8.07,8.4,8.63,8.98,9.669,10.406,10.824,11.115,11.561,11.859,12.442,13.504 +369,0.0634,9.6763,0.10928,6.878,7.489,7.868,8.076,8.407,8.637,8.987,9.676,10.415,10.832,11.124,11.57,11.868,12.452,13.515 +370,0.0631,9.6838,0.10929,6.883,7.494,7.874,8.082,8.413,8.643,8.994,9.684,10.423,10.841,11.133,11.579,11.878,12.462,13.526 +371,0.0629,9.6914,0.1093,6.888,7.5,7.88,8.088,8.419,8.65,9.001,9.691,10.431,10.85,11.142,11.588,11.888,12.472,13.537 +372,0.0626,9.6989,0.1093,6.894,7.506,7.886,8.095,8.426,8.657,9.008,9.699,10.439,10.858,11.15,11.598,11.897,12.482,13.548 +373,0.0623,9.7064,0.10931,6.899,7.512,7.892,8.101,8.432,8.663,9.015,9.706,10.447,10.866,11.159,11.607,11.906,12.492,13.559 +374,0.0621,9.7139,0.10932,6.904,7.517,7.898,8.107,8.439,8.67,9.022,9.714,10.455,10.875,11.168,11.616,11.916,12.502,13.57 +375,0.0618,9.7214,0.10933,6.91,7.523,7.904,8.113,8.445,8.676,9.029,9.721,10.464,10.884,11.177,11.625,11.925,12.512,13.581 +376,0.0615,9.7289,0.10933,6.915,7.529,7.91,8.119,8.452,8.683,9.036,9.729,10.472,10.892,11.185,11.634,11.935,12.522,13.592 +377,0.0613,9.7364,0.10934,6.92,7.535,7.916,8.126,8.458,8.69,9.043,9.736,10.48,10.9,11.194,11.643,11.944,12.532,13.603 +378,0.061,9.7439,0.10935,6.925,7.54,7.922,8.132,8.465,8.696,9.05,9.744,10.488,10.909,11.203,11.653,11.954,12.542,13.614 +379,0.0607,9.7514,0.10936,6.931,7.546,7.928,8.138,8.471,8.703,9.057,9.751,10.496,10.918,11.212,11.662,11.963,12.552,13.625 +380,0.0605,9.7588,0.10936,6.936,7.552,7.934,8.144,8.478,8.71,9.063,9.759,10.504,10.926,11.22,11.671,11.972,12.562,13.636 +381,0.0602,9.7663,0.10937,6.941,7.557,7.94,8.15,8.484,8.716,9.07,9.766,10.512,10.934,11.229,11.68,11.982,12.572,13.647 +382,0.0599,9.7738,0.10938,6.946,7.563,7.946,8.156,8.49,8.723,9.077,9.774,10.52,10.943,11.238,11.689,11.991,12.582,13.658 +383,0.0597,9.7812,0.10939,6.952,7.569,7.952,8.163,8.497,8.729,9.084,9.781,10.528,10.951,11.247,11.698,12.001,12.592,13.669 +384,0.0594,9.7886,0.10939,6.957,7.575,7.958,8.169,8.503,8.736,9.091,9.789,10.536,10.96,11.255,11.707,12.01,12.601,13.68 +385,0.0591,9.796,0.1094,6.962,7.58,7.964,8.175,8.51,8.743,9.098,9.796,10.544,10.968,11.264,11.716,12.019,12.611,13.691 +386,0.0589,9.8035,0.10941,6.967,7.586,7.97,8.181,8.516,8.749,9.105,9.804,10.553,10.977,11.273,11.725,12.029,12.621,13.702 +387,0.0586,9.8109,0.10942,6.972,7.591,7.976,8.187,8.522,8.756,9.111,9.811,10.561,10.985,11.281,11.734,12.038,12.631,13.713 +388,0.0583,9.8183,0.10943,6.978,7.597,7.982,8.193,8.529,8.762,9.118,9.818,10.569,10.993,11.29,11.744,12.047,12.641,13.724 +389,0.0581,9.8257,0.10943,6.983,7.603,7.988,8.199,8.535,8.769,9.125,9.826,10.577,11.002,11.299,11.752,12.056,12.651,13.734 +390,0.0578,9.833,0.10944,6.988,7.608,7.994,8.205,8.541,8.775,9.132,9.833,10.585,11.01,11.307,11.761,12.066,12.66,13.745 +391,0.0576,9.8404,0.10945,6.993,7.614,8,8.211,8.548,8.782,9.139,9.84,10.593,11.018,11.316,11.771,12.075,12.67,13.756 +392,0.0573,9.8478,0.10946,6.998,7.62,8.006,8.218,8.554,8.788,9.145,9.848,10.601,11.027,11.324,11.78,12.084,12.68,13.767 +393,0.057,9.8551,0.10947,7.003,7.625,8.012,8.224,8.56,8.795,9.152,9.855,10.609,11.035,11.333,11.789,12.094,12.69,13.778 +394,0.0568,9.8625,0.10948,7.009,7.631,8.017,8.23,8.567,8.801,9.159,9.863,10.617,11.044,11.342,11.798,12.103,12.7,13.789 +395,0.0565,9.8699,0.10948,7.014,7.637,8.023,8.236,8.573,8.808,9.166,9.87,10.625,11.052,11.35,11.807,12.112,12.71,13.799 +396,0.0563,9.8772,0.10949,7.019,7.642,8.029,8.242,8.579,8.814,9.173,9.877,10.633,11.06,11.359,11.816,12.121,12.719,13.81 +397,0.056,9.8845,0.1095,7.024,7.648,8.035,8.248,8.586,8.821,9.179,9.885,10.641,11.068,11.367,11.825,12.131,12.729,13.821 +398,0.0557,9.8918,0.10951,7.029,7.653,8.041,8.254,8.592,8.827,9.186,9.892,10.648,11.077,11.376,11.834,12.14,12.739,13.832 +399,0.0555,9.8992,0.10952,7.034,7.659,8.047,8.26,8.598,8.834,9.193,9.899,10.657,11.085,11.385,11.843,12.149,12.749,13.843 +400,0.0552,9.9065,0.10953,7.039,7.664,8.053,8.266,8.604,8.84,9.2,9.907,10.664,11.093,11.393,11.852,12.159,12.759,13.854 +401,0.055,9.9138,0.10954,7.044,7.67,8.059,8.272,8.611,8.847,9.206,9.914,10.672,11.102,11.402,11.861,12.168,12.769,13.864 +402,0.0547,9.9211,0.10954,7.05,7.676,8.065,8.278,8.617,8.853,9.213,9.921,10.68,11.11,11.41,11.869,12.177,12.778,13.875 +403,0.0545,9.9284,0.10955,7.055,7.681,8.07,8.284,8.623,8.86,9.22,9.928,10.688,11.118,11.419,11.878,12.186,12.788,13.886 +404,0.0542,9.9357,0.10956,7.06,7.687,8.076,8.29,8.63,8.866,9.227,9.936,10.696,11.127,11.427,11.887,12.195,12.798,13.896 +405,0.054,9.9429,0.10957,7.065,7.692,8.082,8.296,8.636,8.872,9.233,9.943,10.704,11.135,11.436,11.896,12.204,12.807,13.907 +406,0.0537,9.9502,0.10958,7.07,7.698,8.088,8.302,8.642,8.879,9.24,9.95,10.712,11.143,11.444,11.905,12.214,12.817,13.918 +407,0.0534,9.9575,0.10959,7.075,7.703,8.094,8.308,8.648,8.885,9.247,9.958,10.72,11.151,11.453,11.914,12.223,12.827,13.929 +408,0.0532,9.9647,0.1096,7.08,7.709,8.099,8.314,8.654,8.892,9.253,9.965,10.728,11.16,11.461,11.923,12.232,12.837,13.939 +409,0.0529,9.972,0.10961,7.085,7.714,8.105,8.32,8.661,8.898,9.26,9.972,10.736,11.168,11.47,11.932,12.241,12.846,13.95 +410,0.0527,9.9792,0.10961,7.09,7.72,8.111,8.326,8.667,8.905,9.267,9.979,10.743,11.176,11.478,11.941,12.25,12.856,13.961 +411,0.0524,9.9865,0.10962,7.095,7.725,8.117,8.332,8.673,8.911,9.273,9.987,10.751,11.184,11.487,11.95,12.259,12.866,13.971 +412,0.0522,9.9937,0.10963,7.1,7.731,8.123,8.338,8.679,8.917,9.28,9.994,10.759,11.192,11.495,11.958,12.269,12.875,13.982 +413,0.0519,10.0009,0.10964,7.105,7.736,8.128,8.344,8.685,8.924,9.287,10.001,10.767,11.201,11.504,11.967,12.278,12.885,13.993 +414,0.0517,10.0082,0.10965,7.11,7.742,8.134,8.349,8.692,8.93,9.293,10.008,10.775,11.209,11.512,11.976,12.287,12.895,14.004 +415,0.0514,10.0154,0.10966,7.115,7.747,8.14,8.355,8.698,8.936,9.3,10.015,10.783,11.217,11.521,11.985,12.296,12.904,14.014 +416,0.0512,10.0226,0.10967,7.12,7.753,8.146,8.361,8.704,8.943,9.307,10.023,10.791,11.225,11.529,11.994,12.305,12.914,14.025 +417,0.0509,10.0298,0.10968,7.125,7.758,8.151,8.367,8.71,8.949,9.313,10.03,10.798,11.234,11.538,12.003,12.314,12.924,14.036 +418,0.0507,10.037,0.10969,7.13,7.764,8.157,8.373,8.716,8.955,9.32,10.037,10.806,11.242,11.546,12.012,12.324,12.933,14.046 +419,0.0504,10.0442,0.1097,7.135,7.769,8.163,8.379,8.723,8.962,9.327,10.044,10.814,11.25,11.555,12.021,12.333,12.943,14.057 +420,0.0502,10.0514,0.10971,7.14,7.774,8.169,8.385,8.729,8.968,9.333,10.051,10.822,11.258,11.563,12.029,12.342,12.953,14.068 +421,0.0499,10.0586,0.10971,7.146,7.78,8.174,8.391,8.735,8.975,9.34,10.059,10.83,11.266,11.571,12.038,12.351,12.962,14.078 +422,0.0497,10.0657,0.10972,7.151,7.785,8.18,8.397,8.741,8.981,9.346,10.066,10.837,11.274,11.58,12.047,12.36,12.972,14.089 +423,0.0494,10.0729,0.10973,7.156,7.791,8.186,8.403,8.747,8.987,9.353,10.073,10.845,11.283,11.588,12.056,12.369,12.981,14.099 +424,0.0492,10.0801,0.10974,7.161,7.796,8.192,8.409,8.753,8.994,9.36,10.08,10.853,11.291,11.597,12.065,12.378,12.991,14.11 +425,0.0489,10.0872,0.10975,7.165,7.802,8.197,8.414,8.759,9,9.366,10.087,10.861,11.299,11.605,12.073,12.387,13.001,14.121 +426,0.0487,10.0944,0.10976,7.17,7.807,8.203,8.42,8.766,9.006,9.373,10.094,10.869,11.307,11.613,12.082,12.396,13.01,14.131 +427,0.0484,10.1015,0.10977,7.175,7.813,8.209,8.426,8.772,9.012,9.379,10.102,10.876,11.315,11.622,12.091,12.405,13.02,14.142 +428,0.0482,10.1087,0.10978,7.18,7.818,8.214,8.432,8.778,9.019,9.386,10.109,10.884,11.323,11.63,12.1,12.414,13.03,14.153 +429,0.0479,10.1158,0.10979,7.185,7.823,8.22,8.438,8.784,9.025,9.393,10.116,10.892,11.331,11.639,12.109,12.423,13.039,14.163 +430,0.0477,10.123,0.1098,7.19,7.829,8.226,8.444,8.79,9.031,9.399,10.123,10.9,11.34,11.647,12.117,12.432,13.049,14.174 +431,0.0475,10.1301,0.10981,7.195,7.834,8.231,8.45,8.796,9.038,9.406,10.13,10.907,11.348,11.655,12.126,12.441,13.058,14.184 +432,0.0472,10.1372,0.10982,7.2,7.84,8.237,8.455,8.802,9.044,9.412,10.137,10.915,11.356,11.664,12.135,12.45,13.068,14.195 +433,0.047,10.1443,0.10983,7.205,7.845,8.243,8.461,8.808,9.05,9.419,10.144,10.923,11.364,11.672,12.144,12.459,13.077,14.206 +434,0.0467,10.1515,0.10984,7.21,7.85,8.249,8.467,8.814,9.056,9.425,10.152,10.931,11.372,11.681,12.152,12.469,13.087,14.216 +435,0.0465,10.1586,0.10985,7.215,7.856,8.254,8.473,8.821,9.063,9.432,10.159,10.938,11.38,11.689,12.161,12.478,13.097,14.227 +436,0.0462,10.1657,0.10986,7.22,7.861,8.26,8.479,8.827,9.069,9.438,10.166,10.946,11.388,11.697,12.17,12.487,13.106,14.237 +437,0.046,10.1728,0.10987,7.225,7.866,8.265,8.485,8.833,9.075,9.445,10.173,10.954,11.396,11.706,12.179,12.496,13.116,14.248 +438,0.0458,10.1799,0.10988,7.23,7.872,8.271,8.49,8.839,9.081,9.452,10.18,10.962,11.404,11.714,12.187,12.505,13.125,14.259 +439,0.0455,10.187,0.10989,7.235,7.877,8.277,8.496,8.845,9.088,9.458,10.187,10.969,11.413,11.722,12.196,12.514,13.135,14.269 +440,0.0453,10.1941,0.1099,7.24,7.883,8.282,8.502,8.851,9.094,9.465,10.194,10.977,11.421,11.731,12.205,12.523,13.145,14.28 +441,0.045,10.2011,0.10991,7.244,7.888,8.288,8.508,8.857,9.1,9.471,10.201,10.985,11.429,11.739,12.214,12.532,13.154,14.29 +442,0.0448,10.2082,0.10992,7.249,7.893,8.294,8.513,8.863,9.106,9.478,10.208,10.992,11.437,11.747,12.222,12.541,13.164,14.301 +443,0.0445,10.2153,0.10993,7.254,7.899,8.299,8.519,8.869,9.113,9.484,10.215,11,11.445,11.756,12.231,12.55,13.173,14.311 +444,0.0443,10.2224,0.10994,7.259,7.904,8.305,8.525,8.875,9.119,9.491,10.222,11.008,11.453,11.764,12.24,12.559,13.183,14.322 +445,0.0441,10.2294,0.10995,7.264,7.909,8.311,8.531,8.881,9.125,9.497,10.229,11.016,11.461,11.772,12.248,12.568,13.192,14.332 +446,0.0438,10.2365,0.10996,7.269,7.915,8.316,8.537,8.887,9.131,9.504,10.237,11.023,11.469,11.781,12.257,12.577,13.202,14.343 +447,0.0436,10.2435,0.10997,7.274,7.92,8.322,8.542,8.893,9.137,9.51,10.244,11.031,11.477,11.789,12.266,12.586,13.211,14.353 +448,0.0433,10.2506,0.10998,7.279,7.925,8.327,8.548,8.899,9.144,9.517,10.251,11.039,11.485,11.797,12.275,12.595,13.221,14.364 +449,0.0431,10.2576,0.10999,7.283,7.931,8.333,8.554,8.905,9.15,9.523,10.258,11.046,11.493,11.805,12.283,12.603,13.23,14.374 +450,0.0429,10.2647,0.11,7.288,7.936,8.339,8.56,8.911,9.156,9.53,10.265,11.054,11.501,11.814,12.292,12.612,13.24,14.385 +451,0.0426,10.2717,0.11001,7.293,7.941,8.344,8.565,8.917,9.162,9.536,10.272,11.062,11.509,11.822,12.301,12.621,13.249,14.395 +452,0.0424,10.2788,0.11002,7.298,7.947,8.35,8.571,8.923,9.169,9.543,10.279,11.069,11.517,11.83,12.309,12.63,13.259,14.406 +453,0.0422,10.2858,0.11003,7.303,7.952,8.355,8.577,8.929,9.175,9.549,10.286,11.077,11.525,11.838,12.318,12.639,13.268,14.416 +454,0.0419,10.2928,0.11005,7.308,7.957,8.361,8.583,8.935,9.181,9.555,10.293,11.085,11.533,11.847,12.327,12.648,13.278,14.427 +455,0.0417,10.2998,0.11006,7.312,7.962,8.366,8.588,8.941,9.187,9.562,10.3,11.092,11.541,11.855,12.335,12.657,13.287,14.438 +456,0.0414,10.3069,0.11007,7.317,7.968,8.372,8.594,8.947,9.193,9.568,10.307,11.1,11.549,11.863,12.344,12.666,13.297,14.448 +457,0.0412,10.3139,0.11008,7.322,7.973,8.378,8.6,8.953,9.199,9.575,10.314,11.108,11.557,11.872,12.353,12.675,13.306,14.459 +458,0.041,10.3209,0.11009,7.327,7.978,8.383,8.606,8.959,9.206,9.581,10.321,11.115,11.565,11.88,12.361,12.684,13.316,14.469 +459,0.0407,10.3279,0.1101,7.332,7.983,8.389,8.611,8.965,9.212,9.588,10.328,11.123,11.573,11.888,12.37,12.693,13.325,14.48 +460,0.0405,10.3349,0.11011,7.337,7.989,8.394,8.617,8.971,9.218,9.594,10.335,11.13,11.581,11.896,12.379,12.702,13.335,14.49 +461,0.0403,10.3419,0.11012,7.342,7.994,8.4,8.623,8.977,9.224,9.601,10.342,11.138,11.589,11.905,12.387,12.711,13.344,14.501 +462,0.04,10.3489,0.11013,7.346,7.999,8.405,8.629,8.983,9.23,9.607,10.349,11.146,11.597,11.913,12.396,12.72,13.353,14.511 +463,0.0398,10.3559,0.11014,7.351,8.005,8.411,8.634,8.989,9.236,9.613,10.356,11.153,11.605,11.921,12.405,12.729,13.363,14.521 +464,0.0396,10.3629,0.11015,7.356,8.01,8.417,8.64,8.995,9.242,9.62,10.363,11.161,11.613,11.929,12.413,12.738,13.372,14.532 +465,0.0393,10.3699,0.11016,7.361,8.015,8.422,8.646,9.001,9.249,9.626,10.37,11.169,11.621,11.938,12.422,12.746,13.382,14.542 +466,0.0391,10.3769,0.11017,7.366,8.02,8.428,8.651,9.007,9.255,9.633,10.377,11.176,11.629,11.946,12.431,12.755,13.391,14.553 +467,0.0389,10.3839,0.11019,7.37,8.026,8.433,8.657,9.013,9.261,9.639,10.384,11.184,11.637,11.954,12.439,12.765,13.401,14.564 +468,0.0386,10.3908,0.1102,7.375,8.031,8.439,8.663,9.019,9.267,9.645,10.391,11.191,11.645,11.962,12.448,12.773,13.41,14.574 +469,0.0384,10.3978,0.11021,7.38,8.036,8.444,8.668,9.025,9.273,9.652,10.398,11.199,11.653,11.971,12.457,12.782,13.42,14.585 +470,0.0382,10.4048,0.11022,7.385,8.041,8.45,8.674,9.031,9.279,9.658,10.405,11.207,11.661,11.979,12.465,12.791,13.429,14.595 +471,0.0379,10.4118,0.11023,7.39,8.047,8.455,8.68,9.037,9.285,9.665,10.412,11.214,11.669,11.987,12.474,12.8,13.439,14.605 +472,0.0377,10.4187,0.11024,7.394,8.052,8.461,8.685,9.043,9.291,9.671,10.419,11.222,11.677,11.995,12.482,12.809,13.448,14.616 +473,0.0375,10.4257,0.11025,7.399,8.057,8.466,8.691,9.049,9.298,9.678,10.426,11.229,11.685,12.003,12.491,12.818,13.457,14.626 +474,0.0373,10.4326,0.11026,7.404,8.062,8.472,8.697,9.054,9.304,9.684,10.433,11.237,11.693,12.012,12.499,12.827,13.467,14.636 +475,0.037,10.4396,0.11027,7.409,8.068,8.477,8.703,9.06,9.31,9.69,10.44,11.245,11.701,12.02,12.508,12.835,13.476,14.647 +476,0.0368,10.4465,0.11029,7.413,8.073,8.483,8.708,9.066,9.316,9.697,10.447,11.252,11.709,12.028,12.517,12.844,13.486,14.658 +477,0.0366,10.4535,0.1103,7.418,8.078,8.488,8.714,9.072,9.322,9.703,10.454,11.26,11.717,12.036,12.525,12.853,13.495,14.668 +478,0.0363,10.4604,0.11031,7.423,8.083,8.494,8.719,9.078,9.328,9.709,10.46,11.267,11.725,12.044,12.534,12.862,13.505,14.679 +479,0.0361,10.4674,0.11032,7.428,8.088,8.499,8.725,9.084,9.334,9.716,10.467,11.275,11.733,12.053,12.543,12.871,13.514,14.689 +480,0.0359,10.4743,0.11033,7.433,8.094,8.505,8.731,9.09,9.34,9.722,10.474,11.282,11.74,12.061,12.551,12.88,13.523,14.699 +481,0.0357,10.4813,0.11034,7.437,8.099,8.51,8.736,9.096,9.346,9.729,10.481,11.29,11.748,12.069,12.56,12.889,13.533,14.71 +482,0.0354,10.4882,0.11035,7.442,8.104,8.516,8.742,9.102,9.353,9.735,10.488,11.298,11.756,12.077,12.568,12.898,13.542,14.72 +483,0.0352,10.4951,0.11037,7.447,8.109,8.521,8.748,9.108,9.359,9.741,10.495,11.305,11.764,12.085,12.577,12.907,13.552,14.731 +484,0.035,10.502,0.11038,7.451,8.114,8.527,8.753,9.113,9.365,9.748,10.502,11.313,11.772,12.094,12.586,12.915,13.561,14.741 +485,0.0347,10.509,0.11039,7.456,8.12,8.532,8.759,9.119,9.371,9.754,10.509,11.32,11.78,12.102,12.594,12.924,13.571,14.752 +486,0.0345,10.5159,0.1104,7.461,8.125,8.538,8.765,9.125,9.377,9.76,10.516,11.328,11.788,12.11,12.603,12.933,13.58,14.762 +487,0.0343,10.5228,0.11041,7.466,8.13,8.543,8.77,9.131,9.383,9.767,10.523,11.335,11.796,12.118,12.611,12.942,13.589,14.772 +488,0.0341,10.5297,0.11042,7.471,8.135,8.549,8.776,9.137,9.389,9.773,10.53,11.343,11.804,12.126,12.62,12.951,13.598,14.783 +489,0.0338,10.5366,0.11044,7.475,8.14,8.554,8.781,9.143,9.395,9.779,10.537,11.35,11.812,12.134,12.629,12.96,13.608,14.793 +490,0.0336,10.5435,0.11045,7.48,8.145,8.56,8.787,9.149,9.401,9.786,10.544,11.358,11.82,12.143,12.637,12.968,13.617,14.804 +491,0.0334,10.5505,0.11046,7.485,8.151,8.565,8.793,9.155,9.407,9.792,10.551,11.366,11.828,12.151,12.646,12.977,13.627,14.814 +492,0.0332,10.5574,0.11047,7.489,8.156,8.571,8.798,9.161,9.413,9.798,10.557,11.373,11.836,12.159,12.654,12.986,13.636,14.825 +493,0.0329,10.5643,0.11048,7.494,8.161,8.576,8.804,9.167,9.419,9.805,10.564,11.381,11.843,12.167,12.663,12.995,13.646,14.835 +494,0.0327,10.5712,0.1105,7.499,8.166,8.581,8.81,9.172,9.425,9.811,10.571,11.388,11.851,12.175,12.671,13.004,13.655,14.846 +495,0.0325,10.578,0.11051,7.503,8.171,8.587,8.815,9.178,9.431,9.817,10.578,11.396,11.859,12.183,12.68,13.013,13.664,14.856 +496,0.0323,10.5849,0.11052,7.508,8.176,8.592,8.821,9.184,9.437,9.824,10.585,11.403,11.867,12.192,12.688,13.021,13.674,14.866 +497,0.032,10.5918,0.11053,7.513,8.182,8.598,8.826,9.19,9.443,9.83,10.592,11.411,11.875,12.2,12.697,13.03,13.683,14.877 +498,0.0318,10.5987,0.11054,7.518,8.187,8.603,8.832,9.196,9.449,9.836,10.599,11.418,11.883,12.208,12.705,13.039,13.692,14.887 +499,0.0316,10.6056,0.11056,7.522,8.192,8.609,8.837,9.202,9.455,9.843,10.606,11.426,11.891,12.216,12.714,13.048,13.702,14.898 +500,0.0314,10.6125,0.11057,7.527,8.197,8.614,8.843,9.207,9.461,9.849,10.613,11.433,11.899,12.224,12.723,13.057,13.711,14.908 +501,0.0312,10.6193,0.11058,7.532,8.202,8.619,8.849,9.213,9.467,9.855,10.619,11.441,11.906,12.232,12.731,13.066,13.721,14.918 +502,0.0309,10.6262,0.11059,7.536,8.207,8.625,8.854,9.219,9.474,9.862,10.626,11.448,11.914,12.24,12.74,13.074,13.73,14.929 +503,0.0307,10.6331,0.1106,7.541,8.212,8.63,8.86,9.225,9.48,9.868,10.633,11.456,11.922,12.249,12.748,13.083,13.739,14.939 +504,0.0305,10.6399,0.11062,7.546,8.217,8.636,8.865,9.231,9.485,9.874,10.64,11.463,11.93,12.257,12.757,13.092,13.749,14.95 +505,0.0303,10.6468,0.11063,7.55,8.223,8.641,8.871,9.237,9.492,9.88,10.647,11.471,11.938,12.265,12.765,13.101,13.758,14.96 +506,0.03,10.6537,0.11064,7.555,8.228,8.647,8.877,9.243,9.498,9.887,10.654,11.478,11.946,12.273,12.774,13.11,13.767,14.97 +507,0.0298,10.6605,0.11065,7.56,8.233,8.652,8.882,9.248,9.504,9.893,10.661,11.486,11.954,12.281,12.782,13.118,13.777,14.98 +508,0.0296,10.6674,0.11067,7.564,8.238,8.657,8.888,9.254,9.51,9.899,10.667,11.493,11.962,12.289,12.791,13.127,13.786,14.991 +509,0.0294,10.6742,0.11068,7.569,8.243,8.663,8.893,9.26,9.516,9.906,10.674,11.501,11.969,12.297,12.799,13.136,13.795,15.001 +510,0.0292,10.6811,0.11069,7.574,8.248,8.668,8.899,9.266,9.522,9.912,10.681,11.508,11.977,12.305,12.808,13.145,13.805,15.012 +511,0.0289,10.6879,0.1107,7.579,8.253,8.674,8.904,9.272,9.528,9.918,10.688,11.516,11.985,12.313,12.816,13.154,13.814,15.022 +512,0.0287,10.6948,0.11072,7.583,8.258,8.679,8.91,9.277,9.534,9.924,10.695,11.523,11.993,12.322,12.825,13.163,13.824,15.033 +513,0.0285,10.7016,0.11073,7.588,8.263,8.684,8.915,9.283,9.539,9.931,10.702,11.531,12.001,12.33,12.833,13.171,13.833,15.043 +514,0.0283,10.7084,0.11074,7.592,8.269,8.69,8.921,9.289,9.545,9.937,10.708,11.538,12.009,12.338,12.842,13.18,13.842,15.053 +515,0.0281,10.7153,0.11075,7.597,8.274,8.695,8.927,9.295,9.552,9.943,10.715,11.545,12.016,12.346,12.85,13.189,13.851,15.064 +516,0.0279,10.7221,0.11077,7.602,8.279,8.7,8.932,9.3,9.557,9.949,10.722,11.553,12.024,12.354,12.859,13.198,13.861,15.074 +517,0.0276,10.7289,0.11078,7.606,8.284,8.706,8.938,9.306,9.563,9.956,10.729,11.56,12.032,12.362,12.867,13.206,13.87,15.085 +518,0.0274,10.7357,0.11079,7.611,8.289,8.711,8.943,9.312,9.569,9.962,10.736,11.568,12.04,12.37,12.876,13.215,13.879,15.095 +519,0.0272,10.7426,0.11081,7.615,8.294,8.716,8.949,9.318,9.575,9.968,10.743,11.575,12.048,12.378,12.885,13.224,13.889,15.106 +520,0.027,10.7494,0.11082,7.62,8.299,8.722,8.954,9.324,9.581,9.974,10.749,11.583,12.056,12.386,12.893,13.233,13.898,15.116 +521,0.0268,10.7562,0.11083,7.625,8.304,8.727,8.96,9.329,9.587,9.981,10.756,11.59,12.063,12.394,12.901,13.241,13.907,15.126 +522,0.0266,10.763,0.11084,7.63,8.309,8.733,8.965,9.335,9.593,9.987,10.763,11.598,12.071,12.402,12.91,13.25,13.917,15.136 +523,0.0263,10.7698,0.11086,7.634,8.314,8.738,8.971,9.341,9.599,9.993,10.77,11.605,12.079,12.411,12.918,13.259,13.926,15.147 +524,0.0261,10.7766,0.11087,7.639,8.319,8.743,8.976,9.347,9.605,9.999,10.777,11.613,12.087,12.419,12.927,13.268,13.935,15.157 +525,0.0259,10.7835,0.11088,7.643,8.325,8.749,8.982,9.353,9.611,10.006,10.784,11.62,12.095,12.427,12.935,13.277,13.945,15.167 +526,0.0257,10.7903,0.1109,7.648,8.329,8.754,8.987,9.358,9.617,10.012,10.79,11.628,12.103,12.435,12.944,13.285,13.954,15.178 +527,0.0255,10.7971,0.11091,7.653,8.335,8.759,8.993,9.364,9.623,10.018,10.797,11.635,12.11,12.443,12.952,13.294,13.964,15.188 +528,0.0253,10.8039,0.11092,7.657,8.34,8.765,8.998,9.37,9.629,10.024,10.804,11.642,12.118,12.451,12.961,13.303,13.973,15.199 +529,0.025,10.8107,0.11094,7.662,8.345,8.77,9.004,9.376,9.635,10.031,10.811,11.65,12.126,12.459,12.97,13.312,13.982,15.209 +530,0.0248,10.8174,0.11095,7.666,8.35,8.775,9.009,9.381,9.641,10.037,10.817,11.657,12.134,12.467,12.978,13.32,13.991,15.219 +531,0.0246,10.8242,0.11096,7.671,8.355,8.781,9.015,9.387,9.647,10.043,10.824,11.665,12.141,12.475,12.986,13.329,14.001,15.23 +532,0.0244,10.831,0.11098,7.675,8.36,8.786,9.02,9.393,9.653,10.049,10.831,11.672,12.149,12.483,12.995,13.338,14.01,15.24 +533,0.0242,10.8378,0.11099,7.68,8.365,8.791,9.026,9.399,9.659,10.055,10.838,11.679,12.157,12.491,13.003,13.347,14.019,15.25 +534,0.024,10.8446,0.111,7.685,8.37,8.797,9.031,9.404,9.665,10.062,10.845,11.687,12.165,12.499,13.012,13.355,14.029,15.261 +535,0.0238,10.8514,0.11102,7.689,8.375,8.802,9.037,9.41,9.67,10.068,10.851,11.694,12.173,12.508,13.02,13.364,14.038,15.271 +536,0.0236,10.8582,0.11103,7.694,8.38,8.807,9.042,9.416,9.676,10.074,10.858,11.702,12.181,12.516,13.029,13.373,14.047,15.282 +537,0.0233,10.8649,0.11104,7.698,8.385,8.813,9.048,9.422,9.682,10.08,10.865,11.709,12.188,12.523,13.037,13.382,14.056,15.292 +538,0.0231,10.8717,0.11106,7.703,8.39,8.818,9.053,9.427,9.688,10.086,10.872,11.717,12.196,12.532,13.046,13.39,14.066,15.302 +539,0.0229,10.8785,0.11107,7.708,8.395,8.823,9.059,9.433,9.694,10.093,10.879,11.724,12.204,12.54,13.054,13.399,14.075,15.313 +540,0.0227,10.8852,0.11108,7.712,8.4,8.829,9.064,9.439,9.7,10.099,10.885,11.731,12.212,12.548,13.062,13.408,14.084,15.323 +541,0.0225,10.892,0.1111,7.717,8.405,8.834,9.069,9.444,9.706,10.105,10.892,11.739,12.219,12.556,13.071,13.417,14.094,15.333 +542,0.0223,10.8988,0.11111,7.721,8.41,8.839,9.075,9.45,9.712,10.111,10.899,11.746,12.227,12.564,13.079,13.425,14.103,15.344 +543,0.0221,10.9055,0.11113,7.726,8.415,8.844,9.08,9.456,9.718,10.117,10.906,11.754,12.235,12.572,13.088,13.434,14.112,15.354 +544,0.0219,10.9123,0.11114,7.73,8.42,8.85,9.086,9.462,9.724,10.124,10.912,11.761,12.243,12.58,13.096,13.443,14.122,15.364 +545,0.0217,10.9191,0.11115,7.735,8.425,8.855,9.091,9.467,9.73,10.13,10.919,11.768,12.251,12.588,13.105,13.452,14.131,15.375 +546,0.0214,10.9258,0.11117,7.739,8.43,8.86,9.097,9.473,9.735,10.136,10.926,11.776,12.258,12.596,13.113,13.46,14.14,15.385 +547,0.0212,10.9326,0.11118,7.744,8.435,8.866,9.102,9.479,9.741,10.142,10.933,11.783,12.266,12.604,13.122,13.469,14.15,15.396 +548,0.021,10.9393,0.1112,7.748,8.44,8.871,9.108,9.484,9.747,10.148,10.939,11.791,12.274,12.612,13.13,13.478,14.159,15.406 +549,0.0208,10.9461,0.11121,7.753,8.445,8.876,9.113,9.49,9.753,10.154,10.946,11.798,12.282,12.62,13.139,13.487,14.168,15.416 +550,0.0206,10.9528,0.11122,7.758,8.45,8.881,9.119,9.496,9.759,10.161,10.953,11.805,12.289,12.628,13.147,13.495,14.177,15.426 +551,0.0204,10.9596,0.11124,7.762,8.455,8.887,9.124,9.501,9.765,10.167,10.96,11.813,12.297,12.636,13.156,13.504,14.187,15.437 +552,0.0202,10.9663,0.11125,7.767,8.46,8.892,9.129,9.507,9.771,10.173,10.966,11.82,12.305,12.644,13.164,13.513,14.196,15.447 +553,0.02,10.973,0.11127,7.771,8.465,8.897,9.135,9.513,9.776,10.179,10.973,11.828,12.313,12.652,13.172,13.521,14.205,15.458 +554,0.0198,10.9798,0.11128,7.776,8.47,8.902,9.14,9.519,9.782,10.185,10.98,11.835,12.32,12.66,13.181,13.53,14.215,15.468 +555,0.0196,10.9865,0.11129,7.78,8.475,8.908,9.146,9.524,9.788,10.191,10.987,11.842,12.328,12.668,13.189,13.539,14.224,15.478 +556,0.0194,10.9932,0.11131,7.785,8.48,8.913,9.151,9.53,9.794,10.198,10.993,11.85,12.336,12.676,13.198,13.548,14.233,15.489 +557,0.0192,11,0.11132,7.789,8.485,8.918,9.157,9.536,9.8,10.204,11,11.857,12.344,12.684,13.206,13.556,14.242,15.499 +558,0.0189,11.0067,0.11134,7.794,8.49,8.923,9.162,9.541,9.806,10.21,11.007,11.864,12.351,12.692,13.215,13.565,14.252,15.51 +559,0.0187,11.0134,0.11135,7.798,8.495,8.929,9.167,9.547,9.812,10.216,11.013,11.872,12.359,12.7,13.223,13.574,14.261,15.52 +560,0.0185,11.0202,0.11137,7.803,8.5,8.934,9.173,9.553,9.818,10.222,11.02,11.879,12.367,12.708,13.232,13.583,14.271,15.53 +561,0.0183,11.0269,0.11138,7.807,8.505,8.939,9.178,9.558,9.824,10.228,11.027,11.887,12.375,12.716,13.24,13.591,14.28,15.54 +562,0.0181,11.0336,0.11139,7.812,8.51,8.945,9.184,9.564,9.829,10.234,11.034,11.894,12.382,12.724,13.248,13.6,14.289,15.551 +563,0.0179,11.0403,0.11141,7.816,8.515,8.95,9.189,9.57,9.835,10.241,11.04,11.901,12.39,12.732,13.257,13.609,14.298,15.561 +564,0.0177,11.047,0.11142,7.821,8.52,8.955,9.194,9.575,9.841,10.247,11.047,11.909,12.398,12.74,13.265,13.617,14.307,15.571 +565,0.0175,11.0537,0.11144,7.825,8.524,8.96,9.2,9.581,9.847,10.253,11.054,11.916,12.406,12.748,13.274,13.626,14.317,15.582 +566,0.0173,11.0605,0.11145,7.83,8.529,8.966,9.205,9.587,9.853,10.259,11.061,11.923,12.413,12.756,13.282,13.635,14.326,15.592 +567,0.0171,11.0672,0.11147,7.834,8.534,8.971,9.211,9.592,9.859,10.265,11.067,11.931,12.421,12.764,13.291,13.643,14.335,15.603 +568,0.0169,11.0739,0.11148,7.839,8.539,8.976,9.216,9.598,9.864,10.271,11.074,11.938,12.429,12.772,13.299,13.652,14.344,15.613 +569,0.0167,11.0806,0.1115,7.843,8.544,8.981,9.221,9.604,9.87,10.277,11.081,11.945,12.437,12.78,13.307,13.661,14.354,15.623 +570,0.0165,11.0873,0.11151,7.848,8.549,8.986,9.227,9.609,9.876,10.284,11.087,11.953,12.444,12.788,13.316,13.669,14.363,15.634 +571,0.0163,11.094,0.11153,7.852,8.554,8.992,9.232,9.615,9.882,10.29,11.094,11.96,12.452,12.796,13.324,13.678,14.372,15.644 +572,0.0161,11.1007,0.11154,7.857,8.559,8.997,9.237,9.621,9.888,10.296,11.101,11.968,12.46,12.804,13.333,13.687,14.382,15.654 +573,0.0159,11.1074,0.11156,7.861,8.564,9.002,9.243,9.626,9.894,10.302,11.107,11.975,12.468,12.812,13.341,13.696,14.391,15.665 +574,0.0157,11.1141,0.11157,7.866,8.569,9.007,9.248,9.632,9.899,10.308,11.114,11.982,12.475,12.82,13.349,13.704,14.4,15.675 +575,0.0155,11.1208,0.11159,7.87,8.574,9.012,9.254,9.637,9.905,10.314,11.121,11.99,12.483,12.828,13.358,13.713,14.41,15.686 +576,0.0153,11.1275,0.1116,7.875,8.579,9.018,9.259,9.643,9.911,10.32,11.128,11.997,12.491,12.836,13.366,13.722,14.419,15.696 +577,0.0151,11.1342,0.11162,7.879,8.584,9.023,9.264,9.649,9.917,10.326,11.134,12.004,12.498,12.844,13.375,13.731,14.428,15.706 +578,0.0149,11.1409,0.11163,7.883,8.589,9.028,9.27,9.654,9.923,10.332,11.141,12.012,12.506,12.852,13.383,13.739,14.437,15.716 +579,0.0147,11.1476,0.11165,7.888,8.593,9.033,9.275,9.66,9.928,10.339,11.148,12.019,12.514,12.86,13.392,13.748,14.447,15.727 +580,0.0144,11.1543,0.11166,7.892,8.598,9.039,9.281,9.666,9.934,10.345,11.154,12.026,12.522,12.868,13.4,13.757,14.456,15.737 +581,0.0142,11.161,0.11168,7.897,8.603,9.044,9.286,9.671,9.94,10.351,11.161,12.034,12.529,12.877,13.408,13.765,14.465,15.748 +582,0.014,11.1676,0.11169,7.901,8.608,9.049,9.291,9.677,9.946,10.357,11.168,12.041,12.537,12.884,13.417,13.774,14.474,15.758 +583,0.0138,11.1743,0.11171,7.906,8.613,9.054,9.296,9.682,9.952,10.363,11.174,12.048,12.545,12.892,13.425,13.783,14.484,15.768 +584,0.0136,11.181,0.11172,7.91,8.618,9.059,9.302,9.688,9.958,10.369,11.181,12.056,12.552,12.9,13.433,13.791,14.493,15.779 +585,0.0134,11.1877,0.11174,7.915,8.623,9.064,9.307,9.694,9.963,10.375,11.188,12.063,12.56,12.908,13.442,13.8,14.502,15.789 +586,0.0132,11.1944,0.11175,7.919,8.628,9.07,9.313,9.699,9.969,10.381,11.194,12.07,12.568,12.916,13.45,13.809,14.511,15.799 +587,0.013,11.2011,0.11177,7.924,8.633,9.075,9.318,9.705,9.975,10.387,11.201,12.078,12.576,12.924,13.459,13.818,14.521,15.81 +588,0.0128,11.2077,0.11178,7.928,8.638,9.08,9.323,9.711,9.981,10.393,11.208,12.085,12.583,12.932,13.467,13.826,14.53,15.82 +589,0.0126,11.2144,0.1118,7.932,8.642,9.085,9.329,9.716,9.987,10.399,11.214,12.092,12.591,12.94,13.476,13.835,14.539,15.83 +590,0.0124,11.2211,0.11182,7.937,8.647,9.09,9.334,9.722,9.992,10.406,11.221,12.1,12.599,12.948,13.484,13.844,14.549,15.841 +591,0.0122,11.2278,0.11183,7.941,8.652,9.096,9.339,9.727,9.998,10.412,11.228,12.107,12.607,12.956,13.492,13.852,14.558,15.851 +592,0.012,11.2345,0.11185,7.946,8.657,9.101,9.345,9.733,10.004,10.418,11.235,12.114,12.614,12.964,13.501,13.861,14.567,15.862 +593,0.0118,11.2411,0.11186,7.95,8.662,9.106,9.35,9.739,10.01,10.424,11.241,12.122,12.622,12.972,13.509,13.87,14.576,15.872 +594,0.0116,11.2478,0.11188,7.955,8.667,9.111,9.355,9.744,10.016,10.43,11.248,12.129,12.63,12.98,13.518,13.878,14.586,15.882 +595,0.0114,11.2545,0.11189,7.959,8.672,9.116,9.361,9.75,10.021,10.436,11.255,12.136,12.637,12.988,13.526,13.887,14.595,15.893 +596,0.0112,11.2612,0.11191,7.963,8.677,9.122,9.366,9.755,10.027,10.442,11.261,12.144,12.645,12.996,13.535,13.896,14.604,15.903 +597,0.0111,11.2678,0.11192,7.968,8.682,9.127,9.371,9.761,10.033,10.448,11.268,12.151,12.653,13.004,13.543,13.904,14.613,15.913 +598,0.0109,11.2745,0.11194,7.972,8.686,9.132,9.377,9.767,10.039,10.454,11.275,12.158,12.661,13.012,13.551,13.913,14.623,15.924 +599,0.0107,11.2812,0.11196,7.977,8.691,9.137,9.382,9.772,10.045,10.46,11.281,12.166,12.668,13.02,13.56,13.922,14.632,15.934 +600,0.0105,11.2878,0.11197,7.981,8.696,9.142,9.387,9.778,10.05,10.466,11.288,12.173,12.676,13.028,13.568,13.931,14.641,15.944 +601,0.0103,11.2945,0.11199,7.985,8.701,9.147,9.393,9.783,10.056,10.472,11.295,12.18,12.684,13.036,13.577,13.939,14.651,15.955 +602,0.0101,11.3012,0.112,7.99,8.706,9.153,9.398,9.789,10.062,10.479,11.301,12.188,12.691,13.044,13.585,13.948,14.66,15.965 +603,0.0099,11.3078,0.11202,7.994,8.711,9.158,9.403,9.795,10.068,10.485,11.308,12.195,12.699,13.052,13.593,13.957,14.669,15.976 +604,0.0097,11.3145,0.11204,7.999,8.716,9.163,9.409,9.8,10.073,10.491,11.315,12.202,12.707,13.06,13.602,13.966,14.679,15.986 +605,0.0095,11.3212,0.11205,8.003,8.721,9.168,9.414,9.806,10.079,10.497,11.321,12.21,12.715,13.068,13.61,13.974,14.688,15.996 +606,0.0093,11.3278,0.11207,8.008,8.725,9.173,9.419,9.811,10.085,10.503,11.328,12.217,12.722,13.076,13.619,13.983,14.697,16.007 +607,0.0091,11.3345,0.11208,8.012,8.73,9.178,9.425,9.817,10.091,10.509,11.335,12.224,12.73,13.084,13.627,13.991,14.706,16.017 +608,0.0089,11.3412,0.1121,8.016,8.735,9.183,9.43,9.823,10.097,10.515,11.341,12.232,12.738,13.092,13.636,14,14.716,16.028 +609,0.0087,11.3478,0.11212,8.021,8.74,9.189,9.435,9.828,10.102,10.521,11.348,12.239,12.745,13.1,13.644,14.009,14.725,16.038 +610,0.0085,11.3545,0.11213,8.025,8.745,9.194,9.441,9.834,10.108,10.527,11.355,12.246,12.753,13.108,13.652,14.018,14.734,16.048 +611,0.0083,11.3612,0.11215,8.03,8.75,9.199,9.446,9.839,10.114,10.533,11.361,12.254,12.761,13.116,13.661,14.027,14.744,16.059 +612,0.0081,11.3678,0.11216,8.034,8.755,9.204,9.451,9.845,10.12,10.539,11.368,12.261,12.768,13.124,13.669,14.035,14.753,16.069 +613,0.0079,11.3745,0.11218,8.038,8.759,9.209,9.457,9.851,10.125,10.545,11.375,12.268,12.776,13.132,13.678,14.044,14.762,16.08 +614,0.0077,11.3811,0.1122,8.043,8.764,9.214,9.462,9.856,10.131,10.551,11.381,12.276,12.784,13.14,13.686,14.053,14.772,16.09 +615,0.0075,11.3878,0.11221,8.047,8.769,9.22,9.467,9.862,10.137,10.558,11.388,12.283,12.792,13.148,13.694,14.061,14.781,16.1 +616,0.0073,11.3945,0.11223,8.052,8.774,9.225,9.473,9.867,10.143,10.564,11.395,12.29,12.799,13.156,13.703,14.07,14.79,16.111 +617,0.0071,11.4011,0.11224,8.056,8.779,9.23,9.478,9.873,10.149,10.57,11.401,12.297,12.807,13.164,13.711,14.079,14.799,16.121 +618,0.0069,11.4078,0.11226,8.06,8.784,9.235,9.483,9.878,10.154,10.576,11.408,12.305,12.815,13.172,13.72,14.087,14.809,16.132 +619,0.0067,11.4144,0.11228,8.065,8.789,9.24,9.488,9.884,10.16,10.582,11.414,12.312,12.822,13.18,13.728,14.096,14.818,16.142 +620,0.0066,11.4211,0.11229,8.069,8.793,9.245,9.494,9.89,10.166,10.588,11.421,12.319,12.83,13.188,13.736,14.105,14.827,16.152 +621,0.0064,11.4277,0.11231,8.074,8.798,9.25,9.499,9.895,10.172,10.594,11.428,12.327,12.838,13.196,13.745,14.113,14.837,16.163 +622,0.0062,11.4344,0.11233,8.078,8.803,9.256,9.504,9.901,10.177,10.6,11.434,12.334,12.846,13.204,13.753,14.122,14.846,16.174 +623,0.006,11.441,0.11234,8.082,8.808,9.261,9.51,9.906,10.183,10.606,11.441,12.341,12.853,13.212,13.762,14.131,14.855,16.184 +624,0.0058,11.4477,0.11236,8.087,8.813,9.266,9.515,9.912,10.189,10.612,11.448,12.349,12.861,13.22,13.77,14.14,14.865,16.194 +625,0.0056,11.4543,0.11238,8.091,8.818,9.271,9.52,9.917,10.195,10.618,11.454,12.356,12.869,13.228,13.779,14.148,14.874,16.205 +626,0.0054,11.461,0.11239,8.096,8.823,9.276,9.526,9.923,10.2,10.624,11.461,12.363,12.876,13.236,13.787,14.157,14.883,16.215 +627,0.0052,11.4676,0.11241,8.1,8.827,9.281,9.531,9.929,10.206,10.63,11.468,12.371,12.884,13.244,13.795,14.166,14.892,16.226 +628,0.005,11.4743,0.11243,8.104,8.832,9.286,9.536,9.934,10.212,10.636,11.474,12.378,12.892,13.252,13.804,14.175,14.902,16.236 +629,0.0048,11.4809,0.11244,8.109,8.837,9.292,9.542,9.94,10.218,10.642,11.481,12.385,12.9,13.26,13.812,14.183,14.911,16.246 +630,0.0046,11.4876,0.11246,8.113,8.842,9.297,9.547,9.945,10.223,10.648,11.488,12.393,12.907,13.268,13.821,14.192,14.92,16.257 +631,0.0044,11.4942,0.11248,8.117,8.847,9.302,9.552,9.951,10.229,10.654,11.494,12.4,12.915,13.276,13.829,14.201,14.93,16.267 +632,0.0043,11.5009,0.11249,8.122,8.852,9.307,9.557,9.956,10.235,10.66,11.501,12.407,12.923,13.284,13.837,14.209,14.939,16.278 +633,0.0041,11.5075,0.11251,8.126,8.856,9.312,9.563,9.962,10.241,10.666,11.508,12.415,12.93,13.292,13.846,14.218,14.948,16.288 +634,0.0039,11.5142,0.11253,8.13,8.861,9.317,9.568,9.967,10.246,10.672,11.514,12.422,12.938,13.3,13.854,14.227,14.958,16.299 +635,0.0037,11.5208,0.11254,8.135,8.866,9.322,9.573,9.973,10.252,10.679,11.521,12.429,12.946,13.308,13.863,14.235,14.967,16.309 +636,0.0035,11.5274,0.11256,8.139,8.871,9.327,9.579,9.979,10.258,10.685,11.527,12.437,12.953,13.316,13.871,14.244,14.976,16.319 +637,0.0033,11.5341,0.11258,8.143,8.875,9.332,9.584,9.984,10.264,10.691,11.534,12.444,12.961,13.324,13.88,14.253,14.986,16.33 +638,0.0031,11.5407,0.11259,8.148,8.88,9.338,9.589,9.99,10.269,10.697,11.541,12.451,12.969,13.332,13.888,14.262,14.995,16.34 +639,0.0029,11.5474,0.11261,8.152,8.885,9.343,9.594,9.995,10.275,10.703,11.547,12.459,12.977,13.34,13.897,14.27,15.004,16.351 +640,0.0027,11.554,0.11263,8.157,8.89,9.348,9.6,10.001,10.281,10.709,11.554,12.466,12.984,13.348,13.905,14.279,15.014,16.361 +641,0.0025,11.5606,0.11265,8.161,8.895,9.353,9.605,10.006,10.286,10.715,11.561,12.473,12.992,13.356,13.913,14.288,15.023,16.372 +642,0.0024,11.5673,0.11266,8.165,8.9,9.358,9.61,10.012,10.292,10.721,11.567,12.48,13,13.364,13.922,14.297,15.032,16.382 +643,0.0022,11.5739,0.11268,8.17,8.904,9.363,9.615,10.017,10.298,10.727,11.574,12.488,13.007,13.372,13.93,14.305,15.041,16.393 +644,0.002,11.5806,0.1127,8.174,8.909,9.368,9.621,10.023,10.304,10.733,11.581,12.495,13.015,13.38,13.939,14.314,15.051,16.403 +645,0.0018,11.5872,0.11271,8.178,8.914,9.373,9.626,10.029,10.31,10.739,11.587,12.502,13.023,13.388,13.947,14.323,15.06,16.413 +646,0.0016,11.5938,0.11273,8.183,8.919,9.378,9.631,10.034,10.315,10.745,11.594,12.51,13.031,13.396,13.955,14.331,15.069,16.424 +647,0.0014,11.6005,0.11275,8.187,8.924,9.384,9.637,10.04,10.321,10.751,11.601,12.517,13.038,13.404,13.964,14.34,15.079,16.435 +648,0.0012,11.6071,0.11276,8.191,8.929,9.389,9.642,10.045,10.327,10.757,11.607,12.524,13.046,13.411,13.972,14.349,15.088,16.445 +649,0.001,11.6137,0.11278,8.196,8.933,9.394,9.647,10.051,10.332,10.763,11.614,12.532,13.054,13.419,13.981,14.358,15.097,16.455 +650,0.0008,11.6204,0.1128,8.2,8.938,9.399,9.652,10.056,10.338,10.769,11.62,12.539,13.061,13.428,13.989,14.366,15.107,16.466 +651,0.0007,11.627,0.11282,8.204,8.943,9.404,9.658,10.062,10.344,10.775,11.627,12.546,13.069,13.436,13.998,14.375,15.116,16.476 +652,0.0005,11.6336,0.11283,8.209,8.948,9.409,9.663,10.067,10.35,10.781,11.634,12.553,13.077,13.443,14.006,14.384,15.125,16.486 +653,0.0003,11.6403,0.11285,8.213,8.953,9.414,9.668,10.073,10.355,10.787,11.64,12.561,13.085,13.452,14.014,14.393,15.135,16.497 +654,0.0001,11.6469,0.11287,8.217,8.957,9.419,9.673,10.078,10.361,10.793,11.647,12.568,13.092,13.46,14.023,14.401,15.144,16.508 +655,-0.0001,11.6535,0.11289,8.222,8.962,9.424,9.679,10.084,10.367,10.799,11.654,12.575,13.1,13.468,14.031,14.41,15.153,16.518 +656,-0.0003,11.6601,0.1129,8.226,8.967,9.429,9.684,10.089,10.373,10.805,11.66,12.583,13.108,13.475,14.04,14.419,15.163,16.528 +657,-0.0005,11.6668,0.11292,8.23,8.972,9.435,9.689,10.095,10.378,10.811,11.667,12.59,13.115,13.483,14.048,14.428,15.172,16.539 +658,-0.0006,11.6734,0.11294,8.235,8.976,9.44,9.694,10.1,10.384,10.817,11.673,12.597,13.123,13.491,14.057,14.436,15.181,16.55 +659,-0.0008,11.68,0.11296,8.239,8.981,9.445,9.7,10.106,10.39,10.823,11.68,12.605,13.131,13.499,14.065,14.445,15.191,16.56 +660,-0.001,11.6866,0.11297,8.243,8.986,9.45,9.705,10.112,10.395,10.829,11.687,12.612,13.138,13.507,14.073,14.454,15.2,16.57 +661,-0.0012,11.6933,0.11299,8.248,8.991,9.455,9.71,10.117,10.401,10.835,11.693,12.619,13.146,13.515,14.082,14.462,15.209,16.581 +662,-0.0014,11.6999,0.11301,8.252,8.996,9.46,9.715,10.123,10.407,10.841,11.7,12.627,13.154,13.523,14.09,14.471,15.219,16.592 +663,-0.0016,11.7065,0.11303,8.256,9,9.465,9.721,10.128,10.413,10.847,11.707,12.634,13.162,13.531,14.099,14.48,15.228,16.602 +664,-0.0018,11.7131,0.11304,8.261,9.005,9.47,9.726,10.134,10.418,10.853,11.713,12.641,13.169,13.539,14.107,14.488,15.237,16.612 +665,-0.0019,11.7198,0.11306,8.265,9.01,9.475,9.731,10.139,10.424,10.859,11.72,12.649,13.177,13.547,14.116,14.497,15.247,16.623 +666,-0.0021,11.7264,0.11308,8.269,9.015,9.48,9.736,10.145,10.43,10.865,11.726,12.656,13.185,13.555,14.124,14.506,15.256,16.633 +667,-0.0023,11.733,0.1131,8.273,9.019,9.485,9.742,10.15,10.435,10.871,11.733,12.663,13.192,13.563,14.133,14.515,15.265,16.644 +668,-0.0025,11.7396,0.11311,8.278,9.024,9.49,9.747,10.156,10.441,10.877,11.74,12.67,13.2,13.571,14.141,14.523,15.275,16.654 +669,-0.0027,11.7462,0.11313,8.282,9.029,9.495,9.752,10.161,10.447,10.883,11.746,12.678,13.208,13.579,14.149,14.532,15.284,16.665 +670,-0.0029,11.7528,0.11315,8.286,9.034,9.501,9.757,10.167,10.452,10.889,11.753,12.685,13.215,13.587,14.158,14.541,15.293,16.675 +671,-0.003,11.7595,0.11317,8.291,9.038,9.506,9.763,10.172,10.458,10.895,11.76,12.692,13.223,13.595,14.166,14.55,15.303,16.686 +672,-0.0032,11.7661,0.11318,8.295,9.043,9.511,9.768,10.178,10.464,10.901,11.766,12.7,13.231,13.603,14.174,14.558,15.312,16.696 +673,-0.0034,11.7727,0.1132,8.299,9.048,9.516,9.773,10.183,10.47,10.907,11.773,12.707,13.239,13.611,14.183,14.567,15.321,16.707 +674,-0.0036,11.7793,0.11322,8.304,9.053,9.521,9.778,10.189,10.475,10.913,11.779,12.714,13.246,13.619,14.191,14.576,15.331,16.717 +675,-0.0038,11.7859,0.11324,8.308,9.058,9.526,9.784,10.194,10.481,10.919,11.786,12.722,13.254,13.627,14.2,14.585,15.34,16.728 +676,-0.004,11.7925,0.11326,8.312,9.062,9.531,9.789,10.2,10.487,10.925,11.793,12.729,13.262,13.635,14.208,14.593,15.35,16.738 +677,-0.0041,11.7991,0.11327,8.317,9.067,9.536,9.794,10.205,10.492,10.931,11.799,12.736,13.269,13.643,14.217,14.602,15.359,16.748 +678,-0.0043,11.8057,0.11329,8.321,9.072,9.541,9.799,10.211,10.498,10.937,11.806,12.743,13.277,13.651,14.225,14.611,15.368,16.759 +679,-0.0045,11.8124,0.11331,8.325,9.077,9.546,9.805,10.216,10.504,10.943,11.812,12.751,13.285,13.659,14.234,14.62,15.377,16.77 +680,-0.0047,11.819,0.11333,8.329,9.081,9.551,9.81,10.222,10.51,10.949,11.819,12.758,13.292,13.667,14.242,14.628,15.387,16.78 +681,-0.0049,11.8256,0.11335,8.334,9.086,9.556,9.815,10.227,10.515,10.955,11.826,12.765,13.3,13.675,14.251,14.637,15.396,16.791 +682,-0.0051,11.8322,0.11336,8.338,9.091,9.561,9.82,10.233,10.521,10.961,11.832,12.773,13.308,13.683,14.259,14.646,15.405,16.801 +683,-0.0052,11.8388,0.11338,8.342,9.096,9.566,9.825,10.238,10.527,10.967,11.839,12.78,13.316,13.691,14.267,14.654,15.415,16.812 +684,-0.0054,11.8454,0.1134,8.346,9.1,9.571,9.831,10.244,10.532,10.973,11.845,12.787,13.323,13.699,14.276,14.663,15.424,16.822 +685,-0.0056,11.852,0.11342,8.351,9.105,9.576,9.836,10.249,10.538,10.979,11.852,12.794,13.331,13.707,14.284,14.672,15.434,16.833 +686,-0.0058,11.8586,0.11344,8.355,9.11,9.581,9.841,10.255,10.544,10.985,11.859,12.802,13.339,13.715,14.293,14.681,15.443,16.844 +687,-0.006,11.8652,0.11345,8.359,9.115,9.587,9.846,10.26,10.549,10.991,11.865,12.809,13.346,13.723,14.301,14.689,15.452,16.854 +688,-0.0061,11.8718,0.11347,8.364,9.119,9.592,9.852,10.266,10.555,10.997,11.872,12.816,13.354,13.731,14.309,14.698,15.461,16.864 +689,-0.0063,11.8784,0.11349,8.368,9.124,9.597,9.857,10.271,10.561,11.003,11.878,12.824,13.362,13.739,14.318,14.707,15.471,16.875 +690,-0.0065,11.885,0.11351,8.372,9.129,9.602,9.862,10.277,10.566,11.009,11.885,12.831,13.369,13.747,14.326,14.716,15.48,16.885 +691,-0.0067,11.8916,0.11353,8.376,9.134,9.607,9.867,10.282,10.572,11.015,11.892,12.838,13.377,13.755,14.335,14.724,15.49,16.896 +692,-0.0069,11.8982,0.11354,8.381,9.138,9.612,9.872,10.288,10.578,11.021,11.898,12.845,13.385,13.763,14.343,14.733,15.499,16.906 +693,-0.007,11.9048,0.11356,8.385,9.143,9.617,9.878,10.293,10.583,11.027,11.905,12.853,13.392,13.771,14.351,14.742,15.508,16.917 +694,-0.0072,11.9114,0.11358,8.389,9.148,9.622,9.883,10.299,10.589,11.033,11.911,12.86,13.4,13.779,14.36,14.751,15.518,16.927 +695,-0.0074,11.918,0.1136,8.393,9.153,9.627,9.888,10.304,10.595,11.039,11.918,12.867,13.408,13.787,14.368,14.759,15.527,16.938 +696,-0.0076,11.9246,0.11362,8.398,9.157,9.632,9.893,10.31,10.6,11.045,11.925,12.875,13.416,13.795,14.377,14.768,15.536,16.949 +697,-0.0078,11.9312,0.11364,8.402,9.162,9.637,9.898,10.315,10.606,11.051,11.931,12.882,13.423,13.803,14.385,14.777,15.546,16.959 +698,-0.0079,11.9378,0.11365,8.406,9.167,9.642,9.904,10.321,10.612,11.057,11.938,12.889,13.431,13.811,14.394,14.785,15.555,16.969 +699,-0.0081,11.9444,0.11367,8.411,9.172,9.647,9.909,10.326,10.618,11.063,11.944,12.896,13.439,13.819,14.402,14.794,15.564,16.98 +700,-0.0083,11.951,0.11369,8.415,9.176,9.652,9.914,10.332,10.623,11.069,11.951,12.904,13.446,13.827,14.411,14.803,15.574,16.991 +701,-0.0085,11.9576,0.11371,8.419,9.181,9.657,9.919,10.337,10.629,11.075,11.958,12.911,13.454,13.835,14.419,14.812,15.583,17.001 +702,-0.0087,11.9642,0.11373,8.423,9.186,9.662,9.924,10.342,10.635,11.081,11.964,12.918,13.462,13.843,14.428,14.821,15.593,17.012 +703,-0.0088,11.9707,0.11375,8.427,9.19,9.667,9.93,10.348,10.64,11.087,11.971,12.926,13.469,13.851,14.436,14.829,15.602,17.022 +704,-0.009,11.9773,0.11376,8.432,9.195,9.672,9.935,10.353,10.646,11.093,11.977,12.933,13.477,13.858,14.444,14.838,15.611,17.032 +705,-0.0092,11.9839,0.11378,8.436,9.2,9.677,9.94,10.359,10.652,11.099,11.984,12.94,13.485,13.867,14.453,14.847,15.62,17.043 +706,-0.0094,11.9905,0.1138,8.44,9.205,9.682,9.945,10.364,10.657,11.105,11.991,12.947,13.492,13.875,14.461,14.855,15.63,17.054 +707,-0.0095,11.9971,0.11382,8.445,9.209,9.687,9.95,10.37,10.663,11.111,11.997,12.955,13.5,13.883,14.47,14.864,15.639,17.064 +708,-0.0097,12.0037,0.11384,8.449,9.214,9.692,9.956,10.375,10.668,11.117,12.004,12.962,13.508,13.891,14.478,14.873,15.649,17.075 +709,-0.0099,12.0103,0.11386,8.453,9.219,9.697,9.961,10.381,10.674,11.123,12.01,12.969,13.516,13.899,14.487,14.882,15.658,17.086 +710,-0.0101,12.0168,0.11388,8.457,9.223,9.702,9.966,10.386,10.68,11.129,12.017,12.977,13.523,13.907,14.495,14.89,15.667,17.096 +711,-0.0102,12.0234,0.11389,8.462,9.228,9.707,9.971,10.392,10.685,11.135,12.023,12.984,13.531,13.914,14.503,14.899,15.676,17.106 +712,-0.0104,12.03,0.11391,8.466,9.233,9.712,9.976,10.397,10.691,11.141,12.03,12.991,13.538,13.922,14.512,14.908,15.686,17.117 +713,-0.0106,12.0366,0.11393,8.47,9.238,9.717,9.982,10.403,10.697,11.147,12.037,12.998,13.546,13.93,14.52,14.917,15.695,17.127 +714,-0.0108,12.0431,0.11395,8.474,9.242,9.722,9.987,10.408,10.702,11.153,12.043,13.006,13.554,13.938,14.529,14.925,15.705,17.138 +715,-0.011,12.0497,0.11397,8.478,9.247,9.727,9.992,10.413,10.708,11.158,12.05,13.013,13.562,13.946,14.537,14.934,15.714,17.149 +716,-0.0111,12.0563,0.11399,8.483,9.252,9.732,9.997,10.419,10.714,11.164,12.056,13.02,13.569,13.954,14.545,14.943,15.724,17.159 +717,-0.0113,12.0629,0.11401,8.487,9.256,9.737,10.002,10.424,10.719,11.17,12.063,13.028,13.577,13.962,14.554,14.952,15.733,17.17 +718,-0.0115,12.0694,0.11403,8.491,9.261,9.742,10.007,10.43,10.725,11.176,12.069,13.035,13.585,13.97,14.562,14.96,15.742,17.18 +719,-0.0117,12.076,0.11404,8.495,9.266,9.747,10.013,10.435,10.731,11.182,12.076,13.042,13.592,13.978,14.571,14.969,15.751,17.191 +720,-0.0118,12.0826,0.11406,8.5,9.271,9.752,10.018,10.441,10.736,11.188,12.083,13.049,13.6,13.986,14.579,14.978,15.761,17.201 +721,-0.012,12.0891,0.11408,8.504,9.275,9.757,10.023,10.446,10.742,11.194,12.089,13.056,13.608,13.994,14.587,14.986,15.77,17.212 +722,-0.0122,12.0957,0.1141,8.508,9.28,9.762,10.028,10.452,10.748,11.2,12.096,13.064,13.615,14.002,14.596,14.995,15.78,17.222 +723,-0.0124,12.1023,0.11412,8.512,9.285,9.767,10.033,10.457,10.753,11.206,12.102,13.071,13.623,14.01,14.604,15.004,15.789,17.233 +724,-0.0125,12.1088,0.11414,8.516,9.289,9.772,10.038,10.462,10.759,11.212,12.109,13.078,13.631,14.018,14.613,15.013,15.798,17.243 +725,-0.0127,12.1154,0.11416,8.521,9.294,9.777,10.043,10.468,10.764,11.218,12.115,13.086,13.638,14.026,14.621,15.021,15.808,17.254 +726,-0.0129,12.122,0.11418,8.525,9.299,9.782,10.049,10.473,10.77,11.224,12.122,13.093,13.646,14.034,14.63,15.03,15.817,17.265 +727,-0.0131,12.1285,0.1142,8.529,9.303,9.787,10.054,10.479,10.776,11.23,12.129,13.1,13.654,14.042,14.638,15.039,15.827,17.275 +728,-0.0132,12.1351,0.11421,8.533,9.308,9.792,10.059,10.484,10.781,11.236,12.135,13.107,13.661,14.05,14.646,15.048,15.836,17.285 +729,-0.0134,12.1416,0.11423,8.538,9.313,9.797,10.064,10.49,10.787,11.242,12.142,13.115,13.669,14.058,14.655,15.056,15.845,17.296 +730,-0.0136,12.1482,0.11425,8.542,9.317,9.802,10.069,10.495,10.793,11.248,12.148,13.122,13.677,14.066,14.663,15.065,15.854,17.307 +731,-0.0137,12.1548,0.11427,8.546,9.322,9.807,10.075,10.501,10.798,11.254,12.155,13.129,13.684,14.074,14.672,15.074,15.864,17.317 +732,-0.0139,12.1613,0.11429,8.55,9.327,9.812,10.08,10.506,10.804,11.26,12.161,13.136,13.692,14.082,14.68,15.083,15.873,17.328 +733,-0.0141,12.1679,0.11431,8.554,9.331,9.817,10.085,10.511,10.81,11.265,12.168,13.144,13.7,14.09,14.689,15.091,15.883,17.338 +734,-0.0143,12.1744,0.11433,8.558,9.336,9.822,10.09,10.517,10.815,11.271,12.174,13.151,13.707,14.098,14.697,15.1,15.892,17.349 +735,-0.0144,12.181,0.11435,8.563,9.341,9.827,10.095,10.522,10.821,11.277,12.181,13.158,13.715,14.106,14.705,15.109,15.901,17.36 +736,-0.0146,12.1875,0.11437,8.567,9.345,9.832,10.1,10.528,10.826,11.283,12.188,13.165,13.723,14.114,14.714,15.118,15.911,17.37 +737,-0.0148,12.1941,0.11439,8.571,9.35,9.837,10.105,10.533,10.832,11.289,12.194,13.173,13.73,14.122,14.722,15.126,15.92,17.381 +738,-0.015,12.2006,0.1144,8.575,9.355,9.842,10.111,10.539,10.838,11.295,12.201,13.18,13.738,14.129,14.731,15.135,15.929,17.391 +739,-0.0151,12.2072,0.11442,8.58,9.359,9.847,10.116,10.544,10.843,11.301,12.207,13.187,13.746,14.137,14.739,15.144,15.939,17.402 +740,-0.0153,12.2137,0.11444,8.584,9.364,9.852,10.121,10.549,10.849,11.307,12.214,13.194,13.753,14.145,14.747,15.152,15.948,17.412 +741,-0.0155,12.2202,0.11446,8.588,9.369,9.857,10.126,10.555,10.854,11.313,12.22,13.202,13.761,14.153,14.756,15.161,15.957,17.423 +742,-0.0156,12.2268,0.11448,8.592,9.373,9.862,10.131,10.56,10.86,11.319,12.227,13.209,13.769,14.161,14.764,15.17,15.967,17.433 +743,-0.0158,12.2333,0.1145,8.596,9.378,9.867,10.136,10.565,10.866,11.325,12.233,13.216,13.776,14.169,14.773,15.178,15.976,17.444 +744,-0.016,12.2398,0.11452,8.6,9.382,9.872,10.141,10.571,10.871,11.33,12.24,13.223,13.784,14.177,14.781,15.187,15.985,17.454 +745,-0.0162,12.2464,0.11454,8.605,9.387,9.877,10.146,10.576,10.877,11.336,12.246,13.231,13.792,14.185,14.79,15.196,15.995,17.465 +746,-0.0163,12.2529,0.11456,8.609,9.392,9.882,10.151,10.582,10.882,11.342,12.253,13.238,13.799,14.193,14.798,15.205,16.004,17.476 +747,-0.0165,12.2594,0.11458,8.613,9.396,9.887,10.157,10.587,10.888,11.348,12.259,13.245,13.807,14.201,14.806,15.213,16.014,17.486 +748,-0.0167,12.266,0.1146,8.617,9.401,9.892,10.162,10.592,10.894,11.354,12.266,13.252,13.815,14.209,14.815,15.222,16.023,17.497 +749,-0.0168,12.2725,0.11462,8.621,9.406,9.896,10.167,10.598,10.899,11.36,12.273,13.26,13.822,14.217,14.823,15.231,16.032,17.507 +750,-0.017,12.279,0.11464,8.625,9.41,9.901,10.172,10.603,10.905,11.366,12.279,13.267,13.83,14.225,14.832,15.24,16.042,17.518 +751,-0.0172,12.2855,0.11465,8.63,9.415,9.906,10.177,10.609,10.91,11.372,12.286,13.274,13.837,14.233,14.84,15.248,16.051,17.528 +752,-0.0174,12.292,0.11467,8.634,9.42,9.911,10.182,10.614,10.916,11.378,12.292,13.281,13.845,14.241,14.848,15.257,16.06,17.539 +753,-0.0175,12.2986,0.11469,8.638,9.424,9.916,10.187,10.62,10.922,11.384,12.299,13.288,13.853,14.249,14.857,15.266,16.069,17.549 +754,-0.0177,12.3051,0.11471,8.642,9.429,9.921,10.192,10.625,10.927,11.39,12.305,13.296,13.86,14.256,14.865,15.274,16.079,17.56 +755,-0.0179,12.3116,0.11473,8.646,9.434,9.926,10.198,10.63,10.933,11.395,12.312,13.303,13.868,14.264,14.873,15.283,16.088,17.57 +756,-0.018,12.3181,0.11475,8.65,9.438,9.931,10.203,10.636,10.938,11.401,12.318,13.31,13.876,14.272,14.882,15.292,16.097,17.581 +757,-0.0182,12.3246,0.11477,8.654,9.443,9.936,10.208,10.641,10.944,11.407,12.325,13.317,13.883,14.28,14.89,15.3,16.107,17.591 +758,-0.0184,12.3311,0.11479,8.659,9.447,9.941,10.213,10.646,10.949,11.413,12.331,13.324,13.891,14.288,14.899,15.309,16.116,17.602 +759,-0.0185,12.3376,0.11481,8.663,9.452,9.946,10.218,10.652,10.955,11.419,12.338,13.332,13.898,14.296,14.907,15.318,16.125,17.613 +760,-0.0187,12.3441,0.11483,8.667,9.457,9.951,10.223,10.657,10.96,11.425,12.344,13.339,13.906,14.304,14.915,15.327,16.135,17.623 +761,-0.0189,12.3506,0.11485,8.671,9.461,9.956,10.228,10.662,10.966,11.431,12.351,13.346,13.914,14.312,14.924,15.335,16.144,17.634 +762,-0.0191,12.3571,0.11487,8.675,9.466,9.961,10.233,10.668,10.972,11.436,12.357,13.353,13.921,14.32,14.932,15.344,16.154,17.644 +763,-0.0192,12.3636,0.11489,8.679,9.47,9.965,10.238,10.673,10.977,11.442,12.364,13.361,13.929,14.328,14.941,15.353,16.163,17.655 +764,-0.0194,12.3701,0.11491,8.683,9.475,9.97,10.243,10.678,10.983,11.448,12.37,13.368,13.937,14.336,14.949,15.361,16.172,17.665 +765,-0.0196,12.3766,0.11493,8.687,9.48,9.975,10.248,10.684,10.988,11.454,12.377,13.375,13.944,14.344,14.957,15.37,16.182,17.676 +766,-0.0197,12.383,0.11495,8.691,9.484,9.98,10.253,10.689,10.994,11.46,12.383,13.382,13.952,14.351,14.966,15.379,16.191,17.686 +767,-0.0199,12.3895,0.11497,8.696,9.489,9.985,10.258,10.694,10.999,11.466,12.39,13.389,13.959,14.359,14.974,15.387,16.2,17.697 +768,-0.0201,12.396,0.11498,8.7,9.493,9.99,10.264,10.7,11.005,11.472,12.396,13.396,13.967,14.367,14.982,15.396,16.209,17.707 +769,-0.0202,12.4025,0.115,8.704,9.498,9.995,10.269,10.705,11.011,11.478,12.403,13.404,13.974,14.375,14.991,15.405,16.219,17.718 +770,-0.0204,12.409,0.11502,8.708,9.503,10,10.274,10.711,11.016,11.483,12.409,13.411,13.982,14.383,14.999,15.413,16.228,17.728 +771,-0.0206,12.4154,0.11504,8.712,9.507,10.005,10.279,10.716,11.022,11.489,12.415,13.418,13.99,14.391,15.007,15.422,16.237,17.739 +772,-0.0207,12.4219,0.11506,8.716,9.512,10.01,10.284,10.721,11.027,11.495,12.422,13.425,13.997,14.399,15.016,15.431,16.246,17.749 +773,-0.0209,12.4284,0.11508,8.72,9.516,10.014,10.289,10.727,11.033,11.501,12.428,13.432,14.005,14.407,15.024,15.439,16.256,17.76 +774,-0.0211,12.4348,0.1151,8.725,9.521,10.019,10.294,10.732,11.038,11.507,12.435,13.439,14.012,14.415,15.032,15.448,16.265,17.77 +775,-0.0212,12.4413,0.11512,8.729,9.525,10.024,10.299,10.737,11.044,11.513,12.441,13.447,14.02,14.422,15.041,15.457,16.274,17.781 +776,-0.0214,12.4477,0.11514,8.733,9.53,10.029,10.304,10.743,11.049,11.518,12.448,13.454,14.028,14.43,15.049,15.465,16.284,17.791 +777,-0.0216,12.4542,0.11516,8.737,9.535,10.034,10.309,10.748,11.055,11.524,12.454,13.461,14.035,14.438,15.057,15.474,16.293,17.802 +778,-0.0217,12.4606,0.11518,8.741,9.539,10.039,10.314,10.753,11.06,11.53,12.461,13.468,14.043,14.446,15.066,15.483,16.302,17.812 +779,-0.0219,12.4671,0.1152,8.745,9.544,10.044,10.319,10.759,11.066,11.536,12.467,13.475,14.05,14.454,15.074,15.491,16.312,17.823 +780,-0.0221,12.4735,0.11522,8.749,9.548,10.048,10.324,10.764,11.071,11.542,12.474,13.482,14.058,14.462,15.082,15.5,16.321,17.833 +781,-0.0222,12.48,0.11524,8.753,9.553,10.053,10.329,10.769,11.077,11.547,12.48,13.49,14.065,14.47,15.091,15.509,16.33,17.844 +782,-0.0224,12.4864,0.11526,8.757,9.557,10.058,10.334,10.774,11.082,11.553,12.486,13.497,14.073,14.478,15.099,15.517,16.339,17.854 +783,-0.0226,12.4929,0.11528,8.761,9.562,10.063,10.339,10.78,11.088,11.559,12.493,13.504,14.081,14.485,15.107,15.526,16.349,17.865 +784,-0.0227,12.4993,0.1153,8.765,9.566,10.068,10.344,10.785,11.093,11.565,12.499,13.511,14.088,14.493,15.116,15.535,16.358,17.875 +785,-0.0229,12.5057,0.11532,8.769,9.571,10.073,10.349,10.79,11.099,11.571,12.506,13.518,14.096,14.501,15.124,15.543,16.367,17.886 +786,-0.0231,12.5121,0.11534,8.773,9.575,10.078,10.354,10.796,11.104,11.576,12.512,13.525,14.103,14.509,15.132,15.552,16.377,17.896 +787,-0.0232,12.5186,0.11536,8.778,9.58,10.082,10.359,10.801,11.11,11.582,12.519,13.533,14.111,14.517,15.141,15.56,16.386,17.907 +788,-0.0234,12.525,0.11538,8.782,9.585,10.087,10.364,10.806,11.115,11.588,12.525,13.54,14.118,14.525,15.149,15.569,16.395,17.917 +789,-0.0236,12.5314,0.1154,8.786,9.589,10.092,10.369,10.811,11.121,11.594,12.531,13.547,14.126,14.532,15.157,15.578,16.404,17.928 +790,-0.0237,12.5378,0.11542,8.79,9.594,10.097,10.374,10.817,11.126,11.6,12.538,13.554,14.133,14.54,15.166,15.586,16.414,17.938 +791,-0.0239,12.5442,0.11544,8.794,9.598,10.102,10.379,10.822,11.132,11.605,12.544,13.561,14.141,14.548,15.174,15.595,16.423,17.949 +792,-0.0241,12.5506,0.11545,8.798,9.603,10.107,10.384,10.827,11.137,11.611,12.551,13.568,14.148,14.556,15.182,15.603,16.432,17.959 +793,-0.0242,12.557,0.11547,8.802,9.607,10.111,10.389,10.833,11.143,11.617,12.557,13.575,14.156,14.564,15.19,15.612,16.441,17.969 +794,-0.0244,12.5634,0.11549,8.806,9.612,10.116,10.394,10.838,11.148,11.623,12.563,13.582,14.163,14.571,15.198,15.62,16.45,17.98 +795,-0.0246,12.5698,0.11551,8.81,9.616,10.121,10.399,10.843,11.154,11.629,12.57,13.589,14.171,14.579,15.207,15.629,16.46,17.99 +796,-0.0247,12.5762,0.11553,8.814,9.621,10.126,10.404,10.848,11.159,11.634,12.576,13.596,14.178,14.587,15.215,15.638,16.469,18.001 +797,-0.0249,12.5826,0.11555,8.818,9.625,10.131,10.409,10.854,11.164,11.64,12.583,13.604,14.186,14.595,15.223,15.646,16.478,18.011 +798,-0.025,12.589,0.11557,8.822,9.63,10.136,10.414,10.859,11.17,11.646,12.589,13.611,14.193,14.603,15.232,15.655,16.487,18.021 +799,-0.0252,12.5954,0.11559,8.826,9.634,10.14,10.419,10.864,11.175,11.652,12.595,13.618,14.201,14.611,15.24,15.663,16.497,18.032 +800,-0.0254,12.6018,0.11561,8.83,9.639,10.145,10.424,10.869,11.181,11.657,12.602,13.625,14.209,14.618,15.248,15.672,16.506,18.043 +801,-0.0255,12.6082,0.11563,8.834,9.643,10.15,10.429,10.875,11.186,11.663,12.608,13.632,14.216,14.626,15.256,15.681,16.515,18.053 +802,-0.0257,12.6145,0.11565,8.838,9.648,10.155,10.434,10.88,11.192,11.669,12.615,13.639,14.223,14.634,15.265,15.689,16.524,18.063 +803,-0.0259,12.6209,0.11567,8.842,9.652,10.16,10.439,10.885,11.197,11.675,12.621,13.646,14.231,14.642,15.273,15.698,16.533,18.074 +804,-0.026,12.6273,0.11569,8.846,9.657,10.164,10.444,10.89,11.203,11.68,12.627,13.653,14.239,14.65,15.281,15.706,16.543,18.084 +805,-0.0262,12.6336,0.11571,8.85,9.661,10.169,10.449,10.896,11.208,11.686,12.634,13.66,14.246,14.657,15.289,15.715,16.552,18.095 +806,-0.0264,12.64,0.11573,8.854,9.666,10.174,10.454,10.901,11.213,11.692,12.64,13.667,14.254,14.665,15.298,15.724,16.561,18.105 +807,-0.0265,12.6464,0.11575,8.858,9.67,10.179,10.459,10.906,11.219,11.698,12.646,13.674,14.261,14.673,15.306,15.732,16.57,18.116 +808,-0.0267,12.6527,0.11577,8.862,9.675,10.183,10.464,10.911,11.224,11.703,12.653,13.681,14.268,14.681,15.314,15.741,16.579,18.126 +809,-0.0268,12.6591,0.11579,8.866,9.679,10.188,10.469,10.917,11.23,11.709,12.659,13.689,14.276,14.688,15.322,15.749,16.589,18.136 +810,-0.027,12.6654,0.11581,8.87,9.684,10.193,10.474,10.922,11.235,11.715,12.665,13.696,14.283,14.696,15.331,15.758,16.598,18.147 +811,-0.0272,12.6718,0.11583,8.874,9.688,10.198,10.479,10.927,11.241,11.72,12.672,13.703,14.291,14.704,15.339,15.766,16.607,18.157 +812,-0.0273,12.6781,0.11585,8.878,9.693,10.202,10.484,10.932,11.246,11.726,12.678,13.71,14.298,14.712,15.347,15.775,16.616,18.168 +813,-0.0275,12.6844,0.11587,8.882,9.697,10.207,10.489,10.937,11.251,11.732,12.684,13.717,14.306,14.719,15.355,15.783,16.625,18.178 +814,-0.0277,12.6908,0.11589,8.886,9.701,10.212,10.494,10.943,11.257,11.738,12.691,13.724,14.313,14.727,15.364,15.792,16.635,18.189 +815,-0.0278,12.6971,0.11591,8.89,9.706,10.217,10.498,10.948,11.262,11.743,12.697,13.731,14.321,14.735,15.372,15.8,16.644,18.199 +816,-0.028,12.7034,0.11593,8.894,9.71,10.221,10.503,10.953,11.267,11.749,12.703,13.738,14.328,14.743,15.38,15.809,16.653,18.209 +817,-0.0281,12.7098,0.11595,8.898,9.715,10.226,10.508,10.958,11.273,11.755,12.71,13.745,14.336,14.751,15.388,15.818,16.662,18.22 +818,-0.0283,12.7161,0.11597,8.902,9.719,10.231,10.513,10.963,11.278,11.76,12.716,13.752,14.343,14.758,15.396,15.826,16.671,18.23 +819,-0.0285,12.7224,0.11599,8.906,9.724,10.236,10.518,10.969,11.284,11.766,12.722,13.759,14.351,14.766,15.405,15.835,16.68,18.24 +820,-0.0286,12.7287,0.11601,8.91,9.728,10.24,10.523,10.974,11.289,11.772,12.729,13.766,14.358,14.774,15.413,15.843,16.69,18.251 +821,-0.0288,12.735,0.11602,8.914,9.733,10.245,10.528,10.979,11.294,11.777,12.735,13.773,14.365,14.781,15.421,15.851,16.698,18.261 +822,-0.0289,12.7413,0.11604,8.918,9.737,10.25,10.533,10.984,11.3,11.783,12.741,13.78,14.373,14.789,15.429,15.86,16.707,18.271 +823,-0.0291,12.7476,0.11606,8.922,9.742,10.255,10.538,10.989,11.305,11.789,12.748,13.787,14.38,14.797,15.437,15.868,16.717,18.281 +824,-0.0293,12.7539,0.11608,8.926,9.746,10.26,10.543,10.995,11.311,11.794,12.754,13.794,14.387,14.804,15.445,15.877,16.726,18.292 +825,-0.0294,12.7602,0.1161,8.93,9.75,10.264,10.548,11,11.316,11.8,12.76,13.801,14.395,14.812,15.454,15.885,16.735,18.302 +826,-0.0296,12.7665,0.11612,8.934,9.755,10.269,10.552,11.005,11.321,11.806,12.767,13.808,14.402,14.82,15.462,15.894,16.744,18.312 +827,-0.0297,12.7728,0.11614,8.938,9.759,10.274,10.557,11.01,11.327,11.812,12.773,13.815,14.41,14.828,15.47,15.902,16.753,18.323 +828,-0.0299,12.7791,0.11616,8.942,9.764,10.278,10.562,11.015,11.332,11.817,12.779,13.822,14.417,14.835,15.478,15.911,16.762,18.333 +829,-0.0301,12.7854,0.11618,8.946,9.768,10.283,10.567,11.02,11.337,11.823,12.785,13.829,14.425,14.843,15.486,15.919,16.772,18.344 +830,-0.0302,12.7916,0.1162,8.95,9.772,10.288,10.572,11.025,11.343,11.828,12.792,13.836,14.432,14.851,15.494,15.928,16.781,18.354 +831,-0.0304,12.7979,0.11622,8.954,9.777,10.293,10.577,11.031,11.348,11.834,12.798,13.843,14.439,14.858,15.503,15.936,16.79,18.364 +832,-0.0305,12.8042,0.11624,8.958,9.781,10.297,10.582,11.036,11.353,11.84,12.804,13.85,14.447,14.866,15.511,15.945,16.799,18.375 +833,-0.0307,12.8104,0.11626,8.962,9.786,10.302,10.587,11.041,11.359,11.845,12.81,13.857,14.454,14.874,15.519,15.953,16.808,18.385 +834,-0.0309,12.8167,0.11628,8.966,9.79,10.307,10.591,11.046,11.364,11.851,12.817,13.864,14.462,14.881,15.527,15.962,16.817,18.395 +835,-0.031,12.823,0.1163,8.97,9.794,10.311,10.596,11.051,11.369,11.857,12.823,13.871,14.469,14.889,15.535,15.97,16.826,18.406 +836,-0.0312,12.8292,0.11632,8.973,9.799,10.316,10.601,11.056,11.375,11.862,12.829,13.878,14.476,14.897,15.543,15.979,16.835,18.416 +837,-0.0313,12.8355,0.11634,8.977,9.803,10.321,10.606,11.061,11.38,11.868,12.836,13.885,14.484,14.904,15.551,15.987,16.844,18.426 +838,-0.0315,12.8417,0.11636,8.981,9.808,10.325,10.611,11.067,11.385,11.874,12.842,13.892,14.491,14.912,15.56,15.995,16.853,18.436 +839,-0.0317,12.848,0.11638,8.985,9.812,10.33,10.616,11.072,11.391,11.879,12.848,13.899,14.498,14.92,15.568,16.004,16.863,18.447 +840,-0.0318,12.8542,0.1164,8.989,9.816,10.335,10.621,11.077,11.396,11.885,12.854,13.905,14.506,14.927,15.576,16.012,16.872,18.457 +841,-0.032,12.8604,0.11642,8.993,9.821,10.339,10.625,11.082,11.401,11.89,12.86,13.912,14.513,14.935,15.584,16.021,16.881,18.467 +842,-0.0321,12.8667,0.11644,8.997,9.825,10.344,10.63,11.087,11.407,11.896,12.867,13.919,14.52,14.943,15.592,16.029,16.89,18.478 +843,-0.0323,12.8729,0.11646,9.001,9.829,10.349,10.635,11.092,11.412,11.902,12.873,13.926,14.528,14.95,15.6,16.038,16.899,18.488 +844,-0.0324,12.8791,0.11647,9.005,9.834,10.353,10.64,11.097,11.417,11.907,12.879,13.933,14.535,14.958,15.608,16.046,16.907,18.498 +845,-0.0326,12.8853,0.11649,9.009,9.838,10.358,10.645,11.102,11.423,11.913,12.885,13.94,14.542,14.965,15.616,16.054,16.916,18.508 +846,-0.0328,12.8915,0.11651,9.013,9.843,10.363,10.65,11.107,11.428,11.918,12.892,13.947,14.55,14.973,15.624,16.063,16.926,18.518 +847,-0.0329,12.8978,0.11653,9.017,9.847,10.367,10.655,11.113,11.433,11.924,12.898,13.954,14.557,14.981,15.632,16.071,16.935,18.529 +848,-0.0331,12.904,0.11655,9.021,9.851,10.372,10.659,11.118,11.438,11.93,12.904,13.961,14.564,14.988,15.64,16.079,16.944,18.539 +849,-0.0332,12.9102,0.11657,9.024,9.856,10.377,10.664,11.123,11.444,11.935,12.91,13.968,14.572,14.996,15.648,16.088,16.953,18.549 +850,-0.0334,12.9164,0.11659,9.028,9.86,10.381,10.669,11.128,11.449,11.941,12.916,13.975,14.579,15.004,15.657,16.096,16.962,18.559 +851,-0.0336,12.9226,0.11661,9.032,9.864,10.386,10.674,11.133,11.454,11.946,12.923,13.981,14.586,15.011,15.665,16.105,16.971,18.57 +852,-0.0337,12.9288,0.11663,9.036,9.869,10.391,10.679,11.138,11.46,11.952,12.929,13.988,14.594,15.019,15.673,16.113,16.98,18.58 +853,-0.0339,12.935,0.11665,9.04,9.873,10.395,10.683,11.143,11.465,11.958,12.935,13.995,14.601,15.026,15.681,16.121,16.989,18.59 +854,-0.034,12.9411,0.11667,9.044,9.877,10.4,10.688,11.148,11.47,11.963,12.941,14.002,14.608,15.034,15.689,16.13,16.998,18.6 +855,-0.0342,12.9473,0.11669,9.048,9.882,10.404,10.693,11.153,11.475,11.969,12.947,14.009,14.615,15.042,15.697,16.138,17.007,18.611 +856,-0.0343,12.9535,0.11671,9.051,9.886,10.409,10.698,11.158,11.481,11.974,12.954,14.016,14.623,15.049,15.705,16.147,17.016,18.621 +857,-0.0345,12.9597,0.11673,9.055,9.89,10.414,10.702,11.163,11.486,11.98,12.96,14.023,14.63,15.057,15.713,16.155,17.025,18.631 +858,-0.0346,12.9658,0.11675,9.059,9.895,10.418,10.707,11.168,11.491,11.985,12.966,14.03,14.637,15.064,15.721,16.163,17.034,18.641 +859,-0.0348,12.972,0.11677,9.063,9.899,10.423,10.712,11.173,11.496,11.991,12.972,14.037,14.645,15.072,15.729,16.172,17.043,18.651 +860,-0.035,12.9782,0.11679,9.067,9.903,10.428,10.717,11.178,11.502,11.996,12.978,14.043,14.652,15.08,15.737,16.18,17.052,18.662 +861,-0.0351,12.9843,0.11681,9.071,9.907,10.432,10.721,11.183,11.507,12.002,12.984,14.05,14.659,15.087,15.745,16.188,17.061,18.672 +862,-0.0353,12.9905,0.11683,9.074,9.912,10.437,10.726,11.189,11.512,12.007,12.991,14.057,14.666,15.095,15.753,16.197,17.07,18.682 +863,-0.0354,12.9966,0.11684,9.079,9.916,10.441,10.731,11.194,11.517,12.013,12.997,14.064,14.674,15.102,15.761,16.205,17.078,18.692 +864,-0.0356,13.0028,0.11686,9.082,9.921,10.446,10.736,11.199,11.523,12.019,13.003,14.071,14.681,15.11,15.769,16.213,17.087,18.702 +865,-0.0357,13.0089,0.11688,9.086,9.925,10.451,10.741,11.204,11.528,12.024,13.009,14.078,14.688,15.117,15.777,16.221,17.096,18.712 +866,-0.0359,13.0151,0.1169,9.09,9.929,10.455,10.746,11.209,11.533,12.03,13.015,14.084,14.695,15.125,15.785,16.23,17.105,18.722 +867,-0.0361,13.0212,0.11692,9.094,9.933,10.46,10.75,11.214,11.538,12.035,13.021,14.091,14.703,15.132,15.793,16.238,17.114,18.733 +868,-0.0362,13.0273,0.11694,9.098,9.938,10.464,10.755,11.219,11.543,12.041,13.027,14.098,14.71,15.14,15.801,16.246,17.123,18.743 +869,-0.0364,13.0334,0.11696,9.101,9.942,10.469,10.76,11.224,11.549,12.046,13.033,14.105,14.717,15.147,15.809,16.255,17.132,18.753 +870,-0.0365,13.0396,0.11698,9.105,9.946,10.474,10.764,11.229,11.554,12.052,13.04,14.112,14.724,15.155,15.817,16.263,17.141,18.763 +871,-0.0367,13.0457,0.117,9.109,9.951,10.478,10.769,11.234,11.559,12.057,13.046,14.119,14.732,15.162,15.825,16.271,17.15,18.773 +872,-0.0368,13.0518,0.11702,9.113,9.955,10.483,10.774,11.239,11.564,12.063,13.052,14.125,14.739,15.17,15.833,16.28,17.159,18.783 +873,-0.037,13.0579,0.11704,9.117,9.959,10.487,10.779,11.244,11.569,12.068,13.058,14.132,14.746,15.177,15.841,16.288,17.168,18.794 +874,-0.0371,13.064,0.11706,9.12,9.963,10.492,10.783,11.249,11.575,12.074,13.064,14.139,14.753,15.185,15.849,16.296,17.177,18.804 +875,-0.0373,13.0701,0.11708,9.124,9.968,10.496,10.788,11.254,11.58,12.079,13.07,14.146,14.76,15.192,15.857,16.304,17.186,18.814 +876,-0.0374,13.0762,0.1171,9.128,9.972,10.501,10.793,11.259,11.585,12.085,13.076,14.153,14.768,15.2,15.865,16.313,17.195,18.824 +877,-0.0376,13.0823,0.11712,9.132,9.976,10.505,10.797,11.264,11.59,12.09,13.082,14.159,14.775,15.207,15.873,16.321,17.204,18.834 +878,-0.0378,13.0884,0.11713,9.136,9.981,10.51,10.802,11.269,11.595,12.096,13.088,14.166,14.782,15.215,15.881,16.329,17.212,18.844 +879,-0.0379,13.0945,0.11715,9.14,9.985,10.515,10.807,11.274,11.601,12.101,13.095,14.173,14.789,15.222,15.888,16.337,17.221,18.854 +880,-0.0381,13.1006,0.11717,9.144,9.989,10.519,10.812,11.279,11.606,12.107,13.101,14.18,14.796,15.23,15.896,16.346,17.23,18.864 +881,-0.0382,13.1067,0.11719,9.147,9.993,10.524,10.816,11.284,11.611,12.112,13.107,14.186,14.804,15.237,15.904,16.354,17.239,18.874 +882,-0.0384,13.1127,0.11721,9.151,9.997,10.528,10.821,11.289,11.616,12.117,13.113,14.193,14.811,15.245,15.912,16.362,17.248,18.884 +883,-0.0385,13.1188,0.11723,9.155,10.002,10.533,10.826,11.294,11.621,12.123,13.119,14.2,14.818,15.252,15.92,16.37,17.257,18.894 +884,-0.0387,13.1249,0.11725,9.159,10.006,10.537,10.831,11.299,11.626,12.128,13.125,14.207,14.825,15.26,15.928,16.379,17.266,18.905 +885,-0.0388,13.131,0.11727,9.162,10.01,10.542,10.835,11.304,11.632,12.134,13.131,14.214,14.832,15.267,15.936,16.387,17.275,18.915 +886,-0.039,13.137,0.11729,9.166,10.014,10.546,10.84,11.309,11.637,12.139,13.137,14.22,14.839,15.275,15.944,16.395,17.283,18.925 +887,-0.0391,13.1431,0.11731,9.17,10.019,10.551,10.845,11.314,11.642,12.145,13.143,14.227,14.847,15.282,15.952,16.403,17.292,18.935 +888,-0.0393,13.1491,0.11733,9.174,10.023,10.555,10.849,11.318,11.647,12.15,13.149,14.234,14.854,15.289,15.96,16.412,17.301,18.945 +889,-0.0394,13.1552,0.11735,9.177,10.027,10.56,10.854,11.323,11.652,12.156,13.155,14.241,14.861,15.297,15.968,16.42,17.31,18.955 +890,-0.0396,13.1612,0.11737,9.181,10.031,10.564,10.859,11.328,11.657,12.161,13.161,14.247,14.868,15.304,15.976,16.428,17.319,18.965 +891,-0.0397,13.1673,0.11739,9.185,10.035,10.569,10.863,11.333,11.662,12.166,13.167,14.254,14.875,15.312,15.984,16.436,17.328,18.975 +892,-0.0399,13.1733,0.1174,9.189,10.04,10.574,10.868,11.338,11.668,12.172,13.173,14.261,14.882,15.319,15.991,16.444,17.336,18.985 +893,-0.0401,13.1793,0.11742,9.193,10.044,10.578,10.873,11.343,11.673,12.177,13.179,14.267,14.889,15.326,15.999,16.452,17.345,18.995 +894,-0.0402,13.1854,0.11744,9.196,10.048,10.583,10.877,11.348,11.678,12.183,13.185,14.274,14.897,15.334,16.007,16.461,17.354,19.005 +895,-0.0404,13.1914,0.11746,9.2,10.052,10.587,10.882,11.353,11.683,12.188,13.191,14.281,14.904,15.341,16.015,16.469,17.363,19.015 +896,-0.0405,13.1974,0.11748,9.204,10.057,10.591,10.887,11.358,11.688,12.194,13.197,14.288,14.911,15.349,16.023,16.477,17.372,19.025 +897,-0.0407,13.2034,0.1175,9.208,10.061,10.596,10.891,11.363,11.693,12.199,13.203,14.294,14.918,15.356,16.031,16.485,17.381,19.035 +898,-0.0408,13.2095,0.11752,9.211,10.065,10.6,10.896,11.368,11.698,12.204,13.21,14.301,14.925,15.364,16.039,16.494,17.389,19.045 +899,-0.041,13.2155,0.11754,9.215,10.069,10.605,10.901,11.373,11.703,12.21,13.216,14.308,14.932,15.371,16.047,16.502,17.398,19.055 +900,-0.0411,13.2215,0.11756,9.219,10.073,10.609,10.905,11.378,11.708,12.215,13.222,14.314,14.939,15.379,16.054,16.51,17.407,19.065 +901,-0.0413,13.2275,0.11758,9.223,10.077,10.614,10.91,11.383,11.713,12.221,13.228,14.321,14.946,15.386,16.062,16.518,17.416,19.075 +902,-0.0414,13.2335,0.1176,9.226,10.082,10.618,10.914,11.387,11.719,12.226,13.234,14.328,14.953,15.393,16.07,16.526,17.425,19.085 +903,-0.0416,13.2395,0.11762,9.23,10.086,10.623,10.919,11.392,11.724,12.231,13.24,14.335,14.961,15.401,16.078,16.534,17.434,19.096 +904,-0.0417,13.2455,0.11763,9.234,10.09,10.627,10.924,11.397,11.729,12.237,13.246,14.341,14.968,15.408,16.086,16.542,17.442,19.105 +905,-0.0419,13.2515,0.11765,9.238,10.094,10.632,10.929,11.402,11.734,12.242,13.252,14.348,14.975,15.415,16.094,16.551,17.451,19.115 +906,-0.042,13.2575,0.11767,9.241,10.098,10.636,10.933,11.407,11.739,12.248,13.258,14.354,14.982,15.423,16.101,16.559,17.46,19.125 +907,-0.0422,13.2634,0.11769,9.245,10.103,10.641,10.938,11.412,11.744,12.253,13.263,14.361,14.989,15.43,16.109,16.567,17.468,19.135 +908,-0.0423,13.2694,0.11771,9.249,10.107,10.645,10.942,11.417,11.749,12.258,13.269,14.368,14.996,15.437,16.117,16.575,17.477,19.145 +909,-0.0425,13.2754,0.11773,9.252,10.111,10.65,10.947,11.422,11.754,12.264,13.275,14.374,15.003,15.445,16.125,16.583,17.486,19.155 +910,-0.0426,13.2814,0.11775,9.256,10.115,10.654,10.952,11.427,11.759,12.269,13.281,14.381,15.01,15.452,16.133,16.591,17.495,19.165 +911,-0.0428,13.2873,0.11777,9.26,10.119,10.658,10.956,11.431,11.764,12.274,13.287,14.388,15.017,15.46,16.14,16.599,17.504,19.175 +912,-0.0429,13.2933,0.11779,9.263,10.123,10.663,10.961,11.436,11.769,12.28,13.293,14.394,15.024,15.467,16.148,16.608,17.512,19.185 +913,-0.0431,13.2993,0.11781,9.267,10.127,10.667,10.965,11.441,11.774,12.285,13.299,14.401,15.031,15.474,16.156,16.616,17.521,19.195 +914,-0.0432,13.3052,0.11783,9.271,10.132,10.672,10.97,11.446,11.779,12.29,13.305,14.408,15.038,15.482,16.164,16.624,17.53,19.205 +915,-0.0434,13.3112,0.11785,9.275,10.136,10.676,10.974,11.451,11.784,12.296,13.311,14.414,15.045,15.489,16.172,16.632,17.539,19.215 +916,-0.0435,13.3171,0.11786,9.278,10.14,10.681,10.979,11.456,11.79,12.301,13.317,14.421,15.052,15.496,16.179,16.64,17.547,19.224 +917,-0.0437,13.3231,0.11788,9.282,10.144,10.685,10.984,11.461,11.795,12.307,13.323,14.428,15.059,15.504,16.187,16.648,17.556,19.235 +918,-0.0438,13.329,0.1179,9.286,10.148,10.69,10.988,11.466,11.8,12.312,13.329,14.434,15.066,15.511,16.195,16.656,17.564,19.244 +919,-0.044,13.335,0.11792,9.289,10.152,10.694,10.993,11.47,11.805,12.317,13.335,14.441,15.073,15.518,16.203,16.664,17.573,19.255 +920,-0.0441,13.3409,0.11794,9.293,10.156,10.698,10.997,11.475,11.81,12.322,13.341,14.448,15.08,15.526,16.211,16.672,17.582,19.264 +921,-0.0443,13.3468,0.11796,9.297,10.161,10.703,11.002,11.48,11.815,12.328,13.347,14.454,15.088,15.533,16.218,16.68,17.591,19.274 +922,-0.0444,13.3528,0.11798,9.3,10.165,10.707,11.007,11.485,11.82,12.333,13.353,14.461,15.095,15.54,16.226,16.689,17.6,19.284 +923,-0.0446,13.3587,0.118,9.304,10.169,10.712,11.011,11.49,11.825,12.338,13.359,14.467,15.102,15.548,16.234,16.697,17.608,19.294 +924,-0.0447,13.3646,0.11802,9.308,10.173,10.716,11.016,11.495,11.83,12.344,13.365,14.474,15.109,15.555,16.242,16.705,17.617,19.304 +925,-0.0449,13.3705,0.11804,9.311,10.177,10.72,11.02,11.499,11.835,12.349,13.371,14.481,15.116,15.562,16.249,16.713,17.626,19.314 +926,-0.045,13.3765,0.11805,9.315,10.181,10.725,11.025,11.504,11.84,12.354,13.377,14.487,15.123,15.569,16.257,16.721,17.634,19.324 +927,-0.0452,13.3824,0.11807,9.319,10.185,10.729,11.03,11.509,11.845,12.36,13.382,14.494,15.13,15.577,16.265,16.729,17.643,19.334 +928,-0.0453,13.3883,0.11809,9.323,10.19,10.734,11.034,11.514,11.85,12.365,13.388,14.5,15.137,15.584,16.273,16.737,17.652,19.344 +929,-0.0455,13.3942,0.11811,9.326,10.194,10.738,11.039,11.519,11.855,12.37,13.394,14.507,15.144,15.591,16.28,16.745,17.66,19.354 +930,-0.0456,13.4001,0.11813,9.33,10.198,10.742,11.043,11.524,11.86,12.376,13.4,14.514,15.151,15.599,16.288,16.753,17.669,19.363 +931,-0.0458,13.406,0.11815,9.334,10.202,10.747,11.048,11.528,11.865,12.381,13.406,14.52,15.158,15.606,16.296,16.761,17.678,19.373 +932,-0.0459,13.4119,0.11817,9.337,10.206,10.751,11.052,11.533,11.87,12.386,13.412,14.527,15.165,15.613,16.304,16.769,17.686,19.383 +933,-0.0461,13.4178,0.11819,9.341,10.21,10.756,11.057,11.538,11.875,12.391,13.418,14.533,15.172,15.62,16.311,16.777,17.695,19.393 +934,-0.0462,13.4237,0.11821,9.344,10.214,10.76,11.061,11.543,11.88,12.397,13.424,14.54,15.179,15.628,16.319,16.785,17.704,19.403 +935,-0.0464,13.4296,0.11823,9.348,10.218,10.764,11.066,11.548,11.885,12.402,13.43,14.547,15.186,15.635,16.327,16.793,17.713,19.413 +936,-0.0465,13.4354,0.11825,9.352,10.222,10.769,11.07,11.552,11.89,12.407,13.435,14.553,15.192,15.642,16.335,16.801,17.721,19.423 +937,-0.0466,13.4413,0.11826,9.355,10.226,10.773,11.075,11.557,11.895,12.413,13.441,14.56,15.199,15.649,16.342,16.809,17.729,19.432 +938,-0.0468,13.4472,0.11828,9.359,10.23,10.778,11.08,11.562,11.9,12.418,13.447,14.566,15.206,15.657,16.35,16.817,17.738,19.442 +939,-0.0469,13.4531,0.1183,9.363,10.234,10.782,11.084,11.567,11.905,12.423,13.453,14.573,15.213,15.664,16.358,16.825,17.747,19.452 +940,-0.0471,13.4589,0.11832,9.366,10.239,10.786,11.088,11.572,11.91,12.428,13.459,14.579,15.22,15.671,16.365,16.833,17.755,19.462 +941,-0.0472,13.4648,0.11834,9.37,10.243,10.791,11.093,11.576,11.915,12.434,13.465,14.586,15.227,15.678,16.373,16.841,17.764,19.472 +942,-0.0474,13.4707,0.11836,9.374,10.247,10.795,11.098,11.581,11.92,12.439,13.471,14.592,15.234,15.686,16.381,16.849,17.773,19.482 +943,-0.0475,13.4765,0.11838,9.377,10.251,10.799,11.102,11.586,11.925,12.444,13.477,14.599,15.241,15.693,16.388,16.857,17.781,19.492 +944,-0.0477,13.4824,0.1184,9.381,10.255,10.804,11.107,11.591,11.93,12.449,13.482,14.605,15.248,15.7,16.396,16.865,17.79,19.502 +945,-0.0478,13.4883,0.11842,9.384,10.259,10.808,11.111,11.595,11.935,12.455,13.488,14.612,15.255,15.707,16.404,16.873,17.799,19.512 +946,-0.048,13.4941,0.11843,9.388,10.263,10.812,11.116,11.6,11.94,12.46,13.494,14.618,15.262,15.714,16.411,16.881,17.807,19.521 +947,-0.0481,13.5,0.11845,9.392,10.267,10.817,11.12,11.605,11.945,12.465,13.5,14.625,15.269,15.722,16.419,16.889,17.816,19.531 +948,-0.0483,13.5058,0.11847,9.395,10.271,10.821,11.125,11.61,11.95,12.471,13.506,14.632,15.276,15.729,16.427,16.897,17.824,19.541 +949,-0.0484,13.5116,0.11849,9.399,10.275,10.825,11.129,11.614,11.954,12.476,13.512,14.638,15.283,15.736,16.434,16.905,17.833,19.55 +950,-0.0486,13.5175,0.11851,9.403,10.279,10.83,11.134,11.619,11.959,12.481,13.518,14.645,15.29,15.743,16.442,16.913,17.842,19.56 +951,-0.0487,13.5233,0.11853,9.406,10.283,10.834,11.138,11.624,11.964,12.486,13.523,14.651,15.297,15.751,16.45,16.921,17.85,19.57 +952,-0.0489,13.5291,0.11855,9.41,10.287,10.838,11.143,11.629,11.969,12.491,13.529,14.658,15.304,15.758,16.457,16.929,17.859,19.58 +953,-0.049,13.535,0.11857,9.413,10.291,10.843,11.147,11.633,11.974,12.497,13.535,14.664,15.311,15.765,16.465,16.937,17.868,19.59 +954,-0.0491,13.5408,0.11859,9.417,10.295,10.847,11.151,11.638,11.979,12.502,13.541,14.671,15.317,15.772,16.473,16.945,17.876,19.6 +955,-0.0493,13.5466,0.1186,9.421,10.299,10.851,11.156,11.643,11.984,12.507,13.547,14.677,15.324,15.779,16.48,16.953,17.884,19.609 +956,-0.0494,13.5524,0.11862,9.424,10.303,10.856,11.161,11.648,11.989,12.512,13.552,14.684,15.331,15.786,16.488,16.961,17.893,19.619 +957,-0.0496,13.5583,0.11864,9.428,10.308,10.86,11.165,11.653,11.994,12.518,13.558,14.69,15.338,15.794,16.496,16.969,17.902,19.629 +958,-0.0497,13.5641,0.11866,9.431,10.311,10.864,11.17,11.657,11.999,12.523,13.564,14.697,15.345,15.801,16.503,16.977,17.91,19.639 +959,-0.0499,13.5699,0.11868,9.435,10.316,10.869,11.174,11.662,12.004,12.528,13.57,14.703,15.352,15.808,16.511,16.985,17.919,19.648 +960,-0.05,13.5757,0.1187,9.438,10.319,10.873,11.178,11.667,12.009,12.533,13.576,14.71,15.359,15.815,16.519,16.993,17.928,19.658 +961,-0.0502,13.5815,0.11872,9.442,10.323,10.877,11.183,11.671,12.014,12.538,13.582,14.716,15.366,15.823,16.526,17.001,17.936,19.668 +962,-0.0503,13.5873,0.11874,9.446,10.327,10.881,11.187,11.676,12.019,12.544,13.587,14.723,15.373,15.83,16.534,17.009,17.945,19.678 +963,-0.0505,13.5931,0.11876,9.449,10.331,10.886,11.192,11.681,12.023,12.549,13.593,14.729,15.379,15.837,16.542,17.017,17.953,19.688 +964,-0.0506,13.5989,0.11877,9.453,10.336,10.89,11.196,11.686,12.028,12.554,13.599,14.736,15.386,15.844,16.549,17.024,17.962,19.697 +965,-0.0507,13.6047,0.11879,9.456,10.34,10.894,11.201,11.69,12.033,12.559,13.605,14.742,15.393,15.851,16.557,17.032,17.97,19.707 +966,-0.0509,13.6105,0.11881,9.46,10.344,10.899,11.205,11.695,12.038,12.564,13.611,14.749,15.4,15.858,16.564,17.04,17.979,19.717 +967,-0.051,13.6163,0.11883,9.464,10.348,10.903,11.21,11.7,12.043,12.57,13.616,14.755,15.407,15.866,16.572,17.048,17.987,19.726 +968,-0.0512,13.622,0.11885,9.467,10.352,10.907,11.214,11.704,12.048,12.575,13.622,14.761,15.414,15.873,16.579,17.056,17.996,19.736 +969,-0.0513,13.6278,0.11887,9.471,10.356,10.911,11.218,11.709,12.053,12.58,13.628,14.768,15.421,15.88,16.587,17.064,18.005,19.746 +970,-0.0515,13.6336,0.11889,9.474,10.36,10.916,11.223,11.714,12.058,12.585,13.634,14.774,15.427,15.887,16.595,17.072,18.013,19.756 +971,-0.0516,13.6394,0.11891,9.478,10.364,10.92,11.227,11.719,12.063,12.59,13.639,14.781,15.434,15.894,16.602,17.08,18.022,19.766 +972,-0.0518,13.6452,0.11892,9.482,10.368,10.925,11.232,11.723,12.068,12.596,13.645,14.787,15.441,15.901,16.61,17.088,18.03,19.775 +973,-0.0519,13.6509,0.11894,9.485,10.372,10.929,11.236,11.728,12.072,12.601,13.651,14.794,15.448,15.908,16.617,17.096,18.038,19.785 +974,-0.052,13.6567,0.11896,9.489,10.376,10.933,11.241,11.733,12.077,12.606,13.657,14.8,15.455,15.915,16.625,17.103,18.047,19.794 +975,-0.0522,13.6625,0.11898,9.492,10.38,10.937,11.245,11.737,12.082,12.611,13.663,14.807,15.462,15.923,16.633,17.111,18.056,19.804 +976,-0.0523,13.6682,0.119,9.496,10.384,10.941,11.25,11.742,12.087,12.616,13.668,14.813,15.469,15.93,16.64,17.119,18.064,19.814 +977,-0.0525,13.674,0.11902,9.499,10.388,10.946,11.254,11.747,12.092,12.621,13.674,14.819,15.475,15.937,16.648,17.127,18.073,19.824 +978,-0.0526,13.6797,0.11904,9.503,10.391,10.95,11.258,11.751,12.097,12.626,13.68,14.826,15.482,15.944,16.655,17.135,18.081,19.834 +979,-0.0528,13.6855,0.11906,9.506,10.395,10.954,11.263,11.756,12.102,12.632,13.686,14.832,15.489,15.951,16.663,17.143,18.09,19.844 +980,-0.0529,13.6912,0.11907,9.51,10.4,10.959,11.267,11.761,12.107,12.637,13.691,14.839,15.496,15.958,16.67,17.151,18.098,19.853 +981,-0.053,13.697,0.11909,9.513,10.404,10.963,11.272,11.765,12.111,12.642,13.697,14.845,15.503,15.965,16.678,17.159,18.107,19.862 +982,-0.0532,13.7027,0.11911,9.517,10.407,10.967,11.276,11.77,12.116,12.647,13.703,14.852,15.509,15.972,16.685,17.167,18.115,19.872 +983,-0.0533,13.7085,0.11913,9.52,10.411,10.971,11.281,11.775,12.121,12.652,13.709,14.858,15.516,15.98,16.693,17.174,18.124,19.882 +984,-0.0535,13.7142,0.11915,9.524,10.415,10.976,11.285,11.779,12.126,12.657,13.714,14.864,15.523,15.987,16.701,17.182,18.132,19.892 +985,-0.0536,13.7199,0.11917,9.527,10.419,10.98,11.289,11.784,12.131,12.662,13.72,14.871,15.53,15.994,16.708,17.19,18.141,19.901 +986,-0.0538,13.7257,0.11919,9.531,10.423,10.984,11.294,11.789,12.136,12.668,13.726,14.877,15.537,16.001,16.716,17.198,18.149,19.911 +987,-0.0539,13.7314,0.1192,9.535,10.427,10.988,11.298,11.794,12.141,12.673,13.731,14.884,15.543,16.008,16.723,17.206,18.157,19.92 +988,-0.054,13.7371,0.11922,9.538,10.431,10.993,11.303,11.798,12.145,12.678,13.737,14.89,15.55,16.015,16.731,17.214,18.166,19.93 +989,-0.0542,13.7429,0.11924,9.542,10.435,10.997,11.307,11.803,12.15,12.683,13.743,14.896,15.557,16.022,16.738,17.222,18.175,19.94 +990,-0.0543,13.7486,0.11926,9.545,10.439,11.001,11.311,11.807,12.155,12.688,13.749,14.903,15.564,16.029,16.746,17.229,18.183,19.95 +991,-0.0545,13.7543,0.11928,9.549,10.443,11.005,11.316,11.812,12.16,12.693,13.754,14.909,15.571,16.036,16.753,17.237,18.192,19.96 +992,-0.0546,13.76,0.1193,9.552,10.447,11.009,11.32,11.817,12.165,12.698,13.76,14.916,15.578,16.043,16.761,17.245,18.2,19.969 +993,-0.0548,13.7657,0.11932,9.556,10.451,11.014,11.324,11.821,12.169,12.703,13.766,14.922,15.584,16.05,16.769,17.253,18.209,19.979 +994,-0.0549,13.7715,0.11933,9.559,10.455,11.018,11.329,11.826,12.174,12.709,13.772,14.928,15.591,16.057,16.776,17.261,18.217,19.988 +995,-0.055,13.7772,0.11935,9.563,10.459,11.022,11.333,11.831,12.179,12.714,13.777,14.935,15.598,16.065,16.783,17.269,18.225,19.998 +996,-0.0552,13.7829,0.11937,9.566,10.463,11.026,11.338,11.835,12.184,12.719,13.783,14.941,15.605,16.072,16.791,17.276,18.234,20.008 +997,-0.0553,13.7886,0.11939,9.57,10.467,11.031,11.342,11.84,12.189,12.724,13.789,14.948,15.611,16.079,16.799,17.284,18.242,20.017 +998,-0.0555,13.7943,0.11941,9.573,10.471,11.035,11.346,11.845,12.194,12.729,13.794,14.954,15.618,16.086,16.806,17.292,18.251,20.027 +999,-0.0556,13.8,0.11943,9.577,10.475,11.039,11.351,11.849,12.198,12.734,13.8,14.96,15.625,16.093,16.814,17.3,18.259,20.037 +1000,-0.0558,13.8057,0.11945,9.58,10.479,11.043,11.355,11.854,12.203,12.739,13.806,14.967,15.632,16.1,16.821,17.308,18.268,20.047 +1001,-0.0559,13.8114,0.11946,9.584,10.483,11.048,11.36,11.859,12.208,12.745,13.811,14.973,15.639,16.107,16.829,17.315,18.276,20.056 +1002,-0.056,13.8171,0.11948,9.587,10.487,11.052,11.364,11.863,12.213,12.75,13.817,14.979,15.645,16.114,16.836,17.323,18.284,20.065 +1003,-0.0562,13.8228,0.1195,9.591,10.491,11.056,11.368,11.868,12.218,12.755,13.823,14.986,15.652,16.121,16.844,17.331,18.293,20.075 +1004,-0.0563,13.8285,0.11952,9.594,10.494,11.06,11.373,11.872,12.223,12.76,13.829,14.992,15.659,16.128,16.851,17.339,18.301,20.085 +1005,-0.0565,13.8341,0.11954,9.598,10.498,11.064,11.377,11.877,12.227,12.765,13.834,14.998,15.666,16.135,16.859,17.347,18.31,20.095 +1006,-0.0566,13.8398,0.11956,9.601,10.502,11.068,11.381,11.882,12.232,12.77,13.84,15.005,15.672,16.142,16.866,17.355,18.318,20.104 +1007,-0.0567,13.8455,0.11957,9.605,10.506,11.073,11.386,11.886,12.237,12.775,13.846,15.011,15.679,16.149,16.873,17.362,18.326,20.113 +1008,-0.0569,13.8512,0.11959,9.608,10.51,11.077,11.39,11.891,12.242,12.78,13.851,15.018,15.686,16.156,16.881,17.37,18.335,20.123 +1009,-0.057,13.8569,0.11961,9.612,10.514,11.081,11.395,11.896,12.247,12.785,13.857,15.024,15.693,16.163,16.889,17.378,18.343,20.133 +1010,-0.0572,13.8625,0.11963,9.615,10.518,11.085,11.399,11.9,12.251,12.79,13.863,15.03,15.699,16.17,16.896,17.386,18.352,20.143 +1011,-0.0573,13.8682,0.11965,9.619,10.522,11.09,11.403,11.905,12.256,12.795,13.868,15.037,15.706,16.177,16.904,17.394,18.36,20.152 +1012,-0.0574,13.8739,0.11967,9.622,10.526,11.094,11.408,11.909,12.261,12.8,13.874,15.043,15.713,16.184,16.911,17.401,18.369,20.162 +1013,-0.0576,13.8796,0.11968,9.626,10.53,11.098,11.412,11.914,12.266,12.806,13.88,15.049,15.72,16.191,16.918,17.409,18.377,20.171 +1014,-0.0577,13.8852,0.1197,9.629,10.534,11.102,11.416,11.919,12.271,12.811,13.885,15.056,15.726,16.198,16.926,17.417,18.385,20.181 +1015,-0.0579,13.8909,0.11972,9.633,10.538,11.106,11.421,11.923,12.275,12.816,13.891,15.062,15.733,16.205,16.933,17.425,18.394,20.191 +1016,-0.058,13.8966,0.11974,9.636,10.541,11.111,11.425,11.928,12.28,12.821,13.897,15.068,15.74,16.213,16.941,17.432,18.402,20.2 +1017,-0.0581,13.9022,0.11976,9.64,10.545,11.115,11.429,11.932,12.285,12.826,13.902,15.075,15.747,16.219,16.948,17.44,18.411,20.21 +1018,-0.0583,13.9079,0.11978,9.643,10.549,11.119,11.434,11.937,12.29,12.831,13.908,15.081,15.753,16.227,16.956,17.448,18.419,20.22 +1019,-0.0584,13.9135,0.11979,9.647,10.553,11.123,11.438,11.942,12.295,12.836,13.914,15.087,15.76,16.233,16.963,17.456,18.427,20.229 +1020,-0.0586,13.9192,0.11981,9.65,10.557,11.127,11.442,11.946,12.299,12.841,13.919,15.094,15.767,16.24,16.971,17.463,18.436,20.238 +1021,-0.0587,13.9248,0.11983,9.654,10.561,11.131,11.447,11.951,12.304,12.846,13.925,15.1,15.773,16.247,16.978,17.471,18.444,20.248 +1022,-0.0588,13.9305,0.11985,9.657,10.565,11.136,11.451,11.955,12.309,12.851,13.931,15.106,15.78,16.255,16.986,17.479,18.453,20.258 +1023,-0.059,13.9361,0.11987,9.661,10.569,11.14,11.455,11.96,12.314,12.856,13.936,15.113,15.787,16.262,16.993,17.487,18.461,20.267 +1024,-0.0591,13.9418,0.11988,9.664,10.573,11.144,11.46,11.965,12.318,12.861,13.942,15.119,15.793,16.268,17,17.494,18.469,20.277 +1025,-0.0593,13.9474,0.1199,9.668,10.577,11.148,11.464,11.969,12.323,12.866,13.947,15.125,15.8,16.275,17.008,17.502,18.478,20.286 +1026,-0.0594,13.9531,0.11992,9.671,10.58,11.152,11.468,11.974,12.328,12.871,13.953,15.132,15.807,16.283,17.015,17.51,18.486,20.296 +1027,-0.0595,13.9587,0.11994,9.674,10.584,11.156,11.473,11.978,12.333,12.876,13.959,15.138,15.814,16.289,17.023,17.518,18.494,20.306 +1028,-0.0597,13.9644,0.11996,9.678,10.588,11.161,11.477,11.983,12.337,12.882,13.964,15.144,15.82,16.297,17.03,17.526,18.503,20.315 +1029,-0.0598,13.97,0.11998,9.681,10.592,11.165,11.481,11.987,12.342,12.887,13.97,15.151,15.827,16.304,17.038,17.533,18.511,20.325 +1030,-0.06,13.9756,0.11999,9.685,10.596,11.169,11.486,11.992,12.347,12.892,13.976,15.157,15.834,16.31,17.045,17.541,18.519,20.334 +1031,-0.0601,13.9813,0.12001,9.688,10.6,11.173,11.49,11.997,12.352,12.897,13.981,15.163,15.841,16.317,17.053,17.549,18.528,20.344 +1032,-0.0602,13.9869,0.12003,9.692,10.604,11.177,11.494,12.001,12.356,12.902,13.987,15.169,15.847,16.324,17.06,17.556,18.536,20.353 +1033,-0.0604,13.9925,0.12005,9.695,10.608,11.181,11.499,12.006,12.361,12.907,13.993,15.176,15.854,16.331,17.067,17.564,18.545,20.363 +1034,-0.0605,13.9982,0.12007,9.699,10.611,11.186,11.503,12.01,12.366,12.912,13.998,15.182,15.861,16.339,17.075,17.572,18.553,20.373 +1035,-0.0607,14.0038,0.12008,9.702,10.616,11.19,11.507,12.015,12.371,12.917,14.004,15.188,15.867,16.345,17.082,17.58,18.561,20.382 +1036,-0.0608,14.0094,0.1201,9.706,10.619,11.194,11.512,12.019,12.376,12.922,14.009,15.195,15.874,16.352,17.09,17.587,18.57,20.391 +1037,-0.0609,14.015,0.12012,9.709,10.623,11.198,11.516,12.024,12.38,12.927,14.015,15.201,15.881,16.359,17.097,17.595,18.578,20.401 +1038,-0.0611,14.0207,0.12014,9.713,10.627,11.202,11.52,12.029,12.385,12.932,14.021,15.207,15.887,16.366,17.105,17.603,18.587,20.411 +1039,-0.0612,14.0263,0.12016,9.716,10.631,11.206,11.524,12.033,12.39,12.937,14.026,15.213,15.894,16.373,17.112,17.611,18.595,20.421 +1040,-0.0613,14.0319,0.12017,9.72,10.635,11.211,11.529,12.038,12.395,12.942,14.032,15.22,15.901,16.38,17.119,17.618,18.603,20.429 +1041,-0.0615,14.0375,0.12019,9.723,10.639,11.215,11.533,12.042,12.399,12.947,14.038,15.226,15.907,16.387,17.127,17.626,18.611,20.439 +1042,-0.0616,14.0431,0.12021,9.726,10.643,11.219,11.537,12.047,12.404,12.952,14.043,15.232,15.914,16.394,17.134,17.634,18.62,20.449 +1043,-0.0618,14.0488,0.12023,9.73,10.646,11.223,11.542,12.051,12.409,12.957,14.049,15.239,15.921,16.401,17.142,17.642,18.628,20.459 +1044,-0.0619,14.0544,0.12025,9.733,10.65,11.227,11.546,12.056,12.413,12.962,14.054,15.245,15.928,16.408,17.149,17.649,18.637,20.468 +1045,-0.062,14.06,0.12026,9.737,10.654,11.231,11.55,12.061,12.418,12.967,14.06,15.251,15.934,16.415,17.156,17.657,18.645,20.477 +1046,-0.0622,14.0656,0.12028,9.74,10.658,11.236,11.555,12.065,12.423,12.972,14.066,15.257,15.941,16.422,17.164,17.665,18.653,20.487 +1047,-0.0623,14.0712,0.1203,9.744,10.662,11.24,11.559,12.07,12.428,12.977,14.071,15.264,15.947,16.429,17.171,17.672,18.661,20.497 +1048,-0.0624,14.0768,0.12032,9.747,10.666,11.244,11.563,12.074,12.432,12.982,14.077,15.27,15.954,16.436,17.179,17.68,18.67,20.506 +1049,-0.0626,14.0824,0.12033,9.751,10.67,11.248,11.568,12.079,12.437,12.987,14.082,15.276,15.961,16.443,17.186,17.688,18.678,20.515 +1050,-0.0627,14.088,0.12035,9.754,10.674,11.252,11.572,12.083,12.442,12.992,14.088,15.282,15.967,16.45,17.193,17.695,18.686,20.525 +1051,-0.0629,14.0936,0.12037,9.757,10.677,11.256,11.576,12.088,12.447,12.997,14.094,15.289,15.974,16.457,17.201,17.703,18.695,20.535 +1052,-0.063,14.0992,0.12039,9.761,10.681,11.26,11.58,12.092,12.451,13.002,14.099,15.295,15.981,16.464,17.208,17.711,18.703,20.544 +1053,-0.0631,14.1048,0.12041,9.764,10.685,11.264,11.585,12.097,12.456,13.007,14.105,15.301,15.987,16.471,17.216,17.719,18.711,20.554 +1054,-0.0633,14.1104,0.12042,9.768,10.689,11.269,11.589,12.102,12.461,13.012,14.11,15.308,15.994,16.477,17.223,17.726,18.719,20.563 +1055,-0.0634,14.116,0.12044,9.771,10.693,11.273,11.593,12.106,12.466,13.017,14.116,15.314,16.001,16.484,17.23,17.734,18.728,20.573 +1056,-0.0635,14.1216,0.12046,9.775,10.697,11.277,11.598,12.111,12.47,13.022,14.122,15.32,16.007,16.491,17.238,17.742,18.736,20.582 +1057,-0.0637,14.1272,0.12048,9.778,10.701,11.281,11.602,12.115,12.475,13.027,14.127,15.326,16.014,16.498,17.245,17.749,18.745,20.592 +1058,-0.0638,14.1328,0.1205,9.781,10.704,11.285,11.606,12.12,12.48,13.032,14.133,15.333,16.021,16.505,17.253,17.757,18.753,20.602 +1059,-0.0639,14.1384,0.12051,9.785,10.708,11.289,11.611,12.124,12.485,13.037,14.138,15.339,16.027,16.512,17.26,17.765,18.761,20.611 +1060,-0.0641,14.144,0.12053,9.788,10.712,11.294,11.615,12.129,12.489,13.042,14.144,15.345,16.034,16.519,17.267,17.772,18.77,20.62 +1061,-0.0642,14.1495,0.12055,9.792,10.716,11.298,11.619,12.133,12.494,13.047,14.15,15.351,16.041,16.526,17.275,17.78,18.778,20.63 +1062,-0.0644,14.1551,0.12057,9.795,10.72,11.302,11.623,12.138,12.499,13.052,14.155,15.358,16.047,16.533,17.282,17.788,18.786,20.64 +1063,-0.0645,14.1607,0.12058,9.799,10.724,11.306,11.628,12.142,12.503,13.057,14.161,15.364,16.054,16.54,17.289,17.795,18.794,20.648 +1064,-0.0646,14.1663,0.1206,9.802,10.728,11.31,11.632,12.147,12.508,13.062,14.166,15.37,16.061,16.547,17.297,17.803,18.803,20.658 +1065,-0.0648,14.1719,0.12062,9.806,10.731,11.314,11.636,12.151,12.513,13.067,14.172,15.376,16.067,16.554,17.304,17.811,18.811,20.668 +1066,-0.0649,14.1775,0.12064,9.809,10.735,11.318,11.64,12.156,12.517,13.072,14.178,15.383,16.074,16.561,17.312,17.819,18.82,20.677 +1067,-0.065,14.183,0.12065,9.812,10.739,11.322,11.645,12.161,12.522,13.077,14.183,15.389,16.08,16.568,17.319,17.826,18.827,20.686 +1068,-0.0652,14.1886,0.12067,9.816,10.743,11.327,11.649,12.165,12.527,13.082,14.189,15.395,16.087,16.575,17.326,17.834,18.836,20.696 +1069,-0.0653,14.1942,0.12069,9.819,10.747,11.331,11.653,12.17,12.532,13.087,14.194,15.401,16.094,16.582,17.334,17.841,18.844,20.706 +1070,-0.0654,14.1998,0.12071,9.823,10.751,11.335,11.658,12.174,12.536,13.092,14.2,15.408,16.101,16.589,17.341,17.849,18.853,20.715 +1071,-0.0656,14.2053,0.12073,9.826,10.754,11.339,11.662,12.179,12.541,13.097,14.205,15.414,16.107,16.595,17.348,17.857,18.861,20.725 +1072,-0.0657,14.2109,0.12074,9.83,10.758,11.343,11.666,12.183,12.546,13.102,14.211,15.42,16.114,16.602,17.356,17.864,18.869,20.734 +1073,-0.0658,14.2165,0.12076,9.833,10.762,11.347,11.67,12.188,12.55,13.107,14.217,15.426,16.12,16.609,17.363,17.872,18.877,20.744 +1074,-0.066,14.2221,0.12078,9.836,10.766,11.351,11.675,12.192,12.555,13.112,14.222,15.433,16.127,16.616,17.371,17.88,18.886,20.753 +1075,-0.0661,14.2276,0.1208,9.84,10.77,11.355,11.679,12.197,12.56,13.117,14.228,15.439,16.134,16.623,17.378,17.888,18.894,20.763 +1076,-0.0663,14.2332,0.12081,9.843,10.774,11.359,11.683,12.201,12.565,13.122,14.233,15.445,16.14,16.63,17.385,17.895,18.902,20.772 +1077,-0.0664,14.2388,0.12083,9.847,10.778,11.364,11.688,12.206,12.569,13.127,14.239,15.451,16.147,16.637,17.393,17.903,18.911,20.782 +1078,-0.0665,14.2443,0.12085,9.85,10.781,11.368,11.692,12.21,12.574,13.132,14.244,15.457,16.153,16.644,17.4,17.91,18.919,20.791 +1079,-0.0667,14.2499,0.12087,9.853,10.785,11.372,11.696,12.215,12.579,13.137,14.25,15.464,16.16,16.651,17.407,17.918,18.927,20.801 +1080,-0.0668,14.2554,0.12088,9.857,10.789,11.376,11.7,12.219,12.583,13.142,14.255,15.47,16.167,16.657,17.414,17.926,18.935,20.81 +1081,-0.0669,14.261,0.1209,9.86,10.793,11.38,11.705,12.224,12.588,13.147,14.261,15.476,16.173,16.664,17.422,17.933,18.944,20.819 +1082,-0.0671,14.2666,0.12092,9.864,10.797,11.384,11.709,12.228,12.593,13.152,14.267,15.482,16.18,16.671,17.429,17.941,18.952,20.829 +1083,-0.0672,14.2721,0.12094,9.867,10.8,11.388,11.713,12.233,12.597,13.157,14.272,15.489,16.187,16.678,17.437,17.949,18.96,20.839 +1084,-0.0673,14.2777,0.12095,9.871,10.804,11.392,11.717,12.237,12.602,13.162,14.278,15.495,16.193,16.685,17.444,17.956,18.968,20.848 +1085,-0.0675,14.2832,0.12097,9.874,10.808,11.396,11.722,12.242,12.607,13.167,14.283,15.501,16.2,16.692,17.451,17.964,18.977,20.857 +1086,-0.0676,14.2888,0.12099,9.877,10.812,11.4,11.726,12.246,12.611,13.172,14.289,15.507,16.206,16.699,17.459,17.972,18.985,20.867 +1087,-0.0677,14.2944,0.12101,9.881,10.816,11.405,11.73,12.251,12.616,13.177,14.294,15.514,16.213,16.706,17.466,17.98,18.993,20.877 +1088,-0.0679,14.2999,0.12102,9.884,10.82,11.409,11.734,12.255,12.621,13.182,14.3,15.52,16.22,16.713,17.473,17.987,19.001,20.886 +1089,-0.068,14.3055,0.12104,9.888,10.824,11.413,11.739,12.26,12.626,13.187,14.306,15.526,16.226,16.72,17.481,17.995,19.01,20.895 +1090,-0.0681,14.311,0.12106,9.891,10.827,11.417,11.743,12.264,12.63,13.192,14.311,15.532,16.233,16.727,17.488,18.002,19.018,20.905 +1091,-0.0683,14.3166,0.12108,9.894,10.831,11.421,11.747,12.269,12.635,13.197,14.317,15.538,16.24,16.734,17.496,18.01,19.027,20.915 +1092,-0.0684,14.3221,0.12109,9.898,10.835,11.425,11.751,12.273,12.64,13.202,14.322,15.544,16.246,16.74,17.503,18.017,19.034,20.923 +1093,-0.0685,14.3277,0.12111,9.901,10.839,11.429,11.756,12.278,12.644,13.207,14.328,15.551,16.253,16.747,17.51,18.025,19.043,20.933 +1094,-0.0687,14.3332,0.12113,9.905,10.843,11.433,11.76,12.282,12.649,13.212,14.333,15.557,16.259,16.754,17.517,18.033,19.051,20.943 +1095,-0.0688,14.3387,0.12115,9.908,10.846,11.437,11.764,12.287,12.654,13.217,14.339,15.563,16.266,16.761,17.525,18.041,19.06,20.952 +1096,-0.0689,14.3443,0.12116,9.911,10.85,11.441,11.768,12.291,12.658,13.222,14.344,15.569,16.272,16.768,17.532,18.048,19.068,20.961 +1097,-0.0691,14.3498,0.12118,9.915,10.854,11.446,11.773,12.296,12.663,13.227,14.35,15.576,16.279,16.775,17.539,18.056,19.076,20.971 +1098,-0.0692,14.3554,0.1212,9.918,10.858,11.45,11.777,12.3,12.668,13.232,14.355,15.582,16.286,16.782,17.547,18.064,19.084,20.981 +1099,-0.0693,14.3609,0.12121,9.922,10.862,11.454,11.781,12.305,12.672,13.237,14.361,15.588,16.292,16.788,17.554,18.071,19.092,20.99 +1100,-0.0695,14.3665,0.12123,9.925,10.866,11.458,11.785,12.309,12.677,13.242,14.367,15.594,16.299,16.795,17.561,18.079,19.101,20.999 +1101,-0.0696,14.372,0.12125,9.928,10.869,11.462,11.79,12.314,12.682,13.246,14.372,15.6,16.305,16.802,17.569,18.086,19.109,21.009 +1102,-0.0697,14.3775,0.12127,9.932,10.873,11.466,11.794,12.318,12.686,13.251,14.378,15.607,16.312,16.809,17.576,18.094,19.117,21.018 +1103,-0.0699,14.3831,0.12128,9.935,10.877,11.47,11.798,12.323,12.691,13.256,14.383,15.613,16.319,16.816,17.583,18.101,19.125,21.028 +1104,-0.07,14.3886,0.1213,9.939,10.881,11.474,11.802,12.327,12.696,13.261,14.389,15.619,16.325,16.823,17.591,18.109,19.134,21.037 +1105,-0.0701,14.3942,0.12132,9.942,10.885,11.478,11.807,12.332,12.7,13.266,14.394,15.625,16.332,16.83,17.598,18.117,19.142,21.047 +1106,-0.0703,14.3997,0.12134,9.945,10.888,11.482,11.811,12.336,12.705,13.271,14.4,15.631,16.339,16.837,17.605,18.125,19.15,21.056 +1107,-0.0704,14.4052,0.12135,9.949,10.892,11.486,11.815,12.341,12.71,13.276,14.405,15.638,16.345,16.843,17.612,18.132,19.158,21.065 +1108,-0.0705,14.4108,0.12137,9.952,10.896,11.491,11.819,12.345,12.714,13.281,14.411,15.644,16.352,16.85,17.62,18.14,19.167,21.075 +1109,-0.0707,14.4163,0.12139,9.955,10.9,11.495,11.823,12.35,12.719,13.286,14.416,15.65,16.358,16.857,17.627,18.147,19.175,21.085 +1110,-0.0708,14.4218,0.12141,9.959,10.904,11.499,11.828,12.354,12.724,13.291,14.422,15.656,16.365,16.864,17.635,18.155,19.183,21.094 +1111,-0.0709,14.4274,0.12142,9.962,10.908,11.503,11.832,12.359,12.728,13.296,14.427,15.662,16.371,16.871,17.642,18.163,19.191,21.103 +1112,-0.0711,14.4329,0.12144,9.966,10.911,11.507,11.836,12.363,12.733,13.301,14.433,15.669,16.378,16.878,17.649,18.17,19.2,21.113 +1113,-0.0712,14.4384,0.12146,9.969,10.915,11.511,11.84,12.368,12.738,13.306,14.438,15.675,16.385,16.885,17.657,18.178,19.208,21.122 +1114,-0.0713,14.4439,0.12147,9.973,10.919,11.515,11.845,12.372,12.742,13.311,14.444,15.681,16.391,16.892,17.664,18.185,19.216,21.131 +1115,-0.0715,14.4495,0.12149,9.976,10.923,11.519,11.849,12.377,12.747,13.316,14.45,15.687,16.398,16.899,17.671,18.193,19.224,21.141 +1116,-0.0716,14.455,0.12151,9.979,10.926,11.523,11.853,12.381,12.752,13.321,14.455,15.693,16.404,16.905,17.679,18.201,19.233,21.151 +1117,-0.0717,14.4605,0.12153,9.982,10.93,11.527,11.857,12.386,12.756,13.326,14.461,15.7,16.411,16.912,17.686,18.208,19.241,21.16 +1118,-0.0718,14.4661,0.12154,9.986,10.934,11.531,11.862,12.39,12.761,13.331,14.466,15.706,16.418,16.919,17.693,18.216,19.249,21.169 +1119,-0.072,14.4716,0.12156,9.989,10.938,11.535,11.866,12.395,12.766,13.336,14.472,15.712,16.424,16.926,17.7,18.224,19.257,21.179 +1120,-0.0721,14.4771,0.12158,9.993,10.942,11.539,11.87,12.399,12.77,13.341,14.477,15.718,16.431,16.933,17.708,18.231,19.266,21.189 +1121,-0.0722,14.4826,0.12159,9.996,10.946,11.544,11.874,12.404,12.775,13.345,14.483,15.724,16.437,16.94,17.715,18.239,19.274,21.197 +1122,-0.0724,14.4881,0.12161,10,10.949,11.548,11.879,12.408,12.78,13.35,14.488,15.73,16.444,16.947,17.722,18.246,19.282,21.207 +1123,-0.0725,14.4937,0.12163,10.003,10.953,11.552,11.883,12.413,12.784,13.355,14.494,15.737,16.45,16.954,17.73,18.254,19.29,21.217 +1124,-0.0726,14.4992,0.12165,10.006,10.957,11.556,11.887,12.417,12.789,13.36,14.499,15.743,16.457,16.96,17.737,18.262,19.299,21.226 +1125,-0.0728,14.5047,0.12166,10.01,10.961,11.56,11.891,12.422,12.794,13.365,14.505,15.749,16.464,16.967,17.744,18.269,19.307,21.235 +1126,-0.0729,14.5102,0.12168,10.013,10.965,11.564,11.895,12.426,12.798,13.37,14.51,15.755,16.47,16.974,17.752,18.277,19.315,21.245 +1127,-0.073,14.5158,0.1217,10.016,10.968,11.568,11.9,12.431,12.803,13.375,14.516,15.761,16.477,16.981,17.759,18.285,19.323,21.255 +1128,-0.0732,14.5213,0.12171,10.02,10.972,11.572,11.904,12.435,12.808,13.38,14.521,15.768,16.483,16.988,17.766,18.292,19.331,21.264 +1129,-0.0733,14.5268,0.12173,10.023,10.976,11.576,11.908,12.44,12.812,13.385,14.527,15.774,16.49,16.995,17.773,18.3,19.34,21.273 +1130,-0.0734,14.5323,0.12175,10.027,10.98,11.58,11.912,12.444,12.817,13.39,14.532,15.78,16.496,17.002,17.781,18.307,19.348,21.283 +1131,-0.0736,14.5378,0.12177,10.03,10.983,11.584,11.916,12.448,12.822,13.395,14.538,15.786,16.503,17.008,17.788,18.315,19.356,21.293 +1132,-0.0737,14.5433,0.12178,10.033,10.987,11.588,11.921,12.453,12.826,13.4,14.543,15.792,16.51,17.015,17.795,18.322,19.364,21.301 +1133,-0.0738,14.5489,0.1218,10.037,10.991,11.592,11.925,12.457,12.831,13.405,14.549,15.799,16.516,17.022,17.803,18.33,19.373,21.311 +1134,-0.0739,14.5544,0.12182,10.04,10.995,11.596,11.929,12.462,12.836,13.41,14.554,15.805,16.523,17.029,17.81,18.338,19.381,21.321 +1135,-0.0741,14.5599,0.12183,10.044,10.999,11.601,11.934,12.466,12.84,13.415,14.56,15.811,16.529,17.036,17.817,18.345,19.389,21.33 +1136,-0.0742,14.5654,0.12185,10.047,11.003,11.605,11.938,12.471,12.845,13.42,14.565,15.817,16.536,17.043,17.825,18.353,19.397,21.339 +1137,-0.0743,14.5709,0.12187,10.05,11.006,11.609,11.942,12.475,12.85,13.424,14.571,15.823,16.543,17.05,17.832,18.361,19.406,21.349 +1138,-0.0745,14.5764,0.12189,10.054,11.01,11.613,11.946,12.48,12.854,13.429,14.576,15.829,16.549,17.056,17.839,18.368,19.414,21.359 +1139,-0.0746,14.5819,0.1219,10.057,11.014,11.617,11.95,12.484,12.859,13.434,14.582,15.836,16.556,17.063,17.846,18.376,19.422,21.368 +1140,-0.0747,14.5875,0.12192,10.06,11.018,11.621,11.955,12.489,12.864,13.439,14.588,15.842,16.562,17.07,17.854,18.384,19.43,21.377 +1141,-0.0749,14.593,0.12194,10.064,11.021,11.625,11.959,12.493,12.868,13.444,14.593,15.848,16.569,17.077,17.861,18.391,19.439,21.387 +1142,-0.075,14.5985,0.12195,10.067,11.025,11.629,11.963,12.498,12.873,13.449,14.599,15.854,16.575,17.084,17.868,18.399,19.447,21.396 +1143,-0.0751,14.604,0.12197,10.071,11.029,11.633,11.967,12.502,12.877,13.454,14.604,15.86,16.582,17.091,17.876,18.406,19.455,21.406 +1144,-0.0752,14.6095,0.12199,10.074,11.033,11.637,11.971,12.506,12.882,13.459,14.61,15.866,16.589,17.098,17.883,18.414,19.463,21.415 +1145,-0.0754,14.615,0.122,10.077,11.037,11.641,11.976,12.511,12.887,13.464,14.615,15.873,16.595,17.104,17.89,18.421,19.471,21.424 +1146,-0.0755,14.6205,0.12202,10.081,11.04,11.645,11.98,12.515,12.891,13.469,14.621,15.879,16.602,17.111,17.898,18.429,19.48,21.434 +1147,-0.0756,14.626,0.12204,10.084,11.044,11.649,11.984,12.52,12.896,13.474,14.626,15.885,16.608,17.118,17.905,18.437,19.488,21.443 +1148,-0.0758,14.6315,0.12206,10.087,11.048,11.653,11.988,12.524,12.901,13.479,14.632,15.891,16.615,17.125,17.912,18.445,19.496,21.453 +1149,-0.0759,14.6371,0.12207,10.091,11.052,11.657,11.993,12.529,12.905,13.484,14.637,15.897,16.621,17.132,17.92,18.452,19.504,21.462 +1150,-0.076,14.6426,0.12209,10.094,11.056,11.661,11.997,12.533,12.91,13.489,14.643,15.904,16.628,17.139,17.927,18.46,19.513,21.472 +1151,-0.0762,14.6481,0.12211,10.097,11.059,11.665,12.001,12.538,12.915,13.493,14.648,15.91,16.635,17.146,17.934,18.467,19.521,21.481 +1152,-0.0763,14.6536,0.12212,10.101,11.063,11.67,12.005,12.542,12.919,13.498,14.654,15.916,16.641,17.152,17.941,18.475,19.529,21.49 +1153,-0.0764,14.6591,0.12214,10.104,11.067,11.674,12.009,12.547,12.924,13.503,14.659,15.922,16.648,17.159,17.949,18.482,19.537,21.5 +1154,-0.0765,14.6646,0.12216,10.108,11.071,11.678,12.013,12.551,12.929,13.508,14.665,15.928,16.654,17.166,17.956,18.49,19.546,21.51 +1155,-0.0767,14.6701,0.12217,10.111,11.075,11.682,12.018,12.556,12.933,13.513,14.67,15.934,16.661,17.173,17.963,18.498,19.554,21.519 +1156,-0.0768,14.6756,0.12219,10.114,11.078,11.686,12.022,12.56,12.938,13.518,14.676,15.941,16.667,17.18,17.971,18.505,19.562,21.528 +1157,-0.0769,14.6811,0.12221,10.118,11.082,11.69,12.026,12.565,12.942,13.523,14.681,15.947,16.674,17.187,17.978,18.513,19.57,21.538 +1158,-0.0771,14.6866,0.12222,10.121,11.086,11.694,12.03,12.569,12.947,13.528,14.687,15.953,16.68,17.193,17.985,18.52,19.578,21.547 +1159,-0.0772,14.6921,0.12224,10.125,11.09,11.698,12.035,12.574,12.952,13.533,14.692,15.959,16.687,17.2,17.992,18.528,19.587,21.557 +1160,-0.0773,14.6976,0.12226,10.128,11.093,11.702,12.039,12.578,12.956,13.538,14.698,15.965,16.694,17.207,18,18.536,19.595,21.566 +1161,-0.0774,14.7032,0.12228,10.131,11.097,11.706,12.043,12.582,12.961,13.543,14.703,15.972,16.7,17.214,18.007,18.544,19.604,21.576 +1162,-0.0776,14.7087,0.12229,10.135,11.101,11.71,12.047,12.587,12.966,13.548,14.709,15.978,16.707,17.221,18.014,18.551,19.611,21.585 +1163,-0.0777,14.7142,0.12231,10.138,11.105,11.714,12.051,12.591,12.97,13.553,14.714,15.984,16.713,17.228,18.022,18.559,19.62,21.595 +1164,-0.0778,14.7197,0.12233,10.141,11.108,11.718,12.056,12.596,12.975,13.558,14.72,15.99,16.72,17.235,18.029,18.566,19.628,21.604 +1165,-0.078,14.7252,0.12234,10.145,11.112,11.722,12.06,12.6,12.98,13.562,14.725,15.996,16.726,17.241,18.036,18.574,19.636,21.613 +1166,-0.0781,14.7307,0.12236,10.148,11.116,11.726,12.064,12.605,12.984,13.567,14.731,16.002,16.733,17.248,18.044,18.581,19.645,21.623 +1167,-0.0782,14.7362,0.12238,10.151,11.12,11.73,12.068,12.609,12.989,13.572,14.736,16.008,16.74,17.255,18.051,18.589,19.653,21.632 +1168,-0.0783,14.7417,0.12239,10.155,11.124,11.735,12.073,12.614,12.994,13.577,14.742,16.015,16.746,17.262,18.058,18.596,19.661,21.641 +1169,-0.0785,14.7472,0.12241,10.158,11.128,11.739,12.077,12.618,12.998,13.582,14.747,16.021,16.753,17.269,18.066,18.604,19.669,21.651 +1170,-0.0786,14.7527,0.12243,10.161,11.131,11.743,12.081,12.623,13.003,13.587,14.753,16.027,16.759,17.276,18.073,18.612,19.678,21.661 +1171,-0.0787,14.7582,0.12244,10.165,11.135,11.747,12.085,12.627,13.008,13.592,14.758,16.033,16.766,17.282,18.08,18.619,19.685,21.67 +1172,-0.0788,14.7637,0.12246,10.168,11.139,11.751,12.089,12.632,13.012,13.597,14.764,16.039,16.772,17.289,18.087,18.627,19.694,21.679 +1173,-0.079,14.7692,0.12248,10.172,11.143,11.755,12.094,12.636,13.017,13.602,14.769,16.045,16.779,17.296,18.095,18.635,19.702,21.689 +1174,-0.0791,14.7747,0.12249,10.175,11.147,11.759,12.098,12.64,13.021,13.607,14.775,16.052,16.785,17.303,18.102,18.642,19.71,21.698 +1175,-0.0792,14.7802,0.12251,10.178,11.15,11.763,12.102,12.645,13.026,13.612,14.78,16.058,16.792,17.31,18.109,18.65,19.718,21.708 +1176,-0.0794,14.7857,0.12253,10.182,11.154,11.767,12.106,12.649,13.031,13.617,14.786,16.064,16.799,17.317,18.117,18.658,19.727,21.717 +1177,-0.0795,14.7912,0.12254,10.185,11.158,11.771,12.11,12.654,13.035,13.622,14.791,16.07,16.805,17.323,18.124,18.665,19.735,21.726 +1178,-0.0796,14.7967,0.12256,10.189,11.162,11.775,12.115,12.658,13.04,13.626,14.797,16.076,16.812,17.33,18.131,18.673,19.743,21.736 +1179,-0.0797,14.8022,0.12258,10.192,11.165,11.779,12.119,12.663,13.045,13.631,14.802,16.082,16.818,17.337,18.139,18.68,19.752,21.746 +1180,-0.0799,14.8077,0.12259,10.195,11.169,11.783,12.123,12.667,13.049,13.636,14.808,16.089,16.825,17.344,18.146,18.688,19.759,21.755 +1181,-0.08,14.8132,0.12261,10.199,11.173,11.787,12.127,12.672,13.054,13.641,14.813,16.095,16.831,17.351,18.153,18.695,19.768,21.764 +1182,-0.0801,14.8187,0.12263,10.202,11.177,11.791,12.131,12.676,13.058,13.646,14.819,16.101,16.838,17.358,18.16,18.703,19.776,21.774 +1183,-0.0802,14.8242,0.12265,10.205,11.18,11.795,12.135,12.68,13.063,13.651,14.824,16.107,16.845,17.365,18.168,18.711,19.785,21.784 +1184,-0.0804,14.8297,0.12266,10.209,11.184,11.799,12.14,12.685,13.068,13.656,14.83,16.113,16.851,17.371,18.175,18.718,19.793,21.793 +1185,-0.0805,14.8352,0.12268,10.212,11.188,11.803,12.144,12.689,13.072,13.661,14.835,16.119,16.858,17.378,18.182,18.726,19.801,21.802 +1186,-0.0806,14.8407,0.1227,10.215,11.192,11.807,12.148,12.694,13.077,13.666,14.841,16.126,16.864,17.385,18.19,18.734,19.809,21.812 +1187,-0.0808,14.8462,0.12271,10.219,11.196,11.812,12.152,12.698,13.082,13.671,14.846,16.132,16.871,17.392,18.197,18.741,19.817,21.821 +1188,-0.0809,14.8517,0.12273,10.222,11.199,11.816,12.157,12.703,13.086,13.676,14.852,16.138,16.877,17.399,18.204,18.749,19.826,21.831 +1189,-0.081,14.8572,0.12275,10.225,11.203,11.819,12.161,12.707,13.091,13.68,14.857,16.144,16.884,17.406,18.212,18.756,19.834,21.84 +1190,-0.0811,14.8627,0.12276,10.229,11.207,11.824,12.165,12.712,13.096,13.685,14.863,16.15,16.89,17.413,18.219,18.764,19.842,21.849 +1191,-0.0813,14.8682,0.12278,10.232,11.211,11.828,12.169,12.716,13.1,13.69,14.868,16.156,16.897,17.419,18.226,18.772,19.85,21.859 +1192,-0.0814,14.8737,0.1228,10.235,11.214,11.832,12.173,12.721,13.105,13.695,14.874,16.163,16.904,17.426,18.234,18.779,19.859,21.869 +1193,-0.0815,14.8792,0.12281,10.239,11.218,11.836,12.178,12.725,13.109,13.7,14.879,16.169,16.91,17.433,18.241,18.787,19.867,21.878 +1194,-0.0816,14.8847,0.12283,10.242,11.222,11.84,12.182,12.73,13.114,13.705,14.885,16.175,16.917,17.44,18.248,18.794,19.875,21.887 +1195,-0.0818,14.8902,0.12285,10.246,11.226,11.844,12.186,12.734,13.119,13.71,14.89,16.181,16.923,17.447,18.255,18.802,19.883,21.897 +1196,-0.0819,14.8957,0.12286,10.249,11.23,11.848,12.19,12.738,13.123,13.715,14.896,16.187,16.93,17.454,18.263,18.809,19.891,21.906 +1197,-0.082,14.9012,0.12288,10.252,11.233,11.852,12.194,12.743,13.128,13.72,14.901,16.193,16.936,17.461,18.27,18.817,19.9,21.916 +1198,-0.0821,14.9067,0.1229,10.256,11.237,11.856,12.199,12.747,13.133,13.725,14.907,16.2,16.943,17.467,18.277,18.825,19.908,21.925 +1199,-0.0823,14.9122,0.12291,10.259,11.241,11.86,12.203,12.752,13.137,13.73,14.912,16.206,16.95,17.474,18.284,18.832,19.916,21.935 +1200,-0.0824,14.9177,0.12293,10.262,11.245,11.864,12.207,12.756,13.142,13.735,14.918,16.212,16.956,17.481,18.292,18.84,19.924,21.944 +1201,-0.0825,14.9232,0.12295,10.266,11.248,11.868,12.211,12.761,13.146,13.739,14.923,16.218,16.963,17.488,18.299,18.848,19.933,21.954 +1202,-0.0826,14.9287,0.12296,10.269,11.252,11.872,12.215,12.765,13.151,13.744,14.929,16.224,16.969,17.495,18.306,18.855,19.941,21.963 +1203,-0.0828,14.9342,0.12298,10.273,11.256,11.876,12.22,12.77,13.156,13.749,14.934,16.23,16.976,17.502,18.314,18.863,19.949,21.973 +1204,-0.0829,14.9397,0.123,10.276,11.26,11.88,12.224,12.774,13.16,13.754,14.94,16.237,16.982,17.509,18.321,18.871,19.958,21.982 +1205,-0.083,14.9452,0.12301,10.279,11.264,11.884,12.228,12.779,13.165,13.759,14.945,16.243,16.989,17.515,18.328,18.878,19.966,21.991 +1206,-0.0831,14.9507,0.12303,10.283,11.267,11.888,12.232,12.783,13.17,13.764,14.951,16.249,16.996,17.522,18.336,18.886,19.974,22.001 +1207,-0.0833,14.9562,0.12305,10.286,11.271,11.892,12.236,12.787,13.174,13.769,14.956,16.255,17.002,17.529,18.343,18.893,19.982,22.011 +1208,-0.0834,14.9617,0.12306,10.289,11.275,11.897,12.241,12.792,13.179,13.774,14.962,16.261,17.009,17.536,18.35,18.901,19.99,22.02 +1209,-0.0835,14.9672,0.12308,10.293,11.279,11.901,12.245,12.796,13.184,13.779,14.967,16.267,17.015,17.543,18.358,18.909,19.999,22.029 +1210,-0.0836,14.9727,0.1231,10.296,11.282,11.904,12.249,12.801,13.188,13.784,14.973,16.274,17.022,17.55,18.365,18.916,20.007,22.039 +1211,-0.0838,14.9782,0.12311,10.3,11.286,11.909,12.253,12.805,13.193,13.789,14.978,16.28,17.028,17.556,18.372,18.924,20.015,22.048 +1212,-0.0839,14.9837,0.12313,10.303,11.29,11.913,12.257,12.81,13.197,13.794,14.984,16.286,17.035,17.563,18.379,18.931,20.023,22.058 +1213,-0.084,14.9892,0.12315,10.306,11.294,11.917,12.262,12.814,13.202,13.798,14.989,16.292,17.042,17.57,18.387,18.939,20.032,22.068 +1214,-0.0841,14.9947,0.12316,10.31,11.297,11.921,12.266,12.819,13.207,13.803,14.995,16.298,17.048,17.577,18.394,18.947,20.04,22.077 +1215,-0.0843,15.0002,0.12318,10.313,11.301,11.925,12.27,12.823,13.211,13.808,15,16.304,17.055,17.584,18.401,18.954,20.048,22.086 +1216,-0.0844,15.0057,0.1232,10.316,11.305,11.929,12.274,12.827,13.216,13.813,15.006,16.311,17.061,17.591,18.409,18.962,20.057,22.096 +1217,-0.0845,15.0112,0.12321,10.32,11.309,11.933,12.279,12.832,13.221,13.818,15.011,16.317,17.068,17.598,18.416,18.969,20.065,22.105 +1218,-0.0846,15.0167,0.12323,10.323,11.312,11.937,12.283,12.836,13.225,13.823,15.017,16.323,17.074,17.604,18.423,18.977,20.073,22.115 +1219,-0.0848,15.0222,0.12325,10.326,11.316,11.941,12.287,12.841,13.23,13.828,15.022,16.329,17.081,17.611,18.431,18.985,20.081,22.125 +1220,-0.0849,15.0277,0.12326,10.33,11.32,11.945,12.291,12.845,13.235,13.833,15.028,16.335,17.087,17.618,18.438,18.992,20.089,22.133 +1221,-0.085,15.0332,0.12328,10.333,11.324,11.949,12.295,12.85,13.239,13.838,15.033,16.341,17.094,17.625,18.445,19,20.098,22.143 +1222,-0.0851,15.0387,0.1233,10.336,11.327,11.953,12.299,12.854,13.244,13.843,15.039,16.348,17.101,17.632,18.453,19.008,20.106,22.153 +1223,-0.0853,15.0442,0.12331,10.34,11.331,11.957,12.304,12.859,13.248,13.848,15.044,16.354,17.107,17.639,18.46,19.015,20.114,22.162 +1224,-0.0854,15.0497,0.12333,10.343,11.335,11.961,12.308,12.863,13.253,13.853,15.05,16.36,17.114,17.646,18.467,19.023,20.123,22.172 +1225,-0.0855,15.0552,0.12335,10.346,11.339,11.965,12.312,12.867,13.258,13.857,15.055,16.366,17.12,17.653,18.475,19.031,20.131,22.181 +1226,-0.0856,15.0607,0.12336,10.35,11.343,11.969,12.316,12.872,13.262,13.862,15.061,16.372,17.127,17.659,18.482,19.038,20.139,22.19 +1227,-0.0858,15.0662,0.12338,10.353,11.346,11.973,12.32,12.876,13.267,13.867,15.066,16.379,17.134,17.666,18.489,19.046,20.147,22.2 +1228,-0.0859,15.0717,0.1234,10.356,11.35,11.977,12.325,12.881,13.272,13.872,15.072,16.385,17.14,17.673,18.497,19.054,20.156,22.21 +1229,-0.086,15.0772,0.12342,10.36,11.354,11.981,12.329,12.885,13.276,13.877,15.077,16.391,17.147,17.68,18.504,19.061,20.164,22.22 +1230,-0.0861,15.0827,0.12343,10.363,11.358,11.985,12.333,12.89,13.281,13.882,15.083,16.397,17.153,17.687,18.511,19.069,20.172,22.229 +1231,-0.0863,15.0882,0.12345,10.366,11.361,11.989,12.337,12.894,13.285,13.887,15.088,16.403,17.16,17.694,18.519,19.076,20.181,22.238 +1232,-0.0864,15.0937,0.12347,10.37,11.365,11.993,12.341,12.899,13.29,13.892,15.094,16.409,17.166,17.701,18.526,19.084,20.189,22.248 +1233,-0.0865,15.0992,0.12348,10.373,11.369,11.998,12.346,12.903,13.295,13.897,15.099,16.416,17.173,17.707,18.533,19.092,20.197,22.257 +1234,-0.0866,15.1047,0.1235,10.376,11.373,12.002,12.35,12.908,13.299,13.902,15.105,16.422,17.18,17.714,18.54,19.099,20.205,22.267 +1235,-0.0868,15.1102,0.12352,10.38,11.376,12.006,12.354,12.912,13.304,13.907,15.11,16.428,17.186,17.721,18.548,19.107,20.214,22.277 +1236,-0.0869,15.1157,0.12353,10.383,11.38,12.01,12.358,12.916,13.309,13.911,15.116,16.434,17.193,17.728,18.555,19.114,20.222,22.286 +1237,-0.087,15.1212,0.12355,10.386,11.384,12.014,12.362,12.921,13.313,13.916,15.121,16.44,17.199,17.735,18.562,19.122,20.23,22.295 +1238,-0.0871,15.1267,0.12357,10.39,11.388,12.018,12.366,12.925,13.318,13.921,15.127,16.446,17.206,17.742,18.57,19.13,20.239,22.305 +1239,-0.0872,15.1322,0.12358,10.393,11.392,12.022,12.371,12.93,13.322,13.926,15.132,16.453,17.212,17.749,18.577,19.137,20.246,22.314 +1240,-0.0874,15.1377,0.1236,10.397,11.395,12.026,12.375,12.934,13.327,13.931,15.138,16.459,17.219,17.755,18.584,19.145,20.255,22.324 +1241,-0.0875,15.1432,0.12362,10.4,11.399,12.03,12.379,12.939,13.332,13.936,15.143,16.465,17.226,17.762,18.592,19.153,20.263,22.334 +1242,-0.0876,15.1487,0.12363,10.403,11.403,12.034,12.383,12.943,13.336,13.941,15.149,16.471,17.232,17.769,18.599,19.16,20.271,22.343 +1243,-0.0877,15.1542,0.12365,10.407,11.407,12.038,12.387,12.948,13.341,13.946,15.154,16.477,17.239,17.776,18.606,19.168,20.28,22.352 +1244,-0.0879,15.1596,0.12367,10.41,11.41,12.042,12.392,12.952,13.345,13.951,15.16,16.483,17.245,17.783,18.614,19.176,20.288,22.362 +1245,-0.088,15.1651,0.12368,10.413,11.414,12.046,12.396,12.956,13.35,13.956,15.165,16.49,17.252,17.79,18.621,19.183,20.296,22.371 +1246,-0.0881,15.1706,0.1237,10.417,11.418,12.05,12.4,12.961,13.355,13.96,15.171,16.496,17.258,17.797,18.628,19.191,20.304,22.381 +1247,-0.0882,15.1761,0.12372,10.42,11.422,12.054,12.404,12.965,13.359,13.965,15.176,16.502,17.265,17.803,18.636,19.199,20.313,22.391 +1248,-0.0883,15.1816,0.12373,10.423,11.425,12.058,12.408,12.97,13.364,13.97,15.182,16.508,17.271,17.81,18.643,19.206,20.321,22.4 +1249,-0.0885,15.1871,0.12375,10.427,11.429,12.062,12.413,12.974,13.369,13.975,15.187,16.514,17.278,17.817,18.65,19.214,20.329,22.409 +1250,-0.0886,15.1926,0.12377,10.43,11.433,12.066,12.417,12.979,13.373,13.98,15.193,16.52,17.285,17.824,18.658,19.221,20.338,22.419 +1251,-0.0887,15.1981,0.12379,10.433,11.436,12.07,12.421,12.983,13.378,13.985,15.198,16.527,17.291,17.831,18.665,19.229,20.346,22.429 +1252,-0.0888,15.2036,0.1238,10.437,11.44,12.074,12.425,12.987,13.382,13.99,15.204,16.533,17.298,17.838,18.672,19.237,20.354,22.438 +1253,-0.089,15.2091,0.12382,10.44,11.444,12.078,12.429,12.992,13.387,13.995,15.209,16.539,17.304,17.845,18.68,19.244,20.363,22.448 +1254,-0.0891,15.2146,0.12384,10.443,11.448,12.082,12.433,12.996,13.392,14,15.215,16.545,17.311,17.852,18.687,19.252,20.371,22.458 +1255,-0.0892,15.2201,0.12385,10.447,11.452,12.086,12.438,13.001,13.396,14.005,15.22,16.551,17.318,17.858,18.694,19.26,20.379,22.467 +1256,-0.0893,15.2256,0.12387,10.45,11.455,12.09,12.442,13.005,13.401,14.01,15.226,16.558,17.324,17.865,18.701,19.267,20.387,22.476 +1257,-0.0894,15.2311,0.12389,10.453,11.459,12.094,12.446,13.01,13.406,14.014,15.231,16.564,17.331,17.872,18.709,19.275,20.396,22.486 +1258,-0.0896,15.2366,0.1239,10.457,11.463,12.098,12.45,13.014,13.41,14.019,15.237,16.57,17.337,17.879,18.716,19.282,20.404,22.495 +1259,-0.0897,15.2421,0.12392,10.46,11.467,12.102,12.454,13.019,13.415,14.024,15.242,16.576,17.344,17.886,18.723,19.29,20.412,22.505 +1260,-0.0898,15.2476,0.12394,10.463,11.47,12.106,12.458,13.023,13.419,14.029,15.248,16.582,17.351,17.893,18.731,19.298,20.421,22.515 +1261,-0.0899,15.2531,0.12395,10.467,11.474,12.11,12.463,13.027,13.424,14.034,15.253,16.588,17.357,17.9,18.738,19.305,20.429,22.524 +1262,-0.0901,15.2586,0.12397,10.47,11.478,12.114,12.467,13.032,13.429,14.039,15.259,16.595,17.364,17.907,18.745,19.313,20.437,22.534 +1263,-0.0902,15.2641,0.12399,10.473,11.482,12.118,12.471,13.036,13.433,14.044,15.264,16.601,17.37,17.913,18.753,19.321,20.446,22.543 +1264,-0.0903,15.2696,0.12401,10.476,11.485,12.122,12.475,13.041,13.438,14.049,15.27,16.607,17.377,17.92,18.76,19.329,20.454,22.553 +1265,-0.0904,15.2751,0.12402,10.48,11.489,12.127,12.48,13.045,13.443,14.054,15.275,16.613,17.383,17.927,18.767,19.336,20.462,22.562 +1266,-0.0905,15.2806,0.12404,10.483,11.493,12.13,12.484,13.05,13.447,14.059,15.281,16.619,17.39,17.934,18.775,19.344,20.47,22.572 +1267,-0.0907,15.2861,0.12406,10.486,11.497,12.134,12.488,13.054,13.452,14.063,15.286,16.626,17.397,17.941,18.782,19.352,20.479,22.582 +1268,-0.0908,15.2916,0.12407,10.49,11.501,12.139,12.492,13.058,13.456,14.068,15.292,16.632,17.403,17.948,18.789,19.359,20.487,22.591 +1269,-0.0909,15.2971,0.12409,10.493,11.504,12.143,12.496,13.063,13.461,14.073,15.297,16.638,17.41,17.955,18.797,19.367,20.495,22.601 +1270,-0.091,15.3026,0.12411,10.496,11.508,12.147,12.5,13.067,13.466,14.078,15.303,16.644,17.416,17.962,18.804,19.375,20.504,22.61 +1271,-0.0912,15.3081,0.12412,10.5,11.512,12.151,12.505,13.072,13.47,14.083,15.308,16.65,17.423,17.968,18.811,19.382,20.512,22.619 +1272,-0.0913,15.3135,0.12414,10.503,11.515,12.155,12.509,13.076,13.475,14.088,15.314,16.656,17.429,17.975,18.819,19.39,20.52,22.629 +1273,-0.0914,15.319,0.12416,10.506,11.519,12.159,12.513,13.08,13.479,14.093,15.319,16.662,17.436,17.982,18.826,19.397,20.529,22.639 +1274,-0.0915,15.3245,0.12418,10.51,11.523,12.162,12.517,13.085,13.484,14.098,15.325,16.669,17.443,17.989,18.834,19.405,20.537,22.649 +1275,-0.0916,15.33,0.12419,10.513,11.527,12.167,12.521,13.089,13.489,14.103,15.33,16.675,17.449,17.996,18.841,19.413,20.545,22.658 +1276,-0.0918,15.3355,0.12421,10.516,11.53,12.171,12.525,13.094,13.493,14.108,15.336,16.681,17.456,18.003,18.848,19.42,20.553,22.668 +1277,-0.0919,15.341,0.12423,10.52,11.534,12.175,12.529,13.098,13.498,14.112,15.341,16.687,17.462,18.01,18.856,19.428,20.562,22.677 +1278,-0.092,15.3465,0.12424,10.523,11.538,12.179,12.534,13.103,13.503,14.117,15.347,16.693,17.469,18.016,18.863,19.436,20.57,22.686 +1279,-0.0921,15.352,0.12426,10.526,11.542,12.183,12.538,13.107,13.507,14.122,15.352,16.7,17.476,18.023,18.87,19.443,20.578,22.696 +1280,-0.0922,15.3575,0.12428,10.53,11.545,12.187,12.542,13.112,13.512,14.127,15.358,16.706,17.482,18.03,18.878,19.451,20.587,22.706 +1281,-0.0924,15.363,0.1243,10.533,11.549,12.191,12.546,13.116,13.516,14.132,15.363,16.712,17.489,18.037,18.885,19.459,20.595,22.716 +1282,-0.0925,15.3685,0.12431,10.536,11.553,12.195,12.55,13.12,13.521,14.137,15.369,16.718,17.495,18.044,18.892,19.466,20.603,22.725 +1283,-0.0926,15.374,0.12433,10.54,11.557,12.199,12.555,13.125,13.526,14.142,15.374,16.724,17.502,18.051,18.9,19.474,20.612,22.735 +1284,-0.0927,15.3795,0.12435,10.543,11.56,12.203,12.559,13.129,13.53,14.147,15.38,16.731,17.509,18.058,18.907,19.482,20.62,22.744 +1285,-0.0928,15.385,0.12436,10.546,11.564,12.207,12.563,13.134,13.535,14.152,15.385,16.737,17.515,18.065,18.914,19.489,20.628,22.753 +1286,-0.093,15.3905,0.12438,10.55,11.568,12.211,12.567,13.138,13.539,14.157,15.391,16.743,17.522,18.072,18.922,19.497,20.637,22.763 +1287,-0.0931,15.396,0.1244,10.553,11.571,12.215,12.571,13.143,13.544,14.162,15.396,16.749,17.528,18.079,18.929,19.505,20.645,22.773 +1288,-0.0932,15.4015,0.12442,10.556,11.575,12.219,12.575,13.147,13.549,14.166,15.402,16.755,17.535,18.086,18.937,19.513,20.654,22.783 +1289,-0.0933,15.407,0.12443,10.56,11.579,12.223,12.58,13.151,13.553,14.171,15.407,16.761,17.541,18.092,18.944,19.52,20.661,22.792 +1290,-0.0934,15.4125,0.12445,10.563,11.583,12.227,12.584,13.156,13.558,14.176,15.413,16.768,17.548,18.099,18.951,19.528,20.67,22.802 +1291,-0.0936,15.4179,0.12447,10.566,11.586,12.231,12.588,13.16,13.562,14.181,15.418,16.774,17.555,18.106,18.958,19.536,20.678,22.812 +1292,-0.0937,15.4234,0.12448,10.57,11.59,12.235,12.592,13.165,13.567,14.186,15.423,16.78,17.561,18.113,18.966,19.543,20.686,22.821 +1293,-0.0938,15.4289,0.1245,10.573,11.594,12.239,12.596,13.169,13.572,14.191,15.429,16.786,17.568,18.12,18.973,19.551,20.695,22.83 +1294,-0.0939,15.4344,0.12452,10.576,11.598,12.243,12.6,13.173,13.576,14.196,15.434,16.792,17.574,18.127,18.98,19.558,20.703,22.84 +1295,-0.094,15.4399,0.12454,10.579,11.601,12.247,12.604,13.178,13.581,14.201,15.44,16.798,17.581,18.134,18.988,19.566,20.712,22.85 +1296,-0.0942,15.4454,0.12455,10.583,11.605,12.251,12.609,13.182,13.585,14.206,15.445,16.805,17.588,18.14,18.995,19.574,20.72,22.859 +1297,-0.0943,15.4509,0.12457,10.586,11.609,12.255,12.613,13.187,13.59,14.21,15.451,16.811,17.594,18.147,19.003,19.581,20.728,22.869 +1298,-0.0944,15.4564,0.12459,10.589,11.612,12.259,12.617,13.191,13.595,14.215,15.456,16.817,17.601,18.154,19.01,19.589,20.737,22.879 +1299,-0.0945,15.4619,0.12461,10.592,11.616,12.263,12.621,13.196,13.599,14.22,15.462,16.823,17.607,18.161,19.017,19.597,20.745,22.888 +1300,-0.0946,15.4674,0.12462,10.596,11.62,12.267,12.625,13.2,13.604,14.225,15.467,16.829,17.614,18.168,19.025,19.604,20.753,22.898 +1301,-0.0948,15.4729,0.12464,10.599,11.624,12.271,12.63,13.204,13.608,14.23,15.473,16.836,17.621,18.175,19.032,19.612,20.762,22.908 +1302,-0.0949,15.4784,0.12466,10.603,11.627,12.275,12.634,13.209,13.613,14.235,15.478,16.842,17.627,18.182,19.039,19.62,20.77,22.917 +1303,-0.095,15.4839,0.12467,10.606,11.631,12.279,12.638,13.213,13.618,14.24,15.484,16.848,17.634,18.189,19.047,19.627,20.778,22.926 +1304,-0.0951,15.4894,0.12469,10.609,11.635,12.283,12.642,13.218,13.622,14.245,15.489,16.854,17.64,18.196,19.054,19.635,20.787,22.936 +1305,-0.0952,15.4948,0.12471,10.612,11.639,12.287,12.646,13.222,13.627,14.25,15.495,16.86,17.647,18.202,19.061,19.643,20.795,22.946 +1306,-0.0954,15.5003,0.12473,10.616,11.642,12.291,12.65,13.226,13.631,14.254,15.5,16.866,17.654,18.209,19.069,19.651,20.803,22.956 +1307,-0.0955,15.5058,0.12474,10.619,11.646,12.295,12.655,13.231,13.636,14.259,15.506,16.873,17.66,18.216,19.076,19.658,20.811,22.965 +1308,-0.0956,15.5113,0.12476,10.622,11.65,12.299,12.659,13.235,13.641,14.264,15.511,16.879,17.667,18.223,19.083,19.666,20.82,22.975 +1309,-0.0957,15.5168,0.12478,10.626,11.653,12.303,12.663,13.24,13.645,14.269,15.517,16.885,17.673,18.23,19.091,19.674,20.828,22.984 +1310,-0.0958,15.5223,0.1248,10.629,11.657,12.307,12.667,13.244,13.65,14.274,15.522,16.891,17.68,18.237,19.098,19.682,20.837,22.994 +1311,-0.0959,15.5278,0.12481,10.632,11.661,12.311,12.671,13.249,13.655,14.279,15.528,16.897,17.686,18.244,19.105,19.689,20.845,23.003 +1312,-0.0961,15.5333,0.12483,10.636,11.665,12.315,12.675,13.253,13.659,14.284,15.533,16.904,17.693,18.251,19.113,19.697,20.853,23.013 +1313,-0.0962,15.5388,0.12485,10.639,11.668,12.319,12.679,13.257,13.664,14.289,15.539,16.91,17.7,18.258,19.12,19.705,20.862,23.023 +1314,-0.0963,15.5443,0.12487,10.642,11.672,12.323,12.684,13.262,13.668,14.294,15.544,16.916,17.706,18.265,19.128,19.712,20.87,23.033 +1315,-0.0964,15.5498,0.12488,10.646,11.676,12.327,12.688,13.266,13.673,14.299,15.55,16.922,17.713,18.271,19.135,19.72,20.878,23.042 +1316,-0.0965,15.5552,0.1249,10.649,11.679,12.331,12.692,13.271,13.677,14.303,15.555,16.928,17.719,18.278,19.142,19.727,20.887,23.052 +1317,-0.0967,15.5607,0.12492,10.652,11.683,12.335,12.696,13.275,13.682,14.308,15.561,16.934,17.726,18.285,19.15,19.735,20.895,23.062 +1318,-0.0968,15.5662,0.12494,10.655,11.687,12.339,12.7,13.279,13.687,14.313,15.566,16.941,17.733,18.292,19.157,19.743,20.904,23.071 +1319,-0.0969,15.5717,0.12495,10.659,11.691,12.343,12.704,13.284,13.691,14.318,15.572,16.947,17.739,18.299,19.164,19.75,20.912,23.081 +1320,-0.097,15.5772,0.12497,10.662,11.694,12.347,12.709,13.288,13.696,14.323,15.577,16.953,17.746,18.306,19.172,19.758,20.92,23.09 +1321,-0.0971,15.5827,0.12499,10.665,11.698,12.351,12.713,13.293,13.7,14.328,15.583,16.959,17.753,18.313,19.179,19.766,20.929,23.1 +1322,-0.0972,15.5882,0.12501,10.668,11.702,12.355,12.717,13.297,13.705,14.333,15.588,16.965,17.759,18.32,19.187,19.774,20.937,23.11 +1323,-0.0974,15.5937,0.12502,10.672,11.706,12.359,12.721,13.302,13.71,14.338,15.594,16.972,17.766,18.327,19.194,19.781,20.945,23.119 +1324,-0.0975,15.5992,0.12504,10.675,11.709,12.363,12.725,13.306,13.714,14.342,15.599,16.978,17.772,18.333,19.201,19.789,20.954,23.129 +1325,-0.0976,15.6047,0.12506,10.678,11.713,12.367,12.729,13.31,13.719,14.347,15.605,16.984,17.779,18.34,19.209,19.797,20.962,23.139 +1326,-0.0977,15.6101,0.12508,10.681,11.716,12.371,12.733,13.315,13.723,14.352,15.61,16.99,17.785,18.347,19.216,19.805,20.97,23.149 +1327,-0.0978,15.6156,0.1251,10.685,11.72,12.375,12.737,13.319,13.728,14.357,15.616,16.996,17.792,18.354,19.224,19.812,20.979,23.158 +1328,-0.098,15.6211,0.12511,10.688,11.724,12.379,12.742,13.324,13.733,14.362,15.621,17.002,17.799,18.361,19.231,19.82,20.987,23.168 +1329,-0.0981,15.6266,0.12513,10.691,11.728,12.383,12.746,13.328,13.737,14.367,15.627,17.009,17.805,18.368,19.238,19.828,20.995,23.177 +1330,-0.0982,15.6321,0.12515,10.695,11.731,12.387,12.75,13.332,13.742,14.372,15.632,17.015,17.812,18.375,19.246,19.835,21.004,23.187 +1331,-0.0983,15.6376,0.12517,10.698,11.735,12.391,12.754,13.337,13.746,14.377,15.638,17.021,17.819,18.382,19.253,19.843,21.012,23.197 +1332,-0.0984,15.6431,0.12518,10.701,11.739,12.395,12.758,13.341,13.751,14.382,15.643,17.027,17.825,18.389,19.26,19.851,21.02,23.206 +1333,-0.0985,15.6486,0.1252,10.705,11.743,12.399,12.762,13.346,13.756,14.386,15.649,17.033,17.832,18.396,19.268,19.858,21.029,23.216 +1334,-0.0987,15.654,0.12522,10.708,11.746,12.403,12.766,13.35,13.76,14.391,15.654,17.04,17.838,18.403,19.275,19.866,21.037,23.226 +1335,-0.0988,15.6595,0.12524,10.711,11.75,12.407,12.771,13.354,13.765,14.396,15.66,17.046,17.845,18.409,19.283,19.874,21.046,23.236 +1336,-0.0989,15.665,0.12526,10.714,11.753,12.411,12.775,13.359,13.769,14.401,15.665,17.052,17.852,18.416,19.29,19.882,21.054,23.246 +1337,-0.099,15.6705,0.12527,10.718,11.757,12.415,12.779,13.363,13.774,14.406,15.671,17.058,17.858,18.423,19.297,19.889,21.062,23.255 +1338,-0.0991,15.676,0.12529,10.721,11.761,12.419,12.783,13.368,13.778,14.411,15.676,17.064,17.865,18.43,19.305,19.897,21.071,23.265 +1339,-0.0992,15.6815,0.12531,10.724,11.765,12.423,12.787,13.372,13.783,14.416,15.682,17.071,17.871,18.437,19.312,19.905,21.079,23.274 +1340,-0.0994,15.687,0.12533,10.727,11.768,12.427,12.791,13.376,13.788,14.421,15.687,17.077,17.878,18.444,19.32,19.913,21.088,23.284 +1341,-0.0995,15.6924,0.12534,10.731,11.772,12.431,12.796,13.381,13.792,14.425,15.692,17.083,17.884,18.451,19.327,19.92,21.096,23.293 +1342,-0.0996,15.6979,0.12536,10.734,11.776,12.435,12.8,13.385,13.797,14.43,15.698,17.089,17.891,18.458,19.334,19.928,21.104,23.303 +1343,-0.0997,15.7034,0.12538,10.737,11.779,12.438,12.804,13.389,13.801,14.435,15.703,17.095,17.898,18.465,19.342,19.936,21.113,23.313 +1344,-0.0998,15.7089,0.1254,10.74,11.783,12.442,12.808,13.394,13.806,14.44,15.709,17.102,17.904,18.472,19.349,19.943,21.121,23.323 +1345,-0.0999,15.7144,0.12542,10.744,11.787,12.446,12.812,13.398,13.81,14.445,15.714,17.108,17.911,18.479,19.357,19.951,21.13,23.333 +1346,-0.1001,15.7199,0.12543,10.747,11.791,12.451,12.816,13.403,13.815,14.45,15.72,17.114,17.918,18.485,19.364,19.959,21.138,23.342 +1347,-0.1002,15.7253,0.12545,10.75,11.794,12.454,12.82,13.407,13.82,14.455,15.725,17.12,17.924,18.492,19.371,19.966,21.146,23.352 +1348,-0.1003,15.7308,0.12547,10.754,11.798,12.458,12.824,13.411,13.824,14.459,15.731,17.126,17.931,18.499,19.379,19.974,21.155,23.362 +1349,-0.1004,15.7363,0.12549,10.757,11.802,12.462,12.828,13.416,13.829,14.464,15.736,17.132,17.937,18.506,19.386,19.982,21.163,23.371 +1350,-0.1005,15.7418,0.12551,10.76,11.805,12.466,12.833,13.42,13.833,14.469,15.742,17.139,17.944,18.513,19.393,19.99,21.172,23.381 +1351,-0.1006,15.7473,0.12552,10.763,11.809,12.47,12.837,13.425,13.838,14.474,15.747,17.145,17.951,18.52,19.401,19.997,21.18,23.39 +1352,-0.1008,15.7528,0.12554,10.767,11.813,12.474,12.841,13.429,13.843,14.479,15.753,17.151,17.957,18.527,19.408,20.005,21.188,23.4 +1353,-0.1009,15.7582,0.12556,10.77,11.816,12.478,12.845,13.433,13.847,14.484,15.758,17.157,17.964,18.534,19.415,20.013,21.197,23.41 +1354,-0.101,15.7637,0.12558,10.773,11.82,12.482,12.849,13.438,13.852,14.489,15.764,17.163,17.97,18.541,19.423,20.021,21.205,23.42 +1355,-0.1011,15.7692,0.1256,10.776,11.824,12.486,12.853,13.442,13.856,14.494,15.769,17.17,17.977,18.548,19.43,20.028,21.214,23.43 +1356,-0.1012,15.7747,0.12561,10.78,11.828,12.49,12.858,13.447,13.861,14.499,15.775,17.176,17.984,18.554,19.438,20.036,21.222,23.439 +1357,-0.1013,15.7802,0.12563,10.783,11.831,12.494,12.862,13.451,13.865,14.503,15.78,17.182,17.99,18.561,19.445,20.044,21.23,23.449 +1358,-0.1015,15.7856,0.12565,10.786,11.835,12.498,12.866,13.455,13.87,14.508,15.786,17.188,17.997,18.568,19.452,20.051,21.239,23.459 +1359,-0.1016,15.7911,0.12567,10.789,11.838,12.502,12.87,13.46,13.874,14.513,15.791,17.194,18.003,18.575,19.46,20.059,21.247,23.469 +1360,-0.1017,15.7966,0.12569,10.793,11.842,12.506,12.874,13.464,13.879,14.518,15.797,17.201,18.01,18.582,19.467,20.067,21.256,23.479 +1361,-0.1018,15.8021,0.1257,10.796,11.846,12.51,12.878,13.469,13.884,14.523,15.802,17.207,18.017,18.589,19.475,20.074,21.264,23.488 +1362,-0.1019,15.8076,0.12572,10.799,11.85,12.514,12.882,13.473,13.888,14.528,15.808,17.213,18.023,18.596,19.482,20.082,21.272,23.498 +1363,-0.102,15.813,0.12574,10.802,11.853,12.518,12.886,13.477,13.893,14.532,15.813,17.219,18.03,18.603,19.489,20.09,21.281,23.507 +1364,-0.1022,15.8185,0.12576,10.806,11.857,12.522,12.89,13.482,13.897,14.537,15.819,17.225,18.037,18.61,19.497,20.098,21.289,23.517 +1365,-0.1023,15.824,0.12578,10.809,11.861,12.526,12.894,13.486,13.902,14.542,15.824,17.231,18.043,18.617,19.504,20.106,21.298,23.527 +1366,-0.1024,15.8295,0.1258,10.812,11.864,12.53,12.899,13.49,13.906,14.547,15.83,17.238,18.05,18.624,19.512,20.114,21.306,23.537 +1367,-0.1025,15.835,0.12581,10.816,11.868,12.534,12.903,13.495,13.911,14.552,15.835,17.244,18.056,18.631,19.519,20.121,21.314,23.546 +1368,-0.1026,15.8404,0.12583,10.819,11.872,12.538,12.907,13.499,13.916,14.557,15.84,17.25,18.063,18.637,19.526,20.129,21.323,23.556 +1369,-0.1027,15.8459,0.12585,10.822,11.875,12.542,12.911,13.503,13.92,14.562,15.846,17.256,18.07,18.644,19.534,20.136,21.331,23.566 +1370,-0.1028,15.8514,0.12587,10.825,11.879,12.545,12.915,13.508,13.925,14.567,15.851,17.262,18.076,18.651,19.541,20.144,21.34,23.576 +1371,-0.103,15.8569,0.12589,10.828,11.883,12.549,12.919,13.512,13.929,14.571,15.857,17.269,18.083,18.658,19.549,20.152,21.348,23.586 +1372,-0.1031,15.8623,0.12591,10.831,11.886,12.553,12.923,13.517,13.934,14.576,15.862,17.275,18.089,18.665,19.556,20.16,21.357,23.595 +1373,-0.1032,15.8678,0.12592,10.835,11.89,12.557,12.927,13.521,13.939,14.581,15.868,17.281,18.096,18.672,19.563,20.167,21.365,23.605 +1374,-0.1033,15.8733,0.12594,10.838,11.894,12.561,12.932,13.525,13.943,14.586,15.873,17.287,18.103,18.679,19.571,20.175,21.373,23.615 +1375,-0.1034,15.8788,0.12596,10.841,11.897,12.565,12.936,13.53,13.948,14.591,15.879,17.293,18.109,18.686,19.578,20.183,21.382,23.624 +1376,-0.1035,15.8842,0.12598,10.844,11.901,12.569,12.94,13.534,13.952,14.596,15.884,17.299,18.116,18.693,19.586,20.191,21.39,23.634 +1377,-0.1037,15.8897,0.126,10.848,11.905,12.573,12.944,13.538,13.957,14.601,15.89,17.306,18.122,18.7,19.593,20.199,21.399,23.644 +1378,-0.1038,15.8952,0.12602,10.851,11.908,12.577,12.948,13.543,13.961,14.605,15.895,17.312,18.129,18.707,19.601,20.206,21.407,23.654 +1379,-0.1039,15.9007,0.12603,10.854,11.912,12.581,12.952,13.547,13.966,14.61,15.901,17.318,18.136,18.714,19.608,20.214,21.415,23.663 +1380,-0.104,15.9061,0.12605,10.858,11.916,12.585,12.956,13.552,13.97,14.615,15.906,17.324,18.142,18.72,19.615,20.222,21.424,23.673 +1381,-0.1041,15.9116,0.12607,10.861,11.919,12.589,12.96,13.556,13.975,14.62,15.912,17.33,18.149,18.727,19.623,20.229,21.432,23.683 +1382,-0.1042,15.9171,0.12609,10.864,11.923,12.593,12.964,13.56,13.979,14.625,15.917,17.337,18.156,18.734,19.63,20.237,21.441,23.693 +1383,-0.1043,15.9226,0.12611,10.867,11.926,12.597,12.968,13.565,13.984,14.63,15.923,17.343,18.162,18.741,19.638,20.245,21.449,23.703 +1384,-0.1045,15.928,0.12613,10.87,11.93,12.601,12.972,13.569,13.989,14.634,15.928,17.349,18.169,18.748,19.645,20.253,21.458,23.713 +1385,-0.1046,15.9335,0.12615,10.874,11.934,12.605,12.977,13.573,13.993,14.639,15.934,17.355,18.175,18.755,19.653,20.261,21.466,23.723 +1386,-0.1047,15.939,0.12616,10.877,11.938,12.609,12.981,13.578,13.998,14.644,15.939,17.361,18.182,18.762,19.66,20.268,21.474,23.732 +1387,-0.1048,15.9445,0.12618,10.88,11.941,12.613,12.985,13.582,14.002,14.649,15.945,17.368,18.189,18.769,19.667,20.276,21.483,23.742 +1388,-0.1049,15.9499,0.1262,10.883,11.945,12.616,12.989,13.587,14.007,14.654,15.95,17.374,18.195,18.776,19.675,20.284,21.491,23.751 +1389,-0.105,15.9554,0.12622,10.887,11.948,12.62,12.993,13.591,14.011,14.659,15.955,17.38,18.202,18.783,19.682,20.291,21.5,23.761 +1390,-0.1051,15.9609,0.12624,10.89,11.952,12.624,12.997,13.595,14.016,14.664,15.961,17.386,18.209,18.79,19.69,20.299,21.508,23.771 +1391,-0.1053,15.9664,0.12626,10.893,11.956,12.628,13.001,13.6,14.02,14.669,15.966,17.392,18.215,18.797,19.697,20.307,21.517,23.781 +1392,-0.1054,15.9718,0.12627,10.896,11.96,12.632,13.005,13.604,14.025,14.673,15.972,17.398,18.222,18.803,19.704,20.315,21.525,23.79 +1393,-0.1055,15.9773,0.12629,10.9,11.963,12.636,13.01,13.608,14.03,14.678,15.977,17.405,18.228,18.81,19.712,20.322,21.534,23.8 +1394,-0.1056,15.9828,0.12631,10.903,11.967,12.64,13.014,13.613,14.034,14.683,15.983,17.411,18.235,18.817,19.719,20.33,21.542,23.81 +1395,-0.1057,15.9882,0.12633,10.906,11.97,12.644,13.018,13.617,14.039,14.688,15.988,17.417,18.241,18.824,19.726,20.338,21.551,23.82 +1396,-0.1058,15.9937,0.12635,10.909,11.974,12.648,13.022,13.621,14.043,14.693,15.994,17.423,18.248,18.831,19.734,20.346,21.559,23.83 +1397,-0.1059,15.9992,0.12637,10.912,11.978,12.652,13.026,13.626,14.048,14.698,15.999,17.429,18.255,18.838,19.741,20.354,21.568,23.84 +1398,-0.1061,16.0047,0.12639,10.916,11.981,12.656,13.03,13.63,14.052,14.702,16.005,17.436,18.262,18.845,19.749,20.361,21.576,23.85 +1399,-0.1062,16.0101,0.12641,10.919,11.985,12.66,13.034,13.634,14.057,14.707,16.01,17.442,18.268,18.852,19.756,20.369,21.585,23.86 +1400,-0.1063,16.0156,0.12642,10.922,11.989,12.664,13.038,13.639,14.062,14.712,16.016,17.448,18.275,18.859,19.764,20.377,21.593,23.869 +1401,-0.1064,16.0211,0.12644,10.925,11.992,12.668,13.042,13.643,14.066,14.717,16.021,17.454,18.281,18.866,19.771,20.384,21.601,23.879 +1402,-0.1065,16.0265,0.12646,10.928,11.996,12.672,13.046,13.648,14.071,14.722,16.026,17.46,18.288,18.873,19.778,20.392,21.61,23.889 +1403,-0.1066,16.032,0.12648,10.932,12,12.675,13.05,13.652,14.075,14.727,16.032,17.467,18.294,18.88,19.786,20.4,21.618,23.898 +1404,-0.1067,16.0375,0.1265,10.935,12.003,12.679,13.054,13.656,14.08,14.732,16.038,17.473,18.301,18.887,19.793,20.408,21.627,23.908 +1405,-0.1068,16.043,0.12652,10.938,12.007,12.683,13.059,13.661,14.084,14.736,16.043,17.479,18.308,18.894,19.801,20.416,21.635,23.918 +1406,-0.107,16.0484,0.12654,10.941,12.01,12.687,13.063,13.665,14.089,14.741,16.048,17.485,18.314,18.901,19.808,20.424,21.644,23.928 +1407,-0.1071,16.0539,0.12656,10.944,12.014,12.691,13.067,13.669,14.093,14.746,16.054,17.491,18.321,18.908,19.816,20.431,21.652,23.938 +1408,-0.1072,16.0594,0.12657,10.948,12.018,12.695,13.071,13.674,14.098,14.751,16.059,17.497,18.328,18.914,19.823,20.439,21.66,23.947 +1409,-0.1073,16.0648,0.12659,10.951,12.021,12.699,13.075,13.678,14.102,14.756,16.065,17.504,18.334,18.921,19.83,20.447,21.669,23.957 +1410,-0.1074,16.0703,0.12661,10.954,12.025,12.703,13.079,13.682,14.107,14.761,16.07,17.51,18.341,18.928,19.838,20.454,21.677,23.967 +1411,-0.1075,16.0758,0.12663,10.957,12.029,12.707,13.083,13.687,14.111,14.766,16.076,17.516,18.347,18.935,19.845,20.462,21.686,23.977 +1412,-0.1076,16.0812,0.12665,10.96,12.032,12.711,13.087,13.691,14.116,14.77,16.081,17.522,18.354,18.942,19.853,20.47,21.694,23.987 +1413,-0.1078,16.0867,0.12667,10.964,12.036,12.715,13.091,13.695,14.121,14.775,16.087,17.528,18.361,18.949,19.86,20.478,21.703,23.997 +1414,-0.1079,16.0922,0.12669,10.967,12.04,12.719,13.095,13.7,14.125,14.78,16.092,17.535,18.367,18.956,19.868,20.486,21.712,24.007 +1415,-0.108,16.0976,0.12671,10.97,12.043,12.722,13.099,13.704,14.13,14.785,16.098,17.541,18.374,18.963,19.875,20.493,21.72,24.017 +1416,-0.1081,16.1031,0.12673,10.973,12.047,12.726,13.103,13.708,14.134,14.79,16.103,17.547,18.381,18.97,19.883,20.501,21.729,24.027 +1417,-0.1082,16.1086,0.12674,10.977,12.051,12.731,13.108,13.713,14.139,14.795,16.109,17.553,18.387,18.977,19.89,20.509,21.737,24.036 +1418,-0.1083,16.114,0.12676,10.98,12.054,12.734,13.112,13.717,14.143,14.799,16.114,17.559,18.394,18.984,19.897,20.517,21.745,24.046 +1419,-0.1084,16.1195,0.12678,10.983,12.058,12.738,13.116,13.722,14.148,14.804,16.119,17.566,18.4,18.991,19.905,20.524,21.754,24.056 +1420,-0.1085,16.125,0.1268,10.986,12.061,12.742,13.12,13.726,14.152,14.809,16.125,17.572,18.407,18.998,19.912,20.532,21.762,24.066 +1421,-0.1087,16.1304,0.12682,10.989,12.065,12.746,13.124,13.73,14.157,14.814,16.13,17.578,18.414,19.005,19.92,20.54,21.771,24.076 +1422,-0.1088,16.1359,0.12684,10.992,12.069,12.75,13.128,13.735,14.161,14.819,16.136,17.584,18.42,19.012,19.927,20.548,21.779,24.086 +1423,-0.1089,16.1414,0.12686,10.996,12.072,12.754,13.132,13.739,14.166,14.824,16.141,17.59,18.427,19.019,19.935,20.556,21.788,24.096 +1424,-0.109,16.1468,0.12688,10.999,12.076,12.758,13.136,13.743,14.17,14.828,16.147,17.597,18.434,19.026,19.942,20.563,21.796,24.105 +1425,-0.1091,16.1523,0.1269,11.002,12.079,12.762,13.14,13.748,14.175,14.833,16.152,17.603,18.44,19.033,19.95,20.571,21.805,24.115 +1426,-0.1092,16.1578,0.12692,11.005,12.083,12.766,13.144,13.752,14.179,14.838,16.158,17.609,18.447,19.04,19.957,20.579,21.813,24.125 +1427,-0.1093,16.1632,0.12693,11.009,12.087,12.77,13.148,13.756,14.184,14.843,16.163,17.615,18.453,19.046,19.964,20.587,21.821,24.134 +1428,-0.1094,16.1687,0.12695,11.012,12.09,12.774,13.153,13.761,14.189,14.848,16.169,17.621,18.46,19.053,19.972,20.594,21.83,24.144 +1429,-0.1096,16.1742,0.12697,11.015,12.094,12.777,13.157,13.765,14.193,14.853,16.174,17.628,18.467,19.06,19.979,20.602,21.839,24.154 +1430,-0.1097,16.1796,0.12699,11.018,12.098,12.781,13.161,13.769,14.198,14.857,16.18,17.634,18.473,19.067,19.987,20.61,21.847,24.164 +1431,-0.1098,16.1851,0.12701,11.021,12.101,12.785,13.165,13.774,14.202,14.862,16.185,17.64,18.48,19.074,19.994,20.618,21.856,24.174 +1432,-0.1099,16.1906,0.12703,11.024,12.105,12.789,13.169,13.778,14.207,14.867,16.191,17.646,18.487,19.081,20.002,20.626,21.864,24.184 +1433,-0.11,16.196,0.12705,11.027,12.108,12.793,13.173,13.782,14.211,14.872,16.196,17.652,18.493,19.088,20.009,20.633,21.873,24.194 +1434,-0.1101,16.2015,0.12707,11.031,12.112,12.797,13.177,13.787,14.216,14.877,16.202,17.659,18.5,19.095,20.017,20.641,21.881,24.204 +1435,-0.1102,16.2069,0.12709,11.034,12.116,12.801,13.181,13.791,14.22,14.881,16.207,17.665,18.507,19.102,20.024,20.649,21.89,24.214 +1436,-0.1103,16.2124,0.12711,11.037,12.119,12.805,13.185,13.795,14.225,14.886,16.212,17.671,18.513,19.109,20.031,20.657,21.898,24.224 +1437,-0.1105,16.2179,0.12713,11.04,12.123,12.809,13.189,13.8,14.229,14.891,16.218,17.677,18.52,19.116,20.039,20.665,21.907,24.234 +1438,-0.1106,16.2233,0.12715,11.043,12.126,12.812,13.193,13.804,14.234,14.896,16.223,17.683,18.526,19.123,20.046,20.673,21.915,24.244 +1439,-0.1107,16.2288,0.12717,11.046,12.13,12.816,13.197,13.808,14.238,14.901,16.229,17.69,18.533,19.13,20.054,20.681,21.924,24.254 +1440,-0.1108,16.2343,0.12718,11.05,12.134,12.82,13.201,13.813,14.243,14.906,16.234,17.696,18.54,19.137,20.061,20.688,21.932,24.263 +1441,-0.1109,16.2397,0.1272,11.053,12.137,12.824,13.205,13.817,14.247,14.911,16.24,17.702,18.546,19.144,20.068,20.696,21.941,24.273 +1442,-0.111,16.2452,0.12722,11.056,12.141,12.828,13.209,13.821,14.252,14.915,16.245,17.708,18.553,19.151,20.076,20.704,21.949,24.283 +1443,-0.1111,16.2506,0.12724,11.059,12.145,12.832,13.213,13.826,14.256,14.92,16.251,17.714,18.559,19.157,20.083,20.711,21.958,24.293 +1444,-0.1112,16.2561,0.12726,11.063,12.148,12.836,13.218,13.83,14.261,14.925,16.256,17.72,18.566,19.164,20.091,20.719,21.966,24.303 +1445,-0.1113,16.2616,0.12728,11.066,12.152,12.84,13.222,13.834,14.266,14.93,16.262,17.727,18.573,19.171,20.098,20.727,21.975,24.313 +1446,-0.1115,16.267,0.1273,11.069,12.155,12.844,13.226,13.839,14.27,14.935,16.267,17.733,18.579,19.178,20.106,20.735,21.983,24.323 +1447,-0.1116,16.2725,0.12732,11.072,12.159,12.848,13.23,13.843,14.275,14.94,16.273,17.739,18.586,19.185,20.113,20.743,21.992,24.333 +1448,-0.1117,16.2779,0.12734,11.075,12.163,12.851,13.234,13.847,14.279,14.944,16.278,17.745,18.593,19.192,20.121,20.751,22,24.343 +1449,-0.1118,16.2834,0.12736,11.078,12.166,12.855,13.238,13.852,14.284,14.949,16.283,17.751,18.599,19.199,20.128,20.758,22.009,24.353 +1450,-0.1119,16.2889,0.12738,11.081,12.17,12.859,13.242,13.856,14.288,14.954,16.289,17.758,18.606,19.206,20.136,20.766,22.018,24.363 +1451,-0.112,16.2943,0.1274,11.085,12.173,12.863,13.246,13.86,14.293,14.959,16.294,17.764,18.613,19.213,20.143,20.774,22.026,24.372 +1452,-0.1121,16.2998,0.12742,11.088,12.177,12.867,13.25,13.865,14.297,14.964,16.3,17.77,18.619,19.22,20.151,20.782,22.035,24.382 +1453,-0.1122,16.3053,0.12744,11.091,12.181,12.871,13.254,13.869,14.302,14.968,16.305,17.776,18.626,19.227,20.158,20.79,22.043,24.392 +1454,-0.1123,16.3107,0.12746,11.094,12.184,12.875,13.258,13.873,14.306,14.973,16.311,17.782,18.633,19.234,20.166,20.798,22.052,24.402 +1455,-0.1125,16.3162,0.12747,11.098,12.188,12.879,13.262,13.878,14.311,14.978,16.316,17.789,18.639,19.241,20.173,20.805,22.06,24.412 +1456,-0.1126,16.3216,0.12749,11.101,12.192,12.883,13.266,13.882,14.315,14.983,16.322,17.795,18.646,19.248,20.18,20.813,22.068,24.422 +1457,-0.1127,16.3271,0.12751,11.104,12.195,12.887,13.27,13.886,14.32,14.988,16.327,17.801,18.652,19.255,20.188,20.821,22.077,24.432 +1458,-0.1128,16.3325,0.12753,11.107,12.199,12.89,13.274,13.891,14.324,14.993,16.333,17.807,18.659,19.262,20.195,20.828,22.085,24.442 +1459,-0.1129,16.338,0.12755,11.11,12.202,12.894,13.278,13.895,14.329,14.997,16.338,17.813,18.666,19.269,20.203,20.836,22.094,24.452 +1460,-0.113,16.3435,0.12757,11.113,12.206,12.898,13.282,13.899,14.333,15.002,16.343,17.82,18.672,19.276,20.21,20.844,22.103,24.462 +1461,-0.1131,16.3489,0.12759,11.116,12.21,12.902,13.286,13.904,14.338,15.007,16.349,17.826,18.679,19.283,20.218,20.852,22.111,24.471 +1462,-0.1132,16.3544,0.12761,11.12,12.213,12.906,13.291,13.908,14.342,15.012,16.354,17.832,18.686,19.29,20.225,20.86,22.12,24.481 +1463,-0.1133,16.3598,0.12763,11.123,12.217,12.91,13.295,13.912,14.347,15.017,16.36,17.838,18.692,19.297,20.233,20.868,22.128,24.491 +1464,-0.1134,16.3653,0.12765,11.126,12.22,12.914,13.299,13.916,14.351,15.021,16.365,17.844,18.699,19.304,20.24,20.875,22.137,24.501 +1465,-0.1136,16.3708,0.12767,11.129,12.224,12.918,13.303,13.921,14.356,15.026,16.371,17.851,18.706,19.311,20.248,20.883,22.145,24.512 +1466,-0.1137,16.3762,0.12769,11.132,12.227,12.921,13.307,13.925,14.36,15.031,16.376,17.857,18.712,19.318,20.255,20.891,22.154,24.521 +1467,-0.1138,16.3817,0.12771,11.135,12.231,12.925,13.311,13.929,14.365,15.036,16.382,17.863,18.719,19.325,20.263,20.899,22.162,24.531 +1468,-0.1139,16.3871,0.12773,11.138,12.235,12.929,13.315,13.934,14.369,15.041,16.387,17.869,18.726,19.331,20.27,20.907,22.171,24.541 +1469,-0.114,16.3926,0.12775,11.142,12.238,12.933,13.319,13.938,14.374,15.046,16.393,17.875,18.732,19.338,20.278,20.915,22.18,24.551 +1470,-0.1141,16.3981,0.12777,11.145,12.242,12.937,13.323,13.942,14.378,15.05,16.398,17.882,18.739,19.345,20.285,20.923,22.188,24.561 +1471,-0.1142,16.4035,0.12779,11.148,12.245,12.941,13.327,13.947,14.383,15.055,16.404,17.888,18.745,19.352,20.293,20.93,22.197,24.571 +1472,-0.1143,16.409,0.12781,11.151,12.249,12.945,13.331,13.951,14.387,15.06,16.409,17.894,18.752,19.359,20.3,20.938,22.205,24.581 +1473,-0.1144,16.4144,0.12783,11.154,12.252,12.949,13.335,13.955,14.392,15.065,16.414,17.9,18.759,19.366,20.308,20.946,22.214,24.591 +1474,-0.1146,16.4199,0.12785,11.157,12.256,12.952,13.339,13.96,14.396,15.07,16.42,17.906,18.765,19.373,20.315,20.954,22.222,24.601 +1475,-0.1147,16.4253,0.12787,11.16,12.26,12.956,13.343,13.964,14.401,15.074,16.425,17.913,18.772,19.38,20.323,20.962,22.231,24.611 +1476,-0.1148,16.4308,0.12789,11.164,12.263,12.96,13.347,13.968,14.405,15.079,16.431,17.919,18.779,19.387,20.33,20.97,22.24,24.621 +1477,-0.1149,16.4363,0.12791,11.167,12.267,12.964,13.351,13.973,14.41,15.084,16.436,17.925,18.785,19.394,20.338,20.978,22.248,24.631 +1478,-0.115,16.4417,0.12793,11.17,12.27,12.968,13.355,13.977,14.414,15.089,16.442,17.931,18.792,19.401,20.345,20.985,22.257,24.641 +1479,-0.1151,16.4472,0.12795,11.173,12.274,12.972,13.359,13.981,14.419,15.094,16.447,17.937,18.799,19.408,20.353,20.993,22.265,24.651 +1480,-0.1152,16.4526,0.12797,11.176,12.278,12.976,13.363,13.985,14.423,15.098,16.453,17.944,18.805,19.415,20.36,21.001,22.274,24.661 +1481,-0.1153,16.4581,0.12799,11.179,12.281,12.98,13.367,13.99,14.428,15.103,16.458,17.95,18.812,19.422,20.367,21.009,22.282,24.671 +1482,-0.1154,16.4635,0.12801,11.182,12.285,12.983,13.371,13.994,14.432,15.108,16.464,17.956,18.819,19.429,20.375,21.017,22.291,24.681 +1483,-0.1155,16.469,0.12803,11.185,12.288,12.987,13.375,13.998,14.437,15.113,16.469,17.962,18.825,19.436,20.382,21.025,22.3,24.691 +1484,-0.1156,16.4745,0.12804,11.189,12.292,12.991,13.38,14.003,14.442,15.118,16.475,17.968,18.832,19.443,20.39,21.032,22.308,24.7 +1485,-0.1158,16.4799,0.12806,11.192,12.296,12.995,13.384,14.007,14.446,15.123,16.48,17.974,18.838,19.45,20.397,21.04,22.316,24.711 +1486,-0.1159,16.4854,0.12808,11.195,12.299,12.999,13.388,14.011,14.451,15.128,16.485,17.981,18.845,19.457,20.405,21.048,22.325,24.721 +1487,-0.116,16.4908,0.1281,11.198,12.303,13.003,13.392,14.016,14.455,15.132,16.491,17.987,18.852,19.464,20.412,21.056,22.333,24.731 +1488,-0.1161,16.4963,0.12812,11.201,12.306,13.007,13.396,14.02,14.46,15.137,16.496,17.993,18.858,19.471,20.42,21.063,22.342,24.741 +1489,-0.1162,16.5017,0.12814,11.205,12.31,13.011,13.4,14.024,14.464,15.142,16.502,17.999,18.865,19.478,20.427,21.071,22.35,24.75 +1490,-0.1163,16.5072,0.12816,11.208,12.314,13.015,13.404,14.029,14.469,15.147,16.507,18.005,18.872,19.485,20.435,21.079,22.359,24.761 +1491,-0.1164,16.5126,0.12818,11.211,12.317,13.018,13.408,14.033,14.473,15.152,16.513,18.012,18.878,19.492,20.442,21.087,22.368,24.77 +1492,-0.1165,16.5181,0.1282,11.214,12.321,13.022,13.412,14.037,14.478,15.156,16.518,18.018,18.885,19.499,20.45,21.095,22.376,24.781 +1493,-0.1166,16.5236,0.12822,11.217,12.324,13.026,13.416,14.042,14.482,15.161,16.524,18.024,18.892,19.506,20.457,21.103,22.385,24.791 +1494,-0.1167,16.529,0.12824,11.22,12.328,13.03,13.42,14.046,14.487,15.166,16.529,18.03,18.898,19.513,20.465,21.11,22.393,24.801 +1495,-0.1168,16.5345,0.12826,11.223,12.331,13.034,13.424,14.05,14.491,15.171,16.535,18.037,18.905,19.52,20.472,21.118,22.402,24.811 +1496,-0.117,16.5399,0.12828,11.227,12.335,13.038,13.428,14.054,14.496,15.176,16.54,18.043,18.912,19.527,20.48,21.126,22.411,24.821 +1497,-0.1171,16.5454,0.1283,11.23,12.339,13.042,13.432,14.059,14.5,15.18,16.545,18.049,18.918,19.534,20.487,21.134,22.419,24.831 +1498,-0.1172,16.5508,0.12832,11.233,12.342,13.045,13.436,14.063,14.505,15.185,16.551,18.055,18.925,19.54,20.494,21.142,22.428,24.841 +1499,-0.1173,16.5563,0.12834,11.236,12.346,13.049,13.44,14.067,14.509,15.19,16.556,18.061,18.932,19.548,20.502,21.15,22.436,24.851 +1500,-0.1174,16.5618,0.12836,11.239,12.349,13.053,13.444,14.072,14.514,15.195,16.562,18.068,18.938,19.555,20.51,21.158,22.445,24.861 +1501,-0.1175,16.5672,0.12838,11.242,12.353,13.057,13.448,14.076,14.518,15.2,16.567,18.074,18.945,19.561,20.517,21.166,22.454,24.871 +1502,-0.1176,16.5727,0.1284,11.245,12.356,13.061,13.452,14.08,14.523,15.204,16.573,18.08,18.952,19.568,20.525,21.173,22.462,24.881 +1503,-0.1177,16.5781,0.12842,11.248,12.36,13.065,13.456,14.085,14.527,15.209,16.578,18.086,18.958,19.575,20.532,21.181,22.471,24.891 +1504,-0.1178,16.5836,0.12844,11.252,12.364,13.069,13.46,14.089,14.532,15.214,16.584,18.092,18.965,19.582,20.54,21.189,22.479,24.901 +1505,-0.1179,16.589,0.12846,11.255,12.367,13.072,13.464,14.093,14.536,15.219,16.589,18.099,18.971,19.589,20.547,21.197,22.488,24.911 +1506,-0.118,16.5945,0.12848,11.258,12.371,13.076,13.468,14.097,14.541,15.224,16.595,18.105,18.978,19.596,20.555,21.205,22.496,24.921 +1507,-0.1182,16.5999,0.1285,11.261,12.374,13.08,13.472,14.102,14.545,15.228,16.6,18.111,18.985,19.603,20.562,21.213,22.505,24.931 +1508,-0.1183,16.6054,0.12852,11.264,12.378,13.084,13.476,14.106,14.55,15.233,16.605,18.117,18.991,19.61,20.57,21.221,22.514,24.941 +1509,-0.1184,16.6109,0.12854,11.267,12.381,13.088,13.48,14.11,14.554,15.238,16.611,18.123,18.998,19.617,20.577,21.228,22.522,24.951 +1510,-0.1185,16.6163,0.12856,11.27,12.385,13.092,13.484,14.115,14.559,15.243,16.616,18.13,19.005,19.624,20.585,21.236,22.531,24.961 +1511,-0.1186,16.6218,0.12858,11.273,12.389,13.096,13.488,14.119,14.563,15.248,16.622,18.136,19.011,19.631,20.592,21.244,22.54,24.971 +1512,-0.1187,16.6272,0.1286,11.277,12.392,13.1,13.492,14.123,14.568,15.253,16.627,18.142,19.018,19.638,20.6,21.252,22.548,24.981 +1513,-0.1188,16.6327,0.12863,11.279,12.395,13.103,13.496,14.127,14.572,15.257,16.633,18.148,19.025,19.646,20.607,21.26,22.557,24.992 +1514,-0.1189,16.6381,0.12865,11.282,12.399,13.107,13.5,14.132,14.576,15.262,16.638,18.155,19.032,19.652,20.615,21.268,22.566,25.002 +1515,-0.119,16.6436,0.12867,11.286,12.403,13.111,13.504,14.136,14.581,15.267,16.644,18.161,19.038,19.66,20.622,21.276,22.574,25.012 +1516,-0.1191,16.649,0.12869,11.289,12.406,13.115,13.508,14.14,14.585,15.272,16.649,18.167,19.045,19.666,20.63,21.284,22.583,25.022 +1517,-0.1192,16.6545,0.12871,11.292,12.41,13.119,13.512,14.145,14.59,15.276,16.655,18.173,19.052,19.673,20.637,21.292,22.592,25.032 +1518,-0.1193,16.6599,0.12873,11.295,12.413,13.122,13.516,14.149,14.594,15.281,16.66,18.179,19.058,19.68,20.645,21.3,22.6,25.042 +1519,-0.1195,16.6654,0.12875,11.298,12.417,13.126,13.52,14.153,14.599,15.286,16.665,18.186,19.065,19.687,20.652,21.308,22.609,25.052 +1520,-0.1196,16.6709,0.12877,11.301,12.42,13.13,13.524,14.158,14.603,15.291,16.671,18.192,19.072,19.695,20.66,21.315,22.618,25.063 +1521,-0.1197,16.6763,0.12879,11.304,12.424,13.134,13.528,14.162,14.608,15.296,16.676,18.198,19.078,19.701,20.667,21.323,22.626,25.073 +1522,-0.1198,16.6818,0.12881,11.307,12.428,13.138,13.532,14.166,14.612,15.301,16.682,18.204,19.085,19.708,20.675,21.331,22.635,25.083 +1523,-0.1199,16.6872,0.12883,11.311,12.431,13.142,13.536,14.17,14.617,15.305,16.687,18.21,19.092,19.715,20.682,21.339,22.643,25.093 +1524,-0.12,16.6927,0.12885,11.314,12.435,13.146,13.54,14.175,14.621,15.31,16.693,18.217,19.098,19.722,20.69,21.347,22.652,25.103 +1525,-0.1201,16.6981,0.12887,11.317,12.438,13.149,13.544,14.179,14.626,15.315,16.698,18.223,19.105,19.729,20.697,21.355,22.66,25.113 +1526,-0.1202,16.7036,0.12889,11.32,12.442,13.153,13.548,14.183,14.63,15.32,16.704,18.229,19.112,19.736,20.705,21.363,22.669,25.123 +1527,-0.1203,16.709,0.12891,11.323,12.445,13.157,13.552,14.188,14.635,15.324,16.709,18.235,19.118,19.743,20.712,21.37,22.678,25.133 +1528,-0.1204,16.7145,0.12893,11.326,12.449,13.161,13.557,14.192,14.639,15.329,16.715,18.241,19.125,19.75,20.72,21.378,22.686,25.143 +1529,-0.1205,16.72,0.12895,11.329,12.452,13.165,13.561,14.196,14.644,15.334,16.72,18.248,19.132,19.757,20.728,21.386,22.695,25.153 +1530,-0.1206,16.7254,0.12897,11.332,12.456,13.169,13.565,14.2,14.648,15.339,16.725,18.254,19.138,19.764,20.735,21.394,22.704,25.163 +1531,-0.1207,16.7309,0.12899,11.336,12.46,13.173,13.569,14.205,14.653,15.344,16.731,18.26,19.145,19.771,20.743,21.402,22.712,25.173 +1532,-0.1208,16.7363,0.12901,11.339,12.463,13.176,13.573,14.209,14.657,15.349,16.736,18.266,19.152,19.778,20.75,21.41,22.721,25.183 +1533,-0.121,16.7418,0.12903,11.342,12.467,13.18,13.577,14.213,14.662,15.353,16.742,18.273,19.158,19.785,20.758,21.418,22.73,25.193 +1534,-0.1211,16.7472,0.12905,11.345,12.47,13.184,13.581,14.218,14.666,15.358,16.747,18.279,19.165,19.792,20.765,21.426,22.738,25.203 +1535,-0.1212,16.7527,0.12907,11.348,12.474,13.188,13.585,14.222,14.671,15.363,16.753,18.285,19.172,19.799,20.773,21.434,22.747,25.213 +1536,-0.1213,16.7581,0.12909,11.351,12.477,13.192,13.589,14.226,14.675,15.368,16.758,18.291,19.178,19.806,20.78,21.441,22.755,25.223 +1537,-0.1214,16.7636,0.12911,11.354,12.481,13.196,13.593,14.231,14.68,15.373,16.764,18.297,19.185,19.813,20.788,21.449,22.764,25.234 +1538,-0.1215,16.769,0.12913,11.357,12.484,13.2,13.597,14.235,14.684,15.377,16.769,18.304,19.191,19.82,20.795,21.457,22.772,25.244 +1539,-0.1216,16.7745,0.12915,11.36,12.488,13.203,13.601,14.239,14.689,15.382,16.775,18.31,19.198,19.827,20.803,21.465,22.781,25.254 +1540,-0.1217,16.78,0.12917,11.364,12.492,13.207,13.605,14.243,14.693,15.387,16.78,18.316,19.205,19.834,20.81,21.473,22.79,25.264 +1541,-0.1218,16.7854,0.12919,11.367,12.495,13.211,13.609,14.248,14.698,15.392,16.785,18.322,19.212,19.841,20.818,21.481,22.798,25.274 +1542,-0.1219,16.7909,0.12921,11.37,12.499,13.215,13.613,14.252,14.702,15.397,16.791,18.328,19.218,19.848,20.825,21.489,22.807,25.284 +1543,-0.122,16.7963,0.12923,11.373,12.502,13.219,13.617,14.256,14.707,15.401,16.796,18.335,19.225,19.855,20.833,21.496,22.816,25.294 +1544,-0.1221,16.8018,0.12925,11.376,12.506,13.223,13.621,14.261,14.711,15.406,16.802,18.341,19.232,19.862,20.84,21.504,22.824,25.304 +1545,-0.1222,16.8072,0.12928,11.379,12.509,13.226,13.625,14.265,14.716,15.411,16.807,18.347,19.238,19.87,20.848,21.513,22.833,25.315 +1546,-0.1223,16.8127,0.1293,11.382,12.513,13.23,13.629,14.269,14.72,15.416,16.813,18.353,19.245,19.877,20.856,21.521,22.842,25.325 +1547,-0.1225,16.8181,0.12932,11.385,12.516,13.234,13.633,14.273,14.724,15.42,16.818,18.36,19.252,19.884,20.863,21.528,22.851,25.335 +1548,-0.1226,16.8236,0.12934,11.388,12.52,13.238,13.637,14.278,14.729,15.425,16.824,18.366,19.258,19.891,20.871,21.536,22.859,25.345 +1549,-0.1227,16.829,0.12936,11.391,12.523,13.242,13.641,14.282,14.733,15.43,16.829,18.372,19.265,19.898,20.878,21.544,22.868,25.355 +1550,-0.1228,16.8345,0.12938,11.394,12.527,13.246,13.645,14.286,14.738,15.435,16.835,18.378,19.272,19.905,20.886,21.552,22.877,25.366 +1551,-0.1229,16.84,0.1294,11.398,12.53,13.249,13.649,14.29,14.743,15.44,16.84,18.384,19.278,19.912,20.893,21.56,22.885,25.376 +1552,-0.123,16.8454,0.12942,11.401,12.534,13.253,13.653,14.295,14.747,15.444,16.845,18.391,19.285,19.919,20.901,21.568,22.894,25.386 +1553,-0.1231,16.8509,0.12944,11.404,12.538,13.257,13.657,14.299,14.751,15.449,16.851,18.397,19.292,19.926,20.908,21.576,22.903,25.396 +1554,-0.1232,16.8563,0.12946,11.407,12.541,13.261,13.661,14.303,14.756,15.454,16.856,18.403,19.298,19.933,20.916,21.584,22.911,25.406 +1555,-0.1233,16.8618,0.12948,11.41,12.545,13.265,13.665,14.308,14.76,15.459,16.862,18.409,19.305,19.94,20.923,21.592,22.92,25.416 +1556,-0.1234,16.8672,0.1295,11.413,12.548,13.269,13.669,14.312,14.765,15.464,16.867,18.415,19.312,19.947,20.931,21.599,22.928,25.426 +1557,-0.1235,16.8727,0.12952,11.416,12.552,13.272,13.673,14.316,14.769,15.468,16.873,18.422,19.318,19.954,20.939,21.607,22.937,25.436 +1558,-0.1236,16.8781,0.12954,11.419,12.555,13.276,13.677,14.32,14.774,15.473,16.878,18.428,19.325,19.961,20.946,21.615,22.946,25.446 +1559,-0.1237,16.8836,0.12956,11.422,12.559,13.28,13.681,14.325,14.778,15.478,16.884,18.434,19.332,19.968,20.954,21.623,22.954,25.456 +1560,-0.1238,16.8891,0.12958,11.425,12.562,13.284,13.685,14.329,14.783,15.483,16.889,18.44,19.339,19.975,20.961,21.631,22.963,25.467 +1561,-0.1239,16.8945,0.1296,11.429,12.566,13.288,13.689,14.333,14.787,15.488,16.895,18.447,19.345,19.982,20.969,21.639,22.972,25.477 +1562,-0.124,16.9,0.12962,11.432,12.569,13.292,13.693,14.338,14.792,15.493,16.9,18.453,19.352,19.989,20.976,21.647,22.98,25.487 +1563,-0.1242,16.9054,0.12965,11.434,12.573,13.295,13.697,14.342,14.796,15.497,16.905,18.459,19.359,19.996,20.984,21.655,22.99,25.498 +1564,-0.1243,16.9109,0.12967,11.438,12.576,13.299,13.701,14.346,14.801,15.502,16.911,18.465,19.365,20.003,20.992,21.663,22.998,25.508 +1565,-0.1244,16.9163,0.12969,11.441,12.58,13.303,13.705,14.35,14.805,15.507,16.916,18.472,19.372,20.01,20.999,21.671,23.007,25.518 +1566,-0.1245,16.9218,0.12971,11.444,12.583,13.307,13.709,14.355,14.81,15.512,16.922,18.478,19.379,20.017,21.007,21.679,23.015,25.528 +1567,-0.1246,16.9272,0.12973,11.447,12.587,13.311,13.713,14.359,14.814,15.516,16.927,18.484,19.385,20.024,21.014,21.687,23.024,25.538 +1568,-0.1247,16.9327,0.12975,11.45,12.591,13.314,13.717,14.363,14.819,15.521,16.933,18.49,19.392,20.031,21.022,21.695,23.033,25.548 +1569,-0.1248,16.9382,0.12977,11.453,12.594,13.318,13.721,14.367,14.823,15.526,16.938,18.497,19.399,20.038,21.029,21.703,23.041,25.559 +1570,-0.1249,16.9436,0.12979,11.456,12.598,13.322,13.725,14.372,14.828,15.531,16.944,18.503,19.405,20.045,21.037,21.711,23.05,25.569 +1571,-0.125,16.9491,0.12981,11.459,12.601,13.326,13.729,14.376,14.832,15.536,16.949,18.509,19.412,20.052,21.044,21.718,23.059,25.579 +1572,-0.1251,16.9545,0.12983,11.462,12.605,13.33,13.733,14.38,14.837,15.54,16.955,18.515,19.419,20.059,21.052,21.726,23.067,25.589 +1573,-0.1252,16.96,0.12985,11.466,12.608,13.334,13.737,14.385,14.841,15.545,16.96,18.521,19.425,20.066,21.059,21.734,23.076,25.599 +1574,-0.1253,16.9654,0.12987,11.469,12.612,13.338,13.741,14.389,14.846,15.55,16.965,18.528,19.432,20.073,21.067,21.742,23.085,25.609 +1575,-0.1254,16.9709,0.12989,11.472,12.615,13.341,13.745,14.393,14.85,15.555,16.971,18.534,19.439,20.08,21.075,21.75,23.093,25.619 +1576,-0.1255,16.9763,0.12991,11.475,12.619,13.345,13.749,14.397,14.854,15.56,16.976,18.54,19.445,20.087,21.082,21.758,23.102,25.629 +1577,-0.1256,16.9818,0.12993,11.478,12.622,13.349,13.753,14.402,14.859,15.564,16.982,18.546,19.452,20.094,21.09,21.766,23.111,25.639 +1578,-0.1257,16.9873,0.12996,11.481,12.626,13.353,13.757,14.406,14.863,15.569,16.987,18.553,19.459,20.101,21.098,21.774,23.12,25.651 +1579,-0.1258,16.9927,0.12998,11.484,12.629,13.356,13.761,14.41,14.868,15.574,16.993,18.559,19.466,20.108,21.105,21.782,23.128,25.661 +1580,-0.1259,16.9982,0.13,11.487,12.633,13.36,13.765,14.414,14.872,15.579,16.998,18.565,19.472,20.115,21.113,21.79,23.137,25.671 +1581,-0.126,17.0036,0.13002,11.49,12.636,13.364,13.769,14.419,14.877,15.583,17.004,18.571,19.479,20.122,21.12,21.798,23.146,25.681 +1582,-0.1262,17.0091,0.13004,11.493,12.64,13.368,13.773,14.423,14.881,15.588,17.009,18.577,19.486,20.129,21.128,21.806,23.155,25.691 +1583,-0.1263,17.0145,0.13006,11.496,12.643,13.372,13.777,14.427,14.886,15.593,17.015,18.584,19.492,20.136,21.135,21.814,23.163,25.701 +1584,-0.1264,17.02,0.13008,11.499,12.647,13.376,13.781,14.432,14.89,15.598,17.02,18.59,19.499,20.143,21.143,21.822,23.172,25.712 +1585,-0.1265,17.0255,0.1301,11.502,12.651,13.38,13.785,14.436,14.895,15.603,17.026,18.596,19.506,20.15,21.15,21.83,23.181,25.722 +1586,-0.1266,17.0309,0.13012,11.506,12.654,13.383,13.789,14.44,14.899,15.607,17.031,18.602,19.512,20.157,21.158,21.838,23.189,25.732 +1587,-0.1267,17.0364,0.13014,11.509,12.658,13.387,13.793,14.444,14.904,15.612,17.036,18.609,19.519,20.164,21.165,21.845,23.198,25.742 +1588,-0.1268,17.0418,0.13016,11.512,12.661,13.391,13.797,14.449,14.908,15.617,17.042,18.615,19.526,20.171,21.173,21.853,23.207,25.752 +1589,-0.1269,17.0473,0.13018,11.515,12.665,13.395,13.801,14.453,14.913,15.622,17.047,18.621,19.533,20.178,21.181,21.861,23.215,25.762 +1590,-0.127,17.0527,0.1302,11.518,12.668,13.399,13.805,14.457,14.917,15.627,17.053,18.627,19.539,20.185,21.188,21.869,23.224,25.772 +1591,-0.1271,17.0582,0.13023,11.521,12.672,13.402,13.809,14.461,14.921,15.631,17.058,18.634,19.546,20.193,21.196,21.878,23.233,25.783 +1592,-0.1272,17.0636,0.13025,11.524,12.675,13.406,13.812,14.466,14.926,15.636,17.064,18.64,19.553,20.2,21.203,21.885,23.242,25.793 +1593,-0.1273,17.0691,0.13027,11.527,12.679,13.41,13.817,14.47,14.93,15.641,17.069,18.646,19.559,20.207,21.211,21.893,23.25,25.804 +1594,-0.1274,17.0746,0.13029,11.53,12.682,13.414,13.821,14.474,14.935,15.646,17.075,18.652,19.566,20.214,21.219,21.901,23.259,25.814 +1595,-0.1275,17.08,0.13031,11.533,12.686,13.418,13.825,14.478,14.939,15.651,17.08,18.658,19.573,20.221,21.226,21.909,23.268,25.824 +1596,-0.1276,17.0855,0.13033,11.536,12.689,13.422,13.829,14.483,14.944,15.655,17.086,18.665,19.58,20.228,21.234,21.917,23.276,25.834 +1597,-0.1277,17.0909,0.13035,11.539,12.693,13.425,13.833,14.487,14.948,15.66,17.091,18.671,19.586,20.235,21.241,21.925,23.285,25.844 +1598,-0.1278,17.0964,0.13037,11.542,12.696,13.429,13.837,14.491,14.953,15.665,17.096,18.677,19.593,20.242,21.249,21.933,23.294,25.854 +1599,-0.1279,17.1018,0.13039,11.545,12.7,13.433,13.841,14.496,14.957,15.67,17.102,18.683,19.6,20.249,21.256,21.941,23.302,25.865 +1600,-0.128,17.1073,0.13041,11.549,12.703,13.437,13.845,14.5,14.962,15.675,17.107,18.69,19.606,20.256,21.264,21.949,23.311,25.875 +1601,-0.1281,17.1127,0.13043,11.552,12.707,13.441,13.849,14.504,14.966,15.679,17.113,18.696,19.613,20.263,21.271,21.957,23.32,25.885 +1602,-0.1282,17.1182,0.13045,11.555,12.71,13.445,13.853,14.508,14.971,15.684,17.118,18.702,19.62,20.27,21.279,21.965,23.328,25.895 +1603,-0.1283,17.1237,0.13047,11.558,12.714,13.448,13.857,14.513,14.975,15.689,17.124,18.708,19.626,20.277,21.287,21.973,23.337,25.905 +1604,-0.1285,17.1291,0.1305,11.561,12.717,13.452,13.86,14.517,14.98,15.694,17.129,18.715,19.633,20.284,21.294,21.981,23.347,25.916 +1605,-0.1286,17.1346,0.13052,11.564,12.721,13.456,13.864,14.521,14.984,15.698,17.135,18.721,19.64,20.291,21.302,21.989,23.355,25.927 +1606,-0.1287,17.14,0.13054,11.567,12.724,13.46,13.868,14.525,14.989,15.703,17.14,18.727,19.647,20.298,21.31,21.997,23.364,25.937 +1607,-0.1288,17.1455,0.13056,11.57,12.728,13.464,13.872,14.53,14.993,15.708,17.146,18.733,19.653,20.305,21.317,22.005,23.373,25.947 +1608,-0.1289,17.1509,0.13058,11.573,12.731,13.467,13.876,14.534,14.997,15.713,17.151,18.739,19.66,20.312,21.325,22.013,23.381,25.957 +1609,-0.129,17.1564,0.1306,11.576,12.735,13.471,13.88,14.538,15.002,15.718,17.156,18.746,19.667,20.319,21.332,22.021,23.39,25.967 +1610,-0.1291,17.1618,0.13062,11.579,12.738,13.475,13.884,14.542,15.006,15.722,17.162,18.752,19.673,20.326,21.34,22.028,23.399,25.977 +1611,-0.1292,17.1673,0.13064,11.582,12.742,13.479,13.888,14.547,15.011,15.727,17.167,18.758,19.68,20.333,21.347,22.036,23.407,25.988 +1612,-0.1293,17.1728,0.13066,11.585,12.746,13.483,13.892,14.551,15.015,15.732,17.173,18.764,19.687,20.34,21.355,22.044,23.416,25.998 +1613,-0.1294,17.1782,0.13068,11.588,12.749,13.486,13.896,14.555,15.02,15.737,17.178,18.771,19.693,20.347,21.362,22.052,23.425,26.008 +1614,-0.1295,17.1837,0.1307,11.592,12.753,13.49,13.9,14.56,15.024,15.742,17.184,18.777,19.7,20.355,21.37,22.06,23.433,26.018 +1615,-0.1296,17.1891,0.13073,11.594,12.756,13.494,13.904,14.564,15.029,15.746,17.189,18.783,19.707,20.362,21.378,22.069,23.443,26.029 +1616,-0.1297,17.1946,0.13075,11.597,12.759,13.498,13.908,14.568,15.033,15.751,17.195,18.789,19.714,20.369,21.386,22.077,23.451,26.04 +1617,-0.1298,17.2,0.13077,11.6,12.763,13.502,13.912,14.572,15.038,15.756,17.2,18.796,19.72,20.376,21.393,22.084,23.46,26.05 +1618,-0.1299,17.2055,0.13079,11.604,12.767,13.505,13.916,14.577,15.042,15.761,17.206,18.802,19.727,20.383,21.401,22.092,23.469,26.06 +1619,-0.13,17.2109,0.13081,11.607,12.77,13.509,13.92,14.581,15.047,15.765,17.211,18.808,19.734,20.39,21.408,22.1,23.477,26.07 +1620,-0.1301,17.2164,0.13083,11.61,12.774,13.513,13.924,14.585,15.051,15.77,17.216,18.814,19.74,20.397,21.416,22.108,23.486,26.08 +1621,-0.1302,17.2218,0.13085,11.613,12.777,13.517,13.928,14.589,15.055,15.775,17.222,18.82,19.747,20.404,21.423,22.116,23.495,26.09 +1622,-0.1303,17.2273,0.13087,11.616,12.781,13.521,13.932,14.594,15.06,15.78,17.227,18.827,19.754,20.411,21.431,22.124,23.503,26.101 +1623,-0.1304,17.2328,0.13089,11.619,12.784,13.525,13.936,14.598,15.065,15.785,17.233,18.833,19.761,20.418,21.439,22.132,23.512,26.111 +1624,-0.1305,17.2382,0.13091,11.622,12.788,13.528,13.94,14.602,15.069,15.789,17.238,18.839,19.767,20.425,21.446,22.14,23.521,26.121 +1625,-0.1306,17.2437,0.13093,11.625,12.791,13.532,13.944,14.606,15.073,15.794,17.244,18.845,19.774,20.432,21.454,22.148,23.53,26.131 +1626,-0.1307,17.2491,0.13096,11.628,12.794,13.536,13.948,14.611,15.078,15.799,17.249,18.852,19.781,20.439,21.461,22.156,23.539,26.142 +1627,-0.1308,17.2546,0.13098,11.631,12.798,13.54,13.952,14.615,15.082,15.804,17.255,18.858,19.788,20.446,21.469,22.164,23.548,26.153 +1628,-0.1309,17.26,0.131,11.634,12.801,13.543,13.956,14.619,15.087,15.808,17.26,18.864,19.794,20.453,21.477,22.172,23.556,26.163 +1629,-0.131,17.2655,0.13102,11.637,12.805,13.547,13.96,14.623,15.091,15.813,17.266,18.87,19.801,20.46,21.484,22.18,23.565,26.173 +1630,-0.1311,17.2709,0.13104,11.64,12.809,13.551,13.964,14.628,15.096,15.818,17.271,18.877,19.808,20.467,21.492,22.188,23.574,26.183 +1631,-0.1312,17.2764,0.13106,11.643,12.812,13.555,13.968,14.632,15.1,15.823,17.276,18.883,19.814,20.474,21.499,22.196,23.582,26.193 +1632,-0.1314,17.2818,0.13108,11.646,12.816,13.559,13.972,14.636,15.105,15.828,17.282,18.889,19.821,20.481,21.507,22.204,23.591,26.204 +1633,-0.1315,17.2873,0.1311,11.65,12.819,13.563,13.976,14.64,15.109,15.832,17.287,18.895,19.828,20.489,21.515,22.212,23.6,26.214 +1634,-0.1316,17.2927,0.13112,11.653,12.823,13.566,13.98,14.645,15.113,15.837,17.293,18.902,19.834,20.496,21.522,22.22,23.608,26.224 +1635,-0.1317,17.2982,0.13114,11.656,12.826,13.57,13.984,14.649,15.118,15.842,17.298,18.908,19.841,20.503,21.53,22.228,23.617,26.234 +1636,-0.1318,17.3037,0.13117,11.658,12.83,13.574,13.988,14.653,15.122,15.847,17.304,18.914,19.848,20.51,21.538,22.236,23.627,26.246 +1637,-0.1319,17.3091,0.13119,11.661,12.833,13.578,13.992,14.657,15.127,15.851,17.309,18.92,19.855,20.517,21.545,22.244,23.635,26.256 +1638,-0.132,17.3146,0.13121,11.665,12.837,13.581,13.996,14.662,15.131,15.856,17.315,18.927,19.861,20.524,21.553,22.252,23.644,26.266 +1639,-0.1321,17.32,0.13123,11.668,12.84,13.585,14,14.666,15.136,15.861,17.32,18.933,19.868,20.531,21.56,22.26,23.653,26.276 +1640,-0.1322,17.3255,0.13125,11.671,12.844,13.589,14.004,14.67,15.14,15.866,17.326,18.939,19.875,20.538,21.568,22.268,23.661,26.286 +1641,-0.1323,17.3309,0.13127,11.674,12.847,13.593,14.008,14.674,15.145,15.871,17.331,18.945,19.881,20.545,21.575,22.276,23.67,26.297 +1642,-0.1324,17.3364,0.13129,11.677,12.851,13.597,14.012,14.679,15.149,15.875,17.336,18.952,19.888,20.552,21.583,22.284,23.679,26.307 +1643,-0.1325,17.3418,0.13131,11.68,12.854,13.601,14.016,14.683,15.154,15.88,17.342,18.958,19.895,20.559,21.591,22.292,23.687,26.317 +1644,-0.1326,17.3473,0.13133,11.683,12.858,13.604,14.02,14.687,15.158,15.885,17.347,18.964,19.901,20.566,21.598,22.3,23.696,26.327 +1645,-0.1327,17.3527,0.13135,11.686,12.861,13.608,14.024,14.691,15.163,15.89,17.353,18.97,19.908,20.573,21.606,22.308,23.705,26.337 +1646,-0.1328,17.3582,0.13137,11.689,12.865,13.612,14.028,14.696,15.167,15.895,17.358,18.976,19.915,20.58,21.613,22.316,23.714,26.348 +1647,-0.1329,17.3636,0.1314,11.692,12.868,13.616,14.031,14.7,15.171,15.899,17.364,18.983,19.922,20.588,21.621,22.324,23.723,26.359 +1648,-0.133,17.3691,0.13142,11.695,12.872,13.619,14.035,14.704,15.176,15.904,17.369,18.989,19.928,20.595,21.629,22.332,23.732,26.369 +1649,-0.1331,17.3745,0.13144,11.698,12.875,13.623,14.039,14.708,15.18,15.909,17.375,18.995,19.935,20.602,21.636,22.34,23.74,26.379 +1650,-0.1332,17.38,0.13146,11.701,12.879,13.627,14.043,14.713,15.185,15.914,17.38,19.001,19.942,20.609,21.644,22.348,23.749,26.39 +1651,-0.1333,17.3854,0.13148,11.704,12.882,13.631,14.047,14.717,15.189,15.918,17.385,19.008,19.948,20.616,21.651,22.356,23.758,26.4 +1652,-0.1334,17.3909,0.1315,11.707,12.886,13.635,14.051,14.721,15.194,15.923,17.391,19.014,19.955,20.623,21.659,22.364,23.767,26.41 +1653,-0.1335,17.3963,0.13152,11.71,12.889,13.638,14.055,14.725,15.198,15.928,17.396,19.02,19.962,20.63,21.667,22.372,23.775,26.42 +1654,-0.1336,17.4018,0.13154,11.713,12.893,13.642,14.059,14.73,15.203,15.933,17.402,19.026,19.969,20.637,21.674,22.38,23.784,26.43 +1655,-0.1337,17.4072,0.13156,11.716,12.896,13.646,14.063,14.734,15.207,15.937,17.407,19.033,19.975,20.644,21.682,22.388,23.793,26.441 +1656,-0.1338,17.4127,0.13159,11.719,12.899,13.65,14.067,14.738,15.211,15.942,17.413,19.039,19.982,20.651,21.69,22.396,23.802,26.452 +1657,-0.1339,17.4181,0.13161,11.722,12.903,13.653,14.071,14.742,15.216,15.947,17.418,19.045,19.989,20.658,21.697,22.404,23.811,26.462 +1658,-0.134,17.4236,0.13163,11.725,12.906,13.657,14.075,14.747,15.22,15.952,17.424,19.051,19.996,20.665,21.705,22.412,23.819,26.472 +1659,-0.1341,17.429,0.13165,11.728,12.91,13.661,14.079,14.751,15.225,15.956,17.429,19.058,20.002,20.672,21.712,22.42,23.828,26.482 +1660,-0.1342,17.4345,0.13167,11.732,12.913,13.665,14.083,14.755,15.229,15.961,17.435,19.064,20.009,20.679,21.72,22.428,23.837,26.493 +1661,-0.1343,17.4399,0.13169,11.735,12.917,13.669,14.087,14.759,15.234,15.966,17.44,19.07,20.016,20.686,21.728,22.436,23.846,26.503 +1662,-0.1344,17.4454,0.13171,11.738,12.92,13.673,14.091,14.764,15.238,15.971,17.445,19.076,20.022,20.693,21.735,22.444,23.854,26.513 +1663,-0.1345,17.4508,0.13173,11.741,12.924,13.676,14.095,14.768,15.243,15.976,17.451,19.082,20.029,20.7,21.743,22.452,23.863,26.523 +1664,-0.1346,17.4563,0.13175,11.744,12.928,13.68,14.099,14.772,15.247,15.98,17.456,19.089,20.036,20.707,21.75,22.46,23.872,26.534 +1665,-0.1347,17.4617,0.13177,11.747,12.931,13.684,14.103,14.776,15.252,15.985,17.462,19.095,20.042,20.714,21.758,22.468,23.88,26.544 +1666,-0.1348,17.4672,0.1318,11.75,12.934,13.688,14.107,14.781,15.256,15.99,17.467,19.101,20.049,20.722,21.766,22.476,23.89,26.555 +1667,-0.1349,17.4726,0.13182,11.753,12.938,13.691,14.111,14.785,15.26,15.995,17.473,19.108,20.056,20.729,21.773,22.484,23.899,26.565 +1668,-0.135,17.4781,0.13184,11.756,12.941,13.695,14.115,14.789,15.265,15.999,17.478,19.114,20.063,20.736,21.781,22.492,23.907,26.576 +1669,-0.1351,17.4835,0.13186,11.759,12.945,13.699,14.118,14.793,15.269,16.004,17.484,19.12,20.069,20.743,21.789,22.5,23.916,26.586 +1670,-0.1352,17.489,0.13188,11.762,12.948,13.703,14.122,14.798,15.274,16.009,17.489,19.126,20.076,20.75,21.796,22.508,23.925,26.596 +1671,-0.1353,17.4944,0.1319,11.765,12.952,13.707,14.126,14.802,15.278,16.014,17.494,19.132,20.083,20.757,21.804,22.516,23.933,26.606 +1672,-0.1354,17.4999,0.13192,11.768,12.955,13.71,14.13,14.806,15.283,16.019,17.5,19.139,20.09,20.764,21.811,22.524,23.942,26.617 +1673,-0.1355,17.5053,0.13194,11.771,12.959,13.714,14.134,14.81,15.287,16.023,17.505,19.145,20.096,20.771,21.819,22.532,23.951,26.627 +1674,-0.1356,17.5107,0.13196,11.774,12.962,13.718,14.138,14.815,15.292,16.028,17.511,19.151,20.103,20.778,21.827,22.54,23.96,26.637 +1675,-0.1357,17.5162,0.13199,11.777,12.966,13.722,14.142,14.819,15.296,16.033,17.516,19.157,20.11,20.785,21.835,22.548,23.969,26.648 +1676,-0.1358,17.5216,0.13201,11.78,12.969,13.725,14.146,14.823,15.3,16.037,17.522,19.164,20.117,20.792,21.842,22.556,23.978,26.659 +1677,-0.1359,17.5271,0.13203,11.783,12.973,13.729,14.15,14.827,15.305,16.042,17.527,19.17,20.123,20.799,21.85,22.564,23.986,26.669 +1678,-0.136,17.5325,0.13205,11.786,12.976,13.733,14.154,14.831,15.309,16.047,17.533,19.176,20.13,20.806,21.857,22.572,23.995,26.679 +1679,-0.1361,17.538,0.13207,11.789,12.98,13.737,14.158,14.836,15.314,16.052,17.538,19.182,20.137,20.814,21.865,22.58,24.004,26.689 +1680,-0.1362,17.5434,0.13209,11.792,12.983,13.741,14.162,14.84,15.318,16.057,17.543,19.189,20.143,20.821,21.872,22.588,24.013,26.7 +1681,-0.1363,17.5489,0.13211,11.795,12.987,13.744,14.166,14.844,15.323,16.061,17.549,19.195,20.15,20.828,21.88,22.596,24.021,26.71 +1682,-0.1364,17.5543,0.13213,11.798,12.99,13.748,14.17,14.848,15.327,16.066,17.554,19.201,20.157,20.835,21.888,22.604,24.03,26.72 +1683,-0.1365,17.5598,0.13215,11.801,12.994,13.752,14.174,14.853,15.332,16.071,17.56,19.207,20.163,20.842,21.895,22.612,24.039,26.731 +1684,-0.1366,17.5652,0.13218,11.804,12.997,13.756,14.178,14.857,15.336,16.076,17.565,19.214,20.17,20.849,21.903,22.62,24.048,26.742 +1685,-0.1367,17.5706,0.1322,11.807,13,13.759,14.182,14.861,15.34,16.08,17.571,19.22,20.177,20.856,21.911,22.628,24.057,26.752 +1686,-0.1368,17.5761,0.13222,11.81,13.004,13.763,14.186,14.865,15.345,16.085,17.576,19.226,20.184,20.863,21.918,22.636,24.066,26.762 +1687,-0.1369,17.5815,0.13224,11.813,13.007,13.767,14.19,14.869,15.349,16.09,17.582,19.232,20.19,20.87,21.926,22.644,24.074,26.773 +1688,-0.137,17.587,0.13226,11.816,13.011,13.771,14.194,14.874,15.354,16.095,17.587,19.239,20.197,20.877,21.934,22.652,24.083,26.783 +1689,-0.1371,17.5924,0.13228,11.819,13.014,13.775,14.198,14.878,15.358,16.099,17.592,19.245,20.204,20.884,21.941,22.66,24.092,26.793 +1690,-0.1373,17.5979,0.1323,11.822,13.018,13.778,14.202,14.882,15.363,16.104,17.598,19.251,20.211,20.891,21.949,22.668,24.101,26.804 +1691,-0.1374,17.6033,0.13232,11.826,13.021,13.782,14.206,14.887,15.367,16.109,17.603,19.257,20.217,20.898,21.956,22.676,24.11,26.814 +1692,-0.1375,17.6087,0.13234,11.829,13.025,13.786,14.209,14.891,15.371,16.114,17.609,19.263,20.224,20.905,21.964,22.684,24.118,26.824 +1693,-0.1376,17.6142,0.13237,11.831,13.028,13.79,14.213,14.895,15.376,16.118,17.614,19.27,20.231,20.913,21.972,22.692,24.128,26.835 +1694,-0.1377,17.6196,0.13239,11.834,13.032,13.793,14.217,14.899,15.38,16.123,17.62,19.276,20.238,20.92,21.979,22.7,24.136,26.846 +1695,-0.1378,17.6251,0.13241,11.837,13.035,13.797,14.221,14.903,15.385,16.128,17.625,19.282,20.244,20.927,21.987,22.708,24.145,26.856 +1696,-0.1379,17.6305,0.13243,11.84,13.039,13.801,14.225,14.908,15.389,16.133,17.631,19.288,20.251,20.934,21.995,22.716,24.154,26.866 +1697,-0.138,17.636,0.13245,11.844,13.042,13.805,14.229,14.912,15.394,16.138,17.636,19.295,20.258,20.941,22.002,22.724,24.163,26.877 +1698,-0.1381,17.6414,0.13247,11.847,13.046,13.809,14.233,14.916,15.398,16.142,17.641,19.301,20.264,20.948,22.01,22.732,24.171,26.887 +1699,-0.1382,17.6468,0.13249,11.85,13.049,13.812,14.237,14.92,15.402,16.147,17.647,19.307,20.271,20.955,22.017,22.74,24.18,26.897 +1700,-0.1383,17.6523,0.13251,11.853,13.053,13.816,14.241,14.925,15.407,16.152,17.652,19.313,20.278,20.962,22.025,22.748,24.189,26.907 +1701,-0.1384,17.6577,0.13253,11.856,13.056,13.82,14.245,14.929,15.411,16.157,17.658,19.32,20.284,20.969,22.033,22.756,24.198,26.918 +1702,-0.1385,17.6632,0.13256,11.858,13.059,13.824,14.249,14.933,15.416,16.161,17.663,19.326,20.291,20.976,22.041,22.765,24.207,26.929 +1703,-0.1386,17.6686,0.13258,11.861,13.063,13.827,14.253,14.937,15.42,16.166,17.669,19.332,20.298,20.983,22.048,22.773,24.216,26.939 +1704,-0.1387,17.674,0.1326,11.865,13.066,13.831,14.257,14.941,15.424,16.171,17.674,19.338,20.305,20.99,22.056,22.78,24.224,26.949 +1705,-0.1388,17.6795,0.13262,11.868,13.07,13.835,14.261,14.946,15.429,16.176,17.68,19.345,20.311,20.997,22.063,22.789,24.233,26.96 +1706,-0.1389,17.6849,0.13264,11.871,13.073,13.839,14.265,14.95,15.433,16.18,17.685,19.351,20.318,21.004,22.071,22.796,24.242,26.97 +1707,-0.139,17.6904,0.13266,11.874,13.077,13.843,14.269,14.954,15.438,16.185,17.69,19.357,20.325,21.012,22.079,22.804,24.251,26.981 +1708,-0.1391,17.6958,0.13268,11.877,13.08,13.846,14.273,14.958,15.442,16.19,17.696,19.363,20.332,21.019,22.086,22.812,24.26,26.991 +1709,-0.1392,17.7012,0.1327,11.88,13.084,13.85,14.276,14.963,15.447,16.195,17.701,19.369,20.338,21.026,22.094,22.82,24.268,27.001 +1710,-0.1393,17.7067,0.13272,11.883,13.087,13.854,14.28,14.967,15.451,16.199,17.707,19.376,20.345,21.033,22.101,22.828,24.277,27.011 +1711,-0.1394,17.7121,0.13275,11.886,13.091,13.857,14.284,14.971,15.455,16.204,17.712,19.382,20.352,21.04,22.109,22.837,24.286,27.023 +1712,-0.1395,17.7175,0.13277,11.889,13.094,13.861,14.288,14.975,15.46,16.209,17.718,19.388,20.358,21.047,22.117,22.845,24.295,27.033 +1713,-0.1396,17.723,0.13279,11.892,13.098,13.865,14.292,14.979,15.464,16.214,17.723,19.395,20.365,21.054,22.124,22.853,24.304,27.043 +1714,-0.1397,17.7284,0.13281,11.895,13.101,13.869,14.296,14.984,15.469,16.218,17.728,19.401,20.372,21.061,22.132,22.861,24.313,27.054 +1715,-0.1398,17.7339,0.13283,11.898,13.105,13.873,14.3,14.988,15.473,16.223,17.734,19.407,20.379,21.068,22.14,22.869,24.321,27.064 +1716,-0.1399,17.7393,0.13285,11.901,13.108,13.876,14.304,14.992,15.478,16.228,17.739,19.413,20.385,21.075,22.147,22.877,24.33,27.074 +1717,-0.14,17.7447,0.13287,11.904,13.111,13.88,14.308,14.996,15.482,16.233,17.745,19.419,20.392,21.082,22.155,22.885,24.339,27.084 +1718,-0.1401,17.7502,0.13289,11.907,13.115,13.884,14.312,15.001,15.487,16.237,17.75,19.426,20.399,21.089,22.162,22.893,24.348,27.095 +1719,-0.1402,17.7556,0.13291,11.91,13.118,13.888,14.316,15.005,15.491,16.242,17.756,19.432,20.405,21.096,22.17,22.901,24.356,27.105 +1720,-0.1403,17.761,0.13294,11.913,13.122,13.891,14.32,15.009,15.495,16.247,17.761,19.438,20.412,21.104,22.178,22.909,24.366,27.116 +1721,-0.1404,17.7665,0.13296,11.916,13.125,13.895,14.324,15.013,15.5,16.252,17.767,19.444,20.419,21.111,22.186,22.917,24.375,27.127 +1722,-0.1404,17.7719,0.13298,11.919,13.129,13.899,14.327,15.017,15.504,16.256,17.772,19.451,20.426,21.118,22.193,22.925,24.383,27.137 +1723,-0.1405,17.7773,0.133,11.922,13.132,13.903,14.331,15.022,15.509,16.261,17.777,19.457,20.432,21.125,22.201,22.933,24.392,27.147 +1724,-0.1406,17.7828,0.13302,11.925,13.136,13.906,14.335,15.026,15.513,16.266,17.783,19.463,20.439,21.132,22.208,22.941,24.401,27.157 +1725,-0.1407,17.7882,0.13304,11.928,13.139,13.91,14.339,15.03,15.518,16.271,17.788,19.469,20.446,21.139,22.216,22.949,24.41,27.168 +1726,-0.1408,17.7936,0.13306,11.931,13.142,13.914,14.343,15.034,15.522,16.275,17.794,19.476,20.452,21.146,22.223,22.957,24.418,27.178 +1727,-0.1409,17.7991,0.13308,11.934,13.146,13.918,14.347,15.039,15.526,16.28,17.799,19.482,20.459,21.153,22.231,22.965,24.427,27.188 +1728,-0.141,17.8045,0.1331,11.937,13.149,13.921,14.351,15.043,15.531,16.285,17.805,19.488,20.466,21.16,22.239,22.973,24.436,27.199 +1729,-0.1411,17.8099,0.13313,11.939,13.153,13.925,14.355,15.047,15.535,16.29,17.81,19.494,20.473,21.167,22.247,22.981,24.445,27.21 +1730,-0.1412,17.8154,0.13315,11.943,13.156,13.929,14.359,15.051,15.54,16.294,17.815,19.501,20.48,21.174,22.254,22.989,24.454,27.22 +1731,-0.1413,17.8208,0.13317,11.946,13.16,13.933,14.363,15.055,15.544,16.299,17.821,19.507,20.486,21.181,22.262,22.997,24.463,27.231 +1732,-0.1414,17.8262,0.13319,11.949,13.163,13.936,14.367,15.059,15.548,16.304,17.826,19.513,20.493,21.188,22.269,23.005,24.471,27.241 +1733,-0.1415,17.8317,0.13321,11.952,13.167,13.94,14.371,15.064,15.553,16.309,17.832,19.519,20.5,21.196,22.277,23.013,24.48,27.251 +1734,-0.1416,17.8371,0.13323,11.955,13.17,13.944,14.375,15.068,15.557,16.313,17.837,19.525,20.506,21.203,22.285,23.021,24.489,27.262 +1735,-0.1417,17.8425,0.13325,11.958,13.174,13.948,14.379,15.072,15.562,16.318,17.843,19.532,20.513,21.21,22.292,23.029,24.498,27.272 +1736,-0.1418,17.848,0.13327,11.961,13.177,13.952,14.383,15.076,15.566,16.323,17.848,19.538,20.52,21.217,22.3,23.037,24.507,27.282 +1737,-0.1419,17.8534,0.13329,11.964,13.181,13.955,14.387,15.081,15.571,16.328,17.853,19.544,20.526,21.224,22.307,23.045,24.515,27.293 +1738,-0.142,17.8588,0.13332,11.966,13.184,13.959,14.39,15.085,15.575,16.332,17.859,19.55,20.533,21.231,22.315,23.053,24.525,27.304 +1739,-0.1421,17.8642,0.13334,11.969,13.187,13.963,14.394,15.089,15.579,16.337,17.864,19.557,20.54,21.238,22.323,23.061,24.533,27.314 +1740,-0.1422,17.8697,0.13336,11.973,13.191,13.966,14.398,15.093,15.584,16.342,17.87,19.563,20.547,21.245,22.331,23.07,24.542,27.325 +1741,-0.1423,17.8751,0.13338,11.976,13.194,13.97,14.402,15.097,15.588,16.347,17.875,19.569,20.553,21.252,22.338,23.077,24.551,27.335 +1742,-0.1424,17.8805,0.1334,11.979,13.198,13.974,14.406,15.102,15.593,16.351,17.881,19.575,20.56,21.259,22.346,23.085,24.56,27.345 +1743,-0.1425,17.886,0.13342,11.982,13.201,13.978,14.41,15.106,15.597,16.356,17.886,19.582,20.567,21.266,22.353,23.093,24.569,27.356 +1744,-0.1426,17.8914,0.13344,11.985,13.205,13.981,14.414,15.11,15.601,16.361,17.891,19.588,20.573,21.273,22.361,23.101,24.577,27.366 +1745,-0.1427,17.8968,0.13346,11.988,13.208,13.985,14.418,15.114,15.606,16.366,17.897,19.594,20.58,21.28,22.369,23.109,24.586,27.376 +1746,-0.1428,17.9022,0.13348,11.991,13.212,13.989,14.422,15.118,15.61,16.37,17.902,19.6,20.587,21.287,22.376,23.117,24.595,27.387 +1747,-0.1429,17.9077,0.13351,11.993,13.215,13.993,14.426,15.123,15.615,16.375,17.908,19.607,20.594,21.295,22.384,23.126,24.604,27.398 +1748,-0.143,17.9131,0.13353,11.996,13.218,13.996,14.429,15.127,15.619,16.38,17.913,19.613,20.6,21.302,22.392,23.134,24.613,27.408 +1749,-0.1431,17.9185,0.13355,11.999,13.222,14,14.433,15.131,15.623,16.384,17.919,19.619,20.607,21.309,22.399,23.142,24.622,27.419 +1750,-0.1432,17.924,0.13357,12.003,13.225,14.004,14.437,15.135,15.628,16.389,17.924,19.625,20.614,21.316,22.407,23.15,24.631,27.429 +1751,-0.1433,17.9294,0.13359,12.006,13.229,14.008,14.441,15.139,15.632,16.394,17.929,19.631,20.621,21.323,22.415,23.158,24.64,27.439 +1752,-0.1434,17.9348,0.13361,12.009,13.232,14.011,14.445,15.144,15.637,16.399,17.935,19.638,20.627,21.33,22.422,23.166,24.648,27.45 +1753,-0.1435,17.9402,0.13363,12.012,13.236,14.015,14.449,15.148,15.641,16.403,17.94,19.644,20.634,21.337,22.43,23.174,24.657,27.46 +1754,-0.1436,17.9457,0.13365,12.015,13.239,14.019,14.453,15.152,15.646,16.408,17.946,19.65,20.641,21.344,22.437,23.182,24.666,27.471 +1755,-0.1437,17.9511,0.13367,12.018,13.243,14.023,14.457,15.156,15.65,16.413,17.951,19.656,20.647,21.351,22.445,23.19,24.675,27.481 +1756,-0.1438,17.9565,0.1337,12.02,13.246,14.026,14.461,15.16,15.654,16.418,17.957,19.663,20.654,21.358,22.453,23.198,24.684,27.492 +1757,-0.1439,17.9619,0.13372,12.023,13.249,14.03,14.465,15.165,15.659,16.422,17.962,19.669,20.661,21.365,22.461,23.206,24.693,27.502 +1758,-0.144,17.9674,0.13374,12.026,13.253,14.034,14.469,15.169,15.663,16.427,17.967,19.675,20.668,21.372,22.468,23.214,24.702,27.513 +1759,-0.1441,17.9728,0.13376,12.029,13.256,14.038,14.473,15.173,15.668,16.432,17.973,19.681,20.674,21.38,22.476,23.222,24.71,27.523 +1760,-0.1442,17.9782,0.13378,12.032,13.26,14.041,14.477,15.177,15.672,16.437,17.978,19.688,20.681,21.387,22.483,23.23,24.719,27.534 +1761,-0.1443,17.9836,0.1338,12.035,13.263,14.045,14.48,15.181,15.676,16.441,17.984,19.694,20.688,21.394,22.491,23.238,24.728,27.544 +1762,-0.1444,17.989,0.13382,12.038,13.267,14.049,14.484,15.186,15.681,16.446,17.989,19.7,20.694,21.401,22.499,23.246,24.737,27.554 +1763,-0.1445,17.9945,0.13384,12.041,13.27,14.053,14.488,15.19,15.685,16.451,17.995,19.706,20.701,21.408,22.506,23.254,24.746,27.565 +1764,-0.1446,17.9999,0.13386,12.044,13.273,14.056,14.492,15.194,15.69,16.456,18,19.712,20.708,21.415,22.514,23.262,24.754,27.575 +1765,-0.1447,18.0053,0.13389,12.047,13.277,14.06,14.496,15.198,15.694,16.46,18.005,19.719,20.715,21.422,22.522,23.271,24.764,27.586 +1766,-0.1448,18.0107,0.13391,12.05,13.28,14.064,14.5,15.202,15.698,16.465,18.011,19.725,20.721,21.429,22.529,23.279,24.772,27.597 +1767,-0.1449,18.0162,0.13393,12.053,13.284,14.067,14.504,15.207,15.703,16.47,18.016,19.731,20.728,21.436,22.537,23.287,24.781,27.607 +1768,-0.145,18.0216,0.13395,12.056,13.287,14.071,14.508,15.211,15.707,16.474,18.022,19.737,20.735,21.443,22.545,23.295,24.79,27.618 +1769,-0.1451,18.027,0.13397,12.059,13.291,14.075,14.512,15.215,15.712,16.479,18.027,19.744,20.742,21.45,22.552,23.303,24.799,27.628 +1770,-0.1452,18.0324,0.13399,12.062,13.294,14.079,14.516,15.219,15.716,16.484,18.032,19.75,20.748,21.457,22.56,23.311,24.808,27.638 +1771,-0.1453,18.0378,0.13401,12.065,13.297,14.082,14.52,15.223,15.72,16.489,18.038,19.756,20.755,21.464,22.567,23.318,24.816,27.649 +1772,-0.1454,18.0432,0.13403,12.068,13.301,14.086,14.524,15.228,15.725,16.493,18.043,19.762,20.762,21.471,22.575,23.326,24.825,27.659 +1773,-0.1455,18.0487,0.13405,12.071,13.304,14.09,14.528,15.232,15.729,16.498,18.049,19.768,20.768,21.478,22.583,23.335,24.834,27.669 +1774,-0.1456,18.0541,0.13408,12.074,13.308,14.094,14.531,15.236,15.734,16.503,18.054,19.775,20.775,21.486,22.591,23.343,24.843,27.681 +1775,-0.1457,18.0595,0.1341,12.077,13.311,14.097,14.535,15.24,15.738,16.507,18.06,19.781,20.782,21.493,22.598,23.351,24.852,27.691 +1776,-0.1458,18.0649,0.13412,12.08,13.314,14.101,14.539,15.244,15.742,16.512,18.065,19.787,20.789,21.5,22.606,23.359,24.861,27.701 +1777,-0.1459,18.0703,0.13414,12.083,13.318,14.105,14.543,15.249,15.747,16.517,18.07,19.793,20.795,21.507,22.613,23.367,24.87,27.712 +1778,-0.146,18.0758,0.13416,12.086,13.321,14.109,14.547,15.253,15.751,16.522,18.076,19.8,20.802,21.514,22.621,23.375,24.879,27.722 +1779,-0.1461,18.0812,0.13418,12.089,13.325,14.112,14.551,15.257,15.756,16.526,18.081,19.806,20.809,21.521,22.629,23.383,24.887,27.733 +1780,-0.1462,18.0866,0.1342,12.092,13.328,14.116,14.555,15.261,15.76,16.531,18.087,19.812,20.815,21.528,22.636,23.391,24.896,27.743 +1781,-0.1462,18.092,0.13422,12.095,13.332,14.12,14.559,15.265,15.764,16.536,18.092,19.818,20.822,21.535,22.644,23.399,24.905,27.753 +1782,-0.1463,18.0974,0.13424,12.098,13.335,14.124,14.563,15.27,15.769,16.541,18.097,19.824,20.829,21.542,22.651,23.407,24.914,27.764 +1783,-0.1464,18.1028,0.13426,12.101,13.339,14.127,14.566,15.274,15.773,16.545,18.103,19.831,20.835,21.549,22.659,23.415,24.922,27.774 +1784,-0.1465,18.1082,0.13429,12.104,13.342,14.131,14.57,15.278,15.777,16.55,18.108,19.837,20.842,21.556,22.667,23.423,24.932,27.785 +1785,-0.1466,18.1137,0.13431,12.107,13.345,14.135,14.574,15.282,15.782,16.555,18.114,19.843,20.849,21.564,22.675,23.431,24.941,27.796 +1786,-0.1467,18.1191,0.13433,12.11,13.349,14.138,14.578,15.286,15.786,16.559,18.119,19.849,20.856,21.571,22.682,23.439,24.95,27.806 +1787,-0.1468,18.1245,0.13435,12.113,13.352,14.142,14.582,15.29,15.791,16.564,18.125,19.856,20.862,21.578,22.69,23.447,24.958,27.816 +1788,-0.1469,18.1299,0.13437,12.116,13.356,14.146,14.586,15.295,15.795,16.569,18.13,19.862,20.869,21.585,22.697,23.455,24.967,27.827 +1789,-0.147,18.1353,0.13439,12.119,13.359,14.15,14.59,15.299,15.8,16.574,18.135,19.868,20.876,21.592,22.705,23.463,24.976,27.837 +1790,-0.1471,18.1407,0.13441,12.122,13.362,14.153,14.594,15.303,15.804,16.578,18.141,19.874,20.883,21.599,22.713,23.471,24.985,27.848 +1791,-0.1472,18.1461,0.13443,12.125,13.366,14.157,14.598,15.307,15.808,16.583,18.146,19.88,20.889,21.606,22.72,23.479,24.993,27.858 +1792,-0.1473,18.1515,0.13445,12.128,13.369,14.161,14.602,15.311,15.813,16.588,18.152,19.887,20.896,21.613,22.728,23.487,25.002,27.868 +1793,-0.1474,18.157,0.13448,12.13,13.373,14.164,14.605,15.316,15.817,16.593,18.157,19.893,20.903,21.62,22.736,23.496,25.012,27.88 +1794,-0.1475,18.1624,0.1345,12.133,13.376,14.168,14.609,15.32,15.821,16.597,18.162,19.899,20.91,21.627,22.743,23.504,25.021,27.89 +1795,-0.1476,18.1678,0.13452,12.136,13.379,14.172,14.613,15.324,15.826,16.602,18.168,19.906,20.916,21.634,22.751,23.512,25.029,27.901 +1796,-0.1477,18.1732,0.13454,12.139,13.383,14.176,14.617,15.328,15.83,16.607,18.173,19.912,20.923,21.641,22.759,23.52,25.038,27.911 +1797,-0.1478,18.1786,0.13456,12.142,13.386,14.179,14.621,15.332,15.835,16.611,18.179,19.918,20.93,21.648,22.766,23.528,25.047,27.921 +1798,-0.1479,18.184,0.13458,12.145,13.39,14.183,14.625,15.336,15.839,16.616,18.184,19.924,20.936,21.655,22.774,23.536,25.056,27.932 +1799,-0.148,18.1894,0.1346,12.148,13.393,14.187,14.629,15.341,15.843,16.621,18.189,19.93,20.943,21.662,22.781,23.544,25.065,27.942 +1800,-0.1481,18.1948,0.13462,12.151,13.397,14.191,14.633,15.345,15.848,16.626,18.195,19.936,20.95,21.669,22.789,23.552,25.073,27.953 +1801,-0.1482,18.2002,0.13464,12.154,13.4,14.194,14.637,15.349,15.852,16.63,18.2,19.943,20.956,21.676,22.797,23.56,25.082,27.963 +1802,-0.1483,18.2056,0.13466,12.157,13.404,14.198,14.641,15.353,15.857,16.635,18.206,19.949,20.963,21.683,22.804,23.568,25.091,27.973 +1803,-0.1484,18.211,0.13469,12.16,13.407,14.201,14.644,15.357,15.861,16.64,18.211,19.955,20.97,21.691,22.812,23.576,25.1,27.985 +1804,-0.1485,18.2164,0.13471,12.163,13.41,14.205,14.648,15.361,15.865,16.644,18.216,19.961,20.977,21.698,22.82,23.584,25.109,27.995 +1805,-0.1486,18.2218,0.13473,12.166,13.414,14.209,14.652,15.366,15.87,16.649,18.222,19.968,20.983,21.705,22.827,23.592,25.118,28.006 +1806,-0.1487,18.2272,0.13475,12.169,13.417,14.213,14.656,15.37,15.874,16.654,18.227,19.974,20.99,21.712,22.835,23.6,25.127,28.016 +1807,-0.1488,18.2327,0.13477,12.172,13.421,14.217,14.66,15.374,15.879,16.659,18.233,19.98,20.997,21.719,22.843,23.608,25.136,28.027 +1808,-0.1489,18.2381,0.13479,12.175,13.424,14.22,14.664,15.378,15.883,16.663,18.238,19.986,21.003,21.726,22.85,23.616,25.144,28.037 +1809,-0.149,18.2435,0.13481,12.178,13.427,14.224,14.668,15.382,15.887,16.668,18.244,19.993,21.01,21.733,22.858,23.624,25.153,28.047 +1810,-0.1491,18.2489,0.13483,12.181,13.431,14.228,14.672,15.387,15.892,16.673,18.249,19.999,21.017,21.74,22.866,23.632,25.162,28.058 +1811,-0.1491,18.2543,0.13485,12.184,13.434,14.231,14.676,15.391,15.896,16.677,18.254,20.005,21.023,21.747,22.873,23.64,25.171,28.068 +1812,-0.1492,18.2597,0.13487,12.187,13.438,14.235,14.679,15.395,15.9,16.682,18.26,20.011,21.03,21.754,22.881,23.648,25.18,28.078 +1813,-0.1493,18.2651,0.1349,12.19,13.441,14.239,14.683,15.399,15.905,16.687,18.265,20.017,21.037,21.762,22.889,23.657,25.189,28.09 +1814,-0.1494,18.2705,0.13492,12.193,13.444,14.242,14.687,15.403,15.909,16.691,18.271,20.024,21.044,21.769,22.896,23.665,25.198,28.1 +1815,-0.1495,18.2759,0.13494,12.196,13.448,14.246,14.691,15.407,15.914,16.696,18.276,20.03,21.05,21.776,22.904,23.673,25.207,28.111 +1816,-0.1496,18.2813,0.13496,12.199,13.451,14.25,14.695,15.412,15.918,16.701,18.281,20.036,21.057,21.783,22.911,23.681,25.215,28.121 +1817,-0.1497,18.2867,0.13498,12.202,13.455,14.254,14.699,15.416,15.922,16.706,18.287,20.042,21.064,21.79,22.919,23.689,25.224,28.131 +1818,-0.1498,18.2921,0.135,12.204,13.458,14.257,14.703,15.42,15.927,16.71,18.292,20.048,21.071,21.797,22.927,23.697,25.233,28.142 +1819,-0.1499,18.2975,0.13502,12.207,13.461,14.261,14.707,15.424,15.931,16.715,18.298,20.055,21.077,21.804,22.934,23.705,25.242,28.152 +1820,-0.15,18.3029,0.13504,12.21,13.465,14.265,14.71,15.428,15.935,16.72,18.303,20.061,21.084,21.811,22.942,23.713,25.251,28.163 +1821,-0.1501,18.3083,0.13506,12.213,13.468,14.269,14.714,15.433,15.94,16.725,18.308,20.067,21.091,21.818,22.95,23.721,25.259,28.173 +1822,-0.1502,18.3137,0.13508,12.216,13.472,14.272,14.718,15.437,15.944,16.729,18.314,20.073,21.097,21.825,22.957,23.729,25.268,28.184 +1823,-0.1503,18.319,0.13511,12.219,13.475,14.276,14.722,15.441,15.948,16.734,18.319,20.079,21.104,21.832,22.965,23.737,25.278,28.195 +1824,-0.1504,18.3244,0.13513,12.222,13.478,14.279,14.726,15.445,15.953,16.738,18.324,20.086,21.111,21.839,22.973,23.745,25.286,28.205 +1825,-0.1505,18.3298,0.13515,12.225,13.482,14.283,14.73,15.449,15.957,16.743,18.33,20.092,21.117,21.846,22.98,23.753,25.295,28.216 +1826,-0.1506,18.3352,0.13517,12.228,13.485,14.287,14.734,15.453,15.962,16.748,18.335,20.098,21.124,21.853,22.988,23.761,25.304,28.226 +1827,-0.1507,18.3406,0.13519,12.231,13.489,14.291,14.737,15.457,15.966,16.753,18.341,20.104,21.131,21.86,22.995,23.769,25.313,28.237 +1828,-0.1508,18.346,0.13521,12.234,13.492,14.294,14.741,15.462,15.97,16.757,18.346,20.111,21.138,21.867,23.003,23.777,25.322,28.247 +1829,-0.1509,18.3514,0.13523,12.237,13.495,14.298,14.745,15.466,15.975,16.762,18.351,20.117,21.144,21.874,23.011,23.785,25.331,28.257 +1830,-0.151,18.3568,0.13525,12.24,13.499,14.302,14.749,15.47,15.979,16.767,18.357,20.123,21.151,21.881,23.018,23.793,25.339,28.268 +1831,-0.1511,18.3622,0.13527,12.243,13.502,14.306,14.753,15.474,15.984,16.771,18.362,20.129,21.158,21.888,23.026,23.801,25.348,28.278 +1832,-0.1512,18.3676,0.13529,12.246,13.506,14.309,14.757,15.478,15.988,16.776,18.368,20.135,21.164,21.896,23.034,23.809,25.357,28.289 +1833,-0.1513,18.373,0.13531,12.249,13.509,14.313,14.761,15.483,15.992,16.781,18.373,20.142,21.171,21.903,23.041,23.817,25.366,28.299 +1834,-0.1514,18.3784,0.13534,12.252,13.512,14.316,14.765,15.487,15.997,16.786,18.378,20.148,21.178,21.91,23.049,23.826,25.375,28.311 +1835,-0.1514,18.3838,0.13536,12.254,13.516,14.32,14.768,15.491,16.001,16.79,18.384,20.154,21.185,21.917,23.057,23.833,25.384,28.321 +1836,-0.1515,18.3891,0.13538,12.257,13.519,14.324,14.772,15.495,16.005,16.795,18.389,20.16,21.191,21.924,23.064,23.841,25.393,28.331 +1837,-0.1516,18.3945,0.1354,12.26,13.522,14.328,14.776,15.499,16.01,16.8,18.395,20.166,21.198,21.931,23.072,23.849,25.401,28.342 +1838,-0.1517,18.3999,0.13542,12.263,13.526,14.331,14.78,15.503,16.014,16.804,18.4,20.173,21.205,21.938,23.079,23.857,25.41,28.352 +1839,-0.1518,18.4053,0.13544,12.266,13.529,14.335,14.784,15.507,16.018,16.809,18.405,20.179,21.211,21.945,23.087,23.865,25.419,28.362 +1840,-0.1519,18.4107,0.13546,12.269,13.533,14.339,14.788,15.512,16.023,16.814,18.411,20.185,21.218,21.952,23.095,23.873,25.428,28.373 +1841,-0.152,18.4161,0.13548,12.272,13.536,14.342,14.792,15.516,16.027,16.818,18.416,20.191,21.225,21.959,23.102,23.881,25.437,28.383 +1842,-0.1521,18.4215,0.1355,12.275,13.54,14.346,14.796,15.52,16.032,16.823,18.422,20.197,21.231,21.966,23.11,23.889,25.446,28.394 +1843,-0.1522,18.4268,0.13552,12.278,13.543,14.35,14.8,15.524,16.036,16.828,18.427,20.203,21.238,21.973,23.117,23.897,25.454,28.404 +1844,-0.1523,18.4322,0.13554,12.281,13.546,14.354,14.803,15.528,16.04,16.832,18.432,20.21,21.245,21.98,23.125,23.905,25.463,28.415 +1845,-0.1524,18.4376,0.13557,12.284,13.55,14.357,14.807,15.532,16.044,16.837,18.438,20.216,21.252,21.987,23.133,23.914,25.473,28.426 +1846,-0.1525,18.443,0.13559,12.287,13.553,14.361,14.811,15.536,16.049,16.842,18.443,20.222,21.258,21.995,23.141,23.922,25.482,28.437 +1847,-0.1526,18.4484,0.13561,12.29,13.556,14.365,14.815,15.541,16.053,16.846,18.448,20.228,21.265,22.002,23.148,23.93,25.49,28.447 +1848,-0.1527,18.4538,0.13563,12.293,13.56,14.368,14.819,15.545,16.058,16.851,18.454,20.235,21.272,22.009,23.156,23.938,25.499,28.458 +1849,-0.1528,18.4591,0.13565,12.296,13.563,14.372,14.823,15.549,16.062,16.856,18.459,20.241,21.278,22.016,23.163,23.946,25.508,28.468 +1850,-0.1529,18.4645,0.13567,12.299,13.567,14.376,14.826,15.553,16.066,16.861,18.465,20.247,21.285,22.023,23.171,23.954,25.517,28.478 +1851,-0.153,18.4699,0.13569,12.302,13.57,14.379,14.83,15.557,16.071,16.865,18.47,20.253,21.292,22.03,23.179,23.962,25.526,28.489 +1852,-0.1531,18.4753,0.13571,12.305,13.573,14.383,14.834,15.561,16.075,16.87,18.475,20.259,21.298,22.037,23.186,23.97,25.534,28.499 +1853,-0.1532,18.4807,0.13573,12.308,13.577,14.387,14.838,15.566,16.08,16.875,18.481,20.266,21.305,22.044,23.194,23.978,25.543,28.51 +1854,-0.1533,18.486,0.13575,12.31,13.58,14.39,14.842,15.57,16.084,16.879,18.486,20.272,21.312,22.051,23.201,23.986,25.552,28.52 +1855,-0.1533,18.4914,0.13577,12.313,13.584,14.394,14.846,15.574,16.088,16.884,18.491,20.278,21.318,22.058,23.209,23.994,25.561,28.53 +1856,-0.1534,18.4968,0.1358,12.316,13.587,14.398,14.85,15.578,16.092,16.889,18.497,20.284,21.325,22.065,23.217,24.002,25.57,28.542 \ No newline at end of file diff --git a/core/migrations/weight_percentile_girls.csv b/core/migrations/weight_percentile_girls.csv new file mode 100644 index 00000000..0329f161 --- /dev/null +++ b/core/migrations/weight_percentile_girls.csv @@ -0,0 +1,1858 @@ +Age,L,M,S,P01,P1,P3,P5,P10,P15,P25,P50,P75,P85,P90,P95,P97,P99,P999 +0,0.3809,3.2322,0.14171,2.002,2.273,2.44,2.532,2.678,2.779,2.932,3.232,3.55,3.729,3.853,4.041,4.166,4.409,4.846 +1,0.3259,3.1957,0.14578,1.963,2.231,2.398,2.49,2.635,2.737,2.892,3.196,3.52,3.704,3.831,4.026,4.155,4.408,4.865 +2,0.3101,3.2104,0.14637,1.972,2.24,2.408,2.5,2.646,2.748,2.904,3.21,3.538,3.723,3.853,4.049,4.181,4.438,4.902 +3,0.2986,3.2315,0.14657,1.986,2.255,2.424,2.516,2.663,2.766,2.923,3.232,3.562,3.749,3.879,4.079,4.212,4.471,4.942 +4,0.2891,3.2558,0.14658,2.004,2.274,2.443,2.536,2.684,2.787,2.945,3.256,3.589,3.778,3.909,4.11,4.245,4.507,4.983 +5,0.281,3.2821,0.14646,2.023,2.294,2.464,2.558,2.707,2.81,2.969,3.282,3.618,3.808,3.941,4.144,4.279,4.544,5.026 +6,0.2737,3.3099,0.14626,2.043,2.316,2.487,2.581,2.731,2.835,2.995,3.31,3.648,3.84,3.974,4.178,4.315,4.583,5.069 +7,0.2671,3.3388,0.146,2.064,2.339,2.51,2.605,2.756,2.861,3.022,3.339,3.68,3.873,4.008,4.214,4.352,4.622,5.112 +8,0.2609,3.3687,0.14569,2.087,2.362,2.535,2.63,2.782,2.888,3.05,3.369,3.712,3.906,4.042,4.25,4.389,4.661,5.156 +9,0.2551,3.3995,0.14534,2.11,2.387,2.561,2.656,2.809,2.915,3.078,3.4,3.745,3.941,4.078,4.287,4.428,4.702,5.201 +10,0.2497,3.4314,0.14498,2.134,2.412,2.587,2.683,2.837,2.944,3.108,3.431,3.779,3.977,4.115,4.326,4.467,4.744,5.247 +11,0.2446,3.4643,0.14459,2.158,2.439,2.615,2.711,2.866,2.974,3.139,3.464,3.815,4.014,4.153,4.365,4.508,4.786,5.294 +12,0.2397,3.4983,0.1442,2.184,2.466,2.643,2.74,2.896,3.004,3.17,3.498,3.851,4.052,4.192,4.406,4.55,4.83,5.342 +13,0.2349,3.5333,0.1438,2.21,2.494,2.672,2.77,2.927,3.036,3.203,3.533,3.889,4.091,4.232,4.448,4.593,4.876,5.392 +14,0.2304,3.5693,0.14339,2.237,2.523,2.702,2.801,2.958,3.068,3.237,3.569,3.928,4.131,4.273,4.491,4.637,4.922,5.443 +15,0.226,3.6063,0.14299,2.264,2.552,2.733,2.832,2.991,3.102,3.271,3.606,3.967,4.172,4.316,4.535,4.682,4.97,5.495 +16,0.2218,3.6438,0.14258,2.292,2.582,2.764,2.864,3.024,3.135,3.306,3.644,4.008,4.214,4.359,4.58,4.728,5.018,5.548 +17,0.2177,3.6818,0.14218,2.32,2.612,2.795,2.896,3.057,3.17,3.342,3.682,4.048,4.257,4.402,4.625,4.775,5.067,5.601 +18,0.2137,3.7201,0.14177,2.348,2.643,2.827,2.929,3.091,3.204,3.378,3.72,4.089,4.299,4.446,4.671,4.821,5.116,5.655 +19,0.2099,3.7584,0.14138,2.377,2.673,2.859,2.961,3.124,3.239,3.413,3.758,4.131,4.342,4.49,4.716,4.868,5.166,5.709 +20,0.2061,3.7968,0.14098,2.405,2.704,2.891,2.994,3.158,3.273,3.449,3.797,4.172,4.385,4.534,4.762,4.915,5.215,5.762 +21,0.2024,3.8352,0.1406,2.434,2.734,2.923,3.026,3.192,3.308,3.485,3.835,4.213,4.428,4.578,4.808,4.962,5.264,5.816 +22,0.1989,3.8735,0.14021,2.462,2.765,2.954,3.059,3.226,3.342,3.521,3.874,4.254,4.47,4.621,4.853,5.009,5.313,5.87 +23,0.1954,3.9116,0.13984,2.49,2.795,2.986,3.091,3.259,3.377,3.556,3.912,4.295,4.513,4.665,4.899,5.055,5.362,5.923 +24,0.1919,3.9495,0.13947,2.519,2.825,3.018,3.124,3.293,3.411,3.592,3.95,4.335,4.555,4.708,4.944,5.101,5.411,5.976 +25,0.1886,3.9872,0.1391,2.547,2.855,3.049,3.156,3.326,3.445,3.627,3.987,4.376,4.597,4.751,4.988,5.147,5.459,6.028 +26,0.1853,4.0247,0.13875,2.575,2.885,3.08,3.188,3.359,3.479,3.662,4.025,4.416,4.638,4.794,5.033,5.193,5.507,6.08 +27,0.1821,4.0618,0.1384,2.602,2.915,3.111,3.219,3.392,3.512,3.697,4.062,4.456,4.68,4.836,5.077,5.238,5.554,6.132 +28,0.1789,4.0987,0.13805,2.63,2.944,3.142,3.251,3.424,3.546,3.731,4.099,4.495,4.721,4.879,5.12,5.283,5.601,6.183 +29,0.1758,4.1353,0.13771,2.657,2.974,3.172,3.282,3.457,3.579,3.766,4.135,4.534,4.761,4.92,5.164,5.327,5.648,6.234 +30,0.1727,4.1716,0.13738,2.684,3.003,3.203,3.313,3.489,3.612,3.8,4.172,4.573,4.802,4.962,5.207,5.371,5.694,6.284 +31,0.1697,4.2075,0.13706,2.711,3.032,3.233,3.343,3.52,3.644,3.833,4.208,4.612,4.842,5.003,5.249,5.415,5.74,6.334 +32,0.1668,4.2431,0.13674,2.738,3.06,3.262,3.374,3.552,3.676,3.866,4.243,4.65,4.881,5.043,5.291,5.458,5.785,6.383 +33,0.1638,4.2783,0.13643,2.764,3.088,3.292,3.404,3.583,3.708,3.899,4.278,4.687,4.92,5.083,5.333,5.501,5.83,6.432 +34,0.161,4.3131,0.13613,2.79,3.116,3.321,3.434,3.614,3.739,3.932,4.313,4.725,4.959,5.123,5.374,5.543,5.874,6.48 +35,0.1582,4.3476,0.13583,2.816,3.144,3.35,3.463,3.644,3.771,3.964,4.348,4.762,4.997,5.162,5.415,5.585,5.918,6.527 +36,0.1554,4.3818,0.13554,2.842,3.171,3.378,3.492,3.674,3.802,3.996,4.382,4.798,5.035,5.201,5.456,5.626,5.961,6.575 +37,0.1526,4.4155,0.13526,2.867,3.198,3.406,3.521,3.704,3.832,4.028,4.416,4.834,5.072,5.239,5.495,5.667,6.004,6.621 +38,0.1499,4.449,0.13498,2.892,3.225,3.434,3.55,3.734,3.862,4.059,4.449,4.87,5.11,5.278,5.535,5.708,6.047,6.668 +39,0.1473,4.482,0.1347,2.917,3.252,3.462,3.578,3.763,3.892,4.09,4.482,4.905,5.146,5.315,5.574,5.748,6.089,6.713 +40,0.1446,4.5148,0.13444,2.941,3.278,3.49,3.606,3.792,3.922,4.121,4.515,4.94,5.183,5.352,5.613,5.788,6.13,6.759 +41,0.142,4.5472,0.13418,2.966,3.304,3.517,3.634,3.821,3.951,4.151,4.547,4.975,5.219,5.389,5.651,5.827,6.171,6.803 +42,0.1395,4.5793,0.13392,2.99,3.33,3.544,3.661,3.849,3.98,4.181,4.579,5.009,5.254,5.426,5.689,5.866,6.212,6.848 +43,0.1369,4.611,0.13367,3.014,3.356,3.57,3.688,3.877,4.009,4.211,4.611,5.043,5.289,5.462,5.726,5.904,6.252,6.891 +44,0.1344,4.6425,0.13342,3.038,3.381,3.597,3.715,3.905,4.038,4.241,4.643,5.077,5.324,5.498,5.763,5.942,6.292,6.935 +45,0.132,4.6736,0.13318,3.061,3.406,3.623,3.742,3.933,4.066,4.27,4.674,5.11,5.359,5.533,5.8,5.98,6.332,6.978 +46,0.1295,4.7044,0.13295,3.084,3.431,3.648,3.768,3.96,4.094,4.299,4.704,5.143,5.393,5.568,5.837,6.017,6.371,7.02 +47,0.1271,4.7349,0.13272,3.107,3.456,3.674,3.795,3.987,4.121,4.327,4.735,5.176,5.427,5.603,5.873,6.054,6.41,7.062 +48,0.1247,4.7651,0.1325,3.13,3.48,3.699,3.82,4.014,4.149,4.356,4.765,5.208,5.46,5.637,5.908,6.09,6.448,7.104 +49,0.1224,4.795,0.13228,3.153,3.504,3.724,3.846,4.04,4.176,4.384,4.795,5.24,5.493,5.671,5.944,6.127,6.486,7.145 +50,0.12,4.8245,0.13206,3.175,3.528,3.749,3.871,4.066,4.203,4.411,4.825,5.271,5.526,5.704,5.978,6.162,6.523,7.186 +51,0.1177,4.8538,0.13185,3.197,3.551,3.774,3.896,4.092,4.229,4.439,4.854,5.303,5.559,5.738,6.013,6.198,6.561,7.226 +52,0.1154,4.8828,0.13165,3.219,3.575,3.798,3.921,4.118,4.255,4.466,4.883,5.334,5.591,5.771,6.047,6.233,6.598,7.267 +53,0.1132,4.9115,0.13145,3.241,3.598,3.822,3.946,4.143,4.281,4.493,4.912,5.364,5.623,5.803,6.081,6.268,6.634,7.306 +54,0.1109,4.9399,0.13125,3.262,3.621,3.846,3.97,4.168,4.307,4.519,4.94,5.395,5.654,5.836,6.115,6.302,6.67,7.345 +55,0.1087,4.968,0.13106,3.283,3.644,3.87,3.994,4.193,4.333,4.546,4.968,5.425,5.685,5.868,6.148,6.336,6.706,7.384 +56,0.1065,4.9959,0.13087,3.304,3.666,3.893,4.018,4.218,4.358,4.572,4.996,5.455,5.716,5.899,6.181,6.37,6.741,7.423 +57,0.1044,5.0235,0.13068,3.325,3.688,3.916,4.042,4.243,4.383,4.598,5.024,5.484,5.747,5.931,6.213,6.403,6.776,7.461 +58,0.1022,5.0509,0.1305,3.346,3.711,3.939,4.065,4.267,4.408,4.623,5.051,5.513,5.777,5.962,6.246,6.436,6.811,7.499 +59,0.1001,5.078,0.13033,3.366,3.732,3.962,4.089,4.291,4.432,4.649,5.078,5.542,5.807,5.993,6.278,6.469,6.846,7.537 +60,0.098,5.1049,0.13015,3.387,3.754,3.985,4.112,4.315,4.457,4.674,5.105,5.571,5.837,6.023,6.31,6.502,6.88,7.574 +61,0.0959,5.1315,0.12998,3.407,3.776,4.007,4.135,4.338,4.481,4.699,5.132,5.6,5.866,6.054,6.341,6.534,6.913,7.61 +62,0.0938,5.158,0.12982,3.427,3.797,4.029,4.157,4.362,4.505,4.724,5.158,5.628,5.896,6.084,6.372,6.566,6.947,7.647 +63,0.0918,5.1842,0.12966,3.447,3.818,4.051,4.18,4.385,4.529,4.748,5.184,5.656,5.925,6.114,6.403,6.598,6.981,7.684 +64,0.0897,5.2102,0.1295,3.466,3.839,4.073,4.202,4.408,4.552,4.773,5.21,5.684,5.954,6.143,6.434,6.63,7.014,7.72 +65,0.0877,5.236,0.12934,3.486,3.86,4.095,4.224,4.431,4.575,4.797,5.236,5.711,5.982,6.173,6.465,6.661,7.047,7.756 +66,0.0857,5.2616,0.12919,3.505,3.88,4.116,4.246,4.453,4.599,4.821,5.262,5.739,6.011,6.202,6.495,6.692,7.079,7.791 +67,0.0838,5.287,0.12904,3.524,3.901,4.137,4.268,4.476,4.622,4.845,5.287,5.766,6.039,6.231,6.525,6.723,7.112,7.826 +68,0.0818,5.3121,0.12889,3.543,3.921,4.158,4.289,4.498,4.644,4.868,5.312,5.793,6.067,6.259,6.555,6.753,7.144,7.861 +69,0.0798,5.337,0.12875,3.562,3.941,4.179,4.311,4.52,4.667,4.892,5.337,5.819,6.095,6.288,6.584,6.784,7.175,7.896 +70,0.0779,5.3618,0.12861,3.581,3.961,4.2,4.332,4.542,4.689,4.915,5.362,5.846,6.122,6.316,6.614,6.814,7.207,7.93 +71,0.076,5.3863,0.12847,3.599,3.981,4.221,4.353,4.564,4.712,4.938,5.386,5.872,6.149,6.344,6.643,6.843,7.238,7.964 +72,0.0741,5.4107,0.12834,3.618,4.001,4.241,4.374,4.585,4.734,4.961,5.411,5.898,6.176,6.372,6.672,6.873,7.269,7.999 +73,0.0722,5.4348,0.12821,3.636,4.02,4.261,4.394,4.607,4.755,4.983,5.435,5.924,6.203,6.399,6.7,6.903,7.3,8.032 +74,0.0704,5.4587,0.12808,3.654,4.039,4.281,4.415,4.628,4.777,5.006,5.459,5.95,6.23,6.426,6.728,6.932,7.331,8.065 +75,0.0685,5.4825,0.12795,3.672,4.059,4.301,4.435,4.649,4.799,5.028,5.483,5.975,6.256,6.453,6.757,6.96,7.361,8.099 +76,0.0667,5.5061,0.12783,3.69,4.078,4.321,4.455,4.67,4.82,5.05,5.506,6,6.282,6.48,6.785,6.989,7.391,8.132 +77,0.0648,5.5295,0.1277,3.707,4.096,4.341,4.475,4.691,4.841,5.072,5.53,6.025,6.308,6.507,6.812,7.018,7.421,8.164 +78,0.063,5.5527,0.12758,3.725,4.115,4.36,4.495,4.711,4.862,5.094,5.553,6.05,6.334,6.534,6.84,7.046,7.451,8.197 +79,0.0612,5.5757,0.12747,3.742,4.134,4.379,4.515,4.731,4.883,5.115,5.576,6.075,6.36,6.56,6.867,7.074,7.48,8.229 +80,0.0595,5.5986,0.12735,3.76,4.152,4.399,4.535,4.752,4.904,5.137,5.599,6.099,6.385,6.586,6.894,7.102,7.51,8.261 +81,0.0577,5.6213,0.12724,3.777,4.17,4.418,4.554,4.772,4.924,5.158,5.621,6.124,6.411,6.612,6.921,7.129,7.539,8.293 +82,0.0559,5.6438,0.12713,3.794,4.188,4.436,4.573,4.792,4.945,5.179,5.644,6.148,6.436,6.638,6.948,7.157,7.568,8.324 +83,0.0542,5.6662,0.12702,3.811,4.207,4.455,4.592,4.812,4.965,5.2,5.666,6.172,6.46,6.663,6.975,7.184,7.596,8.356 +84,0.0525,5.6883,0.12691,3.827,4.224,4.474,4.611,4.831,4.985,5.221,5.688,6.195,6.485,6.688,7.001,7.211,7.625,8.386 +85,0.0508,5.7104,0.12681,3.844,4.242,4.492,4.63,4.851,5.005,5.241,5.71,6.219,6.51,6.714,7.027,7.238,7.653,8.417 +86,0.049,5.7322,0.12671,3.86,4.26,4.51,4.649,4.87,5.025,5.262,5.732,6.243,6.534,6.739,7.053,7.265,7.681,8.448 +87,0.0474,5.7539,0.1266,3.877,4.277,4.529,4.667,4.889,5.044,5.282,5.754,6.266,6.558,6.763,7.079,7.291,7.709,8.478 +88,0.0457,5.7755,0.12651,3.893,4.294,4.547,4.686,4.908,5.064,5.302,5.776,6.289,6.582,6.788,7.105,7.318,7.737,8.509 +89,0.044,5.7969,0.12641,3.909,4.312,4.565,4.704,4.927,5.083,5.322,5.797,6.312,6.606,6.812,7.13,7.344,7.764,8.539 +90,0.0424,5.8181,0.12631,3.925,4.329,4.582,4.722,4.946,5.102,5.342,5.818,6.335,6.629,6.837,7.155,7.369,7.791,8.569 +91,0.0407,5.8393,0.12622,3.941,4.346,4.6,4.74,4.965,5.121,5.362,5.839,6.357,6.653,6.861,7.18,7.395,7.819,8.599 +92,0.0391,5.8602,0.12613,3.957,4.363,4.617,4.758,4.983,5.14,5.382,5.86,6.38,6.676,6.885,7.205,7.421,7.845,8.628 +93,0.0375,5.881,0.12604,3.972,4.379,4.635,4.776,5.001,5.159,5.401,5.881,6.402,6.7,6.909,7.23,7.446,7.872,8.657 +94,0.0358,5.9017,0.12595,3.988,4.396,4.652,4.794,5.02,5.178,5.42,5.902,6.424,6.723,6.932,7.255,7.472,7.899,8.686 +95,0.0342,5.9223,0.12586,4.004,4.413,4.669,4.811,5.038,5.197,5.44,5.922,6.446,6.746,6.956,7.279,7.497,7.925,8.715 +96,0.0327,5.9427,0.12577,4.019,4.429,4.687,4.829,5.056,5.215,5.459,5.943,6.468,6.768,6.979,7.303,7.522,7.951,8.744 +97,0.0311,5.9629,0.12569,4.034,4.445,4.703,4.846,5.074,5.233,5.478,5.963,6.49,6.791,7.002,7.328,7.547,7.978,8.773 +98,0.0295,5.9831,0.12561,4.049,4.461,4.72,4.863,5.092,5.251,5.496,5.983,6.511,6.813,7.025,7.352,7.571,8.004,8.801 +99,0.0279,6.0031,0.12553,4.064,4.477,4.737,4.88,5.109,5.27,5.515,6.003,6.533,6.836,7.048,7.375,7.596,8.029,8.83 +100,0.0264,6.0229,0.12545,4.079,4.493,4.754,4.897,5.127,5.287,5.534,6.023,6.554,6.858,7.071,7.399,7.62,8.055,8.858 +101,0.0249,6.0426,0.12537,4.094,4.509,4.77,4.914,5.144,5.305,5.552,6.043,6.575,6.88,7.094,7.423,7.644,8.08,8.885 +102,0.0233,6.0622,0.12529,4.109,4.525,4.786,4.931,5.161,5.323,5.57,6.062,6.596,6.901,7.116,7.446,7.668,8.106,8.913 +103,0.0218,6.0817,0.12522,4.123,4.541,4.803,4.947,5.179,5.34,5.589,6.082,6.617,6.923,7.138,7.469,7.692,8.131,8.941 +104,0.0203,6.101,0.12514,4.138,4.556,4.819,4.964,5.196,5.358,5.607,6.101,6.638,6.945,7.16,7.492,7.716,8.156,8.968 +105,0.0188,6.1202,0.12507,4.152,4.571,4.835,4.98,5.213,5.375,5.625,6.12,6.658,6.966,7.182,7.515,7.739,8.181,8.995 +106,0.0173,6.1393,0.125,4.167,4.587,4.851,4.996,5.229,5.393,5.643,6.139,6.679,6.987,7.204,7.538,7.763,8.205,9.022 +107,0.0158,6.1582,0.12493,4.181,4.602,4.867,5.013,5.246,5.41,5.66,6.158,6.699,7.009,7.226,7.561,7.786,8.23,9.049 +108,0.0144,6.1771,0.12486,4.195,4.617,4.882,5.029,5.263,5.427,5.678,6.177,6.72,7.03,7.248,7.583,7.809,8.254,9.076 +109,0.0129,6.1958,0.12479,4.209,4.632,4.898,5.045,5.279,5.444,5.695,6.196,6.74,7.051,7.269,7.605,7.832,8.278,9.102 +110,0.0114,6.2143,0.12472,4.223,4.647,4.913,5.061,5.296,5.46,5.713,6.214,6.759,7.071,7.29,7.627,7.855,8.302,9.129 +111,0.01,6.2328,0.12466,4.237,4.662,4.929,5.076,5.312,5.477,5.73,6.233,6.779,7.092,7.312,7.65,7.878,8.326,9.155 +112,0.0086,6.2511,0.12459,4.251,4.677,4.944,5.092,5.328,5.493,5.747,6.251,6.799,7.112,7.332,7.671,7.9,8.35,9.181 +113,0.0071,6.2693,0.12453,4.264,4.691,4.959,5.107,5.344,5.51,5.764,6.269,6.818,7.133,7.353,7.693,7.922,8.373,9.207 +114,0.0057,6.2874,0.12447,4.278,4.706,4.974,5.123,5.36,5.526,5.781,6.287,6.838,7.153,7.374,7.715,7.945,8.397,9.233 +115,0.0043,6.3054,0.12441,4.291,4.72,4.989,5.138,5.376,5.542,5.798,6.305,6.857,7.173,7.395,7.737,7.967,8.42,9.259 +116,0.0029,6.3232,0.12435,4.305,4.734,5.004,5.153,5.392,5.558,5.814,6.323,6.876,7.193,7.415,7.758,7.989,8.443,9.284 +117,0.0015,6.341,0.12429,4.318,4.749,5.019,5.168,5.407,5.575,5.831,6.341,6.895,7.213,7.436,7.779,8.011,8.466,9.309 +118,0.0001,6.3586,0.12423,4.331,4.763,5.034,5.183,5.423,5.59,5.848,6.359,6.914,7.232,7.456,7.8,8.032,8.489,9.334 +119,-0.0013,6.3761,0.12417,4.345,4.777,5.048,5.198,5.438,5.606,5.864,6.376,6.933,7.252,7.476,7.821,8.054,8.512,9.359 +120,-0.0026,6.3935,0.12412,4.358,4.791,5.063,5.213,5.453,5.622,5.88,6.394,6.952,7.271,7.496,7.842,8.075,8.535,9.384 +121,-0.004,6.4108,0.12406,4.371,4.804,5.077,5.228,5.469,5.637,5.896,6.411,6.97,7.291,7.516,7.863,8.096,8.557,9.409 +122,-0.0053,6.428,0.12401,4.383,4.818,5.091,5.242,5.484,5.653,5.912,6.428,6.989,7.31,7.536,7.883,8.118,8.579,9.434 +123,-0.0067,6.445,0.12395,4.396,4.832,5.106,5.257,5.499,5.668,5.928,6.445,7.007,7.329,7.555,7.904,8.139,8.601,9.458 +124,-0.008,6.462,0.1239,4.409,4.845,5.12,5.271,5.514,5.684,5.944,6.462,7.025,7.348,7.575,7.924,8.16,8.624,9.482 +125,-0.0094,6.4788,0.12385,4.422,4.859,5.134,5.286,5.529,5.699,5.96,6.479,7.043,7.367,7.594,7.944,8.18,8.646,9.506 +126,-0.0107,6.4956,0.1238,4.434,4.872,5.148,5.3,5.543,5.714,5.975,6.496,7.062,7.386,7.613,7.964,8.201,8.667,9.53 +127,-0.012,6.5122,0.12375,4.447,4.886,5.162,5.314,5.558,5.729,5.991,6.512,7.079,7.404,7.633,7.984,8.221,8.689,9.554 +128,-0.0133,6.5288,0.1237,4.459,4.899,5.175,5.328,5.573,5.744,6.006,6.529,7.097,7.423,7.652,8.004,8.242,8.711,9.578 +129,-0.0146,6.5452,0.12365,4.471,4.912,5.189,5.342,5.587,5.759,6.022,6.545,7.115,7.441,7.67,8.024,8.262,8.732,9.601 +130,-0.0159,6.5615,0.1236,4.484,4.925,5.203,5.356,5.601,5.773,6.037,6.562,7.132,7.459,7.689,8.043,8.282,8.753,9.625 +131,-0.0172,6.5777,0.12355,4.496,4.938,5.216,5.37,5.616,5.788,6.052,6.578,7.15,7.477,7.708,8.063,8.302,8.774,9.648 +132,-0.0185,6.5939,0.12351,4.508,4.951,5.23,5.384,5.63,5.802,6.067,6.594,7.167,7.496,7.727,8.082,8.322,8.795,9.671 +133,-0.0198,6.6099,0.12346,4.52,4.964,5.243,5.397,5.644,5.817,6.082,6.61,7.184,7.513,7.745,8.102,8.342,8.816,9.694 +134,-0.021,6.6258,0.12342,4.532,4.976,5.256,5.411,5.658,5.831,6.097,6.626,7.202,7.531,7.763,8.121,8.362,8.837,9.717 +135,-0.0223,6.6416,0.12337,4.544,4.989,5.269,5.424,5.672,5.845,6.112,6.642,7.218,7.549,7.781,8.14,8.381,8.858,9.74 +136,-0.0235,6.6573,0.12333,4.555,5.002,5.282,5.438,5.686,5.86,6.126,6.657,7.235,7.566,7.8,8.158,8.401,8.878,9.763 +137,-0.0248,6.6729,0.12329,4.567,5.014,5.295,5.451,5.699,5.874,6.141,6.673,7.252,7.584,7.818,8.177,8.42,8.899,9.785 +138,-0.026,6.6884,0.12325,4.579,5.026,5.308,5.464,5.713,5.888,6.155,6.688,7.269,7.601,7.835,8.196,8.439,8.919,9.807 +139,-0.0273,6.7039,0.12321,4.59,5.039,5.321,5.477,5.727,5.902,6.17,6.704,7.286,7.619,7.853,8.215,8.458,8.939,9.83 +140,-0.0285,6.7192,0.12317,4.602,5.051,5.334,5.49,5.74,5.915,6.184,6.719,7.302,7.636,7.871,8.233,8.477,8.959,9.852 +141,-0.0297,6.7344,0.12313,4.613,5.063,5.346,5.503,5.753,5.929,6.198,6.734,7.318,7.653,7.888,8.251,8.496,8.979,9.874 +142,-0.0309,6.7495,0.12309,4.624,5.075,5.359,5.516,5.767,5.943,6.212,6.75,7.335,7.67,7.906,8.269,8.515,8.999,9.896 +143,-0.0321,6.7646,0.12305,4.636,5.087,5.372,5.529,5.78,5.956,6.227,6.765,7.351,7.687,7.923,8.288,8.533,9.019,9.917 +144,-0.0333,6.7795,0.12301,4.647,5.099,5.384,5.541,5.793,5.97,6.24,6.78,7.367,7.703,7.94,8.306,8.552,9.038,9.939 +145,-0.0345,6.7944,0.12298,4.658,5.111,5.396,5.554,5.806,5.983,6.254,6.794,7.383,7.72,7.958,8.324,8.571,9.058,9.961 +146,-0.0357,6.8091,0.12294,4.669,5.123,5.409,5.567,5.819,5.996,6.268,6.809,7.399,7.737,7.975,8.341,8.589,9.077,9.982 +147,-0.0369,6.8238,0.12291,4.68,5.135,5.421,5.579,5.832,6.009,6.282,6.824,7.415,7.753,7.992,8.359,8.607,9.096,10.003 +148,-0.0381,6.8384,0.12287,4.691,5.146,5.433,5.591,5.845,6.023,6.295,6.838,7.43,7.77,8.008,8.377,8.625,9.115,10.024 +149,-0.0393,6.8529,0.12284,4.701,5.158,5.445,5.604,5.858,6.036,6.309,6.853,7.446,7.786,8.025,8.394,8.643,9.134,10.046 +150,-0.0404,6.8673,0.12281,4.712,5.169,5.457,5.616,5.87,6.049,6.322,6.867,7.461,7.802,8.042,8.412,8.661,9.153,10.067 +151,-0.0416,6.8816,0.12277,4.723,5.181,5.469,5.628,5.883,6.061,6.336,6.882,7.477,7.818,8.058,8.429,8.679,9.172,10.087 +152,-0.0428,6.8959,0.12274,4.734,5.192,5.481,5.64,5.895,6.074,6.349,6.896,7.492,7.834,8.075,8.446,8.697,9.191,10.108 +153,-0.0439,6.91,0.12271,4.744,5.203,5.492,5.652,5.908,6.087,6.362,6.91,7.507,7.85,8.091,8.463,8.714,9.21,10.129 +154,-0.045,6.9241,0.12268,4.755,5.214,5.504,5.664,5.92,6.1,6.375,6.924,7.523,7.866,8.107,8.48,8.732,9.228,10.149 +155,-0.0462,6.9381,0.12265,4.765,5.226,5.516,5.676,5.932,6.112,6.388,6.938,7.538,7.882,8.124,8.497,8.749,9.247,10.17 +156,-0.0473,6.952,0.12262,4.775,5.237,5.527,5.688,5.945,6.125,6.401,6.952,7.553,7.897,8.14,8.514,8.766,9.265,10.19 +157,-0.0484,6.9659,0.12259,4.786,5.248,5.539,5.699,5.957,6.137,6.414,6.966,7.568,7.913,8.156,8.531,8.784,9.283,10.21 +158,-0.0496,6.9797,0.12256,4.796,5.259,5.55,5.711,5.969,6.15,6.427,6.98,7.582,7.928,8.172,8.547,8.801,9.301,10.23 +159,-0.0507,6.9934,0.12254,4.806,5.27,5.561,5.723,5.981,6.162,6.44,6.993,7.597,7.944,8.188,8.564,8.818,9.32,10.25 +160,-0.0518,7.007,0.12251,4.816,5.28,5.573,5.734,5.993,6.174,6.452,7.007,7.612,7.959,8.203,8.58,8.835,9.337,10.27 +161,-0.0529,7.0205,0.12248,4.826,5.291,5.584,5.746,6.005,6.186,6.465,7.021,7.626,7.974,8.219,8.597,8.852,9.355,10.29 +162,-0.054,7.034,0.12246,4.836,5.302,5.595,5.757,6.016,6.198,6.478,7.034,7.641,7.989,8.235,8.613,8.869,9.373,10.31 +163,-0.0551,7.0474,0.12243,4.846,5.312,5.606,5.768,6.028,6.21,6.49,7.047,7.656,8.004,8.25,8.629,8.885,9.391,10.329 +164,-0.0562,7.0607,0.12241,4.856,5.323,5.617,5.78,6.04,6.222,6.502,7.061,7.67,8.019,8.266,8.645,8.902,9.409,10.349 +165,-0.0573,7.074,0.12238,4.866,5.334,5.628,5.791,6.051,6.234,6.515,7.074,7.684,8.034,8.281,8.662,8.919,9.426,10.368 +166,-0.0583,7.0872,0.12236,4.876,5.344,5.639,5.802,6.063,6.246,6.527,7.087,7.698,8.049,8.296,8.678,8.935,9.444,10.388 +167,-0.0594,7.1003,0.12234,4.885,5.354,5.65,5.813,6.074,6.258,6.539,7.1,7.713,8.064,8.312,8.694,8.951,9.461,10.407 +168,-0.0605,7.1133,0.12231,4.895,5.365,5.661,5.824,6.086,6.269,6.551,7.113,7.727,8.079,8.327,8.709,8.968,9.478,10.426 +169,-0.0615,7.1263,0.12229,4.905,5.375,5.671,5.835,6.097,6.281,6.563,7.126,7.741,8.093,8.342,8.725,8.984,9.495,10.445 +170,-0.0626,7.1393,0.12227,4.914,5.385,5.682,5.846,6.109,6.293,6.576,7.139,7.755,8.108,8.357,8.741,9,9.513,10.465 +171,-0.0637,7.1521,0.12225,4.924,5.395,5.692,5.857,6.12,6.304,6.587,7.152,7.769,8.122,8.372,8.756,9.016,9.53,10.484 +172,-0.0647,7.1649,0.12223,4.933,5.406,5.703,5.868,6.131,6.316,6.599,7.165,7.782,8.137,8.387,8.772,9.032,9.547,10.502 +173,-0.0658,7.1776,0.12221,4.943,5.416,5.714,5.878,6.142,6.327,6.611,7.178,7.796,8.151,8.401,8.787,9.048,9.564,10.521 +174,-0.0668,7.1903,0.12219,4.952,5.426,5.724,5.889,6.153,6.338,6.623,7.19,7.81,8.165,8.416,8.803,9.064,9.58,10.54 +175,-0.0678,7.2029,0.12217,4.961,5.436,5.734,5.9,6.164,6.35,6.635,7.203,7.823,8.18,8.431,8.818,9.08,9.597,10.559 +176,-0.0689,7.2154,0.12215,4.971,5.446,5.745,5.91,6.175,6.361,6.646,7.215,7.837,8.194,8.445,8.833,9.096,9.614,10.577 +177,-0.0699,7.2279,0.12214,4.98,5.455,5.755,5.921,6.186,6.372,6.658,7.228,7.85,8.208,8.46,8.849,9.111,9.631,10.596 +178,-0.0709,7.2403,0.12212,4.989,5.465,5.765,5.931,6.197,6.383,6.669,7.24,7.864,8.222,8.474,8.864,9.127,9.647,10.614 +179,-0.0719,7.2527,0.1221,4.998,5.475,5.775,5.942,6.208,6.394,6.681,7.253,7.877,8.236,8.489,8.879,9.143,9.664,10.632 +180,-0.0729,7.265,0.12208,5.007,5.485,5.786,5.952,6.218,6.405,6.692,7.265,7.89,8.25,8.503,8.894,9.158,9.68,10.651 +181,-0.0739,7.2772,0.12207,5.016,5.494,5.796,5.962,6.229,6.416,6.704,7.277,7.904,8.264,8.517,8.909,9.173,9.696,10.669 +182,-0.0749,7.2894,0.12205,5.025,5.504,5.806,5.972,6.24,6.427,6.715,7.289,7.917,8.277,8.531,8.924,9.189,9.713,10.687 +183,-0.0759,7.3016,0.12204,5.034,5.514,5.816,5.983,6.25,6.438,6.726,7.302,7.93,8.291,8.546,8.939,9.204,9.729,10.705 +184,-0.0769,7.3136,0.12202,5.043,5.523,5.825,5.993,6.261,6.449,6.738,7.314,7.943,8.305,8.56,8.953,9.219,9.745,10.723 +185,-0.0779,7.3256,0.12201,5.052,5.532,5.835,6.003,6.271,6.459,6.749,7.326,7.956,8.318,8.574,8.968,9.234,9.761,10.741 +186,-0.0789,7.3376,0.122,5.061,5.542,5.845,6.013,6.282,6.47,6.76,7.338,7.969,8.332,8.588,8.983,9.25,9.777,10.759 +187,-0.0799,7.3495,0.12198,5.07,5.551,5.855,6.023,6.292,6.481,6.771,7.35,7.982,8.345,8.602,8.997,9.264,9.793,10.777 +188,-0.0808,7.3614,0.12197,5.078,5.561,5.865,6.033,6.302,6.491,6.782,7.361,7.995,8.359,8.615,9.012,9.279,9.809,10.794 +189,-0.0818,7.3732,0.12196,5.087,5.57,5.874,6.043,6.313,6.502,6.793,7.373,8.008,8.372,8.629,9.026,9.294,9.825,10.812 +190,-0.0828,7.3849,0.12195,5.095,5.579,5.884,6.053,6.323,6.512,6.804,7.385,8.02,8.385,8.643,9.04,9.309,9.841,10.83 +191,-0.0837,7.3966,0.12194,5.104,5.588,5.893,6.062,6.333,6.523,6.815,7.397,8.033,8.399,8.657,9.055,9.324,9.856,10.847 +192,-0.0847,7.4082,0.12192,5.113,5.597,5.903,6.072,6.343,6.533,6.825,7.408,8.045,8.412,8.67,9.069,9.339,9.872,10.864 +193,-0.0857,7.4198,0.12191,5.121,5.607,5.913,6.082,6.353,6.544,6.836,7.42,8.058,8.425,8.684,9.083,9.353,9.887,10.882 +194,-0.0866,7.4314,0.1219,5.13,5.616,5.922,6.092,6.363,6.554,6.847,7.431,8.071,8.438,8.697,9.097,9.368,9.903,10.899 +195,-0.0875,7.4429,0.12189,5.138,5.625,5.932,6.101,6.373,6.564,6.857,7.443,8.083,8.451,8.711,9.111,9.382,9.918,10.917 +196,-0.0885,7.4543,0.12188,5.146,5.634,5.941,6.111,6.383,6.574,6.868,7.454,8.095,8.464,8.724,9.125,9.397,9.934,10.934 +197,-0.0894,7.4657,0.12188,5.155,5.642,5.95,6.12,6.393,6.584,6.879,7.466,8.108,8.477,8.737,9.14,9.411,9.949,10.951 +198,-0.0904,7.477,0.12187,5.163,5.651,5.959,6.13,6.403,6.595,6.889,7.477,8.12,8.49,8.751,9.153,9.426,9.965,10.968 +199,-0.0913,7.4883,0.12186,5.171,5.66,5.969,6.139,6.413,6.605,6.9,7.488,8.132,8.503,8.764,9.167,9.44,9.98,10.985 +200,-0.0922,7.4995,0.12185,5.179,5.669,5.978,6.149,6.422,6.615,6.91,7.5,8.144,8.515,8.777,9.181,9.454,9.995,11.002 +201,-0.0931,7.5107,0.12184,5.188,5.678,5.987,6.158,6.432,6.625,6.92,7.511,8.157,8.528,8.79,9.195,9.468,10.01,11.019 +202,-0.094,7.5219,0.12184,5.196,5.686,5.996,6.167,6.442,6.635,6.931,7.522,8.169,8.541,8.803,9.209,9.483,10.025,11.036 +203,-0.095,7.533,0.12183,5.204,5.695,6.005,6.177,6.451,6.644,6.941,7.533,8.181,8.553,8.816,9.222,9.497,10.04,11.053 +204,-0.0959,7.544,0.12182,5.212,5.704,6.014,6.186,6.461,6.654,6.951,7.544,8.193,8.566,8.829,9.236,9.511,10.055,11.069 +205,-0.0968,7.5551,0.12182,5.22,5.712,6.023,6.195,6.471,6.664,6.961,7.555,8.205,8.578,8.842,9.249,9.525,10.07,11.086 +206,-0.0977,7.566,0.12181,5.228,5.721,6.032,6.204,6.48,6.674,6.972,7.566,8.217,8.591,8.855,9.263,9.539,10.085,11.103 +207,-0.0986,7.5769,0.12181,5.236,5.729,6.041,6.213,6.49,6.683,6.982,7.577,8.228,8.603,8.868,9.276,9.553,10.1,11.119 +208,-0.0995,7.5878,0.1218,5.244,5.738,6.05,6.222,6.499,6.693,6.992,7.588,8.24,8.616,8.881,9.29,9.567,10.114,11.136 +209,-0.1003,7.5986,0.1218,5.251,5.746,6.059,6.231,6.508,6.703,7.002,7.599,8.252,8.628,8.893,9.303,9.58,10.129,11.152 +210,-0.1012,7.6094,0.12179,5.259,5.755,6.067,6.241,6.518,6.712,7.012,7.609,8.264,8.64,8.906,9.316,9.594,10.144,11.169 +211,-0.1021,7.6202,0.12179,5.267,5.763,6.076,6.249,6.527,6.722,7.022,7.62,8.275,8.653,8.919,9.33,9.608,10.158,11.185 +212,-0.103,7.6309,0.12179,5.275,5.772,6.085,6.258,6.536,6.731,7.032,7.631,8.287,8.665,8.931,9.343,9.622,10.173,11.202 +213,-0.1039,7.6416,0.12178,5.283,5.78,6.094,6.267,6.546,6.741,7.041,7.642,8.299,8.677,8.944,9.356,9.635,10.188,11.218 +214,-0.1047,7.6522,0.12178,5.29,5.788,6.102,6.276,6.555,6.75,7.051,7.652,8.31,8.689,8.956,9.369,9.649,10.202,11.234 +215,-0.1056,7.6628,0.12178,5.298,5.796,6.111,6.285,6.564,6.76,7.061,7.663,8.322,8.701,8.969,9.382,9.662,10.217,11.25 +216,-0.1065,7.6733,0.12177,5.306,5.805,6.119,6.294,6.573,6.769,7.071,7.673,8.333,8.713,8.981,9.395,9.676,10.231,11.266 +217,-0.1073,7.6838,0.12177,5.313,5.813,6.128,6.302,6.582,6.778,7.08,7.684,8.345,8.725,8.993,9.408,9.689,10.245,11.282 +218,-0.1082,7.6943,0.12177,5.321,5.821,6.136,6.311,6.591,6.788,7.09,7.694,8.356,8.737,9.006,9.421,9.703,10.259,11.298 +219,-0.109,7.7047,0.12177,5.328,5.829,6.145,6.32,6.6,6.797,7.1,7.705,8.367,8.749,9.018,9.434,9.716,10.274,11.314 +220,-0.1099,7.7151,0.12177,5.336,5.837,6.153,6.328,6.609,6.806,7.109,7.715,8.379,8.761,9.03,9.447,9.729,10.288,11.33 +221,-0.1107,7.7254,0.12177,5.343,5.845,6.162,6.337,6.618,6.815,7.119,7.725,8.39,8.772,9.042,9.46,9.742,10.302,11.346 +222,-0.1116,7.7357,0.12177,5.351,5.853,6.17,6.346,6.627,6.825,7.128,7.736,8.401,8.784,9.055,9.473,9.756,10.316,11.362 +223,-0.1124,7.746,0.12176,5.358,5.861,6.178,6.354,6.636,6.834,7.138,7.746,8.412,8.796,9.067,9.485,9.769,10.33,11.377 +224,-0.1132,7.7562,0.12176,5.366,5.869,6.187,6.363,6.645,6.843,7.147,7.756,8.423,8.807,9.079,9.498,9.782,10.344,11.393 +225,-0.1141,7.7664,0.12176,5.373,5.877,6.195,6.371,6.653,6.852,7.157,7.766,8.434,8.819,9.091,9.511,9.795,10.358,11.409 +226,-0.1149,7.7766,0.12176,5.38,5.885,6.203,6.38,6.662,6.861,7.166,7.777,8.446,8.831,9.103,9.523,9.808,10.372,11.425 +227,-0.1157,7.7867,0.12177,5.387,5.893,6.211,6.388,6.671,6.87,7.175,7.787,8.457,8.842,9.115,9.536,9.821,10.386,11.44 +228,-0.1165,7.7968,0.12177,5.395,5.9,6.22,6.396,6.68,6.879,7.185,7.797,8.468,8.854,9.127,9.548,9.834,10.4,11.456 +229,-0.1173,7.8068,0.12177,5.402,5.908,6.228,6.405,6.688,6.888,7.194,7.807,8.478,8.865,9.138,9.561,9.847,10.413,11.471 +230,-0.1181,7.8169,0.12177,5.409,5.916,6.236,6.413,6.697,6.896,7.203,7.817,8.489,8.877,9.15,9.573,9.86,10.427,11.487 +231,-0.119,7.8268,0.12177,5.416,5.924,6.244,6.421,6.706,6.905,7.213,7.827,8.5,8.888,9.162,9.586,9.873,10.441,11.502 +232,-0.1198,7.8368,0.12177,5.424,5.931,6.252,6.43,6.714,6.914,7.222,7.837,8.511,8.9,9.174,9.598,9.885,10.454,11.518 +233,-0.1206,7.8467,0.12177,5.431,5.939,6.26,6.438,6.723,6.923,7.231,7.847,8.522,8.911,9.186,9.61,9.898,10.468,11.533 +234,-0.1214,7.8566,0.12178,5.438,5.947,6.268,6.446,6.731,6.932,7.24,7.857,8.533,8.922,9.197,9.623,9.911,10.482,11.548 +235,-0.1222,7.8664,0.12178,5.445,5.954,6.276,6.454,6.74,6.94,7.249,7.866,8.543,8.933,9.209,9.635,9.924,10.495,11.564 +236,-0.1229,7.8762,0.12178,5.452,5.962,6.284,6.462,6.748,6.949,7.258,7.876,8.554,8.945,9.22,9.647,9.936,10.509,11.579 +237,-0.1237,7.886,0.12178,5.459,5.969,6.292,6.47,6.757,6.958,7.267,7.886,8.565,8.956,9.232,9.659,9.949,10.522,11.594 +238,-0.1245,7.8957,0.12179,5.466,5.977,6.299,6.478,6.765,6.966,7.276,7.896,8.575,8.967,9.244,9.672,9.961,10.536,11.609 +239,-0.1253,7.9054,0.12179,5.473,5.984,6.307,6.486,6.773,6.975,7.285,7.905,8.586,8.978,9.255,9.684,9.974,10.549,11.624 +240,-0.1261,7.9151,0.12179,5.48,5.992,6.315,6.494,6.782,6.983,7.294,7.915,8.596,8.989,9.267,9.696,9.986,10.562,11.639 +241,-0.1269,7.9247,0.1218,5.487,5.999,6.323,6.502,6.79,6.992,7.303,7.925,8.607,9,9.278,9.708,9.999,10.576,11.654 +242,-0.1276,7.9343,0.1218,5.493,6.007,6.331,6.51,6.798,7,7.312,7.934,8.617,9.011,9.289,9.72,10.011,10.589,11.669 +243,-0.1284,7.9439,0.1218,5.5,6.014,6.338,6.518,6.806,7.009,7.321,7.944,8.628,9.022,9.301,9.732,10.023,10.602,11.684 +244,-0.1292,7.9534,0.12181,5.507,6.021,6.346,6.526,6.814,7.017,7.329,7.953,8.638,9.033,9.312,9.743,10.036,10.615,11.699 +245,-0.1299,7.9629,0.12181,5.514,6.029,6.354,6.534,6.823,7.026,7.338,7.963,8.649,9.044,9.323,9.755,10.048,10.628,11.713 +246,-0.1307,7.9724,0.12182,5.521,6.036,6.361,6.542,6.831,7.034,7.347,7.972,8.659,9.055,9.335,9.767,10.06,10.642,11.728 +247,-0.1314,7.9819,0.12182,5.528,6.043,6.369,6.55,6.839,7.042,7.356,7.982,8.669,9.066,9.346,9.779,10.073,10.655,11.743 +248,-0.1322,7.9913,0.12182,5.534,6.05,6.377,6.557,6.847,7.051,7.364,7.991,8.68,9.076,9.357,9.791,10.085,10.667,11.758 +249,-0.1329,8.0007,0.12183,5.541,6.058,6.384,6.565,6.855,7.059,7.373,8.001,8.69,9.087,9.368,9.803,10.097,10.681,11.772 +250,-0.1337,8.01,0.12183,5.548,6.065,6.392,6.573,6.863,7.067,7.381,8.01,8.7,9.098,9.379,9.814,10.109,10.693,11.787 +251,-0.1344,8.0193,0.12184,5.554,6.072,6.399,6.58,6.871,7.075,7.39,8.019,8.71,9.109,9.39,9.826,10.121,10.706,11.801 +252,-0.1352,8.0286,0.12185,5.561,6.079,6.407,6.588,6.879,7.084,7.398,8.029,8.72,9.119,9.401,9.837,10.133,10.719,11.816 +253,-0.1359,8.0379,0.12185,5.567,6.086,6.414,6.596,6.887,7.092,7.407,8.038,8.73,9.13,9.412,9.849,10.145,10.732,11.831 +254,-0.1367,8.0471,0.12186,5.574,6.093,6.421,6.603,6.895,7.1,7.416,8.047,8.741,9.14,9.423,9.861,10.157,10.745,11.845 +255,-0.1374,8.0563,0.12186,5.581,6.1,6.429,6.611,6.903,7.108,7.424,8.056,8.751,9.151,9.434,9.872,10.169,10.758,11.859 +256,-0.1381,8.0655,0.12187,5.587,6.107,6.436,6.618,6.911,7.116,7.432,8.066,8.761,9.162,9.445,9.884,10.181,10.77,11.874 +257,-0.1388,8.0746,0.12187,5.594,6.114,6.444,6.626,6.919,7.124,7.441,8.075,8.771,9.172,9.456,9.895,10.193,10.783,11.888 +258,-0.1396,8.0837,0.12188,5.6,6.121,6.451,6.633,6.926,7.132,7.449,8.084,8.78,9.182,9.467,9.906,10.204,10.796,11.903 +259,-0.1403,8.0928,0.12189,5.606,6.128,6.458,6.641,6.934,7.14,7.458,8.093,8.79,9.193,9.477,9.918,10.216,10.808,11.917 +260,-0.141,8.1019,0.12189,5.613,6.135,6.465,6.648,6.942,7.148,7.466,8.102,8.8,9.203,9.488,9.929,10.228,10.821,11.931 +261,-0.1417,8.1109,0.1219,5.619,6.142,6.473,6.656,6.95,7.156,7.474,8.111,8.81,9.214,9.499,9.941,10.24,10.834,11.945 +262,-0.1424,8.1199,0.1219,5.626,6.149,6.48,6.663,6.957,7.164,7.483,8.12,8.82,9.224,9.51,9.952,10.251,10.846,11.959 +263,-0.1431,8.1289,0.12191,5.632,6.156,6.487,6.671,6.965,7.172,7.491,8.129,8.83,9.234,9.52,9.963,10.263,10.858,11.973 +264,-0.1438,8.1378,0.12192,5.638,6.163,6.494,6.678,6.973,7.18,7.499,8.138,8.84,9.245,9.531,9.974,10.275,10.871,11.988 +265,-0.1445,8.1468,0.12192,5.645,6.17,6.502,6.685,6.98,7.188,7.507,8.147,8.849,9.255,9.542,9.985,10.286,10.883,12.001 +266,-0.1452,8.1557,0.12193,5.651,6.176,6.509,6.693,6.988,7.196,7.515,8.156,8.859,9.265,9.552,9.997,10.298,10.896,12.016 +267,-0.1459,8.1645,0.12194,5.657,6.183,6.516,6.7,6.996,7.203,7.524,8.165,8.869,9.275,9.563,10.008,10.309,10.908,12.03 +268,-0.1466,8.1734,0.12194,5.664,6.19,6.523,6.707,7.003,7.211,7.532,8.173,8.878,9.285,9.573,10.019,10.321,10.92,12.043 +269,-0.1473,8.1822,0.12195,5.67,6.197,6.53,6.715,7.011,7.219,7.54,8.182,8.888,9.296,9.584,10.03,10.332,10.933,12.057 +270,-0.148,8.191,0.12196,5.676,6.203,6.537,6.722,7.018,7.227,7.548,8.191,8.898,9.306,9.594,10.041,10.344,10.945,12.071 +271,-0.1487,8.1998,0.12197,5.682,6.21,6.544,6.729,7.026,7.235,7.556,8.2,8.907,9.316,9.605,10.052,10.355,10.957,12.085 +272,-0.1494,8.2085,0.12197,5.689,6.217,6.551,6.736,7.033,7.242,7.564,8.209,8.917,9.326,9.615,10.063,10.367,10.969,12.099 +273,-0.1501,8.2172,0.12198,5.695,6.224,6.558,6.743,7.041,7.25,7.572,8.217,8.926,9.336,9.626,10.074,10.378,10.982,12.113 +274,-0.1507,8.2259,0.12199,5.701,6.23,6.565,6.75,7.048,7.258,7.58,8.226,8.936,9.346,9.636,10.085,10.389,10.994,12.127 +275,-0.1514,8.2346,0.12199,5.707,6.237,6.572,6.758,7.056,7.265,7.588,8.235,8.945,9.356,9.646,10.096,10.401,11.006,12.14 +276,-0.1521,8.2432,0.122,5.713,6.243,6.579,6.765,7.063,7.273,7.596,8.243,8.955,9.366,9.656,10.107,10.412,11.018,12.154 +277,-0.1528,8.2519,0.12201,5.719,6.25,6.586,6.772,7.07,7.28,7.604,8.252,8.964,9.376,9.667,10.118,10.423,11.03,12.168 +278,-0.1534,8.2605,0.12202,5.725,6.257,6.593,6.779,7.078,7.288,7.612,8.261,8.974,9.386,9.677,10.128,10.434,11.042,12.181 +279,-0.1541,8.269,0.12202,5.732,6.263,6.599,6.786,7.085,7.296,7.62,8.269,8.983,9.395,9.687,10.139,10.445,11.054,12.194 +280,-0.1547,8.2776,0.12203,5.738,6.27,6.606,6.793,7.092,7.303,7.628,8.278,8.992,9.405,9.697,10.15,10.457,11.066,12.208 +281,-0.1554,8.2861,0.12204,5.744,6.276,6.613,6.8,7.1,7.311,7.635,8.286,9.002,9.415,9.708,10.161,10.468,11.078,12.222 +282,-0.1561,8.2946,0.12205,5.75,6.283,6.62,6.807,7.107,7.318,7.643,8.295,9.011,9.425,9.718,10.171,10.479,11.09,12.235 +283,-0.1567,8.3031,0.12206,5.756,6.289,6.627,6.814,7.114,7.325,7.651,8.303,9.02,9.435,9.728,10.182,10.49,11.102,12.249 +284,-0.1574,8.3116,0.12206,5.762,6.296,6.634,6.821,7.122,7.333,7.659,8.312,9.03,9.445,9.738,10.193,10.501,11.113,12.262 +285,-0.158,8.3201,0.12207,5.768,6.302,6.64,6.828,7.129,7.34,7.667,8.32,9.039,9.454,9.748,10.203,10.512,11.125,12.276 +286,-0.1587,8.3285,0.12208,5.774,6.308,6.647,6.835,7.136,7.348,7.674,8.329,9.048,9.464,9.758,10.214,10.523,11.137,12.289 +287,-0.1593,8.3369,0.12209,5.779,6.315,6.654,6.842,7.143,7.355,7.682,8.337,9.057,9.474,9.768,10.225,10.534,11.149,12.302 +288,-0.1599,8.3453,0.12209,5.785,6.321,6.66,6.849,7.15,7.363,7.69,8.345,9.067,9.483,9.778,10.235,10.545,11.16,12.315 +289,-0.1606,8.3536,0.1221,5.791,6.328,6.667,6.855,7.157,7.37,7.697,8.354,9.076,9.493,9.788,10.246,10.556,11.172,12.329 +290,-0.1612,8.362,0.12211,5.797,6.334,6.674,6.862,7.165,7.377,7.705,8.362,9.085,9.503,9.798,10.256,10.567,11.184,12.342 +291,-0.1618,8.3703,0.12212,5.803,6.34,6.68,6.869,7.172,7.385,7.713,8.37,9.094,9.512,9.808,10.267,10.578,11.196,12.355 +292,-0.1625,8.3786,0.12213,5.809,6.347,6.687,6.876,7.179,7.392,7.72,8.379,9.103,9.522,9.818,10.277,10.589,11.207,12.369 +293,-0.1631,8.3869,0.12213,5.815,6.353,6.694,6.883,7.186,7.399,7.728,8.387,9.112,9.531,9.828,10.287,10.599,11.219,12.381 +294,-0.1637,8.3952,0.12214,5.821,6.359,6.7,6.889,7.193,7.407,7.736,8.395,9.121,9.541,9.838,10.298,10.61,11.23,12.395 +295,-0.1643,8.4035,0.12215,5.827,6.366,6.707,6.896,7.2,7.414,7.743,8.404,9.13,9.55,9.848,10.308,10.621,11.242,12.408 +296,-0.165,8.4117,0.12216,5.832,6.372,6.713,6.903,7.207,7.421,7.751,8.412,9.139,9.56,9.858,10.319,10.632,11.254,12.421 +297,-0.1656,8.4199,0.12217,5.838,6.378,6.72,6.91,7.214,7.428,7.758,8.42,9.148,9.569,9.867,10.329,10.643,11.265,12.434 +298,-0.1662,8.4281,0.12218,5.844,6.384,6.727,6.916,7.221,7.435,7.766,8.428,9.157,9.579,9.877,10.34,10.653,11.277,12.447 +299,-0.1668,8.4363,0.12218,5.85,6.391,6.733,6.923,7.228,7.443,7.773,8.436,9.166,9.588,9.887,10.35,10.664,11.288,12.46 +300,-0.1674,8.4445,0.12219,5.855,6.397,6.74,6.93,7.235,7.45,7.781,8.445,9.175,9.598,9.897,10.36,10.675,11.299,12.473 +301,-0.168,8.4526,0.1222,5.861,6.403,6.746,6.936,7.242,7.457,7.788,8.453,9.184,9.607,9.906,10.37,10.685,11.311,12.486 +302,-0.1686,8.4607,0.12221,5.867,6.409,6.753,6.943,7.249,7.464,7.796,8.461,9.193,9.616,9.916,10.381,10.696,11.322,12.499 +303,-0.1692,8.4688,0.12222,5.872,6.415,6.759,6.95,7.256,7.471,7.803,8.469,9.202,9.626,9.926,10.391,10.706,11.334,12.512 +304,-0.1698,8.4769,0.12222,5.878,6.422,6.766,6.956,7.263,7.478,7.811,8.477,9.211,9.635,9.935,10.401,10.717,11.345,12.525 +305,-0.1704,8.485,0.12223,5.884,6.428,6.772,6.963,7.27,7.485,7.818,8.485,9.22,9.644,9.945,10.411,10.728,11.356,12.537 +306,-0.171,8.4931,0.12224,5.89,6.434,6.778,6.97,7.277,7.493,7.825,8.493,9.228,9.654,9.955,10.421,10.738,11.368,12.55 +307,-0.1716,8.5011,0.12225,5.895,6.44,6.785,6.976,7.283,7.5,7.833,8.501,9.237,9.663,9.964,10.432,10.749,11.379,12.563 +308,-0.1722,8.5092,0.12226,5.901,6.446,6.791,6.983,7.29,7.507,7.84,8.509,9.246,9.672,9.974,10.442,10.759,11.39,12.576 +309,-0.1728,8.5172,0.12227,5.907,6.452,6.798,6.989,7.297,7.514,7.848,8.517,9.255,9.682,9.984,10.452,10.77,11.402,12.589 +310,-0.1734,8.5252,0.12227,5.912,6.458,6.804,6.996,7.304,7.521,7.855,8.525,9.264,9.691,9.993,10.462,10.78,11.413,12.601 +311,-0.174,8.5332,0.12228,5.918,6.464,6.81,7.003,7.311,7.528,7.862,8.533,9.272,9.7,10.003,10.472,10.791,11.424,12.614 +312,-0.1745,8.5411,0.12229,5.923,6.47,6.817,7.009,7.318,7.535,7.869,8.541,9.281,9.709,10.012,10.482,10.801,11.435,12.627 +313,-0.1751,8.5491,0.1223,5.929,6.476,6.823,7.016,7.324,7.542,7.877,8.549,9.29,9.718,10.022,10.492,10.811,11.446,12.64 +314,-0.1757,8.557,0.12231,5.935,6.482,6.829,7.022,7.331,7.549,7.884,8.557,9.298,9.727,10.031,10.502,10.822,11.457,12.652 +315,-0.1763,8.565,0.12231,5.94,6.489,6.836,7.029,7.338,7.556,7.891,8.565,9.307,9.737,10.041,10.512,10.832,11.469,12.665 +316,-0.1768,8.5729,0.12232,5.946,6.495,6.842,7.035,7.345,7.563,7.899,8.573,9.316,9.746,10.05,10.522,10.843,11.48,12.677 +317,-0.1774,8.5808,0.12233,5.951,6.501,6.848,7.041,7.351,7.57,7.906,8.581,9.325,9.755,10.06,10.532,10.853,11.491,12.69 +318,-0.178,8.5887,0.12234,5.957,6.507,6.855,7.048,7.358,7.577,7.913,8.589,9.333,9.764,10.069,10.542,10.863,11.502,12.703 +319,-0.1785,8.5965,0.12235,5.962,6.512,6.861,7.054,7.365,7.583,7.92,8.597,9.342,9.773,10.078,10.552,10.874,11.513,12.715 +320,-0.1791,8.6044,0.12235,5.968,6.519,6.867,7.061,7.372,7.59,7.928,8.604,9.35,9.782,10.088,10.562,10.884,11.524,12.728 +321,-0.1797,8.6122,0.12236,5.974,6.525,6.874,7.067,7.378,7.597,7.935,8.612,9.359,9.791,10.097,10.572,10.894,11.535,12.74 +322,-0.1802,8.6201,0.12237,5.979,6.53,6.88,7.074,7.385,7.604,7.942,8.62,9.368,9.8,10.106,10.582,10.904,11.546,12.753 +323,-0.1808,8.6279,0.12238,5.985,6.536,6.886,7.08,7.392,7.611,7.949,8.628,9.376,9.809,10.116,10.592,10.915,11.557,12.765 +324,-0.1813,8.6357,0.12239,5.99,6.542,6.892,7.086,7.398,7.618,7.956,8.636,9.385,9.818,10.125,10.601,10.925,11.568,12.778 +325,-0.1819,8.6435,0.12239,5.996,6.548,6.899,7.093,7.405,7.625,7.964,8.644,9.393,9.827,10.134,10.611,10.935,11.579,12.79 +326,-0.1824,8.6512,0.1224,6.001,6.554,6.905,7.099,7.412,7.631,7.971,8.651,9.402,9.836,10.144,10.621,10.945,11.59,12.802 +327,-0.183,8.659,0.12241,6.007,6.56,6.911,7.106,7.418,7.638,7.978,8.659,9.41,9.845,10.153,10.631,10.955,11.601,12.815 +328,-0.1835,8.6667,0.12242,6.012,6.566,6.917,7.112,7.425,7.645,7.985,8.667,9.419,9.854,10.162,10.64,10.965,11.611,12.827 +329,-0.1841,8.6745,0.12243,6.017,6.572,6.923,7.118,7.431,7.652,7.992,8.675,9.427,9.863,10.172,10.65,10.976,11.622,12.84 +330,-0.1846,8.6822,0.12243,6.023,6.578,6.929,7.125,7.438,7.659,7.999,8.682,9.436,9.872,10.181,10.66,10.986,11.633,12.852 +331,-0.1851,8.6899,0.12244,6.028,6.584,6.935,7.131,7.445,7.665,8.006,8.69,9.444,9.881,10.19,10.67,10.996,11.644,12.864 +332,-0.1857,8.6976,0.12245,6.034,6.589,6.942,7.137,7.451,7.672,8.013,8.698,9.452,9.89,10.199,10.679,11.006,11.655,12.876 +333,-0.1862,8.7053,0.12246,6.039,6.595,6.948,7.143,7.458,7.679,8.02,8.705,9.461,9.898,10.208,10.689,11.016,11.666,12.889 +334,-0.1867,8.713,0.12246,6.045,6.601,6.954,7.15,7.464,7.686,8.027,8.713,9.469,9.907,10.217,10.699,11.026,11.676,12.901 +335,-0.1873,8.7207,0.12247,6.05,6.607,6.96,7.156,7.471,7.693,8.034,8.721,9.478,9.916,10.227,10.709,11.036,11.687,12.913 +336,-0.1878,8.7283,0.12248,6.055,6.613,6.966,7.162,7.477,7.699,8.041,8.728,9.486,9.925,10.236,10.718,11.046,11.698,12.925 +337,-0.1883,8.736,0.12249,6.061,6.619,6.972,7.169,7.484,7.706,8.048,8.736,9.495,9.934,10.245,10.728,11.056,11.709,12.938 +338,-0.1889,8.7436,0.12249,6.066,6.624,6.978,7.175,7.49,7.713,8.055,8.744,9.503,9.943,10.254,10.737,11.066,11.719,12.95 +339,-0.1894,8.7512,0.1225,6.071,6.63,6.984,7.181,7.497,7.719,8.062,8.751,9.511,9.951,10.263,10.747,11.076,11.73,12.962 +340,-0.1899,8.7588,0.12251,6.077,6.636,6.99,7.187,7.503,7.726,8.069,8.759,9.52,9.96,10.272,10.757,11.086,11.741,12.974 +341,-0.1904,8.7664,0.12252,6.082,6.642,6.996,7.193,7.51,7.733,8.076,8.766,9.528,9.969,10.281,10.766,11.096,11.751,12.986 +342,-0.1909,8.774,0.12252,6.087,6.648,7.003,7.2,7.516,7.739,8.083,8.774,9.536,9.978,10.29,10.776,11.106,11.762,12.998 +343,-0.1914,8.7816,0.12253,6.093,6.653,7.009,7.206,7.523,7.746,8.09,8.782,9.544,9.986,10.299,10.785,11.116,11.773,13.01 +344,-0.192,8.7892,0.12254,6.098,6.659,7.015,7.212,7.529,7.753,8.097,8.789,9.553,9.995,10.309,10.795,11.126,11.783,13.022 +345,-0.1925,8.7968,0.12254,6.104,6.665,7.021,7.218,7.536,7.759,8.104,8.797,9.561,10.004,10.318,10.805,11.135,11.794,13.034 +346,-0.193,8.8043,0.12255,6.109,6.671,7.027,7.225,7.542,7.766,8.111,8.804,9.569,10.013,10.327,10.814,11.145,11.804,13.046 +347,-0.1935,8.8119,0.12256,6.114,6.676,7.033,7.231,7.549,7.773,8.118,8.812,9.578,10.021,10.336,10.824,11.155,11.815,13.058 +348,-0.194,8.8194,0.12256,6.12,6.682,7.039,7.237,7.555,7.779,8.125,8.819,9.586,10.03,10.345,10.833,11.165,11.826,13.07 +349,-0.1945,8.8269,0.12257,6.125,6.688,7.045,7.243,7.562,7.786,8.132,8.827,9.594,10.039,10.354,10.842,11.175,11.836,13.082 +350,-0.195,8.8344,0.12258,6.13,6.693,7.051,7.249,7.568,7.792,8.139,8.834,9.602,10.047,10.363,10.852,11.185,11.847,13.094 +351,-0.1955,8.842,0.12259,6.135,6.699,7.057,7.255,7.574,7.799,8.146,8.842,9.611,10.056,10.372,10.862,11.195,11.857,13.106 +352,-0.196,8.8495,0.12259,6.141,6.705,7.063,7.262,7.581,7.806,8.153,8.85,9.619,10.065,10.381,10.871,11.204,11.868,13.118 +353,-0.1965,8.8569,0.1226,6.146,6.711,7.069,7.268,7.587,7.812,8.159,8.857,9.627,10.073,10.389,10.88,11.214,11.878,13.13 +354,-0.197,8.8644,0.12261,6.151,6.716,7.075,7.274,7.594,7.819,8.166,8.864,9.635,10.082,10.398,10.89,11.224,11.889,13.142 +355,-0.1974,8.8719,0.12261,6.156,6.722,7.081,7.28,7.6,7.825,8.173,8.872,9.643,10.09,10.407,10.899,11.234,11.899,13.154 +356,-0.1979,8.8794,0.12262,6.162,6.728,7.087,7.286,7.606,7.832,8.18,8.879,9.652,10.099,10.416,10.909,11.243,11.91,13.166 +357,-0.1984,8.8868,0.12262,6.167,6.733,7.093,7.292,7.613,7.839,8.187,8.887,9.66,10.108,10.425,10.918,11.253,11.92,13.177 +358,-0.1989,8.8943,0.12263,6.172,6.739,7.099,7.298,7.619,7.845,8.194,8.894,9.668,10.116,10.434,10.927,11.263,11.931,13.189 +359,-0.1994,8.9017,0.12264,6.177,6.745,7.105,7.304,7.625,7.852,8.201,8.902,9.676,10.125,10.443,10.937,11.273,11.941,13.201 +360,-0.1999,8.9092,0.12264,6.183,6.751,7.111,7.311,7.632,7.858,8.207,8.909,9.684,10.133,10.452,10.946,11.282,11.951,13.213 +361,-0.2003,8.9166,0.12265,6.188,6.756,7.116,7.317,7.638,7.865,8.214,8.917,9.692,10.142,10.461,10.956,11.292,11.962,13.225 +362,-0.2008,8.924,0.12266,6.193,6.762,7.122,7.323,7.644,7.871,8.221,8.924,9.7,10.151,10.47,10.965,11.302,11.972,13.237 +363,-0.2013,8.9314,0.12266,6.198,6.767,7.128,7.329,7.651,7.878,8.228,8.931,9.709,10.159,10.478,10.974,11.311,11.982,13.248 +364,-0.2018,8.9388,0.12267,6.204,6.773,7.134,7.335,7.657,7.884,8.235,8.939,9.717,10.168,10.487,10.984,11.321,11.993,13.26 +365,-0.2022,8.9462,0.12267,6.209,6.779,7.14,7.341,7.663,7.891,8.241,8.946,9.725,10.176,10.496,10.993,11.331,12.003,13.272 +366,-0.2027,8.9536,0.12268,6.214,6.784,7.146,7.347,7.67,7.897,8.248,8.954,9.733,10.185,10.505,11.002,11.34,12.014,13.284 +367,-0.2032,8.961,0.12269,6.219,6.79,7.152,7.353,7.676,7.904,8.255,8.961,9.741,10.193,10.514,11.012,11.35,12.024,13.295 +368,-0.2036,8.9684,0.12269,6.224,6.796,7.158,7.359,7.682,7.91,8.262,8.968,9.749,10.202,10.522,11.021,11.36,12.034,13.307 +369,-0.2041,8.9757,0.1227,6.23,6.801,7.164,7.365,7.689,7.917,8.268,8.976,9.757,10.21,10.531,11.03,11.369,12.045,13.319 +370,-0.2046,8.9831,0.1227,6.235,6.807,7.17,7.371,7.695,7.923,8.275,8.983,9.765,10.218,10.54,11.039,11.379,12.055,13.33 +371,-0.205,8.9904,0.12271,6.24,6.812,7.175,7.377,7.701,7.93,8.282,8.99,9.773,10.227,10.549,11.048,11.388,12.065,13.342 +372,-0.2055,8.9978,0.12272,6.245,6.818,7.181,7.383,7.708,7.936,8.289,8.998,9.781,10.236,10.558,11.058,11.398,12.076,13.354 +373,-0.2059,9.0051,0.12272,6.25,6.824,7.187,7.389,7.714,7.943,8.296,9.005,9.789,10.244,10.566,11.067,11.407,12.086,13.365 +374,-0.2064,9.0125,0.12273,6.255,6.829,7.193,7.395,7.72,7.949,8.302,9.013,9.797,10.252,10.575,11.076,11.417,12.096,13.377 +375,-0.2068,9.0198,0.12273,6.261,6.835,7.199,7.401,7.726,7.956,8.309,9.02,9.805,10.261,10.584,11.085,11.427,12.106,13.388 +376,-0.2073,9.0271,0.12274,6.266,6.84,7.205,7.407,7.733,7.962,8.316,9.027,9.813,10.269,10.593,11.095,11.436,12.116,13.4 +377,-0.2077,9.0344,0.12274,6.271,6.846,7.211,7.413,7.739,7.968,8.322,9.034,9.821,10.278,10.601,11.104,11.446,12.126,13.411 +378,-0.2082,9.0417,0.12275,6.276,6.851,7.216,7.419,7.745,7.975,8.329,9.042,9.829,10.286,10.61,11.113,11.455,12.137,13.423 +379,-0.2086,9.049,0.12275,6.281,6.857,7.222,7.425,7.751,7.981,8.336,9.049,9.837,10.294,10.619,11.122,11.465,12.147,13.435 +380,-0.2091,9.0563,0.12276,6.286,6.863,7.228,7.431,7.758,7.988,8.343,9.056,9.845,10.303,10.627,11.131,11.474,12.157,13.446 +381,-0.2095,9.0636,0.12276,6.292,6.868,7.234,7.437,7.764,7.994,8.349,9.064,9.853,10.311,10.636,11.14,11.484,12.167,13.458 +382,-0.21,9.0709,0.12277,6.297,6.874,7.24,7.443,7.77,8,8.356,9.071,9.861,10.32,10.645,11.15,11.493,12.178,13.469 +383,-0.2104,9.0782,0.12277,6.302,6.879,7.246,7.449,7.776,8.007,8.363,9.078,9.869,10.328,10.653,11.159,11.503,12.188,13.481 +384,-0.2108,9.0854,0.12278,6.307,6.885,7.251,7.455,7.782,8.013,8.369,9.085,9.877,10.336,10.662,11.168,11.512,12.198,13.492 +385,-0.2113,9.0927,0.12278,6.312,6.89,7.257,7.461,7.789,8.02,8.376,9.093,9.885,10.345,10.671,11.177,11.522,12.208,13.504 +386,-0.2117,9.0999,0.12279,6.317,6.896,7.263,7.467,7.795,8.026,8.383,9.1,9.893,10.353,10.679,11.186,11.531,12.218,13.515 +387,-0.2121,9.1072,0.12279,6.322,6.901,7.269,7.473,7.801,8.032,8.389,9.107,9.901,10.361,10.688,11.195,11.54,12.228,13.527 +388,-0.2126,9.1144,0.1228,6.328,6.907,7.275,7.479,7.807,8.039,8.396,9.114,9.909,10.37,10.697,11.204,11.55,12.238,13.538 +389,-0.213,9.1217,0.1228,6.333,6.913,7.28,7.485,7.814,8.045,8.403,9.122,9.917,10.378,10.705,11.213,11.559,12.248,13.55 +390,-0.2134,9.1289,0.12281,6.338,6.918,7.286,7.491,7.82,8.052,8.409,9.129,9.925,10.386,10.714,11.223,11.569,12.259,13.561 +391,-0.2139,9.1361,0.12281,6.343,6.924,7.292,7.497,7.826,8.058,8.416,9.136,9.932,10.395,10.722,11.232,11.578,12.268,13.572 +392,-0.2143,9.1434,0.12282,6.348,6.929,7.298,7.503,7.832,8.064,8.423,9.143,9.94,10.403,10.731,11.241,11.588,12.279,13.584 +393,-0.2147,9.1506,0.12282,6.353,6.935,7.304,7.509,7.838,8.071,8.429,9.151,9.948,10.411,10.74,11.25,11.597,12.289,13.595 +394,-0.2151,9.1578,0.12282,6.358,6.94,7.309,7.515,7.844,8.077,8.436,9.158,9.956,10.419,10.748,11.259,11.606,12.299,13.606 +395,-0.2155,9.165,0.12283,6.363,6.946,7.315,7.52,7.851,8.083,8.442,9.165,9.964,10.428,10.757,11.268,11.616,12.309,13.618 +396,-0.216,9.1722,0.12283,6.368,6.951,7.321,7.526,7.857,8.09,8.449,9.172,9.972,10.436,10.765,11.277,11.625,12.319,13.629 +397,-0.2164,9.1794,0.12284,6.373,6.957,7.327,7.532,7.863,8.096,8.456,9.179,9.98,10.444,10.774,11.286,11.634,12.329,13.641 +398,-0.2168,9.1866,0.12284,6.379,6.962,7.332,7.538,7.869,8.102,8.462,9.187,9.988,10.453,10.782,11.295,11.644,12.339,13.652 +399,-0.2172,9.1938,0.12285,6.384,6.968,7.338,7.544,7.875,8.109,8.469,9.194,9.996,10.461,10.791,11.304,11.653,12.349,13.664 +400,-0.2176,9.2009,0.12285,6.389,6.973,7.344,7.55,7.881,8.115,8.475,9.201,10.003,10.469,10.8,11.313,11.662,12.359,13.675 +401,-0.218,9.2081,0.12285,6.394,6.979,7.35,7.556,7.888,8.121,8.482,9.208,10.011,10.477,10.808,11.322,11.672,12.369,13.686 +402,-0.2184,9.2153,0.12286,6.399,6.984,7.355,7.562,7.894,8.128,8.489,9.215,10.019,10.486,10.817,11.331,11.681,12.379,13.697 +403,-0.2188,9.2225,0.12286,6.404,6.99,7.361,7.568,7.9,8.134,8.495,9.223,10.027,10.494,10.825,11.34,11.69,12.389,13.708 +404,-0.2192,9.2296,0.12287,6.409,6.995,7.367,7.574,7.906,8.14,8.502,9.23,10.035,10.502,10.834,11.349,11.7,12.399,13.72 +405,-0.2196,9.2368,0.12287,6.414,7,7.373,7.58,7.912,8.147,8.509,9.237,10.043,10.51,10.842,11.358,11.709,12.409,13.731 +406,-0.22,9.2439,0.12287,6.419,7.006,7.378,7.585,7.918,8.153,8.515,9.244,10.05,10.518,10.851,11.367,11.718,12.418,13.742 +407,-0.2204,9.2511,0.12288,6.424,7.011,7.384,7.591,7.924,8.159,8.522,9.251,10.058,10.527,10.859,11.376,11.728,12.429,13.754 +408,-0.2208,9.2582,0.12288,6.429,7.017,7.39,7.597,7.93,8.165,8.528,9.258,10.066,10.535,10.868,11.385,11.737,12.438,13.765 +409,-0.2212,9.2654,0.12288,6.434,7.022,7.396,7.603,7.937,8.172,8.535,9.265,10.074,10.543,10.876,11.394,11.746,12.448,13.776 +410,-0.2216,9.2725,0.12289,6.439,7.028,7.401,7.609,7.943,8.178,8.541,9.273,10.082,10.551,10.885,11.403,11.755,12.458,13.787 +411,-0.222,9.2796,0.12289,6.444,7.033,7.407,7.615,7.949,8.184,8.548,9.28,10.089,10.559,10.893,11.412,11.765,12.468,13.798 +412,-0.2224,9.2867,0.12289,6.45,7.039,7.413,7.621,7.955,8.191,8.554,9.287,10.097,10.568,10.901,11.42,11.774,12.478,13.809 +413,-0.2228,9.2939,0.1229,6.455,7.044,7.418,7.626,7.961,8.197,8.561,9.294,10.105,10.576,10.91,11.43,11.783,12.488,13.821 +414,-0.2232,9.301,0.1229,6.46,7.05,7.424,7.632,7.967,8.203,8.568,9.301,10.113,10.584,10.919,11.438,11.792,12.498,13.832 +415,-0.2236,9.3081,0.1229,6.465,7.055,7.43,7.638,7.973,8.209,8.574,9.308,10.12,10.592,10.927,11.447,11.801,12.508,13.843 +416,-0.224,9.3152,0.12291,6.47,7.06,7.435,7.644,7.979,8.216,8.581,9.315,10.128,10.6,10.935,11.456,11.811,12.518,13.854 +417,-0.2243,9.3223,0.12291,6.475,7.066,7.441,7.65,7.985,8.222,8.587,9.322,10.136,10.608,10.944,11.465,11.82,12.527,13.865 +418,-0.2247,9.3294,0.12291,6.48,7.071,7.447,7.656,7.992,8.228,8.594,9.329,10.144,10.617,10.952,11.474,11.829,12.537,13.876 +419,-0.2251,9.3365,0.12292,6.485,7.077,7.453,7.662,7.998,8.234,8.6,9.337,10.152,10.625,10.961,11.483,11.838,12.547,13.888 +420,-0.2255,9.3436,0.12292,6.49,7.082,7.458,7.667,8.004,8.241,8.607,9.344,10.159,10.633,10.969,11.492,11.848,12.557,13.899 +421,-0.2259,9.3507,0.12292,6.495,7.088,7.464,7.673,8.01,8.247,8.613,9.351,10.167,10.641,10.978,11.501,11.857,12.567,13.91 +422,-0.2262,9.3578,0.12292,6.5,7.093,7.47,7.679,8.016,8.253,8.62,9.358,10.175,10.649,10.986,11.509,11.866,12.577,13.921 +423,-0.2266,9.3649,0.12293,6.505,7.098,7.475,7.685,8.022,8.26,8.626,9.365,10.183,10.657,10.994,11.518,11.875,12.587,13.932 +424,-0.227,9.372,0.12293,6.51,7.104,7.481,7.691,8.028,8.266,8.633,9.372,10.19,10.665,11.003,11.527,11.884,12.596,13.943 +425,-0.2274,9.379,0.12293,6.515,7.109,7.487,7.697,8.034,8.272,8.639,9.379,10.198,10.674,11.011,11.536,11.893,12.606,13.954 +426,-0.2277,9.3861,0.12294,6.52,7.115,7.492,7.702,8.04,8.278,8.646,9.386,10.206,10.682,11.02,11.545,11.903,12.616,13.965 +427,-0.2281,9.3932,0.12294,6.525,7.12,7.498,7.708,8.046,8.284,8.652,9.393,10.213,10.69,11.028,11.554,11.912,12.626,13.977 +428,-0.2285,9.4002,0.12294,6.53,7.126,7.504,7.714,8.052,8.291,8.659,9.4,10.221,10.698,11.036,11.563,11.921,12.635,13.987 +429,-0.2288,9.4073,0.12294,6.535,7.131,7.51,7.72,8.058,8.297,8.665,9.407,10.229,10.706,11.045,11.571,11.93,12.645,13.998 +430,-0.2292,9.4144,0.12295,6.54,7.136,7.515,7.726,8.064,8.303,8.672,9.414,10.237,10.714,11.053,11.58,11.939,12.655,14.01 +431,-0.2296,9.4214,0.12295,6.545,7.142,7.521,7.732,8.07,8.309,8.678,9.421,10.244,10.722,11.062,11.589,11.948,12.665,14.021 +432,-0.2299,9.4285,0.12295,6.55,7.147,7.527,7.737,8.076,8.316,8.685,9.429,10.252,10.73,11.07,11.598,11.957,12.675,14.032 +433,-0.2303,9.4355,0.12295,6.555,7.153,7.532,7.743,8.083,8.322,8.691,9.436,10.26,10.738,11.078,11.607,11.966,12.684,14.042 +434,-0.2307,9.4426,0.12295,6.56,7.158,7.538,7.749,8.089,8.328,8.698,9.443,10.267,10.746,11.087,11.615,11.976,12.694,14.053 +435,-0.231,9.4496,0.12296,6.565,7.163,7.543,7.755,8.095,8.334,8.704,9.45,10.275,10.755,11.095,11.624,11.985,12.704,14.065 +436,-0.2314,9.4567,0.12296,6.57,7.169,7.549,7.761,8.101,8.341,8.711,9.457,10.283,10.763,11.103,11.633,11.994,12.714,14.076 +437,-0.2317,9.4637,0.12296,6.575,7.174,7.555,7.766,8.107,8.347,8.717,9.464,10.29,10.771,11.112,11.642,12.003,12.723,14.086 +438,-0.2321,9.4707,0.12296,6.58,7.18,7.56,7.772,8.113,8.353,8.724,9.471,10.298,10.779,11.12,11.651,12.012,12.733,14.097 +439,-0.2324,9.4778,0.12296,6.585,7.185,7.566,7.778,8.119,8.359,8.73,9.478,10.306,10.787,11.128,11.659,12.021,12.743,14.108 +440,-0.2328,9.4848,0.12297,6.59,7.19,7.572,7.784,8.125,8.365,8.737,9.485,10.313,10.795,11.137,11.668,12.03,12.753,14.12 +441,-0.2331,9.4918,0.12297,6.595,7.196,7.577,7.79,8.131,8.372,8.743,9.492,10.321,10.803,11.145,11.677,12.039,12.762,14.13 +442,-0.2335,9.4988,0.12297,6.6,7.201,7.583,7.795,8.137,8.378,8.75,9.499,10.329,10.811,11.153,11.686,12.048,12.772,14.141 +443,-0.2338,9.5058,0.12297,6.605,7.207,7.589,7.801,8.143,8.384,8.756,9.506,10.336,10.819,11.162,11.694,12.057,12.781,14.152 +444,-0.2342,9.5129,0.12297,6.61,7.212,7.594,7.807,8.149,8.39,8.763,9.513,10.344,10.827,11.17,11.703,12.066,12.791,14.163 +445,-0.2345,9.5199,0.12298,6.615,7.217,7.6,7.813,8.155,8.396,8.769,9.52,10.352,10.835,11.178,11.712,12.076,12.801,14.174 +446,-0.2349,9.5269,0.12298,6.62,7.223,7.606,7.819,8.161,8.403,8.776,9.527,10.359,10.843,11.187,11.721,12.085,12.811,14.185 +447,-0.2352,9.5339,0.12298,6.625,7.228,7.611,7.824,8.167,8.409,8.782,9.534,10.367,10.851,11.195,11.73,12.094,12.82,14.196 +448,-0.2355,9.5409,0.12298,6.63,7.233,7.617,7.83,8.173,8.415,8.788,9.541,10.375,10.859,11.203,11.738,12.103,12.83,14.207 +449,-0.2359,9.5479,0.12298,6.635,7.239,7.623,7.836,8.179,8.421,8.795,9.548,10.382,10.867,11.211,11.747,12.112,12.84,14.218 +450,-0.2362,9.5549,0.12298,6.64,7.244,7.628,7.842,8.185,8.427,8.801,9.555,10.39,10.875,11.22,11.756,12.121,12.849,14.228 +451,-0.2366,9.5619,0.12299,6.645,7.25,7.634,7.847,8.191,8.433,8.808,9.562,10.398,10.883,11.228,11.765,12.13,12.859,14.24 +452,-0.2369,9.5689,0.12299,6.65,7.255,7.639,7.853,8.197,8.44,8.814,9.569,10.405,10.891,11.236,11.773,12.139,12.869,14.251 +453,-0.2372,9.5759,0.12299,6.655,7.26,7.645,7.859,8.203,8.446,8.821,9.576,10.413,10.899,11.245,11.782,12.148,12.878,14.261 +454,-0.2376,9.5829,0.12299,6.66,7.266,7.651,7.865,8.209,8.452,8.827,9.583,10.42,10.907,11.253,11.791,12.157,12.888,14.272 +455,-0.2379,9.5898,0.12299,6.665,7.271,7.656,7.87,8.215,8.458,8.834,9.59,10.428,10.915,11.261,11.799,12.166,12.897,14.283 +456,-0.2382,9.5968,0.12299,6.67,7.276,7.662,7.876,8.221,8.464,8.84,9.597,10.436,10.923,11.269,11.808,12.175,12.907,14.294 +457,-0.2385,9.6038,0.12299,6.675,7.282,7.668,7.882,8.227,8.47,8.846,9.604,10.443,10.931,11.278,11.817,12.184,12.917,14.304 +458,-0.2389,9.6108,0.123,6.68,7.287,7.673,7.888,8.233,8.477,8.853,9.611,10.451,10.939,11.286,11.825,12.193,12.926,14.316 +459,-0.2392,9.6178,0.123,6.685,7.292,7.679,7.894,8.239,8.483,8.859,9.618,10.458,10.947,11.294,11.834,12.202,12.936,14.327 +460,-0.2395,9.6247,0.123,6.69,7.298,7.684,7.899,8.245,8.489,8.866,9.625,10.466,10.955,11.302,11.843,12.211,12.946,14.337 +461,-0.2398,9.6317,0.123,6.695,7.303,7.69,7.905,8.251,8.495,8.872,9.632,10.474,10.963,11.311,11.851,12.22,12.955,14.348 +462,-0.2402,9.6387,0.123,6.7,7.309,7.696,7.911,8.257,8.501,8.879,9.639,10.481,10.971,11.319,11.86,12.229,12.965,14.359 +463,-0.2405,9.6457,0.123,6.705,7.314,7.701,7.917,8.263,8.507,8.885,9.646,10.489,10.979,11.327,11.869,12.238,12.974,14.37 +464,-0.2408,9.6526,0.123,6.71,7.319,7.707,7.922,8.269,8.514,8.891,9.653,10.496,10.987,11.335,11.877,12.247,12.984,14.38 +465,-0.2411,9.6596,0.123,6.715,7.325,7.712,7.928,8.275,8.52,8.898,9.66,10.504,10.995,11.344,11.886,12.256,12.993,14.391 +466,-0.2414,9.6665,0.12301,6.719,7.33,7.718,7.934,8.281,8.526,8.904,9.667,10.512,11.003,11.352,11.895,12.265,13.003,14.402 +467,-0.2418,9.6735,0.12301,6.724,7.335,7.724,7.94,8.287,8.532,8.911,9.674,10.519,11.011,11.36,11.904,12.274,13.013,14.413 +468,-0.2421,9.6805,0.12301,6.729,7.341,7.729,7.945,8.293,8.538,8.917,9.681,10.527,11.019,11.368,11.912,12.283,13.022,14.424 +469,-0.2424,9.6874,0.12301,6.734,7.346,7.735,7.951,8.299,8.544,8.923,9.687,10.534,11.027,11.377,11.921,12.292,13.032,14.435 +470,-0.2427,9.6944,0.12301,6.739,7.351,7.74,7.957,8.305,8.55,8.93,9.694,10.542,11.035,11.385,11.93,12.301,13.041,14.445 +471,-0.243,9.7013,0.12301,6.744,7.357,7.746,7.963,8.311,8.557,8.936,9.701,10.549,11.043,11.393,11.938,12.31,13.051,14.456 +472,-0.2433,9.7083,0.12301,6.749,7.362,7.752,7.968,8.317,8.563,8.943,9.708,10.557,11.051,11.401,11.947,12.319,13.061,14.467 +473,-0.2436,9.7152,0.12301,6.754,7.367,7.757,7.974,8.323,8.569,8.949,9.715,10.565,11.059,11.409,11.955,12.327,13.07,14.477 +474,-0.2439,9.7222,0.12301,6.759,7.373,7.763,7.98,8.329,8.575,8.956,9.722,10.572,11.067,11.418,11.964,12.336,13.08,14.488 +475,-0.2442,9.7291,0.12302,6.764,7.378,7.768,7.985,8.335,8.581,8.962,9.729,10.58,11.075,11.426,11.973,12.345,13.089,14.499 +476,-0.2446,9.7361,0.12302,6.769,7.383,7.774,7.991,8.341,8.587,8.968,9.736,10.587,11.083,11.434,11.982,12.355,13.099,14.51 +477,-0.2449,9.743,0.12302,6.774,7.389,7.779,7.997,8.347,8.593,8.975,9.743,10.595,11.09,11.442,11.99,12.363,13.108,14.521 +478,-0.2452,9.75,0.12302,6.779,7.394,7.785,8.003,8.353,8.6,8.981,9.75,10.603,11.098,11.451,11.999,12.372,13.118,14.532 +479,-0.2455,9.7569,0.12302,6.784,7.399,7.791,8.008,8.359,8.606,8.987,9.757,10.61,11.106,11.459,12.007,12.381,13.128,14.542 +480,-0.2458,9.7638,0.12302,6.789,7.405,7.796,8.014,8.365,8.612,8.994,9.764,10.618,11.114,11.467,12.016,12.39,13.137,14.553 +481,-0.2461,9.7708,0.12302,6.794,7.41,7.802,8.02,8.371,8.618,9,9.771,10.625,11.122,11.475,12.025,12.399,13.147,14.564 +482,-0.2464,9.7777,0.12302,6.799,7.415,7.807,8.026,8.377,8.624,9.007,9.778,10.633,11.13,11.483,12.033,12.408,13.156,14.574 +483,-0.2467,9.7846,0.12302,6.803,7.421,7.813,8.031,8.382,8.63,9.013,9.785,10.64,11.138,11.492,12.042,12.417,13.166,14.585 +484,-0.247,9.7916,0.12302,6.808,7.426,7.819,8.037,8.388,8.636,9.019,9.792,10.648,11.146,11.5,12.051,12.426,13.175,14.596 +485,-0.2472,9.7985,0.12303,6.813,7.431,7.824,8.043,8.394,8.642,9.026,9.799,10.655,11.154,11.508,12.059,12.435,13.185,14.607 +486,-0.2475,9.8054,0.12303,6.818,7.437,7.83,8.048,8.4,8.649,9.032,9.805,10.663,11.162,11.516,12.068,12.444,13.194,14.618 +487,-0.2478,9.8124,0.12303,6.823,7.442,7.835,8.054,8.406,8.655,9.039,9.812,10.671,11.17,11.525,12.077,12.453,13.204,14.628 +488,-0.2481,9.8193,0.12303,6.828,7.447,7.841,8.06,8.412,8.661,9.045,9.819,10.678,11.178,11.533,12.085,12.462,13.213,14.639 +489,-0.2484,9.8262,0.12303,6.833,7.453,7.846,8.066,8.418,8.667,9.051,9.826,10.686,11.186,11.541,12.094,12.47,13.223,14.65 +490,-0.2487,9.8331,0.12303,6.838,7.458,7.852,8.071,8.424,8.673,9.058,9.833,10.693,11.193,11.549,12.102,12.479,13.232,14.66 +491,-0.249,9.8401,0.12303,6.843,7.463,7.858,8.077,8.43,8.679,9.064,9.84,10.701,11.201,11.557,12.111,12.488,13.242,14.671 +492,-0.2493,9.847,0.12303,6.848,7.469,7.863,8.083,8.436,8.685,9.071,9.847,10.708,11.209,11.565,12.12,12.497,13.251,14.682 +493,-0.2496,9.8539,0.12303,6.853,7.474,7.869,8.089,8.442,8.691,9.077,9.854,10.716,11.217,11.574,12.128,12.506,13.261,14.692 +494,-0.2499,9.8608,0.12303,6.858,7.479,7.874,8.094,8.448,8.698,9.083,9.861,10.723,11.225,11.582,12.137,12.515,13.27,14.703 +495,-0.2501,9.8677,0.12303,6.863,7.485,7.88,8.1,8.454,8.704,9.09,9.868,10.731,11.233,11.59,12.145,12.524,13.28,14.714 +496,-0.2504,9.8746,0.12304,6.867,7.49,7.885,8.106,8.46,8.71,9.096,9.875,10.738,11.241,11.598,12.154,12.533,13.29,14.725 +497,-0.2507,9.8816,0.12304,6.872,7.495,7.891,8.111,8.466,8.716,9.102,9.882,10.746,11.249,11.606,12.163,12.542,13.299,14.735 +498,-0.251,9.8885,0.12304,6.877,7.5,7.897,8.117,8.472,8.722,9.109,9.889,10.754,11.257,11.615,12.171,12.551,13.309,14.746 +499,-0.2513,9.8954,0.12304,6.882,7.506,7.902,8.123,8.478,8.728,9.115,9.895,10.761,11.265,11.623,12.18,12.56,13.318,14.757 +500,-0.2515,9.9023,0.12304,6.887,7.511,7.908,8.128,8.484,8.734,9.121,9.902,10.769,11.273,11.631,12.188,12.568,13.327,14.767 +501,-0.2518,9.9092,0.12304,6.892,7.516,7.913,8.134,8.49,8.74,9.128,9.909,10.776,11.281,11.639,12.197,12.577,13.337,14.778 +502,-0.2521,9.9161,0.12304,6.897,7.522,7.919,8.14,8.495,8.746,9.134,9.916,10.784,11.288,11.647,12.206,12.586,13.346,14.789 +503,-0.2524,9.923,0.12304,6.902,7.527,7.924,8.146,8.501,8.753,9.141,9.923,10.791,11.296,11.655,12.214,12.595,13.356,14.799 +504,-0.2526,9.9299,0.12304,6.907,7.532,7.93,8.151,8.507,8.759,9.147,9.93,10.799,11.304,11.663,12.223,12.604,13.365,14.81 +505,-0.2529,9.9368,0.12304,6.912,7.538,7.936,8.157,8.513,8.765,9.153,9.937,10.806,11.312,11.672,12.231,12.613,13.375,14.821 +506,-0.2532,9.9437,0.12304,6.917,7.543,7.941,8.163,8.519,8.771,9.16,9.944,10.814,11.32,11.68,12.24,12.622,13.384,14.831 +507,-0.2535,9.9506,0.12305,6.921,7.548,7.947,8.168,8.525,8.777,9.166,9.951,10.821,11.328,11.688,12.249,12.631,13.394,14.842 +508,-0.2537,9.9575,0.12305,6.926,7.553,7.952,8.174,8.531,8.783,9.172,9.958,10.829,11.336,11.696,12.257,12.64,13.403,14.853 +509,-0.254,9.9644,0.12305,6.931,7.559,7.958,8.18,8.537,8.789,9.179,9.964,10.836,11.344,11.704,12.266,12.648,13.413,14.864 +510,-0.2543,9.9713,0.12305,6.936,7.564,7.963,8.185,8.543,8.795,9.185,9.971,10.844,11.352,11.712,12.274,12.657,13.422,14.874 +511,-0.2545,9.9782,0.12305,6.941,7.569,7.969,8.191,8.549,8.801,9.191,9.978,10.851,11.359,11.721,12.283,12.666,13.432,14.885 +512,-0.2548,9.9851,0.12305,6.946,7.575,7.974,8.197,8.555,8.807,9.198,9.985,10.859,11.367,11.729,12.291,12.675,13.441,14.895 +513,-0.2551,9.992,0.12305,6.951,7.58,7.98,8.202,8.561,8.813,9.204,9.992,10.866,11.375,11.737,12.3,12.684,13.451,14.906 +514,-0.2553,9.9989,0.12305,6.956,7.585,7.985,8.208,8.567,8.82,9.211,9.999,10.874,11.383,11.745,12.309,12.693,13.46,14.917 +515,-0.2556,10.0058,0.12305,6.961,7.59,7.991,8.214,8.573,8.826,9.217,10.006,10.881,11.391,11.753,12.317,12.702,13.47,14.927 +516,-0.2558,10.0127,0.12305,6.966,7.596,7.997,8.22,8.578,8.832,9.223,10.013,10.889,11.399,11.761,12.326,12.71,13.479,14.938 +517,-0.2561,10.0196,0.12305,6.97,7.601,8.002,8.225,8.584,8.838,9.23,10.02,10.896,11.407,11.769,12.334,12.719,13.488,14.948 +518,-0.2564,10.0265,0.12306,6.975,7.606,8.008,8.231,8.59,8.844,9.236,10.027,10.904,11.415,11.778,12.343,12.728,13.498,14.96 +519,-0.2566,10.0334,0.12306,6.98,7.612,8.013,8.237,8.596,8.85,9.242,10.033,10.912,11.423,11.786,12.352,12.737,13.508,14.97 +520,-0.2569,10.0402,0.12306,6.985,7.617,8.019,8.242,8.602,8.856,9.249,10.04,10.919,11.43,11.794,12.36,12.746,13.517,14.981 +521,-0.2571,10.0471,0.12306,6.99,7.622,8.024,8.248,8.608,8.862,9.255,10.047,10.926,11.438,11.802,12.369,12.755,13.526,14.991 +522,-0.2574,10.054,0.12306,6.995,7.627,8.03,8.254,8.614,8.868,9.261,10.054,10.934,11.446,11.81,12.377,12.764,13.536,15.002 +523,-0.2577,10.0609,0.12306,7,7.633,8.035,8.259,8.62,8.874,9.268,10.061,10.941,11.454,11.818,12.386,12.773,13.545,15.013 +524,-0.2579,10.0678,0.12306,7.005,7.638,8.041,8.265,8.626,8.88,9.274,10.068,10.949,11.462,11.827,12.394,12.781,13.555,15.023 +525,-0.2582,10.0746,0.12306,7.009,7.643,8.046,8.271,8.632,8.886,9.28,10.075,10.956,11.47,11.835,12.403,12.79,13.564,15.034 +526,-0.2584,10.0815,0.12306,7.014,7.649,8.052,8.276,8.638,8.893,9.287,10.082,10.964,11.478,11.843,12.411,12.799,13.574,15.044 +527,-0.2587,10.0884,0.12307,7.019,7.654,8.057,8.282,8.643,8.899,9.293,10.088,10.971,11.486,11.851,12.42,12.808,13.583,15.055 +528,-0.2589,10.0953,0.12307,7.024,7.659,8.063,8.288,8.649,8.905,9.299,10.095,10.979,11.493,11.859,12.429,12.817,13.593,15.066 +529,-0.2592,10.1021,0.12307,7.029,7.664,8.068,8.293,8.655,8.911,9.306,10.102,10.986,11.501,11.867,12.437,12.826,13.602,15.076 +530,-0.2594,10.109,0.12307,7.034,7.67,8.074,8.299,8.661,8.917,9.312,10.109,10.994,11.509,11.875,12.446,12.834,13.612,15.087 +531,-0.2597,10.1159,0.12307,7.039,7.675,8.079,8.305,8.667,8.923,9.318,10.116,11.001,11.517,11.883,12.454,12.843,13.621,15.098 +532,-0.2599,10.1227,0.12307,7.044,7.68,8.085,8.31,8.673,8.929,9.325,10.123,11.009,11.525,11.892,12.463,12.852,13.63,15.108 +533,-0.2601,10.1296,0.12307,7.048,7.685,8.091,8.316,8.679,8.935,9.331,10.13,11.016,11.533,11.9,12.471,12.861,13.64,15.119 +534,-0.2604,10.1365,0.12307,7.053,7.691,8.096,8.322,8.685,8.941,9.337,10.137,11.024,11.541,11.908,12.48,12.87,13.649,15.129 +535,-0.2606,10.1433,0.12308,7.058,7.696,8.101,8.327,8.691,8.947,9.344,10.143,11.031,11.548,11.916,12.488,12.879,13.659,15.14 +536,-0.2609,10.1502,0.12308,7.063,7.701,8.107,8.333,8.696,8.953,9.35,10.15,11.039,11.556,11.924,12.497,12.888,13.668,15.151 +537,-0.2611,10.157,0.12308,7.068,7.706,8.112,8.339,8.702,8.959,9.356,10.157,11.046,11.564,11.932,12.505,12.896,13.678,15.161 +538,-0.2614,10.1639,0.12308,7.073,7.712,8.118,8.344,8.708,8.965,9.363,10.164,11.054,11.572,11.94,12.514,12.905,13.687,15.172 +539,-0.2616,10.1707,0.12308,7.077,7.717,8.124,8.35,8.714,8.971,9.369,10.171,11.061,11.58,11.948,12.522,12.914,13.696,15.182 +540,-0.2618,10.1776,0.12308,7.082,7.722,8.129,8.356,8.72,8.977,9.375,10.178,11.069,11.588,11.956,12.531,12.923,13.706,15.193 +541,-0.2621,10.1845,0.12308,7.087,7.727,8.135,8.361,8.726,8.983,9.382,10.185,11.076,11.595,11.965,12.54,12.932,13.715,15.204 +542,-0.2623,10.1913,0.12309,7.092,7.732,8.14,8.367,8.732,8.989,9.388,10.191,11.084,11.603,11.973,12.548,12.941,13.725,15.215 +543,-0.2625,10.1982,0.12309,7.097,7.738,8.146,8.372,8.738,8.996,9.394,10.198,11.091,11.611,11.981,12.557,12.949,13.734,15.225 +544,-0.2628,10.205,0.12309,7.102,7.743,8.151,8.378,8.744,9.002,9.4,10.205,11.099,11.619,11.989,12.565,12.958,13.744,15.236 +545,-0.263,10.2119,0.12309,7.107,7.748,8.157,8.384,8.749,9.008,9.407,10.212,11.106,11.627,11.997,12.574,12.967,13.753,15.246 +546,-0.2632,10.2187,0.12309,7.111,7.754,8.162,8.389,8.755,9.014,9.413,10.219,11.114,11.635,12.005,12.582,12.976,13.762,15.257 +547,-0.2635,10.2255,0.12309,7.116,7.759,8.168,8.395,8.761,9.02,9.419,10.226,11.121,11.642,12.013,12.591,12.984,13.772,15.267 +548,-0.2637,10.2324,0.12309,7.121,7.764,8.173,8.401,8.767,9.026,9.426,10.232,11.128,11.65,12.021,12.599,12.993,13.781,15.278 +549,-0.2639,10.2392,0.1231,7.126,7.769,8.178,8.406,8.773,9.032,9.432,10.239,11.136,11.658,12.029,12.608,13.002,13.791,15.289 +550,-0.2642,10.2461,0.1231,7.131,7.774,8.184,8.412,8.779,9.038,9.438,10.246,11.143,11.666,12.038,12.616,13.011,13.8,15.299 +551,-0.2644,10.2529,0.1231,7.136,7.78,8.189,8.418,8.785,9.044,9.444,10.253,11.151,11.674,12.046,12.625,13.02,13.809,15.31 +552,-0.2646,10.2597,0.1231,7.14,7.785,8.195,8.423,8.79,9.05,9.451,10.26,11.158,11.682,12.054,12.633,13.029,13.819,15.32 +553,-0.2649,10.2666,0.1231,7.145,7.79,8.2,8.429,8.796,9.056,9.457,10.267,11.166,11.689,12.062,12.642,13.037,13.828,15.331 +554,-0.2651,10.2734,0.1231,7.15,7.795,8.206,8.434,8.802,9.062,9.463,10.273,11.173,11.697,12.07,12.65,13.046,13.838,15.341 +555,-0.2653,10.2803,0.12311,7.155,7.801,8.211,8.44,8.808,9.068,9.47,10.28,11.181,11.705,12.078,12.659,13.055,13.847,15.352 +556,-0.2655,10.2871,0.12311,7.16,7.806,8.217,8.446,8.814,9.074,9.476,10.287,11.188,11.713,12.086,12.667,13.064,13.857,15.363 +557,-0.2658,10.2939,0.12311,7.165,7.811,8.222,8.451,8.82,9.08,9.482,10.294,11.196,11.721,12.094,12.676,13.073,13.866,15.373 +558,-0.266,10.3008,0.12311,7.169,7.816,8.228,8.457,8.826,9.086,9.489,10.301,11.203,11.729,12.102,12.684,13.082,13.875,15.384 +559,-0.2662,10.3076,0.12311,7.174,7.822,8.233,8.463,8.832,9.092,9.495,10.308,11.21,11.736,12.11,12.693,13.09,13.885,15.394 +560,-0.2664,10.3144,0.12311,7.179,7.827,8.239,8.468,8.837,9.098,9.501,10.314,11.218,11.744,12.118,12.701,13.099,13.894,15.405 +561,-0.2666,10.3213,0.12312,7.184,7.832,8.244,8.474,8.843,9.104,9.507,10.321,11.225,11.752,12.127,12.71,13.108,13.904,15.416 +562,-0.2669,10.3281,0.12312,7.189,7.837,8.25,8.479,8.849,9.11,9.514,10.328,11.233,11.76,12.135,12.719,13.117,13.913,15.426 +563,-0.2671,10.3349,0.12312,7.193,7.842,8.255,8.485,8.855,9.116,9.52,10.335,11.24,11.768,12.143,12.727,13.126,13.922,15.437 +564,-0.2673,10.3417,0.12312,7.198,7.848,8.261,8.491,8.861,9.122,9.526,10.342,11.248,11.775,12.151,12.735,13.134,13.932,15.447 +565,-0.2675,10.3486,0.12312,7.203,7.853,8.266,8.496,8.867,9.128,9.533,10.349,11.255,11.783,12.159,12.744,13.143,13.941,15.458 +566,-0.2677,10.3554,0.12313,7.208,7.858,8.272,8.502,8.872,9.134,9.539,10.355,11.263,11.791,12.167,12.753,13.152,13.951,15.469 +567,-0.2679,10.3622,0.12313,7.213,7.863,8.277,8.507,8.878,9.14,9.545,10.362,11.27,11.799,12.175,12.761,13.161,13.96,15.479 +568,-0.2682,10.369,0.12313,7.217,7.868,8.283,8.513,8.884,9.146,9.551,10.369,11.277,11.807,12.183,12.77,13.17,13.969,15.49 +569,-0.2684,10.3759,0.12313,7.222,7.874,8.288,8.519,8.89,9.152,9.558,10.376,11.285,11.815,12.191,12.778,13.178,13.979,15.5 +570,-0.2686,10.3827,0.12313,7.227,7.879,8.294,8.524,8.896,9.158,9.564,10.383,11.292,11.822,12.199,12.786,13.187,13.988,15.511 +571,-0.2688,10.3895,0.12314,7.232,7.884,8.299,8.53,8.902,9.164,9.57,10.39,11.3,11.83,12.208,12.795,13.196,13.998,15.522 +572,-0.269,10.3963,0.12314,7.237,7.889,8.304,8.535,8.908,9.17,9.576,10.396,11.307,11.838,12.216,12.804,13.205,14.007,15.532 +573,-0.2692,10.4031,0.12314,7.241,7.894,8.31,8.541,8.913,9.176,9.583,10.403,11.315,11.846,12.224,12.812,13.214,14.016,15.542 +574,-0.2694,10.41,0.12314,7.246,7.9,8.315,8.547,8.919,9.182,9.589,10.41,11.322,11.854,12.232,12.821,13.222,14.026,15.553 +575,-0.2696,10.4168,0.12314,7.251,7.905,8.321,8.552,8.925,9.188,9.595,10.417,11.33,11.861,12.24,12.829,13.231,14.035,15.563 +576,-0.2698,10.4236,0.12315,7.256,7.91,8.326,8.558,8.931,9.194,9.602,10.424,11.337,11.869,12.248,12.838,13.24,14.045,15.574 +577,-0.27,10.4304,0.12315,7.261,7.915,8.332,8.563,8.937,9.2,9.608,10.43,11.345,11.877,12.256,12.846,13.249,14.054,15.585 +578,-0.2702,10.4372,0.12315,7.265,7.92,8.337,8.569,8.943,9.206,9.614,10.437,11.352,11.885,12.264,12.855,13.257,14.063,15.595 +579,-0.2705,10.444,0.12315,7.27,7.926,8.343,8.575,8.948,9.212,9.62,10.444,11.359,11.893,12.272,12.863,13.266,14.073,15.606 +580,-0.2707,10.4508,0.12316,7.275,7.931,8.348,8.58,8.954,9.218,9.627,10.451,11.367,11.901,12.28,12.872,13.275,14.082,15.617 +581,-0.2709,10.4577,0.12316,7.28,7.936,8.353,8.586,8.96,9.224,9.633,10.458,11.374,11.908,12.288,12.88,13.284,14.092,15.627 +582,-0.2711,10.4645,0.12316,7.285,7.941,8.359,8.592,8.966,9.23,9.639,10.465,11.382,11.916,12.296,12.889,13.293,14.101,15.638 +583,-0.2713,10.4713,0.12316,7.29,7.946,8.364,8.597,8.972,9.236,9.645,10.471,11.389,11.924,12.304,12.897,13.301,14.11,15.648 +584,-0.2715,10.4781,0.12316,7.294,7.952,8.37,8.603,8.978,9.242,9.652,10.478,11.397,11.932,12.312,12.905,13.31,14.12,15.658 +585,-0.2717,10.4849,0.12317,7.299,7.957,8.375,8.608,8.983,9.248,9.658,10.485,11.404,11.94,12.321,12.914,13.319,14.129,15.669 +586,-0.2719,10.4917,0.12317,7.304,7.962,8.381,8.614,8.989,9.254,9.664,10.492,11.411,11.947,12.329,12.923,13.328,14.138,15.68 +587,-0.2721,10.4985,0.12317,7.309,7.967,8.386,8.619,8.995,9.26,9.671,10.499,11.419,11.955,12.337,12.931,13.337,14.148,15.69 +588,-0.2723,10.5053,0.12317,7.313,7.972,8.392,8.625,9.001,9.266,9.677,10.505,11.426,11.963,12.345,12.939,13.345,14.157,15.701 +589,-0.2725,10.5121,0.12318,7.318,7.977,8.397,8.631,9.007,9.272,9.683,10.512,11.434,11.971,12.353,12.948,13.354,14.167,15.712 +590,-0.2727,10.5189,0.12318,7.323,7.983,8.402,8.636,9.013,9.278,9.689,10.519,11.441,11.979,12.361,12.957,13.363,14.176,15.722 +591,-0.2729,10.5257,0.12318,7.328,7.988,8.408,8.642,9.018,9.284,9.696,10.526,11.449,11.986,12.369,12.965,13.372,14.185,15.733 +592,-0.273,10.5325,0.12319,7.332,7.993,8.413,8.647,9.024,9.29,9.702,10.533,11.456,11.994,12.377,12.974,13.381,14.195,15.743 +593,-0.2732,10.5393,0.12319,7.337,7.998,8.419,8.653,9.03,9.296,9.708,10.539,11.463,12.002,12.385,12.982,13.389,14.204,15.754 +594,-0.2734,10.5461,0.12319,7.342,8.003,8.424,8.658,9.036,9.302,9.714,10.546,11.471,12.01,12.393,12.99,13.398,14.213,15.764 +595,-0.2736,10.5529,0.12319,7.347,8.008,8.43,8.664,9.042,9.308,9.721,10.553,11.478,12.017,12.401,12.999,13.407,14.223,15.775 +596,-0.2738,10.5597,0.1232,7.351,8.014,8.435,8.67,9.047,9.314,9.727,10.56,11.486,12.025,12.409,13.008,13.416,14.232,15.786 +597,-0.274,10.5665,0.1232,7.356,8.019,8.44,8.675,9.053,9.32,9.733,10.567,11.493,12.033,12.417,13.016,13.425,14.242,15.796 +598,-0.2742,10.5733,0.1232,7.361,8.024,8.446,8.681,9.059,9.326,9.739,10.573,11.5,12.041,12.425,13.024,13.433,14.251,15.807 +599,-0.2744,10.5801,0.1232,7.366,8.029,8.451,8.686,9.065,9.332,9.746,10.58,11.508,12.049,12.433,13.033,13.442,14.26,15.817 +600,-0.2746,10.5869,0.12321,7.371,8.034,8.457,8.692,9.071,9.338,9.752,10.587,11.515,12.057,12.442,13.042,13.451,14.27,15.828 +601,-0.2748,10.5937,0.12321,7.375,8.039,8.462,8.698,9.077,9.344,9.758,10.594,11.523,12.064,12.45,13.05,13.46,14.279,15.838 +602,-0.275,10.6005,0.12321,7.38,8.045,8.468,8.703,9.082,9.35,9.764,10.601,11.53,12.072,12.458,13.058,13.468,14.289,15.849 +603,-0.2751,10.6073,0.12322,7.385,8.05,8.473,8.709,9.088,9.356,9.771,10.607,11.538,12.08,12.466,13.067,13.477,14.298,15.86 +604,-0.2753,10.6141,0.12322,7.39,8.055,8.478,8.714,9.094,9.362,9.777,10.614,11.545,12.088,12.474,13.075,13.486,14.307,15.87 +605,-0.2755,10.6209,0.12322,7.394,8.06,8.484,8.72,9.1,9.368,9.783,10.621,11.552,12.096,12.482,13.084,13.495,14.317,15.88 +606,-0.2757,10.6277,0.12323,7.399,8.065,8.489,8.725,9.106,9.374,9.789,10.628,11.56,12.103,12.49,13.093,13.504,14.326,15.891 +607,-0.2759,10.6345,0.12323,7.404,8.07,8.495,8.731,9.111,9.38,9.796,10.635,11.567,12.111,12.498,13.101,13.513,14.336,15.902 +608,-0.2761,10.6413,0.12323,7.409,8.076,8.5,8.737,9.117,9.386,9.802,10.641,11.575,12.119,12.506,13.109,13.521,14.345,15.912 +609,-0.2763,10.6481,0.12324,7.413,8.081,8.505,8.742,9.123,9.392,9.808,10.648,11.582,12.127,12.514,13.118,13.53,14.355,15.923 +610,-0.2764,10.6549,0.12324,7.418,8.086,8.511,8.748,9.129,9.398,9.814,10.655,11.59,12.135,12.522,13.126,13.539,14.364,15.934 +611,-0.2766,10.6617,0.12324,7.423,8.091,8.516,8.753,9.135,9.404,9.821,10.662,11.597,12.142,12.53,13.135,13.548,14.373,15.944 +612,-0.2768,10.6685,0.12325,7.428,8.096,8.522,8.759,9.14,9.41,9.827,10.669,11.605,12.15,12.538,13.144,13.557,14.383,15.955 +613,-0.277,10.6753,0.12325,7.432,8.101,8.527,8.764,9.146,9.416,9.833,10.675,11.612,12.158,12.547,13.152,13.565,14.392,15.966 +614,-0.2772,10.6821,0.12325,7.437,8.107,8.533,8.77,9.152,9.422,9.839,10.682,11.619,12.166,12.555,13.16,13.574,14.401,15.976 +615,-0.2773,10.6889,0.12326,7.442,8.112,8.538,8.775,9.158,9.428,9.845,10.689,11.627,12.174,12.563,13.169,13.583,14.411,15.987 +616,-0.2775,10.6957,0.12326,7.447,8.117,8.543,8.781,9.164,9.434,9.852,10.696,11.634,12.181,12.571,13.178,13.592,14.42,15.997 +617,-0.2777,10.7025,0.12326,7.451,8.122,8.549,8.787,9.169,9.44,9.858,10.703,11.642,12.189,12.579,13.186,13.6,14.43,16.008 +618,-0.2779,10.7093,0.12327,7.456,8.127,8.554,8.792,9.175,9.446,9.864,10.709,11.649,12.197,12.587,13.195,13.609,14.439,16.019 +619,-0.278,10.7161,0.12327,7.461,8.132,8.56,8.798,9.181,9.452,9.87,10.716,11.657,12.205,12.595,13.203,13.618,14.449,16.029 +620,-0.2782,10.7229,0.12327,7.466,8.137,8.565,8.803,9.187,9.458,9.877,10.723,11.664,12.213,12.603,13.211,13.627,14.458,16.039 +621,-0.2784,10.7297,0.12328,7.47,8.143,8.571,8.809,9.193,9.464,9.883,10.73,11.671,12.221,12.611,13.22,13.636,14.468,16.05 +622,-0.2786,10.7365,0.12328,7.475,8.148,8.576,8.814,9.198,9.47,9.889,10.737,11.679,12.228,12.619,13.229,13.645,14.477,16.061 +623,-0.2787,10.7433,0.12328,7.48,8.153,8.581,8.82,9.204,9.476,9.895,10.743,11.686,12.236,12.627,13.237,13.653,14.486,16.071 +624,-0.2789,10.7501,0.12329,7.484,8.158,8.587,8.826,9.21,9.482,9.902,10.75,11.694,12.244,12.635,13.246,13.662,14.496,16.082 +625,-0.2791,10.7569,0.12329,7.489,8.163,8.592,8.831,9.216,9.488,9.908,10.757,11.701,12.252,12.643,13.254,13.671,14.505,16.093 +626,-0.2793,10.7637,0.1233,7.494,8.168,8.598,8.837,9.222,9.494,9.914,10.764,11.709,12.26,12.652,13.263,13.68,14.515,16.104 +627,-0.2794,10.7705,0.1233,7.499,8.173,8.603,8.842,9.227,9.5,9.92,10.771,11.716,12.267,12.66,13.271,13.689,14.524,16.114 +628,-0.2796,10.7773,0.1233,7.504,8.179,8.608,8.848,9.233,9.506,9.927,10.777,11.723,12.275,12.668,13.28,13.697,14.533,16.124 +629,-0.2798,10.7841,0.12331,7.508,8.184,8.614,8.853,9.239,9.512,9.933,10.784,11.731,12.283,12.676,13.288,13.706,14.543,16.135 +630,-0.2799,10.7909,0.12331,7.513,8.189,8.619,8.859,9.245,9.518,9.939,10.791,11.738,12.291,12.684,13.297,13.715,14.552,16.146 +631,-0.2801,10.7977,0.12332,7.518,8.194,8.625,8.864,9.251,9.523,9.945,10.798,11.746,12.299,12.692,13.305,13.724,14.562,16.157 +632,-0.2803,10.8045,0.12332,7.522,8.199,8.63,8.87,9.256,9.529,9.952,10.805,11.753,12.306,12.7,13.314,13.733,14.571,16.167 +633,-0.2804,10.8113,0.12332,7.527,8.204,8.636,8.876,9.262,9.535,9.958,10.811,11.761,12.314,12.708,13.322,13.741,14.58,16.177 +634,-0.2806,10.8181,0.12333,7.532,8.209,8.641,8.881,9.268,9.541,9.964,10.818,11.768,12.322,12.716,13.331,13.75,14.59,16.188 +635,-0.2808,10.8249,0.12333,7.537,8.215,8.646,8.887,9.274,9.547,9.97,10.825,11.775,12.33,12.724,13.339,13.759,14.599,16.199 +636,-0.2809,10.8317,0.12334,7.541,8.22,8.652,8.892,9.28,9.553,9.977,10.832,11.783,12.338,12.733,13.348,13.768,14.609,16.21 +637,-0.2811,10.8385,0.12334,7.546,8.225,8.657,8.898,9.285,9.559,9.983,10.839,11.79,12.346,12.741,13.356,13.777,14.618,16.22 +638,-0.2813,10.8453,0.12335,7.551,8.23,8.662,8.903,9.291,9.565,9.989,10.845,11.798,12.353,12.749,13.365,13.786,14.628,16.231 +639,-0.2814,10.8521,0.12335,7.555,8.235,8.668,8.909,9.297,9.571,9.995,10.852,11.805,12.361,12.757,13.373,13.795,14.637,16.242 +640,-0.2816,10.8589,0.12336,7.56,8.24,8.673,8.914,9.303,9.577,10.002,10.859,11.813,12.369,12.765,13.382,13.804,14.647,16.253 +641,-0.2818,10.8657,0.12336,7.565,8.245,8.679,8.92,9.309,9.583,10.008,10.866,11.82,12.377,12.773,13.391,13.812,14.656,16.263 +642,-0.2819,10.8725,0.12336,7.57,8.251,8.684,8.926,9.314,9.589,10.014,10.873,11.828,12.385,12.781,13.399,13.821,14.665,16.273 +643,-0.2821,10.8793,0.12337,7.574,8.256,8.689,8.931,9.32,9.595,10.02,10.879,11.835,12.392,12.789,13.408,13.83,14.675,16.284 +644,-0.2822,10.8861,0.12337,7.579,8.261,8.695,8.937,9.326,9.601,10.027,10.886,11.842,12.4,12.797,13.416,13.839,14.684,16.295 +645,-0.2824,10.8929,0.12338,7.584,8.266,8.7,8.942,9.332,9.607,10.033,10.893,11.85,12.408,12.805,13.425,13.848,14.694,16.306 +646,-0.2826,10.8997,0.12338,7.589,8.271,8.706,8.948,9.338,9.613,10.039,10.9,11.857,12.416,12.813,13.433,13.856,14.703,16.316 +647,-0.2827,10.9065,0.12339,7.593,8.276,8.711,8.953,9.343,9.619,10.045,10.907,11.865,12.424,12.822,13.442,13.865,14.713,16.327 +648,-0.2829,10.9133,0.12339,7.598,8.281,8.716,8.959,9.349,9.625,10.051,10.913,11.872,12.432,12.83,13.45,13.874,14.722,16.337 +649,-0.283,10.9202,0.1234,7.603,8.286,8.722,8.964,9.355,9.631,10.058,10.92,11.88,12.44,12.838,13.459,13.883,14.732,16.349 +650,-0.2832,10.927,0.1234,7.607,8.292,8.727,8.97,9.361,9.637,10.064,10.927,11.887,12.447,12.846,13.467,13.892,14.741,16.359 +651,-0.2834,10.9338,0.12341,7.612,8.297,8.733,8.975,9.367,9.643,10.07,10.934,11.895,12.455,12.854,13.476,13.901,14.751,16.37 +652,-0.2835,10.9406,0.12341,7.617,8.302,8.738,8.981,9.372,9.649,10.077,10.941,11.902,12.463,12.862,13.485,13.91,14.76,16.38 +653,-0.2837,10.9474,0.12342,7.621,8.307,8.743,8.987,9.378,9.655,10.083,10.947,11.91,12.471,12.87,13.493,13.919,14.77,16.391 +654,-0.2838,10.9542,0.12342,7.626,8.312,8.749,8.992,9.384,9.661,10.089,10.954,11.917,12.479,12.878,13.502,13.927,14.779,16.402 +655,-0.284,10.961,0.12343,7.631,8.317,8.754,8.998,9.39,9.667,10.095,10.961,11.925,12.487,12.887,13.51,13.936,14.789,16.413 +656,-0.2841,10.9679,0.12343,7.636,8.322,8.76,9.003,9.396,9.673,10.102,10.968,11.932,12.494,12.895,13.519,13.945,14.798,16.423 +657,-0.2843,10.9747,0.12344,7.64,8.327,8.765,9.009,9.401,9.679,10.108,10.975,11.94,12.502,12.903,13.528,13.954,14.808,16.434 +658,-0.2844,10.9815,0.12344,7.645,8.333,8.77,9.014,9.407,9.685,10.114,10.982,11.947,12.51,12.911,13.536,13.963,14.817,16.445 +659,-0.2846,10.9883,0.12345,7.65,8.338,8.776,9.02,9.413,9.691,10.12,10.988,11.954,12.518,12.919,13.545,13.972,14.827,16.456 +660,-0.2847,10.9951,0.12345,7.654,8.343,8.781,9.025,9.419,9.697,10.126,10.995,11.962,12.526,12.927,13.553,13.981,14.836,16.466 +661,-0.2849,11.0019,0.12346,7.659,8.348,8.787,9.031,9.424,9.703,10.133,11.002,11.969,12.534,12.935,13.562,13.99,14.846,16.477 +662,-0.285,11.0088,0.12346,7.664,8.353,8.792,9.037,9.43,9.709,10.139,11.009,11.977,12.542,12.943,13.57,13.998,14.855,16.487 +663,-0.2852,11.0156,0.12347,7.669,8.358,8.797,9.042,9.436,9.715,10.145,11.016,11.984,12.549,12.952,13.579,14.007,14.865,16.498 +664,-0.2853,11.0224,0.12347,7.673,8.363,8.803,9.048,9.442,9.721,10.152,11.022,11.992,12.557,12.96,13.587,14.016,14.874,16.509 +665,-0.2855,11.0292,0.12348,7.678,8.368,8.808,9.053,9.448,9.726,10.158,11.029,11.999,12.565,12.968,13.596,14.025,14.884,16.52 +666,-0.2856,11.036,0.12348,7.683,8.374,8.814,9.059,9.454,9.732,10.164,11.036,12.007,12.573,12.976,13.604,14.034,14.893,16.53 +667,-0.2858,11.0429,0.12349,7.687,8.379,8.819,9.064,9.459,9.738,10.17,11.043,12.014,12.581,12.984,13.613,14.043,14.903,16.541 +668,-0.2859,11.0497,0.1235,7.692,8.384,8.824,9.07,9.465,9.744,10.176,11.05,12.022,12.589,12.992,13.622,14.052,14.912,16.552 +669,-0.2861,11.0565,0.1235,7.697,8.389,8.83,9.075,9.471,9.75,10.183,11.057,12.029,12.597,13,13.63,14.061,14.922,16.563 +670,-0.2862,11.0633,0.12351,7.701,8.394,8.835,9.081,9.477,9.756,10.189,11.063,12.037,12.604,13.009,13.639,14.07,14.931,16.574 +671,-0.2864,11.0702,0.12351,7.706,8.399,8.841,9.087,9.483,9.762,10.195,11.07,12.044,12.612,13.017,13.648,14.078,14.941,16.584 +672,-0.2865,11.077,0.12352,7.711,8.404,8.846,9.092,9.488,9.768,10.202,11.077,12.052,12.62,13.025,13.656,14.087,14.95,16.595 +673,-0.2866,11.0838,0.12352,7.716,8.409,8.851,9.098,9.494,9.774,10.208,11.084,12.059,12.628,13.033,13.665,14.096,14.96,16.605 +674,-0.2868,11.0906,0.12353,7.72,8.414,8.857,9.103,9.5,9.78,10.214,11.091,12.066,12.636,13.041,13.673,14.105,14.969,16.616 +675,-0.2869,11.0975,0.12353,7.725,8.42,8.862,9.109,9.506,9.786,10.22,11.098,12.074,12.644,13.049,13.682,14.114,14.979,16.627 +676,-0.2871,11.1043,0.12354,7.73,8.425,8.868,9.114,9.512,9.792,10.227,11.104,12.081,12.652,13.058,13.691,14.123,14.988,16.638 +677,-0.2872,11.1111,0.12355,7.734,8.43,8.873,9.12,9.517,9.798,10.233,11.111,12.089,12.66,13.066,13.699,14.132,14.998,16.649 +678,-0.2874,11.118,0.12355,7.739,8.435,8.878,9.125,9.523,9.804,10.239,11.118,12.096,12.667,13.074,13.708,14.141,15.008,16.66 +679,-0.2875,11.1248,0.12356,7.744,8.44,8.884,9.131,9.529,9.81,10.245,11.125,12.104,12.675,13.082,13.716,14.15,15.017,16.67 +680,-0.2876,11.1316,0.12356,7.749,8.445,8.889,9.136,9.535,9.816,10.252,11.132,12.111,12.683,13.09,13.725,14.158,15.026,16.681 +681,-0.2878,11.1384,0.12357,7.753,8.45,8.894,9.142,9.54,9.822,10.258,11.138,12.119,12.691,13.098,13.734,14.167,15.036,16.692 +682,-0.2879,11.1453,0.12358,7.758,8.455,8.9,9.147,9.546,9.828,10.264,11.145,12.126,12.699,13.107,13.742,14.177,15.046,16.703 +683,-0.2881,11.1521,0.12358,7.763,8.461,8.905,9.153,9.552,9.834,10.27,11.152,12.134,12.707,13.115,13.751,14.185,15.055,16.713 +684,-0.2882,11.1589,0.12359,7.767,8.466,8.911,9.158,9.558,9.84,10.277,11.159,12.141,12.715,13.123,13.759,14.194,15.065,16.724 +685,-0.2883,11.1658,0.12359,7.772,8.471,8.916,9.164,9.564,9.846,10.283,11.166,12.149,12.723,13.131,13.768,14.203,15.074,16.735 +686,-0.2885,11.1726,0.1236,7.777,8.476,8.921,9.17,9.569,9.852,10.289,11.173,12.156,12.73,13.139,13.777,14.212,15.084,16.746 +687,-0.2886,11.1795,0.12361,7.781,8.481,8.927,9.175,9.575,9.858,10.295,11.18,12.164,12.738,13.147,13.785,14.221,15.094,16.757 +688,-0.2887,11.1863,0.12361,7.786,8.486,8.932,9.181,9.581,9.864,10.302,11.186,12.171,12.746,13.155,13.794,14.23,15.103,16.767 +689,-0.2889,11.1931,0.12362,7.791,8.491,8.938,9.186,9.587,9.87,10.308,11.193,12.179,12.754,13.164,13.803,14.239,15.113,16.778 +690,-0.289,11.2,0.12362,7.796,8.497,8.943,9.192,9.593,9.876,10.314,11.2,12.186,12.762,13.172,13.811,14.248,15.122,16.789 +691,-0.2891,11.2068,0.12363,7.8,8.502,8.948,9.197,9.598,9.882,10.32,11.207,12.194,12.77,13.18,13.82,14.257,15.132,16.8 +692,-0.2893,11.2137,0.12364,7.805,8.507,8.954,9.203,9.604,9.888,10.327,11.214,12.201,12.778,13.188,13.829,14.266,15.142,16.811 +693,-0.2894,11.2205,0.12364,7.81,8.512,8.959,9.209,9.61,9.894,10.333,11.221,12.209,12.786,13.196,13.837,14.275,15.151,16.821 +694,-0.2895,11.2273,0.12365,7.814,8.517,8.965,9.214,9.616,9.9,10.339,11.227,12.216,12.794,13.205,13.846,14.284,15.16,16.832 +695,-0.2897,11.2342,0.12366,7.819,8.522,8.97,9.22,9.622,9.906,10.345,11.234,12.224,12.802,13.213,13.854,14.293,15.17,16.843 +696,-0.2898,11.241,0.12366,7.824,8.527,8.975,9.225,9.627,9.912,10.352,11.241,12.231,12.809,13.221,13.863,14.301,15.18,16.854 +697,-0.2899,11.2479,0.12367,7.828,8.532,8.981,9.231,9.633,9.918,10.358,11.248,12.239,12.817,13.229,13.872,14.31,15.189,16.865 +698,-0.2901,11.2547,0.12367,7.833,8.537,8.986,9.236,9.639,9.924,10.364,11.255,12.246,12.825,13.237,13.88,14.319,15.199,16.875 +699,-0.2902,11.2616,0.12368,7.838,8.543,8.992,9.242,9.645,9.93,10.371,11.262,12.254,12.833,13.246,13.889,14.328,15.208,16.886 +700,-0.2903,11.2684,0.12369,7.842,8.548,8.997,9.247,9.651,9.936,10.377,11.268,12.261,12.841,13.254,13.898,14.337,15.218,16.897 +701,-0.2905,11.2753,0.12369,7.847,8.553,9.003,9.253,9.657,9.942,10.383,11.275,12.269,12.849,13.262,13.906,14.346,15.227,16.908 +702,-0.2906,11.2821,0.1237,7.852,8.558,9.008,9.258,9.662,9.948,10.389,11.282,12.276,12.857,13.27,13.915,14.355,15.237,16.919 +703,-0.2907,11.2889,0.12371,7.856,8.563,9.013,9.264,9.668,9.954,10.396,11.289,12.284,12.865,13.278,13.923,14.364,15.247,16.93 +704,-0.2909,11.2958,0.12371,7.861,8.568,9.019,9.27,9.674,9.96,10.402,11.296,12.291,12.873,13.286,13.932,14.373,15.256,16.94 +705,-0.291,11.3026,0.12372,7.866,8.573,9.024,9.275,9.68,9.966,10.408,11.303,12.299,12.88,13.295,13.941,14.382,15.266,16.951 +706,-0.2911,11.3095,0.12373,7.87,8.578,9.029,9.281,9.685,9.972,10.414,11.31,12.307,12.889,13.303,13.949,14.391,15.276,16.962 +707,-0.2912,11.3163,0.12373,7.875,8.583,9.035,9.286,9.691,9.978,10.421,11.316,12.314,12.896,13.311,13.958,14.4,15.285,16.973 +708,-0.2914,11.3232,0.12374,7.88,8.589,9.04,9.292,9.697,9.984,10.427,11.323,12.322,12.904,13.319,13.967,14.409,15.295,16.984 +709,-0.2915,11.33,0.12375,7.884,8.594,9.045,9.297,9.703,9.99,10.433,11.33,12.329,12.912,13.327,13.975,14.418,15.304,16.995 +710,-0.2916,11.3369,0.12375,7.889,8.599,9.051,9.303,9.709,9.996,10.439,11.337,12.337,12.92,13.336,13.984,14.427,15.314,17.005 +711,-0.2917,11.3438,0.12376,7.894,8.604,9.056,9.308,9.715,10.002,10.446,11.344,12.344,12.928,13.344,13.993,14.436,15.324,17.017 +712,-0.2919,11.3506,0.12377,7.899,8.609,9.062,9.314,9.72,10.007,10.452,11.351,12.352,12.936,13.352,14.001,14.445,15.333,17.028 +713,-0.292,11.3575,0.12377,7.903,8.614,9.067,9.32,9.726,10.014,10.458,11.358,12.359,12.944,13.36,14.01,14.454,15.343,17.038 +714,-0.2921,11.3643,0.12378,7.908,8.619,9.072,9.325,9.732,10.019,10.465,11.364,12.367,12.952,13.368,14.019,14.463,15.352,17.049 +715,-0.2922,11.3712,0.12379,7.913,8.624,9.078,9.331,9.738,10.025,10.471,11.371,12.374,12.96,13.377,14.027,14.472,15.362,17.06 +716,-0.2924,11.378,0.12379,7.917,8.63,9.083,9.336,9.744,10.031,10.477,11.378,12.382,12.968,13.385,14.036,14.481,15.371,17.071 +717,-0.2925,11.3849,0.1238,7.922,8.635,9.089,9.342,9.749,10.037,10.483,11.385,12.389,12.976,13.393,14.045,14.49,15.381,17.082 +718,-0.2926,11.3917,0.12381,7.927,8.64,9.094,9.347,9.755,10.043,10.49,11.392,12.397,12.983,13.401,14.053,14.499,15.391,17.093 +719,-0.2927,11.3986,0.12382,7.931,8.645,9.099,9.353,9.761,10.049,10.496,11.399,12.404,12.991,13.41,14.062,14.508,15.401,17.104 +720,-0.2928,11.4055,0.12382,7.936,8.65,9.105,9.358,9.767,10.055,10.502,11.406,12.412,12.999,13.418,14.071,14.517,15.41,17.114 +721,-0.293,11.4123,0.12383,7.941,8.655,9.11,9.364,9.773,10.061,10.508,11.412,12.419,13.007,13.426,14.079,14.526,15.42,17.125 +722,-0.2931,11.4192,0.12384,7.945,8.66,9.116,9.369,9.778,10.067,10.515,11.419,12.427,13.015,13.434,14.088,14.535,15.43,17.136 +723,-0.2932,11.426,0.12384,7.95,8.665,9.121,9.375,9.784,10.073,10.521,11.426,12.434,13.023,13.442,14.097,14.543,15.439,17.147 +724,-0.2933,11.4329,0.12385,7.955,8.67,9.126,9.381,9.79,10.079,10.527,11.433,12.442,13.031,13.451,14.105,14.553,15.449,17.158 +725,-0.2934,11.4397,0.12386,7.959,8.675,9.132,9.386,9.796,10.085,10.533,11.44,12.449,13.039,13.459,14.114,14.562,15.458,17.169 +726,-0.2936,11.4466,0.12387,7.964,8.68,9.137,9.392,9.801,10.091,10.54,11.447,12.457,13.047,13.467,14.123,14.571,15.468,17.18 +727,-0.2937,11.4535,0.12387,7.969,8.686,9.143,9.397,9.807,10.097,10.546,11.454,12.465,13.055,13.475,14.131,14.58,15.478,17.191 +728,-0.2938,11.4603,0.12388,7.973,8.691,9.148,9.403,9.813,10.103,10.552,11.46,12.472,13.063,13.484,14.14,14.589,15.487,17.202 +729,-0.2939,11.4672,0.12389,7.978,8.696,9.153,9.408,9.819,10.109,10.559,11.467,12.48,13.071,13.492,14.149,14.598,15.497,17.213 +730,-0.294,11.4741,0.12389,7.983,8.701,9.159,9.414,9.825,10.115,10.565,11.474,12.487,13.079,13.5,14.157,14.607,15.506,17.223 +731,-0.2942,11.4809,0.1239,7.987,8.706,9.164,9.419,9.831,10.121,10.571,11.481,12.495,13.087,13.508,14.166,14.616,15.516,17.234 +732,-0.2943,11.4878,0.12391,7.992,8.711,9.169,9.425,9.836,10.127,10.577,11.488,12.502,13.095,13.517,14.175,14.625,15.526,17.245 +733,-0.2944,11.4946,0.12392,7.997,8.716,9.175,9.43,9.842,10.133,10.584,11.495,12.51,13.103,13.525,14.184,14.634,15.536,17.256 +734,-0.2945,11.5015,0.12392,8.002,8.721,9.18,9.436,9.848,10.139,10.59,11.502,12.517,13.11,13.533,14.192,14.643,15.545,17.267 +735,-0.2946,11.5084,0.12393,8.006,8.727,9.186,9.442,9.854,10.145,10.596,11.508,12.525,13.118,13.541,14.201,14.652,15.555,17.278 +736,-0.2947,11.5152,0.12394,8.011,8.732,9.191,9.447,9.86,10.151,10.602,11.515,12.532,13.126,13.549,14.21,14.661,15.564,17.289 +737,-0.2948,11.5221,0.12395,8.015,8.737,9.196,9.453,9.865,10.157,10.609,11.522,12.54,13.134,13.558,14.218,14.67,15.574,17.3 +738,-0.295,11.529,0.12395,8.02,8.742,9.202,9.458,9.871,10.163,10.615,11.529,12.547,13.142,13.566,14.227,14.679,15.584,17.311 +739,-0.2951,11.5358,0.12396,8.025,8.747,9.207,9.464,9.877,10.169,10.621,11.536,12.555,13.15,13.574,14.236,14.688,15.593,17.322 +740,-0.2952,11.5427,0.12397,8.029,8.752,9.213,9.469,9.883,10.175,10.628,11.543,12.563,13.158,13.582,14.244,14.697,15.603,17.333 +741,-0.2953,11.5496,0.12398,8.034,8.757,9.218,9.475,9.889,10.181,10.634,11.55,12.57,13.166,13.591,14.253,14.706,15.613,17.344 +742,-0.2954,11.5564,0.12399,8.039,8.762,9.223,9.48,9.894,10.187,10.64,11.556,12.578,13.174,13.599,14.262,14.715,15.623,17.355 +743,-0.2955,11.5633,0.12399,8.043,8.767,9.229,9.486,9.9,10.193,10.646,11.563,12.585,13.182,13.607,14.27,14.724,15.632,17.365 +744,-0.2956,11.5702,0.124,8.048,8.772,9.234,9.491,9.906,10.199,10.653,11.57,12.593,13.19,13.615,14.279,14.733,15.642,17.376 +745,-0.2957,11.577,0.12401,8.053,8.777,9.239,9.497,9.912,10.205,10.659,11.577,12.6,13.198,13.624,14.288,14.742,15.651,17.387 +746,-0.2959,11.5839,0.12402,8.057,8.782,9.245,9.502,9.918,10.211,10.665,11.584,12.608,13.206,13.632,14.297,14.751,15.661,17.399 +747,-0.296,11.5907,0.12402,8.062,8.788,9.25,9.508,9.923,10.217,10.671,11.591,12.615,13.214,13.64,14.305,14.76,15.671,17.409 +748,-0.2961,11.5976,0.12403,8.067,8.793,9.256,9.513,9.929,10.223,10.678,11.598,12.623,13.222,13.648,14.314,14.769,15.68,17.42 +749,-0.2962,11.6045,0.12404,8.071,8.798,9.261,9.519,9.935,10.229,10.684,11.605,12.63,13.23,13.657,14.323,14.778,15.69,17.431 +750,-0.2963,11.6113,0.12405,8.076,8.803,9.266,9.524,9.941,10.235,10.69,11.611,12.638,13.238,13.665,14.331,14.787,15.7,17.442 +751,-0.2964,11.6182,0.12406,8.081,8.808,9.272,9.53,9.946,10.241,10.696,11.618,12.646,13.246,13.673,14.34,14.796,15.71,17.453 +752,-0.2965,11.6251,0.12406,8.085,8.813,9.277,9.536,9.952,10.247,10.703,11.625,12.653,13.253,13.681,14.349,14.805,15.719,17.464 +753,-0.2966,11.6319,0.12407,8.09,8.818,9.282,9.541,9.958,10.253,10.709,11.632,12.661,13.261,13.689,14.357,14.814,15.729,17.475 +754,-0.2967,11.6388,0.12408,8.095,8.823,9.288,9.547,9.964,10.259,10.715,11.639,12.668,13.269,13.698,14.366,14.823,15.739,17.486 +755,-0.2968,11.6456,0.12409,8.099,8.828,9.293,9.552,9.97,10.265,10.722,11.646,12.676,13.277,13.706,14.375,14.832,15.748,17.497 +756,-0.2969,11.6525,0.1241,8.104,8.833,9.298,9.558,9.975,10.271,10.728,11.653,12.683,13.285,13.714,14.384,14.841,15.758,17.508 +757,-0.297,11.6594,0.1241,8.109,8.839,9.304,9.563,9.981,10.277,10.734,11.659,12.691,13.293,13.722,14.392,14.85,15.767,17.519 +758,-0.2972,11.6662,0.12411,8.113,8.844,9.309,9.569,9.987,10.283,10.74,11.666,12.698,13.301,13.731,14.401,14.859,15.777,17.53 +759,-0.2973,11.6731,0.12412,8.118,8.849,9.315,9.574,9.993,10.289,10.747,11.673,12.706,13.309,13.739,14.41,14.868,15.787,17.541 +760,-0.2974,11.6799,0.12413,8.122,8.854,9.32,9.58,9.999,10.295,10.753,11.68,12.713,13.317,13.747,14.418,14.877,15.797,17.552 +761,-0.2975,11.6868,0.12414,8.127,8.859,9.325,9.585,10.004,10.301,10.759,11.687,12.721,13.325,13.756,14.427,14.886,15.806,17.563 +762,-0.2976,11.6937,0.12415,8.132,8.864,9.331,9.591,10.01,10.307,10.765,11.694,12.729,13.333,13.764,14.436,14.896,15.816,17.574 +763,-0.2977,11.7005,0.12415,8.136,8.869,9.336,9.596,10.016,10.313,10.772,11.701,12.736,13.341,13.772,14.444,14.904,15.826,17.585 +764,-0.2978,11.7074,0.12416,8.141,8.874,9.341,9.602,10.022,10.319,10.778,11.707,12.744,13.349,13.78,14.453,14.913,15.835,17.596 +765,-0.2979,11.7142,0.12417,8.146,8.879,9.347,9.607,10.027,10.324,10.784,11.714,12.751,13.357,13.788,14.462,14.922,15.845,17.607 +766,-0.298,11.7211,0.12418,8.15,8.884,9.352,9.613,10.033,10.33,10.79,11.721,12.759,13.365,13.797,14.471,14.932,15.855,17.618 +767,-0.2981,11.7279,0.12419,8.155,8.889,9.357,9.618,10.039,10.336,10.797,11.728,12.766,13.373,13.805,14.479,14.941,15.865,17.629 +768,-0.2982,11.7348,0.1242,8.159,8.894,9.363,9.624,10.045,10.342,10.803,11.735,12.774,13.381,13.813,14.488,14.95,15.874,17.64 +769,-0.2983,11.7416,0.12421,8.164,8.899,9.368,9.629,10.05,10.348,10.809,11.742,12.781,13.389,13.821,14.497,14.959,15.884,17.651 +770,-0.2984,11.7485,0.12421,8.169,8.904,9.374,9.635,10.056,10.354,10.815,11.749,12.789,13.397,13.83,14.505,14.967,15.893,17.661 +771,-0.2985,11.7553,0.12422,8.173,8.909,9.379,9.64,10.062,10.36,10.822,11.755,12.796,13.404,13.838,14.514,14.977,15.903,17.672 +772,-0.2986,11.7622,0.12423,8.178,8.915,9.384,9.646,10.068,10.366,10.828,11.762,12.804,13.413,13.846,14.523,14.986,15.913,17.684 +773,-0.2987,11.769,0.12424,8.183,8.92,9.39,9.651,10.074,10.372,10.834,11.769,12.811,13.42,13.854,14.532,14.995,15.923,17.695 +774,-0.2988,11.7759,0.12425,8.187,8.925,9.395,9.657,10.079,10.378,10.84,11.776,12.819,13.428,13.863,14.54,15.004,15.932,17.706 +775,-0.2989,11.7827,0.12426,8.192,8.93,9.4,9.662,10.085,10.384,10.847,11.783,12.826,13.436,13.871,14.549,15.013,15.942,17.717 +776,-0.299,11.7896,0.12427,8.196,8.935,9.406,9.668,10.091,10.39,10.853,11.79,12.834,13.444,13.879,14.558,15.022,15.952,17.728 +777,-0.2991,11.7964,0.12428,8.201,8.94,9.411,9.673,10.097,10.396,10.859,11.796,12.842,13.452,13.887,14.567,15.031,15.962,17.739 +778,-0.2992,11.8033,0.12429,8.206,8.945,9.416,9.679,10.102,10.402,10.865,11.803,12.849,13.46,13.896,14.575,15.04,15.971,17.75 +779,-0.2993,11.8101,0.12429,8.21,8.95,9.422,9.685,10.108,10.408,10.872,11.81,12.857,13.468,13.904,14.584,15.049,15.981,17.76 +780,-0.2994,11.817,0.1243,8.215,8.955,9.427,9.69,10.114,10.414,10.878,11.817,12.864,13.476,13.912,14.593,15.058,15.99,17.772 +781,-0.2995,11.8238,0.12431,8.219,8.96,9.432,9.695,10.12,10.42,10.884,11.824,12.872,13.484,13.92,14.601,15.067,16,17.783 +782,-0.2996,11.8307,0.12432,8.224,8.965,9.438,9.701,10.126,10.426,10.89,11.831,12.879,13.492,13.929,14.61,15.076,16.01,17.794 +783,-0.2997,11.8375,0.12433,8.229,8.97,9.443,9.706,10.131,10.432,10.897,11.838,12.887,13.5,13.937,14.619,15.085,16.02,17.805 +784,-0.2998,11.8443,0.12434,8.233,8.975,9.448,9.712,10.137,10.437,10.903,11.844,12.894,13.508,13.945,14.628,15.094,16.029,17.816 +785,-0.2999,11.8512,0.12435,8.238,8.98,9.454,9.717,10.143,10.443,10.909,11.851,12.902,13.516,13.953,14.636,15.103,16.039,17.827 +786,-0.3,11.858,0.12436,8.242,8.985,9.459,9.723,10.148,10.449,10.915,11.858,12.909,13.524,13.962,14.645,15.112,16.049,17.838 +787,-0.3001,11.8648,0.12437,8.247,8.99,9.464,9.728,10.154,10.455,10.921,11.865,12.917,13.532,13.97,14.654,15.121,16.059,17.849 +788,-0.3002,11.8717,0.12438,8.252,8.995,9.469,9.734,10.16,10.461,10.928,11.872,12.925,13.54,13.978,14.663,15.13,16.068,17.86 +789,-0.3003,11.8785,0.12439,8.256,9,9.475,9.739,10.166,10.467,10.934,11.879,12.932,13.548,13.986,14.671,15.139,16.078,17.871 +790,-0.3004,11.8853,0.1244,8.261,9.005,9.48,9.745,10.171,10.473,10.94,11.885,12.939,13.556,13.995,14.68,15.149,16.088,17.882 +791,-0.3005,11.8922,0.12441,8.265,9.01,9.485,9.75,10.177,10.479,10.946,11.892,12.947,13.564,14.003,14.689,15.158,16.098,17.893 +792,-0.3006,11.899,0.12441,8.27,9.015,9.491,9.756,10.183,10.485,10.953,11.899,12.955,13.571,14.011,14.697,15.166,16.107,17.904 +793,-0.3007,11.9058,0.12442,8.275,9.02,9.496,9.761,10.189,10.491,10.959,11.906,12.962,13.579,14.019,14.706,15.175,16.117,17.915 +794,-0.3007,11.9126,0.12443,8.279,9.025,9.501,9.767,10.194,10.497,10.965,11.913,12.97,13.587,14.027,14.715,15.184,16.126,17.925 +795,-0.3008,11.9194,0.12444,8.284,9.03,9.507,9.772,10.2,10.503,10.971,11.919,12.977,13.595,14.036,14.723,15.193,16.136,17.936 +796,-0.3009,11.9263,0.12445,8.288,9.035,9.512,9.778,10.206,10.509,10.978,11.926,12.985,13.603,14.044,14.732,15.203,16.146,17.948 +797,-0.301,11.9331,0.12446,8.293,9.04,9.517,9.783,10.212,10.515,10.984,11.933,12.992,13.611,14.052,14.741,15.212,16.155,17.959 +798,-0.3011,11.9399,0.12447,8.297,9.045,9.523,9.789,10.217,10.52,10.99,11.94,13,13.619,14.06,14.749,15.221,16.165,17.97 +799,-0.3012,11.9467,0.12448,8.302,9.05,9.528,9.794,10.223,10.526,10.996,11.947,13.007,13.627,14.069,14.758,15.23,16.175,17.981 +800,-0.3013,11.9535,0.12449,8.306,9.055,9.533,9.799,10.229,10.532,11.002,11.954,13.015,13.635,14.077,14.767,15.239,16.184,17.992 +801,-0.3014,11.9603,0.1245,8.311,9.06,9.538,9.805,10.234,10.538,11.008,11.96,13.022,13.643,14.085,14.775,15.248,16.194,18.003 +802,-0.3015,11.9671,0.12451,8.316,9.065,9.544,9.81,10.24,10.544,11.015,11.967,13.03,13.651,14.093,14.784,15.257,16.204,18.014 +803,-0.3016,11.9739,0.12452,8.32,9.07,9.549,9.816,10.246,10.55,11.021,11.974,13.037,13.659,14.101,14.793,15.266,16.214,18.025 +804,-0.3017,11.9808,0.12453,8.325,9.075,9.554,9.821,10.252,10.556,11.027,11.981,13.045,13.667,14.11,14.802,15.275,16.223,18.036 +805,-0.3018,11.9876,0.12454,8.329,9.08,9.56,9.827,10.257,10.562,11.033,11.988,13.052,13.674,14.118,14.81,15.284,16.233,18.047 +806,-0.3019,11.9944,0.12455,8.334,9.085,9.565,9.832,10.263,10.568,11.04,11.994,13.06,13.682,14.126,14.819,15.293,16.243,18.058 +807,-0.3019,12.0011,0.12456,8.338,9.09,9.57,9.838,10.269,10.574,11.046,12.001,13.067,13.69,14.134,14.828,15.302,16.252,18.069 +808,-0.302,12.0079,0.12457,8.343,9.095,9.575,9.843,10.274,10.579,11.052,12.008,13.075,13.698,14.142,14.836,15.311,16.262,18.08 +809,-0.3021,12.0147,0.12458,8.347,9.1,9.581,9.848,10.28,10.585,11.058,12.015,13.082,13.706,14.151,14.845,15.32,16.272,18.091 +810,-0.3022,12.0215,0.12459,8.352,9.105,9.586,9.854,10.286,10.591,11.064,12.022,13.09,13.714,14.159,14.854,15.329,16.281,18.102 +811,-0.3023,12.0283,0.1246,8.356,9.11,9.591,9.859,10.291,10.597,11.07,12.028,13.097,13.722,14.167,14.862,15.338,16.291,18.113 +812,-0.3024,12.0351,0.12461,8.361,9.115,9.596,9.865,10.297,10.603,11.077,12.035,13.105,13.73,14.175,14.871,15.347,16.301,18.124 +813,-0.3025,12.0419,0.12462,8.365,9.12,9.602,9.87,10.303,10.609,11.083,12.042,13.112,13.738,14.184,14.88,15.356,16.311,18.135 +814,-0.3026,12.0487,0.12463,8.37,9.125,9.607,9.876,10.309,10.615,11.089,12.049,13.12,13.746,14.192,14.888,15.365,16.32,18.146 +815,-0.3027,12.0554,0.12465,8.374,9.13,9.612,9.881,10.314,10.62,11.095,12.055,13.127,13.754,14.2,14.897,15.374,16.33,18.157 +816,-0.3027,12.0622,0.12466,8.379,9.135,9.617,9.886,10.32,10.626,11.101,12.062,13.135,13.761,14.208,14.906,15.383,16.34,18.168 +817,-0.3028,12.069,0.12467,8.383,9.14,9.623,9.892,10.325,10.632,11.107,12.069,13.142,13.769,14.217,14.915,15.392,16.35,18.179 +818,-0.3029,12.0758,0.12468,8.388,9.145,9.628,9.897,10.331,10.638,11.114,12.076,13.15,13.777,14.225,14.923,15.401,16.359,18.19 +819,-0.303,12.0825,0.12469,8.392,9.15,9.633,9.902,10.337,10.644,11.12,12.083,13.157,13.785,14.233,14.932,15.41,16.369,18.201 +820,-0.3031,12.0893,0.1247,8.397,9.155,9.638,9.908,10.342,10.65,11.126,12.089,13.164,13.793,14.241,14.941,15.419,16.379,18.212 +821,-0.3032,12.0961,0.12471,8.401,9.16,9.644,9.913,10.348,10.656,11.132,12.096,13.172,13.801,14.249,14.949,15.428,16.388,18.223 +822,-0.3033,12.1028,0.12472,8.406,9.165,9.649,9.919,10.354,10.662,11.138,12.103,13.179,13.809,14.257,14.958,15.437,16.398,18.234 +823,-0.3033,12.1096,0.12473,8.41,9.17,9.654,9.924,10.36,10.667,11.144,12.11,13.187,13.817,14.266,14.967,15.446,16.407,18.245 +824,-0.3034,12.1163,0.12474,8.415,9.175,9.659,9.929,10.365,10.673,11.15,12.116,13.194,13.824,14.274,14.975,15.455,16.417,18.256 +825,-0.3035,12.1231,0.12475,8.419,9.18,9.665,9.935,10.371,10.679,11.157,12.123,13.202,13.832,14.282,14.984,15.464,16.427,18.267 +826,-0.3036,12.1298,0.12476,8.424,9.184,9.67,9.94,10.376,10.685,11.163,12.13,13.209,13.84,14.29,14.992,15.473,16.436,18.278 +827,-0.3037,12.1366,0.12477,8.428,9.189,9.675,9.946,10.382,10.691,11.169,12.137,13.217,13.848,14.298,15.001,15.482,16.446,18.289 +828,-0.3038,12.1433,0.12479,8.433,9.194,9.68,9.951,10.388,10.697,11.175,12.143,13.224,13.856,14.307,15.01,15.491,16.456,18.301 +829,-0.3039,12.15,0.1248,8.437,9.199,9.685,9.956,10.393,10.702,11.181,12.15,13.232,13.864,14.315,15.019,15.5,16.466,18.311 +830,-0.3039,12.1568,0.12481,8.442,9.204,9.69,9.962,10.399,10.708,11.187,12.157,13.239,13.872,14.323,15.027,15.509,16.475,18.322 +831,-0.304,12.1635,0.12482,8.446,9.209,9.696,9.967,10.405,10.714,11.193,12.164,13.246,13.88,14.331,15.036,15.518,16.485,18.333 +832,-0.3041,12.1702,0.12483,8.451,9.214,9.701,9.972,10.41,10.72,11.199,12.17,13.254,13.887,14.339,15.044,15.527,16.494,18.344 +833,-0.3042,12.177,0.12484,8.455,9.219,9.706,9.978,10.416,10.726,11.206,12.177,13.261,13.895,14.347,15.053,15.536,16.504,18.355 +834,-0.3043,12.1837,0.12485,8.46,9.224,9.711,9.983,10.421,10.731,11.212,12.184,13.269,13.903,14.355,15.062,15.545,16.514,18.366 +835,-0.3044,12.1904,0.12486,8.464,9.229,9.717,9.989,10.427,10.737,11.218,12.19,13.276,13.911,14.364,15.07,15.554,16.523,18.377 +836,-0.3044,12.1971,0.12487,8.468,9.234,9.722,9.994,10.433,10.743,11.224,12.197,13.283,13.919,14.372,15.079,15.563,16.533,18.388 +837,-0.3045,12.2039,0.12489,8.473,9.238,9.727,9.999,10.438,10.749,11.23,12.204,13.291,13.927,14.38,15.088,15.572,16.543,18.399 +838,-0.3046,12.2106,0.1249,8.477,9.243,9.732,10.004,10.444,10.755,11.236,12.211,13.298,13.935,14.388,15.096,15.581,16.552,18.41 +839,-0.3047,12.2173,0.12491,8.482,9.248,9.737,10.01,10.45,10.76,11.242,12.217,13.306,13.942,14.396,15.105,15.59,16.562,18.421 +840,-0.3048,12.224,0.12492,8.486,9.253,9.742,10.015,10.455,10.766,11.248,12.224,13.313,13.95,14.404,15.114,15.599,16.572,18.432 +841,-0.3048,12.2307,0.12493,8.491,9.258,9.748,10.021,10.461,10.772,11.254,12.231,13.321,13.958,14.412,15.122,15.608,16.581,18.443 +842,-0.3049,12.2374,0.12494,8.495,9.263,9.753,10.026,10.466,10.778,11.26,12.237,13.328,13.966,14.421,15.131,15.616,16.591,18.454 +843,-0.305,12.2441,0.12495,8.5,9.268,9.758,10.031,10.472,10.784,11.266,12.244,13.335,13.974,14.429,15.139,15.625,16.6,18.465 +844,-0.3051,12.2508,0.12497,8.504,9.272,9.763,10.036,10.477,10.789,11.272,12.251,13.343,13.982,14.437,15.148,15.635,16.61,18.476 +845,-0.3052,12.2575,0.12498,8.508,9.277,9.768,10.042,10.483,10.795,11.279,12.258,13.35,13.989,14.445,15.157,15.644,16.62,18.487 +846,-0.3052,12.2642,0.12499,8.513,9.282,9.773,10.047,10.489,10.801,11.285,12.264,13.358,13.997,14.453,15.165,15.652,16.629,18.498 +847,-0.3053,12.2709,0.125,8.517,9.287,9.778,10.052,10.494,10.807,11.291,12.271,13.365,14.005,14.461,15.174,15.661,16.639,18.509 +848,-0.3054,12.2775,0.12501,8.522,9.292,9.784,10.058,10.5,10.812,11.297,12.278,13.372,14.013,14.469,15.182,15.67,16.648,18.52 +849,-0.3055,12.2842,0.12503,8.526,9.297,9.789,10.063,10.505,10.818,11.303,12.284,13.38,14.021,14.478,15.191,15.679,16.658,18.531 +850,-0.3056,12.2909,0.12504,8.53,9.302,9.794,10.068,10.511,10.824,11.309,12.291,13.387,14.028,14.486,15.2,15.688,16.668,18.542 +851,-0.3056,12.2976,0.12505,8.535,9.306,9.799,10.074,10.517,10.83,11.315,12.298,13.395,14.036,14.494,15.208,15.697,16.678,18.553 +852,-0.3057,12.3042,0.12506,8.539,9.311,9.804,10.079,10.522,10.835,11.321,12.304,13.402,14.044,14.502,15.217,15.706,16.687,18.564 +853,-0.3058,12.3109,0.12507,8.544,9.316,9.809,10.084,10.528,10.841,11.327,12.311,13.409,14.052,14.51,15.225,15.715,16.697,18.575 +854,-0.3059,12.3176,0.12509,8.548,9.321,9.814,10.089,10.533,10.847,11.333,12.318,13.417,14.06,14.518,15.234,15.724,16.707,18.586 +855,-0.3059,12.3242,0.1251,8.552,9.326,9.819,10.095,10.539,10.853,11.339,12.324,13.424,14.067,14.526,15.243,15.733,16.716,18.597 +856,-0.306,12.3309,0.12511,8.557,9.331,9.825,10.1,10.544,10.858,11.345,12.331,13.431,14.075,14.534,15.251,15.742,16.726,18.608 +857,-0.3061,12.3375,0.12512,8.561,9.335,9.83,10.105,10.55,10.864,11.351,12.338,13.439,14.083,14.542,15.26,15.751,16.735,18.619 +858,-0.3062,12.3442,0.12513,8.565,9.34,9.835,10.111,10.555,10.87,11.357,12.344,13.446,14.091,14.55,15.268,15.759,16.745,18.629 +859,-0.3063,12.3508,0.12515,8.57,9.345,9.84,10.116,10.561,10.876,11.363,12.351,13.454,14.099,14.559,15.277,15.769,16.755,18.641 +860,-0.3063,12.3575,0.12516,8.574,9.35,9.845,10.121,10.566,10.881,11.369,12.358,13.461,14.106,14.567,15.286,15.777,16.764,18.652 +861,-0.3064,12.3641,0.12517,8.578,9.355,9.85,10.126,10.572,10.887,11.375,12.364,13.468,14.114,14.575,15.294,15.786,16.774,18.662 +862,-0.3065,12.3707,0.12518,8.583,9.359,9.855,10.132,10.577,10.893,11.381,12.371,13.476,14.122,14.583,15.303,15.795,16.783,18.673 +863,-0.3066,12.3774,0.1252,8.587,9.364,9.86,10.137,10.583,10.899,11.387,12.377,13.483,14.13,14.591,15.311,15.804,16.793,18.685 +864,-0.3066,12.384,0.12521,8.591,9.369,9.865,10.142,10.588,10.904,11.393,12.384,13.49,14.137,14.599,15.32,15.813,16.802,18.695 +865,-0.3067,12.3906,0.12522,8.596,9.374,9.87,10.147,10.594,10.91,11.399,12.391,13.498,14.145,14.607,15.328,15.822,16.812,18.706 +866,-0.3068,12.3973,0.12523,8.6,9.379,9.876,10.153,10.6,10.916,11.405,12.397,13.505,14.153,14.615,15.337,15.831,16.822,18.717 +867,-0.3069,12.4039,0.12525,8.604,9.383,9.881,10.158,10.605,10.921,11.411,12.404,13.512,14.161,14.623,15.346,15.84,16.831,18.729 +868,-0.3069,12.4105,0.12526,8.609,9.388,9.886,10.163,10.611,10.927,11.417,12.411,13.52,14.169,14.631,15.354,15.849,16.841,18.739 +869,-0.307,12.4171,0.12527,8.613,9.393,9.891,10.168,10.616,10.933,11.423,12.417,13.527,14.176,14.639,15.363,15.857,16.85,18.75 +870,-0.3071,12.4237,0.12528,8.618,9.398,9.896,10.174,10.622,10.938,11.429,12.424,13.534,14.184,14.647,15.371,15.866,16.86,18.761 +871,-0.3072,12.4303,0.1253,8.622,9.402,9.901,10.179,10.627,10.944,11.435,12.43,13.542,14.192,14.655,15.38,15.875,16.87,18.772 +872,-0.3072,12.4369,0.12531,8.626,9.407,9.906,10.184,10.632,10.95,11.441,12.437,13.549,14.199,14.663,15.388,15.884,16.879,18.783 +873,-0.3073,12.4435,0.12532,8.63,9.412,9.911,10.189,10.638,10.955,11.447,12.444,13.556,14.207,14.671,15.397,15.893,16.888,18.794 +874,-0.3074,12.4501,0.12533,8.635,9.417,9.916,10.194,10.644,10.961,11.453,12.45,13.563,14.215,14.679,15.405,15.902,16.898,18.804 +875,-0.3074,12.4567,0.12535,8.639,9.421,9.921,10.2,10.649,10.967,11.459,12.457,13.571,14.223,14.688,15.414,15.911,16.908,18.816 +876,-0.3075,12.4633,0.12536,8.643,9.426,9.926,10.205,10.654,10.972,11.465,12.463,13.578,14.23,14.696,15.422,15.92,16.917,18.827 +877,-0.3076,12.4699,0.12537,8.648,9.431,9.931,10.21,10.66,10.978,11.471,12.47,13.585,14.238,14.704,15.431,15.928,16.927,18.837 +878,-0.3077,12.4765,0.12539,8.652,9.436,9.936,10.215,10.665,10.984,11.477,12.477,13.593,14.246,14.712,15.44,15.937,16.937,18.849 +879,-0.3077,12.4831,0.1254,8.656,9.441,9.941,10.22,10.671,10.989,11.483,12.483,13.6,14.254,14.72,15.448,15.946,16.946,18.859 +880,-0.3078,12.4896,0.12541,8.661,9.445,9.946,10.226,10.676,10.995,11.489,12.49,13.607,14.261,14.728,15.456,15.955,16.955,18.87 +881,-0.3079,12.4962,0.12543,8.665,9.45,9.951,10.231,10.682,11.001,11.495,12.496,13.615,14.269,14.736,15.465,15.964,16.965,18.882 +882,-0.308,12.5028,0.12544,8.669,9.455,9.956,10.236,10.687,11.006,11.501,12.503,13.622,14.277,14.744,15.474,15.973,16.975,18.892 +883,-0.308,12.5093,0.12545,8.673,9.459,9.961,10.241,10.693,11.012,11.507,12.509,13.629,14.284,14.752,15.482,15.981,16.984,18.903 +884,-0.3081,12.5159,0.12547,8.678,9.464,9.966,10.246,10.698,11.018,11.513,12.516,13.637,14.292,14.76,15.491,15.991,16.994,18.914 +885,-0.3082,12.5225,0.12548,8.682,9.469,9.971,10.252,10.704,11.023,11.519,12.523,13.644,14.3,14.768,15.499,15.999,17.003,18.925 +886,-0.3082,12.529,0.12549,8.686,9.474,9.976,10.257,10.709,11.029,11.525,12.529,13.651,14.308,14.776,15.507,16.008,17.013,18.936 +887,-0.3083,12.5356,0.12551,8.69,9.478,9.981,10.262,10.714,11.035,11.531,12.536,13.658,14.315,14.784,15.516,16.017,17.023,18.947 +888,-0.3084,12.5421,0.12552,8.695,9.483,9.986,10.267,10.72,11.04,11.536,12.542,13.666,14.323,14.792,15.524,16.026,17.032,18.958 +889,-0.3085,12.5487,0.12553,8.699,9.488,9.991,10.272,10.725,11.046,11.542,12.549,13.673,14.331,14.8,15.533,16.035,17.041,18.969 +890,-0.3085,12.5552,0.12555,8.703,9.492,9.996,10.277,10.731,11.051,11.548,12.555,13.68,14.338,14.808,15.542,16.044,17.051,18.98 +891,-0.3086,12.5617,0.12556,8.707,9.497,10.001,10.282,10.736,11.057,11.554,12.562,13.687,14.346,14.816,15.55,16.052,17.06,18.99 +892,-0.3087,12.5683,0.12557,8.712,9.502,10.006,10.288,10.742,11.063,11.56,12.568,13.695,14.354,14.824,15.558,16.061,17.07,19.001 +893,-0.3087,12.5748,0.12559,8.716,9.506,10.011,10.293,10.747,11.068,11.566,12.575,13.702,14.361,14.832,15.567,16.07,17.08,19.012 +894,-0.3088,12.5813,0.1256,8.72,9.511,10.016,10.298,10.752,11.074,11.572,12.581,13.709,14.369,14.84,15.575,16.079,17.089,19.023 +895,-0.3089,12.5879,0.12561,8.725,9.516,10.021,10.303,10.758,11.08,11.578,12.588,13.716,14.377,14.848,15.584,16.088,17.098,19.034 +896,-0.3089,12.5944,0.12563,8.729,9.52,10.026,10.308,10.763,11.085,11.584,12.594,13.724,14.384,14.856,15.592,16.097,17.108,19.045 +897,-0.309,12.6009,0.12564,8.733,9.525,10.031,10.313,10.769,11.091,11.59,12.601,13.731,14.392,14.864,15.601,16.105,17.118,19.056 +898,-0.3091,12.6074,0.12566,8.737,9.53,10.036,10.318,10.774,11.096,11.596,12.607,13.738,14.4,14.872,15.609,16.114,17.127,19.067 +899,-0.3091,12.6139,0.12567,8.741,9.534,10.041,10.324,10.779,11.102,11.601,12.614,13.745,14.407,14.88,15.618,16.123,17.137,19.077 +900,-0.3092,12.6204,0.12568,8.746,9.539,10.046,10.329,10.785,11.107,11.607,12.62,13.752,14.415,14.888,15.626,16.132,17.146,19.088 +901,-0.3093,12.6269,0.1257,8.75,9.544,10.051,10.334,10.79,11.113,11.613,12.627,13.76,14.423,14.896,15.635,16.141,17.156,19.099 +902,-0.3093,12.6334,0.12571,8.754,9.548,10.056,10.339,10.795,11.119,11.619,12.633,13.767,14.43,14.904,15.643,16.149,17.165,19.11 +903,-0.3094,12.6399,0.12573,8.758,9.553,10.061,10.344,10.801,11.124,11.625,12.64,13.774,14.438,14.912,15.652,16.158,17.175,19.121 +904,-0.3095,12.6464,0.12574,8.762,9.558,10.066,10.349,10.806,11.13,11.631,12.646,13.781,14.446,14.92,15.66,16.167,17.184,19.132 +905,-0.3095,12.6529,0.12575,8.767,9.562,10.071,10.354,10.812,11.135,11.637,12.653,13.789,14.453,14.927,15.668,16.176,17.193,19.143 +906,-0.3096,12.6594,0.12577,8.771,9.567,10.076,10.359,10.817,11.141,11.643,12.659,13.796,14.461,14.936,15.677,16.185,17.203,19.154 +907,-0.3097,12.6659,0.12578,8.775,9.572,10.081,10.364,10.822,11.146,11.648,12.666,13.803,14.469,14.943,15.685,16.193,17.213,19.165 +908,-0.3097,12.6723,0.1258,8.779,9.576,10.085,10.369,10.828,11.152,11.654,12.672,13.81,14.476,14.951,15.694,16.202,17.222,19.176 +909,-0.3098,12.6788,0.12581,8.783,9.581,10.09,10.375,10.833,11.157,11.66,12.679,13.817,14.484,14.959,15.702,16.211,17.231,19.186 +910,-0.3099,12.6853,0.12583,8.787,9.585,10.095,10.38,10.838,11.163,11.666,12.685,13.825,14.492,14.967,15.711,16.22,17.241,19.198 +911,-0.3099,12.6918,0.12584,8.792,9.59,10.1,10.385,10.844,11.169,11.672,12.692,13.832,14.499,14.975,15.719,16.228,17.251,19.208 +912,-0.31,12.6982,0.12585,8.796,9.595,10.105,10.39,10.849,11.174,11.678,12.698,13.839,14.507,14.983,15.727,16.237,17.26,19.219 +913,-0.3101,12.7047,0.12587,8.8,9.599,10.11,10.395,10.854,11.18,11.683,12.705,13.846,14.514,14.991,15.736,16.246,17.27,19.23 +914,-0.3101,12.7111,0.12588,8.804,9.604,10.115,10.4,10.86,11.185,11.689,12.711,13.853,14.522,14.999,15.744,16.255,17.279,19.24 +915,-0.3102,12.7176,0.1259,8.808,9.609,10.12,10.405,10.865,11.191,11.695,12.718,13.861,14.53,15.007,15.753,16.264,17.289,19.252 +916,-0.3103,12.724,0.12591,8.812,9.613,10.125,10.41,10.87,11.196,11.701,12.724,13.868,14.537,15.015,15.761,16.272,17.298,19.262 +917,-0.3103,12.7305,0.12593,8.816,9.618,10.129,10.415,10.876,11.202,11.707,12.731,13.875,14.545,15.023,15.77,16.281,17.307,19.273 +918,-0.3104,12.7369,0.12594,8.821,9.622,10.134,10.42,10.881,11.207,11.713,12.737,13.882,14.552,15.031,15.778,16.29,17.317,19.284 +919,-0.3105,12.7434,0.12596,8.825,9.627,10.139,10.425,10.886,11.213,11.718,12.743,13.889,14.56,15.039,15.787,16.299,17.327,19.295 +920,-0.3105,12.7498,0.12597,8.829,9.632,10.144,10.43,10.892,11.218,11.724,12.75,13.896,14.568,15.046,15.795,16.307,17.336,19.306 +921,-0.3106,12.7563,0.12599,8.833,9.636,10.149,10.435,10.897,11.224,11.73,12.756,13.904,14.575,15.055,15.803,16.316,17.345,19.317 +922,-0.3107,12.7627,0.126,8.837,9.641,10.154,10.44,10.902,11.229,11.736,12.763,13.911,14.583,15.062,15.812,16.325,17.355,19.328 +923,-0.3107,12.7691,0.12602,8.841,9.645,10.159,10.445,10.907,11.235,11.742,12.769,13.918,14.59,15.07,15.82,16.334,17.364,19.339 +924,-0.3108,12.7755,0.12603,8.845,9.65,10.164,10.45,10.913,11.24,11.747,12.776,13.925,14.598,15.078,15.828,16.342,17.374,19.349 +925,-0.3109,12.782,0.12605,8.849,9.654,10.168,10.455,10.918,11.246,11.753,12.782,13.932,14.606,15.086,15.837,16.351,17.383,19.361 +926,-0.3109,12.7884,0.12606,8.854,9.659,10.173,10.46,10.923,11.251,11.759,12.788,13.939,14.613,15.094,15.845,16.36,17.393,19.371 +927,-0.311,12.7948,0.12608,8.858,9.663,10.178,10.465,10.929,11.257,11.765,12.795,13.946,14.621,15.102,15.854,16.369,17.402,19.382 +928,-0.311,12.8012,0.12609,8.862,9.668,10.183,10.47,10.934,11.262,11.771,12.801,13.953,14.628,15.11,15.862,16.377,17.411,19.393 +929,-0.3111,12.8076,0.12611,8.866,9.673,10.188,10.475,10.939,11.267,11.776,12.808,13.961,14.636,15.118,15.871,16.386,17.421,19.404 +930,-0.3112,12.814,0.12612,8.87,9.677,10.193,10.48,10.945,11.273,11.782,12.814,13.968,14.643,15.125,15.879,16.395,17.43,19.414 +931,-0.3112,12.8204,0.12614,8.874,9.682,10.198,10.485,10.95,11.278,11.788,12.82,13.975,14.651,15.133,15.887,16.404,17.44,19.426 +932,-0.3113,12.8268,0.12615,8.878,9.686,10.202,10.49,10.955,11.284,11.794,12.827,13.982,14.658,15.141,15.896,16.412,17.449,19.436 +933,-0.3114,12.8332,0.12617,8.882,9.691,10.207,10.495,10.96,11.289,11.799,12.833,13.989,14.666,15.149,15.904,16.421,17.459,19.447 +934,-0.3114,12.8396,0.12618,8.886,9.695,10.212,10.5,10.966,11.295,11.805,12.84,13.996,14.674,15.157,15.912,16.43,17.468,19.458 +935,-0.3115,12.846,0.1262,8.89,9.7,10.217,10.505,10.971,11.3,11.811,12.846,14.003,14.681,15.165,15.921,16.438,17.478,19.469 +936,-0.3116,12.8524,0.12621,8.895,9.704,10.222,10.51,10.976,11.306,11.817,12.852,14.011,14.689,15.173,15.929,16.447,17.487,19.479 +937,-0.3116,12.8588,0.12623,8.899,9.709,10.227,10.515,10.981,11.311,11.822,12.859,14.018,14.696,15.181,15.938,16.456,17.496,19.491 +938,-0.3117,12.8651,0.12625,8.903,9.713,10.231,10.52,10.987,11.317,11.828,12.865,14.025,14.704,15.188,15.946,16.465,17.506,19.502 +939,-0.3117,12.8715,0.12626,8.907,9.718,10.236,10.525,10.992,11.322,11.834,12.872,14.032,14.711,15.196,15.954,16.473,17.515,19.512 +940,-0.3118,12.8779,0.12628,8.911,9.722,10.241,10.53,10.997,11.327,11.84,12.878,14.039,14.719,15.204,15.963,16.482,17.525,19.523 +941,-0.3119,12.8843,0.12629,8.915,9.727,10.246,10.535,11.002,11.333,11.845,12.884,14.046,14.726,15.212,15.971,16.491,17.534,19.534 +942,-0.3119,12.8906,0.12631,8.919,9.731,10.25,10.54,11.008,11.338,11.851,12.891,14.053,14.734,15.22,15.979,16.499,17.544,19.545 +943,-0.312,12.897,0.12632,8.923,9.736,10.255,10.545,11.013,11.344,11.857,12.897,14.06,14.741,15.228,15.988,16.508,17.553,19.555 +944,-0.312,12.9033,0.12634,8.927,9.74,10.26,10.55,11.018,11.349,11.862,12.903,14.067,14.749,15.235,15.996,16.517,17.562,19.566 +945,-0.3121,12.9097,0.12636,8.931,9.745,10.265,10.555,11.023,11.355,11.868,12.91,14.074,14.757,15.243,16.005,16.526,17.572,19.578 +946,-0.3122,12.9161,0.12637,8.935,9.749,10.27,10.56,11.029,11.36,11.874,12.916,14.082,14.764,15.251,16.013,16.534,17.581,19.588 +947,-0.3122,12.9224,0.12639,8.939,9.754,10.274,10.565,11.034,11.365,11.88,12.922,14.089,14.772,15.259,16.021,16.543,17.591,19.599 +948,-0.3123,12.9288,0.1264,8.943,9.758,10.279,10.57,11.039,11.371,11.885,12.929,14.096,14.779,15.267,16.029,16.552,17.6,19.61 +949,-0.3123,12.9351,0.12642,8.947,9.763,10.284,10.575,11.044,11.376,11.891,12.935,14.103,14.787,15.275,16.038,16.56,17.609,19.621 +950,-0.3124,12.9415,0.12644,8.951,9.767,10.289,10.58,11.049,11.382,11.897,12.942,14.11,14.794,15.283,16.046,16.569,17.619,19.632 +951,-0.3125,12.9478,0.12645,8.955,9.772,10.294,10.585,11.055,11.387,11.903,12.948,14.117,14.802,15.29,16.054,16.578,17.628,19.642 +952,-0.3125,12.9541,0.12647,8.959,9.776,10.298,10.59,11.06,11.392,11.908,12.954,14.124,14.809,15.298,16.063,16.586,17.638,19.653 +953,-0.3126,12.9605,0.12648,8.963,9.781,10.303,10.595,11.065,11.398,11.914,12.961,14.131,14.817,15.306,16.071,16.595,17.647,19.664 +954,-0.3126,12.9668,0.1265,8.967,9.785,10.308,10.599,11.07,11.403,11.92,12.967,14.138,14.824,15.314,16.079,16.604,17.656,19.675 +955,-0.3127,12.9732,0.12652,8.971,9.79,10.313,10.604,11.075,11.409,11.925,12.973,14.145,14.832,15.322,16.088,16.613,17.666,19.686 +956,-0.3128,12.9795,0.12653,8.975,9.794,10.317,10.609,11.081,11.414,11.931,12.98,14.152,14.839,15.33,16.096,16.621,17.675,19.696 +957,-0.3128,12.9858,0.12655,8.979,9.799,10.322,10.614,11.086,11.419,11.937,12.986,14.159,14.847,15.337,16.104,16.63,17.685,19.707 +958,-0.3129,12.9921,0.12656,8.983,9.803,10.327,10.619,11.091,11.425,11.942,12.992,14.166,14.854,15.345,16.113,16.638,17.694,19.718 +959,-0.3129,12.9985,0.12658,8.987,9.808,10.332,10.624,11.096,11.43,11.948,12.999,14.173,14.862,15.353,16.121,16.647,17.704,19.729 +960,-0.313,13.0048,0.1266,8.991,9.812,10.336,10.629,11.101,11.436,11.954,13.005,14.181,14.869,15.361,16.13,16.656,17.713,19.74 +961,-0.3131,13.0111,0.12661,8.995,9.816,10.341,10.634,11.107,11.441,11.96,13.011,14.188,14.877,15.369,16.138,16.664,17.722,19.75 +962,-0.3131,13.0174,0.12663,8.999,9.821,10.346,10.639,11.112,11.446,11.965,13.017,14.195,14.884,15.376,16.146,16.673,17.732,19.761 +963,-0.3132,13.0237,0.12665,9.003,9.825,10.351,10.644,11.117,11.452,11.971,13.024,14.202,14.892,15.384,16.154,16.682,17.741,19.773 +964,-0.3132,13.03,0.12666,9.007,9.83,10.355,10.649,11.122,11.457,11.977,13.03,14.209,14.899,15.392,16.163,16.69,17.75,19.783 +965,-0.3133,13.0363,0.12668,9.011,9.834,10.36,10.653,11.127,11.462,11.982,13.036,14.216,14.907,15.4,16.171,16.699,17.76,19.794 +966,-0.3134,13.0427,0.1267,9.015,9.839,10.365,10.658,11.132,11.468,11.988,13.043,14.223,14.914,15.408,16.18,16.708,17.77,19.805 +967,-0.3134,13.049,0.12671,9.019,9.843,10.37,10.663,11.138,11.473,11.994,13.049,14.23,14.922,15.416,16.188,16.716,17.779,19.816 +968,-0.3135,13.0553,0.12673,9.023,9.847,10.374,10.668,11.143,11.479,11.999,13.055,14.237,14.929,15.423,16.196,16.725,17.788,19.827 +969,-0.3135,13.0616,0.12675,9.027,9.852,10.379,10.673,11.148,11.484,12.005,13.062,14.244,14.937,15.431,16.204,16.734,17.798,19.838 +970,-0.3136,13.0679,0.12676,9.031,9.856,10.384,10.678,11.153,11.489,12.011,13.068,14.251,14.944,15.439,16.213,16.743,17.807,19.848 +971,-0.3136,13.0742,0.12678,9.035,9.861,10.388,10.683,11.158,11.495,12.016,13.074,14.258,14.952,15.447,16.221,16.751,17.816,19.859 +972,-0.3137,13.0804,0.1268,9.039,9.865,10.393,10.688,11.163,11.5,12.022,13.08,14.265,14.959,15.455,16.229,16.76,17.826,19.87 +973,-0.3138,13.0867,0.12681,9.043,9.87,10.398,10.693,11.168,11.505,12.027,13.087,14.272,14.966,15.462,16.237,16.768,17.835,19.881 +974,-0.3138,13.093,0.12683,9.047,9.874,10.402,10.697,11.174,11.511,12.033,13.093,14.279,14.974,15.47,16.246,16.777,17.844,19.891 +975,-0.3139,13.0993,0.12685,9.051,9.878,10.407,10.702,11.179,11.516,12.039,13.099,14.286,14.982,15.478,16.254,16.786,17.854,19.903 +976,-0.3139,13.1056,0.12687,9.055,9.883,10.412,10.707,11.184,11.521,12.044,13.106,14.293,14.989,15.486,16.263,16.795,17.864,19.914 +977,-0.314,13.1119,0.12688,9.059,9.887,10.417,10.712,11.189,11.527,12.05,13.112,14.3,14.996,15.494,16.271,16.803,17.873,19.924 +978,-0.314,13.1182,0.1269,9.063,9.892,10.421,10.717,11.194,11.532,12.056,13.118,14.307,15.004,15.501,16.279,16.812,17.882,19.935 +979,-0.3141,13.1245,0.12692,9.067,9.896,10.426,10.722,11.199,11.537,12.061,13.125,14.314,15.012,15.509,16.288,16.821,17.892,19.946 +980,-0.3142,13.1307,0.12693,9.071,9.9,10.431,10.727,11.204,11.543,12.067,13.131,14.321,15.019,15.517,16.296,16.829,17.901,19.957 +981,-0.3142,13.137,0.12695,9.075,9.905,10.435,10.731,11.209,11.548,12.073,13.137,14.328,15.026,15.525,16.304,16.838,17.91,19.968 +982,-0.3143,13.1433,0.12697,9.079,9.909,10.44,10.736,11.215,11.553,12.078,13.143,14.335,15.034,15.533,16.312,16.847,17.92,19.979 +983,-0.3143,13.1496,0.12699,9.082,9.913,10.445,10.741,11.22,11.559,12.084,13.15,14.342,15.041,15.54,16.321,16.855,17.929,19.99 +984,-0.3144,13.1558,0.127,9.087,9.918,10.449,10.746,11.225,11.564,12.089,13.156,14.349,15.049,15.548,16.329,16.864,17.938,20 +985,-0.3144,13.1621,0.12702,9.09,9.922,10.454,10.751,11.23,11.569,12.095,13.162,14.356,15.056,15.556,16.337,16.873,17.948,20.011 +986,-0.3145,13.1684,0.12704,9.094,9.927,10.459,10.756,11.235,11.575,12.101,13.168,14.363,15.064,15.564,16.346,16.881,17.958,20.022 +987,-0.3145,13.1746,0.12706,9.098,9.931,10.463,10.76,11.24,11.58,12.106,13.175,14.37,15.071,15.571,16.354,16.89,17.967,20.033 +988,-0.3146,13.1809,0.12707,9.102,9.935,10.468,10.765,11.245,11.585,12.112,13.181,14.377,15.079,15.579,16.362,16.898,17.976,20.043 +989,-0.3147,13.1872,0.12709,9.106,9.94,10.473,10.77,11.25,11.59,12.118,13.187,14.384,15.086,15.587,16.371,16.907,17.986,20.055 +990,-0.3147,13.1934,0.12711,9.11,9.944,10.477,10.775,11.255,11.596,12.123,13.193,14.391,15.094,15.595,16.379,16.916,17.995,20.065 +991,-0.3148,13.1997,0.12713,9.114,9.948,10.482,10.78,11.261,11.601,12.129,13.2,14.398,15.101,15.603,16.387,16.925,18.005,20.077 +992,-0.3148,13.2059,0.12714,9.118,9.953,10.487,10.785,11.266,11.606,12.134,13.206,14.405,15.108,15.61,16.395,16.933,18.014,20.087 +993,-0.3149,13.2122,0.12716,9.122,9.957,10.491,10.79,11.271,11.612,12.14,13.212,14.412,15.116,15.618,16.404,16.942,18.023,20.098 +994,-0.3149,13.2185,0.12718,9.126,9.962,10.496,10.794,11.276,11.617,12.146,13.219,14.419,15.123,15.626,16.412,16.951,18.033,20.109 +995,-0.315,13.2247,0.1272,9.129,9.966,10.501,10.799,11.281,11.622,12.151,13.225,14.426,15.131,15.634,16.42,16.959,18.042,20.12 +996,-0.315,13.231,0.12721,9.134,9.97,10.505,10.804,11.286,11.628,12.157,13.231,14.433,15.138,15.641,16.429,16.968,18.051,20.13 +997,-0.3151,13.2372,0.12723,9.137,9.975,10.51,10.809,11.291,11.633,12.162,13.237,14.44,15.146,15.649,16.437,16.976,18.061,20.141 +998,-0.3152,13.2435,0.12725,9.141,9.979,10.515,10.814,11.296,11.638,12.168,13.244,14.447,15.153,15.657,16.445,16.985,18.07,20.153 +999,-0.3152,13.2497,0.12727,9.145,9.983,10.519,10.818,11.301,11.643,12.174,13.25,14.454,15.161,15.665,16.454,16.994,18.08,20.163 +1000,-0.3153,13.256,0.12729,9.149,9.988,10.524,10.823,11.307,11.649,12.179,13.256,14.461,15.168,15.673,16.462,17.003,18.089,20.175 +1001,-0.3153,13.2622,0.1273,9.153,9.992,10.529,10.828,11.312,11.654,12.185,13.262,14.468,15.175,15.68,16.47,17.011,18.098,20.185 +1002,-0.3154,13.2684,0.12732,9.157,9.996,10.533,10.833,11.317,11.659,12.19,13.268,14.475,15.183,15.688,16.478,17.02,18.108,20.196 +1003,-0.3154,13.2747,0.12734,9.161,10.001,10.538,10.838,11.322,11.665,12.196,13.275,14.482,15.19,15.696,16.487,17.029,18.117,20.207 +1004,-0.3155,13.2809,0.12736,9.165,10.005,10.542,10.842,11.327,11.67,12.202,13.281,14.489,15.198,15.704,16.495,17.037,18.127,20.218 +1005,-0.3155,13.2872,0.12738,9.168,10.009,10.547,10.847,11.332,11.675,12.207,13.287,14.496,15.205,15.712,16.503,17.046,18.136,20.229 +1006,-0.3156,13.2934,0.12739,9.172,10.014,10.552,10.852,11.337,11.68,12.213,13.293,14.503,15.213,15.719,16.511,17.054,18.145,20.239 +1007,-0.3156,13.2996,0.12741,9.176,10.018,10.556,10.857,11.342,11.686,12.218,13.3,14.51,15.22,15.727,16.52,17.063,18.155,20.25 +1008,-0.3157,13.3059,0.12743,9.18,10.022,10.561,10.862,11.347,11.691,12.224,13.306,14.517,15.228,15.735,16.528,17.072,18.164,20.261 +1009,-0.3158,13.3121,0.12745,9.184,10.027,10.566,10.866,11.352,11.696,12.23,13.312,14.524,15.235,15.743,16.537,17.081,18.174,20.272 +1010,-0.3158,13.3183,0.12747,9.188,10.031,10.57,10.871,11.357,11.701,12.235,13.318,14.531,15.243,15.75,16.545,17.089,18.183,20.283 +1011,-0.3159,13.3246,0.12749,9.192,10.035,10.575,10.876,11.362,11.707,12.241,13.325,14.538,15.25,15.758,16.553,17.098,18.193,20.294 +1012,-0.3159,13.3308,0.1275,9.196,10.04,10.58,10.881,11.367,11.712,12.246,13.331,14.545,15.257,15.766,16.561,17.106,18.202,20.305 +1013,-0.316,13.337,0.12752,9.199,10.044,10.584,10.886,11.373,11.717,12.252,13.337,14.552,15.265,15.774,16.57,17.115,18.211,20.316 +1014,-0.316,13.3433,0.12754,9.203,10.048,10.589,10.89,11.378,11.723,12.258,13.343,14.559,15.272,15.781,16.578,17.124,18.221,20.327 +1015,-0.3161,13.3495,0.12756,9.207,10.053,10.593,10.895,11.383,11.728,12.263,13.35,14.566,15.28,15.789,16.586,17.133,18.23,20.338 +1016,-0.3161,13.3557,0.12758,9.211,10.057,10.598,10.9,11.388,11.733,12.269,13.356,14.573,15.287,15.797,16.595,17.141,18.24,20.349 +1017,-0.3162,13.3619,0.1276,9.215,10.061,10.602,10.905,11.393,11.738,12.274,13.362,14.58,15.295,15.805,16.603,17.15,18.249,20.36 +1018,-0.3162,13.3682,0.12762,9.219,10.065,10.607,10.91,11.398,11.744,12.28,13.368,14.587,15.302,15.813,16.611,17.159,18.259,20.371 +1019,-0.3163,13.3744,0.12763,9.223,10.07,10.612,10.914,11.403,11.749,12.285,13.374,14.594,15.309,15.82,16.619,17.167,18.268,20.381 +1020,-0.3163,13.3806,0.12765,9.226,10.074,10.616,10.919,11.408,11.754,12.291,13.381,14.601,15.317,15.828,16.628,17.176,18.277,20.392 +1021,-0.3164,13.3868,0.12767,9.23,10.078,10.621,10.924,11.413,11.759,12.296,13.387,14.608,15.324,15.836,16.636,17.184,18.287,20.403 +1022,-0.3164,13.3931,0.12769,9.234,10.083,10.626,10.929,11.418,11.765,12.302,13.393,14.615,15.332,15.844,16.644,17.193,18.296,20.414 +1023,-0.3165,13.3993,0.12771,9.238,10.087,10.63,10.933,11.423,11.77,12.308,13.399,14.622,15.339,15.851,16.653,17.202,18.306,20.425 +1024,-0.3165,13.4055,0.12773,9.242,10.091,10.635,10.938,11.428,11.775,12.313,13.406,14.629,15.347,15.859,16.661,17.211,18.315,20.436 +1025,-0.3166,13.4117,0.12775,9.246,10.096,10.639,10.943,11.433,11.78,12.319,13.412,14.636,15.354,15.867,16.669,17.219,18.325,20.447 +1026,-0.3167,13.4179,0.12777,9.249,10.1,10.644,10.948,11.438,11.785,12.324,13.418,14.643,15.362,15.875,16.678,17.228,18.334,20.458 +1027,-0.3167,13.4242,0.12779,9.253,10.104,10.649,10.952,11.443,11.791,12.33,13.424,14.65,15.369,15.883,16.686,17.237,18.344,20.469 +1028,-0.3168,13.4304,0.12781,9.257,10.108,10.653,10.957,11.448,11.796,12.335,13.43,14.657,15.377,15.89,16.694,17.245,18.353,20.48 +1029,-0.3168,13.4366,0.12782,9.261,10.113,10.658,10.962,11.453,11.801,12.341,13.437,14.664,15.384,15.898,16.702,17.254,18.362,20.491 +1030,-0.3169,13.4428,0.12784,9.265,10.117,10.662,10.967,11.458,11.807,12.347,13.443,14.671,15.391,15.906,16.711,17.263,18.372,20.502 +1031,-0.3169,13.449,0.12786,9.269,10.121,10.667,10.972,11.463,11.812,12.352,13.449,14.678,15.399,15.914,16.719,17.271,18.381,20.513 +1032,-0.317,13.4552,0.12788,9.272,10.126,10.672,10.976,11.468,11.817,12.358,13.455,14.685,15.406,15.921,16.727,17.28,18.391,20.524 +1033,-0.317,13.4614,0.1279,9.276,10.13,10.676,10.981,11.473,11.822,12.363,13.461,14.692,15.414,15.929,16.736,17.289,18.4,20.535 +1034,-0.3171,13.4677,0.12792,9.28,10.134,10.681,10.986,11.479,11.827,12.369,13.468,14.699,15.421,15.937,16.744,17.297,18.41,20.546 +1035,-0.3171,13.4739,0.12794,9.284,10.139,10.685,10.991,11.484,11.833,12.374,13.474,14.706,15.429,15.945,16.752,17.306,18.419,20.557 +1036,-0.3172,13.4801,0.12796,9.288,10.143,10.69,10.995,11.489,11.838,12.38,13.48,14.713,15.436,15.953,16.761,17.315,18.429,20.568 +1037,-0.3172,13.4863,0.12798,9.291,10.147,10.694,11,11.494,11.843,12.385,13.486,14.72,15.444,15.96,16.769,17.323,18.438,20.579 +1038,-0.3173,13.4925,0.128,9.295,10.151,10.699,11.005,11.499,11.848,12.391,13.493,14.727,15.451,15.968,16.777,17.332,18.447,20.59 +1039,-0.3173,13.4987,0.12802,9.299,10.156,10.703,11.009,11.504,11.854,12.396,13.499,14.734,15.458,15.976,16.786,17.341,18.457,20.601 +1040,-0.3174,13.5049,0.12804,9.303,10.16,10.708,11.014,11.509,11.859,12.402,13.505,14.741,15.466,15.984,16.794,17.35,18.466,20.612 +1041,-0.3174,13.5111,0.12806,9.307,10.164,10.713,11.019,11.514,11.864,12.407,13.511,14.748,15.473,15.991,16.802,17.358,18.476,20.623 +1042,-0.3175,13.5173,0.12808,9.31,10.168,10.717,11.024,11.519,11.869,12.413,13.517,14.755,15.481,15.999,16.811,17.367,18.485,20.634 +1043,-0.3175,13.5235,0.1281,9.314,10.173,10.722,11.028,11.524,11.874,12.419,13.524,14.762,15.488,16.007,16.819,17.376,18.495,20.645 +1044,-0.3176,13.5297,0.12812,9.318,10.177,10.726,11.033,11.529,11.88,12.424,13.53,14.769,15.496,16.015,16.827,17.384,18.504,20.656 +1045,-0.3176,13.5359,0.12814,9.322,10.181,10.731,11.038,11.534,11.885,12.43,13.536,14.776,15.503,16.023,16.836,17.393,18.514,20.667 +1046,-0.3177,13.5421,0.12816,9.326,10.185,10.735,11.043,11.539,11.89,12.435,13.542,14.783,15.51,16.03,16.844,17.402,18.523,20.678 +1047,-0.3177,13.5483,0.12818,9.329,10.19,10.74,11.047,11.544,11.895,12.441,13.548,14.79,15.518,16.038,16.852,17.411,18.533,20.689 +1048,-0.3178,13.5545,0.12819,9.333,10.194,10.745,11.052,11.549,11.901,12.446,13.555,14.797,15.525,16.046,16.86,17.419,18.542,20.699 +1049,-0.3178,13.5607,0.12821,9.337,10.198,10.749,11.057,11.554,11.906,12.452,13.561,14.803,15.533,16.054,16.869,17.428,18.551,20.71 +1050,-0.3179,13.5669,0.12823,9.341,10.203,10.754,11.062,11.559,11.911,12.457,13.567,14.81,15.54,16.061,16.877,17.436,18.561,20.721 +1051,-0.3179,13.5731,0.12825,9.345,10.207,10.758,11.066,11.564,11.916,12.463,13.573,14.817,15.548,16.069,16.885,17.445,18.57,20.732 +1052,-0.318,13.5793,0.12827,9.349,10.211,10.763,11.071,11.569,11.921,12.468,13.579,14.824,15.555,16.077,16.894,17.454,18.58,20.744 +1053,-0.318,13.5855,0.12829,9.352,10.215,10.767,11.076,11.574,11.927,12.474,13.586,14.831,15.562,16.085,16.902,17.462,18.589,20.754 +1054,-0.3181,13.5917,0.12832,9.356,10.219,10.772,11.08,11.579,11.932,12.479,13.592,14.838,15.57,16.093,16.911,17.471,18.599,20.766 +1055,-0.3181,13.5979,0.12834,9.36,10.224,10.776,11.085,11.584,11.937,12.485,13.598,14.845,15.577,16.1,16.919,17.48,18.609,20.777 +1056,-0.3182,13.6041,0.12836,9.363,10.228,10.781,11.09,11.589,11.942,12.49,13.604,14.852,15.585,16.108,16.927,17.489,18.618,20.788 +1057,-0.3182,13.6103,0.12838,9.367,10.232,10.785,11.095,11.594,11.947,12.496,13.61,14.859,15.592,16.116,16.936,17.498,18.628,20.799 +1058,-0.3183,13.6165,0.1284,9.371,10.236,10.79,11.099,11.599,11.953,12.502,13.617,14.866,15.6,16.124,16.944,17.506,18.637,20.81 +1059,-0.3183,13.6227,0.12842,9.375,10.241,10.795,11.104,11.604,11.958,12.507,13.623,14.873,15.607,16.132,16.952,17.515,18.647,20.821 +1060,-0.3184,13.6289,0.12844,9.379,10.245,10.799,11.109,11.609,11.963,12.513,13.629,14.88,15.615,16.139,16.961,17.524,18.656,20.833 +1061,-0.3184,13.6351,0.12846,9.382,10.249,10.804,11.113,11.614,11.968,12.518,13.635,14.887,15.622,16.147,16.969,17.532,18.666,20.844 +1062,-0.3185,13.6413,0.12848,9.386,10.253,10.808,11.118,11.619,11.973,12.524,13.641,14.894,15.63,16.155,16.977,17.541,18.675,20.855 +1063,-0.3185,13.6475,0.1285,9.39,10.257,10.813,11.123,11.624,11.979,12.529,13.648,14.901,15.637,16.163,16.986,17.55,18.685,20.866 +1064,-0.3186,13.6537,0.12852,9.394,10.262,10.817,11.128,11.629,11.984,12.535,13.654,14.908,15.645,16.171,16.994,17.559,18.694,20.877 +1065,-0.3186,13.6599,0.12854,9.397,10.266,10.822,11.132,11.634,11.989,12.54,13.66,14.915,15.652,16.178,17.002,17.567,18.704,20.888 +1066,-0.3187,13.6661,0.12856,9.401,10.27,10.826,11.137,11.639,11.994,12.546,13.666,14.922,15.659,16.186,17.011,17.576,18.713,20.899 +1067,-0.3187,13.6723,0.12858,9.405,10.274,10.831,11.142,11.644,11.999,12.551,13.672,14.929,15.667,16.194,17.019,17.585,18.723,20.91 +1068,-0.3188,13.6785,0.1286,9.409,10.279,10.835,11.146,11.649,12.005,12.557,13.679,14.936,15.674,16.202,17.027,17.593,18.732,20.921 +1069,-0.3188,13.6847,0.12862,9.413,10.283,10.84,11.151,11.654,12.01,12.562,13.685,14.943,15.682,16.21,17.036,17.602,18.742,20.932 +1070,-0.3189,13.6909,0.12864,9.416,10.287,10.845,11.156,11.659,12.015,12.568,13.691,14.95,15.689,16.217,17.044,17.611,18.751,20.943 +1071,-0.3189,13.6971,0.12866,9.42,10.291,10.849,11.161,11.664,12.02,12.573,13.697,14.957,15.697,16.225,17.052,17.62,18.761,20.954 +1072,-0.319,13.7033,0.12868,9.424,10.296,10.854,11.165,11.669,12.025,12.579,13.703,14.964,15.704,16.233,17.061,17.628,18.77,20.965 +1073,-0.319,13.7095,0.12871,9.427,10.3,10.858,11.17,11.674,12.031,12.584,13.71,14.971,15.712,16.241,17.069,17.637,18.78,20.977 +1074,-0.3191,13.7157,0.12873,9.431,10.304,10.863,11.175,11.679,12.036,12.59,13.716,14.978,15.719,16.249,17.078,17.646,18.79,20.988 +1075,-0.3191,13.7218,0.12875,9.435,10.308,10.867,11.179,11.684,12.041,12.595,13.722,14.985,15.727,16.256,17.086,17.655,18.799,20.999 +1076,-0.3192,13.728,0.12877,9.439,10.312,10.872,11.184,11.689,12.046,12.601,13.728,14.992,15.734,16.264,17.094,17.664,18.808,21.01 +1077,-0.3192,13.7342,0.12879,9.443,10.317,10.876,11.189,11.694,12.051,12.606,13.734,14.999,15.741,16.272,17.103,17.672,18.818,21.021 +1078,-0.3193,13.7404,0.12881,9.446,10.321,10.881,11.193,11.699,12.057,12.612,13.74,15.006,15.749,16.28,17.111,17.681,18.827,21.032 +1079,-0.3193,13.7466,0.12883,9.45,10.325,10.885,11.198,11.704,12.062,12.617,13.747,15.013,15.756,16.288,17.119,17.69,18.837,21.043 +1080,-0.3194,13.7528,0.12885,9.454,10.329,10.89,11.203,11.709,12.067,12.623,13.753,15.02,15.764,16.295,17.128,17.698,18.847,21.054 +1081,-0.3194,13.759,0.12887,9.458,10.334,10.894,11.208,11.714,12.072,12.629,13.759,15.027,15.771,16.303,17.136,17.707,18.856,21.065 +1082,-0.3195,13.7652,0.1289,9.461,10.338,10.899,11.212,11.718,12.077,12.634,13.765,15.034,15.779,16.311,17.145,17.716,18.866,21.077 +1083,-0.3195,13.7714,0.12892,9.465,10.342,10.903,11.217,11.723,12.082,12.639,13.771,15.041,15.786,16.319,17.153,17.725,18.876,21.088 +1084,-0.3196,13.7776,0.12894,9.469,10.346,10.908,11.222,11.728,12.088,12.645,13.778,15.048,15.794,16.327,17.161,17.734,18.885,21.1 +1085,-0.3196,13.7838,0.12896,9.472,10.35,10.912,11.226,11.733,12.093,12.651,13.784,15.055,15.801,16.335,17.17,17.742,18.895,21.111 +1086,-0.3197,13.7899,0.12898,9.476,10.354,10.917,11.231,11.738,12.098,12.656,13.79,15.062,15.809,16.342,17.178,17.751,18.904,21.122 +1087,-0.3197,13.7961,0.129,9.48,10.359,10.921,11.236,11.743,12.103,12.661,13.796,15.069,15.816,16.35,17.186,17.76,18.913,21.133 +1088,-0.3198,13.8023,0.12902,9.484,10.363,10.926,11.24,11.748,12.108,12.667,13.802,15.076,15.824,16.358,17.195,17.769,18.923,21.144 +1089,-0.3198,13.8085,0.12905,9.487,10.367,10.93,11.245,11.753,12.113,12.672,13.809,15.083,15.831,16.366,17.203,17.778,18.933,21.156 +1090,-0.3198,13.8147,0.12907,9.491,10.371,10.935,11.25,11.758,12.119,12.678,13.815,15.09,15.839,16.374,17.212,17.786,18.942,21.167 +1091,-0.3199,13.8209,0.12909,9.495,10.375,10.939,11.254,11.763,12.124,12.684,13.821,15.097,15.846,16.382,17.22,17.795,18.952,21.178 +1092,-0.3199,13.8271,0.12911,9.499,10.38,10.944,11.259,11.768,12.129,12.689,13.827,15.104,15.854,16.389,17.228,17.804,18.962,21.189 +1093,-0.32,13.8333,0.12913,9.502,10.384,10.948,11.264,11.773,12.134,12.695,13.833,15.111,15.861,16.397,17.237,17.813,18.971,21.2 +1094,-0.32,13.8395,0.12915,9.506,10.388,10.953,11.268,11.778,12.139,12.7,13.84,15.118,15.868,16.405,17.245,17.821,18.981,21.211 +1095,-0.3201,13.8456,0.12918,9.51,10.392,10.957,11.273,11.783,12.144,12.705,13.846,15.125,15.876,16.413,17.254,17.83,18.99,21.223 +1096,-0.3201,13.8518,0.1292,9.513,10.396,10.962,11.278,11.788,12.15,12.711,13.852,15.132,15.883,16.421,17.262,17.839,19,21.234 +1097,-0.3202,13.858,0.12922,9.517,10.4,10.966,11.282,11.793,12.155,12.716,13.858,15.139,15.891,16.428,17.27,17.848,19.01,21.245 +1098,-0.3202,13.8642,0.12924,9.521,10.405,10.971,11.287,11.798,12.16,12.722,13.864,15.146,15.898,16.436,17.279,17.856,19.019,21.256 +1099,-0.3203,13.8704,0.12926,9.525,10.409,10.975,11.292,11.803,12.165,12.728,13.87,15.153,15.906,16.444,17.287,17.865,19.029,21.267 +1100,-0.3203,13.8766,0.12929,9.528,10.413,10.98,11.296,11.808,12.17,12.733,13.877,15.16,15.913,16.452,17.296,17.874,19.039,21.279 +1101,-0.3204,13.8828,0.12931,9.532,10.417,10.984,11.301,11.813,12.176,12.738,13.883,15.167,15.921,16.46,17.304,17.883,19.048,21.29 +1102,-0.3204,13.8889,0.12933,9.536,10.421,10.989,11.306,11.818,12.181,12.744,13.889,15.174,15.928,16.468,17.312,17.892,19.058,21.301 +1103,-0.3205,13.8951,0.12935,9.539,10.426,10.993,11.31,11.823,12.186,12.749,13.895,15.181,15.936,16.475,17.321,17.9,19.067,21.312 +1104,-0.3205,13.9013,0.12937,9.543,10.43,10.998,11.315,11.828,12.191,12.755,13.901,15.188,15.943,16.483,17.329,17.909,19.077,21.323 +1105,-0.3206,13.9075,0.1294,9.547,10.434,11.002,11.32,11.833,12.196,12.76,13.908,15.195,15.951,16.491,17.338,17.918,19.087,21.335 +1106,-0.3206,13.9137,0.12942,9.55,10.438,11.007,11.324,11.838,12.201,12.766,13.914,15.202,15.958,16.499,17.346,17.927,19.096,21.346 +1107,-0.3207,13.9199,0.12944,9.554,10.442,11.011,11.329,11.843,12.207,12.771,13.92,15.209,15.966,16.507,17.354,17.936,19.106,21.358 +1108,-0.3207,13.9261,0.12946,9.558,10.446,11.016,11.334,11.848,12.212,12.777,13.926,15.216,15.973,16.515,17.363,17.945,19.115,21.369 +1109,-0.3208,13.9322,0.12948,9.562,10.451,11.02,11.338,11.852,12.217,12.782,13.932,15.223,15.981,16.522,17.371,17.953,19.125,21.38 +1110,-0.3208,13.9384,0.12951,9.565,10.455,11.024,11.343,11.857,12.222,12.788,13.938,15.23,15.988,16.53,17.38,17.962,19.135,21.391 +1111,-0.3208,13.9446,0.12953,9.569,10.459,11.029,11.348,11.862,12.227,12.793,13.945,15.237,15.996,16.538,17.388,17.971,19.144,21.402 +1112,-0.3209,13.9508,0.12955,9.573,10.463,11.034,11.352,11.867,12.232,12.799,13.951,15.244,16.003,16.546,17.396,17.98,19.154,21.414 +1113,-0.3209,13.957,0.12957,9.576,10.467,11.038,11.357,11.872,12.237,12.804,13.957,15.251,16.011,16.554,17.405,17.988,19.163,21.425 +1114,-0.321,13.9632,0.1296,9.58,10.471,11.042,11.361,11.877,12.243,12.81,13.963,15.258,16.018,16.562,17.413,17.998,19.173,21.437 +1115,-0.321,13.9693,0.12962,9.584,10.475,11.047,11.366,11.882,12.248,12.815,13.969,15.265,16.026,16.57,17.422,18.006,19.183,21.448 +1116,-0.3211,13.9755,0.12964,9.587,10.48,11.051,11.371,11.887,12.253,12.821,13.976,15.272,16.033,16.577,17.43,18.015,19.192,21.459 +1117,-0.3211,13.9817,0.12967,9.591,10.484,11.056,11.375,11.892,12.258,12.826,13.982,15.279,16.041,16.585,17.439,18.024,19.202,21.471 +1118,-0.3212,13.9879,0.12969,9.595,10.488,11.06,11.38,11.897,12.263,12.832,13.988,15.286,16.048,16.593,17.447,18.033,19.212,21.482 +1119,-0.3212,13.9941,0.12971,9.598,10.492,11.065,11.385,11.902,12.268,12.837,13.994,15.293,16.056,16.601,17.455,18.042,19.221,21.493 +1120,-0.3213,14.0003,0.12973,9.602,10.496,11.069,11.389,11.907,12.274,12.843,14,15.3,16.063,16.609,17.464,18.05,19.231,21.504 +1121,-0.3213,14.0064,0.12976,9.605,10.5,11.074,11.394,11.912,12.279,12.848,14.006,15.307,16.071,16.617,17.472,18.059,19.241,21.516 +1122,-0.3214,14.0126,0.12978,9.609,10.505,11.078,11.399,11.917,12.284,12.854,14.013,15.314,16.078,16.625,17.481,18.068,19.251,21.527 +1123,-0.3214,14.0188,0.1298,9.613,10.509,11.083,11.403,11.922,12.289,12.859,14.019,15.321,16.086,16.632,17.489,18.077,19.26,21.538 +1124,-0.3215,14.025,0.12982,9.617,10.513,11.087,11.408,11.927,12.294,12.865,14.025,15.328,16.093,16.64,17.498,18.086,19.27,21.549 +1125,-0.3215,14.0312,0.12985,9.62,10.517,11.091,11.413,11.931,12.299,12.87,14.031,15.335,16.101,16.648,17.506,18.095,19.28,21.561 +1126,-0.3216,14.0373,0.12987,9.624,10.521,11.096,11.417,11.936,12.304,12.876,14.037,15.342,16.108,16.656,17.514,18.103,19.289,21.572 +1127,-0.3216,14.0435,0.12989,9.628,10.525,11.1,11.422,11.941,12.309,12.881,14.044,15.349,16.116,16.664,17.523,18.112,19.299,21.583 +1128,-0.3216,14.0497,0.12992,9.631,10.529,11.105,11.426,11.946,12.315,12.887,14.05,15.356,16.123,16.672,17.531,18.121,19.309,21.595 +1129,-0.3217,14.0559,0.12994,9.635,10.534,11.109,11.431,11.951,12.32,12.892,14.056,15.363,16.131,16.68,17.54,18.13,19.318,21.607 +1130,-0.3217,14.0621,0.12996,9.639,10.538,11.114,11.436,11.956,12.325,12.898,14.062,15.37,16.138,16.688,17.548,18.139,19.328,21.618 +1131,-0.3218,14.0682,0.12999,9.642,10.542,11.118,11.44,11.961,12.33,12.903,14.068,15.377,16.146,16.695,17.557,18.148,19.338,21.63 +1132,-0.3218,14.0744,0.13001,9.646,10.546,11.123,11.445,11.966,12.335,12.908,14.074,15.384,16.153,16.703,17.565,18.157,19.347,21.641 +1133,-0.3219,14.0806,0.13003,9.65,10.55,11.127,11.45,11.971,12.34,12.914,14.081,15.391,16.161,16.711,17.574,18.165,19.357,21.652 +1134,-0.3219,14.0868,0.13006,9.653,10.554,11.131,11.454,11.976,12.345,12.919,14.087,15.398,16.168,16.719,17.582,18.175,19.367,21.664 +1135,-0.322,14.093,0.13008,9.657,10.558,11.136,11.459,11.981,12.351,12.925,14.093,15.405,16.176,16.727,17.591,18.183,19.377,21.675 +1136,-0.322,14.0991,0.1301,9.661,10.562,11.14,11.463,11.986,12.356,12.93,14.099,15.412,16.183,16.735,17.599,18.192,19.386,21.686 +1137,-0.3221,14.1053,0.13013,9.664,10.566,11.145,11.468,11.99,12.361,12.936,14.105,15.419,16.191,16.743,17.608,18.201,19.396,21.698 +1138,-0.3221,14.1115,0.13015,9.668,10.571,11.149,11.473,11.995,12.366,12.941,14.112,15.426,16.198,16.751,17.616,18.21,19.406,21.709 +1139,-0.3222,14.1177,0.13017,9.672,10.575,11.154,11.477,12,12.371,12.947,14.118,15.433,16.206,16.758,17.624,18.219,19.415,21.72 +1140,-0.3222,14.1238,0.1302,9.675,10.579,11.158,11.482,12.005,12.376,12.952,14.124,15.44,16.213,16.766,17.633,18.228,19.425,21.732 +1141,-0.3222,14.13,0.13022,9.679,10.583,11.163,11.487,12.01,12.381,12.958,14.13,15.447,16.221,16.774,17.641,18.236,19.435,21.743 +1142,-0.3223,14.1362,0.13024,9.682,10.587,11.167,11.491,12.015,12.387,12.963,14.136,15.454,16.228,16.782,17.65,18.245,19.444,21.754 +1143,-0.3223,14.1424,0.13027,9.686,10.591,11.171,11.496,12.02,12.392,12.969,14.142,15.461,16.236,16.79,17.658,18.254,19.454,21.766 +1144,-0.3224,14.1485,0.13029,9.69,10.595,11.176,11.5,12.025,12.397,12.974,14.149,15.468,16.243,16.798,17.667,18.263,19.464,21.777 +1145,-0.3224,14.1547,0.13032,9.693,10.599,11.18,11.505,12.03,12.402,12.979,14.155,15.475,16.251,16.806,17.675,18.272,19.474,21.789 +1146,-0.3225,14.1609,0.13034,9.697,10.604,11.185,11.51,12.035,12.407,12.985,14.161,15.482,16.258,16.814,17.684,18.281,19.484,21.801 +1147,-0.3225,14.1671,0.13036,9.701,10.608,11.189,11.514,12.04,12.412,12.991,14.167,15.489,16.266,16.821,17.692,18.29,19.493,21.812 +1148,-0.3226,14.1732,0.13039,9.704,10.612,11.194,11.519,12.044,12.417,12.996,14.173,15.496,16.273,16.829,17.701,18.299,19.503,21.824 +1149,-0.3226,14.1794,0.13041,9.708,10.616,11.198,11.523,12.049,12.422,13.001,14.179,15.503,16.281,16.837,17.709,18.308,19.513,21.835 +1150,-0.3227,14.1856,0.13043,9.711,10.62,11.203,11.528,12.054,12.427,13.007,14.186,15.51,16.288,16.845,17.718,18.316,19.522,21.846 +1151,-0.3227,14.1917,0.13046,9.715,10.624,11.207,11.533,12.059,12.432,13.012,14.192,15.517,16.296,16.853,17.726,18.325,19.532,21.858 +1152,-0.3227,14.1979,0.13048,9.719,10.628,11.211,11.537,12.064,12.438,13.018,14.198,15.524,16.303,16.861,17.734,18.334,19.542,21.869 +1153,-0.3228,14.2041,0.13051,9.722,10.632,11.216,11.542,12.069,12.443,13.023,14.204,15.531,16.311,16.869,17.743,18.343,19.552,21.881 +1154,-0.3228,14.2103,0.13053,9.726,10.636,11.22,11.546,12.074,12.448,13.029,14.21,15.538,16.318,16.877,17.752,18.352,19.561,21.892 +1155,-0.3229,14.2164,0.13055,9.73,10.641,11.225,11.551,12.079,12.453,13.034,14.216,15.545,16.326,16.884,17.76,18.361,19.571,21.903 +1156,-0.3229,14.2226,0.13058,9.733,10.645,11.229,11.556,12.084,12.458,13.04,14.223,15.552,16.333,16.892,17.769,18.37,19.581,21.915 +1157,-0.323,14.2288,0.1306,9.737,10.649,11.233,11.56,12.089,12.463,13.045,14.229,15.559,16.341,16.9,17.777,18.379,19.591,21.926 +1158,-0.323,14.2349,0.13063,9.74,10.653,11.238,11.565,12.093,12.468,13.05,14.235,15.566,16.348,16.908,17.786,18.388,19.601,21.938 +1159,-0.3231,14.2411,0.13065,9.744,10.657,11.242,11.569,12.098,12.473,13.056,14.241,15.573,16.356,16.916,17.794,18.397,19.61,21.95 +1160,-0.3231,14.2473,0.13068,9.747,10.661,11.246,11.574,12.103,12.478,13.061,14.247,15.58,16.364,16.924,17.803,18.406,19.62,21.961 +1161,-0.3232,14.2534,0.1307,9.751,10.665,11.251,11.579,12.108,12.484,13.067,14.253,15.587,16.371,16.932,17.811,18.414,19.63,21.973 +1162,-0.3232,14.2596,0.13072,9.755,10.669,11.255,11.583,12.113,12.489,13.072,14.26,15.594,16.378,16.94,17.819,18.423,19.639,21.984 +1163,-0.3232,14.2658,0.13075,9.758,10.673,11.26,11.588,12.118,12.494,13.078,14.266,15.601,16.386,16.948,17.828,18.432,19.649,21.996 +1164,-0.3233,14.2719,0.13077,9.762,10.677,11.264,11.592,12.123,12.499,13.083,14.272,15.608,16.394,16.955,17.836,18.441,19.659,22.007 +1165,-0.3233,14.2781,0.1308,9.765,10.681,11.269,11.597,12.128,12.504,13.089,14.278,15.615,16.401,16.964,17.845,18.45,19.669,22.019 +1166,-0.3234,14.2843,0.13082,9.769,10.686,11.273,11.602,12.133,12.509,13.094,14.284,15.622,16.409,16.971,17.853,18.459,19.679,22.03 +1167,-0.3234,14.2904,0.13085,9.772,10.689,11.277,11.606,12.137,12.514,13.099,14.29,15.629,16.416,16.979,17.862,18.468,19.689,22.042 +1168,-0.3235,14.2966,0.13087,9.776,10.694,11.282,11.611,12.142,12.519,13.105,14.297,15.636,16.424,16.987,17.87,18.477,19.698,22.053 +1169,-0.3235,14.3028,0.1309,9.78,10.698,11.286,11.615,12.147,12.524,13.11,14.303,15.643,16.431,16.995,17.879,18.486,19.708,22.065 +1170,-0.3236,14.3089,0.13092,9.783,10.702,11.291,11.62,12.152,12.53,13.116,14.309,15.65,16.439,17.003,17.887,18.495,19.718,22.076 +1171,-0.3236,14.3151,0.13095,9.787,10.706,11.295,11.624,12.157,12.535,13.121,14.315,15.657,16.446,17.011,17.896,18.504,19.728,22.088 +1172,-0.3237,14.3213,0.13097,9.791,10.71,11.299,11.629,12.162,12.54,13.127,14.321,15.664,16.454,17.019,17.905,18.513,19.738,22.1 +1173,-0.3237,14.3274,0.13099,9.794,10.714,11.304,11.634,12.167,12.545,13.132,14.327,15.671,16.461,17.027,17.913,18.521,19.747,22.111 +1174,-0.3237,14.3336,0.13102,9.798,10.718,11.308,11.638,12.172,12.55,13.138,14.334,15.678,16.469,17.035,17.921,18.53,19.757,22.122 +1175,-0.3238,14.3397,0.13104,9.801,10.722,11.313,11.643,12.176,12.555,13.143,14.34,15.685,16.476,17.042,17.93,18.539,19.767,22.134 +1176,-0.3238,14.3459,0.13107,9.805,10.726,11.317,11.647,12.181,12.56,13.148,14.346,15.692,16.484,17.05,17.939,18.548,19.777,22.146 +1177,-0.3239,14.3521,0.13109,9.809,10.73,11.321,11.652,12.186,12.565,13.154,14.352,15.699,16.491,17.058,17.947,18.557,19.786,22.157 +1178,-0.3239,14.3582,0.13112,9.812,10.734,11.326,11.656,12.191,12.57,13.159,14.358,15.706,16.499,17.066,17.956,18.566,19.796,22.169 +1179,-0.324,14.3644,0.13114,9.816,10.738,11.33,11.661,12.196,12.575,13.165,14.364,15.713,16.507,17.074,17.964,18.575,19.806,22.18 +1180,-0.324,14.3705,0.13117,9.819,10.742,11.334,11.665,12.201,12.58,13.17,14.371,15.72,16.514,17.082,17.973,18.584,19.816,22.192 +1181,-0.3241,14.3767,0.13119,9.823,10.747,11.339,11.67,12.206,12.586,13.176,14.377,15.727,16.522,17.09,17.981,18.593,19.826,22.203 +1182,-0.3241,14.3829,0.13122,9.826,10.75,11.343,11.675,12.211,12.591,13.181,14.383,15.734,16.529,17.098,17.99,18.602,19.836,22.215 +1183,-0.3241,14.389,0.13124,9.83,10.755,11.348,11.679,12.215,12.596,13.186,14.389,15.741,16.537,17.106,17.998,18.611,19.845,22.226 +1184,-0.3242,14.3952,0.13127,9.833,10.759,11.352,11.684,12.22,12.601,13.192,14.395,15.748,16.544,17.114,18.007,18.62,19.855,22.238 +1185,-0.3242,14.4013,0.13129,9.837,10.763,11.356,11.688,12.225,12.606,13.197,14.401,15.755,16.552,17.122,18.015,18.629,19.865,22.249 +1186,-0.3243,14.4075,0.13132,9.841,10.767,11.361,11.693,12.23,12.611,13.203,14.408,15.762,16.559,17.13,18.024,18.638,19.875,22.262 +1187,-0.3243,14.4136,0.13134,9.844,10.771,11.365,11.697,12.235,12.616,13.208,14.414,15.769,16.567,17.137,18.032,18.646,19.884,22.273 +1188,-0.3244,14.4198,0.13137,9.848,10.775,11.369,11.702,12.24,12.621,13.214,14.42,15.776,16.574,17.145,18.041,18.656,19.895,22.285 +1189,-0.3244,14.4259,0.1314,9.851,10.779,11.374,11.706,12.244,12.626,13.219,14.426,15.783,16.582,17.153,18.049,18.665,19.905,22.297 +1190,-0.3245,14.4321,0.13142,9.855,10.783,11.378,11.711,12.249,12.631,13.224,14.432,15.79,16.589,17.161,18.058,18.674,19.914,22.308 +1191,-0.3245,14.4382,0.13145,9.858,10.787,11.382,11.715,12.254,12.636,13.23,14.438,15.797,16.597,17.169,18.066,18.683,19.924,22.32 +1192,-0.3245,14.4444,0.13147,9.862,10.791,11.387,11.72,12.259,12.641,13.235,14.444,15.804,16.604,17.177,18.075,18.691,19.934,22.331 +1193,-0.3246,14.4505,0.1315,9.865,10.795,11.391,11.725,12.264,12.646,13.241,14.451,15.811,16.612,17.185,18.083,18.7,19.944,22.343 +1194,-0.3246,14.4567,0.13152,9.869,10.799,11.396,11.729,12.269,12.652,13.246,14.457,15.818,16.62,17.193,18.092,18.709,19.953,22.354 +1195,-0.3247,14.4628,0.13155,9.872,10.803,11.4,11.734,12.274,12.656,13.251,14.463,15.825,16.627,17.201,18.1,18.718,19.963,22.366 +1196,-0.3247,14.469,0.13157,9.876,10.807,11.404,11.738,12.278,12.662,13.257,14.469,15.832,16.635,17.209,18.109,18.727,19.973,22.377 +1197,-0.3248,14.4751,0.1316,9.879,10.811,11.409,11.743,12.283,12.667,13.262,14.475,15.839,16.642,17.217,18.118,18.736,19.983,22.389 +1198,-0.3248,14.4813,0.13162,9.883,10.815,11.413,11.747,12.288,12.672,13.268,14.481,15.846,16.65,17.224,18.126,18.745,19.993,22.401 +1199,-0.3249,14.4874,0.13165,9.887,10.819,11.417,11.752,12.293,12.677,13.273,14.487,15.853,16.657,17.232,18.135,18.754,20.003,22.413 +1200,-0.3249,14.4936,0.13167,9.89,10.823,11.422,11.757,12.298,12.682,13.279,14.494,15.86,16.665,17.24,18.143,18.763,20.012,22.424 +1201,-0.3249,14.4997,0.1317,9.894,10.827,11.426,11.761,12.303,12.687,13.284,14.5,15.867,16.672,17.248,18.152,18.772,20.022,22.436 +1202,-0.325,14.5059,0.13173,9.897,10.831,11.43,11.765,12.307,12.692,13.289,14.506,15.875,16.68,17.256,18.16,18.781,20.033,22.448 +1203,-0.325,14.512,0.13175,9.901,10.835,11.435,11.77,12.312,12.697,13.295,14.512,15.881,16.687,17.264,18.169,18.79,20.042,22.459 +1204,-0.3251,14.5181,0.13178,9.904,10.839,11.439,11.774,12.317,12.702,13.3,14.518,15.888,16.695,17.272,18.177,18.799,20.052,22.471 +1205,-0.3251,14.5243,0.1318,9.908,10.843,11.443,11.779,12.322,12.707,13.306,14.524,15.895,16.702,17.28,18.186,18.808,20.062,22.482 +1206,-0.3252,14.5304,0.13183,9.911,10.847,11.448,11.784,12.327,12.712,13.311,14.53,15.902,16.71,17.288,18.194,18.817,20.072,22.494 +1207,-0.3252,14.5366,0.13185,9.915,10.851,11.452,11.788,12.332,12.717,13.316,14.537,15.909,16.717,17.296,18.203,18.826,20.081,22.506 +1208,-0.3253,14.5427,0.13188,9.918,10.855,11.456,11.793,12.336,12.722,13.322,14.543,15.916,16.725,17.304,18.211,18.835,20.092,22.518 +1209,-0.3253,14.5488,0.13191,9.922,10.859,11.461,11.797,12.341,12.727,13.327,14.549,15.923,16.733,17.312,18.22,18.844,20.102,22.529 +1210,-0.3253,14.555,0.13193,9.925,10.863,11.465,11.802,12.346,12.732,13.333,14.555,15.93,16.74,17.32,18.228,18.853,20.111,22.541 +1211,-0.3254,14.5611,0.13196,9.929,10.867,11.469,11.806,12.351,12.737,13.338,14.561,15.937,16.748,17.328,18.237,18.862,20.121,22.553 +1212,-0.3254,14.5673,0.13198,9.933,10.871,11.474,11.811,12.356,12.743,13.343,14.567,15.944,16.755,17.335,18.245,18.871,20.131,22.564 +1213,-0.3255,14.5734,0.13201,9.936,10.875,11.478,11.815,12.361,12.748,13.349,14.573,15.952,16.763,17.343,18.254,18.88,20.141,22.576 +1214,-0.3255,14.5795,0.13204,9.939,10.879,11.482,11.82,12.365,12.752,13.354,14.58,15.959,16.77,17.351,18.263,18.889,20.151,22.588 +1215,-0.3256,14.5857,0.13206,9.943,10.883,11.487,11.824,12.37,12.758,13.36,14.586,15.966,16.778,17.359,18.271,18.898,20.161,22.599 +1216,-0.3256,14.5918,0.13209,9.946,10.887,11.491,11.829,12.375,12.763,13.365,14.592,15.973,16.785,17.367,18.28,18.907,20.171,22.611 +1217,-0.3257,14.5979,0.13211,9.95,10.891,11.495,11.833,12.38,12.768,13.37,14.598,15.979,16.793,17.375,18.288,18.915,20.18,22.622 +1218,-0.3257,14.6041,0.13214,9.953,10.895,11.5,11.838,12.385,12.773,13.376,14.604,15.987,16.8,17.383,18.297,18.925,20.19,22.635 +1219,-0.3257,14.6102,0.13217,9.957,10.899,11.504,11.842,12.389,12.778,13.381,14.61,15.994,16.808,17.391,18.305,18.934,20.2,22.646 +1220,-0.3258,14.6163,0.13219,9.961,10.903,11.508,11.847,12.394,12.783,13.387,14.616,16,16.815,17.399,18.314,18.942,20.21,22.658 +1221,-0.3258,14.6225,0.13222,9.964,10.907,11.513,11.851,12.399,12.788,13.392,14.623,16.008,16.823,17.407,18.323,18.952,20.22,22.67 +1222,-0.3259,14.6286,0.13225,9.967,10.911,11.517,11.856,12.404,12.793,13.397,14.629,16.015,16.831,17.415,18.331,18.961,20.23,22.682 +1223,-0.3259,14.6347,0.13227,9.971,10.915,11.521,11.86,12.409,12.798,13.403,14.635,16.022,16.838,17.423,18.34,18.97,20.24,22.693 +1224,-0.326,14.6408,0.1323,9.974,10.919,11.525,11.865,12.413,12.803,13.408,14.641,16.029,16.846,17.431,18.348,18.979,20.25,22.705 +1225,-0.326,14.647,0.13232,9.978,10.923,11.53,11.869,12.418,12.808,13.413,14.647,16.036,16.853,17.438,18.357,18.987,20.259,22.716 +1226,-0.3261,14.6531,0.13235,9.981,10.927,11.534,11.874,12.423,12.813,13.419,14.653,16.043,16.861,17.446,18.365,18.997,20.27,22.728 +1227,-0.3261,14.6592,0.13238,9.985,10.931,11.538,11.878,12.428,12.818,13.424,14.659,16.05,16.868,17.454,18.374,19.006,20.28,22.74 +1228,-0.3261,14.6653,0.1324,9.988,10.935,11.543,11.883,12.433,12.823,13.43,14.665,16.056,16.876,17.462,18.382,19.014,20.289,22.751 +1229,-0.3262,14.6715,0.13243,9.992,10.939,11.547,11.887,12.438,12.828,13.435,14.672,16.064,16.883,17.47,18.391,19.024,20.299,22.764 +1230,-0.3262,14.6776,0.13246,9.995,10.943,11.551,11.892,12.442,12.833,13.44,14.678,16.071,16.891,17.478,18.4,19.033,20.309,22.776 +1231,-0.3263,14.6837,0.13248,9.999,10.947,11.556,11.896,12.447,12.838,13.446,14.684,16.078,16.898,17.486,18.408,19.041,20.319,22.787 +1232,-0.3263,14.6898,0.13251,10.002,10.951,11.56,11.901,12.452,12.843,13.451,14.69,16.085,16.906,17.494,18.417,19.051,20.329,22.799 +1233,-0.3264,14.696,0.13254,10.006,10.955,11.564,11.905,12.457,12.848,13.456,14.696,16.092,16.914,17.502,18.425,19.06,20.339,22.811 +1234,-0.3264,14.7021,0.13256,10.009,10.959,11.569,11.91,12.462,12.853,13.462,14.702,16.099,16.921,17.51,18.434,19.069,20.349,22.822 +1235,-0.3264,14.7082,0.13259,10.013,10.963,11.573,11.914,12.466,12.858,13.467,14.708,16.106,16.929,17.518,18.442,19.078,20.359,22.834 +1236,-0.3265,14.7143,0.13262,10.016,10.967,11.577,11.919,12.471,12.863,13.472,14.714,16.113,16.936,17.526,18.451,19.087,20.369,22.846 +1237,-0.3265,14.7204,0.13264,10.02,10.971,11.581,11.923,12.476,12.868,13.478,14.72,16.12,16.944,17.534,18.459,19.095,20.378,22.857 +1238,-0.3266,14.7265,0.13267,10.023,10.975,11.586,11.928,12.481,12.873,13.483,14.727,16.127,16.951,17.542,18.468,19.105,20.389,22.869 +1239,-0.3266,14.7327,0.13269,10.027,10.979,11.59,11.932,12.486,12.878,13.489,14.733,16.134,16.959,17.549,18.476,19.113,20.398,22.881 +1240,-0.3267,14.7388,0.13272,10.03,10.983,11.594,11.937,12.49,12.883,13.494,14.739,16.141,16.966,17.557,18.485,19.123,20.408,22.893 +1241,-0.3267,14.7449,0.13275,10.033,10.987,11.599,11.941,12.495,12.888,13.499,14.745,16.148,16.974,17.565,18.494,19.132,20.418,22.905 +1242,-0.3268,14.751,0.13278,10.037,10.991,11.603,11.945,12.5,12.893,13.505,14.751,16.155,16.981,17.573,18.502,19.141,20.428,22.917 +1243,-0.3268,14.7571,0.1328,10.04,10.995,11.607,11.95,12.505,12.898,13.51,14.757,16.162,16.989,17.581,18.511,19.15,20.438,22.928 +1244,-0.3268,14.7632,0.13283,10.044,10.998,11.611,11.954,12.509,12.903,13.515,14.763,16.169,16.996,17.589,18.519,19.159,20.448,22.94 +1245,-0.3269,14.7693,0.13286,10.047,11.002,11.616,11.959,12.514,12.908,13.521,14.769,16.176,17.004,17.597,18.528,19.168,20.458,22.952 +1246,-0.3269,14.7754,0.13288,10.051,11.006,11.62,11.963,12.519,12.913,13.526,14.775,16.182,17.011,17.605,18.536,19.176,20.468,22.963 +1247,-0.327,14.7816,0.13291,10.054,11.01,11.624,11.968,12.524,12.918,13.532,14.782,16.19,17.019,17.613,18.545,19.186,20.478,22.976 +1248,-0.327,14.7877,0.13294,10.058,11.014,11.629,11.972,12.528,12.923,13.537,14.788,16.197,17.027,17.621,18.554,19.195,20.488,22.988 +1249,-0.3271,14.7938,0.13296,10.061,11.018,11.633,11.977,12.533,12.928,13.542,14.794,16.204,17.034,17.629,18.562,19.204,20.498,22.999 +1250,-0.3271,14.7999,0.13299,10.065,11.022,11.637,11.981,12.538,12.933,13.548,14.8,16.211,17.042,17.637,18.571,19.213,20.508,23.011 +1251,-0.3271,14.806,0.13302,10.068,11.026,11.641,11.986,12.543,12.938,13.553,14.806,16.218,17.049,17.645,18.579,19.222,20.518,23.023 +1252,-0.3272,14.8121,0.13304,10.072,11.03,11.646,11.99,12.548,12.943,13.558,14.812,16.224,17.057,17.653,18.588,19.231,20.527,23.034 +1253,-0.3272,14.8182,0.13307,10.075,11.034,11.65,11.995,12.552,12.948,13.564,14.818,16.232,17.064,17.661,18.596,19.24,20.537,23.046 +1254,-0.3273,14.8243,0.1331,10.078,11.038,11.654,11.999,12.557,12.953,13.569,14.824,16.239,17.072,17.669,18.605,19.249,20.548,23.058 +1255,-0.3273,14.8304,0.13312,10.082,11.042,11.659,12.004,12.562,12.958,13.574,14.83,16.245,17.079,17.676,18.613,19.258,20.557,23.07 +1256,-0.3274,14.8365,0.13315,10.085,11.046,11.663,12.008,12.567,12.963,13.58,14.837,16.252,17.087,17.684,18.622,19.267,20.567,23.082 +1257,-0.3274,14.8426,0.13318,10.089,11.05,11.667,12.012,12.571,12.968,13.585,14.843,16.26,17.094,17.692,18.631,19.276,20.577,23.094 +1258,-0.3274,14.8487,0.13321,10.092,11.054,11.671,12.017,12.576,12.973,13.59,14.849,16.267,17.102,17.7,18.639,19.285,20.587,23.106 +1259,-0.3275,14.8548,0.13323,10.096,11.058,11.676,12.021,12.581,12.978,13.596,14.855,16.273,17.109,17.708,18.648,19.294,20.597,23.117 +1260,-0.3275,14.8609,0.13326,10.099,11.062,11.68,12.026,12.586,12.983,13.601,14.861,16.28,17.117,17.716,18.656,19.303,20.607,23.129 +1261,-0.3276,14.867,0.13329,10.102,11.065,11.684,12.03,12.59,12.988,13.606,14.867,16.287,17.125,17.724,18.665,19.312,20.617,23.141 +1262,-0.3276,14.8731,0.13331,10.106,11.069,11.688,12.035,12.595,12.993,13.612,14.873,16.294,17.132,17.732,18.673,19.321,20.627,23.152 +1263,-0.3277,14.8792,0.13334,10.109,11.073,11.693,12.039,12.6,12.998,13.617,14.879,16.301,17.14,17.74,18.682,19.33,20.637,23.165 +1264,-0.3277,14.8853,0.13337,10.113,11.077,11.697,12.044,12.605,13.003,13.622,14.885,16.308,17.147,17.748,18.691,19.339,20.647,23.177 +1265,-0.3278,14.8913,0.13339,10.116,11.081,11.701,12.048,12.609,13.008,13.628,14.891,16.315,17.154,17.756,18.699,19.348,20.657,23.188 +1266,-0.3278,14.8974,0.13342,10.12,11.085,11.705,12.052,12.614,13.013,13.633,14.897,16.322,17.162,17.764,18.708,19.357,20.667,23.2 +1267,-0.3278,14.9035,0.13345,10.123,11.089,11.709,12.057,12.619,13.018,13.638,14.904,16.329,17.17,17.772,18.716,19.366,20.677,23.212 +1268,-0.3279,14.9096,0.13348,10.126,11.093,11.714,12.061,12.624,13.023,13.644,14.91,16.336,17.177,17.78,18.725,19.375,20.687,23.224 +1269,-0.3279,14.9157,0.1335,10.13,11.097,11.718,12.066,12.628,13.028,13.649,14.916,16.343,17.185,17.787,18.733,19.384,20.696,23.235 +1270,-0.328,14.9218,0.13353,10.133,11.101,11.722,12.07,12.633,13.033,13.654,14.922,16.35,17.192,17.795,18.742,19.393,20.707,23.247 +1271,-0.328,14.9279,0.13356,10.137,11.105,11.726,12.075,12.638,13.038,13.66,14.928,16.357,17.2,17.803,18.751,19.402,20.717,23.259 +1272,-0.3281,14.934,0.13359,10.14,11.108,11.731,12.079,12.643,13.043,13.665,14.934,16.364,17.207,17.811,18.759,19.411,20.727,23.272 +1273,-0.3281,14.94,0.13361,10.143,11.112,11.735,12.083,12.647,13.048,13.67,14.94,16.371,17.215,17.819,18.768,19.42,20.736,23.283 +1274,-0.3281,14.9461,0.13364,10.147,11.116,11.739,12.088,12.652,13.053,13.676,14.946,16.378,17.222,17.827,18.776,19.429,20.746,23.295 +1275,-0.3282,14.9522,0.13367,10.15,11.12,11.743,12.092,12.657,13.058,13.681,14.952,16.385,17.23,17.835,18.785,19.438,20.756,23.307 +1276,-0.3282,14.9583,0.13369,10.154,11.124,11.748,12.097,12.662,13.063,13.686,14.958,16.392,17.237,17.843,18.793,19.447,20.766,23.318 +1277,-0.3283,14.9644,0.13372,10.157,11.128,11.752,12.101,12.666,13.068,13.692,14.964,16.399,17.245,17.851,18.802,19.456,20.776,23.33 +1278,-0.3283,14.9704,0.13375,10.16,11.132,11.756,12.105,12.671,13.073,13.697,14.97,16.406,17.252,17.859,18.811,19.465,20.786,23.342 +1279,-0.3284,14.9765,0.13378,10.164,11.136,11.76,12.11,12.676,13.077,13.702,14.977,16.413,17.26,17.867,18.819,19.474,20.796,23.354 +1280,-0.3284,14.9826,0.1338,10.167,11.14,11.765,12.114,12.681,13.083,13.708,14.983,16.42,17.267,17.875,18.828,19.483,20.806,23.366 +1281,-0.3284,14.9887,0.13383,10.171,11.144,11.769,12.119,12.685,13.087,13.713,14.989,16.427,17.275,17.883,18.836,19.492,20.816,23.378 +1282,-0.3285,14.9948,0.13386,10.174,11.148,11.773,12.123,12.69,13.092,13.718,14.995,16.434,17.283,17.891,18.845,19.501,20.826,23.39 +1283,-0.3285,15.0008,0.13389,10.177,11.151,11.777,12.128,12.695,13.097,13.724,15.001,16.441,17.29,17.898,18.854,19.51,20.836,23.402 +1284,-0.3286,15.0069,0.13391,10.181,11.155,11.782,12.132,12.699,13.102,13.729,15.007,16.448,17.298,17.906,18.862,19.519,20.846,23.413 +1285,-0.3286,15.013,0.13394,10.184,11.159,11.786,12.136,12.704,13.107,13.734,15.013,16.455,17.305,17.914,18.871,19.528,20.856,23.425 +1286,-0.3287,15.019,0.13397,10.188,11.163,11.79,12.141,12.709,13.112,13.739,15.019,16.462,17.313,17.922,18.879,19.537,20.866,23.437 +1287,-0.3287,15.0251,0.134,10.191,11.167,11.794,12.145,12.714,13.117,13.745,15.025,16.469,17.32,17.93,18.888,19.547,20.876,23.449 +1288,-0.3287,15.0312,0.13402,10.194,11.171,11.798,12.15,12.718,13.122,13.75,15.031,16.476,17.328,17.938,18.896,19.555,20.886,23.461 +1289,-0.3288,15.0373,0.13405,10.198,11.175,11.803,12.154,12.723,13.127,13.755,15.037,16.483,17.335,17.946,18.905,19.565,20.896,23.473 +1290,-0.3288,15.0433,0.13408,10.201,11.179,11.807,12.158,12.728,13.132,13.761,15.043,16.49,17.343,17.954,18.914,19.574,20.906,23.485 +1291,-0.3289,15.0494,0.13411,10.204,11.182,11.811,12.163,12.732,13.137,13.766,15.049,16.497,17.35,17.962,18.922,19.583,20.916,23.497 +1292,-0.3289,15.0555,0.13413,10.208,11.186,11.815,12.167,12.737,13.142,13.771,15.056,16.504,17.358,17.97,18.931,19.592,20.926,23.508 +1293,-0.329,15.0615,0.13416,10.211,11.19,11.819,12.172,12.742,13.147,13.777,15.062,16.511,17.365,17.978,18.939,19.601,20.936,23.52 +1294,-0.329,15.0676,0.13419,10.215,11.194,11.824,12.176,12.747,13.152,13.782,15.068,16.518,17.373,17.986,18.948,19.61,20.946,23.532 +1295,-0.329,15.0736,0.13422,10.218,11.198,11.828,12.18,12.751,13.157,13.787,15.074,16.525,17.38,17.994,18.956,19.619,20.956,23.544 +1296,-0.3291,15.0797,0.13425,10.221,11.202,11.832,12.185,12.756,13.162,13.792,15.08,16.532,17.388,18.002,18.965,19.628,20.966,23.557 +1297,-0.3291,15.0858,0.13427,10.225,11.206,11.836,12.189,12.761,13.167,13.798,15.086,16.539,17.395,18.009,18.974,19.637,20.976,23.568 +1298,-0.3292,15.0918,0.1343,10.228,11.21,11.84,12.194,12.765,13.171,13.803,15.092,16.545,17.403,18.017,18.982,19.646,20.986,23.58 +1299,-0.3292,15.0979,0.13433,10.231,11.213,11.845,12.198,12.77,13.176,13.808,15.098,16.553,17.41,18.025,18.991,19.655,20.996,23.592 +1300,-0.3293,15.1039,0.13436,10.235,11.217,11.849,12.202,12.775,13.181,13.814,15.104,16.559,17.418,18.033,18.999,19.664,21.006,23.604 +1301,-0.3293,15.11,0.13438,10.238,11.221,11.853,12.207,12.78,13.186,13.819,15.11,16.566,17.425,18.041,19.008,19.673,21.015,23.615 +1302,-0.3293,15.1161,0.13441,10.242,11.225,11.857,12.211,12.784,13.191,13.824,15.116,16.573,17.433,18.049,19.016,19.682,21.026,23.628 +1303,-0.3294,15.1221,0.13444,10.245,11.229,11.861,12.216,12.789,13.196,13.83,15.122,16.58,17.44,18.057,19.025,19.691,21.036,23.64 +1304,-0.3294,15.1282,0.13447,10.248,11.233,11.865,12.22,12.794,13.201,13.835,15.128,16.587,17.448,18.065,19.034,19.7,21.046,23.652 +1305,-0.3295,15.1342,0.13449,10.252,11.237,11.87,12.224,12.798,13.206,13.84,15.134,16.594,17.455,18.073,19.042,19.709,21.055,23.663 +1306,-0.3295,15.1403,0.13452,10.255,11.241,11.874,12.229,12.803,13.211,13.845,15.14,16.601,17.463,18.081,19.051,19.718,21.066,23.675 +1307,-0.3296,15.1463,0.13455,10.258,11.244,11.878,12.233,12.808,13.216,13.851,15.146,16.608,17.471,18.089,19.059,19.727,21.076,23.687 +1308,-0.3296,15.1524,0.13458,10.262,11.248,11.882,12.237,12.812,13.221,13.856,15.152,16.615,17.478,18.097,19.068,19.736,21.086,23.699 +1309,-0.3296,15.1584,0.13461,10.265,11.252,11.886,12.242,12.817,13.226,13.861,15.158,16.622,17.486,18.105,19.077,19.745,21.096,23.711 +1310,-0.3297,15.1645,0.13463,10.269,11.256,11.891,12.246,12.822,13.231,13.867,15.165,16.629,17.493,18.112,19.085,19.754,21.105,23.723 +1311,-0.3297,15.1705,0.13466,10.272,11.26,11.895,12.251,12.826,13.235,13.872,15.171,16.636,17.501,18.12,19.094,19.763,21.115,23.735 +1312,-0.3298,15.1766,0.13469,10.275,11.264,11.899,12.255,12.831,13.24,13.877,15.177,16.643,17.508,18.128,19.102,19.772,21.126,23.747 +1313,-0.3298,15.1826,0.13472,10.278,11.267,11.903,12.259,12.836,13.245,13.882,15.183,16.65,17.516,18.136,19.111,19.781,21.136,23.759 +1314,-0.3299,15.1887,0.13474,10.282,11.271,11.908,12.264,12.841,13.25,13.888,15.189,16.657,17.523,18.144,19.119,19.79,21.145,23.771 +1315,-0.3299,15.1947,0.13477,10.285,11.275,11.912,12.268,12.845,13.255,13.893,15.195,16.664,17.531,18.152,19.128,19.799,21.155,23.783 +1316,-0.3299,15.2008,0.1348,10.289,11.279,11.916,12.272,12.85,13.26,13.898,15.201,16.671,17.538,18.16,19.137,19.809,21.166,23.795 +1317,-0.33,15.2068,0.13483,10.292,11.283,11.92,12.277,12.855,13.265,13.903,15.207,16.678,17.546,18.168,19.145,19.818,21.176,23.807 +1318,-0.33,15.2128,0.13486,10.295,11.286,11.924,12.281,12.859,13.27,13.909,15.213,16.685,17.553,18.176,19.154,19.827,21.186,23.819 +1319,-0.3301,15.2189,0.13488,10.299,11.291,11.928,12.286,12.864,13.275,13.914,15.219,16.692,17.561,18.184,19.162,19.836,21.195,23.83 +1320,-0.3301,15.2249,0.13491,10.302,11.294,11.932,12.29,12.869,13.28,13.919,15.225,16.699,17.568,18.192,19.171,19.845,21.205,23.842 +1321,-0.3302,15.231,0.13494,10.305,11.298,11.937,12.294,12.873,13.285,13.925,15.231,16.706,17.576,18.2,19.18,19.854,21.216,23.855 +1322,-0.3302,15.237,0.13497,10.308,11.302,11.941,12.299,12.878,13.289,13.93,15.237,16.713,17.583,18.208,19.188,19.863,21.226,23.867 +1323,-0.3302,15.243,0.135,10.312,11.306,11.945,12.303,12.883,13.294,13.935,15.243,16.719,17.591,18.215,19.197,19.872,21.236,23.879 +1324,-0.3303,15.2491,0.13502,10.315,11.31,11.949,12.307,12.887,13.299,13.94,15.249,16.726,17.598,18.223,19.205,19.881,21.245,23.89 +1325,-0.3303,15.2551,0.13505,10.319,11.313,11.953,12.312,12.892,13.304,13.946,15.255,16.733,17.606,18.231,19.214,19.89,21.255,23.902 +1326,-0.3304,15.2611,0.13508,10.322,11.317,11.957,12.316,12.897,13.309,13.951,15.261,16.74,17.613,18.239,19.222,19.899,21.266,23.914 +1327,-0.3304,15.2672,0.13511,10.325,11.321,11.962,12.32,12.901,13.314,13.956,15.267,16.747,17.621,18.247,19.231,19.908,21.276,23.926 +1328,-0.3305,15.2732,0.13514,10.328,11.325,11.966,12.325,12.906,13.319,13.961,15.273,16.754,17.628,18.255,19.24,19.917,21.286,23.939 +1329,-0.3305,15.2792,0.13516,10.332,11.329,11.97,12.329,12.911,13.324,13.967,15.279,16.761,17.636,18.263,19.248,19.926,21.295,23.95 +1330,-0.3305,15.2853,0.13519,10.335,11.333,11.974,12.333,12.915,13.329,13.972,15.285,16.768,17.643,18.271,19.257,19.935,21.305,23.962 +1331,-0.3306,15.2913,0.13522,10.339,11.336,11.978,12.338,12.92,13.334,13.977,15.291,16.775,17.651,18.279,19.265,19.944,21.316,23.974 +1332,-0.3306,15.2973,0.13525,10.342,11.34,11.982,12.342,12.925,13.338,13.982,15.297,16.782,17.658,18.287,19.274,19.953,21.326,23.986 +1333,-0.3307,15.3034,0.13527,10.345,11.344,11.987,12.347,12.929,13.344,13.988,15.303,16.789,17.666,18.294,19.282,19.962,21.335,23.998 +1334,-0.3307,15.3094,0.1353,10.349,11.348,11.991,12.351,12.934,13.348,13.993,15.309,16.796,17.673,18.302,19.291,19.971,21.345,24.01 +1335,-0.3308,15.3154,0.13533,10.352,11.352,11.995,12.355,12.939,13.353,13.998,15.315,16.803,17.681,18.31,19.299,19.98,21.356,24.022 +1336,-0.3308,15.3214,0.13536,10.355,11.355,11.999,12.359,12.943,13.358,14.003,15.321,16.81,17.688,18.318,19.308,19.989,21.366,24.034 +1337,-0.3308,15.3275,0.13539,10.358,11.359,12.003,12.364,12.948,13.363,14.009,15.328,16.817,17.696,18.326,19.317,19.998,21.376,24.046 +1338,-0.3309,15.3335,0.13541,10.362,11.363,12.007,12.368,12.953,13.368,14.014,15.334,16.824,17.703,18.334,19.325,20.007,21.385,24.057 +1339,-0.3309,15.3395,0.13544,10.365,11.367,12.012,12.373,12.957,13.373,14.019,15.34,16.831,17.711,18.342,19.334,20.016,21.395,24.069 +1340,-0.331,15.3455,0.13547,10.368,11.371,12.016,12.377,12.962,13.378,14.024,15.346,16.837,17.718,18.35,19.342,20.025,21.406,24.082 +1341,-0.331,15.3516,0.1355,10.372,11.375,12.02,12.381,12.967,13.383,14.03,15.352,16.844,17.726,18.358,19.351,20.035,21.416,24.094 +1342,-0.3311,15.3576,0.13553,10.375,11.378,12.024,12.386,12.971,13.387,14.035,15.358,16.851,17.733,18.366,19.36,20.044,21.426,24.106 +1343,-0.3311,15.3636,0.13555,10.378,11.382,12.028,12.39,12.976,13.392,14.04,15.364,16.858,17.741,18.374,19.368,20.052,21.435,24.117 +1344,-0.3311,15.3696,0.13558,10.382,11.386,12.032,12.394,12.981,13.397,14.045,15.37,16.865,17.748,18.381,19.377,20.061,21.445,24.129 +1345,-0.3312,15.3756,0.13561,10.385,11.39,12.036,12.399,12.985,13.402,14.051,15.376,16.872,17.756,18.389,19.385,20.071,21.456,24.142 +1346,-0.3312,15.3817,0.13564,10.388,11.394,12.04,12.403,12.99,13.407,14.056,15.382,16.879,17.763,18.397,19.394,20.08,21.466,24.154 +1347,-0.3313,15.3877,0.13567,10.392,11.397,12.045,12.407,12.994,13.412,14.061,15.388,16.886,17.771,18.405,19.403,20.089,21.476,24.166 +1348,-0.3313,15.3937,0.13569,10.395,11.401,12.049,12.412,12.999,13.417,14.067,15.394,16.893,17.778,18.413,19.411,20.098,21.485,24.177 +1349,-0.3314,15.3997,0.13572,10.398,11.405,12.053,12.416,13.004,13.422,14.072,15.4,16.9,17.786,18.421,19.419,20.107,21.496,24.19 +1350,-0.3314,15.4057,0.13575,10.401,11.409,12.057,12.42,13.008,13.426,14.077,15.406,16.907,17.793,18.429,19.428,20.116,21.506,24.202 +1351,-0.3314,15.4117,0.13578,10.405,11.413,12.061,12.424,13.013,13.431,14.082,15.412,16.914,17.801,18.437,19.437,20.125,21.516,24.214 +1352,-0.3315,15.4178,0.13581,10.408,11.416,12.065,12.429,13.018,13.436,14.087,15.418,16.921,17.808,18.445,19.445,20.134,21.526,24.226 +1353,-0.3315,15.4238,0.13584,10.411,11.42,12.069,12.433,13.022,13.441,14.093,15.424,16.928,17.816,18.453,19.454,20.143,21.536,24.238 +1354,-0.3316,15.4298,0.13586,10.415,11.424,12.074,12.438,13.027,13.446,14.098,15.43,16.935,17.823,18.461,19.462,20.152,21.546,24.249 +1355,-0.3316,15.4358,0.13589,10.418,11.428,12.078,12.442,13.032,13.451,14.103,15.436,16.942,17.831,18.469,19.471,20.161,21.556,24.262 +1356,-0.3317,15.4418,0.13592,10.421,11.432,12.082,12.446,13.036,13.456,14.108,15.442,16.948,17.838,18.477,19.48,20.17,21.566,24.274 +1357,-0.3317,15.4478,0.13595,10.424,11.435,12.086,12.45,13.041,13.46,14.114,15.448,16.955,17.846,18.484,19.488,20.179,21.576,24.286 +1358,-0.3317,15.4538,0.13598,10.428,11.439,12.09,12.455,13.045,13.465,14.119,15.454,16.962,17.853,18.492,19.497,20.188,21.586,24.298 +1359,-0.3318,15.4598,0.136,10.431,11.443,12.094,12.459,13.05,13.47,14.124,15.46,16.969,17.861,18.5,19.505,20.197,21.596,24.309 +1360,-0.3318,15.4658,0.13603,10.434,11.447,12.098,12.463,13.055,13.475,14.129,15.466,16.976,17.868,18.508,19.514,20.206,21.606,24.321 +1361,-0.3319,15.4719,0.13606,10.438,11.451,12.103,12.468,13.06,13.48,14.135,15.472,16.983,17.876,18.516,19.523,20.216,21.616,24.334 +1362,-0.3319,15.4779,0.13609,10.441,11.454,12.107,12.472,13.064,13.485,14.14,15.478,16.99,17.883,18.524,19.531,20.225,21.626,24.346 +1363,-0.332,15.4839,0.13612,10.444,11.458,12.111,12.476,13.069,13.49,14.145,15.484,16.997,17.891,18.532,19.54,20.234,21.636,24.358 +1364,-0.332,15.4899,0.13614,10.448,11.462,12.115,12.481,13.073,13.495,14.15,15.49,17.004,17.898,18.54,19.548,20.242,21.646,24.369 +1365,-0.332,15.4959,0.13617,10.451,11.466,12.119,12.485,13.078,13.499,14.155,15.496,17.011,17.906,18.548,19.557,20.252,21.656,24.382 +1366,-0.3321,15.5019,0.1362,10.454,11.47,12.123,12.489,13.083,13.504,14.161,15.502,17.018,17.913,18.556,19.565,20.261,21.666,24.394 +1367,-0.3321,15.5079,0.13623,10.457,11.473,12.127,12.494,13.087,13.509,14.166,15.508,17.025,17.921,18.564,19.574,20.27,21.676,24.406 +1368,-0.3322,15.5139,0.13626,10.461,11.477,12.131,12.498,13.092,13.514,14.171,15.514,17.032,17.928,18.572,19.583,20.279,21.686,24.418 +1369,-0.3322,15.5199,0.13628,10.464,11.481,12.136,12.502,13.097,13.519,14.176,15.52,17.038,17.936,18.579,19.591,20.288,21.696,24.429 +1370,-0.3322,15.5259,0.13631,10.467,11.485,12.14,12.507,13.101,13.524,14.182,15.526,17.045,17.943,18.587,19.6,20.297,21.706,24.442 +1371,-0.3323,15.5319,0.13634,10.471,11.489,12.144,12.511,13.106,13.529,14.187,15.532,17.052,17.951,18.595,19.608,20.306,21.716,24.454 +1372,-0.3323,15.5379,0.13637,10.474,11.492,12.148,12.515,13.11,13.533,14.192,15.538,17.059,17.958,18.603,19.617,20.315,21.726,24.466 +1373,-0.3324,15.5439,0.1364,10.477,11.496,12.152,12.519,13.115,13.538,14.197,15.544,17.066,17.966,18.611,19.626,20.324,21.737,24.478 +1374,-0.3324,15.5499,0.13642,10.481,11.5,12.156,12.524,13.12,13.543,14.203,15.55,17.073,17.973,18.619,19.634,20.333,21.746,24.49 +1375,-0.3325,15.5559,0.13645,10.484,11.504,12.16,12.528,13.124,13.548,14.208,15.556,17.08,17.981,18.627,19.643,20.342,21.756,24.502 +1376,-0.3325,15.5619,0.13648,10.487,11.507,12.164,12.532,13.129,13.553,14.213,15.562,17.087,17.988,18.635,19.651,20.351,21.766,24.514 +1377,-0.3325,15.5679,0.13651,10.49,11.511,12.168,12.537,13.133,13.558,14.218,15.568,17.094,17.996,18.643,19.66,20.36,21.776,24.526 +1378,-0.3326,15.5739,0.13654,10.493,11.515,12.172,12.541,13.138,13.563,14.223,15.574,17.101,18.003,18.651,19.668,20.369,21.787,24.538 +1379,-0.3326,15.5799,0.13656,10.497,11.519,12.177,12.545,13.143,13.567,14.229,15.58,17.108,18.011,18.658,19.677,20.378,21.796,24.55 +1380,-0.3327,15.5859,0.13659,10.5,11.523,12.181,12.55,13.147,13.572,14.234,15.586,17.115,18.018,18.666,19.685,20.387,21.806,24.562 +1381,-0.3327,15.5918,0.13662,10.503,11.526,12.185,12.554,13.152,13.577,14.239,15.592,17.122,18.025,18.674,19.694,20.396,21.816,24.574 +1382,-0.3328,15.5978,0.13665,10.507,11.53,12.189,12.558,13.157,13.582,14.244,15.598,17.128,18.033,18.682,19.703,20.405,21.827,24.586 +1383,-0.3328,15.6038,0.13668,10.51,11.534,12.193,12.562,13.161,13.587,14.249,15.604,17.135,18.041,18.69,19.711,20.415,21.837,24.599 +1384,-0.3328,15.6098,0.1367,10.513,11.538,12.197,12.567,13.166,13.592,14.255,15.61,17.142,18.048,18.698,19.72,20.423,21.846,24.61 +1385,-0.3329,15.6158,0.13673,10.517,11.541,12.201,12.571,13.17,13.597,14.26,15.616,17.149,18.055,18.706,19.728,20.432,21.856,24.622 +1386,-0.3329,15.6218,0.13676,10.52,11.545,12.205,12.575,13.175,13.601,14.265,15.622,17.156,18.063,18.714,19.737,20.442,21.867,24.634 +1387,-0.333,15.6278,0.13679,10.523,11.549,12.209,12.58,13.18,13.606,14.27,15.628,17.163,18.071,18.722,19.746,20.451,21.877,24.647 +1388,-0.333,15.6338,0.13682,10.526,11.553,12.213,12.584,13.184,13.611,14.275,15.634,17.17,18.078,18.73,19.754,20.46,21.887,24.659 +1389,-0.3331,15.6398,0.13684,10.53,11.557,12.218,12.588,13.189,13.616,14.281,15.64,17.177,18.085,18.737,19.762,20.469,21.897,24.67 +1390,-0.3331,15.6458,0.13687,10.533,11.56,12.222,12.593,13.194,13.621,14.286,15.646,17.184,18.093,18.745,19.771,20.478,21.907,24.682 +1391,-0.3331,15.6517,0.1369,10.536,11.564,12.226,12.597,13.198,13.625,14.291,15.652,17.191,18.1,18.753,19.78,20.487,21.917,24.694 +1392,-0.3332,15.6577,0.13693,10.539,11.568,12.23,12.601,13.203,13.63,14.296,15.658,17.198,18.108,18.761,19.788,20.496,21.927,24.707 +1393,-0.3332,15.6637,0.13696,10.542,11.571,12.234,12.605,13.207,13.635,14.301,15.664,17.205,18.115,18.769,19.797,20.505,21.937,24.719 +1394,-0.3333,15.6697,0.13698,10.546,11.575,12.238,12.61,13.212,13.64,14.307,15.67,17.211,18.123,18.777,19.805,20.514,21.947,24.73 +1395,-0.3333,15.6757,0.13701,10.549,11.579,12.242,12.614,13.217,13.645,14.312,15.676,17.218,18.13,18.785,19.814,20.523,21.957,24.743 +1396,-0.3334,15.6817,0.13704,10.552,11.583,12.246,12.618,13.221,13.65,14.317,15.682,17.225,18.138,18.793,19.823,20.532,21.967,24.755 +1397,-0.3334,15.6877,0.13707,10.556,11.587,12.25,12.623,13.226,13.655,14.322,15.688,17.232,18.145,18.801,19.831,20.541,21.977,24.767 +1398,-0.3334,15.6936,0.1371,10.559,11.59,12.254,12.627,13.23,13.659,14.327,15.694,17.239,18.153,18.809,19.84,20.55,21.987,24.779 +1399,-0.3335,15.6996,0.13712,10.562,11.594,12.259,12.631,13.235,13.664,14.333,15.7,17.246,18.16,18.816,19.848,20.559,21.997,24.791 +1400,-0.3335,15.7056,0.13715,10.565,11.598,12.263,12.635,13.24,13.669,14.338,15.706,17.253,18.168,18.824,19.857,20.568,22.007,24.803 +1401,-0.3336,15.7116,0.13718,10.569,11.602,12.267,12.64,13.244,13.674,14.343,15.712,17.26,18.175,18.832,19.865,20.577,22.017,24.815 +1402,-0.3336,15.7176,0.13721,10.572,11.605,12.271,12.644,13.249,13.679,14.348,15.718,17.267,18.183,18.84,19.874,20.586,22.027,24.827 +1403,-0.3337,15.7236,0.13724,10.575,11.609,12.275,12.648,13.253,13.684,14.354,15.724,17.274,18.19,18.848,19.883,20.596,22.038,24.84 +1404,-0.3337,15.7295,0.13726,10.579,11.613,12.279,12.653,13.258,13.688,14.359,15.73,17.28,18.198,18.856,19.891,20.604,22.047,24.851 +1405,-0.3337,15.7355,0.13729,10.582,11.617,12.283,12.657,13.263,13.693,14.364,15.736,17.287,18.205,18.864,19.9,20.613,22.057,24.863 +1406,-0.3338,15.7415,0.13732,10.585,11.62,12.287,12.661,13.267,13.698,14.369,15.742,17.294,18.213,18.872,19.908,20.623,22.067,24.876 +1407,-0.3338,15.7475,0.13735,10.588,11.624,12.291,12.665,13.272,13.703,14.374,15.748,17.301,18.22,18.88,19.917,20.632,22.078,24.888 +1408,-0.3339,15.7534,0.13737,10.592,11.628,12.296,12.67,13.276,13.708,14.38,15.753,17.308,18.227,18.887,19.925,20.64,22.087,24.899 +1409,-0.3339,15.7594,0.1374,10.595,11.632,12.3,12.674,13.281,13.713,14.385,15.759,17.315,18.235,18.895,19.934,20.65,22.097,24.911 +1410,-0.3339,15.7654,0.13743,10.598,11.635,12.304,12.678,13.286,13.717,14.39,15.765,17.322,18.242,18.903,19.943,20.659,22.107,24.923 +1411,-0.334,15.7714,0.13746,10.601,11.639,12.308,12.683,13.29,13.722,14.395,15.771,17.329,18.25,18.911,19.951,20.668,22.118,24.936 +1412,-0.334,15.7774,0.13749,10.604,11.643,12.312,12.687,13.295,13.727,14.4,15.777,17.336,18.258,18.919,19.96,20.677,22.128,24.948 +1413,-0.3341,15.7833,0.13751,10.608,11.647,12.316,12.691,13.299,13.732,14.406,15.783,17.343,18.265,18.927,19.968,20.686,22.137,24.959 +1414,-0.3341,15.7893,0.13754,10.611,11.65,12.32,12.695,13.304,13.737,14.411,15.789,17.35,18.272,18.935,19.977,20.695,22.148,24.972 +1415,-0.3342,15.7953,0.13757,10.614,11.654,12.324,12.7,13.309,13.742,14.416,15.795,17.357,18.28,18.943,19.986,20.704,22.158,24.984 +1416,-0.3342,15.8013,0.1376,10.617,11.658,12.328,12.704,13.313,13.746,14.421,15.801,17.364,18.287,18.951,19.994,20.713,22.168,24.996 +1417,-0.3342,15.8072,0.13763,10.621,11.661,12.332,12.708,13.318,13.751,14.426,15.807,17.37,18.295,18.959,20.003,20.722,22.178,25.008 +1418,-0.3343,15.8132,0.13765,10.624,11.665,12.336,12.713,13.322,13.756,14.431,15.813,17.377,18.302,18.966,20.011,20.731,22.188,25.02 +1419,-0.3343,15.8192,0.13768,10.627,11.669,12.34,12.717,13.327,13.761,14.437,15.819,17.384,18.31,18.974,20.02,20.74,22.198,25.032 +1420,-0.3344,15.8252,0.13771,10.631,11.673,12.344,12.721,13.332,13.766,14.442,15.825,17.391,18.317,18.982,20.028,20.749,22.208,25.045 +1421,-0.3344,15.8311,0.13774,10.634,11.676,12.348,12.725,13.336,13.77,14.447,15.831,17.398,18.325,18.99,20.037,20.758,22.218,25.057 +1422,-0.3345,15.8371,0.13776,10.637,11.68,12.353,12.73,13.341,13.775,14.452,15.837,17.405,18.332,18.998,20.045,20.767,22.228,25.068 +1423,-0.3345,15.8431,0.13779,10.64,11.684,12.357,12.734,13.345,13.78,14.457,15.843,17.412,18.34,19.006,20.054,20.776,22.238,25.08 +1424,-0.3345,15.849,0.13782,10.643,11.688,12.361,12.738,13.35,13.785,14.463,15.849,17.419,18.347,19.014,20.063,20.785,22.248,25.092 +1425,-0.3346,15.855,0.13785,10.647,11.692,12.365,12.742,13.354,13.79,14.468,15.855,17.426,18.355,19.022,20.071,20.795,22.258,25.105 +1426,-0.3346,15.861,0.13788,10.65,11.695,12.369,12.747,13.359,13.795,14.473,15.861,17.433,18.362,19.03,20.08,20.804,22.268,25.117 +1427,-0.3347,15.8669,0.1379,10.653,11.699,12.373,12.751,13.364,13.799,14.478,15.867,17.439,18.369,19.037,20.088,20.812,22.278,25.129 +1428,-0.3347,15.8729,0.13793,10.656,11.703,12.377,12.755,13.368,13.804,14.483,15.873,17.446,18.377,19.045,20.097,20.822,22.288,25.141 +1429,-0.3348,15.8789,0.13796,10.66,11.707,12.381,12.759,13.373,13.809,14.489,15.879,17.453,18.385,19.053,20.106,20.831,22.299,25.153 +1430,-0.3348,15.8849,0.13799,10.663,11.71,12.385,12.764,13.377,13.814,14.494,15.885,17.46,18.392,19.061,20.114,20.84,22.309,25.166 +1431,-0.3348,15.8908,0.13801,10.666,11.714,12.389,12.768,13.382,13.819,14.499,15.891,17.467,18.399,19.069,20.122,20.849,22.318,25.177 +1432,-0.3349,15.8968,0.13804,10.67,11.718,12.393,12.772,13.387,13.824,14.504,15.897,17.474,18.407,19.077,20.131,20.858,22.328,25.189 +1433,-0.3349,15.9028,0.13807,10.673,11.722,12.397,12.777,13.391,13.828,14.509,15.903,17.481,18.414,19.085,20.14,20.867,22.339,25.201 +1434,-0.335,15.9087,0.1381,10.676,11.725,12.401,12.781,13.396,13.833,14.514,15.909,17.488,18.422,19.093,20.148,20.876,22.349,25.214 +1435,-0.335,15.9147,0.13813,10.679,11.729,12.405,12.785,13.4,13.838,14.52,15.915,17.495,18.429,19.101,20.157,20.885,22.359,25.226 +1436,-0.3351,15.9207,0.13815,10.683,11.733,12.41,12.789,13.405,13.843,14.525,15.921,17.502,18.437,19.109,20.166,20.894,22.369,25.238 +1437,-0.3351,15.9266,0.13818,10.686,11.736,12.414,12.794,13.409,13.848,14.53,15.927,17.508,18.444,19.116,20.174,20.903,22.379,25.25 +1438,-0.3351,15.9326,0.13821,10.689,11.74,12.418,12.798,13.414,13.852,14.535,15.933,17.515,18.452,19.124,20.183,20.912,22.389,25.262 +1439,-0.3352,15.9386,0.13824,10.692,11.744,12.422,12.802,13.419,13.857,14.54,15.939,17.522,18.459,19.132,20.191,20.922,22.399,25.275 +1440,-0.3352,15.9445,0.13826,10.695,11.748,12.426,12.806,13.423,13.862,14.546,15.945,17.529,18.467,19.14,20.2,20.93,22.409,25.286 +1441,-0.3353,15.9505,0.13829,10.699,11.751,12.43,12.811,13.428,13.867,14.551,15.951,17.536,18.474,19.148,20.208,20.939,22.419,25.298 +1442,-0.3353,15.9565,0.13832,10.702,11.755,12.434,12.815,13.432,13.872,14.556,15.957,17.543,18.482,19.156,20.217,20.949,22.429,25.311 +1443,-0.3354,15.9624,0.13835,10.705,11.759,12.438,12.819,13.437,13.876,14.561,15.962,17.55,18.489,19.164,20.226,20.958,22.439,25.323 +1444,-0.3354,15.9684,0.13838,10.708,11.762,12.442,12.823,13.441,13.881,14.566,15.968,17.557,18.497,19.172,20.234,20.967,22.45,25.335 +1445,-0.3354,15.9744,0.1384,10.712,11.766,12.446,12.828,13.446,13.886,14.572,15.974,17.564,18.504,19.18,20.243,20.976,22.459,25.347 +1446,-0.3355,15.9803,0.13843,10.715,11.77,12.45,12.832,13.451,13.891,14.577,15.98,17.57,18.512,19.188,20.251,20.985,22.469,25.359 +1447,-0.3355,15.9863,0.13846,10.718,11.774,12.454,12.836,13.455,13.896,14.582,15.986,17.577,18.519,19.196,20.26,20.994,22.48,25.371 +1448,-0.3356,15.9922,0.13849,10.721,11.777,12.458,12.84,13.46,13.9,14.587,15.992,17.584,18.527,19.203,20.269,21.003,22.49,25.384 +1449,-0.3356,15.9982,0.13851,10.725,11.781,12.463,12.845,13.464,13.905,14.592,15.998,17.591,18.534,19.211,20.277,21.012,22.499,25.395 +1450,-0.3357,16.0042,0.13854,10.728,11.785,12.467,12.849,13.469,13.91,14.597,16.004,17.598,18.542,19.219,20.286,21.021,22.51,25.407 +1451,-0.3357,16.0101,0.13857,10.731,11.789,12.471,12.853,13.474,13.915,14.602,16.01,17.605,18.549,19.227,20.294,21.03,22.52,25.42 +1452,-0.3357,16.0161,0.1386,10.734,11.792,12.475,12.857,13.478,13.92,14.608,16.016,17.612,18.557,19.235,20.303,21.039,22.53,25.432 +1453,-0.3358,16.0221,0.13862,10.737,11.796,12.479,12.862,13.483,13.925,14.613,16.022,17.619,18.564,19.243,20.311,21.048,22.54,25.444 +1454,-0.3358,16.028,0.13865,10.741,11.8,12.483,12.866,13.487,13.929,14.618,16.028,17.626,18.571,19.251,20.32,21.057,22.55,25.456 +1455,-0.3359,16.034,0.13868,10.744,11.804,12.487,12.87,13.492,13.934,14.623,16.034,17.633,18.579,19.259,20.329,21.066,22.56,25.468 +1456,-0.3359,16.0399,0.13871,10.747,11.807,12.491,12.874,13.496,13.939,14.628,16.04,17.639,18.586,19.267,20.337,21.075,22.57,25.48 +1457,-0.3359,16.0459,0.13873,10.75,11.811,12.495,12.879,13.501,13.944,14.634,16.046,17.646,18.594,19.274,20.346,21.084,22.58,25.492 +1458,-0.336,16.0519,0.13876,10.754,11.815,12.499,12.883,13.506,13.949,14.639,16.052,17.653,18.601,19.282,20.354,21.093,22.59,25.504 +1459,-0.336,16.0578,0.13879,10.757,11.818,12.503,12.887,13.51,13.953,14.644,16.058,17.66,18.609,19.29,20.363,21.103,22.6,25.516 +1460,-0.3361,16.0638,0.13882,10.76,11.822,12.507,12.891,13.515,13.958,14.649,16.064,17.667,18.616,19.298,20.372,21.112,22.611,25.529 +1461,-0.3361,16.0697,0.13884,10.763,11.826,12.511,12.896,13.519,13.963,14.654,16.07,17.674,18.624,19.306,20.38,21.12,22.62,25.54 +1462,-0.3362,16.0757,0.13887,10.766,11.83,12.515,12.9,13.524,13.968,14.659,16.076,17.681,18.631,19.314,20.389,21.13,22.63,25.553 +1463,-0.3362,16.0817,0.1389,10.77,11.833,12.519,12.904,13.528,13.973,14.665,16.082,17.688,18.639,19.322,20.397,21.139,22.641,25.565 +1464,-0.3362,16.0876,0.13893,10.773,11.837,12.523,12.908,13.533,13.977,14.67,16.088,17.695,18.646,19.33,20.406,21.148,22.651,25.577 +1465,-0.3363,16.0936,0.13895,10.776,11.841,12.528,12.913,13.538,13.982,14.675,16.094,17.702,18.654,19.338,20.414,21.157,22.661,25.589 +1466,-0.3363,16.0995,0.13898,10.779,11.845,12.532,12.917,13.542,13.987,14.68,16.099,17.708,18.661,19.345,20.423,21.166,22.671,25.601 +1467,-0.3364,16.1055,0.13901,10.783,11.848,12.536,12.921,13.547,13.992,14.685,16.106,17.715,18.669,19.353,20.432,21.175,22.681,25.614 +1468,-0.3364,16.1115,0.13904,10.786,11.852,12.54,12.926,13.551,13.997,14.691,16.112,17.722,18.676,19.361,20.44,21.184,22.691,25.626 +1469,-0.3365,16.1174,0.13907,10.789,11.856,12.544,12.93,13.556,14.001,14.696,16.117,17.729,18.684,19.369,20.449,21.194,22.701,25.639 +1470,-0.3365,16.1234,0.13909,10.792,11.86,12.548,12.934,13.561,14.006,14.701,16.123,17.736,18.691,19.377,20.457,21.202,22.711,25.65 +1471,-0.3365,16.1293,0.13912,10.795,11.863,12.552,12.938,13.565,14.011,14.706,16.129,17.743,18.698,19.385,20.466,21.211,22.721,25.662 +1472,-0.3366,16.1353,0.13915,10.799,11.867,12.556,12.943,13.57,14.016,14.711,16.135,17.75,18.706,19.393,20.475,21.221,22.732,25.675 +1473,-0.3366,16.1413,0.13918,10.802,11.871,12.56,12.947,13.574,14.021,14.716,16.141,17.757,18.714,19.401,20.483,21.23,22.742,25.687 +1474,-0.3367,16.1472,0.1392,10.805,11.874,12.564,12.951,13.579,14.025,14.722,16.147,17.764,18.721,19.409,20.492,21.239,22.751,25.699 +1475,-0.3367,16.1532,0.13923,10.808,11.878,12.568,12.955,13.583,14.03,14.727,16.153,17.771,18.728,19.417,20.5,21.248,22.762,25.711 +1476,-0.3368,16.1591,0.13926,10.811,11.882,12.572,12.959,13.588,14.035,14.732,16.159,17.777,18.736,19.425,20.509,21.257,22.772,25.723 +1477,-0.3368,16.1651,0.13928,10.815,11.886,12.576,12.964,13.593,14.04,14.737,16.165,17.784,18.743,19.432,20.517,21.266,22.782,25.735 +1478,-0.3368,16.171,0.13931,10.818,11.889,12.58,12.968,13.597,14.045,14.742,16.171,17.791,18.751,19.44,20.526,21.275,22.792,25.747 +1479,-0.3369,16.177,0.13934,10.821,11.893,12.584,12.972,13.602,14.049,14.747,16.177,17.798,18.758,19.448,20.535,21.284,22.802,25.76 +1480,-0.3369,16.1829,0.13937,10.824,11.897,12.588,12.976,13.606,14.054,14.752,16.183,17.805,18.766,19.456,20.543,21.293,22.812,25.772 +1481,-0.337,16.1889,0.13939,10.828,11.901,12.593,12.981,13.611,14.059,14.758,16.189,17.812,18.773,19.464,20.552,21.302,22.822,25.784 +1482,-0.337,16.1949,0.13942,10.831,11.904,12.597,12.985,13.615,14.064,14.763,16.195,17.819,18.781,19.472,20.56,21.311,22.832,25.796 +1483,-0.3371,16.2008,0.13945,10.834,11.908,12.601,12.989,13.62,14.069,14.768,16.201,17.826,18.788,19.48,20.569,21.32,22.842,25.808 +1484,-0.3371,16.2068,0.13948,10.837,11.911,12.605,12.993,13.624,14.073,14.773,16.207,17.833,18.796,19.488,20.578,21.33,22.853,25.821 +1485,-0.3371,16.2127,0.1395,10.841,11.915,12.609,12.998,13.629,14.078,14.778,16.213,17.839,18.803,19.496,20.586,21.338,22.862,25.832 +1486,-0.3372,16.2187,0.13953,10.844,11.919,12.613,13.002,13.634,14.083,14.784,16.219,17.846,18.811,19.504,20.595,21.348,22.873,25.845 +1487,-0.3372,16.2246,0.13956,10.847,11.923,12.617,13.006,13.638,14.088,14.789,16.225,17.853,18.818,19.511,20.603,21.357,22.883,25.857 +1488,-0.3373,16.2306,0.13959,10.85,11.926,12.621,13.01,13.643,14.092,14.794,16.231,17.86,18.826,19.52,20.612,21.366,22.893,25.87 +1489,-0.3373,16.2365,0.13961,10.853,11.93,12.625,13.015,13.647,14.097,14.799,16.237,17.867,18.833,19.527,20.62,21.375,22.903,25.881 +1490,-0.3374,16.2425,0.13964,10.857,11.934,12.629,13.019,13.652,14.102,14.804,16.243,17.874,18.841,19.535,20.629,21.384,22.913,25.893 +1491,-0.3374,16.2485,0.13967,10.86,11.938,12.633,13.023,13.656,14.107,14.809,16.249,17.881,18.848,19.543,20.638,21.393,22.923,25.906 +1492,-0.3374,16.2544,0.1397,10.863,11.941,12.637,13.027,13.661,14.112,14.814,16.254,17.888,18.856,19.551,20.647,21.402,22.933,25.918 +1493,-0.3375,16.2604,0.13972,10.866,11.945,12.641,13.032,13.666,14.117,14.82,16.26,17.895,18.863,19.559,20.655,21.411,22.943,25.93 +1494,-0.3375,16.2663,0.13975,10.869,11.949,12.645,13.036,13.67,14.121,14.825,16.266,17.902,18.87,19.567,20.664,21.42,22.953,25.942 +1495,-0.3376,16.2723,0.13978,10.873,11.952,12.649,13.04,13.675,14.126,14.83,16.272,17.909,18.878,19.575,20.672,21.429,22.964,25.955 +1496,-0.3376,16.2782,0.1398,10.876,11.956,12.653,13.044,13.679,14.131,14.835,16.278,17.915,18.885,19.582,20.681,21.438,22.973,25.966 +1497,-0.3377,16.2842,0.13983,10.879,11.96,12.657,13.049,13.684,14.136,14.84,16.284,17.922,18.893,19.591,20.689,21.447,22.984,25.979 +1498,-0.3377,16.2901,0.13986,10.882,11.963,12.661,13.053,13.688,14.14,14.845,16.29,17.929,18.9,19.598,20.698,21.457,22.994,25.991 +1499,-0.3377,16.2961,0.13989,10.885,11.967,12.665,13.057,13.693,14.145,14.851,16.296,17.936,18.908,19.606,20.707,21.466,23.004,26.003 +1500,-0.3378,16.302,0.13991,10.889,11.971,12.669,13.061,13.697,14.15,14.856,16.302,17.943,18.915,19.614,20.715,21.475,23.014,26.015 +1501,-0.3378,16.308,0.13994,10.892,11.975,12.673,13.066,13.702,14.155,14.861,16.308,17.95,18.923,19.622,20.724,21.484,23.024,26.027 +1502,-0.3379,16.314,0.13997,10.895,11.978,12.677,13.07,13.707,14.16,14.866,16.314,17.957,18.93,19.63,20.732,21.493,23.034,26.04 +1503,-0.3379,16.3199,0.14,10.898,11.982,12.681,13.074,13.711,14.164,14.871,16.32,17.964,18.938,19.638,20.741,21.502,23.045,26.052 +1504,-0.338,16.3259,0.14002,10.902,11.986,12.686,13.078,13.716,14.169,14.877,16.326,17.971,18.945,19.646,20.75,21.511,23.054,26.064 +1505,-0.338,16.3318,0.14005,10.905,11.99,12.69,13.083,13.72,14.174,14.882,16.332,17.977,18.953,19.654,20.758,21.52,23.065,26.076 +1506,-0.338,16.3378,0.14008,10.908,11.993,12.694,13.087,13.725,14.179,14.887,16.338,17.984,18.96,19.662,20.767,21.529,23.075,26.089 +1507,-0.3381,16.3437,0.1401,10.911,11.997,12.698,13.091,13.729,14.184,14.892,16.344,17.991,18.968,19.669,20.775,21.538,23.084,26.1 +1508,-0.3381,16.3497,0.14013,10.914,12.001,12.702,13.095,13.734,14.188,14.897,16.35,17.998,18.975,19.678,20.784,21.547,23.095,26.113 +1509,-0.3382,16.3556,0.14016,10.918,12.004,12.706,13.099,13.738,14.193,14.902,16.356,18.005,18.983,19.685,20.793,21.557,23.105,26.125 +1510,-0.3382,16.3616,0.14019,10.921,12.008,12.71,13.104,13.743,14.198,14.907,16.362,18.012,18.99,19.693,20.801,21.566,23.115,26.138 +1511,-0.3383,16.3675,0.14021,10.924,12.012,12.714,13.108,13.748,14.203,14.913,16.368,18.019,18.998,19.701,20.81,21.575,23.125,26.149 +1512,-0.3383,16.3735,0.14024,10.927,12.015,12.718,13.112,13.752,14.208,14.918,16.374,18.026,19.005,19.709,20.818,21.584,23.135,26.162 +1513,-0.3383,16.3794,0.14027,10.93,12.019,12.722,13.116,13.757,14.212,14.923,16.379,18.033,19.013,19.717,20.827,21.593,23.145,26.174 +1514,-0.3384,16.3854,0.14029,10.934,12.023,12.726,13.121,13.761,14.217,14.928,16.385,18.039,19.02,19.725,20.835,21.602,23.155,26.186 +1515,-0.3384,16.3913,0.14032,10.937,12.027,12.73,13.125,13.766,14.222,14.933,16.391,18.046,19.027,19.733,20.844,21.611,23.165,26.198 +1516,-0.3385,16.3973,0.14035,10.94,12.03,12.734,13.129,13.77,14.227,14.938,16.397,18.053,19.035,19.741,20.853,21.62,23.176,26.211 +1517,-0.3385,16.4032,0.14038,10.943,12.034,12.738,13.133,13.775,14.231,14.944,16.403,18.06,19.043,19.749,20.861,21.629,23.186,26.223 +1518,-0.3386,16.4092,0.1404,10.947,12.038,12.742,13.138,13.779,14.236,14.949,16.409,18.067,19.05,19.757,20.87,21.638,23.196,26.235 +1519,-0.3386,16.4151,0.14043,10.95,12.041,12.746,13.142,13.784,14.241,14.954,16.415,18.074,19.057,19.764,20.879,21.647,23.206,26.247 +1520,-0.3386,16.4211,0.14046,10.953,12.045,12.75,13.146,13.788,14.246,14.959,16.421,18.081,19.065,19.773,20.887,21.657,23.216,26.26 +1521,-0.3387,16.427,0.14048,10.956,12.049,12.754,13.15,13.793,14.251,14.964,16.427,18.088,19.072,19.78,20.896,21.665,23.226,26.271 +1522,-0.3387,16.433,0.14051,10.959,12.053,12.758,13.155,13.798,14.255,14.969,16.433,18.095,19.08,19.788,20.904,21.675,23.236,26.284 +1523,-0.3388,16.4389,0.14054,10.962,12.056,12.762,13.159,13.802,14.26,14.974,16.439,18.102,19.087,19.796,20.913,21.684,23.247,26.296 +1524,-0.3388,16.4449,0.14056,10.966,12.06,12.767,13.163,13.807,14.265,14.98,16.445,18.108,19.095,19.804,20.921,21.693,23.256,26.308 +1525,-0.3389,16.4508,0.14059,10.969,12.064,12.77,13.167,13.811,14.27,14.985,16.451,18.115,19.102,19.812,20.93,21.702,23.267,26.32 +1526,-0.3389,16.4568,0.14062,10.972,12.067,12.774,13.172,13.816,14.275,14.99,16.457,18.122,19.11,19.82,20.939,21.711,23.277,26.333 +1527,-0.3389,16.4627,0.14065,10.975,12.071,12.778,13.176,13.82,14.279,14.995,16.463,18.129,19.117,19.828,20.947,21.72,23.287,26.345 +1528,-0.339,16.4687,0.14067,10.979,12.075,12.783,13.18,13.825,14.284,15,16.469,18.136,19.125,19.836,20.956,21.729,23.297,26.357 +1529,-0.339,16.4746,0.1407,10.982,12.078,12.787,13.184,13.829,14.289,15.005,16.475,18.143,19.132,19.844,20.965,21.738,23.307,26.369 +1530,-0.3391,16.4806,0.14073,10.985,12.082,12.791,13.188,13.834,14.294,15.011,16.481,18.15,19.14,19.852,20.973,21.748,23.318,26.382 +1531,-0.3391,16.4865,0.14075,10.988,12.086,12.795,13.193,13.839,14.299,15.016,16.487,18.157,19.147,19.859,20.982,21.756,23.327,26.393 +1532,-0.3392,16.4925,0.14078,10.991,12.09,12.799,13.197,13.843,14.303,15.021,16.493,18.164,19.155,19.867,20.99,21.766,23.338,26.406 +1533,-0.3392,16.4984,0.14081,10.994,12.093,12.803,13.201,13.848,14.308,15.026,16.498,18.171,19.162,19.875,20.999,21.775,23.348,26.419 +1534,-0.3392,16.5044,0.14083,10.998,12.097,12.807,13.205,13.852,14.313,15.031,16.504,18.177,19.17,19.883,21.007,21.784,23.358,26.43 +1535,-0.3393,16.5103,0.14086,11.001,12.101,12.811,13.21,13.857,14.318,15.036,16.51,18.184,19.177,19.891,21.016,21.793,23.368,26.443 +1536,-0.3393,16.5163,0.14089,11.004,12.104,12.815,13.214,13.861,14.322,15.042,16.516,18.191,19.185,19.899,21.025,21.802,23.378,26.455 +1537,-0.3394,16.5222,0.14091,11.008,12.108,12.819,13.218,13.866,14.327,15.047,16.522,18.198,19.192,19.907,21.033,21.811,23.388,26.467 +1538,-0.3394,16.5282,0.14094,11.011,12.112,12.823,13.222,13.871,14.332,15.052,16.528,18.205,19.2,19.915,21.042,21.82,23.398,26.479 +1539,-0.3395,16.5341,0.14097,11.014,12.115,12.827,13.227,13.875,14.337,15.057,16.534,18.212,19.207,19.923,21.051,21.829,23.409,26.492 +1540,-0.3395,16.5401,0.141,11.017,12.119,12.831,13.231,13.88,14.342,15.062,16.54,18.219,19.215,19.931,21.06,21.839,23.419,26.505 +1541,-0.3396,16.546,0.14102,11.02,12.123,12.835,13.235,13.884,14.346,15.067,16.546,18.226,19.222,19.939,21.068,21.848,23.429,26.516 +1542,-0.3396,16.552,0.14105,11.023,12.127,12.839,13.239,13.889,14.351,15.073,16.552,18.233,19.23,19.947,21.077,21.857,23.439,26.529 +1543,-0.3396,16.5579,0.14108,11.026,12.13,12.843,13.243,13.893,14.356,15.078,16.558,18.24,19.237,19.954,21.085,21.866,23.449,26.541 +1544,-0.3397,16.5639,0.1411,11.03,12.134,12.847,13.248,13.898,14.361,15.083,16.564,18.246,19.244,19.962,21.094,21.875,23.459,26.553 +1545,-0.3397,16.5698,0.14113,11.033,12.138,12.851,13.252,13.902,14.365,15.088,16.57,18.253,19.252,19.97,21.102,21.884,23.469,26.565 +1546,-0.3398,16.5758,0.14116,11.036,12.141,12.855,13.256,13.907,14.37,15.093,16.576,18.26,19.26,19.978,21.111,21.893,23.48,26.578 +1547,-0.3398,16.5817,0.14118,11.04,12.145,12.859,13.26,13.911,14.375,15.098,16.582,18.267,19.267,19.986,21.119,21.902,23.489,26.59 +1548,-0.3399,16.5876,0.14121,11.043,12.149,12.863,13.265,13.916,14.38,15.103,16.588,18.274,19.274,19.994,21.128,21.911,23.5,26.602 +1549,-0.3399,16.5936,0.14124,11.046,12.152,12.867,13.269,13.92,14.385,15.109,16.594,18.281,19.282,20.002,21.137,21.921,23.51,26.615 +1550,-0.3399,16.5995,0.14126,11.049,12.156,12.871,13.273,13.925,14.389,15.114,16.6,18.288,19.289,20.01,21.145,21.929,23.52,26.626 +1551,-0.34,16.6055,0.14129,11.052,12.16,12.875,13.277,13.93,14.394,15.119,16.606,18.295,19.297,20.018,21.154,21.939,23.53,26.639 +1552,-0.34,16.6114,0.14132,11.055,12.164,12.879,13.281,13.934,14.399,15.124,16.611,18.302,19.304,20.026,21.163,21.948,23.54,26.651 +1553,-0.3401,16.6174,0.14134,11.059,12.167,12.884,13.286,13.939,14.404,15.129,16.617,18.308,19.312,20.033,21.171,21.957,23.55,26.663 +1554,-0.3401,16.6233,0.14137,11.062,12.171,12.888,13.29,13.943,14.409,15.134,16.623,18.315,19.319,20.041,21.18,21.966,23.56,26.676 +1555,-0.3402,16.6293,0.1414,11.065,12.175,12.892,13.294,13.948,14.413,15.14,16.629,18.322,19.327,20.049,21.189,21.975,23.571,26.688 +1556,-0.3402,16.6352,0.14142,11.068,12.178,12.896,13.299,13.952,14.418,15.145,16.635,18.329,19.334,20.057,21.197,21.984,23.581,26.7 +1557,-0.3402,16.6412,0.14145,11.071,12.182,12.9,13.303,13.957,14.423,15.15,16.641,18.336,19.342,20.065,21.206,21.993,23.591,26.712 +1558,-0.3403,16.6471,0.14148,11.075,12.186,12.904,13.307,13.961,14.428,15.155,16.647,18.343,19.349,20.073,21.214,22.003,23.601,26.725 +1559,-0.3403,16.653,0.1415,11.078,12.19,12.908,13.311,13.966,14.432,15.16,16.653,18.35,19.357,20.081,21.223,22.011,23.611,26.736 +1560,-0.3404,16.659,0.14153,11.081,12.193,12.912,13.315,13.971,14.437,15.165,16.659,18.357,19.364,20.089,21.232,22.021,23.621,26.749 +1561,-0.3404,16.6649,0.14156,11.084,12.197,12.916,13.319,13.975,14.442,15.17,16.665,18.364,19.372,20.097,21.24,22.03,23.632,26.762 +1562,-0.3405,16.6709,0.14158,11.088,12.201,12.92,13.324,13.98,14.447,15.176,16.671,18.37,19.379,20.105,21.249,22.039,23.642,26.774 +1563,-0.3405,16.6768,0.14161,11.091,12.204,12.924,13.328,13.984,14.452,15.181,16.677,18.377,19.387,20.113,21.257,22.048,23.652,26.786 +1564,-0.3405,16.6828,0.14164,11.094,12.208,12.928,13.332,13.989,14.456,15.186,16.683,18.384,19.394,20.121,21.266,22.057,23.662,26.799 +1565,-0.3406,16.6887,0.14166,11.097,12.212,12.932,13.337,13.993,14.461,15.191,16.689,18.391,19.402,20.128,21.274,22.066,23.672,26.81 +1566,-0.3406,16.6947,0.14169,11.1,12.215,12.936,13.341,13.998,14.466,15.196,16.695,18.398,19.409,20.136,21.283,22.075,23.682,26.823 +1567,-0.3407,16.7006,0.14172,11.103,12.219,12.94,13.345,14.002,14.471,15.201,16.701,18.405,19.417,20.144,21.292,22.085,23.693,26.836 +1568,-0.3407,16.7065,0.14174,11.107,12.223,12.944,13.349,14.007,14.475,15.206,16.707,18.412,19.424,20.152,21.3,22.093,23.702,26.847 +1569,-0.3408,16.7125,0.14177,11.11,12.226,12.948,13.353,14.011,14.48,15.212,16.713,18.419,19.432,20.16,21.309,22.103,23.713,26.86 +1570,-0.3408,16.7184,0.14179,11.113,12.23,12.952,13.358,14.016,14.485,15.217,16.718,18.426,19.439,20.168,21.317,22.111,23.722,26.871 +1571,-0.3408,16.7244,0.14182,11.116,12.234,12.956,13.362,14.021,14.49,15.222,16.724,18.433,19.446,20.176,21.326,22.121,23.733,26.884 +1572,-0.3409,16.7303,0.14185,11.119,12.238,12.96,13.366,14.025,14.494,15.227,16.73,18.439,19.454,20.184,21.335,22.13,23.743,26.897 +1573,-0.3409,16.7363,0.14187,11.123,12.241,12.964,13.37,14.03,14.499,15.232,16.736,18.446,19.461,20.192,21.343,22.139,23.753,26.908 +1574,-0.341,16.7422,0.1419,11.126,12.245,12.968,13.375,14.034,14.504,15.237,16.742,18.453,19.469,20.2,21.352,22.148,23.763,26.921 +1575,-0.341,16.7481,0.14193,11.129,12.249,12.972,13.379,14.039,14.509,15.242,16.748,18.46,19.476,20.208,21.361,22.157,23.774,26.933 +1576,-0.3411,16.7541,0.14195,11.132,12.252,12.976,13.383,14.043,14.514,15.248,16.754,18.467,19.484,20.215,21.369,22.166,23.784,26.945 +1577,-0.3411,16.76,0.14198,11.135,12.256,12.98,13.387,14.048,14.518,15.253,16.76,18.474,19.491,20.223,21.378,22.175,23.794,26.958 +1578,-0.3412,16.766,0.14201,11.139,12.26,12.984,13.391,14.052,14.523,15.258,16.766,18.481,19.499,20.232,21.387,22.185,23.804,26.971 +1579,-0.3412,16.7719,0.14203,11.142,12.263,12.988,13.396,14.057,14.528,15.263,16.772,18.488,19.506,20.239,21.395,22.194,23.814,26.982 +1580,-0.3412,16.7778,0.14206,11.145,12.267,12.992,13.4,14.061,14.533,15.268,16.778,18.495,19.514,20.247,21.404,22.203,23.824,26.995 +1581,-0.3413,16.7838,0.14209,11.148,12.271,12.996,13.404,14.066,14.537,15.273,16.784,18.502,19.521,20.255,21.413,22.212,23.835,27.007 +1582,-0.3413,16.7897,0.14211,11.151,12.275,13,13.408,14.07,14.542,15.279,16.79,18.508,19.529,20.263,21.421,22.221,23.844,27.019 +1583,-0.3414,16.7957,0.14214,11.155,12.278,13.004,13.412,14.075,14.547,15.284,16.796,18.515,19.536,20.271,21.43,22.23,23.855,27.032 +1584,-0.3414,16.8016,0.14216,11.158,12.282,13.009,13.417,14.08,14.552,15.289,16.802,18.522,19.544,20.279,21.438,22.239,23.865,27.043 +1585,-0.3415,16.8075,0.14219,11.161,12.286,13.013,13.421,14.084,14.557,15.294,16.808,18.529,19.551,20.287,21.447,22.248,23.875,27.056 +1586,-0.3415,16.8135,0.14222,11.164,12.289,13.016,13.425,14.089,14.561,15.299,16.814,18.536,19.559,20.295,21.456,22.258,23.885,27.069 +1587,-0.3415,16.8194,0.14224,11.167,12.293,13.021,13.429,14.093,14.566,15.304,16.819,18.543,19.566,20.302,21.464,22.266,23.895,27.08 +1588,-0.3416,16.8254,0.14227,11.171,12.297,13.025,13.434,14.098,14.571,15.309,16.825,18.55,19.574,20.311,21.473,22.276,23.906,27.093 +1589,-0.3416,16.8313,0.1423,11.174,12.3,13.029,13.438,14.102,14.576,15.315,16.831,18.557,19.581,20.319,21.481,22.285,23.916,27.106 +1590,-0.3417,16.8372,0.14232,11.177,12.304,13.033,13.442,14.107,14.58,15.32,16.837,18.563,19.589,20.326,21.49,22.294,23.926,27.117 +1591,-0.3417,16.8432,0.14235,11.18,12.308,13.037,13.446,14.111,14.585,15.325,16.843,18.57,19.596,20.334,21.499,22.303,23.936,27.13 +1592,-0.3418,16.8491,0.14237,11.183,12.312,13.041,13.451,14.116,14.59,15.33,16.849,18.577,19.603,20.342,21.507,22.312,23.946,27.142 +1593,-0.3418,16.855,0.1424,11.187,12.315,13.045,13.455,14.12,14.595,15.335,16.855,18.584,19.611,20.35,21.516,22.321,23.956,27.154 +1594,-0.3418,16.861,0.14243,11.19,12.319,13.049,13.459,14.125,14.6,15.34,16.861,18.591,19.619,20.358,21.525,22.33,23.966,27.167 +1595,-0.3419,16.8669,0.14245,11.193,12.323,13.053,13.463,14.13,14.604,15.345,16.867,18.598,19.626,20.366,21.533,22.339,23.976,27.179 +1596,-0.3419,16.8729,0.14248,11.196,12.326,13.057,13.467,14.134,14.609,15.351,16.873,18.605,19.634,20.374,21.542,22.349,23.987,27.191 +1597,-0.342,16.8788,0.14251,11.199,12.33,13.061,13.471,14.138,14.614,15.356,16.879,18.612,19.641,20.382,21.55,22.358,23.997,27.204 +1598,-0.342,16.8847,0.14253,11.202,12.334,13.065,13.476,14.143,14.619,15.361,16.885,18.619,19.648,20.39,21.559,22.367,24.007,27.216 +1599,-0.3421,16.8907,0.14256,11.206,12.337,13.069,13.48,14.148,14.623,15.366,16.891,18.626,19.656,20.398,21.568,22.376,24.017,27.229 +1600,-0.3421,16.8966,0.14258,11.209,12.341,13.073,13.484,14.152,14.628,15.371,16.897,18.632,19.663,20.405,21.576,22.385,24.027,27.24 +1601,-0.3421,16.9025,0.14261,11.212,12.345,13.077,13.488,14.157,14.633,15.376,16.903,18.639,19.671,20.413,21.585,22.394,24.037,27.253 +1602,-0.3422,16.9085,0.14264,11.215,12.348,13.081,13.493,14.161,14.638,15.381,16.909,18.646,19.678,20.421,21.594,22.403,24.048,27.266 +1603,-0.3422,16.9144,0.14266,11.218,12.352,13.085,13.497,14.166,14.642,15.387,16.914,18.653,19.686,20.429,21.602,22.412,24.058,27.277 +1604,-0.3423,16.9203,0.14269,11.222,12.356,13.089,13.501,14.17,14.647,15.392,16.92,18.66,19.693,20.437,21.611,22.422,24.068,27.29 +1605,-0.3423,16.9263,0.14271,11.225,12.359,13.093,13.505,14.175,14.652,15.397,16.926,18.667,19.701,20.445,21.619,22.43,24.078,27.302 +1606,-0.3424,16.9322,0.14274,11.228,12.363,13.097,13.509,14.179,14.657,15.402,16.932,18.674,19.708,20.453,21.628,22.44,24.088,27.314 +1607,-0.3424,16.9381,0.14277,11.231,12.367,13.101,13.514,14.184,14.661,15.407,16.938,18.681,19.716,20.461,21.636,22.449,24.099,27.327 +1608,-0.3425,16.9441,0.14279,11.234,12.371,13.105,13.518,14.189,14.666,15.412,16.944,18.687,19.723,20.469,21.645,22.458,24.108,27.339 +1609,-0.3425,16.95,0.14282,11.238,12.374,13.109,13.522,14.193,14.671,15.417,16.95,18.694,19.731,20.477,21.654,22.467,24.119,27.351 +1610,-0.3425,16.9559,0.14284,11.241,12.378,13.113,13.526,14.198,14.676,15.422,16.956,18.701,19.738,20.484,21.662,22.476,24.128,27.363 +1611,-0.3426,16.9619,0.14287,11.244,12.381,13.117,13.531,14.202,14.681,15.428,16.962,18.708,19.746,20.493,21.671,22.485,24.139,27.376 +1612,-0.3426,16.9678,0.1429,11.247,12.385,13.121,13.535,14.206,14.685,15.433,16.968,18.715,19.753,20.5,21.68,22.495,24.149,27.388 +1613,-0.3427,16.9737,0.14292,11.25,12.389,13.125,13.539,14.211,14.69,15.438,16.974,18.722,19.76,20.508,21.688,22.503,24.159,27.4 +1614,-0.3427,16.9796,0.14295,11.253,12.392,13.129,13.543,14.216,14.695,15.443,16.98,18.729,19.768,20.516,21.697,22.513,24.169,27.413 +1615,-0.3428,16.9856,0.14297,11.257,12.396,13.133,13.547,14.22,14.7,15.448,16.986,18.736,19.775,20.524,21.705,22.522,24.179,27.425 +1616,-0.3428,16.9915,0.143,11.26,12.4,13.137,13.552,14.225,14.704,15.453,16.992,18.743,19.783,20.532,21.714,22.531,24.19,27.437 +1617,-0.3428,16.9974,0.14303,11.263,12.403,13.141,13.556,14.229,14.709,15.458,16.997,18.749,19.79,20.54,21.723,22.54,24.2,27.45 +1618,-0.3429,17.0034,0.14305,11.266,12.407,13.145,13.56,14.234,14.714,15.464,17.003,18.756,19.798,20.548,21.731,22.549,24.21,27.462 +1619,-0.3429,17.0093,0.14308,11.269,12.411,13.149,13.564,14.238,14.719,15.469,17.009,18.763,19.805,20.556,21.74,22.558,24.22,27.474 +1620,-0.343,17.0152,0.1431,11.273,12.415,13.153,13.568,14.243,14.723,15.474,17.015,18.77,19.813,20.564,21.748,22.567,24.23,27.486 +1621,-0.343,17.0211,0.14313,11.276,12.418,13.157,13.573,14.247,14.728,15.479,17.021,18.777,19.82,20.571,21.757,22.576,24.24,27.499 +1622,-0.3431,17.0271,0.14315,11.279,12.422,13.161,13.577,14.252,14.733,15.484,17.027,18.784,19.828,20.579,21.765,22.585,24.25,27.511 +1623,-0.3431,17.033,0.14318,11.282,12.426,13.165,13.581,14.256,14.738,15.489,17.033,18.791,19.835,20.587,21.774,22.595,24.261,27.523 +1624,-0.3431,17.0389,0.14321,11.285,12.429,13.169,13.585,14.261,14.742,15.494,17.039,18.798,19.843,20.595,21.783,22.604,24.271,27.536 +1625,-0.3432,17.0448,0.14323,11.289,12.433,13.173,13.589,14.265,14.747,15.499,17.045,18.804,19.85,20.603,21.791,22.613,24.281,27.548 +1626,-0.3432,17.0508,0.14326,11.292,12.437,13.177,13.594,14.27,14.752,15.505,17.051,18.811,19.858,20.611,21.8,22.622,24.291,27.561 +1627,-0.3433,17.0567,0.14328,11.295,12.44,13.181,13.598,14.275,14.757,15.51,17.057,18.818,19.865,20.619,21.808,22.631,24.301,27.572 +1628,-0.3433,17.0626,0.14331,11.298,12.444,13.185,13.602,14.279,14.761,15.515,17.063,18.825,19.873,20.627,21.817,22.64,24.312,27.585 +1629,-0.3434,17.0685,0.14334,11.301,12.448,13.189,13.606,14.283,14.766,15.52,17.069,18.832,19.88,20.635,21.826,22.649,24.322,27.598 +1630,-0.3434,17.0744,0.14336,11.304,12.451,13.193,13.61,14.288,14.771,15.525,17.074,18.839,19.887,20.643,21.834,22.658,24.332,27.609 +1631,-0.3434,17.0804,0.14339,11.307,12.455,13.197,13.615,14.293,14.776,15.53,17.08,18.846,19.895,20.651,21.843,22.668,24.342,27.622 +1632,-0.3435,17.0863,0.14341,11.311,12.459,13.201,13.619,14.297,14.781,15.535,17.086,18.853,19.902,20.658,21.852,22.676,24.352,27.634 +1633,-0.3435,17.0922,0.14344,11.314,12.462,13.205,13.623,14.302,14.785,15.54,17.092,18.859,19.91,20.666,21.86,22.686,24.362,27.647 +1634,-0.3436,17.0981,0.14346,11.317,12.466,13.209,13.627,14.306,14.79,15.546,17.098,18.866,19.917,20.674,21.869,22.695,24.372,27.658 +1635,-0.3436,17.104,0.14349,11.32,12.47,13.213,13.631,14.311,14.795,15.551,17.104,18.873,19.925,20.682,21.877,22.704,24.383,27.671 +1636,-0.3437,17.11,0.14352,11.323,12.473,13.217,13.636,14.315,14.799,15.556,17.11,18.88,19.932,20.69,21.886,22.713,24.393,27.684 +1637,-0.3437,17.1159,0.14354,11.327,12.477,13.221,13.64,14.32,14.804,15.561,17.116,18.887,19.94,20.698,21.895,22.722,24.403,27.696 +1638,-0.3438,17.1218,0.14357,11.33,12.481,13.225,13.644,14.324,14.809,15.566,17.122,18.894,19.947,20.706,21.903,22.731,24.413,27.709 +1639,-0.3438,17.1277,0.14359,11.333,12.484,13.229,13.648,14.329,14.814,15.571,17.128,18.901,19.955,20.714,21.912,22.74,24.423,27.72 +1640,-0.3438,17.1336,0.14362,11.336,12.488,13.233,13.652,14.333,14.818,15.576,17.134,18.908,19.962,20.722,21.92,22.749,24.433,27.733 +1641,-0.3439,17.1395,0.14364,11.339,12.492,13.237,13.657,14.338,14.823,15.581,17.14,18.914,19.969,20.729,21.929,22.758,24.443,27.745 +1642,-0.3439,17.1455,0.14367,11.343,12.495,13.241,13.661,14.342,14.828,15.587,17.146,18.921,19.977,20.738,21.938,22.768,24.454,27.757 +1643,-0.344,17.1514,0.14369,11.346,12.499,13.246,13.665,14.347,14.833,15.592,17.151,18.928,19.984,20.745,21.946,22.777,24.464,27.769 +1644,-0.344,17.1573,0.14372,11.349,12.503,13.249,13.669,14.351,14.838,15.597,17.157,18.935,19.992,20.753,21.955,22.786,24.474,27.782 +1645,-0.3441,17.1632,0.14375,11.352,12.506,13.253,13.673,14.356,14.842,15.602,17.163,18.942,20,20.761,21.964,22.795,24.484,27.795 +1646,-0.3441,17.1691,0.14377,11.355,12.51,13.257,13.678,14.36,14.847,15.607,17.169,18.949,20.007,20.769,21.972,22.804,24.494,27.806 +1647,-0.3441,17.175,0.1438,11.358,12.514,13.261,13.682,14.365,14.852,15.612,17.175,18.956,20.014,20.777,21.981,22.813,24.504,27.819 +1648,-0.3442,17.1809,0.14382,11.362,12.517,13.265,13.686,14.369,14.856,15.617,17.181,18.962,20.022,20.785,21.989,22.822,24.514,27.831 +1649,-0.3442,17.1868,0.14385,11.365,12.521,13.269,13.69,14.374,14.861,15.622,17.187,18.969,20.029,20.793,21.998,22.831,24.525,27.844 +1650,-0.3443,17.1927,0.14387,11.368,12.525,13.273,13.694,14.378,14.866,15.627,17.193,18.976,20.037,20.8,22.006,22.84,24.535,27.856 +1651,-0.3443,17.1987,0.1439,11.371,12.528,13.277,13.699,14.383,14.871,15.633,17.199,18.983,20.044,20.809,22.015,22.85,24.545,27.868 +1652,-0.3444,17.2046,0.14392,11.374,12.532,13.282,13.703,14.387,14.876,15.638,17.205,18.99,20.052,20.816,22.024,22.858,24.555,27.88 +1653,-0.3444,17.2105,0.14395,11.377,12.536,13.285,13.707,14.392,14.88,15.643,17.211,18.997,20.059,20.824,22.032,22.868,24.565,27.893 +1654,-0.3444,17.2164,0.14398,11.38,12.539,13.289,13.711,14.396,14.885,15.648,17.216,19.004,20.067,20.832,22.041,22.877,24.576,27.905 +1655,-0.3445,17.2223,0.144,11.384,12.543,13.293,13.715,14.401,14.89,15.653,17.222,19.011,20.074,20.84,22.049,22.886,24.586,27.917 +1656,-0.3445,17.2282,0.14403,11.387,12.547,13.297,13.719,14.405,14.894,15.658,17.228,19.017,20.082,20.848,22.058,22.895,24.596,27.93 +1657,-0.3446,17.2341,0.14405,11.39,12.55,13.301,13.724,14.41,14.899,15.663,17.234,19.024,20.089,20.856,22.067,22.904,24.606,27.942 +1658,-0.3446,17.24,0.14408,11.393,12.554,13.305,13.728,14.414,14.904,15.668,17.24,19.031,20.096,20.864,22.075,22.913,24.616,27.955 +1659,-0.3447,17.2459,0.1441,11.397,12.558,13.309,13.732,14.419,14.909,15.674,17.246,19.038,20.104,20.872,22.084,22.922,24.626,27.967 +1660,-0.3447,17.2518,0.14413,11.4,12.561,13.313,13.736,14.423,14.913,15.679,17.252,19.045,20.111,20.88,22.093,22.931,24.636,27.979 +1661,-0.3448,17.2577,0.14415,11.403,12.565,13.317,13.74,14.428,14.918,15.684,17.258,19.052,20.119,20.887,22.101,22.94,24.646,27.991 +1662,-0.3448,17.2636,0.14418,11.406,12.569,13.321,13.745,14.432,14.923,15.689,17.264,19.059,20.126,20.895,22.11,22.95,24.657,28.004 +1663,-0.3448,17.2695,0.1442,11.409,12.572,13.325,13.749,14.437,14.928,15.694,17.27,19.065,20.133,20.903,22.118,22.958,24.666,28.015 +1664,-0.3449,17.2754,0.14423,11.412,12.576,13.329,13.753,14.441,14.932,15.699,17.275,19.072,20.141,20.911,22.127,22.968,24.677,28.028 +1665,-0.3449,17.2813,0.14426,11.415,12.58,13.333,13.757,14.446,14.937,15.704,17.281,19.079,20.149,20.919,22.136,22.977,24.687,28.041 +1666,-0.345,17.2872,0.14428,11.419,12.583,13.337,13.761,14.45,14.942,15.709,17.287,19.086,20.156,20.927,22.144,22.986,24.697,28.053 +1667,-0.345,17.2931,0.14431,11.422,12.587,13.341,13.765,14.455,14.946,15.714,17.293,19.093,20.163,20.935,22.153,22.995,24.708,28.066 +1668,-0.3451,17.299,0.14433,11.425,12.591,13.345,13.77,14.459,14.951,15.719,17.299,19.1,20.171,20.943,22.161,23.004,24.717,28.078 +1669,-0.3451,17.3049,0.14436,11.428,12.594,13.349,13.774,14.464,14.956,15.725,17.305,19.107,20.178,20.951,22.17,23.013,24.728,28.09 +1670,-0.3451,17.3108,0.14438,11.431,12.598,13.353,13.778,14.468,14.961,15.73,17.311,19.113,20.186,20.958,22.178,23.022,24.738,28.102 +1671,-0.3452,17.3167,0.14441,11.434,12.602,13.357,13.782,14.473,14.965,15.735,17.317,19.12,20.193,20.966,22.187,23.032,24.748,28.115 +1672,-0.3452,17.3226,0.14443,11.438,12.605,13.361,13.786,14.477,14.97,15.74,17.323,19.127,20.201,20.974,22.195,23.04,24.758,28.127 +1673,-0.3453,17.3285,0.14446,11.441,12.609,13.365,13.791,14.482,14.975,15.745,17.329,19.134,20.208,20.982,22.204,23.05,24.768,28.14 +1674,-0.3453,17.3344,0.14448,11.444,12.613,13.369,13.795,14.486,14.98,15.75,17.334,19.141,20.215,20.99,22.213,23.059,24.778,28.151 +1675,-0.3454,17.3402,0.14451,11.447,12.616,13.373,13.799,14.491,14.984,15.755,17.34,19.148,20.223,20.998,22.221,23.068,24.789,28.164 +1676,-0.3454,17.3461,0.14453,11.45,12.62,13.377,13.803,14.495,14.989,15.76,17.346,19.154,20.23,21.005,22.23,23.077,24.798,28.176 +1677,-0.3454,17.352,0.14456,11.453,12.623,13.381,13.807,14.5,14.994,15.765,17.352,19.161,20.238,21.013,22.238,23.086,24.809,28.188 +1678,-0.3455,17.3579,0.14458,11.457,12.627,13.385,13.811,14.504,14.999,15.77,17.358,19.168,20.245,21.021,22.247,23.095,24.819,28.2 +1679,-0.3455,17.3638,0.14461,11.46,12.631,13.389,13.816,14.509,15.003,15.775,17.364,19.175,20.253,21.029,22.256,23.104,24.829,28.213 +1680,-0.3456,17.3697,0.14463,11.463,12.635,13.393,13.82,14.513,15.008,15.781,17.37,19.182,20.26,21.037,22.264,23.113,24.839,28.225 +1681,-0.3456,17.3756,0.14466,11.466,12.638,13.397,13.824,14.518,15.013,15.786,17.376,19.189,20.268,21.045,22.273,23.122,24.849,28.238 +1682,-0.3457,17.3815,0.14468,11.469,12.642,13.401,13.828,14.522,15.017,15.791,17.382,19.195,20.275,21.053,22.281,23.131,24.859,28.25 +1683,-0.3457,17.3873,0.14471,11.472,12.645,13.405,13.832,14.527,15.022,15.796,17.387,19.202,20.282,21.061,22.29,23.14,24.869,28.262 +1684,-0.3457,17.3932,0.14473,11.475,12.649,13.409,13.836,14.531,15.027,15.801,17.393,19.209,20.29,21.068,22.298,23.149,24.879,28.274 +1685,-0.3458,17.3991,0.14476,11.479,12.653,13.413,13.841,14.536,15.031,15.806,17.399,19.216,20.297,21.076,22.307,23.159,24.89,28.287 +1686,-0.3458,17.405,0.14479,11.481,12.656,13.417,13.845,14.54,15.036,15.811,17.405,19.223,20.305,21.084,22.316,23.168,24.9,28.3 +1687,-0.3459,17.4109,0.14481,11.485,12.66,13.421,13.849,14.545,15.041,15.816,17.411,19.23,20.312,21.092,22.324,23.177,24.91,28.312 +1688,-0.3459,17.4167,0.14484,11.488,12.663,13.425,13.853,14.549,15.046,15.821,17.417,19.237,20.32,21.1,22.333,23.186,24.92,28.324 +1689,-0.346,17.4226,0.14486,11.491,12.667,13.429,13.857,14.554,15.05,15.826,17.423,19.243,20.327,21.108,22.341,23.195,24.93,28.336 +1690,-0.346,17.4285,0.14489,11.494,12.671,13.433,13.861,14.558,15.055,15.831,17.429,19.25,20.334,21.116,22.35,23.204,24.941,28.349 +1691,-0.346,17.4344,0.14491,11.497,12.674,13.437,13.866,14.563,15.06,15.837,17.434,19.257,20.342,21.124,22.358,23.213,24.95,28.361 +1692,-0.3461,17.4403,0.14494,11.5,12.678,13.441,13.87,14.567,15.064,15.842,17.44,19.264,20.349,21.132,22.367,23.222,24.961,28.374 +1693,-0.3461,17.4461,0.14496,11.504,12.682,13.445,13.874,14.572,15.069,15.847,17.446,19.271,20.357,21.139,22.376,23.231,24.971,28.385 +1694,-0.3462,17.452,0.14499,11.507,12.685,13.449,13.878,14.576,15.074,15.852,17.452,19.278,20.364,21.147,22.384,23.24,24.981,28.398 +1695,-0.3462,17.4579,0.14501,11.51,12.689,13.453,13.882,14.581,15.079,15.857,17.458,19.284,20.371,21.155,22.393,23.249,24.991,28.41 +1696,-0.3463,17.4637,0.14504,11.513,12.692,13.456,13.886,14.585,15.083,15.862,17.464,19.291,20.379,21.163,22.401,23.259,25.001,28.423 +1697,-0.3463,17.4696,0.14506,11.516,12.696,13.461,13.891,14.589,15.088,15.867,17.47,19.298,20.386,21.171,22.41,23.267,25.011,28.435 +1698,-0.3463,17.4755,0.14509,11.519,12.7,13.464,13.895,14.594,15.093,15.872,17.476,19.305,20.394,21.179,22.419,23.277,25.022,28.447 +1699,-0.3464,17.4814,0.14511,11.523,12.704,13.469,13.899,14.598,15.097,15.877,17.481,19.312,20.401,21.186,22.427,23.286,25.032,28.459 +1700,-0.3464,17.4872,0.14514,11.525,12.707,13.472,13.903,14.603,15.102,15.882,17.487,19.318,20.409,21.194,22.436,23.295,25.042,28.472 +1701,-0.3465,17.4931,0.14516,11.529,12.711,13.476,13.907,14.607,15.107,15.887,17.493,19.325,20.416,21.202,22.444,23.304,25.052,28.484 +1702,-0.3465,17.499,0.14519,11.532,12.714,13.48,13.911,14.612,15.111,15.892,17.499,19.332,20.424,21.21,22.453,23.313,25.062,28.497 +1703,-0.3466,17.5048,0.14521,11.535,12.718,13.484,13.915,14.616,15.116,15.897,17.505,19.339,20.431,21.218,22.461,23.322,25.072,28.509 +1704,-0.3466,17.5107,0.14524,11.538,12.722,13.488,13.919,14.621,15.121,15.902,17.511,19.346,20.438,21.226,22.47,23.331,25.082,28.521 +1705,-0.3467,17.5166,0.14526,11.541,12.725,13.492,13.924,14.625,15.126,15.908,17.517,19.353,20.446,21.234,22.479,23.34,25.092,28.533 +1706,-0.3467,17.5224,0.14529,11.544,12.729,13.496,13.928,14.63,15.13,15.913,17.522,19.359,20.453,21.242,22.487,23.349,25.103,28.546 +1707,-0.3467,17.5283,0.14531,11.548,12.733,13.5,13.932,14.634,15.135,15.918,17.528,19.366,20.46,21.249,22.496,23.358,25.112,28.558 +1708,-0.3468,17.5341,0.14534,11.551,12.736,13.504,13.936,14.639,15.14,15.923,17.534,19.373,20.468,21.257,22.504,23.367,25.123,28.571 +1709,-0.3468,17.54,0.14536,11.554,12.74,13.508,13.94,14.643,15.144,15.928,17.54,19.38,20.475,21.265,22.513,23.376,25.133,28.582 +1710,-0.3469,17.5459,0.14539,11.557,12.743,13.512,13.944,14.647,15.149,15.933,17.546,19.387,20.483,21.273,22.522,23.386,25.143,28.595 +1711,-0.3469,17.5517,0.14541,11.56,12.747,13.516,13.949,14.652,15.154,15.938,17.552,19.393,20.49,21.281,22.53,23.394,25.153,28.607 +1712,-0.347,17.5576,0.14544,11.563,12.751,13.52,13.953,14.656,15.158,15.943,17.558,19.4,20.498,21.289,22.539,23.404,25.164,28.62 +1713,-0.347,17.5634,0.14546,11.566,12.754,13.524,13.957,14.661,15.163,15.948,17.563,19.407,20.505,21.296,22.547,23.412,25.173,28.632 +1714,-0.347,17.5693,0.14549,11.569,12.758,13.528,13.961,14.665,15.168,15.953,17.569,19.414,20.512,21.304,22.556,23.422,25.184,28.644 +1715,-0.3471,17.5751,0.14551,11.573,12.761,13.532,13.965,14.67,15.173,15.958,17.575,19.421,20.52,21.312,22.564,23.431,25.193,28.656 +1716,-0.3471,17.581,0.14553,11.576,12.765,13.536,13.969,14.674,15.177,15.963,17.581,19.427,20.527,21.32,22.572,23.439,25.203,28.668 +1717,-0.3472,17.5868,0.14556,11.579,12.769,13.54,13.973,14.679,15.182,15.968,17.587,19.434,20.535,21.328,22.581,23.449,25.214,28.681 +1718,-0.3472,17.5927,0.14558,11.582,12.772,13.544,13.978,14.683,15.187,15.973,17.593,19.441,20.542,21.335,22.589,23.458,25.224,28.693 +1719,-0.3473,17.5985,0.14561,11.585,12.776,13.548,13.982,14.688,15.191,15.978,17.599,19.448,20.549,21.343,22.598,23.467,25.234,28.706 +1720,-0.3473,17.6044,0.14563,11.588,12.78,13.552,13.986,14.692,15.196,15.984,17.604,19.455,20.557,21.351,22.607,23.476,25.244,28.717 +1721,-0.3473,17.6102,0.14566,11.591,12.783,13.555,13.99,14.696,15.201,15.989,17.61,19.462,20.564,21.359,22.615,23.485,25.254,28.73 +1722,-0.3474,17.6161,0.14568,11.595,12.787,13.559,13.994,14.701,15.205,15.994,17.616,19.468,20.571,21.367,22.624,23.494,25.264,28.742 +1723,-0.3474,17.6219,0.14571,11.598,12.79,13.563,13.998,14.705,15.21,15.999,17.622,19.475,20.579,21.375,22.632,23.503,25.274,28.755 +1724,-0.3475,17.6278,0.14573,11.601,12.794,13.567,14.002,14.71,15.215,16.004,17.628,19.482,20.586,21.383,22.641,23.512,25.284,28.767 +1725,-0.3475,17.6336,0.14576,11.604,12.798,13.571,14.006,14.714,15.219,16.009,17.634,19.489,20.594,21.39,22.65,23.521,25.295,28.779 +1726,-0.3476,17.6394,0.14578,11.607,12.801,13.575,14.011,14.719,15.224,16.014,17.639,19.495,20.601,21.398,22.658,23.53,25.305,28.791 +1727,-0.3476,17.6453,0.14581,11.61,12.805,13.579,14.015,14.723,15.229,16.019,17.645,19.502,20.609,21.406,22.667,23.539,25.315,28.804 +1728,-0.3476,17.6511,0.14583,11.613,12.808,13.583,14.019,14.728,15.233,16.024,17.651,19.509,20.616,21.414,22.675,23.548,25.325,28.816 +1729,-0.3477,17.657,0.14586,11.616,12.812,13.587,14.023,14.732,15.238,16.029,17.657,19.516,20.623,21.422,22.684,23.558,25.335,28.829 +1730,-0.3477,17.6628,0.14588,11.619,12.816,13.591,14.027,14.737,15.243,16.034,17.663,19.523,20.631,21.429,22.692,23.566,25.345,28.841 +1731,-0.3478,17.6686,0.14591,11.622,12.819,13.595,14.031,14.741,15.247,16.039,17.669,19.53,20.638,21.437,22.701,23.576,25.355,28.854 +1732,-0.3478,17.6745,0.14593,11.626,12.823,13.599,14.035,14.745,15.252,16.044,17.675,19.536,20.645,21.445,22.709,23.584,25.365,28.865 +1733,-0.3479,17.6803,0.14596,11.629,12.826,13.603,14.039,14.75,15.257,16.049,17.68,19.543,20.653,21.453,22.718,23.594,25.376,28.878 +1734,-0.3479,17.6861,0.14598,11.632,12.83,13.607,14.044,14.754,15.261,16.054,17.686,19.55,20.66,21.461,22.726,23.602,25.385,28.89 +1735,-0.3479,17.692,0.146,11.635,12.834,13.611,14.048,14.759,15.266,16.059,17.692,19.557,20.667,21.469,22.735,23.611,25.395,28.902 +1736,-0.348,17.6978,0.14603,11.638,12.837,13.614,14.052,14.763,15.271,16.064,17.698,19.563,20.675,21.476,22.743,23.621,25.406,28.915 +1737,-0.348,17.7036,0.14605,11.641,12.841,13.618,14.056,14.768,15.275,16.069,17.704,19.57,20.682,21.484,22.752,23.629,25.415,28.926 +1738,-0.3481,17.7095,0.14608,11.644,12.844,13.622,14.06,14.772,15.28,16.074,17.71,19.577,20.69,21.492,22.761,23.639,25.426,28.939 +1739,-0.3481,17.7153,0.1461,11.648,12.848,13.626,14.064,14.777,15.285,16.079,17.715,19.584,20.697,21.5,22.769,23.648,25.436,28.951 +1740,-0.3482,17.7211,0.14613,11.651,12.852,13.63,14.068,14.781,15.289,16.084,17.721,19.591,20.704,21.508,22.778,23.657,25.446,28.964 +1741,-0.3482,17.7269,0.14615,11.654,12.855,13.634,14.072,14.785,15.294,16.089,17.727,19.597,20.712,21.515,22.786,23.666,25.456,28.976 +1742,-0.3482,17.7328,0.14618,11.657,12.859,13.638,14.077,14.79,15.299,16.094,17.733,19.604,20.719,21.523,22.795,23.675,25.466,28.989 +1743,-0.3483,17.7386,0.1462,11.66,12.862,13.642,14.081,14.794,15.303,16.1,17.739,19.611,20.727,21.531,22.803,23.684,25.476,29.001 +1744,-0.3483,17.7444,0.14623,11.663,12.866,13.646,14.085,14.799,15.308,16.104,17.744,19.618,20.734,21.539,22.812,23.693,25.487,29.013 +1745,-0.3484,17.7502,0.14625,11.666,12.87,13.65,14.089,14.803,15.313,16.11,17.75,19.624,20.741,21.547,22.82,23.702,25.496,29.025 +1746,-0.3484,17.7561,0.14628,11.669,12.873,13.654,14.093,14.807,15.317,16.115,17.756,19.631,20.749,21.555,22.829,23.711,25.507,29.038 +1747,-0.3485,17.7619,0.1463,11.672,12.877,13.658,14.097,14.812,15.322,16.12,17.762,19.638,20.756,21.562,22.837,23.72,25.517,29.05 +1748,-0.3485,17.7677,0.14632,11.676,12.88,13.662,14.101,14.816,15.327,16.125,17.768,19.645,20.763,21.57,22.845,23.729,25.526,29.062 +1749,-0.3485,17.7735,0.14635,11.678,12.884,13.665,14.105,14.821,15.331,16.13,17.774,19.652,20.771,21.578,22.854,23.738,25.537,29.074 +1750,-0.3486,17.7793,0.14637,11.682,12.888,13.669,14.11,14.825,15.336,16.135,17.779,19.658,20.778,21.586,22.863,23.747,25.547,29.086 +1751,-0.3486,17.7851,0.1464,11.685,12.891,13.673,14.113,14.83,15.341,16.14,17.785,19.665,20.785,21.594,22.871,23.756,25.557,29.099 +1752,-0.3487,17.791,0.14642,11.688,12.895,13.677,14.118,14.834,15.345,16.145,17.791,19.672,20.793,21.601,22.88,23.765,25.567,29.111 +1753,-0.3487,17.7968,0.14645,11.691,12.898,13.681,14.122,14.838,15.35,16.15,17.797,19.679,20.8,21.609,22.888,23.774,25.577,29.124 +1754,-0.3488,17.8026,0.14647,11.694,12.902,13.685,14.126,14.843,15.355,16.155,17.803,19.685,20.808,21.617,22.897,23.783,25.587,29.136 +1755,-0.3488,17.8084,0.1465,11.697,12.905,13.689,14.13,14.847,15.359,16.16,17.808,19.692,20.815,21.625,22.905,23.792,25.598,29.149 +1756,-0.3488,17.8142,0.14652,11.7,12.909,13.693,14.134,14.852,15.364,16.165,17.814,19.699,20.822,21.633,22.914,23.801,25.607,29.16 +1757,-0.3489,17.82,0.14654,11.703,12.913,13.697,14.138,14.856,15.369,16.17,17.82,19.706,20.83,21.64,22.922,23.81,25.617,29.172 +1758,-0.3489,17.8258,0.14657,11.706,12.916,13.701,14.142,14.861,15.373,16.175,17.826,19.712,20.837,21.648,22.931,23.819,25.628,29.185 +1759,-0.349,17.8316,0.14659,11.71,12.92,13.705,14.146,14.865,15.378,16.18,17.832,19.719,20.844,21.656,22.939,23.828,25.637,29.197 +1760,-0.349,17.8374,0.14662,11.712,12.923,13.708,14.15,14.869,15.382,16.185,17.837,19.726,20.852,21.664,22.948,23.837,25.648,29.21 +1761,-0.3491,17.8432,0.14664,11.716,12.927,13.712,14.155,14.874,15.387,16.19,17.843,19.733,20.859,21.671,22.956,23.846,25.658,29.222 +1762,-0.3491,17.849,0.14667,11.719,12.93,13.716,14.159,14.878,15.392,16.195,17.849,19.74,20.866,21.679,22.965,23.855,25.668,29.234 +1763,-0.3491,17.8548,0.14669,11.722,12.934,13.72,14.163,14.883,15.396,16.2,17.855,19.746,20.874,21.687,22.973,23.864,25.678,29.246 +1764,-0.3492,17.8606,0.14672,11.725,12.938,13.724,14.167,14.887,15.401,16.205,17.861,19.753,20.881,21.695,22.982,23.873,25.688,29.259 +1765,-0.3492,17.8664,0.14674,11.728,12.941,13.728,14.171,14.891,15.406,16.21,17.866,19.76,20.888,21.703,22.99,23.882,25.698,29.271 +1766,-0.3493,17.8722,0.14676,11.731,12.945,13.732,14.175,14.896,15.41,16.215,17.872,19.766,20.896,21.71,22.999,23.891,25.708,29.283 +1767,-0.3493,17.878,0.14679,11.734,12.948,13.736,14.179,14.9,15.415,16.22,17.878,19.773,20.903,21.718,23.007,23.9,25.718,29.296 +1768,-0.3493,17.8838,0.14681,11.737,12.952,13.74,14.183,14.905,15.42,16.225,17.884,19.78,20.91,21.726,23.016,23.909,25.728,29.307 +1769,-0.3494,17.8896,0.14684,11.74,12.955,13.744,14.187,14.909,15.424,16.23,17.89,19.787,20.918,21.734,23.024,23.918,25.739,29.32 +1770,-0.3494,17.8954,0.14686,11.743,12.959,13.748,14.191,14.913,15.429,16.235,17.895,19.794,20.925,21.742,23.033,23.927,25.748,29.332 +1771,-0.3495,17.9012,0.14689,11.746,12.963,13.751,14.195,14.918,15.433,16.24,17.901,19.8,20.933,21.75,23.041,23.936,25.759,29.345 +1772,-0.3495,17.907,0.14691,11.75,12.966,13.755,14.2,14.922,15.438,16.245,17.907,19.807,20.94,21.757,23.05,23.945,25.769,29.357 +1773,-0.3496,17.9128,0.14693,11.753,12.97,13.759,14.204,14.927,15.443,16.25,17.913,19.814,20.947,21.765,23.058,23.954,25.778,29.369 +1774,-0.3496,17.9186,0.14696,11.756,12.973,13.763,14.208,14.931,15.447,16.255,17.919,19.821,20.955,21.773,23.067,23.963,25.789,29.382 +1775,-0.3496,17.9243,0.14698,11.759,12.977,13.767,14.212,14.935,15.452,16.26,17.924,19.827,20.962,21.78,23.075,23.972,25.798,29.393 +1776,-0.3497,17.9301,0.14701,11.762,12.98,13.771,14.216,14.94,15.457,16.265,17.93,19.834,20.969,21.788,23.084,23.981,25.809,29.406 +1777,-0.3497,17.9359,0.14703,11.765,12.984,13.775,14.22,14.944,15.461,16.27,17.936,19.841,20.976,21.796,23.092,23.99,25.819,29.418 +1778,-0.3498,17.9417,0.14706,11.768,12.987,13.779,14.224,14.949,15.466,16.275,17.942,19.848,20.984,21.804,23.101,23.999,25.829,29.431 +1779,-0.3498,17.9475,0.14708,11.771,12.991,13.783,14.228,14.953,15.471,16.28,17.948,19.854,20.991,21.812,23.109,24.008,25.839,29.443 +1780,-0.3499,17.9533,0.1471,11.774,12.995,13.787,14.232,14.958,15.475,16.285,17.953,19.861,20.998,21.819,23.118,24.017,25.849,29.455 +1781,-0.3499,17.959,0.14713,11.777,12.998,13.79,14.236,14.962,15.48,16.29,17.959,19.868,21.006,21.827,23.126,24.026,25.859,29.467 +1782,-0.3499,17.9648,0.14715,11.78,13.002,13.794,14.24,14.966,15.484,16.295,17.965,19.874,21.013,21.835,23.134,24.035,25.869,29.479 +1783,-0.35,17.9706,0.14718,11.783,13.005,13.798,14.244,14.971,15.489,16.3,17.971,19.881,21.021,21.843,23.143,24.044,25.879,29.492 +1784,-0.35,17.9764,0.1472,11.786,13.009,13.802,14.248,14.975,15.494,16.305,17.976,19.888,21.028,21.85,23.152,24.053,25.889,29.504 +1785,-0.3501,17.9821,0.14722,11.79,13.013,13.806,14.253,14.979,15.498,16.31,17.982,19.894,21.035,21.858,23.16,24.062,25.899,29.516 +1786,-0.3501,17.9879,0.14725,11.793,13.016,13.81,14.257,14.984,15.503,16.315,17.988,19.901,21.042,21.866,23.168,24.071,25.909,29.529 +1787,-0.3502,17.9937,0.14727,11.796,13.02,13.814,14.261,14.988,15.508,16.32,17.994,19.908,21.05,21.874,23.177,24.08,25.919,29.541 +1788,-0.3502,17.9995,0.1473,11.799,13.023,13.817,14.265,14.992,15.512,16.325,18,19.915,21.057,21.882,23.186,24.089,25.93,29.553 +1789,-0.3502,18.0052,0.14732,11.802,13.027,13.821,14.269,14.997,15.517,16.33,18.005,19.921,21.064,21.889,23.194,24.098,25.939,29.565 +1790,-0.3503,18.011,0.14735,11.805,13.03,13.825,14.273,15.001,15.521,16.335,18.011,19.928,21.072,21.897,23.203,24.107,25.95,29.578 +1791,-0.3503,18.0168,0.14737,11.808,13.034,13.829,14.277,15.006,15.526,16.34,18.017,19.935,21.079,21.905,23.211,24.116,25.959,29.59 +1792,-0.3504,18.0225,0.14739,11.811,13.037,13.833,14.281,15.01,15.531,16.345,18.023,19.942,21.086,21.912,23.219,24.125,25.969,29.602 +1793,-0.3504,18.0283,0.14742,11.814,13.041,13.837,14.285,15.014,15.535,16.35,18.028,19.948,21.094,21.92,23.228,24.134,25.98,29.615 +1794,-0.3505,18.0341,0.14744,11.817,13.045,13.841,14.289,15.019,15.54,16.355,18.034,19.955,21.101,21.928,23.236,24.143,25.99,29.627 +1795,-0.3505,18.0398,0.14747,11.82,13.048,13.844,14.293,15.023,15.544,16.359,18.04,19.962,21.108,21.936,23.245,24.152,26,29.639 +1796,-0.3505,18.0456,0.14749,11.823,13.051,13.848,14.297,15.028,15.549,16.365,18.046,19.969,21.116,21.943,23.253,24.161,26.01,29.651 +1797,-0.3506,18.0513,0.14751,11.826,13.055,13.852,14.301,15.032,15.554,16.369,18.051,19.975,21.123,21.951,23.261,24.169,26.019,29.663 +1798,-0.3506,18.0571,0.14754,11.829,13.059,13.856,14.305,15.036,15.558,16.374,18.057,19.982,21.13,21.959,23.27,24.179,26.03,29.676 +1799,-0.3507,18.0629,0.14756,11.833,13.062,13.86,14.31,15.041,15.563,16.379,18.063,19.989,21.138,21.967,23.279,24.188,26.04,29.688 +1800,-0.3507,18.0686,0.14759,11.835,13.066,13.864,14.313,15.045,15.567,16.384,18.069,19.995,21.145,21.975,23.287,24.197,26.05,29.7 +1801,-0.3507,18.0744,0.14761,11.838,13.069,13.868,14.318,15.049,15.572,16.389,18.074,20.002,21.152,21.982,23.295,24.206,26.06,29.712 +1802,-0.3508,18.0801,0.14763,11.842,13.073,13.872,14.322,15.054,15.577,16.394,18.08,20.009,21.159,21.99,23.304,24.214,26.07,29.724 +1803,-0.3508,18.0859,0.14766,11.845,13.076,13.875,14.326,15.058,15.581,16.399,18.086,20.016,21.167,21.998,23.312,24.224,26.08,29.737 +1804,-0.3509,18.0916,0.14768,11.848,13.08,13.879,14.33,15.062,15.586,16.404,18.092,20.022,21.174,22.005,23.321,24.232,26.09,29.749 +1805,-0.3509,18.0974,0.14771,11.851,13.083,13.883,14.334,15.067,15.59,16.409,18.097,20.029,21.181,22.013,23.329,24.242,26.1,29.762 +1806,-0.351,18.1031,0.14773,11.854,13.087,13.887,14.338,15.071,15.595,16.414,18.103,20.036,21.189,22.021,23.338,24.25,26.11,29.774 +1807,-0.351,18.1089,0.14775,11.857,13.091,13.891,14.342,15.076,15.6,16.419,18.109,20.042,21.196,22.029,23.346,24.259,26.12,29.785 +1808,-0.351,18.1146,0.14778,11.86,13.094,13.895,14.346,15.08,15.604,16.424,18.115,20.049,21.203,22.036,23.355,24.268,26.13,29.798 +1809,-0.3511,18.1204,0.1478,11.863,13.098,13.899,14.35,15.084,15.609,16.429,18.12,20.056,21.211,22.044,23.363,24.277,26.14,29.81 +1810,-0.3511,18.1261,0.14783,11.866,13.101,13.902,14.354,15.089,15.613,16.434,18.126,20.062,21.218,22.052,23.372,24.286,26.15,29.823 +1811,-0.3512,18.1319,0.14785,11.869,13.105,13.906,14.358,15.093,15.618,16.439,18.132,20.069,21.225,22.06,23.38,24.295,26.16,29.835 +1812,-0.3512,18.1376,0.14787,11.872,13.108,13.91,14.362,15.097,15.622,16.444,18.138,20.076,21.232,22.067,23.388,24.304,26.17,29.847 +1813,-0.3513,18.1434,0.1479,11.875,13.112,13.914,14.366,15.102,15.627,16.449,18.143,20.083,21.24,22.075,23.397,24.313,26.18,29.86 +1814,-0.3513,18.1491,0.14792,11.878,13.115,13.918,14.37,15.106,15.632,16.454,18.149,20.089,21.247,22.083,23.405,24.322,26.19,29.871 +1815,-0.3513,18.1548,0.14794,11.881,13.119,13.922,14.374,15.11,15.636,16.459,18.155,20.096,21.254,22.09,23.413,24.331,26.2,29.883 +1816,-0.3514,18.1606,0.14797,11.884,13.122,13.926,14.378,15.115,15.641,16.464,18.161,20.103,21.262,22.098,23.422,24.34,26.21,29.896 +1817,-0.3514,18.1663,0.14799,11.887,13.126,13.93,14.382,15.119,15.645,16.469,18.166,20.109,21.269,22.106,23.43,24.349,26.22,29.908 +1818,-0.3515,18.172,0.14802,11.89,13.129,13.933,14.386,15.123,15.65,16.474,18.172,20.116,21.276,22.114,23.439,24.358,26.23,29.921 +1819,-0.3515,18.1778,0.14804,11.893,13.133,13.937,14.39,15.128,15.655,16.479,18.178,20.123,21.283,22.121,23.447,24.367,26.24,29.933 +1820,-0.3515,18.1835,0.14806,11.896,13.136,13.941,14.394,15.132,15.659,16.484,18.184,20.129,21.291,22.129,23.456,24.375,26.25,29.944 +1821,-0.3516,18.1892,0.14809,11.899,13.14,13.945,14.398,15.136,15.664,16.488,18.189,20.136,21.298,22.137,23.464,24.385,26.26,29.957 +1822,-0.3516,18.195,0.14811,11.903,13.143,13.949,14.402,15.141,15.668,16.493,18.195,20.143,21.305,22.144,23.473,24.393,26.27,29.969 +1823,-0.3517,18.2007,0.14814,11.905,13.147,13.953,14.406,15.145,15.673,16.498,18.201,20.149,21.313,22.152,23.481,24.403,26.281,29.982 +1824,-0.3517,18.2064,0.14816,11.909,13.15,13.956,14.41,15.15,15.677,16.503,18.206,20.156,21.32,22.16,23.49,24.411,26.29,29.994 +1825,-0.3518,18.2122,0.14818,11.912,13.154,13.96,14.415,15.154,15.682,16.508,18.212,20.163,21.327,22.168,23.498,24.42,26.3,30.006 +1826,-0.3518,18.2179,0.14821,11.915,13.157,13.964,14.419,15.158,15.687,16.513,18.218,20.169,21.334,22.175,23.507,24.429,26.31,30.019 +1827,-0.3518,18.2236,0.14823,11.918,13.161,13.968,14.423,15.163,15.691,16.518,18.224,20.176,21.342,22.183,23.515,24.438,26.32,30.03 +1828,-0.3519,18.2293,0.14825,11.921,13.165,13.972,14.427,15.167,15.696,16.523,18.229,20.183,21.349,22.191,23.523,24.447,26.33,30.042 +1829,-0.3519,18.235,0.14828,11.924,13.168,13.976,14.431,15.171,15.7,16.528,18.235,20.189,21.356,22.198,23.532,24.456,26.34,30.055 +1830,-0.352,18.2408,0.1483,11.927,13.172,13.98,14.435,15.176,15.705,16.533,18.241,20.196,21.363,22.206,23.54,24.465,26.35,30.067 +1831,-0.352,18.2465,0.14833,11.93,13.175,13.983,14.439,15.18,15.709,16.538,18.247,20.203,21.371,22.214,23.549,24.474,26.36,30.08 +1832,-0.352,18.2522,0.14835,11.933,13.178,13.987,14.443,15.184,15.714,16.543,18.252,20.209,21.378,22.222,23.557,24.483,26.37,30.092 +1833,-0.3521,18.2579,0.14837,11.936,13.182,13.991,14.447,15.189,15.719,16.548,18.258,20.216,21.385,22.229,23.565,24.492,26.38,30.104 +1834,-0.3521,18.2636,0.1484,11.939,13.185,13.995,14.451,15.193,15.723,16.553,18.264,20.223,21.392,22.237,23.574,24.501,26.39,30.116 +1835,-0.3522,18.2693,0.14842,11.942,13.189,13.999,14.455,15.197,15.728,16.557,18.269,20.229,21.4,22.245,23.582,24.51,26.4,30.128 +1836,-0.3522,18.2751,0.14844,11.945,13.193,14.003,14.459,15.202,15.732,16.563,18.275,20.236,21.407,22.252,23.59,24.518,26.41,30.14 +1837,-0.3523,18.2808,0.14847,11.948,13.196,14.006,14.463,15.206,15.737,16.567,18.281,20.243,21.414,22.26,23.599,24.528,26.42,30.153 +1838,-0.3523,18.2865,0.14849,11.951,13.2,14.01,14.467,15.21,15.741,16.572,18.287,20.249,21.421,22.268,23.607,24.536,26.43,30.165 +1839,-0.3523,18.2922,0.14852,11.954,13.203,14.014,14.471,15.214,15.746,16.577,18.292,20.256,21.429,22.276,23.616,24.546,26.44,30.178 +1840,-0.3524,18.2979,0.14854,11.957,13.206,14.018,14.475,15.219,15.75,16.582,18.298,20.263,21.436,22.283,23.624,24.554,26.45,30.19 +1841,-0.3524,18.3036,0.14856,11.96,13.21,14.022,14.479,15.223,15.755,16.587,18.304,20.269,21.443,22.291,23.633,24.563,26.46,30.201 +1842,-0.3525,18.3093,0.14859,11.963,13.213,14.025,14.483,15.227,15.759,16.592,18.309,20.276,21.451,22.299,23.641,24.572,26.47,30.214 +1843,-0.3525,18.315,0.14861,11.966,13.217,14.029,14.487,15.232,15.764,16.597,18.315,20.283,21.458,22.306,23.649,24.581,26.48,30.226 +1844,-0.3526,18.3207,0.14863,11.969,13.221,14.033,14.491,15.236,15.769,16.602,18.321,20.289,21.465,22.314,23.658,24.59,26.49,30.238 +1845,-0.3526,18.3264,0.14866,11.972,13.224,14.037,14.495,15.24,15.773,16.607,18.326,20.296,21.472,22.322,23.666,24.599,26.5,30.251 +1846,-0.3526,18.3321,0.14868,11.975,13.227,14.041,14.499,15.245,15.778,16.612,18.332,20.303,21.479,22.329,23.675,24.608,26.51,30.262 +1847,-0.3527,18.3378,0.14871,11.978,13.231,14.044,14.503,15.249,15.782,16.616,18.338,20.309,21.487,22.337,23.683,24.617,26.52,30.276 +1848,-0.3527,18.3435,0.14873,11.981,13.234,14.048,14.507,15.253,15.787,16.621,18.344,20.316,21.494,22.345,23.692,24.626,26.53,30.287 +1849,-0.3528,18.3492,0.14875,11.984,13.238,14.052,14.511,15.258,15.791,16.626,18.349,20.323,21.501,22.352,23.7,24.634,26.54,30.299 +1850,-0.3528,18.3549,0.14878,11.987,13.241,14.056,14.515,15.262,15.796,16.631,18.355,20.329,21.509,22.36,23.708,24.644,26.55,30.312 +1851,-0.3528,18.3606,0.1488,11.99,13.245,14.06,14.519,15.266,15.8,16.636,18.361,20.336,21.516,22.368,23.717,24.652,26.56,30.324 +1852,-0.3529,18.3663,0.14882,11.993,13.248,14.064,14.523,15.271,15.805,16.641,18.366,20.343,21.523,22.375,23.725,24.661,26.57,30.336 +1853,-0.3529,18.372,0.14885,11.996,13.252,14.067,14.527,15.275,15.809,16.646,18.372,20.349,21.53,22.383,23.734,24.67,26.58,30.349 +1854,-0.353,18.3777,0.14887,11.999,13.255,14.071,14.531,15.279,15.814,16.651,18.378,20.356,21.537,22.391,23.742,24.679,26.59,30.361 +1855,-0.353,18.3834,0.14889,12.002,13.259,14.075,14.535,15.284,15.819,16.656,18.383,20.363,21.545,22.398,23.75,24.688,26.6,30.372 +1856,-0.3531,18.389,0.14892,12.005,13.262,14.079,14.539,15.288,15.823,16.661,18.389,20.369,21.552,22.406,23.759,24.697,26.61,30.385 \ No newline at end of file diff --git a/core/models.py b/core/models.py index c3490431..3c41c7be 100644 --- a/core/models.py +++ b/core/models.py @@ -699,3 +699,31 @@ class Weight(models.Model): def clean(self): validate_date(self.date, "date") + + +class WeightPercentile(models.Model): + model_name = "weight percentile" + age_in_days = models.DurationField(null=False) + p3_weight = models.FloatField(null=False) + p15_weight = models.FloatField(null=False) + p50_weight = models.FloatField(null=False) + p85_weight = models.FloatField(null=False) + p97_weight = models.FloatField(null=False) + sex = models.CharField( + null=False, + max_length=255, + choices=[ + ("girl", _("Girl")), + ("boy", _("Boy")), + ], + ) + + class Meta: + constraints = [ + models.UniqueConstraint( + fields=["age_in_days", "sex"], name="unique_age_sex" + ) + ] + + def __str__(self): + return f"Sex: {self.sex}, Age: {self.age_in_days} days, p3: {self.p3_weight} kg, p15: {self.p15_weight} kg, p50: {self.p50_weight} kg, p85: {self.p85_weight} kg, p97: {self.p97_weight} kg" diff --git a/devenv.nix b/devenv.nix index 44346233..dc52b12d 100644 --- a/devenv.nix +++ b/devenv.nix @@ -9,6 +9,7 @@ pkgs.pipenv pkgs.nodejs_18 pkgs.nodePackages.gulp + pkgs.sqlite ]; # https://devenv.sh/scripts/ @@ -29,14 +30,21 @@ devcontainer = { enable = true; + settings.customizations.vscode.settings."[python]".editor.defaultFormatter = "ms-python.black-formatter"; settings.customizations.vscode.extensions = [ "bbenoist.Nix" "ms-python.python" "batisteo.vscode-django" + "ms-python.black-formatter" ]; }; # services.nginx.enable = true; + pre-commit.hooks = { + # format Python code + black.enable = true; + }; + # See full reference at https://devenv.sh/reference/options/ } diff --git a/reports/graphs/weight_change.py b/reports/graphs/weight_change.py index 17ae92ce..36da9426 100644 --- a/reports/graphs/weight_change.py +++ b/reports/graphs/weight_change.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +from datetime import datetime, timedelta from django.utils.translation import gettext as _ +from django.db.models.manager import BaseManager import plotly.offline as plotly import plotly.graph_objs as go @@ -7,28 +9,99 @@ import plotly.graph_objs as go from reports import utils -def weight_change(objects): +def weight_change( + actual_weights: BaseManager, percentile_weights: BaseManager, birthday: datetime +): """ Create a graph showing weight over time. - :param objects: a QuerySet of Weight instances. + :param actual_weights: a QuerySet of Weight instances. + :param percentile_weights: a QuerySet of Weight Percentile instances. + :param birthday: a datetime of the child's birthday :returns: a tuple of the the graph's html and javascript. """ - objects = objects.order_by("-date") + actual_weights = actual_weights.order_by("-date") - trace = go.Scatter( + weighing_dates: list[datetime] = list(actual_weights.values_list("date", flat=True)) + measured_weights = list(actual_weights.values_list("weight", flat=True)) + + actual_weights_trace = go.Scatter( name=_("Weight"), - x=list(objects.values_list("date", flat=True)), - y=list(objects.values_list("weight", flat=True)), + x=weighing_dates, + y=measured_weights, fill="tozeroy", + mode="lines+markers", ) + if percentile_weights: + dates = list( + map( + lambda timedelta: birthday + timedelta, + percentile_weights.values_list("age_in_days", flat=True), + ) + ) + + # reduce percentile data xrange to end 1 day after last weigh in for formatting purposes + # https://github.com/babybuddy/babybuddy/pull/708#discussion_r1332335789 + last_date_for_percentiles = max(weighing_dates) + timedelta(days=2) + dates = dates[: dates.index(last_date_for_percentiles)] + + percentile_weight_3_trace = go.Scatter( + name=_("P3"), + x=dates, + y=list(percentile_weights.values_list("p3_weight", flat=True)), + line={"color": "red"}, + ) + percentile_weight_15_trace = go.Scatter( + name=_("P15"), + x=dates, + y=list(percentile_weights.values_list("p15_weight", flat=True)), + line={"color": "orange"}, + ) + percentile_weight_50_trace = go.Scatter( + name=_("P50"), + x=dates, + y=list(percentile_weights.values_list("p50_weight", flat=True)), + line={"color": "green"}, + ) + percentile_weight_85_trace = go.Scatter( + name=_("P85"), + x=dates, + y=list(percentile_weights.values_list("p85_weight", flat=True)), + line={"color": "orange"}, + ) + percentile_weight_97_trace = go.Scatter( + name=_("P97"), + x=dates, + y=list(percentile_weights.values_list("p97_weight", flat=True)), + line={"color": "red"}, + ) + + data = [ + actual_weights_trace, + ] layout_args = utils.default_graph_layout_options() layout_args["barmode"] = "stack" layout_args["title"] = _("Weight") layout_args["xaxis"]["title"] = _("Date") layout_args["xaxis"]["rangeselector"] = utils.rangeselector_date() layout_args["yaxis"]["title"] = _("Weight") + if percentile_weights: + # zoom in on the relevant dates + layout_args["xaxis"]["range"] = [ + birthday, + max(weighing_dates) + timedelta(days=1), + ] + layout_args["yaxis"]["range"] = [0, max(measured_weights) * 1.5] + data.extend( + [ + percentile_weight_97_trace, + percentile_weight_85_trace, + percentile_weight_50_trace, + percentile_weight_15_trace, + percentile_weight_3_trace, + ] + ) - fig = go.Figure({"data": [trace], "layout": go.Layout(**layout_args)}) + fig = go.Figure({"data": data, "layout": go.Layout(**layout_args)}) output = plotly.plot(fig, output_type="div", include_plotlyjs=False) return utils.split_graph_output(output) diff --git a/reports/templates/reports/report_list.html b/reports/templates/reports/report_list.html index c12b8d05..f09a3f93 100644 --- a/reports/templates/reports/report_list.html +++ b/reports/templates/reports/report_list.html @@ -30,6 +30,8 @@ {% trans "Temperature" %} {% trans "Tummy Time Durations (Sum)" %} {% trans "Weight" %} + {% trans "WHO Weight Percentiles for Boys in kg" %} + {% trans "WHO Weight Percentiles for Girls in kg" %} {% endblock %} diff --git a/reports/urls.py b/reports/urls.py index a30e85bf..17dae6c5 100644 --- a/reports/urls.py +++ b/reports/urls.py @@ -81,4 +81,9 @@ urlpatterns = [ views.WeightChangeChildReport.as_view(), name="report-weight-change-child", ), + path( + "children//reports/weight//", + views.WeightChangeChildReport.as_view(), + name="report-weight-change-child-sex", + ), ] diff --git a/reports/views.py b/reports/views.py index ab8ccb8e..95a6988e 100644 --- a/reports/views.py +++ b/reports/views.py @@ -295,7 +295,13 @@ class WeightChangeChildReport(PermissionRequiredMixin, DetailView): def get_context_data(self, **kwargs): context = super(WeightChangeChildReport, self).get_context_data(**kwargs) child = context["object"] - objects = models.Weight.objects.filter(child=child) - if objects: - context["html"], context["js"] = graphs.weight_change(objects) + birthday = child.birth_date + actual_weights = models.Weight.objects.filter(child=child) + percentile_weights = models.WeightPercentile.objects.filter( + sex=self.kwargs.get("sex") + ) + if actual_weights: + context["html"], context["js"] = graphs.weight_change( + actual_weights, percentile_weights, birthday + ) return context