@flame-cai/anthro 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,133 @@
1
+ # anthro
2
+
3
+ WHO 2006 Child Growth Standards — z-scores and nutritional classifications for 6 indicators.
4
+
5
+ **Website:** https://flame-cai.github.io/anthro
6
+ **Version:** 1.1.1
7
+
8
+ Available for **JavaScript / Node.js** (`@flame-cai/anthro` on npm) and **Python** (`anthro` on PyPI).
9
+
10
+ ---
11
+
12
+ ## JavaScript
13
+
14
+ ### Install
15
+
16
+ ```bash
17
+ npm install @flame-cai/anthro
18
+ ```
19
+
20
+ Or clone and use directly:
21
+
22
+ ```bash
23
+ git clone https://github.com/flame-cai/anthro.git
24
+ ```
25
+
26
+ ### Quick start
27
+
28
+ ```js
29
+ const { createAnthro } = require('@flame-cai/anthro')
30
+ const fs = require('fs')
31
+
32
+ const names = ['wfa', 'lhfa', 'bmi', 'acfa', 'wfl', 'wfh']
33
+ const load = (p, n) => JSON.parse(fs.readFileSync(require.resolve(`@flame-cai/anthro/data/${p}_${n}.json`)))
34
+
35
+ const anthro = createAnthro(
36
+ Object.fromEntries(names.map(n => [n, load('day', n)])),
37
+ Object.fromEntries(names.map(n => [n, load('month', n)]))
38
+ )
39
+
40
+ const result = anthro.compute({
41
+ mode: 'day',
42
+ sex: 'female',
43
+ dob: '2024-01-15',
44
+ weight_kg: 7.0,
45
+ height_cm: 64.0,
46
+ muac_mm: 136,
47
+ })
48
+
49
+ result.lhfa // 'Moderately stunted'
50
+ result.z_lhfa // -2.7901
51
+ result.wfa // 'Normal'
52
+ result.muac_threshold // 'Normal'
53
+ result.bmi_val // 17.0898
54
+ ```
55
+
56
+ Full documentation: https://flame-cai.github.io/anthro/#/docs
57
+
58
+ ---
59
+
60
+ ## Python
61
+
62
+ ### Install
63
+
64
+ ```bash
65
+ pip install anthro
66
+ ```
67
+
68
+ ### Quick start
69
+
70
+ ```python
71
+ from anthro import compute, batch
72
+
73
+ result = compute({
74
+ 'sex': 'female',
75
+ 'dob': '2024-01-15',
76
+ 'measured': '2025-01-15',
77
+ 'weight_kg': 7.0,
78
+ 'height_cm': 64.0,
79
+ 'muac_mm': 136,
80
+ })
81
+
82
+ result['lhfa'] # 'Moderately stunted'
83
+ result['z_lhfa'] # -2.7901
84
+ result['wfa'] # 'Normal'
85
+ result['muac_threshold'] # 'Normal'
86
+ result['bmi_val'] # 17.0898
87
+
88
+ # Batch
89
+ results = batch([
90
+ {'sex': 'm', 'age_days': 200, 'weight_kg': 6.8, 'height_cm': 63.0},
91
+ {'sex': 'f', 'age_days': 400, 'weight_kg': 8.2, 'height_cm': 75.0},
92
+ ])
93
+ ```
94
+
95
+ See [`python/README.md`](python/README.md) for full Python API reference.
96
+
97
+ ---
98
+
99
+ ## Output indicators
100
+
101
+ | Field | Description |
102
+ |-------|-------------|
103
+ | `muac_threshold` | Absolute MUAC (age-independent): SAM / MAM / Normal |
104
+ | `acfa` | MUAC-for-age z-score (3–60 m) |
105
+ | `bmi` | BMI-for-age z-score (0–60 m) |
106
+ | `lhfa` | Length/height-for-age — stunting (0–60 m) |
107
+ | `wfa` | Weight-for-age — underweight (0–60 m) |
108
+ | `wflh` | Weight-for-length/height — wasting (0–60 m) |
109
+
110
+ Missing inputs return a descriptive string, not `null` / `None`.
111
+
112
+ ## Tables
113
+
114
+ `data/day_*.json` — WHO igrowup day-indexed (1 row/day, 0–1826 d). Preferred when DOB is known.
115
+ `data/month_*.json` — WHO supplementary monthly (1 row/month, 0–60 m).
116
+
117
+ Shared between the JS and Python packages — no duplication.
118
+
119
+ Source: WHO MGRS (2006). ISBN 924154693X.
120
+
121
+ ## Versioning
122
+
123
+ The single source of truth is [`VERSION`](VERSION). Both packages read from it:
124
+
125
+ - **npm** — `package.json` version is synced by CI before publish (`npm run sync-version`)
126
+ - **PyPI** — `pyproject.toml` uses `[tool.hatch.version]` pointing at `VERSION`
127
+ - **JS source** — `src/anthro.js` version string is updated by CI before publish
128
+
129
+ To cut a release: update `VERSION`, commit, push `git tag vX.Y.Z && git push origin vX.Y.Z`.
130
+
131
+ ## Contributing
132
+
133
+ See [CONTRIBUTING.md](CONTRIBUTING.md).
@@ -0,0 +1 @@
1
+ {"M":{"i":[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826],"l":[0.3933,0.3916,0.39,0.3884,0.3868,0.3852,0.3836,0.3821,0.3805,0.379,0.3774,0.3759,0.3744,0.3729,0.3714,0.3699,0.3684,0.3669,0.3655,0.364,0.3626,0.3611,0.3597,0.3583,0.3569,0.3555,0.3541,0.3527,0.3513,0.3499,0.3485,0.3472,0.3458,0.3445,0.3432,0.3418,0.3405,0.3392,0.3379,0.3366,0.3353,0.334,0.3327,0.3314,0.3301,0.3289,0.3276,0.3264,0.3251,0.3239,0.3226,0.3214,0.3202,0.319,0.3177,0.3165,0.3153,0.3141,0.3129,0.3117,0.3106,0.3094,0.3082,0.307,0.3059,0.3047,0.3036,0.3024,0.3013,0.3001,0.299,0.2979,0.2967,0.2956,0.2945,0.2934,0.2923,0.2912,0.2901,0.289,0.2879,0.2868,0.2857,0.2847,0.2836,0.2825,0.2814,0.2804,0.2793,0.2783,0.2772,0.2762,0.2751,0.2741,0.273,0.272,0.271,0.27,0.2689,0.2679,0.2669,0.2659,0.2649,0.2639,0.2629,0.2619,0.2609,0.2599,0.2589,0.2579,0.2569,0.256,0.255,0.254,0.253,0.2521,0.2511,0.2502,0.2492,0.2482,0.2473,0.2463,0.2454,0.2445,0.2435,0.2426,0.2417,0.2407,0.2398,0.2389,0.2379,0.237,0.2361,0.2352,0.2343,0.2334,0.2325,0.2316,0.2307,0.2298,0.2289,0.228,0.2271,0.2262,0.2253,0.2244,0.2235,0.2227,0.2218,0.2209,0.22,0.2192,0.2183,0.2174,0.2166,0.2157,0.2148,0.214,0.2131,0.2123,0.2114,0.2106,0.2097,0.2089,0.2081,0.2072,0.2064,0.2056,0.2047,0.2039,0.2031,0.2022,0.2014,0.2006,0.1998,0.199,0.1981,0.1973,0.1965,0.1957,0.1949,0.1941,0.1933,0.1925,0.1917,0.1909,0.1901,0.1893,0.1885,0.1877,0.1869,0.1861,0.1853,0.1846,0.1838,0.183,0.1822,0.1814,0.1807,0.1799,0.1791,0.1784,0.1776,0.1768,0.1761,0.1753,0.1745,0.1738,0.173,0.1723,0.1715,0.1707,0.17,0.1692,0.1685,0.1678,0.167,0.1663,0.1655,0.1648,0.164,0.1633,0.1626,0.1618,0.1611,0.1604,0.1596,0.1589,0.1582,0.1575,0.1567,0.156,0.1553,0.1546,0.1539,0.1531,0.1524,0.1517,0.151,0.1503,0.1496,0.1489,0.1482,0.1475,0.1468,0.1461,0.1454,0.1447,0.144,0.1433,0.1426,0.1419,0.1412,0.1405,0.1398,0.1391,0.1384,0.1377,0.137,0.1364,0.1357,0.135,0.1343,0.1336,0.133,0.1323,0.1316,0.1309,0.1303,0.1296,0.1289,0.1283,0.1276,0.1269,0.1263,0.1256,0.1249,0.1243,0.1236,0.1229,0.1223,0.1216,0.121,0.1203,0.1197,0.119,0.1184,0.1177,0.1171,0.1164,0.1158,0.1151,0.1145,0.1138,0.1132,0.1125,0.1119,0.1113,0.1106,0.11,0.1093,0.1087,0.1081,0.1074,0.1068,0.1062,0.1056,0.1049,0.1043,0.1037,0.103,0.1024,0.1018,0.1012,0.1005,0.0999,0.0993,0.0987,0.0981,0.0975,0.0968,0.0962,0.0956,0.095,0.0944,0.0938,0.0932,0.0926,0.0919,0.0913,0.0907,0.0901,0.0895,0.0889,0.0883,0.0877,0.0871,0.0865,0.0859,0.0853,0.0847,0.0841,0.0835,0.0829,0.0823,0.0817,0.0812,0.0806,0.08,0.0794,0.0788,0.0782,0.0776,0.077,0.0764,0.0759,0.0753,0.0747,0.0741,0.0735,0.073,0.0724,0.0718,0.0712,0.0706,0.0701,0.0695,0.0689,0.0683,0.0678,0.0672,0.0666,0.0661,0.0655,0.0649,0.0644,0.0638,0.0632,0.0627,0.0621,0.0615,0.061,0.0604,0.0598,0.0593,0.0587,0.0582,0.0576,0.0571,0.0565,0.0559,0.0554,0.0548,0.0543,0.0537,0.0532,0.0526,0.0521,0.0515,0.051,0.0504,0.0499,0.0493,0.0488,0.0482,0.0477,0.0471,0.0466,0.0461,0.0455,0.045,0.0444,0.0439,0.0434,0.0428,0.0423,0.0417,0.0412,0.0407,0.0401,0.0396,0.0391,0.0385,0.038,0.0375,0.0369,0.0364,0.0359,0.0353,0.0348,0.0343,0.0338,0.0332,0.0327,0.0322,0.0317,0.0311,0.0306,0.0301,0.0296,0.0291,0.0285,0.028,0.0275,0.027,0.0265,0.0259,0.0254,0.0249,0.0244,0.0239,0.0234,0.0228,0.0223,0.0218,0.0213,0.0208,0.0203,0.0198,0.0193,0.0188,0.0183,0.0177,0.0172,0.0167,0.0162,0.0157,0.0152,0.0147,0.0142,0.0137,0.0132,0.0127,0.0122,0.0117,0.0112,0.0107,0.0102,0.0097,0.0092,0.0087,0.0082,0.0077,0.0072,0.0067,0.0062,0.0057,0.0052,0.0047,0.0043,0.0038,0.0033,0.0028,0.0023,0.0018,0.0013,0.0008,0.0003,-0.0001,-0.0006,-0.0011,-0.0016,-0.0021,-0.0026,-0.0031,-0.0035,-0.004,-0.0045,-0.005,-0.0055,-0.006,-0.0064,-0.0069,-0.0074,-0.0079,-0.0083,-0.0088,-0.0093,-0.0098,-0.0103,-0.0107,-0.0112,-0.0117,-0.0122,-0.0126,-0.0131,-0.0136,-0.014,-0.0145,-0.015,-0.0155,-0.0159,-0.0164,-0.0169,-0.0173,-0.0178,-0.0183,-0.0187,-0.0192,-0.0197,-0.0201,-0.0206,-0.0211,-0.0215,-0.022,-0.0225,-0.0229,-0.0234,-0.0238,-0.0243,-0.0248,-0.0252,-0.0257,-0.0261,-0.0266,-0.0271,-0.0275,-0.028,-0.0284,-0.0289,-0.0294,-0.0298,-0.0303,-0.0307,-0.0312,-0.0316,-0.0321,-0.0325,-0.033,-0.0334,-0.0339,-0.0343,-0.0348,-0.0352,-0.0357,-0.0361,-0.0366,-0.037,-0.0375,-0.0379,-0.0384,-0.0388,-0.0393,-0.0397,-0.0402,-0.0406,-0.0411,-0.0415,-0.042,-0.0424,-0.0428,-0.0433,-0.0437,-0.0442,-0.0446,-0.045,-0.0455,-0.0459,-0.0464,-0.0468,-0.0472,-0.0477,-0.0481,-0.0486,-0.049,-0.0494,-0.0499,-0.0503,-0.0507,-0.0512,-0.0516,-0.0521,-0.0525,-0.0529,-0.0534,-0.0538,-0.0542,-0.0546,-0.0551,-0.0555,-0.0559,-0.0564,-0.0568,-0.0572,-0.0577,-0.0581,-0.0585,-0.0589,-0.0594,-0.0598,-0.0602,-0.0607,-0.0611,-0.0615,-0.0619,-0.0624,-0.0628,-0.0632,-0.0636,-0.0641,-0.0645,-0.0649,-0.0653,-0.0657,-0.0662,-0.0666,-0.067,-0.0674,-0.0679,-0.0683,-0.0687,-0.0691,-0.0695,-0.0699,-0.0704,-0.0708,-0.0712,-0.0716,-0.072,-0.0725,-0.0729,-0.0733,-0.0737,-0.0741,-0.0745,-0.0749,-0.0754,-0.0758,-0.0762,-0.0766,-0.077,-0.0774,-0.0778,-0.0782,-0.0787,-0.0791,-0.0795,-0.0799,-0.0803,-0.0807,-0.0811,-0.0815,-0.0819,-0.0823,-0.0827,-0.0831,-0.0836,-0.084,-0.0844,-0.0848,-0.0852,-0.0856,-0.086,-0.0864,-0.0868,-0.0872,-0.0876,-0.088,-0.0884,-0.0888,-0.0892,-0.0896,-0.09,-0.0904,-0.0908,-0.0912,-0.0916,-0.092,-0.0924,-0.0928,-0.0932,-0.0936,-0.094,-0.0944,-0.0948,-0.0952,-0.0956,-0.096,-0.0964,-0.0968,-0.0972,-0.0976,-0.098,-0.0984,-0.0988,-0.0992,-0.0996,-0.0999,-0.1003,-0.1007,-0.1011,-0.1015,-0.1019,-0.1023,-0.1027,-0.1031,-0.1035,-0.1039,-0.1043,-0.1046,-0.105,-0.1054,-0.1058,-0.1062,-0.1066,-0.107,-0.1074,-0.1077,-0.1081,-0.1085,-0.1089,-0.1093,-0.1097,-0.1101,-0.1105,-0.1108,-0.1112,-0.1116,-0.112,-0.1124,-0.1128,-0.1131,-0.1135,-0.1139,-0.1143,-0.1147,-0.115,-0.1154,-0.1158,-0.1162,-0.1166,-0.117,-0.1173,-0.1177,-0.1181,-0.1185,-0.1188,-0.1192,-0.1196,-0.12,-0.1204,-0.1207,-0.1211,-0.1215,-0.1219,-0.1222,-0.1226,-0.123,-0.1234,-0.1237,-0.1241,-0.1245,-0.1249,-0.1252,-0.1256,-0.126,-0.1264,-0.1267,-0.1271,-0.1275,-0.1279,-0.1282,-0.1286,-0.129,-0.1293,-0.1297,-0.1301,-0.1305,-0.1308,-0.1312,-0.1316,-0.1319,-0.1323,-0.1327,-0.133,-0.1334,-0.1338,-0.1341,-0.1345,-0.1349,-0.1352,-0.1356,-0.136,-0.1363,-0.1367,-0.1371,-0.1374,-0.1378,-0.1382,-0.1385,-0.1389,-0.1393,-0.1396,-0.14,-0.1403,-0.1407,-0.1411,-0.1414,-0.1418,-0.1422,-0.1425,-0.1429,-0.1432,-0.1436,-0.144,-0.1443,-0.1447,-0.145,-0.1454,-0.1458,-0.1461,-0.1465,-0.1468,-0.1472,-0.1476,-0.1479,-0.1483,-0.1486,-0.149,-0.1493,-0.1497,-0.1501,-0.1504,-0.1508,-0.1511,-0.1515,-0.1518,-0.1522,-0.1525,-0.1529,-0.1533,-0.1536,-0.154,-0.1543,-0.1547,-0.155,-0.1554,-0.1557,-0.1561,-0.1564,-0.1568,-0.1571,-0.1575,-0.1578,-0.1582,-0.1585,-0.1589,-0.1592,-0.1596,-0.1599,-0.1603,-0.1606,-0.161,-0.1613,-0.1617,-0.162,-0.1624,-0.1627,-0.1631,-0.1634,-0.1638,-0.1641,-0.1645,-0.1648,-0.1652,-0.1655,-0.1658,-0.1662,-0.1665,-0.1669,-0.1672,-0.1676,-0.1679,-0.1683,-0.1686,-0.1689,-0.1693,-0.1696,-0.17,-0.1703,-0.1707,-0.171,-0.1713,-0.1717,-0.172,-0.1724,-0.1727,-0.1731,-0.1734,-0.1737,-0.1741,-0.1744,-0.1748,-0.1751,-0.1754,-0.1758,-0.1761,-0.1765,-0.1768,-0.1771,-0.1775,-0.1778,-0.1781,-0.1785,-0.1788,-0.1792,-0.1795,-0.1798,-0.1802,-0.1805,-0.1808,-0.1812,-0.1815,-0.1818,-0.1822,-0.1825,-0.1829,-0.1832,-0.1835,-0.1839,-0.1842,-0.1845,-0.1849,-0.1852,-0.1855,-0.1859,-0.1862,-0.1865,-0.1869,-0.1872,-0.1875,-0.1879,-0.1882,-0.1885,-0.1888,-0.1892,-0.1895,-0.1898,-0.1902,-0.1905,-0.1908,-0.1912,-0.1915,-0.1918,-0.1921,-0.1925,-0.1928,-0.1931,-0.1935,-0.1938,-0.1941,-0.1944,-0.1948,-0.1951,-0.1954,-0.1958,-0.1961,-0.1964,-0.1967,-0.1971,-0.1974,-0.1977,-0.198,-0.1984,-0.1987,-0.199,-0.1993,-0.1997,-0.2,-0.2003,-0.2006,-0.201,-0.2013,-0.2016,-0.2019,-0.2023,-0.2026,-0.2029,-0.2032,-0.2035,-0.2039,-0.2042,-0.2045,-0.2048,-0.2052,-0.2055,-0.2058,-0.2061,-0.2064,-0.2068,-0.2071,-0.2074,-0.2077,-0.208,-0.2084,-0.2087,-0.209,-0.2093,-0.2096,-0.21,-0.2103,-0.2106,-0.2109,-0.2112,-0.2116,-0.2119,-0.2122,-0.2125,-0.2128,-0.2131,-0.2135,-0.2138,-0.2141,-0.2144,-0.2147,-0.215,-0.2153,-0.2157,-0.216,-0.2163,-0.2166,-0.2169,-0.2172,-0.2176,-0.2179,-0.2182,-0.2185,-0.2188,-0.2191,-0.2194,-0.2197,-0.2201,-0.2204,-0.2207,-0.221,-0.2213,-0.2216,-0.2219,-0.2222,-0.2226,-0.2229,-0.2232,-0.2235,-0.2238,-0.2241,-0.2244,-0.2247,-0.225,-0.2254,-0.2257,-0.226,-0.2263,-0.2266,-0.2269,-0.2272,-0.2275,-0.2278,-0.2281,-0.2284,-0.2288,-0.2291,-0.2294,-0.2297,-0.23,-0.2303,-0.2306,-0.2309,-0.2312,-0.2315,-0.2318,-0.2321,-0.2324,-0.2327,-0.2331,-0.2334,-0.2337,-0.234,-0.2343,-0.2346,-0.2349,-0.2352,-0.2355,-0.2358,-0.2361,-0.2364,-0.2367,-0.237,-0.2373,-0.2376,-0.2379,-0.2382,-0.2385,-0.2388,-0.2391,-0.2394,-0.2397,-0.24,-0.2403,-0.2406,-0.2409,-0.2412,-0.2415,-0.2418,-0.2422,-0.2425,-0.2428,-0.2431,-0.2434,-0.2437,-0.244,-0.2443,-0.2446,-0.2449,-0.2452,-0.2455,-0.2457,-0.246,-0.2463,-0.2466,-0.2469,-0.2472,-0.2475,-0.2478,-0.2481,-0.2484,-0.2487,-0.249,-0.2493,-0.2496,-0.2499,-0.2502,-0.2505,-0.2508,-0.2511,-0.2514,-0.2517,-0.252,-0.2523,-0.2526,-0.2529,-0.2532,-0.2535,-0.2538,-0.2541,-0.2544,-0.2546,-0.2549,-0.2552,-0.2555,-0.2558,-0.2561,-0.2564,-0.2567,-0.257,-0.2573,-0.2576,-0.2579,-0.2582,-0.2585,-0.2588,-0.259,-0.2593,-0.2596,-0.2599,-0.2602,-0.2605,-0.2608,-0.2611,-0.2614,-0.2617,-0.262,-0.2623,-0.2625,-0.2628,-0.2631,-0.2634,-0.2637,-0.264,-0.2643,-0.2646,-0.2649,-0.2652,-0.2654,-0.2657,-0.266,-0.2663,-0.2666,-0.2669,-0.2672,-0.2675,-0.2677,-0.268,-0.2683,-0.2686,-0.2689,-0.2692,-0.2695,-0.2698,-0.27,-0.2703,-0.2706,-0.2709,-0.2712,-0.2715,-0.2718,-0.272,-0.2723,-0.2726,-0.2729,-0.2732,-0.2735,-0.2738,-0.274,-0.2743,-0.2746,-0.2749,-0.2752,-0.2755,-0.2758,-0.276,-0.2763,-0.2766,-0.2769,-0.2772,-0.2775,-0.2777,-0.278,-0.2783,-0.2786,-0.2789,-0.2791,-0.2794,-0.2797,-0.28,-0.2803,-0.2806,-0.2808,-0.2811,-0.2814,-0.2817,-0.282,-0.2822,-0.2825,-0.2828,-0.2831,-0.2834,-0.2836,-0.2839,-0.2842,-0.2845,-0.2848,-0.285,-0.2853,-0.2856,-0.2859,-0.2862,-0.2864,-0.2867,-0.287,-0.2873,-0.2876,-0.2878,-0.2881,-0.2884,-0.2887,-0.2889,-0.2892,-0.2895,-0.2898,-0.2901,-0.2903,-0.2906,-0.2909,-0.2912,-0.2914,-0.2917,-0.292,-0.2923,-0.2925,-0.2928,-0.2931,-0.2934,-0.2936,-0.2939,-0.2942,-0.2945,-0.2947,-0.295,-0.2953,-0.2956,-0.2958,-0.2961,-0.2964,-0.2967,-0.2969,-0.2972,-0.2975,-0.2978,-0.298,-0.2983,-0.2986,-0.2989,-0.2991,-0.2994,-0.2997,-0.3,-0.3002,-0.3005,-0.3008,-0.301,-0.3013,-0.3016,-0.3019,-0.3021,-0.3024,-0.3027,-0.3029,-0.3032,-0.3035,-0.3038,-0.304,-0.3043,-0.3046,-0.3048,-0.3051,-0.3054,-0.3056,-0.3059,-0.3062,-0.3065,-0.3067,-0.307,-0.3073,-0.3075,-0.3078,-0.3081,-0.3083,-0.3086,-0.3089,-0.3091,-0.3094,-0.3097,-0.31,-0.3102,-0.3105,-0.3108,-0.311,-0.3113,-0.3116,-0.3118,-0.3121,-0.3124,-0.3126,-0.3129,-0.3132,-0.3134,-0.3137,-0.314,-0.3142,-0.3145,-0.3148,-0.315,-0.3153,-0.3156,-0.3158,-0.3161,-0.3164,-0.3166,-0.3169,-0.3172,-0.3174,-0.3177,-0.3179,-0.3182,-0.3185,-0.3187,-0.319,-0.3193,-0.3195,-0.3198,-0.3201,-0.3203,-0.3206,-0.3208,-0.3211,-0.3214,-0.3216,-0.3219,-0.3222,-0.3224,-0.3227,-0.323,-0.3232,-0.3235,-0.3237,-0.324,-0.3243,-0.3245,-0.3248,-0.325,-0.3253,-0.3256,-0.3258,-0.3261,-0.3264,-0.3266,-0.3269,-0.3271,-0.3274,-0.3277,-0.3279,-0.3282,-0.3284,-0.3287,-0.329,-0.3292,-0.3295,-0.3297,-0.33,-0.3303,-0.3305,-0.3308,-0.331,-0.3313,-0.3316,-0.3318,-0.3321,-0.3323,-0.3326,-0.3328,-0.3331,-0.3334,-0.3336,-0.3339,-0.3341,-0.3344,-0.3347,-0.3349,-0.3352,-0.3354,-0.3357,-0.3359,-0.3362,-0.3365,-0.3367,-0.337,-0.3372,-0.3375,-0.3377,-0.338,-0.3382,-0.3385,-0.3388,-0.339,-0.3393,-0.3395,-0.3398,-0.34,-0.3403,-0.3405,-0.3408,-0.3411,-0.3413,-0.3416,-0.3418,-0.3421,-0.3423,-0.3426,-0.3428,-0.3431,-0.3433,-0.3436,-0.3439,-0.3441,-0.3444,-0.3446,-0.3449,-0.3451,-0.3454,-0.3456,-0.3459,-0.3461,-0.3464,-0.3466,-0.3469,-0.3471,-0.3474,-0.3476,-0.3479,-0.3482,-0.3484,-0.3487,-0.3489,-0.3492,-0.3494,-0.3497,-0.3499,-0.3502,-0.3504,-0.3507,-0.3509,-0.3512,-0.3514,-0.3517,-0.3519,-0.3522,-0.3524,-0.3527,-0.3529,-0.3532,-0.3534,-0.3537,-0.3539,-0.3542,-0.3544,-0.3547,-0.3549,-0.3552,-0.3554,-0.3557,-0.3559,-0.3562,-0.3564,-0.3567,-0.3569,-0.3572,-0.3574,-0.3577,-0.3579,-0.3582,-0.3584,-0.3586,-0.3589,-0.3591,-0.3594,-0.3596,-0.3599,-0.3601,-0.3604,-0.3606,-0.3609,-0.3611,-0.3614,-0.3616,-0.3619,-0.3621,-0.3624,-0.3626,-0.3628,-0.3631,-0.3633,-0.3636,-0.3638,-0.3641,-0.3643,-0.3646,-0.3648,-0.3651,-0.3653,-0.3656,-0.3658,-0.366,-0.3663,-0.3665,-0.3668,-0.367,-0.3673,-0.3675,-0.3678,-0.368,-0.3682,-0.3685,-0.3687,-0.369,-0.3692,-0.3695,-0.3697,-0.3699,-0.3702,-0.3704,-0.3707,-0.3709,-0.3712,-0.3714,-0.3717,-0.3719,-0.3721,-0.3724,-0.3726,-0.3729,-0.3731,-0.3733,-0.3736,-0.3738,-0.3741,-0.3743,-0.3746,-0.3748,-0.375,-0.3753,-0.3755,-0.3758,-0.376,-0.3762,-0.3765,-0.3767,-0.377,-0.3772,-0.3775,-0.3777,-0.3779,-0.3782,-0.3784,-0.3787,-0.3789,-0.3791,-0.3794,-0.3796,-0.3799,-0.3801,-0.3803,-0.3806,-0.3808,-0.3811,-0.3813,-0.3815,-0.3818,-0.382,-0.3822,-0.3825,-0.3827,-0.383,-0.3832,-0.3834,-0.3837,-0.3839,-0.3842,-0.3844,-0.3846,-0.3849,-0.3851,-0.3853,-0.3856,-0.3858,-0.3861,-0.3863,-0.3865,-0.3868,-0.387,-0.3872,-0.3875,-0.3877,-0.388,-0.3882,-0.3884,-0.3887,-0.3889,-0.3891,-0.3894,-0.3896,-0.3898,-0.3901,-0.3903,-0.3906,-0.3908,-0.391,-0.3913,-0.3915,-0.3917,-0.392,-0.3922,-0.3924,-0.3927,-0.3929,-0.3931,-0.3934,-0.3936,-0.3938,-0.3941,-0.3943,-0.3946,-0.3948,-0.395,-0.3953,-0.3955,-0.3957,-0.396,-0.3962,-0.3964,-0.3967,-0.3969,-0.3971,-0.3974,-0.3976,-0.3978,-0.3981],"m":[13.4779,13.49,13.502,13.5139,13.5258,13.5375,13.5492,13.5607,13.5722,13.5836,13.5949,13.6061,13.6172,13.6283,13.6392,13.6501,13.6609,13.6716,13.6822,13.6927,13.7031,13.7134,13.7237,13.7339,13.7439,13.7539,13.7638,13.7736,13.7834,13.793,13.8026,13.812,13.8214,13.8307,13.8399,13.849,13.8581,13.867,13.8759,13.8847,13.8934,13.902,13.9105,13.919,13.9273,13.9356,13.9438,13.9519,13.96,13.9679,13.9758,13.9836,13.9913,13.9989,14.0065,14.014,14.0214,14.0287,14.0359,14.0431,14.0502,14.0572,14.0642,14.071,14.0778,14.0845,14.0912,14.0977,14.1042,14.1107,14.117,14.1233,14.1295,14.1357,14.1418,14.1478,14.1538,14.1597,14.1655,14.1713,14.177,14.1826,14.1882,14.1937,14.1992,14.2046,14.2099,14.2152,14.2205,14.2256,14.2307,14.2358,14.2408,14.2458,14.2507,14.2555,14.2603,14.265,14.2697,14.2743,14.2789,14.2834,14.2879,14.2923,14.2967,14.3011,14.3053,14.3096,14.3137,14.3179,14.322,14.326,14.33,14.334,14.3379,14.3417,14.3456,14.3493,14.3531,14.3568,14.3604,14.364,14.3676,14.3711,14.3746,14.3781,14.3815,14.3849,14.3882,14.3915,14.3947,14.398,14.4012,14.4043,14.4074,14.4105,14.4135,14.4165,14.4195,14.4225,14.4254,14.4282,14.4311,14.4339,14.4367,14.4394,14.4421,14.4448,14.4475,14.4501,14.4527,14.4553,14.4578,14.4604,14.4628,14.4653,14.4677,14.4702,14.4725,14.4749,14.4772,14.4795,14.4818,14.4841,14.4863,14.4885,14.4907,14.4929,14.495,14.4971,14.4992,14.5013,14.5034,14.5054,14.5074,14.5094,14.5114,14.5133,14.5153,14.5172,14.5191,14.521,14.5228,14.5247,14.5265,14.5283,14.5301,14.5319,14.5336,14.5354,14.5371,14.5388,14.5405,14.5422,14.5438,14.5455,14.5471,14.5487,14.5503,14.5519,14.5535,14.555,14.5566,14.5581,14.5596,14.5611,14.5626,14.5641,14.5656,14.567,14.5685,14.5699,14.5713,14.5728,14.5742,14.5756,14.5769,14.5783,14.5797,14.581,14.5824,14.5837,14.585,14.5863,14.5876,14.5889,14.5902,14.5915,14.5928,14.594,14.5953,14.5965,14.5978,14.599,14.6002,14.6014,14.6026,14.6038,14.605,14.6062,14.6074,14.6086,14.6098,14.6109,14.6121,14.6132,14.6144,14.6155,14.6167,14.6178,14.6189,14.62,14.6211,14.6223,14.6234,14.6245,14.6256,14.6267,14.6277,14.6288,14.6299,14.631,14.6321,14.6331,14.6342,14.6353,14.6363,14.6374,14.6384,14.6395,14.6405,14.6416,14.6426,14.6436,14.6447,14.6457,14.6468,14.6478,14.6488,14.6498,14.6509,14.6519,14.6529,14.6539,14.655,14.656,14.657,14.658,14.659,14.66,14.661,14.662,14.6631,14.6641,14.6651,14.6661,14.6671,14.6681,14.6691,14.6701,14.6711,14.6721,14.6731,14.6741,14.6751,14.6761,14.6771,14.6781,14.6791,14.6801,14.6811,14.6821,14.683,14.684,14.685,14.686,14.687,14.688,14.689,14.69,14.691,14.692,14.693,14.694,14.695,14.696,14.6971,14.6981,14.6991,14.7001,14.7011,14.7021,14.7031,14.7041,14.7051,14.7061,14.7072,14.7082,14.7092,14.7102,14.7112,14.7123,14.7133,14.7143,14.7153,14.7164,14.7174,14.7184,14.7195,14.7205,14.7216,14.7226,14.7236,14.7247,14.7257,14.7268,14.7278,14.7289,14.73,14.731,14.7321,14.7331,14.7342,14.7353,14.7364,14.7374,14.7385,14.7396,14.7407,14.7418,14.7429,14.7439,14.745,14.7461,14.7472,14.7483,14.7495,14.7506,14.7517,14.7528,14.7539,14.755,14.7562,14.7573,14.7584,14.7596,14.7607,14.7618,14.763,14.7641,14.7653,14.7664,14.7676,14.7688,14.7699,14.7711,14.7723,14.7734,14.7746,14.7758,14.777,14.7782,14.7794,14.7805,14.7817,14.7829,14.7842,14.7854,14.7866,14.7878,14.789,14.7902,14.7914,14.7927,14.7939,14.7951,14.7964,14.7976,14.7989,14.8001,14.8013,14.8026,14.8039,14.8051,14.8064,14.8076,14.8089,14.8102,14.8115,14.8127,14.814,14.8153,14.8166,14.8179,14.8192,14.8205,14.8218,14.8231,14.8244,14.8257,14.827,14.8283,14.8296,14.8309,14.8323,14.8336,14.8349,14.8362,14.8376,14.8389,14.8403,14.8416,14.843,14.8443,14.8457,14.847,14.8484,14.8497,14.8511,14.8525,14.8539,14.8552,14.8566,14.858,14.8594,14.8608,14.8622,14.8635,14.8649,14.8663,14.8677,14.8692,14.8706,14.872,14.8734,14.8748,14.8762,14.8777,14.8791,14.8805,14.882,14.8834,14.8848,14.8863,14.8877,14.8892,14.8906,14.8921,14.8936,14.895,14.8965,14.898,14.8995,14.9009,14.9024,14.9039,14.9054,14.9069,14.9084,14.9099,14.9114,14.9129,14.9144,14.916,14.9175,14.919,14.9205,14.9221,14.9236,14.9251,14.9267,14.9282,14.9298,14.9313,14.9329,14.9345,14.936,14.9376,14.9392,14.9407,14.9423,14.9439,14.9455,14.9471,14.9487,14.9503,14.9519,14.9535,14.9551,14.9567,14.9583,14.9599,14.9616,14.9632,14.9648,14.9665,14.9681,14.9697,14.9714,14.973,14.9747,14.9763,14.978,14.9797,14.9813,14.983,14.9847,14.9863,14.988,14.9897,14.9914,14.9931,14.9948,14.9965,14.9982,14.9999,15.0016,15.0033,15.005,15.0067,15.0084,15.0101,15.0119,15.0136,15.0153,15.0171,15.0188,15.0205,15.0223,15.024,15.0258,15.0275,15.0293,15.0311,15.0328,15.0346,15.0364,15.0381,15.0399,15.0417,15.0435,15.0453,15.0471,15.0488,15.0506,15.0524,15.0542,15.056,15.0578,15.0597,15.0615,15.0633,15.0651,15.0669,15.0687,15.0706,15.0724,15.0742,15.076,15.0779,15.0797,15.0815,15.0834,15.0852,15.0871,15.0889,15.0908,15.0926,15.0945,15.0963,15.0982,15.1,15.1019,15.1037,15.1056,15.1075,15.1093,15.1112,15.1131,15.1149,15.1168,15.1187,15.1206,15.1224,15.1243,15.1262,15.1281,15.13,15.1318,15.1337,15.1356,15.1375,15.1394,15.1413,15.1432,15.1451,15.147,15.1488,15.1507,15.1526,15.1545,15.1564,15.1583,15.1602,15.1621,15.164,15.1659,15.1678,15.1697,15.1716,15.1735,15.1754,15.1774,15.1793,15.1812,15.1831,15.185,15.1869,15.1888,15.1907,15.1926,15.1945,15.1964,15.1983,15.2002,15.2021,15.204,15.2059,15.2079,15.2098,15.2117,15.2136,15.2155,15.2174,15.2193,15.2212,15.2231,15.225,15.2269,15.2288,15.2307,15.2326,15.2345,15.2364,15.2383,15.2402,15.2421,15.244,15.2459,15.2478,15.2497,15.2516,15.2535,15.2554,15.2573,15.2591,15.261,15.2629,15.2648,15.2667,15.2686,15.2705,15.2723,15.2742,15.2761,15.278,15.2799,15.2817,15.2836,15.2855,15.2873,15.2892,15.2911,15.293,15.2948,15.2967,15.2985,15.3004,15.3023,15.3041,15.306,15.3078,15.3097,15.3115,15.3134,15.3152,15.3171,15.3189,15.3207,15.3226,15.3244,15.3263,15.3281,15.3299,15.3318,15.3336,15.3354,15.3372,15.3391,15.3409,15.3427,15.3445,15.3463,15.3481,15.3499,15.3517,15.3536,15.3554,15.3572,15.359,15.3608,15.3625,15.3643,15.3661,15.3679,15.3697,15.3715,15.3733,15.375,15.3768,15.3786,15.3804,15.3821,15.3839,15.3857,15.3874,15.3892,15.391,15.3927,15.3945,15.3962,15.398,15.3997,15.4014,15.4032,15.4049,15.4067,15.4084,15.4101,15.4119,15.4136,15.4153,15.417,15.4187,15.4205,15.4222,15.4239,15.4256,15.4273,15.429,15.4307,15.4324,15.4341,15.4358,15.4375,15.4391,15.4408,15.4425,15.4442,15.4459,15.4475,15.4492,15.4509,15.4525,15.4542,15.4559,15.4575,15.4592,15.4608,15.4625,15.4641,15.4658,15.4674,15.469,15.4707,15.4723,15.4739,15.4756,15.4772,15.4788,15.4804,15.4821,15.4837,15.4853,15.4869,15.4885,15.4901,15.4917,15.4933,15.4949,15.4965,15.4981,15.4997,15.5013,15.5028,15.5044,15.506,15.5076,15.5091,15.5107,15.5123,15.5138,15.5154,15.5169,15.5185,15.5201,15.5216,15.5232,15.5247,15.5262,15.5278,15.5293,15.5308,15.5324,15.5339,15.5354,15.537,15.5385,15.54,15.5415,15.543,15.5445,15.546,15.5475,15.549,15.5505,15.552,15.5535,15.555,15.5565,15.558,15.5595,15.561,15.5624,15.5639,15.5654,15.5669,15.5683,15.5698,15.5712,15.5727,15.5742,15.5756,15.5771,15.5785,15.58,15.5814,15.5829,15.5843,15.5857,15.5872,15.5886,15.59,15.5915,15.5929,15.5943,15.5957,15.5971,15.5986,15.6,15.6014,15.6028,15.6042,15.6056,15.607,15.6084,15.6098,15.6112,15.6126,15.614,15.6154,15.6167,15.6181,15.6195,15.6209,15.6223,15.6236,15.625,15.6264,15.6277,15.6291,15.6305,15.6318,15.6332,15.6345,15.6359,15.6372,15.6386,15.6399,15.6413,15.6426,15.644,15.6453,15.6467,15.648,15.6493,15.6507,15.652,15.6533,15.6546,15.656,15.6573,15.6586,15.6599,15.6612,15.6625,15.6639,15.6652,15.6665,15.6678,15.6691,15.6704,15.6717,15.673,15.6743,15.6756,15.6769,15.6782,15.6795,15.6807,15.682,15.6833,15.6846,15.6859,15.6872,15.6884,15.6897,15.691,15.6923,15.6935,15.6948,15.6961,15.6973,15.6986,15.6999,15.7011,15.7024,15.7036,15.7049,15.7062,15.7074,15.7087,15.7099,15.7112,15.7124,15.7137,15.7149,15.7161,15.7174,15.7186,15.7199,15.7211,15.7223,15.7236,15.7248,15.726,15.7273,15.7285,15.7297,15.731,15.7322,15.7334,15.7346,15.7358,15.7371,15.7383,15.7395,15.7407,15.7419,15.7431,15.7444,15.7456,15.7468,15.748,15.7492,15.7504,15.7516,15.7528,15.754,15.7552,15.7564,15.7576,15.7588,15.76,15.7612,15.7624,15.7636,15.7648,15.766,15.7672,15.7684,15.7695,15.7707,15.7719,15.7731,15.7743,15.7755,15.7767,15.7778,15.779,15.7802,15.7814,15.7825,15.7837,15.7849,15.7861,15.7872,15.7884,15.7896,15.7908,15.7919,15.7931,15.7943,15.7954,15.7966,15.7978,15.7989,15.8001,15.8013,15.8024,15.8036,15.8047,15.8059,15.8071,15.8082,15.8094,15.8105,15.8117,15.8129,15.814,15.8152,15.8163,15.8175,15.8186,15.8198,15.8209,15.8221,15.8232,15.8244,15.8255,15.8267,15.8278,15.829,15.8301,15.8312,15.8324,15.8335,15.8347,15.8358,15.837,15.8381,15.8392,15.8404,15.8415,15.8427,15.8438,15.8449,15.8461,15.8472,15.8483,15.8495,15.8506,15.8517,15.8529,15.854,15.8551,15.8563,15.8574,15.8585,15.8597,15.8608,15.8619,15.863,15.8642,15.8653,15.8664,15.8676,15.8687,15.8698,15.8709,15.8721,15.8732,15.8743,15.8754,15.8765,15.8777,15.8788,15.8799,15.881,15.8821,15.8833,15.8844,15.8855,15.8866,15.8877,15.8888,15.89,15.8911,15.8922,15.8933,15.8944,15.8955,15.8966,15.8977,15.8989,15.9,15.9011,15.9022,15.9033,15.9044,15.9055,15.9066,15.9077,15.9088,15.91,15.9111,15.9122,15.9133,15.9144,15.9155,15.9166,15.9177,15.9188,15.9199,15.921,15.9221,15.9232,15.9243,15.9254,15.9265,15.9276,15.9287,15.9298,15.9309,15.932,15.9331,15.9342,15.9353,15.9364,15.9375,15.9386,15.9397,15.9408,15.9419,15.943,15.9441,15.9451,15.9462,15.9473,15.9484,15.9495,15.9506,15.9517,15.9528,15.9539,15.955,15.9561,15.9572,15.9582,15.9593,15.9604,15.9615,15.9626,15.9637,15.9648,15.9658,15.9669,15.968,15.9691,15.9702,15.9713,15.9724,15.9734,15.9745,15.9756,15.9767,15.9778,15.9788,15.9799,15.981,15.9821,15.9832,15.9842,15.9853,15.9864,15.9875,15.9885,15.9896,15.9907,15.9918,15.9928,15.9939,15.995,15.9961,15.9971,15.9982,15.9993,16.0004,16.0014,16.0025,16.0036,16.0046,16.0057,16.0068,16.0079,16.0089,16.01,16.0111,16.0121,16.0132,16.0143,16.0153,16.0164,16.0175,16.0185,16.0196,16.0207,16.0217,16.0228,16.0239,16.0249,16.026,16.027,16.0281,16.0292,16.0302,16.0313,16.0324,16.0334,16.0345,16.0355,16.0366,16.0377,16.0387,16.0398,16.0408,16.0419,16.0429,16.044,16.0451,16.0461,16.0472,16.0482,16.0493,16.0503,16.0514,16.0524,16.0535,16.0546,16.0556,16.0567,16.0577,16.0588,16.0598,16.0609,16.0619,16.063,16.064,16.0651,16.0661,16.0672,16.0682,16.0693,16.0703,16.0714,16.0724,16.0735,16.0745,16.0756,16.0766,16.0777,16.0787,16.0798,16.0808,16.0818,16.0829,16.0839,16.085,16.086,16.0871,16.0881,16.0892,16.0902,16.0912,16.0923,16.0933,16.0944,16.0954,16.0965,16.0975,16.0985,16.0996,16.1006,16.1017,16.1027,16.1038,16.1048,16.1058,16.1069,16.1079,16.109,16.11,16.111,16.1121,16.1131,16.1141,16.1152,16.1162,16.1173,16.1183,16.1193,16.1204,16.1214,16.1224,16.1235,16.1245,16.1255,16.1266,16.1276,16.1287,16.1297,16.1307,16.1318,16.1328,16.1338,16.1349,16.1359,16.1369,16.138,16.139,16.14,16.1411,16.1421,16.1431,16.1442,16.1452,16.1462,16.1473,16.1483,16.1493,16.1504,16.1514,16.1524,16.1534,16.1545,16.1555,16.1565,16.1576,16.1586,16.1596,16.1607,16.1617,16.1627,16.1638,16.1648,16.1658,16.1668,16.1679,16.1689,16.1699,16.171,16.172,16.173,16.174,16.1751,16.1761,16.1771,16.1782,16.1792,16.1802,16.1813,16.1823,16.1833,16.1843,16.1854,16.1864,16.1874,16.1885,16.1895,16.1905,16.1915,16.1926,16.1936,16.1946,16.1956,16.1967,16.1977,16.1987,16.1998,16.2008,16.2018,16.2028,16.2039,16.2049,16.2059,16.207,16.208,16.209,16.21,16.2111,16.2121,16.2131,16.2141,16.2152,16.2162,16.2172,16.2183,16.2193,16.2203,16.2213,16.2224,16.2234,16.2244,16.2255,16.2265,16.2275,16.2285,16.2296,16.2306,16.2316,16.2327,16.2337,16.2347,16.2357,16.2368,16.2378,16.2388,16.2399,16.2409,16.2419,16.2429,16.244,16.245,16.246,16.2471,16.2481,16.2491,16.2501,16.2512,16.2522,16.2532,16.2543,16.2553,16.2563,16.2574,16.2584,16.2594,16.2605,16.2615,16.2625,16.2636,16.2646,16.2656,16.2666,16.2677,16.2687,16.2697,16.2708,16.2718,16.2728,16.2739,16.2749,16.2759,16.277,16.278,16.279,16.2801,16.2811,16.2821,16.2832,16.2842,16.2852,16.2863,16.2873,16.2883,16.2894,16.2904,16.2914,16.2925,16.2935,16.2945,16.2956,16.2966,16.2976,16.2987,16.2997,16.3007,16.3018,16.3028,16.3039,16.3049,16.3059,16.307,16.308,16.309,16.3101,16.3111,16.3121,16.3132,16.3142,16.3152,16.3163,16.3173,16.3184,16.3194,16.3204,16.3215,16.3225,16.3235,16.3246,16.3256,16.3266,16.3277,16.3287,16.3298,16.3308,16.3318,16.3329,16.3339,16.3349,16.336,16.337,16.3381,16.3391,16.3401,16.3412,16.3422,16.3432,16.3443,16.3453,16.3464,16.3474,16.3484,16.3495,16.3505,16.3515,16.3526,16.3536,16.3547,16.3557,16.3567,16.3578,16.3588,16.3599,16.3609,16.3619,16.363,16.364,16.3651,16.3661,16.3671,16.3682,16.3692,16.3703,16.3713,16.3723,16.3734,16.3744,16.3754,16.3765,16.3775,16.3786,16.3796,16.3806,16.3817,16.3827,16.3838,16.3848,16.3859,16.3869,16.3879,16.389,16.39,16.3911,16.3921,16.3931,16.3942,16.3952,16.3963,16.3973,16.3983,16.3994,16.4004,16.4015,16.4025,16.4035,16.4046,16.4056,16.4067,16.4077,16.4088,16.4098,16.4108,16.4119,16.4129,16.414,16.415,16.4161,16.4171,16.4181,16.4192,16.4202,16.4213,16.4223,16.4234,16.4244,16.4254,16.4265,16.4275,16.4286,16.4296,16.4307,16.4317,16.4328,16.4338,16.4348,16.4359,16.4369,16.438,16.439,16.4401,16.4411,16.4422,16.4432,16.4442,16.4453,16.4463,16.4474,16.4484,16.4495,16.4505,16.4516,16.4526,16.4537,16.4547,16.4558,16.4568,16.4579,16.4589,16.46,16.461,16.4621,16.4631,16.4641,16.4652,16.4662,16.4673,16.4683,16.4694,16.4704,16.4715,16.4725,16.4736,16.4746,16.4757,16.4767,16.4778,16.4788,16.4799,16.4809,16.482,16.483,16.4841,16.4851,16.4862,16.4873,16.4883,16.4894,16.4904,16.4915,16.4925,16.4936,16.4946,16.4957,16.4967,16.4978,16.4988,16.4999,16.5009,16.502,16.503,16.5041,16.5051,16.5062,16.5073,16.5083,16.5094,16.5104,16.5115,16.5125,16.5136,16.5146,16.5157,16.5167,16.5178,16.5189],"s":[0.07474,0.07476,0.07478,0.0748,0.07481,0.07483,0.07485,0.07486,0.07488,0.0749,0.07491,0.07493,0.07494,0.07496,0.07498,0.07499,0.07501,0.07502,0.07504,0.07505,0.07507,0.07509,0.0751,0.07512,0.07513,0.07515,0.07516,0.07518,0.07519,0.07521,0.07522,0.07524,0.07525,0.07527,0.07528,0.0753,0.07531,0.07532,0.07534,0.07535,0.07537,0.07538,0.0754,0.07541,0.07542,0.07544,0.07545,0.07547,0.07548,0.07549,0.07551,0.07552,0.07553,0.07555,0.07556,0.07557,0.07559,0.0756,0.07561,0.07563,0.07564,0.07565,0.07567,0.07568,0.07569,0.0757,0.07572,0.07573,0.07574,0.07575,0.07577,0.07578,0.07579,0.0758,0.07581,0.07583,0.07584,0.07585,0.07586,0.07587,0.07588,0.07589,0.07591,0.07592,0.07593,0.07594,0.07595,0.07596,0.07597,0.07598,0.07599,0.076,0.07601,0.07603,0.07604,0.07605,0.07606,0.07607,0.07608,0.07609,0.0761,0.07611,0.07612,0.07613,0.07613,0.07614,0.07615,0.07616,0.07617,0.07618,0.07619,0.0762,0.07621,0.07622,0.07623,0.07623,0.07624,0.07625,0.07626,0.07627,0.07628,0.07628,0.07629,0.0763,0.07631,0.07632,0.07632,0.07633,0.07634,0.07635,0.07635,0.07636,0.07637,0.07638,0.07638,0.07639,0.0764,0.0764,0.07641,0.07642,0.07642,0.07643,0.07644,0.07644,0.07645,0.07646,0.07646,0.07647,0.07647,0.07648,0.07649,0.07649,0.0765,0.0765,0.07651,0.07652,0.07652,0.07653,0.07653,0.07654,0.07654,0.07655,0.07655,0.07656,0.07656,0.07657,0.07657,0.07658,0.07658,0.07659,0.07659,0.0766,0.0766,0.07661,0.07661,0.07662,0.07662,0.07663,0.07663,0.07663,0.07664,0.07664,0.07665,0.07665,0.07666,0.07666,0.07666,0.07667,0.07667,0.07667,0.07668,0.07668,0.07669,0.07669,0.07669,0.0767,0.0767,0.0767,0.07671,0.07671,0.07671,0.07672,0.07672,0.07672,0.07673,0.07673,0.07673,0.07674,0.07674,0.07674,0.07675,0.07675,0.07675,0.07675,0.07676,0.07676,0.07676,0.07677,0.07677,0.07677,0.07677,0.07678,0.07678,0.07678,0.07679,0.07679,0.07679,0.07679,0.0768,0.0768,0.0768,0.0768,0.07681,0.07681,0.07681,0.07681,0.07681,0.07682,0.07682,0.07682,0.07682,0.07683,0.07683,0.07683,0.07683,0.07683,0.07684,0.07684,0.07684,0.07684,0.07685,0.07685,0.07685,0.07685,0.07685,0.07686,0.07686,0.07686,0.07686,0.07686,0.07687,0.07687,0.07687,0.07687,0.07687,0.07687,0.07688,0.07688,0.07688,0.07688,0.07688,0.07689,0.07689,0.07689,0.07689,0.07689,0.07689,0.0769,0.0769,0.0769,0.0769,0.0769,0.07691,0.07691,0.07691,0.07691,0.07691,0.07691,0.07692,0.07692,0.07692,0.07692,0.07692,0.07692,0.07693,0.07693,0.07693,0.07693,0.07693,0.07693,0.07693,0.07694,0.07694,0.07694,0.07694,0.07694,0.07694,0.07695,0.07695,0.07695,0.07695,0.07695,0.07695,0.07695,0.07696,0.07696,0.07696,0.07696,0.07696,0.07696,0.07697,0.07697,0.07697,0.07697,0.07697,0.07697,0.07697,0.07698,0.07698,0.07698,0.07698,0.07698,0.07698,0.07698,0.07699,0.07699,0.07699,0.07699,0.07699,0.07699,0.07699,0.077,0.077,0.077,0.077,0.077,0.077,0.077,0.07701,0.07701,0.07701,0.07701,0.07701,0.07701,0.07701,0.07701,0.07702,0.07702,0.07702,0.07702,0.07702,0.07702,0.07702,0.07703,0.07703,0.07703,0.07703,0.07703,0.07703,0.07703,0.07703,0.07704,0.07704,0.07704,0.07704,0.07704,0.07704,0.07704,0.07704,0.07705,0.07705,0.07705,0.07705,0.07705,0.07705,0.07705,0.07705,0.07706,0.07706,0.07706,0.07706,0.07706,0.07706,0.07706,0.07706,0.07707,0.07707,0.07707,0.07707,0.07707,0.07707,0.07707,0.07707,0.07707,0.07708,0.07708,0.07708,0.07708,0.07708,0.07708,0.07708,0.07708,0.07708,0.07709,0.07709,0.07709,0.07709,0.07709,0.07709,0.07709,0.07709,0.07709,0.0771,0.0771,0.0771,0.0771,0.0771,0.0771,0.0771,0.0771,0.0771,0.07711,0.07711,0.07711,0.07711,0.07711,0.07711,0.07711,0.07711,0.07711,0.07711,0.07712,0.07712,0.07712,0.07712,0.07712,0.07712,0.07712,0.07712,0.07712,0.07713,0.07713,0.07713,0.07713,0.07713,0.07713,0.07713,0.07713,0.07713,0.07714,0.07714,0.07714,0.07714,0.07714,0.07714,0.07714,0.07714,0.07714,0.07714,0.07715,0.07715,0.07715,0.07715,0.07715,0.07715,0.07715,0.07715,0.07716,0.07716,0.07716,0.07716,0.07716,0.07716,0.07716,0.07716,0.07716,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,0.07718,0.07718,0.07718,0.07718,0.07718,0.07718,0.07718,0.07718,0.07718,0.07719,0.07719,0.07719,0.07719,0.07719,0.07719,0.07719,0.0772,0.0772,0.0772,0.0772,0.0772,0.0772,0.0772,0.0772,0.07721,0.07721,0.07721,0.07721,0.07721,0.07721,0.07721,0.07722,0.07722,0.07722,0.07722,0.07722,0.07722,0.07722,0.07723,0.07723,0.07723,0.07723,0.07723,0.07723,0.07724,0.07724,0.07724,0.07724,0.07724,0.07724,0.07725,0.07725,0.07725,0.07725,0.07725,0.07725,0.07726,0.07726,0.07726,0.07726,0.07726,0.07726,0.07727,0.07727,0.07727,0.07727,0.07727,0.07727,0.07728,0.07728,0.07728,0.07728,0.07728,0.07729,0.07729,0.07729,0.07729,0.07729,0.07729,0.0773,0.0773,0.0773,0.0773,0.0773,0.07731,0.07731,0.07731,0.07731,0.07731,0.07732,0.07732,0.07732,0.07732,0.07733,0.07733,0.07733,0.07733,0.07733,0.07734,0.07734,0.07734,0.07734,0.07734,0.07735,0.07735,0.07735,0.07735,0.07736,0.07736,0.07736,0.07736,0.07737,0.07737,0.07737,0.07737,0.07738,0.07738,0.07738,0.07738,0.07739,0.07739,0.07739,0.07739,0.0774,0.0774,0.0774,0.0774,0.07741,0.07741,0.07741,0.07741,0.07742,0.07742,0.07742,0.07742,0.07743,0.07743,0.07743,0.07744,0.07744,0.07744,0.07744,0.07745,0.07745,0.07745,0.07746,0.07746,0.07746,0.07746,0.07747,0.07747,0.07747,0.07748,0.07748,0.07748,0.07749,0.07749,0.07749,0.07749,0.0775,0.0775,0.0775,0.07751,0.07751,0.07751,0.07752,0.07752,0.07752,0.07753,0.07753,0.07753,0.07754,0.07754,0.07754,0.07755,0.07755,0.07755,0.07756,0.07756,0.07756,0.07757,0.07757,0.07758,0.07758,0.07758,0.07759,0.07759,0.07759,0.0776,0.0776,0.0776,0.07761,0.07761,0.07762,0.07762,0.07762,0.07763,0.07763,0.07763,0.07764,0.07764,0.07765,0.07765,0.07765,0.07766,0.07766,0.07767,0.07767,0.07767,0.07768,0.07768,0.07769,0.07769,0.07769,0.0777,0.0777,0.07771,0.07771,0.07771,0.07772,0.07772,0.07773,0.07773,0.07774,0.07774,0.07774,0.07775,0.07775,0.07776,0.07776,0.07777,0.07777,0.07778,0.07778,0.07778,0.07779,0.07779,0.0778,0.0778,0.07781,0.07781,0.07782,0.07782,0.07782,0.07783,0.07783,0.07784,0.07784,0.07785,0.07785,0.07786,0.07786,0.07787,0.07787,0.07788,0.07788,0.07789,0.07789,0.0779,0.0779,0.0779,0.07791,0.07791,0.07792,0.07792,0.07793,0.07793,0.07794,0.07794,0.07795,0.07795,0.07796,0.07796,0.07797,0.07797,0.07798,0.07798,0.07799,0.078,0.078,0.07801,0.07801,0.07802,0.07802,0.07803,0.07803,0.07804,0.07804,0.07805,0.07805,0.07806,0.07806,0.07807,0.07807,0.07808,0.07808,0.07809,0.0781,0.0781,0.07811,0.07811,0.07812,0.07812,0.07813,0.07813,0.07814,0.07815,0.07815,0.07816,0.07816,0.07817,0.07817,0.07818,0.07818,0.07819,0.0782,0.0782,0.07821,0.07821,0.07822,0.07823,0.07823,0.07824,0.07824,0.07825,0.07825,0.07826,0.07827,0.07827,0.07828,0.07828,0.07829,0.0783,0.0783,0.07831,0.07831,0.07832,0.07833,0.07833,0.07834,0.07834,0.07835,0.07836,0.07836,0.07837,0.07837,0.07838,0.07839,0.07839,0.0784,0.07841,0.07841,0.07842,0.07842,0.07843,0.07844,0.07844,0.07845,0.07846,0.07846,0.07847,0.07848,0.07848,0.07849,0.07849,0.0785,0.07851,0.07851,0.07852,0.07853,0.07853,0.07854,0.07855,0.07855,0.07856,0.07857,0.07857,0.07858,0.07859,0.07859,0.0786,0.07861,0.07861,0.07862,0.07863,0.07863,0.07864,0.07865,0.07865,0.07866,0.07867,0.07867,0.07868,0.07869,0.07869,0.0787,0.07871,0.07871,0.07872,0.07873,0.07873,0.07874,0.07875,0.07876,0.07876,0.07877,0.07878,0.07878,0.07879,0.0788,0.0788,0.07881,0.07882,0.07883,0.07883,0.07884,0.07885,0.07885,0.07886,0.07887,0.07888,0.07888,0.07889,0.0789,0.0789,0.07891,0.07892,0.07893,0.07893,0.07894,0.07895,0.07895,0.07896,0.07897,0.07898,0.07898,0.07899,0.079,0.07901,0.07901,0.07902,0.07903,0.07904,0.07904,0.07905,0.07906,0.07906,0.07907,0.07908,0.07909,0.07909,0.0791,0.07911,0.07912,0.07912,0.07913,0.07914,0.07915,0.07915,0.07916,0.07917,0.07918,0.07918,0.07919,0.0792,0.07921,0.07922,0.07922,0.07923,0.07924,0.07925,0.07925,0.07926,0.07927,0.07928,0.07928,0.07929,0.0793,0.07931,0.07932,0.07932,0.07933,0.07934,0.07935,0.07935,0.07936,0.07937,0.07938,0.07939,0.07939,0.0794,0.07941,0.07942,0.07942,0.07943,0.07944,0.07945,0.07946,0.07946,0.07947,0.07948,0.07949,0.0795,0.0795,0.07951,0.07952,0.07953,0.07953,0.07954,0.07955,0.07956,0.07957,0.07957,0.07958,0.07959,0.0796,0.07961,0.07961,0.07962,0.07963,0.07964,0.07965,0.07966,0.07966,0.07967,0.07968,0.07969,0.0797,0.0797,0.07971,0.07972,0.07973,0.07974,0.07974,0.07975,0.07976,0.07977,0.07978,0.07979,0.07979,0.0798,0.07981,0.07982,0.07983,0.07983,0.07984,0.07985,0.07986,0.07987,0.07988,0.07988,0.07989,0.0799,0.07991,0.07992,0.07992,0.07993,0.07994,0.07995,0.07996,0.07997,0.07997,0.07998,0.07999,0.08,0.08001,0.08002,0.08002,0.08003,0.08004,0.08005,0.08006,0.08007,0.08007,0.08008,0.08009,0.0801,0.08011,0.08012,0.08013,0.08013,0.08014,0.08015,0.08016,0.08017,0.08018,0.08018,0.08019,0.0802,0.08021,0.08022,0.08023,0.08023,0.08024,0.08025,0.08026,0.08027,0.08028,0.08029,0.08029,0.0803,0.08031,0.08032,0.08033,0.08034,0.08035,0.08035,0.08036,0.08037,0.08038,0.08039,0.0804,0.08041,0.08041,0.08042,0.08043,0.08044,0.08045,0.08046,0.08047,0.08047,0.08048,0.08049,0.0805,0.08051,0.08052,0.08053,0.08053,0.08054,0.08055,0.08056,0.08057,0.08058,0.08059,0.08059,0.0806,0.08061,0.08062,0.08063,0.08064,0.08065,0.08066,0.08066,0.08067,0.08068,0.08069,0.0807,0.08071,0.08072,0.08073,0.08073,0.08074,0.08075,0.08076,0.08077,0.08078,0.08079,0.0808,0.0808,0.08081,0.08082,0.08083,0.08084,0.08085,0.08086,0.08087,0.08087,0.08088,0.08089,0.0809,0.08091,0.08092,0.08093,0.08094,0.08094,0.08095,0.08096,0.08097,0.08098,0.08099,0.081,0.08101,0.08102,0.08102,0.08103,0.08104,0.08105,0.08106,0.08107,0.08108,0.08109,0.0811,0.0811,0.08111,0.08112,0.08113,0.08114,0.08115,0.08116,0.08117,0.08118,0.08118,0.08119,0.0812,0.08121,0.08122,0.08123,0.08124,0.08125,0.08126,0.08126,0.08127,0.08128,0.08129,0.0813,0.08131,0.08132,0.08133,0.08134,0.08134,0.08135,0.08136,0.08137,0.08138,0.08139,0.0814,0.08141,0.08142,0.08143,0.08143,0.08144,0.08145,0.08146,0.08147,0.08148,0.08149,0.0815,0.08151,0.08152,0.08152,0.08153,0.08154,0.08155,0.08156,0.08157,0.08158,0.08159,0.0816,0.08161,0.08162,0.08162,0.08163,0.08164,0.08165,0.08166,0.08167,0.08168,0.08169,0.0817,0.08171,0.08171,0.08172,0.08173,0.08174,0.08175,0.08176,0.08177,0.08178,0.08179,0.0818,0.08181,0.08181,0.08182,0.08183,0.08184,0.08185,0.08186,0.08187,0.08188,0.08189,0.0819,0.08191,0.08192,0.08192,0.08193,0.08194,0.08195,0.08196,0.08197,0.08198,0.08199,0.082,0.08201,0.08202,0.08203,0.08203,0.08204,0.08205,0.08206,0.08207,0.08208,0.08209,0.0821,0.08211,0.08212,0.08213,0.08214,0.08214,0.08215,0.08216,0.08217,0.08218,0.08219,0.0822,0.08221,0.08222,0.08223,0.08224,0.08225,0.08225,0.08226,0.08227,0.08228,0.08229,0.0823,0.08231,0.08232,0.08233,0.08234,0.08235,0.08236,0.08237,0.08237,0.08238,0.08239,0.0824,0.08241,0.08242,0.08243,0.08244,0.08245,0.08246,0.08247,0.08248,0.08249,0.0825,0.0825,0.08251,0.08252,0.08253,0.08254,0.08255,0.08256,0.08257,0.08258,0.08259,0.0826,0.08261,0.08262,0.08262,0.08263,0.08264,0.08265,0.08266,0.08267,0.08268,0.08269,0.0827,0.08271,0.08272,0.08273,0.08274,0.08275,0.08275,0.08276,0.08277,0.08278,0.08279,0.0828,0.08281,0.08282,0.08283,0.08284,0.08285,0.08286,0.08287,0.08288,0.08289,0.08289,0.0829,0.08291,0.08292,0.08293,0.08294,0.08295,0.08296,0.08297,0.08298,0.08299,0.083,0.08301,0.08302,0.08303,0.08303,0.08304,0.08305,0.08306,0.08307,0.08308,0.08309,0.0831,0.08311,0.08312,0.08313,0.08314,0.08315,0.08316,0.08317,0.08317,0.08318,0.08319,0.0832,0.08321,0.08322,0.08323,0.08324,0.08325,0.08326,0.08327,0.08328,0.08329,0.0833,0.08331,0.08331,0.08332,0.08333,0.08334,0.08335,0.08336,0.08337,0.08338,0.08339,0.0834,0.08341,0.08342,0.08343,0.08344,0.08345,0.08346,0.08346,0.08347,0.08348,0.08349,0.0835,0.08351,0.08352,0.08353,0.08354,0.08355,0.08356,0.08357,0.08358,0.08359,0.0836,0.08361,0.08362,0.08362,0.08363,0.08364,0.08365,0.08366,0.08367,0.08368,0.08369,0.0837,0.08371,0.08372,0.08373,0.08374,0.08375,0.08376,0.08377,0.08378,0.08378,0.08379,0.0838,0.08381,0.08382,0.08383,0.08384,0.08385,0.08386,0.08387,0.08388,0.08389,0.0839,0.08391,0.08392,0.08393,0.08394,0.08394,0.08395,0.08396,0.08397,0.08398,0.08399,0.084,0.08401,0.08402,0.08403,0.08404,0.08405,0.08406,0.08407,0.08408,0.08409,0.0841,0.08411,0.08411,0.08412,0.08413,0.08414,0.08415,0.08416,0.08417,0.08418,0.08419,0.0842,0.08421,0.08422,0.08423,0.08424,0.08425,0.08426,0.08427,0.08428,0.08428,0.08429,0.0843,0.08431,0.08432,0.08433,0.08434,0.08435,0.08436,0.08437,0.08438,0.08439,0.0844,0.08441,0.08442,0.08443,0.08444,0.08445,0.08446,0.08446,0.08447,0.08448,0.08449,0.0845,0.08451,0.08452,0.08453,0.08454,0.08455,0.08456,0.08457,0.08458,0.08459,0.0846,0.08461,0.08462,0.08463,0.08464,0.08464,0.08465,0.08466,0.08467,0.08468,0.08469,0.0847,0.08471,0.08472,0.08473,0.08474,0.08475,0.08476,0.08477,0.08478,0.08479,0.0848,0.08481,0.08482,0.08483,0.08484,0.08484,0.08485,0.08486,0.08487,0.08488,0.08489,0.0849,0.08491,0.08492,0.08493,0.08494,0.08495,0.08496,0.08497,0.08498,0.08499,0.085,0.08501,0.08502,0.08503,0.08504,0.08504,0.08505,0.08506,0.08507,0.08508,0.08509,0.0851,0.08511,0.08512,0.08513,0.08514,0.08515,0.08516,0.08517,0.08518,0.08519,0.0852,0.08521,0.08522,0.08523,0.08524,0.08524,0.08525,0.08526,0.08527,0.08528,0.08529,0.0853,0.08531,0.08532,0.08533,0.08534,0.08535,0.08536,0.08537,0.08538,0.08539,0.0854,0.08541,0.08542,0.08543,0.08544,0.08545,0.08546,0.08546,0.08547,0.08548,0.08549,0.0855,0.08551,0.08552,0.08553,0.08554,0.08555,0.08556,0.08557,0.08558,0.08559,0.0856,0.08561,0.08562,0.08563,0.08564,0.08565,0.08566,0.08567,0.08567,0.08568,0.08569,0.0857,0.08571,0.08572,0.08573,0.08574,0.08575,0.08576,0.08577,0.08578,0.08579,0.0858,0.08581,0.08582,0.08583,0.08584,0.08585,0.08586,0.08587,0.08588,0.08589,0.08589,0.0859,0.08591,0.08592,0.08593,0.08594,0.08595,0.08596,0.08597,0.08598,0.08599,0.086,0.08601,0.08602,0.08603,0.08604,0.08605,0.08606,0.08607,0.08608,0.08609,0.0861,0.0861,0.08611,0.08612,0.08613,0.08614,0.08615,0.08616,0.08617,0.08618,0.08619,0.0862,0.08621,0.08622,0.08623,0.08624]},"F":{"i":[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826],"l":[-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733,-0.1733],"m":[13.0245,13.0371,13.0496,13.062,13.0744,13.0866,13.0987,13.1107,13.1226,13.1345,13.1462,13.1578,13.1693,13.1806,13.1919,13.2031,13.2142,13.2251,13.236,13.2467,13.2574,13.2679,13.2783,13.2886,13.2988,13.3089,13.3189,13.3288,13.3386,13.3482,13.3578,13.3672,13.3766,13.3858,13.3949,13.4039,13.4129,13.4217,13.4304,13.439,13.4475,13.4559,13.4642,13.4724,13.4805,13.4886,13.4965,13.5043,13.5121,13.5197,13.5273,13.5348,13.5422,13.5495,13.5567,13.5638,13.5709,13.5778,13.5847,13.5915,13.5983,13.6049,13.6115,13.618,13.6244,13.6308,13.6371,13.6433,13.6494,13.6555,13.6616,13.6675,13.6734,13.6792,13.685,13.6907,13.6963,13.7019,13.7074,13.7129,13.7183,13.7237,13.7289,13.7342,13.7394,13.7445,13.7496,13.7546,13.7595,13.7645,13.7693,13.7741,13.7789,13.7836,13.7883,13.7929,13.7975,13.802,13.8065,13.8109,13.8153,13.8197,13.824,13.8282,13.8324,13.8366,13.8407,13.8448,13.8489,13.8529,13.8569,13.8608,13.8647,13.8685,13.8723,13.8761,13.8799,13.8836,13.8872,13.8909,13.8945,13.898,13.9016,13.9051,13.9085,13.912,13.9154,13.9187,13.9221,13.9254,13.9287,13.9319,13.9351,13.9383,13.9415,13.9446,13.9477,13.9508,13.9539,13.9569,13.9599,13.9628,13.9658,13.9687,13.9716,13.9744,13.9773,13.9801,13.9829,13.9857,13.9884,13.9911,13.9938,13.9965,13.9991,14.0018,14.0044,14.007,14.0095,14.012,14.0146,14.017,14.0195,14.022,14.0244,14.0268,14.0292,14.0315,14.0339,14.0362,14.0385,14.0408,14.043,14.0453,14.0475,14.0497,14.0519,14.054,14.0562,14.0583,14.0604,14.0625,14.0646,14.0666,14.0687,14.0707,14.0727,14.0747,14.0766,14.0786,14.0805,14.0824,14.0844,14.0862,14.0881,14.09,14.0918,14.0937,14.0955,14.0973,14.0991,14.1008,14.1026,14.1043,14.1061,14.1078,14.1095,14.1112,14.1129,14.1146,14.1162,14.1179,14.1195,14.1211,14.1228,14.1244,14.126,14.1275,14.1291,14.1307,14.1322,14.1338,14.1353,14.1368,14.1383,14.1398,14.1413,14.1428,14.1443,14.1458,14.1472,14.1487,14.1501,14.1516,14.153,14.1544,14.1558,14.1572,14.1586,14.16,14.1614,14.1628,14.1642,14.1656,14.1669,14.1683,14.1696,14.171,14.1723,14.1737,14.175,14.1763,14.1777,14.179,14.1803,14.1816,14.1829,14.1842,14.1855,14.1869,14.1882,14.1894,14.1907,14.192,14.1933,14.1946,14.1959,14.1972,14.1985,14.1998,14.201,14.2023,14.2036,14.2049,14.2062,14.2074,14.2087,14.21,14.2113,14.2126,14.2138,14.2151,14.2164,14.2177,14.2189,14.2202,14.2215,14.2228,14.224,14.2253,14.2266,14.2279,14.2292,14.2304,14.2317,14.233,14.2343,14.2356,14.2369,14.2381,14.2394,14.2407,14.242,14.2433,14.2446,14.2459,14.2472,14.2485,14.2498,14.2511,14.2524,14.2537,14.255,14.2563,14.2576,14.2589,14.2602,14.2615,14.2629,14.2642,14.2655,14.2668,14.2682,14.2695,14.2708,14.2722,14.2735,14.2749,14.2762,14.2775,14.2789,14.2803,14.2816,14.283,14.2843,14.2857,14.2871,14.2884,14.2898,14.2912,14.2926,14.294,14.2953,14.2967,14.2981,14.2995,14.3009,14.3023,14.3037,14.3051,14.3065,14.308,14.3094,14.3108,14.3122,14.3136,14.3151,14.3165,14.3179,14.3194,14.3208,14.3223,14.3237,14.3252,14.3266,14.3281,14.3295,14.331,14.3325,14.3339,14.3354,14.3369,14.3384,14.3399,14.3414,14.3429,14.3444,14.3459,14.3474,14.3489,14.3504,14.3519,14.3534,14.355,14.3565,14.358,14.3596,14.3611,14.3627,14.3642,14.3658,14.3673,14.3689,14.3705,14.372,14.3736,14.3752,14.3768,14.3784,14.38,14.3816,14.3832,14.3848,14.3864,14.388,14.3896,14.3913,14.3929,14.3945,14.3962,14.3978,14.3995,14.4011,14.4028,14.4044,14.4061,14.4078,14.4094,14.4111,14.4128,14.4145,14.4162,14.4179,14.4196,14.4213,14.423,14.4247,14.4264,14.4281,14.4298,14.4316,14.4333,14.435,14.4368,14.4385,14.4403,14.442,14.4438,14.4455,14.4473,14.4491,14.4508,14.4526,14.4544,14.4562,14.458,14.4597,14.4615,14.4633,14.4651,14.4669,14.4688,14.4706,14.4724,14.4742,14.476,14.4779,14.4797,14.4815,14.4834,14.4852,14.4871,14.4889,14.4908,14.4926,14.4945,14.4964,14.4983,14.5001,14.502,14.5039,14.5058,14.5077,14.5096,14.5115,14.5134,14.5153,14.5172,14.5192,14.5211,14.523,14.5249,14.5269,14.5288,14.5308,14.5327,14.5347,14.5366,14.5386,14.5406,14.5425,14.5445,14.5465,14.5484,14.5504,14.5524,14.5544,14.5564,14.5584,14.5604,14.5624,14.5644,14.5664,14.5685,14.5705,14.5725,14.5745,14.5766,14.5786,14.5806,14.5827,14.5847,14.5868,14.5889,14.5909,14.593,14.5951,14.5971,14.5992,14.6013,14.6034,14.6055,14.6076,14.6097,14.6118,14.6139,14.616,14.6181,14.6202,14.6223,14.6245,14.6266,14.6287,14.6309,14.633,14.6352,14.6373,14.6395,14.6416,14.6438,14.646,14.6481,14.6503,14.6525,14.6547,14.6569,14.6591,14.6613,14.6635,14.6657,14.6679,14.6701,14.6723,14.6746,14.6768,14.679,14.6813,14.6835,14.6857,14.688,14.6902,14.6925,14.6948,14.697,14.6993,14.7016,14.7038,14.7061,14.7084,14.7107,14.713,14.7152,14.7175,14.7198,14.7221,14.7245,14.7268,14.7291,14.7314,14.7337,14.736,14.7384,14.7407,14.743,14.7454,14.7477,14.7501,14.7524,14.7548,14.7571,14.7595,14.7618,14.7642,14.7665,14.7689,14.7713,14.7737,14.776,14.7784,14.7808,14.7832,14.7856,14.788,14.7904,14.7928,14.7952,14.7976,14.8,14.8024,14.8048,14.8072,14.8096,14.812,14.8145,14.8169,14.8193,14.8217,14.8242,14.8266,14.829,14.8315,14.8339,14.8364,14.8388,14.8413,14.8437,14.8462,14.8486,14.8511,14.8535,14.856,14.8585,14.8609,14.8634,14.8659,14.8683,14.8708,14.8733,14.8758,14.8783,14.8808,14.8832,14.8857,14.8882,14.8907,14.8932,14.8957,14.8982,14.9007,14.9032,14.9057,14.9082,14.9107,14.9132,14.9157,14.9183,14.9208,14.9233,14.9258,14.9283,14.9308,14.9333,14.9359,14.9384,14.9409,14.9434,14.9459,14.9485,14.951,14.9535,14.956,14.9585,14.9611,14.9636,14.9661,14.9686,14.9712,14.9737,14.9762,14.9787,14.9813,14.9838,14.9863,14.9889,14.9914,14.9939,14.9964,14.999,15.0015,15.004,15.0065,15.0091,15.0116,15.0141,15.0166,15.0192,15.0217,15.0242,15.0267,15.0292,15.0318,15.0343,15.0368,15.0393,15.0418,15.0443,15.0468,15.0494,15.0519,15.0544,15.0569,15.0594,15.0619,15.0644,15.0669,15.0694,15.0719,15.0743,15.0768,15.0793,15.0818,15.0843,15.0868,15.0892,15.0917,15.0942,15.0967,15.0991,15.1016,15.1041,15.1065,15.109,15.1114,15.1139,15.1163,15.1188,15.1212,15.1236,15.1261,15.1285,15.1309,15.1334,15.1358,15.1382,15.1406,15.143,15.1454,15.1478,15.1502,15.1526,15.155,15.1574,15.1598,15.1622,15.1646,15.167,15.1693,15.1717,15.1741,15.1764,15.1788,15.1811,15.1835,15.1858,15.1882,15.1905,15.1928,15.1952,15.1975,15.1998,15.2021,15.2045,15.2068,15.2091,15.2114,15.2137,15.216,15.2183,15.2205,15.2228,15.2251,15.2274,15.2296,15.2319,15.2342,15.2364,15.2387,15.2409,15.2432,15.2454,15.2476,15.2499,15.2521,15.2543,15.2565,15.2587,15.2609,15.2631,15.2653,15.2675,15.2697,15.2719,15.2741,15.2762,15.2784,15.2806,15.2827,15.2849,15.287,15.2892,15.2913,15.2934,15.2956,15.2977,15.2998,15.3019,15.304,15.3061,15.3082,15.3103,15.3124,15.3145,15.3166,15.3187,15.3207,15.3228,15.3248,15.3269,15.329,15.331,15.333,15.3351,15.3371,15.3391,15.3412,15.3432,15.3452,15.3472,15.3492,15.3512,15.3532,15.3552,15.3572,15.3591,15.3611,15.3631,15.3651,15.367,15.369,15.3709,15.3729,15.3748,15.3768,15.3787,15.3806,15.3826,15.3845,15.3864,15.3883,15.3902,15.3922,15.3941,15.396,15.3979,15.3997,15.4016,15.4035,15.4054,15.4073,15.4092,15.411,15.4129,15.4148,15.4166,15.4185,15.4203,15.4222,15.424,15.4259,15.4277,15.4296,15.4314,15.4332,15.4351,15.4369,15.4387,15.4405,15.4424,15.4442,15.446,15.4478,15.4496,15.4514,15.4532,15.455,15.4568,15.4586,15.4604,15.4622,15.464,15.4658,15.4675,15.4693,15.4711,15.4729,15.4747,15.4764,15.4782,15.48,15.4817,15.4835,15.4853,15.487,15.4888,15.4905,15.4923,15.494,15.4958,15.4975,15.4993,15.501,15.5028,15.5045,15.5063,15.508,15.5097,15.5115,15.5132,15.5149,15.5167,15.5184,15.5201,15.5219,15.5236,15.5253,15.527,15.5288,15.5305,15.5322,15.5339,15.5356,15.5374,15.5391,15.5408,15.5425,15.5442,15.5459,15.5476,15.5493,15.5511,15.5528,15.5545,15.5562,15.5579,15.5596,15.5613,15.563,15.5647,15.5664,15.5681,15.5698,15.5715,15.5732,15.5749,15.5766,15.5783,15.58,15.5817,15.5834,15.5851,15.5868,15.5885,15.5902,15.5919,15.5936,15.5953,15.597,15.5987,15.6004,15.602,15.6037,15.6054,15.6071,15.6088,15.6105,15.6122,15.6139,15.6156,15.6173,15.619,15.6206,15.6223,15.624,15.6257,15.6274,15.6291,15.6308,15.6325,15.6342,15.6358,15.6375,15.6392,15.6409,15.6426,15.6443,15.646,15.6477,15.6494,15.651,15.6527,15.6544,15.6561,15.6578,15.6595,15.6612,15.6629,15.6645,15.6662,15.6679,15.6696,15.6713,15.673,15.6747,15.6764,15.678,15.6797,15.6814,15.6831,15.6848,15.6865,15.6882,15.6899,15.6916,15.6932,15.6949,15.6966,15.6983,15.7,15.7017,15.7034,15.7051,15.7067,15.7084,15.7101,15.7118,15.7135,15.7152,15.7169,15.7186,15.7203,15.7219,15.7236,15.7253,15.727,15.7287,15.7304,15.7321,15.7338,15.7355,15.7371,15.7388,15.7405,15.7422,15.7439,15.7456,15.7473,15.749,15.7507,15.7524,15.754,15.7557,15.7574,15.7591,15.7608,15.7625,15.7642,15.7659,15.7676,15.7692,15.7709,15.7726,15.7743,15.776,15.7777,15.7794,15.7811,15.7828,15.7844,15.7861,15.7878,15.7895,15.7912,15.7929,15.7946,15.7963,15.7979,15.7996,15.8013,15.803,15.8047,15.8064,15.808,15.8097,15.8114,15.8131,15.8148,15.8165,15.8182,15.8198,15.8215,15.8232,15.8249,15.8266,15.8282,15.8299,15.8316,15.8333,15.835,15.8366,15.8383,15.84,15.8417,15.8433,15.845,15.8467,15.8484,15.85,15.8517,15.8534,15.8551,15.8567,15.8584,15.8601,15.8618,15.8634,15.8651,15.8668,15.8684,15.8701,15.8718,15.8734,15.8751,15.8768,15.8784,15.8801,15.8818,15.8834,15.8851,15.8868,15.8884,15.8901,15.8918,15.8934,15.8951,15.8967,15.8984,15.9001,15.9017,15.9034,15.905,15.9067,15.9084,15.91,15.9117,15.9133,15.915,15.9166,15.9183,15.9199,15.9216,15.9232,15.9249,15.9265,15.9282,15.9298,15.9315,15.9331,15.9348,15.9364,15.9381,15.9397,15.9414,15.943,15.9447,15.9463,15.9479,15.9496,15.9512,15.9529,15.9545,15.9561,15.9578,15.9594,15.9611,15.9627,15.9643,15.966,15.9676,15.9693,15.9709,15.9725,15.9742,15.9758,15.9774,15.9791,15.9807,15.9823,15.984,15.9856,15.9872,15.9888,15.9905,15.9921,15.9937,15.9954,15.997,15.9986,16.0002,16.0019,16.0035,16.0051,16.0067,16.0084,16.01,16.0116,16.0132,16.0149,16.0165,16.0181,16.0197,16.0214,16.023,16.0246,16.0262,16.0278,16.0295,16.0311,16.0327,16.0343,16.0359,16.0376,16.0392,16.0408,16.0424,16.044,16.0457,16.0473,16.0489,16.0505,16.0521,16.0538,16.0554,16.057,16.0586,16.0602,16.0618,16.0635,16.0651,16.0667,16.0683,16.0699,16.0715,16.0731,16.0748,16.0764,16.078,16.0796,16.0812,16.0828,16.0844,16.0861,16.0877,16.0893,16.0909,16.0925,16.0941,16.0957,16.0974,16.099,16.1006,16.1022,16.1038,16.1054,16.107,16.1086,16.1103,16.1119,16.1135,16.1151,16.1167,16.1183,16.1199,16.1215,16.1232,16.1248,16.1264,16.128,16.1296,16.1312,16.1328,16.1344,16.136,16.1377,16.1393,16.1409,16.1425,16.1441,16.1457,16.1473,16.1489,16.1506,16.1522,16.1538,16.1554,16.157,16.1586,16.1602,16.1619,16.1635,16.1651,16.1667,16.1683,16.1699,16.1715,16.1732,16.1748,16.1764,16.178,16.1796,16.1812,16.1828,16.1845,16.1861,16.1877,16.1893,16.1909,16.1925,16.1942,16.1958,16.1974,16.199,16.2006,16.2022,16.2039,16.2055,16.2071,16.2087,16.2103,16.212,16.2136,16.2152,16.2168,16.2184,16.2201,16.2217,16.2233,16.2249,16.2266,16.2282,16.2298,16.2314,16.2331,16.2347,16.2363,16.2379,16.2396,16.2412,16.2428,16.2444,16.2461,16.2477,16.2493,16.2509,16.2526,16.2542,16.2558,16.2575,16.2591,16.2607,16.2624,16.264,16.2656,16.2673,16.2689,16.2705,16.2722,16.2738,16.2754,16.2771,16.2787,16.2803,16.282,16.2836,16.2852,16.2869,16.2885,16.2901,16.2918,16.2934,16.2951,16.2967,16.2983,16.3,16.3016,16.3033,16.3049,16.3065,16.3082,16.3098,16.3115,16.3131,16.3148,16.3164,16.318,16.3197,16.3213,16.323,16.3246,16.3263,16.3279,16.3296,16.3312,16.3329,16.3345,16.3362,16.3378,16.3395,16.3411,16.3428,16.3444,16.3461,16.3477,16.3494,16.351,16.3527,16.3544,16.356,16.3577,16.3593,16.361,16.3626,16.3643,16.366,16.3676,16.3693,16.3709,16.3726,16.3742,16.3759,16.3776,16.3792,16.3809,16.3826,16.3842,16.3859,16.3875,16.3892,16.3909,16.3925,16.3942,16.3959,16.3975,16.3992,16.4009,16.4025,16.4042,16.4059,16.4075,16.4092,16.4109,16.4125,16.4142,16.4159,16.4176,16.4192,16.4209,16.4226,16.4242,16.4259,16.4276,16.4293,16.4309,16.4326,16.4343,16.436,16.4376,16.4393,16.441,16.4427,16.4443,16.446,16.4477,16.4494,16.4511,16.4527,16.4544,16.4561,16.4578,16.4595,16.4611,16.4628,16.4645,16.4662,16.4679,16.4695,16.4712,16.4729,16.4746,16.4763,16.4779,16.4796,16.4813,16.483,16.4847,16.4864,16.488,16.4897,16.4914,16.4931,16.4948,16.4965,16.4981,16.4998,16.5015,16.5032,16.5049,16.5066,16.5082,16.5099,16.5116,16.5133,16.515,16.5167,16.5184,16.52,16.5217,16.5234,16.5251,16.5268,16.5285,16.5302,16.5318,16.5335,16.5352,16.5369,16.5386,16.5403,16.5419,16.5436,16.5453,16.547,16.5487,16.5504,16.5521,16.5537,16.5554,16.5571,16.5588,16.5605,16.5622,16.5638,16.5655,16.5672,16.5689,16.5706,16.5722,16.5739,16.5756,16.5773,16.579,16.5807,16.5823,16.584,16.5857,16.5874,16.5891,16.5907,16.5924,16.5941,16.5958,16.5975,16.5991,16.6008,16.6025,16.6042,16.6058,16.6075,16.6092,16.6109,16.6125,16.6142,16.6159,16.6176,16.6192,16.6209,16.6226,16.6243,16.6259,16.6276,16.6293,16.6309,16.6326,16.6343,16.6359,16.6376,16.6393,16.641,16.6426,16.6443,16.646,16.6476,16.6493,16.651,16.6526,16.6543,16.6559,16.6576,16.6593,16.6609,16.6626,16.6643,16.6659,16.6676,16.6692,16.6709,16.6726,16.6742,16.6759,16.6775,16.6792,16.6808,16.6825,16.6842,16.6858,16.6875,16.6891,16.6908,16.6924,16.6941,16.6957,16.6974,16.699,16.7007,16.7023,16.704,16.7056,16.7073,16.7089,16.7106,16.7122,16.7139,16.7155,16.7172,16.7188,16.7204,16.7221,16.7237,16.7254,16.727,16.7287,16.7303,16.7319,16.7336,16.7352,16.7369,16.7385,16.7402,16.7418,16.7434,16.7451,16.7467,16.7483,16.75,16.7516,16.7533,16.7549,16.7565,16.7582,16.7598,16.7614,16.7631,16.7647,16.7663,16.768,16.7696,16.7712,16.7728,16.7745,16.7761,16.7777,16.7794,16.781,16.7826,16.7842,16.7859,16.7875,16.7891,16.7908,16.7924,16.794,16.7956,16.7973,16.7989,16.8005,16.8021,16.8037,16.8054,16.807,16.8086,16.8102,16.8119,16.8135,16.8151,16.8167,16.8183,16.82,16.8216,16.8232,16.8248,16.8264,16.828,16.8297,16.8313,16.8329,16.8345,16.8361,16.8377,16.8393,16.841,16.8426,16.8442,16.8458,16.8474,16.849,16.8506,16.8522],"s":[0.08262,0.08264,0.08265,0.08266,0.08267,0.08269,0.0827,0.08271,0.08273,0.08274,0.08275,0.08276,0.08277,0.08279,0.0828,0.08281,0.08282,0.08283,0.08284,0.08286,0.08287,0.08288,0.08289,0.0829,0.08291,0.08292,0.08293,0.08294,0.08296,0.08297,0.08298,0.08299,0.083,0.08301,0.08302,0.08303,0.08304,0.08305,0.08306,0.08307,0.08308,0.08308,0.08309,0.0831,0.08311,0.08312,0.08313,0.08314,0.08315,0.08316,0.08316,0.08317,0.08318,0.08319,0.0832,0.08321,0.08321,0.08322,0.08323,0.08324,0.08324,0.08325,0.08326,0.08327,0.08327,0.08328,0.08329,0.08329,0.0833,0.08331,0.08331,0.08332,0.08333,0.08333,0.08334,0.08335,0.08335,0.08336,0.08336,0.08337,0.08337,0.08338,0.08339,0.08339,0.0834,0.0834,0.08341,0.08341,0.08342,0.08342,0.08343,0.08343,0.08343,0.08344,0.08344,0.08345,0.08345,0.08345,0.08346,0.08346,0.08347,0.08347,0.08347,0.08348,0.08348,0.08348,0.08348,0.08349,0.08349,0.08349,0.08349,0.0835,0.0835,0.0835,0.0835,0.08351,0.08351,0.08351,0.08351,0.08351,0.08351,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08352,0.08351,0.08351,0.08351,0.08351,0.08351,0.08351,0.0835,0.0835,0.0835,0.0835,0.0835,0.08349,0.08349,0.08349,0.08349,0.08348,0.08348,0.08348,0.08348,0.08347,0.08347,0.08347,0.08346,0.08346,0.08346,0.08345,0.08345,0.08345,0.08344,0.08344,0.08344,0.08343,0.08343,0.08342,0.08342,0.08342,0.08341,0.08341,0.0834,0.0834,0.08339,0.08339,0.08338,0.08338,0.08337,0.08337,0.08336,0.08336,0.08335,0.08335,0.08334,0.08334,0.08333,0.08333,0.08332,0.08332,0.08331,0.08331,0.0833,0.08329,0.08329,0.08328,0.08328,0.08327,0.08326,0.08326,0.08325,0.08325,0.08324,0.08323,0.08323,0.08322,0.08321,0.08321,0.0832,0.08319,0.08319,0.08318,0.08317,0.08317,0.08316,0.08315,0.08315,0.08314,0.08313,0.08313,0.08312,0.08311,0.0831,0.0831,0.08309,0.08308,0.08307,0.08307,0.08306,0.08305,0.08304,0.08304,0.08303,0.08302,0.08301,0.08301,0.083,0.08299,0.08298,0.08297,0.08297,0.08296,0.08295,0.08294,0.08293,0.08293,0.08292,0.08291,0.0829,0.08289,0.08289,0.08288,0.08287,0.08286,0.08285,0.08284,0.08284,0.08283,0.08282,0.08281,0.0828,0.08279,0.08279,0.08278,0.08277,0.08276,0.08275,0.08274,0.08274,0.08273,0.08272,0.08271,0.0827,0.08269,0.08268,0.08267,0.08267,0.08266,0.08265,0.08264,0.08263,0.08262,0.08261,0.08261,0.0826,0.08259,0.08258,0.08257,0.08256,0.08255,0.08254,0.08254,0.08253,0.08252,0.08251,0.0825,0.08249,0.08248,0.08247,0.08247,0.08246,0.08245,0.08244,0.08243,0.08242,0.08241,0.0824,0.0824,0.08239,0.08238,0.08237,0.08236,0.08235,0.08234,0.08233,0.08233,0.08232,0.08231,0.0823,0.08229,0.08228,0.08227,0.08227,0.08226,0.08225,0.08224,0.08223,0.08222,0.08222,0.08221,0.0822,0.08219,0.08218,0.08217,0.08217,0.08216,0.08215,0.08214,0.08213,0.08212,0.08212,0.08211,0.0821,0.08209,0.08208,0.08208,0.08207,0.08206,0.08205,0.08204,0.08204,0.08203,0.08202,0.08201,0.082,0.082,0.08199,0.08198,0.08197,0.08196,0.08196,0.08195,0.08194,0.08193,0.08193,0.08192,0.08191,0.0819,0.0819,0.08189,0.08188,0.08187,0.08187,0.08186,0.08185,0.08184,0.08184,0.08183,0.08182,0.08182,0.08181,0.0818,0.08179,0.08179,0.08178,0.08177,0.08177,0.08176,0.08175,0.08175,0.08174,0.08173,0.08173,0.08172,0.08171,0.08171,0.0817,0.08169,0.08169,0.08168,0.08167,0.08167,0.08166,0.08165,0.08165,0.08164,0.08164,0.08163,0.08162,0.08162,0.08161,0.08161,0.0816,0.08159,0.08159,0.08158,0.08158,0.08157,0.08156,0.08156,0.08155,0.08155,0.08154,0.08154,0.08153,0.08153,0.08152,0.08151,0.08151,0.0815,0.0815,0.08149,0.08149,0.08148,0.08148,0.08147,0.08147,0.08146,0.08146,0.08145,0.08145,0.08144,0.08144,0.08143,0.08143,0.08142,0.08142,0.08142,0.08141,0.08141,0.0814,0.0814,0.08139,0.08139,0.08138,0.08138,0.08138,0.08137,0.08137,0.08136,0.08136,0.08136,0.08135,0.08135,0.08134,0.08134,0.08134,0.08133,0.08133,0.08133,0.08132,0.08132,0.08132,0.08131,0.08131,0.08131,0.0813,0.0813,0.0813,0.08129,0.08129,0.08129,0.08128,0.08128,0.08128,0.08127,0.08127,0.08127,0.08127,0.08126,0.08126,0.08126,0.08125,0.08125,0.08125,0.08125,0.08124,0.08124,0.08124,0.08124,0.08124,0.08123,0.08123,0.08123,0.08123,0.08122,0.08122,0.08122,0.08122,0.08122,0.08121,0.08121,0.08121,0.08121,0.08121,0.08121,0.0812,0.0812,0.0812,0.0812,0.0812,0.0812,0.0812,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08118,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.08119,0.0812,0.0812,0.0812,0.0812,0.0812,0.0812,0.0812,0.0812,0.08121,0.08121,0.08121,0.08121,0.08121,0.08121,0.08122,0.08122,0.08122,0.08122,0.08122,0.08122,0.08123,0.08123,0.08123,0.08123,0.08123,0.08124,0.08124,0.08124,0.08124,0.08124,0.08125,0.08125,0.08125,0.08125,0.08126,0.08126,0.08126,0.08126,0.08127,0.08127,0.08127,0.08127,0.08128,0.08128,0.08128,0.08128,0.08129,0.08129,0.08129,0.08129,0.0813,0.0813,0.0813,0.08131,0.08131,0.08131,0.08131,0.08132,0.08132,0.08132,0.08133,0.08133,0.08133,0.08134,0.08134,0.08134,0.08135,0.08135,0.08135,0.08136,0.08136,0.08136,0.08137,0.08137,0.08137,0.08138,0.08138,0.08138,0.08139,0.08139,0.08139,0.0814,0.0814,0.0814,0.08141,0.08141,0.08142,0.08142,0.08142,0.08143,0.08143,0.08144,0.08144,0.08144,0.08145,0.08145,0.08146,0.08146,0.08146,0.08147,0.08147,0.08148,0.08148,0.08149,0.08149,0.08149,0.0815,0.0815,0.08151,0.08151,0.08152,0.08152,0.08152,0.08153,0.08153,0.08154,0.08154,0.08155,0.08155,0.08156,0.08156,0.08157,0.08157,0.08158,0.08158,0.08159,0.08159,0.0816,0.0816,0.08161,0.08161,0.08162,0.08162,0.08163,0.08163,0.08164,0.08164,0.08165,0.08165,0.08166,0.08166,0.08167,0.08167,0.08168,0.08168,0.08169,0.08169,0.0817,0.0817,0.08171,0.08172,0.08172,0.08173,0.08173,0.08174,0.08174,0.08175,0.08175,0.08176,0.08177,0.08177,0.08178,0.08178,0.08179,0.08179,0.0818,0.08181,0.08181,0.08182,0.08182,0.08183,0.08184,0.08184,0.08185,0.08185,0.08186,0.08187,0.08187,0.08188,0.08188,0.08189,0.0819,0.0819,0.08191,0.08192,0.08192,0.08193,0.08193,0.08194,0.08195,0.08195,0.08196,0.08197,0.08197,0.08198,0.08199,0.08199,0.082,0.08201,0.08201,0.08202,0.08203,0.08203,0.08204,0.08205,0.08205,0.08206,0.08207,0.08207,0.08208,0.08209,0.08209,0.0821,0.08211,0.08211,0.08212,0.08213,0.08214,0.08214,0.08215,0.08216,0.08216,0.08217,0.08218,0.08219,0.08219,0.0822,0.08221,0.08221,0.08222,0.08223,0.08224,0.08224,0.08225,0.08226,0.08227,0.08227,0.08228,0.08229,0.0823,0.0823,0.08231,0.08232,0.08233,0.08233,0.08234,0.08235,0.08236,0.08237,0.08237,0.08238,0.08239,0.0824,0.0824,0.08241,0.08242,0.08243,0.08244,0.08244,0.08245,0.08246,0.08247,0.08248,0.08248,0.08249,0.0825,0.08251,0.08252,0.08253,0.08253,0.08254,0.08255,0.08256,0.08257,0.08257,0.08258,0.08259,0.0826,0.08261,0.08262,0.08262,0.08263,0.08264,0.08265,0.08266,0.08267,0.08268,0.08268,0.08269,0.0827,0.08271,0.08272,0.08273,0.08274,0.08275,0.08275,0.08276,0.08277,0.08278,0.08279,0.0828,0.08281,0.08282,0.08282,0.08283,0.08284,0.08285,0.08286,0.08287,0.08288,0.08289,0.0829,0.08291,0.08291,0.08292,0.08293,0.08294,0.08295,0.08296,0.08297,0.08298,0.08299,0.083,0.08301,0.08302,0.08303,0.08303,0.08304,0.08305,0.08306,0.08307,0.08308,0.08309,0.0831,0.08311,0.08312,0.08313,0.08314,0.08315,0.08316,0.08317,0.08318,0.08319,0.0832,0.08321,0.08322,0.08323,0.08324,0.08325,0.08325,0.08326,0.08327,0.08328,0.08329,0.0833,0.08331,0.08332,0.08333,0.08334,0.08335,0.08336,0.08337,0.08338,0.08339,0.0834,0.08341,0.08342,0.08343,0.08344,0.08345,0.08346,0.08347,0.08348,0.08349,0.08351,0.08352,0.08353,0.08354,0.08355,0.08356,0.08357,0.08358,0.08359,0.0836,0.08361,0.08362,0.08363,0.08364,0.08365,0.08366,0.08367,0.08368,0.08369,0.0837,0.08371,0.08372,0.08373,0.08375,0.08376,0.08377,0.08378,0.08379,0.0838,0.08381,0.08382,0.08383,0.08384,0.08385,0.08386,0.08387,0.08388,0.0839,0.08391,0.08392,0.08393,0.08394,0.08395,0.08396,0.08397,0.08398,0.08399,0.08401,0.08402,0.08403,0.08404,0.08405,0.08406,0.08407,0.08408,0.08409,0.0841,0.08412,0.08413,0.08414,0.08415,0.08416,0.08417,0.08418,0.08419,0.08421,0.08422,0.08423,0.08424,0.08425,0.08426,0.08427,0.08429,0.0843,0.08431,0.08432,0.08433,0.08434,0.08435,0.08437,0.08438,0.08439,0.0844,0.08441,0.08442,0.08443,0.08445,0.08446,0.08447,0.08448,0.08449,0.0845,0.08452,0.08453,0.08454,0.08455,0.08456,0.08457,0.08459,0.0846,0.08461,0.08462,0.08463,0.08465,0.08466,0.08467,0.08468,0.08469,0.08471,0.08472,0.08473,0.08474,0.08475,0.08476,0.08478,0.08479,0.0848,0.08481,0.08482,0.08484,0.08485,0.08486,0.08487,0.08489,0.0849,0.08491,0.08492,0.08493,0.08495,0.08496,0.08497,0.08498,0.08499,0.08501,0.08502,0.08503,0.08504,0.08506,0.08507,0.08508,0.08509,0.0851,0.08512,0.08513,0.08514,0.08515,0.08517,0.08518,0.08519,0.0852,0.08522,0.08523,0.08524,0.08525,0.08527,0.08528,0.08529,0.0853,0.08532,0.08533,0.08534,0.08535,0.08537,0.08538,0.08539,0.0854,0.08542,0.08543,0.08544,0.08545,0.08547,0.08548,0.08549,0.0855,0.08552,0.08553,0.08554,0.08555,0.08557,0.08558,0.08559,0.08561,0.08562,0.08563,0.08564,0.08566,0.08567,0.08568,0.08569,0.08571,0.08572,0.08573,0.08575,0.08576,0.08577,0.08578,0.0858,0.08581,0.08582,0.08584,0.08585,0.08586,0.08587,0.08589,0.0859,0.08591,0.08593,0.08594,0.08595,0.08596,0.08598,0.08599,0.086,0.08602,0.08603,0.08604,0.08606,0.08607,0.08608,0.08609,0.08611,0.08612,0.08613,0.08615,0.08616,0.08617,0.08619,0.0862,0.08621,0.08623,0.08624,0.08625,0.08627,0.08628,0.08629,0.0863,0.08632,0.08633,0.08634,0.08636,0.08637,0.08638,0.0864,0.08641,0.08642,0.08644,0.08645,0.08646,0.08648,0.08649,0.0865,0.08652,0.08653,0.08654,0.08656,0.08657,0.08658,0.0866,0.08661,0.08662,0.08664,0.08665,0.08666,0.08668,0.08669,0.0867,0.08672,0.08673,0.08674,0.08676,0.08677,0.08678,0.0868,0.08681,0.08682,0.08684,0.08685,0.08686,0.08688,0.08689,0.0869,0.08692,0.08693,0.08694,0.08696,0.08697,0.08698,0.087,0.08701,0.08702,0.08704,0.08705,0.08706,0.08708,0.08709,0.0871,0.08712,0.08713,0.08714,0.08716,0.08717,0.08718,0.0872,0.08721,0.08723,0.08724,0.08725,0.08727,0.08728,0.08729,0.08731,0.08732,0.08733,0.08735,0.08736,0.08737,0.08739,0.0874,0.08741,0.08743,0.08744,0.08746,0.08747,0.08748,0.0875,0.08751,0.08752,0.08754,0.08755,0.08756,0.08758,0.08759,0.0876,0.08762,0.08763,0.08765,0.08766,0.08767,0.08769,0.0877,0.08771,0.08773,0.08774,0.08775,0.08777,0.08778,0.0878,0.08781,0.08782,0.08784,0.08785,0.08786,0.08788,0.08789,0.0879,0.08792,0.08793,0.08795,0.08796,0.08797,0.08799,0.088,0.08801,0.08803,0.08804,0.08805,0.08807,0.08808,0.0881,0.08811,0.08812,0.08814,0.08815,0.08816,0.08818,0.08819,0.08821,0.08822,0.08823,0.08825,0.08826,0.08827,0.08829,0.0883,0.08832,0.08833,0.08834,0.08836,0.08837,0.08838,0.0884,0.08841,0.08842,0.08844,0.08845,0.08847,0.08848,0.08849,0.08851,0.08852,0.08853,0.08855,0.08856,0.08858,0.08859,0.0886,0.08862,0.08863,0.08864,0.08866,0.08867,0.08869,0.0887,0.08871,0.08873,0.08874,0.08875,0.08877,0.08878,0.0888,0.08881,0.08882,0.08884,0.08885,0.08886,0.08888,0.08889,0.08891,0.08892,0.08893,0.08895,0.08896,0.08897,0.08899,0.089,0.08902,0.08903,0.08904,0.08906,0.08907,0.08909,0.0891,0.08911,0.08913,0.08914,0.08915,0.08917,0.08918,0.0892,0.08921,0.08922,0.08924,0.08925,0.08926,0.08928,0.08929,0.08931,0.08932,0.08933,0.08935,0.08936,0.08937,0.08939,0.0894,0.08942,0.08943,0.08944,0.08946,0.08947,0.08948,0.0895,0.08951,0.08953,0.08954,0.08955,0.08957,0.08958,0.08959,0.08961,0.08962,0.08964,0.08965,0.08966,0.08968,0.08969,0.08971,0.08972,0.08973,0.08975,0.08976,0.08977,0.08979,0.0898,0.08982,0.08983,0.08984,0.08986,0.08987,0.08988,0.0899,0.08991,0.08993,0.08994,0.08995,0.08997,0.08998,0.08999,0.09001,0.09002,0.09004,0.09005,0.09006,0.09008,0.09009,0.0901,0.09012,0.09013,0.09015,0.09016,0.09017,0.09019,0.0902,0.09021,0.09023,0.09024,0.09026,0.09027,0.09028,0.0903,0.09031,0.09032,0.09034,0.09035,0.09036,0.09038,0.09039,0.09041,0.09042,0.09043,0.09045,0.09046,0.09047,0.09049,0.0905,0.09052,0.09053,0.09054,0.09056,0.09057,0.09058,0.0906,0.09061,0.09062,0.09064,0.09065,0.09067,0.09068,0.09069,0.09071,0.09072,0.09073,0.09075,0.09076,0.09077,0.09079,0.0908,0.09082,0.09083,0.09084,0.09086,0.09087,0.09088,0.0909,0.09091,0.09092,0.09094,0.09095,0.09097,0.09098,0.09099,0.09101,0.09102,0.09103,0.09105,0.09106,0.09107,0.09109,0.0911,0.09111,0.09113,0.09114,0.09115,0.09117,0.09118,0.0912,0.09121,0.09122,0.09124,0.09125,0.09126,0.09128,0.09129,0.0913,0.09132,0.09133,0.09134,0.09136,0.09137,0.09138,0.0914,0.09141,0.09143,0.09144,0.09145,0.09147,0.09148,0.09149,0.09151,0.09152,0.09153,0.09155,0.09156,0.09157,0.09159,0.0916,0.09161,0.09163,0.09164,0.09165,0.09167,0.09168,0.09169,0.09171,0.09172,0.09173,0.09175,0.09176,0.09177,0.09179,0.0918,0.09181,0.09183,0.09184,0.09185,0.09187,0.09188,0.09189,0.09191,0.09192,0.09194,0.09195,0.09196,0.09198,0.09199,0.092,0.09202,0.09203,0.09204,0.09206,0.09207,0.09208,0.09209,0.09211,0.09212,0.09213,0.09215,0.09216,0.09217,0.09219,0.0922,0.09221,0.09223,0.09224,0.09225,0.09227,0.09228,0.09229,0.09231,0.09232,0.09233,0.09235,0.09236,0.09237,0.09239,0.0924,0.09241,0.09243,0.09244,0.09245,0.09247,0.09248,0.09249,0.09251,0.09252,0.09253,0.09254,0.09256,0.09257,0.09258,0.0926,0.09261,0.09262,0.09264,0.09265,0.09266,0.09268,0.09269,0.0927,0.09272,0.09273,0.09274,0.09276,0.09277,0.09278,0.09279,0.09281,0.09282,0.09283,0.09285,0.09286,0.09287,0.09289,0.0929,0.09291,0.09293,0.09294,0.09295,0.09296,0.09298,0.09299,0.093,0.09302,0.09303,0.09304,0.09306,0.09307,0.09308,0.09309,0.09311,0.09312,0.09313,0.09315,0.09316,0.09317,0.09319,0.0932,0.09321,0.09322,0.09324,0.09325,0.09326,0.09328,0.09329,0.0933,0.09332,0.09333,0.09334,0.09335,0.09337,0.09338,0.09339,0.09341]}}