vbi 0.1.3__cp310-cp310-manylinux2014_x86_64.whl
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.
- vbi/__init__.py +37 -0
- vbi/_version.py +17 -0
- vbi/dataset/__init__.py +0 -0
- vbi/dataset/connectivity_84/centers.txt +84 -0
- vbi/dataset/connectivity_84/centres.txt +84 -0
- vbi/dataset/connectivity_84/cortical.txt +84 -0
- vbi/dataset/connectivity_84/tract_lengths.txt +84 -0
- vbi/dataset/connectivity_84/weights.txt +84 -0
- vbi/dataset/connectivity_88/Aud_88.txt +88 -0
- vbi/dataset/connectivity_88/Bold.npz +0 -0
- vbi/dataset/connectivity_88/Labels.txt +17 -0
- vbi/dataset/connectivity_88/Region_labels.txt +88 -0
- vbi/dataset/connectivity_88/tract_lengths.txt +88 -0
- vbi/dataset/connectivity_88/weights.txt +88 -0
- vbi/feature_extraction/__init__.py +1 -0
- vbi/feature_extraction/calc_features.py +293 -0
- vbi/feature_extraction/features.json +535 -0
- vbi/feature_extraction/features.py +2124 -0
- vbi/feature_extraction/features_settings.py +374 -0
- vbi/feature_extraction/features_utils.py +1357 -0
- vbi/feature_extraction/infodynamics.jar +0 -0
- vbi/feature_extraction/utility.py +507 -0
- vbi/inference.py +98 -0
- vbi/models/__init__.py +0 -0
- vbi/models/cpp/__init__.py +0 -0
- vbi/models/cpp/_src/__init__.py +0 -0
- vbi/models/cpp/_src/__pycache__/mpr_sde.cpython-310.pyc +0 -0
- vbi/models/cpp/_src/_do.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/_jr_sdde.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/_jr_sde.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/_km_sde.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/_mpr_sde.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/_vep.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/_wc_ode.cpython-310-x86_64-linux-gnu.so +0 -0
- vbi/models/cpp/_src/bold.hpp +303 -0
- vbi/models/cpp/_src/do.hpp +167 -0
- vbi/models/cpp/_src/do.i +17 -0
- vbi/models/cpp/_src/do.py +467 -0
- vbi/models/cpp/_src/do_wrap.cxx +12811 -0
- vbi/models/cpp/_src/jr_sdde.hpp +352 -0
- vbi/models/cpp/_src/jr_sdde.i +19 -0
- vbi/models/cpp/_src/jr_sdde.py +688 -0
- vbi/models/cpp/_src/jr_sdde_wrap.cxx +18718 -0
- vbi/models/cpp/_src/jr_sde.hpp +264 -0
- vbi/models/cpp/_src/jr_sde.i +17 -0
- vbi/models/cpp/_src/jr_sde.py +470 -0
- vbi/models/cpp/_src/jr_sde_wrap.cxx +13406 -0
- vbi/models/cpp/_src/km_sde.hpp +158 -0
- vbi/models/cpp/_src/km_sde.i +19 -0
- vbi/models/cpp/_src/km_sde.py +671 -0
- vbi/models/cpp/_src/km_sde_wrap.cxx +17367 -0
- vbi/models/cpp/_src/makefile +52 -0
- vbi/models/cpp/_src/mpr_sde.hpp +327 -0
- vbi/models/cpp/_src/mpr_sde.i +19 -0
- vbi/models/cpp/_src/mpr_sde.py +711 -0
- vbi/models/cpp/_src/mpr_sde_wrap.cxx +18618 -0
- vbi/models/cpp/_src/utility.hpp +307 -0
- vbi/models/cpp/_src/vep.hpp +171 -0
- vbi/models/cpp/_src/vep.i +16 -0
- vbi/models/cpp/_src/vep.py +464 -0
- vbi/models/cpp/_src/vep_wrap.cxx +12968 -0
- vbi/models/cpp/_src/wc_ode.hpp +294 -0
- vbi/models/cpp/_src/wc_ode.i +19 -0
- vbi/models/cpp/_src/wc_ode.py +686 -0
- vbi/models/cpp/_src/wc_ode_wrap.cxx +24263 -0
- vbi/models/cpp/damp_oscillator.py +143 -0
- vbi/models/cpp/jansen_rit.py +543 -0
- vbi/models/cpp/km.py +187 -0
- vbi/models/cpp/mpr.py +289 -0
- vbi/models/cpp/vep.py +150 -0
- vbi/models/cpp/wc.py +216 -0
- vbi/models/cupy/__init__.py +0 -0
- vbi/models/cupy/bold.py +111 -0
- vbi/models/cupy/ghb.py +284 -0
- vbi/models/cupy/jansen_rit.py +473 -0
- vbi/models/cupy/km.py +224 -0
- vbi/models/cupy/mpr.py +475 -0
- vbi/models/cupy/mpr_modified_bold.py +12 -0
- vbi/models/cupy/utils.py +184 -0
- vbi/models/numba/__init__.py +0 -0
- vbi/models/numba/_ww_EI.py +444 -0
- vbi/models/numba/damp_oscillator.py +162 -0
- vbi/models/numba/ghb.py +208 -0
- vbi/models/numba/mpr.py +383 -0
- vbi/models/pytorch/__init__.py +0 -0
- vbi/models/pytorch/data/default_parameters.npz +0 -0
- vbi/models/pytorch/data/input/ROI_sim.mat +0 -0
- vbi/models/pytorch/data/input/fc_test.csv +68 -0
- vbi/models/pytorch/data/input/fc_train.csv +68 -0
- vbi/models/pytorch/data/input/fc_vali.csv +68 -0
- vbi/models/pytorch/data/input/fcd_test.mat +0 -0
- vbi/models/pytorch/data/input/fcd_test_high_window.mat +0 -0
- vbi/models/pytorch/data/input/fcd_test_low_window.mat +0 -0
- vbi/models/pytorch/data/input/fcd_train.mat +0 -0
- vbi/models/pytorch/data/input/fcd_vali.mat +0 -0
- vbi/models/pytorch/data/input/myelin.csv +68 -0
- vbi/models/pytorch/data/input/rsfc_gradient.csv +68 -0
- vbi/models/pytorch/data/input/run_label_testset.mat +0 -0
- vbi/models/pytorch/data/input/sc_test.csv +68 -0
- vbi/models/pytorch/data/input/sc_train.csv +68 -0
- vbi/models/pytorch/data/input/sc_vali.csv +68 -0
- vbi/models/pytorch/data/obs_kong0.npz +0 -0
- vbi/models/pytorch/ww_sde_kong.py +570 -0
- vbi/models/tvbk/__init__.py +9 -0
- vbi/models/tvbk/tvbk_wrapper.py +166 -0
- vbi/models/tvbk/utils.py +72 -0
- vbi/papers/__init__.py +0 -0
- vbi/papers/pavlides_pcb_2015/pavlides.py +211 -0
- vbi/tests/__init__.py +0 -0
- vbi/tests/_test_mpr_nb.py +36 -0
- vbi/tests/test_features.py +355 -0
- vbi/tests/test_ghb_cupy.py +90 -0
- vbi/tests/test_mpr_cupy.py +49 -0
- vbi/tests/test_mpr_numba.py +84 -0
- vbi/tests/test_suite.py +19 -0
- vbi/utils.py +402 -0
- vbi-0.1.3.dist-info/METADATA +166 -0
- vbi-0.1.3.dist-info/RECORD +121 -0
- vbi-0.1.3.dist-info/WHEEL +5 -0
- vbi-0.1.3.dist-info/licenses/LICENSE +201 -0
- vbi-0.1.3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,68 @@
|
|
1
|
+
1,0.1865,0.38675,0.32296,0.091436,0.38001,0.43752,0.37205,0.20798,0.33112,0.24041,0.34187,0.1728,0.54755,0.15265,0.32997,0.47911,0.30373,0.4918,0.2752,0.42728,0.22913,0.42324,0.31195,0.092375,0.285,0.45255,0.31962,0.60639,0.41117,0.18552,0.14875,0.30458,0.29919,0.54641,0.15267,0.2497,0.31106,0.092239,0.36252,0.31507,0.32461,0.17437,0.33893,0.18329,0.34039,0.13056,0.4295,0.1621,0.32403,0.242,0.22429,0.31703,0.25585,0.41532,0.16053,0.38779,0.27303,0.062221,0.17833,0.33685,0.31412,0.52628,0.31357,0.14035,0.13701,0.27209,0.28756
|
2
|
+
0.1865,1,0.12514,0.32276,0.064244,0.2494,0.16193,0.20917,0.14933,0.26689,0.21407,0.32268,0.040819,0.11774,0.11821,0.2949,0.30638,0.036846,0.221,0.33203,0.3189,0.36548,0.39682,0.27229,0.16786,0.34918,0.33343,0.3713,0.28848,0.41432,0.0058957,0.028807,0.30138,0.41897,0.24497,0.39031,0.16564,0.31946,0.065884,0.24248,0.18969,0.22086,0.1626,0.26571,0.1866,0.32713,0.034016,0.12186,0.13235,0.31749,0.33769,0.0039369,0.29037,0.32736,0.30028,0.33061,0.37654,0.27722,0.1501,0.29789,0.34699,0.36334,0.28368,0.43135,-0.01346,0.025356,0.28762,0.41701
|
3
|
+
0.38675,0.12514,1,0.17001,0.11391,0.30086,0.76274,0.45794,0.37029,0.25799,0.34444,0.26047,0.24861,0.62498,0.2316,0.20964,0.45023,0.48669,0.44139,0.27436,0.27042,0.31229,0.30091,0.50598,0.17778,0.61863,0.6359,0.28408,0.32732,0.42281,0.22964,0.11294,0.25164,0.19922,0.25548,0.11376,0.57332,0.17352,0.098673,0.2696,0.57101,0.34219,0.30865,0.25092,0.26383,0.24453,0.20363,0.48371,0.20447,0.18965,0.21447,0.40123,0.25839,0.26887,0.26816,0.22018,0.22512,0.41475,0.11755,0.41514,0.46207,0.23836,0.28019,0.23881,0.19249,0.09814,0.23886,0.1754
|
4
|
+
0.32296,0.32276,0.17001,1,0.078571,0.50236,0.30323,0.28016,0.24471,0.5338,0.18505,0.78187,0.09641,0.2084,0.21073,0.43557,0.26803,0.059426,0.203,0.73476,0.51335,0.32266,0.50615,0.43226,0.11015,0.30174,0.30642,0.64031,0.4375,0.40502,0.060447,0.067971,0.36502,0.4028,0.37184,0.29617,0.20644,0.85349,0.084262,0.50515,0.32639,0.30448,0.2631,0.53985,0.17269,0.78849,0.084126,0.21892,0.24936,0.4496,0.28056,0.042695,0.24118,0.70504,0.51567,0.2944,0.52705,0.45804,0.10056,0.27986,0.32962,0.63388,0.42414,0.45632,0.040861,0.065861,0.34489,0.42098
|
5
|
+
0.091436,0.064244,0.11391,0.078571,1,0.15271,0.1401,0.14302,0.09221,0.095428,0.098943,0.097284,0.081066,0.13402,0.11639,0.086237,0.087373,0.095159,0.089974,0.086965,0.10616,0.090434,0.10708,0.11777,0.062123,0.10809,0.12718,0.10822,0.11759,0.11288,0.04708,0.084696,0.088959,0.10309,0.08474,0.061103,0.092172,0.079398,0.056725,0.12235,0.1177,0.12013,0.084815,0.092721,0.077703,0.09351,0.069192,0.11605,0.081474,0.083228,0.062491,0.070932,0.076653,0.085198,0.10094,0.073886,0.09402,0.10753,0.050335,0.0755,0.10715,0.10064,0.10475,0.094654,0.04432,0.047365,0.082547,0.092564
|
6
|
+
0.38001,0.2494,0.30086,0.50236,0.15271,1,0.46472,0.51335,0.26047,0.59019,0.23214,0.58193,0.18377,0.36609,0.33431,0.37307,0.29445,0.19073,0.26527,0.46568,0.43611,0.28452,0.46275,0.41494,0.12509,0.31792,0.35955,0.60819,0.46917,0.42286,0.11792,0.12667,0.32388,0.36236,0.38799,0.23014,0.32388,0.49782,0.13517,0.68784,0.45315,0.46681,0.27196,0.57583,0.22392,0.56684,0.17131,0.35761,0.33256,0.37482,0.2796,0.15912,0.28491,0.45361,0.43151,0.24285,0.4612,0.43258,0.10499,0.27773,0.35538,0.59614,0.43798,0.42676,0.10799,0.12556,0.29502,0.362
|
7
|
+
0.43752,0.16193,0.76274,0.30323,0.1401,0.46472,1,0.54504,0.50953,0.39659,0.34217,0.39981,0.31763,0.72795,0.33002,0.28421,0.36839,0.44428,0.36502,0.37218,0.34563,0.41118,0.32336,0.71999,0.23898,0.58675,0.62547,0.44558,0.40814,0.48739,0.27357,0.1474,0.30818,0.25174,0.32924,0.15464,0.59324,0.30501,0.13102,0.42521,0.76081,0.45328,0.45977,0.38375,0.29168,0.38094,0.29075,0.61847,0.30876,0.26409,0.20578,0.40052,0.25876,0.36673,0.33913,0.32992,0.27816,0.6455,0.1865,0.45615,0.51847,0.39905,0.35896,0.32161,0.24933,0.14141,0.28846,0.23807
|
8
|
+
0.37205,0.20917,0.45794,0.28016,0.14302,0.51335,0.54504,1,0.2087,0.39111,0.30038,0.33511,0.1464,0.48547,0.20962,0.27835,0.37058,0.35207,0.36169,0.29233,0.344,0.29277,0.42367,0.32249,0.077262,0.46554,0.39444,0.53827,0.37265,0.55238,0.11055,0.1285,0.25782,0.3188,0.30249,0.18439,0.38091,0.27972,0.13126,0.44316,0.45098,0.5368,0.19456,0.37483,0.25305,0.32795,0.11695,0.36828,0.21024,0.2739,0.30531,0.26086,0.30811,0.28421,0.32504,0.22786,0.36037,0.29704,0.047675,0.33092,0.31696,0.4876,0.32606,0.43946,0.094577,0.096776,0.23093,0.29506
|
9
|
+
0.20798,0.14933,0.37029,0.24471,0.09221,0.26047,0.50953,0.2087,1,0.26573,0.20415,0.32128,0.32376,0.4024,0.28624,0.21653,0.12052,0.18168,0.12289,0.303,0.25624,0.35064,0.17337,0.62695,0.30259,0.27784,0.42932,0.20145,0.27562,0.17228,0.21133,0.10144,0.25028,0.18354,0.19219,0.15046,0.28813,0.24657,0.090091,0.24898,0.43599,0.20168,0.47491,0.26519,0.17348,0.28889,0.30559,0.38307,0.24742,0.2021,0.033988,0.15869,0.08898,0.3029,0.2573,0.29988,0.17675,0.55397,0.25942,0.23357,0.38026,0.20209,0.25731,0.14269,0.18407,0.11057,0.24189,0.17892
|
10
|
+
0.33112,0.26689,0.25799,0.5338,0.095428,0.59019,0.39659,0.39111,0.26573,1,0.2255,0.56418,0.1407,0.30136,0.19399,0.3512,0.27524,0.16782,0.25266,0.5532,0.41196,0.32282,0.41833,0.37612,0.14584,0.33683,0.33066,0.57046,0.40923,0.37032,0.099304,0.088809,0.33819,0.34733,0.34248,0.26187,0.29907,0.54983,0.10226,0.55553,0.41882,0.40563,0.27165,0.89174,0.23392,0.55821,0.13488,0.31792,0.22067,0.35037,0.29143,0.17055,0.29745,0.56068,0.41403,0.30451,0.43803,0.39823,0.13652,0.34672,0.36285,0.58374,0.38377,0.41177,0.096988,0.082238,0.3144,0.36239
|
11
|
+
0.24041,0.21407,0.34444,0.18505,0.098943,0.23214,0.34217,0.30038,0.20415,0.2255,1,0.22464,0.21043,0.32379,0.13996,0.18001,0.36862,0.32809,0.38134,0.24396,0.20803,0.28154,0.25501,0.27325,0.18616,0.413,0.39311,0.23613,0.2681,0.34265,0.12385,0.088729,0.23074,0.2998,0.21238,0.20857,0.24873,0.18659,0.080301,0.20834,0.25914,0.23853,0.16908,0.22068,0.2837,0.21925,0.1148,0.24561,0.12578,0.18189,0.26163,0.21894,0.31466,0.24038,0.20085,0.22231,0.21537,0.22845,0.14306,0.27389,0.31352,0.2153,0.2317,0.26189,0.083764,0.054447,0.21885,0.25496
|
12
|
+
0.34187,0.32268,0.26047,0.78187,0.097284,0.58193,0.39981,0.33511,0.32128,0.56418,0.22464,1,0.1425,0.28036,0.28708,0.42536,0.29897,0.11439,0.23903,0.76405,0.5039,0.34576,0.49967,0.49615,0.14698,0.34575,0.37171,0.6423,0.45618,0.43091,0.08846,0.085024,0.39017,0.4121,0.38188,0.30145,0.29559,0.77039,0.10109,0.5638,0.41826,0.35095,0.32036,0.55813,0.21682,0.81895,0.13345,0.29173,0.30878,0.43714,0.29579,0.10812,0.27521,0.73577,0.50246,0.31364,0.50927,0.51785,0.1322,0.32248,0.3919,0.63107,0.43641,0.46399,0.075667,0.082802,0.36901,0.42442
|
13
|
+
0.1728,0.040819,0.24861,0.09641,0.081066,0.18377,0.31763,0.1464,0.32376,0.1407,0.21043,0.1425,1,0.34457,0.20222,0.14699,0.0628,0.22166,0.11905,0.12258,0.19112,0.13097,0.10772,0.33924,0.30285,0.071802,0.35182,0.054447,0.22081,0.021523,0.25294,0.12504,0.14234,0.082371,0.1299,0.029177,0.10667,0.093717,0.075413,0.17878,0.19556,0.11152,0.27138,0.1479,0.10348,0.13083,0.35648,0.27272,0.17578,0.12766,-0.080652,0.11919,0.0063051,0.12048,0.19827,0.072573,0.11231,0.27157,0.20408,-0.019489,0.21976,0.058082,0.19902,-0.010974,0.18787,0.13409,0.13485,0.069765
|
14
|
+
0.54755,0.11774,0.62498,0.2084,0.13402,0.36609,0.72795,0.48547,0.4024,0.30136,0.32379,0.28036,0.34457,1,0.24206,0.24967,0.39676,0.52199,0.46221,0.24678,0.33424,0.30399,0.28509,0.5072,0.22502,0.39297,0.62143,0.25138,0.47511,0.39474,0.33839,0.21965,0.2692,0.22646,0.37159,0.095884,0.38685,0.20513,0.12266,0.33648,0.51724,0.38696,0.32941,0.30327,0.24049,0.26724,0.28721,0.64966,0.21422,0.22994,0.13248,0.41895,0.26507,0.23753,0.32103,0.21348,0.24681,0.41794,0.16061,0.23645,0.46034,0.23353,0.38339,0.23302,0.27766,0.19576,0.24244,0.19597
|
15
|
+
0.15265,0.11821,0.2316,0.21073,0.11639,0.33431,0.33002,0.20962,0.28624,0.19399,0.13996,0.28708,0.20222,0.24206,1,0.1902,0.10879,0.11437,0.097096,0.23091,0.21469,0.18145,0.1874,0.37872,0.1613,0.17697,0.26317,0.23195,0.23616,0.1654,0.10227,0.08265,0.1868,0.17217,0.16964,0.11163,0.22306,0.20702,0.082022,0.28555,0.30881,0.19606,0.27395,0.18908,0.12914,0.26087,0.19677,0.24283,0.28408,0.18438,0.07462,0.096167,0.09958,0.22618,0.21293,0.15076,0.18194,0.36765,0.13668,0.14773,0.2424,0.22091,0.2227,0.15228,0.095497,0.09174,0.17453,0.16283
|
16
|
+
0.32997,0.2949,0.20964,0.43557,0.086237,0.37307,0.28421,0.27835,0.21653,0.3512,0.18001,0.42536,0.14699,0.24967,0.1902,1,0.27145,0.11388,0.21609,0.35422,0.65193,0.33567,0.63656,0.35797,0.11839,0.26699,0.40276,0.48809,0.47044,0.44043,0.088905,0.077576,0.38138,0.42931,0.35913,0.25204,0.21514,0.42363,0.093233,0.37961,0.28211,0.29426,0.22041,0.35565,0.16615,0.43715,0.12801,0.24921,0.21444,0.6422,0.25247,0.088031,0.22486,0.3405,0.64306,0.2717,0.63337,0.36103,0.10084,0.22601,0.37885,0.49235,0.46196,0.47368,0.069393,0.08599,0.36201,0.4393
|
17
|
+
0.47911,0.30638,0.45023,0.26803,0.087373,0.29445,0.36839,0.37058,0.12052,0.27524,0.36862,0.29897,0.0628,0.39676,0.10879,0.27145,1,0.35516,0.65176,0.30553,0.32488,0.29903,0.47177,0.23021,0.072024,0.51729,0.50909,0.34589,0.41586,0.55265,0.10621,0.084231,0.29364,0.41847,0.38046,0.27231,0.31178,0.26309,0.073834,0.26849,0.26434,0.29523,0.09162,0.27558,0.26844,0.29828,0.015071,0.27021,0.10971,0.2846,0.46699,0.23218,0.48685,0.29259,0.30975,0.22264,0.38764,0.18753,0.039067,0.31795,0.39142,0.32004,0.35838,0.4246,0.054018,0.056056,0.27444,0.36807
|
18
|
+
0.30373,0.036846,0.48669,0.059426,0.095159,0.19073,0.44428,0.35207,0.18168,0.16782,0.32809,0.11439,0.22166,0.52199,0.11437,0.11388,0.35516,1,0.4695,0.11574,0.15079,0.16512,0.15531,0.17077,0.09689,0.32976,0.42619,0.093244,0.22129,0.24893,0.20754,0.13285,0.13719,0.1231,0.18064,0.01792,0.22207,0.063501,0.076739,0.17149,0.23563,0.23036,0.11477,0.1759,0.2014,0.10857,0.14971,0.33018,0.090846,0.10086,0.10924,0.41942,0.23167,0.11355,0.15778,0.071811,0.11625,0.086902,0.034977,0.11193,0.22642,0.073042,0.17865,0.099183,0.1471,0.099407,0.13116,0.090863
|
19
|
+
0.4918,0.221,0.44139,0.203,0.089974,0.26527,0.36502,0.36169,0.12289,0.25266,0.38134,0.23903,0.11905,0.46221,0.097096,0.21609,0.65176,0.4695,1,0.2468,0.26126,0.23965,0.35042,0.18405,0.074198,0.42098,0.48691,0.24741,0.3811,0.43923,0.16168,0.11642,0.24149,0.31999,0.35392,0.18624,0.23783,0.20122,0.074229,0.24088,0.20857,0.26945,0.076992,0.26018,0.25416,0.23924,0.055139,0.29675,0.093191,0.22212,0.34702,0.29739,0.47484,0.23762,0.25684,0.14908,0.28909,0.12304,0.028329,0.19583,0.31458,0.22995,0.32076,0.29644,0.093212,0.081044,0.22882,0.2769
|
20
|
+
0.2752,0.33203,0.27436,0.73476,0.086965,0.46568,0.37218,0.29233,0.303,0.5532,0.24396,0.76405,0.12258,0.24678,0.23091,0.35422,0.30553,0.11574,0.2468,1,0.42561,0.36082,0.44038,0.47451,0.16645,0.36932,0.36851,0.55246,0.37344,0.40546,0.07557,0.065499,0.3909,0.39466,0.30897,0.32046,0.30531,0.72535,0.087742,0.44831,0.3899,0.29624,0.31643,0.53341,0.23643,0.74722,0.11708,0.25535,0.2545,0.3654,0.30422,0.11697,0.28988,0.84959,0.41953,0.33398,0.4366,0.48987,0.15411,0.34823,0.39798,0.53843,0.35102,0.42417,0.067451,0.057952,0.37655,0.40321
|
21
|
+
0.42728,0.3189,0.27042,0.51335,0.10616,0.43611,0.34563,0.344,0.25624,0.41196,0.20803,0.5039,0.19112,0.33424,0.21469,0.65193,0.32488,0.15079,0.26126,0.42561,1,0.33137,0.80238,0.39003,0.13399,0.30239,0.47351,0.57059,0.59605,0.53644,0.12212,0.10498,0.47059,0.52283,0.42901,0.26661,0.24636,0.49799,0.11053,0.43824,0.32101,0.3409,0.25614,0.41241,0.18437,0.51451,0.16326,0.30832,0.23703,0.63183,0.26044,0.11388,0.23174,0.40367,0.86152,0.27882,0.76309,0.39421,0.10932,0.2405,0.43174,0.55778,0.56014,0.558,0.098116,0.10997,0.43287,0.51478
|
22
|
+
0.22913,0.36548,0.31229,0.32266,0.090434,0.28452,0.41118,0.29277,0.35064,0.32282,0.28154,0.34576,0.13097,0.30399,0.18145,0.33567,0.29903,0.16512,0.23965,0.36082,0.33137,1,0.35667,0.488,0.23533,0.46362,0.42578,0.37812,0.32187,0.45485,0.082084,0.055095,0.33675,0.38842,0.26574,0.33814,0.30456,0.32717,0.093592,0.27216,0.39324,0.28878,0.33181,0.31974,0.25178,0.34558,0.12704,0.29753,0.18122,0.32974,0.30575,0.14177,0.29975,0.36182,0.31948,0.48016,0.34001,0.46521,0.21384,0.40892,0.43673,0.36711,0.31719,0.42388,0.07059,0.054226,0.32791,0.3863
|
23
|
+
0.42324,0.39682,0.30091,0.50615,0.10708,0.46275,0.32336,0.42367,0.17337,0.41833,0.25501,0.49967,0.10772,0.28509,0.1874,0.63656,0.47177,0.15531,0.35042,0.44038,0.80238,0.35667,1,0.32378,0.077638,0.42077,0.49425,0.65979,0.56739,0.67301,0.062527,0.078016,0.45308,0.58133,0.4328,0.33767,0.29391,0.48958,0.10685,0.45228,0.30744,0.39326,0.18032,0.41326,0.21826,0.51046,0.078018,0.24004,0.21659,0.63319,0.43158,0.093374,0.34497,0.41903,0.74381,0.30021,0.82266,0.33335,0.058207,0.31694,0.45559,0.63026,0.53159,0.66815,0.037748,0.074192,0.41607,0.56518
|
24
|
+
0.31195,0.27229,0.50598,0.43226,0.11777,0.41494,0.71999,0.32249,0.62695,0.37612,0.27325,0.49615,0.33924,0.5072,0.37872,0.35797,0.23021,0.17077,0.18405,0.47451,0.39003,0.488,0.32378,1,0.34685,0.4729,0.57284,0.43467,0.4088,0.37485,0.24119,0.11636,0.36422,0.31723,0.32131,0.26584,0.45468,0.42384,0.11618,0.3958,0.65565,0.32676,0.58464,0.37372,0.24195,0.4753,0.33217,0.50594,0.36055,0.34618,0.15443,0.16566,0.19314,0.4673,0.38597,0.43602,0.31877,0.83318,0.30399,0.41208,0.54837,0.42063,0.38766,0.32585,0.21558,0.13019,0.34926,0.31499
|
25
|
+
0.092375,0.16786,0.17778,0.11015,0.062123,0.12509,0.23898,0.077262,0.30259,0.14584,0.18616,0.14698,0.30285,0.22502,0.1613,0.11839,0.072024,0.09689,0.074198,0.16645,0.13399,0.23533,0.077638,0.34685,1,0.17483,0.34903,0.059484,0.17581,0.068875,0.13579,0.073145,0.17463,0.14514,0.10059,0.17114,0.13128,0.11232,0.061346,0.1193,0.20391,0.088439,0.27352,0.14675,0.1533,0.13653,0.2534,0.22086,0.13646,0.10937,0.014945,0.066507,0.068634,0.16795,0.13132,0.21252,0.083417,0.30738,0.32837,0.14233,0.30668,0.065563,0.16204,0.058142,0.10929,0.081819,0.169,0.13241
|
26
|
+
0.285,0.34918,0.61863,0.30174,0.10809,0.31792,0.58675,0.46554,0.27784,0.33683,0.413,0.34575,0.071802,0.39297,0.17697,0.26699,0.51729,0.32976,0.42098,0.36932,0.30239,0.46362,0.42077,0.4729,0.17483,1,0.56503,0.46919,0.32374,0.62907,0.089526,0.039116,0.31846,0.40191,0.2698,0.33544,0.51231,0.30588,0.092263,0.28235,0.50981,0.37595,0.25261,0.32194,0.3161,0.3372,0.049785,0.3122,0.16629,0.27499,0.4345,0.24935,0.38471,0.36593,0.2833,0.40314,0.33693,0.42035,0.1364,0.66175,0.4971,0.40871,0.28744,0.49126,0.052859,0.014834,0.29737,0.36543
|
27
|
+
0.45255,0.33343,0.6359,0.30642,0.12718,0.35955,0.62547,0.39444,0.42932,0.33066,0.39311,0.37171,0.35182,0.62143,0.26317,0.40276,0.50909,0.42619,0.48691,0.36851,0.47351,0.42578,0.49425,0.57284,0.34903,0.56503,1,0.36308,0.4668,0.48068,0.28865,0.1548,0.36679,0.37052,0.36252,0.28038,0.3973,0.30126,0.11599,0.34924,0.43872,0.3399,0.35627,0.34378,0.26872,0.3642,0.27574,0.47239,0.24324,0.38704,0.24141,0.2724,0.31086,0.3585,0.4611,0.31005,0.44597,0.46828,0.25169,0.33568,0.64972,0.34403,0.42629,0.35635,0.19492,0.14693,0.35238,0.34943
|
28
|
+
0.31962,0.3713,0.28408,0.64031,0.10822,0.60819,0.44558,0.53827,0.20145,0.57046,0.23613,0.6423,0.054447,0.25138,0.23195,0.48809,0.34589,0.093244,0.24741,0.55246,0.57059,0.37812,0.65979,0.43467,0.059484,0.46919,0.36308,1,0.43629,0.67447,0.030913,0.060277,0.36734,0.47469,0.36789,0.33623,0.3648,0.63184,0.11192,0.58665,0.46981,0.52404,0.22982,0.56153,0.22781,0.64597,0.047494,0.24704,0.27351,0.49991,0.41677,0.070341,0.32882,0.54197,0.53527,0.34248,0.62789,0.46528,0.054894,0.41433,0.38267,0.89386,0.42069,0.68483,0.025686,0.055427,0.33872,0.48189
|
29
|
+
0.60639,0.28848,0.32732,0.4375,0.11759,0.46917,0.40814,0.37265,0.27562,0.40923,0.2681,0.45618,0.22081,0.47511,0.23616,0.47044,0.41586,0.22129,0.3811,0.37344,0.59605,0.32187,0.56739,0.4088,0.17581,0.32374,0.4668,0.43629,1,0.48185,0.16197,0.15918,0.53588,0.48223,0.55449,0.25967,0.28883,0.42139,0.11948,0.45304,0.37097,0.35965,0.26841,0.40748,0.23422,0.45518,0.19489,0.42307,0.24908,0.46411,0.30157,0.18182,0.32699,0.35322,0.57001,0.27476,0.54355,0.40633,0.1494,0.26759,0.43512,0.43699,0.72087,0.45582,0.12986,0.15129,0.45721,0.45414
|
30
|
+
0.41117,0.41432,0.42281,0.40502,0.11288,0.42286,0.48739,0.55238,0.17228,0.37032,0.34265,0.43091,0.021523,0.39474,0.1654,0.44043,0.55265,0.24893,0.43923,0.40546,0.53644,0.45485,0.67301,0.37485,0.068875,0.62907,0.48068,0.67447,0.48185,1,0.047126,0.05696,0.41668,0.56959,0.40614,0.37402,0.42472,0.39764,0.10942,0.39003,0.44881,0.48542,0.17492,0.3537,0.30343,0.43235,0.0068547,0.3237,0.18272,0.45924,0.55639,0.20824,0.48763,0.39078,0.47684,0.40097,0.58281,0.36782,0.058084,0.50904,0.47801,0.61496,0.44052,0.77392,0.031807,0.04827,0.3783,0.54526
|
31
|
+
0.18552,0.0058957,0.22964,0.060447,0.04708,0.11792,0.27357,0.11055,0.21133,0.099304,0.12385,0.08846,0.25294,0.33839,0.10227,0.088905,0.10621,0.20754,0.16168,0.07557,0.12212,0.082084,0.062527,0.24119,0.13579,0.089526,0.28865,0.030913,0.16197,0.047126,1,0.10236,0.08568,0.039035,0.11417,-0.002747,0.087499,0.057739,0.043874,0.11613,0.15167,0.087791,0.1583,0.10802,0.066751,0.083701,0.18888,0.24631,0.085899,0.073973,-0.044057,0.13937,0.04111,0.072693,0.12628,0.034516,0.06516,0.17799,0.092579,-0.0003324,0.17609,0.036584,0.13191,-0.0045128,0.22088,0.10187,0.082832,0.031071
|
32
|
+
0.14875,0.028807,0.11294,0.067971,0.084696,0.12667,0.1474,0.1285,0.10144,0.088809,0.088729,0.085024,0.12504,0.21965,0.08265,0.077576,0.084231,0.13285,0.11642,0.065499,0.10498,0.055095,0.078016,0.11636,0.073145,0.039116,0.1548,0.060277,0.15918,0.05696,0.10236,1,0.072537,0.069566,0.11295,0.019213,0.059397,0.067085,0.046778,0.11803,0.10196,0.10467,0.087486,0.092297,0.047915,0.082968,0.1055,0.17554,0.075756,0.06989,0.0068807,0.092037,0.05404,0.062879,0.10224,0.031663,0.074465,0.10086,0.055915,0.0056369,0.11422,0.063356,0.12888,0.037489,0.083862,0.094581,0.066298,0.057538
|
33
|
+
0.30458,0.30138,0.25164,0.36502,0.088959,0.32388,0.30818,0.25782,0.25028,0.33819,0.23074,0.39017,0.14234,0.2692,0.1868,0.38138,0.29364,0.13719,0.24149,0.3909,0.47059,0.33675,0.45308,0.36422,0.17463,0.31846,0.36679,0.36734,0.53588,0.41668,0.08568,0.072537,1,0.45482,0.32802,0.28445,0.26534,0.3588,0.088355,0.31088,0.31515,0.26,0.25281,0.32734,0.22381,0.38875,0.13393,0.27,0.19596,0.38364,0.28325,0.14324,0.27503,0.38183,0.44835,0.31186,0.43667,0.37062,0.16164,0.29638,0.38874,0.36452,0.47838,0.41887,0.076995,0.072301,0.48167,0.42336
|
34
|
+
0.29919,0.41897,0.19922,0.4028,0.10309,0.36236,0.25174,0.3188,0.18354,0.34733,0.2998,0.4121,0.082371,0.22646,0.17217,0.42931,0.41847,0.1231,0.31999,0.39466,0.52283,0.38842,0.58133,0.31723,0.14514,0.40191,0.37052,0.47469,0.48223,0.56959,0.039035,0.069566,0.45482,1,0.34567,0.38661,0.23605,0.39547,0.10197,0.34537,0.2709,0.31065,0.19231,0.33913,0.25577,0.41649,0.068052,0.21148,0.18613,0.44494,0.41913,0.088121,0.3701,0.38325,0.48677,0.35876,0.53685,0.32834,0.13557,0.33839,0.40024,0.4625,0.43926,0.57524,0.022492,0.061201,0.40004,0.56292
|
35
|
+
0.54641,0.24497,0.25548,0.37184,0.08474,0.38799,0.32924,0.30249,0.19219,0.34248,0.21238,0.38188,0.1299,0.37159,0.16964,0.35913,0.38046,0.18064,0.35392,0.30897,0.42901,0.26574,0.4328,0.32131,0.10059,0.2698,0.36252,0.36789,0.55449,0.40614,0.11417,0.11295,0.32802,0.34567,1,0.22875,0.30022,0.36559,0.10025,0.41151,0.3825,0.37904,0.19184,0.35974,0.22166,0.3905,0.12642,0.47409,0.18937,0.36327,0.36736,0.20491,0.42192,0.29777,0.4418,0.2333,0.45413,0.34468,0.09437,0.27447,0.40997,0.3838,0.61315,0.43596,0.11697,0.13369,0.32196,0.37701
|
36
|
+
0.15267,0.39031,0.11376,0.29617,0.061103,0.23014,0.15464,0.18439,0.15046,0.26187,0.20857,0.30145,0.029177,0.095884,0.11163,0.25204,0.27231,0.01792,0.18624,0.32046,0.26661,0.33814,0.33767,0.26584,0.17114,0.33544,0.28038,0.33623,0.25967,0.37402,-0.002747,0.019213,0.28445,0.38661,0.22875,1,0.20056,0.29599,0.065815,0.22575,0.21802,0.21916,0.16913,0.25624,0.21268,0.30547,0.038429,0.13625,0.12748,0.27927,0.35147,0.030378,0.30447,0.31635,0.25541,0.35694,0.33473,0.28542,0.18653,0.34783,0.38054,0.3385,0.26409,0.41457,-0.0090524,0.021054,0.2766,0.39528
|
37
|
+
0.2497,0.16564,0.57332,0.20644,0.092172,0.32388,0.59324,0.38091,0.28813,0.29907,0.24873,0.29559,0.10667,0.38685,0.22306,0.21514,0.31178,0.22207,0.23783,0.30531,0.24636,0.30456,0.29391,0.45468,0.13128,0.51231,0.3973,0.3648,0.28883,0.42472,0.087499,0.059397,0.26534,0.23605,0.30022,0.20056,1,0.2166,0.1124,0.31583,0.77148,0.44585,0.33189,0.26881,0.36411,0.28445,0.17564,0.55964,0.24286,0.20747,0.4334,0.46678,0.4112,0.30728,0.24933,0.33294,0.28719,0.53393,0.1542,0.68627,0.60107,0.36209,0.30344,0.4254,0.17838,0.085328,0.25574,0.26227
|
38
|
+
0.31106,0.31946,0.17352,0.85349,0.079398,0.49782,0.30501,0.27972,0.24657,0.54983,0.18659,0.77039,0.093717,0.20513,0.20702,0.42363,0.26309,0.063501,0.20122,0.72535,0.49799,0.32717,0.48958,0.42384,0.11232,0.30588,0.30126,0.63184,0.42139,0.39764,0.057739,0.067085,0.3588,0.39547,0.36559,0.29599,0.2166,1,0.086795,0.50828,0.3407,0.31118,0.27166,0.56824,0.18044,0.796,0.085724,0.22586,0.24782,0.44176,0.28081,0.052522,0.24579,0.73887,0.50608,0.30303,0.51556,0.46767,0.10525,0.29337,0.33144,0.64118,0.41702,0.45475,0.042598,0.06467,0.34557,0.41753
|
39
|
+
0.092239,0.065884,0.098673,0.084262,0.056725,0.13517,0.13102,0.13126,0.090091,0.10226,0.080301,0.10109,0.075413,0.12266,0.082022,0.093233,0.073834,0.076739,0.074229,0.087742,0.11053,0.093592,0.10685,0.11618,0.061346,0.092263,0.11599,0.11192,0.11948,0.10942,0.043874,0.046778,0.088355,0.10197,0.10025,0.065815,0.1124,0.086795,1,0.15797,0.14049,0.14669,0.094611,0.10221,0.10067,0.10153,0.080069,0.14355,0.11512,0.093267,0.080119,0.093775,0.092402,0.087675,0.11322,0.087614,0.10885,0.12101,0.058394,0.10105,0.12844,0.11314,0.12622,0.11233,0.051966,0.10755,0.089977,0.10879
|
40
|
+
0.36252,0.24248,0.2696,0.50515,0.12235,0.68784,0.42521,0.44316,0.24898,0.55553,0.20834,0.5638,0.17878,0.33648,0.28555,0.37961,0.26849,0.17149,0.24088,0.44831,0.43824,0.27216,0.45228,0.3958,0.1193,0.28235,0.34924,0.58665,0.45304,0.39003,0.11613,0.11803,0.31088,0.34537,0.41151,0.22575,0.31583,0.50828,0.15797,1,0.45638,0.51234,0.26715,0.59569,0.21787,0.58458,0.17345,0.37604,0.36825,0.38469,0.27768,0.15961,0.28148,0.45005,0.45166,0.23564,0.47993,0.42811,0.10291,0.27173,0.35654,0.61215,0.46459,0.43716,0.11085,0.13974,0.29902,0.37126
|
41
|
+
0.31507,0.18969,0.57101,0.32639,0.1177,0.45315,0.76081,0.45098,0.43599,0.41882,0.25914,0.41826,0.19556,0.51724,0.30881,0.28211,0.26434,0.23563,0.20857,0.3899,0.32101,0.39324,0.30744,0.65565,0.20391,0.50981,0.43872,0.46981,0.37097,0.44881,0.15167,0.10196,0.31515,0.2709,0.3825,0.21802,0.77148,0.3407,0.14049,0.45638,1,0.54321,0.47954,0.40481,0.36804,0.40915,0.26861,0.70914,0.33349,0.27127,0.36564,0.46535,0.36817,0.39614,0.32707,0.4184,0.31062,0.73979,0.2208,0.67569,0.62985,0.48736,0.38819,0.46534,0.24288,0.1325,0.30632,0.30013
|
42
|
+
0.32461,0.22086,0.34219,0.30448,0.12013,0.46681,0.45328,0.5368,0.20168,0.40563,0.23853,0.35095,0.11152,0.38696,0.19606,0.29426,0.29523,0.23036,0.26945,0.29624,0.3409,0.28878,0.39326,0.32676,0.088439,0.37595,0.3399,0.52404,0.35965,0.48542,0.087791,0.10467,0.26,0.31065,0.37904,0.21916,0.44585,0.31118,0.14669,0.51234,0.54321,1,0.22323,0.4176,0.28851,0.35694,0.1302,0.49208,0.23175,0.29923,0.37465,0.30179,0.37502,0.29753,0.35181,0.27766,0.4055,0.36708,0.08805,0.42302,0.41153,0.54731,0.39103,0.52347,0.11823,0.1373,0.25285,0.34353
|
43
|
+
0.17437,0.1626,0.30865,0.2631,0.084815,0.27196,0.45977,0.19456,0.47491,0.27165,0.16908,0.32036,0.27138,0.32941,0.27395,0.22041,0.09162,0.11477,0.076992,0.31643,0.25614,0.33181,0.18032,0.58464,0.27352,0.25261,0.35627,0.22982,0.26841,0.17492,0.1583,0.087486,0.25281,0.19231,0.19184,0.16913,0.33189,0.27166,0.094611,0.26715,0.47954,0.22323,1,0.26493,0.18935,0.32718,0.29678,0.38522,0.28421,0.21409,0.073514,0.16112,0.1086,0.32038,0.2554,0.33976,0.18999,0.60954,0.25872,0.28708,0.39634,0.24099,0.26021,0.17918,0.17392,0.10502,0.24634,0.19927
|
44
|
+
0.33893,0.26571,0.25092,0.53985,0.092721,0.57583,0.38375,0.37483,0.26519,0.89174,0.22068,0.55813,0.1479,0.30327,0.18908,0.35565,0.27558,0.1759,0.26018,0.53341,0.41241,0.31974,0.41326,0.37372,0.14675,0.32194,0.34378,0.56153,0.40748,0.3537,0.10802,0.092297,0.32734,0.33913,0.35974,0.25624,0.26881,0.56824,0.10221,0.59569,0.40481,0.4176,0.26493,1,0.2198,0.57599,0.13342,0.32077,0.22036,0.36043,0.27514,0.15551,0.28447,0.56683,0.4318,0.29312,0.45412,0.38815,0.1316,0.31882,0.34855,0.60627,0.40443,0.41315,0.095792,0.086266,0.31716,0.36459
|
45
|
+
0.18329,0.1866,0.26383,0.17269,0.077703,0.22392,0.29168,0.25305,0.17348,0.23392,0.2837,0.21682,0.10348,0.24049,0.12914,0.16615,0.26844,0.2014,0.25416,0.23643,0.18437,0.25178,0.21826,0.24195,0.1533,0.3161,0.26872,0.22781,0.23422,0.30343,0.066751,0.047915,0.22381,0.25577,0.22166,0.21268,0.36411,0.18044,0.10067,0.21787,0.36804,0.28851,0.18935,0.2198,1,0.21341,0.20258,0.32966,0.13931,0.16859,0.34182,0.3574,0.39748,0.23693,0.18567,0.26316,0.21456,0.27084,0.16803,0.41416,0.38559,0.22749,0.24992,0.3104,0.12666,0.082495,0.22298,0.28809
|
46
|
+
0.34039,0.32713,0.24453,0.78849,0.09351,0.56684,0.38094,0.32795,0.28889,0.55821,0.21925,0.81895,0.13083,0.26724,0.26087,0.43715,0.29828,0.10857,0.23924,0.74722,0.51451,0.34558,0.51046,0.4753,0.13653,0.3372,0.3642,0.64597,0.45518,0.43235,0.083701,0.082968,0.38875,0.41649,0.3905,0.30547,0.28445,0.796,0.10153,0.58458,0.40915,0.35694,0.32718,0.57599,0.21341,1,0.12195,0.28511,0.32193,0.45179,0.30354,0.10159,0.2773,0.75927,0.5198,0.31421,0.52859,0.51565,0.12477,0.31907,0.38597,0.6554,0.44763,0.47801,0.070737,0.08198,0.37494,0.43739
|
47
|
+
0.13056,0.034016,0.20363,0.084126,0.069192,0.17131,0.29075,0.11695,0.30559,0.13488,0.1148,0.13345,0.35648,0.28721,0.19677,0.12801,0.015071,0.14971,0.055139,0.11708,0.16326,0.12704,0.078018,0.33217,0.2534,0.049785,0.27574,0.047494,0.19489,0.0068547,0.18888,0.1055,0.13393,0.068052,0.12642,0.038429,0.17564,0.085724,0.080069,0.17345,0.26861,0.1302,0.29678,0.13342,0.20258,0.12195,1,0.3189,0.18507,0.11065,-0.045482,0.16644,0.035538,0.11701,0.17006,0.109,0.091685,0.32068,0.26691,0.068615,0.27122,0.056477,0.1929,0.0051128,0.22107,0.13936,0.13082,0.069856
|
48
|
+
0.4295,0.12186,0.48371,0.21892,0.11605,0.35761,0.61847,0.36828,0.38307,0.31792,0.24561,0.29173,0.27272,0.64966,0.24283,0.24921,0.27021,0.33018,0.29675,0.25535,0.30832,0.29753,0.24004,0.50594,0.22086,0.3122,0.47239,0.24704,0.42307,0.3237,0.24631,0.17554,0.27,0.21148,0.47409,0.13625,0.55964,0.22586,0.14355,0.37604,0.70914,0.49208,0.38522,0.32077,0.32966,0.28511,0.3189,1,0.25243,0.23301,0.25583,0.52137,0.38023,0.25448,0.32161,0.29396,0.26307,0.53941,0.22193,0.43291,0.59809,0.26763,0.47014,0.31869,0.31758,0.22567,0.26812,0.2435
|
49
|
+
0.1621,0.13235,0.20447,0.24936,0.081474,0.33256,0.30876,0.21024,0.24742,0.22067,0.12578,0.30878,0.17578,0.21422,0.28408,0.21444,0.10971,0.090846,0.093191,0.2545,0.23703,0.18122,0.21659,0.36055,0.13646,0.16629,0.24324,0.27351,0.24908,0.18272,0.085899,0.075756,0.19596,0.18613,0.18937,0.12748,0.24286,0.24782,0.11512,0.36825,0.33349,0.23175,0.28421,0.22036,0.13931,0.32193,0.18507,0.25243,1,0.21458,0.10984,0.10099,0.12222,0.25195,0.24245,0.1609,0.22405,0.38382,0.12453,0.17342,0.25296,0.27821,0.25367,0.1956,0.089469,0.094871,0.19068,0.19707
|
50
|
+
0.32403,0.31749,0.18965,0.4496,0.083228,0.37482,0.26409,0.2739,0.2021,0.35037,0.18189,0.43714,0.12766,0.22994,0.18438,0.6422,0.2846,0.10086,0.22212,0.3654,0.63183,0.32974,0.63319,0.34618,0.10937,0.27499,0.38704,0.49991,0.46411,0.45924,0.073973,0.06989,0.38364,0.44494,0.36327,0.27927,0.20747,0.44176,0.093267,0.38469,0.27127,0.29923,0.21409,0.36043,0.16859,0.45179,0.11065,0.23301,0.21458,1,0.28154,0.069128,0.24203,0.35447,0.6514,0.31565,0.66414,0.36656,0.096432,0.23954,0.39073,0.52329,0.4662,0.51254,0.055281,0.078939,0.36963,0.46759
|
51
|
+
0.242,0.33769,0.21447,0.28056,0.062491,0.2796,0.20578,0.30531,0.033988,0.29143,0.26163,0.29579,-0.080652,0.13248,0.07462,0.25247,0.46699,0.10924,0.34702,0.30422,0.26044,0.30575,0.43158,0.15443,0.014945,0.4345,0.24141,0.41677,0.30157,0.55639,-0.044057,0.0068807,0.28325,0.41913,0.36736,0.35147,0.4334,0.28081,0.080119,0.27768,0.36564,0.37465,0.073514,0.27514,0.34182,0.30354,-0.045482,0.25583,0.10984,0.28154,1,0.24805,0.61935,0.29999,0.25823,0.32576,0.43601,0.22409,0.046847,0.54485,0.44281,0.41936,0.33939,0.61781,-0.0003796,0.018302,0.27784,0.47049
|
52
|
+
0.22429,0.0039369,0.40123,0.042695,0.070932,0.15912,0.40052,0.26086,0.15869,0.17055,0.21894,0.10812,0.11919,0.41895,0.096167,0.088031,0.23218,0.41942,0.29739,0.11697,0.11388,0.14177,0.093374,0.16566,0.066507,0.24935,0.2724,0.070341,0.18182,0.20824,0.13937,0.092037,0.14324,0.088121,0.20491,0.030378,0.46678,0.052522,0.093775,0.15961,0.46535,0.30179,0.16112,0.15551,0.3574,0.10159,0.16644,0.52137,0.10099,0.069128,0.24805,1,0.38177,0.1189,0.12441,0.14838,0.093061,0.19675,0.084407,0.39039,0.39639,0.071775,0.19487,0.17072,0.23245,0.11877,0.14466,0.11264
|
53
|
+
0.31703,0.29037,0.25839,0.24118,0.076653,0.28491,0.25876,0.30811,0.08898,0.29745,0.31466,0.27521,0.0063051,0.26507,0.09958,0.22486,0.48685,0.23167,0.47484,0.28988,0.23174,0.29975,0.34497,0.19314,0.068634,0.38471,0.31086,0.32882,0.32699,0.48763,0.04111,0.05404,0.27503,0.3701,0.42192,0.30447,0.4112,0.24579,0.092402,0.28148,0.36817,0.37502,0.1086,0.28447,0.39748,0.2773,0.035538,0.38023,0.12222,0.24203,0.61935,0.38177,1,0.28729,0.23299,0.29939,0.34714,0.23984,0.087389,0.46897,0.47271,0.32925,0.36645,0.50095,0.08563,0.072683,0.2733,0.40523
|
54
|
+
0.25585,0.32736,0.26887,0.70504,0.085198,0.45361,0.36673,0.28421,0.3029,0.56068,0.24038,0.73577,0.12048,0.23753,0.22618,0.3405,0.29259,0.11355,0.23762,0.84959,0.40367,0.36182,0.41903,0.4673,0.16795,0.36593,0.3585,0.54197,0.35322,0.39078,0.072693,0.062879,0.38183,0.38325,0.29777,0.31635,0.30728,0.73887,0.087675,0.45005,0.39614,0.29753,0.32038,0.56683,0.23693,0.75927,0.11701,0.25448,0.25195,0.35447,0.29999,0.1189,0.28729,1,0.4039,0.33751,0.42278,0.4938,0.15697,0.35311,0.39246,0.54144,0.34012,0.41848,0.067191,0.055297,0.37337,0.395
|
55
|
+
0.41532,0.30028,0.26816,0.51567,0.10094,0.43151,0.33913,0.32504,0.2573,0.41403,0.20085,0.50246,0.19827,0.32103,0.21293,0.64306,0.30975,0.15778,0.25684,0.41953,0.86152,0.31948,0.74381,0.38597,0.13132,0.2833,0.4611,0.53527,0.57001,0.47684,0.12628,0.10224,0.44835,0.48677,0.4418,0.25541,0.24933,0.50608,0.11322,0.45166,0.32707,0.35181,0.2554,0.4318,0.18567,0.5198,0.17006,0.32161,0.24245,0.6514,0.25823,0.12441,0.23299,0.4039,1,0.26661,0.81152,0.39195,0.10574,0.23696,0.42724,0.5723,0.58141,0.56484,0.10194,0.11579,0.4412,0.52614
|
56
|
+
0.16053,0.33061,0.22018,0.2944,0.073886,0.24285,0.32992,0.22786,0.29988,0.30451,0.22231,0.31364,0.072573,0.21348,0.15076,0.2717,0.22264,0.071811,0.14908,0.33398,0.27882,0.48016,0.30021,0.43602,0.21252,0.40314,0.31005,0.34248,0.27476,0.40097,0.034516,0.031663,0.31186,0.35876,0.2333,0.35694,0.33294,0.30303,0.087614,0.23564,0.4184,0.27766,0.33976,0.29312,0.26316,0.31421,0.109,0.29396,0.1609,0.31565,0.32576,0.14838,0.29939,0.33751,0.26661,1,0.30244,0.47373,0.22665,0.47144,0.45146,0.34878,0.28041,0.43062,0.062479,0.041308,0.30351,0.37384
|
57
|
+
0.38779,0.37654,0.22512,0.52705,0.09402,0.4612,0.27816,0.36037,0.17675,0.43803,0.21537,0.50927,0.11231,0.24681,0.18194,0.63337,0.38764,0.11625,0.28909,0.4366,0.76309,0.34001,0.82266,0.31877,0.083417,0.33693,0.44597,0.62789,0.54355,0.58281,0.06516,0.074465,0.43667,0.53685,0.45413,0.33473,0.28719,0.51556,0.10885,0.47993,0.31062,0.4055,0.18999,0.45412,0.21456,0.52859,0.091685,0.26307,0.22405,0.66414,0.43601,0.093061,0.34714,0.42278,0.81152,0.30244,1,0.34456,0.071424,0.31615,0.46878,0.66726,0.5649,0.69194,0.04672,0.086666,0.42686,0.58332
|
58
|
+
0.27303,0.27722,0.41475,0.45804,0.10753,0.43258,0.6455,0.29704,0.55397,0.39823,0.22845,0.51785,0.27157,0.41794,0.36765,0.36103,0.18753,0.086902,0.12304,0.48987,0.39421,0.46521,0.33335,0.83318,0.30738,0.42035,0.46828,0.46528,0.40633,0.36782,0.17799,0.10086,0.37062,0.32834,0.34468,0.28542,0.53393,0.46767,0.12101,0.42811,0.73979,0.36708,0.60954,0.38815,0.27084,0.51565,0.32068,0.53941,0.38382,0.36656,0.22409,0.19675,0.23984,0.4938,0.39195,0.47373,0.34456,1,0.30423,0.49968,0.58844,0.47844,0.4051,0.38472,0.21302,0.1279,0.35702,0.34384
|
59
|
+
0.062221,0.1501,0.11755,0.10056,0.050335,0.10499,0.1865,0.047675,0.25942,0.13652,0.14306,0.1322,0.20408,0.16061,0.13668,0.10084,0.039067,0.034977,0.028329,0.15411,0.10932,0.21384,0.058207,0.30399,0.32837,0.1364,0.25169,0.054894,0.1494,0.058084,0.092579,0.055915,0.16164,0.13557,0.09437,0.18653,0.1542,0.10525,0.058394,0.10291,0.2208,0.08805,0.25872,0.1316,0.16803,0.12477,0.26691,0.22193,0.12453,0.096432,0.046847,0.084407,0.087389,0.15697,0.10574,0.22665,0.071424,0.30423,1,0.19209,0.31754,0.064312,0.15061,0.075944,0.10708,0.074743,0.15873,0.13528
|
60
|
+
0.17833,0.29789,0.41514,0.27986,0.0755,0.27773,0.45615,0.33092,0.23357,0.34672,0.27389,0.32248,-0.019489,0.23645,0.14773,0.22601,0.31795,0.11193,0.19583,0.34823,0.2405,0.40892,0.31694,0.41208,0.14233,0.66175,0.33568,0.41433,0.26759,0.50904,-0.0003324,0.0056369,0.29638,0.33839,0.27447,0.34783,0.68627,0.29337,0.10105,0.27173,0.67569,0.42302,0.28708,0.31882,0.41416,0.31907,0.068615,0.43291,0.17342,0.23954,0.54485,0.39039,0.46897,0.35311,0.23696,0.47144,0.31615,0.49968,0.19209,1,0.61252,0.41581,0.29705,0.55271,0.10684,0.026719,0.29239,0.38198
|
61
|
+
0.33685,0.34699,0.46207,0.32962,0.10715,0.35538,0.51847,0.31696,0.38026,0.36285,0.31352,0.3919,0.21976,0.46034,0.2424,0.37885,0.39142,0.22642,0.31458,0.39798,0.43174,0.43673,0.45559,0.54837,0.30668,0.4971,0.64972,0.38267,0.43512,0.47801,0.17609,0.11422,0.38874,0.40024,0.40997,0.38054,0.60107,0.33144,0.12844,0.35654,0.62985,0.41153,0.39634,0.34855,0.38559,0.38597,0.27122,0.59809,0.25296,0.39073,0.44281,0.39639,0.47271,0.39246,0.42724,0.45146,0.46878,0.58844,0.31754,0.61252,1,0.3958,0.44249,0.50468,0.23038,0.14849,0.3745,0.42513
|
62
|
+
0.31412,0.36334,0.23836,0.63388,0.10064,0.59614,0.39905,0.4876,0.20209,0.58374,0.2153,0.63107,0.058082,0.23353,0.22091,0.49235,0.32004,0.073042,0.22995,0.53843,0.55778,0.36711,0.63026,0.42063,0.065563,0.40871,0.34403,0.89386,0.43699,0.61496,0.036584,0.063356,0.36452,0.4625,0.3838,0.3385,0.36209,0.64118,0.11314,0.61215,0.48736,0.54731,0.24099,0.60627,0.22749,0.6554,0.056477,0.26763,0.27821,0.52329,0.41936,0.071775,0.32925,0.54144,0.5723,0.34878,0.66726,0.47844,0.064312,0.41581,0.3958,1,0.44425,0.71766,0.033044,0.062308,0.34967,0.499
|
63
|
+
0.52628,0.28368,0.28019,0.42414,0.10475,0.43798,0.35896,0.32606,0.25731,0.38377,0.2317,0.43641,0.19902,0.38339,0.2227,0.46196,0.35838,0.17865,0.32076,0.35102,0.56014,0.31719,0.53159,0.38766,0.16204,0.28744,0.42629,0.42069,0.72087,0.44052,0.13191,0.12888,0.47838,0.43926,0.61315,0.26409,0.30344,0.41702,0.12622,0.46459,0.38819,0.39103,0.26021,0.40443,0.24992,0.44763,0.1929,0.47014,0.25367,0.4662,0.33939,0.19487,0.36645,0.34012,0.58141,0.28041,0.5649,0.4051,0.15061,0.29705,0.44249,0.44425,1,0.49149,0.12786,0.16698,0.49709,0.49174
|
64
|
+
0.31357,0.43135,0.23881,0.45632,0.094654,0.42676,0.32161,0.43946,0.14269,0.41177,0.26189,0.46399,-0.010974,0.23302,0.15228,0.47368,0.4246,0.099183,0.29644,0.42417,0.558,0.42388,0.66815,0.32585,0.058142,0.49126,0.35635,0.68483,0.45582,0.77392,-0.0045128,0.037489,0.41887,0.57524,0.43596,0.41457,0.4254,0.45475,0.11233,0.43716,0.46534,0.52347,0.17918,0.41315,0.3104,0.47801,0.0051128,0.31869,0.1956,0.51254,0.61781,0.17072,0.50095,0.41848,0.56484,0.43062,0.69194,0.38472,0.075944,0.55271,0.50468,0.71766,0.49149,1,0.012348,0.04613,0.41286,0.62547
|
65
|
+
0.14035,-0.01346,0.19249,0.040861,0.04432,0.10799,0.24933,0.094577,0.18407,0.096988,0.083764,0.075667,0.18787,0.27766,0.095497,0.069393,0.054018,0.1471,0.093212,0.067451,0.098116,0.07059,0.037748,0.21558,0.10929,0.052859,0.19492,0.025686,0.12986,0.031807,0.22088,0.083862,0.076995,0.022492,0.11697,-0.0090524,0.17838,0.042598,0.051966,0.11085,0.24288,0.11823,0.17392,0.095792,0.12666,0.070737,0.22107,0.31758,0.089469,0.055281,-0.0003796,0.23245,0.08563,0.067191,0.10194,0.062479,0.04672,0.21302,0.10708,0.10684,0.23038,0.033044,0.12786,0.012348,1,0.11039,0.07598,0.027772
|
66
|
+
0.13701,0.025356,0.09814,0.065861,0.047365,0.12556,0.14141,0.096776,0.11057,0.082238,0.054447,0.082802,0.13409,0.19576,0.09174,0.08599,0.056056,0.099407,0.081044,0.057952,0.10997,0.054226,0.074192,0.13019,0.081819,0.014834,0.14693,0.055427,0.15129,0.04827,0.10187,0.094581,0.072301,0.061201,0.13369,0.021054,0.085328,0.06467,0.10755,0.13974,0.1325,0.1373,0.10502,0.086266,0.082495,0.08198,0.13936,0.22567,0.094871,0.078939,0.018302,0.11877,0.072683,0.055297,0.11579,0.041308,0.086666,0.1279,0.074743,0.026719,0.14849,0.062308,0.16698,0.04613,0.11039,1,0.073226,0.072134
|
67
|
+
0.27209,0.28762,0.23886,0.34489,0.082547,0.29502,0.28846,0.23093,0.24189,0.3144,0.21885,0.36901,0.13485,0.24244,0.17453,0.36201,0.27444,0.13116,0.22882,0.37655,0.43287,0.32791,0.41607,0.34926,0.169,0.29737,0.35238,0.33872,0.45721,0.3783,0.082832,0.066298,0.48167,0.40004,0.32196,0.2766,0.25574,0.34557,0.089977,0.29902,0.30632,0.25285,0.24634,0.31716,0.22298,0.37494,0.13082,0.26812,0.19068,0.36963,0.27784,0.14466,0.2733,0.37337,0.4412,0.30351,0.42686,0.35702,0.15873,0.29239,0.3745,0.34967,0.49709,0.41286,0.07598,0.073226,1,0.44232
|
68
|
+
0.28756,0.41701,0.1754,0.42098,0.092564,0.362,0.23807,0.29506,0.17892,0.36239,0.25496,0.42442,0.069765,0.19597,0.16283,0.4393,0.36807,0.090863,0.2769,0.40321,0.51478,0.3863,0.56518,0.31499,0.13241,0.36543,0.34943,0.48189,0.45414,0.54526,0.031071,0.057538,0.42336,0.56292,0.37701,0.39528,0.26227,0.41753,0.10879,0.37126,0.30013,0.34353,0.19927,0.36459,0.28809,0.43739,0.069856,0.2435,0.19707,0.46759,0.47049,0.11264,0.40523,0.395,0.52614,0.37384,0.58332,0.34384,0.13528,0.38198,0.42513,0.499,0.49174,0.62547,0.027772,0.072134,0.44232,1
|
@@ -0,0 +1,68 @@
|
|
1
|
+
1,0.17994,0.39486,0.33233,0.086971,0.39201,0.44613,0.3844,0.21514,0.33635,0.22823,0.34938,0.17559,0.55249,0.15869,0.33989,0.47512,0.29903,0.48612,0.27537,0.437,0.22268,0.42768,0.31851,0.091322,0.28476,0.46057,0.32986,0.60814,0.41163,0.2006,0.15553,0.29537,0.29326,0.54877,0.14728,0.25458,0.32333,0.086524,0.37962,0.32989,0.33094,0.17627,0.3457,0.17844,0.35117,0.13901,0.44736,0.16562,0.33164,0.23074,0.22735,0.31261,0.25644,0.42687,0.15956,0.39175,0.28276,0.064623,0.17248,0.34142,0.32041,0.53208,0.31044,0.14412,0.13927,0.26837,0.28378
|
2
|
+
0.17994,1,0.12283,0.31839,0.058657,0.24229,0.1587,0.20568,0.14927,0.26917,0.21299,0.31207,0.043062,0.11281,0.11419,0.28743,0.31058,0.038963,0.21756,0.32742,0.31905,0.3632,0.39376,0.26915,0.16869,0.34982,0.33262,0.36548,0.28467,0.41194,0.013687,0.027148,0.30071,0.41797,0.24217,0.38811,0.16148,0.31874,0.061011,0.23452,0.18775,0.21753,0.15578,0.26828,0.18712,0.31842,0.034327,0.12444,0.11995,0.31121,0.34172,0.007078,0.29314,0.32295,0.30149,0.32955,0.37831,0.27468,0.15488,0.30349,0.3487,0.35805,0.28174,0.43035,-0.014059,0.023059,0.28959,0.41842
|
3
|
+
0.39486,0.12283,1,0.17934,0.10906,0.304,0.76321,0.46611,0.36919,0.25788,0.33516,0.26393,0.24612,0.62604,0.22838,0.21333,0.44902,0.491,0.44842,0.27685,0.27524,0.30136,0.31193,0.49931,0.17053,0.61303,0.63815,0.28618,0.3296,0.42408,0.24888,0.11405,0.2443,0.19747,0.25882,0.10868,0.57516,0.18449,0.093974,0.27103,0.57072,0.34417,0.30023,0.24929,0.26566,0.24808,0.2053,0.48081,0.19786,0.19222,0.20672,0.4036,0.24926,0.27281,0.27628,0.21259,0.23148,0.40849,0.11013,0.40172,0.45342,0.23862,0.2831,0.23509,0.19557,0.096964,0.23529,0.17214
|
4
|
+
0.33233,0.31839,0.17934,1,0.072887,0.50434,0.31228,0.28528,0.25085,0.5472,0.18165,0.78325,0.098254,0.21542,0.21037,0.42742,0.275,0.065629,0.20806,0.74128,0.51223,0.3202,0.50276,0.43738,0.10989,0.30757,0.31273,0.63975,0.43478,0.40721,0.072172,0.065841,0.35856,0.40199,0.37637,0.29156,0.21235,0.85907,0.080323,0.50639,0.33184,0.31031,0.25741,0.54917,0.17096,0.79109,0.085055,0.23236,0.24077,0.4448,0.28334,0.051116,0.24494,0.71155,0.51601,0.29163,0.52565,0.46198,0.10224,0.28175,0.33191,0.63176,0.42225,0.45501,0.045598,0.068334,0.34605,0.42051
|
5
|
+
0.086971,0.058657,0.10906,0.072887,1,0.14341,0.13013,0.1363,0.08481,0.084828,0.093157,0.087628,0.073858,0.12485,0.11188,0.079888,0.083717,0.091417,0.08808,0.0783,0.097245,0.081343,0.10055,0.10538,0.056426,0.10179,0.11914,0.10022,0.10898,0.10513,0.046457,0.079868,0.079204,0.095449,0.077365,0.054749,0.086293,0.072456,0.052613,0.11467,0.10763,0.11318,0.074662,0.081905,0.074308,0.084114,0.066725,0.10515,0.074923,0.076447,0.05771,0.065842,0.071891,0.076565,0.094171,0.065261,0.087733,0.096223,0.045787,0.066822,0.096362,0.092618,0.09703,0.08678,0.039206,0.043452,0.073929,0.084553
|
6
|
+
0.39201,0.24229,0.304,0.50434,0.14341,1,0.46142,0.5185,0.25793,0.58814,0.22263,0.58203,0.17815,0.36769,0.33374,0.371,0.29707,0.19554,0.27109,0.46209,0.43999,0.27405,0.46495,0.4077,0.11522,0.31759,0.35805,0.6095,0.46864,0.42423,0.12706,0.12305,0.31396,0.35682,0.39396,0.22338,0.32536,0.50244,0.12933,0.68915,0.4511,0.47654,0.25845,0.57236,0.21821,0.56851,0.16699,0.36138,0.32574,0.37516,0.27678,0.16225,0.28951,0.45103,0.43563,0.23573,0.46388,0.42833,0.097661,0.27121,0.34878,0.59648,0.43808,0.42295,0.10926,0.12242,0.28954,0.35783
|
7
|
+
0.44613,0.1587,0.76321,0.31228,0.13013,0.46142,1,0.55157,0.50908,0.39404,0.33342,0.40125,0.30943,0.72782,0.32288,0.28471,0.36677,0.44707,0.37333,0.37499,0.34736,0.40148,0.32936,0.71669,0.23136,0.58409,0.62639,0.44626,0.40655,0.48935,0.29057,0.14601,0.2989,0.24494,0.33393,0.1511,0.59612,0.31638,0.12388,0.42063,0.76292,0.45448,0.44986,0.37935,0.29213,0.38383,0.28553,0.61891,0.29719,0.26352,0.20002,0.40427,0.25349,0.37089,0.34369,0.32447,0.28088,0.64282,0.17749,0.44805,0.51188,0.39796,0.36001,0.31707,0.25067,0.1379,0.28344,0.23322
|
8
|
+
0.3844,0.20568,0.46611,0.28528,0.1363,0.5185,0.55157,1,0.21164,0.39113,0.2959,0.33839,0.14356,0.49218,0.21531,0.28602,0.37536,0.36243,0.36487,0.29397,0.3523,0.28643,0.43329,0.32257,0.07308,0.47114,0.40313,0.54179,0.37918,0.55758,0.12146,0.12731,0.25451,0.31594,0.30892,0.17973,0.39302,0.28689,0.12538,0.44812,0.45955,0.54581,0.18606,0.37277,0.25515,0.33172,0.11497,0.37372,0.20891,0.28168,0.30125,0.2659,0.30582,0.28551,0.33655,0.2251,0.36973,0.29743,0.044834,0.32954,0.3154,0.49286,0.33261,0.43895,0.095199,0.094296,0.23068,0.29199
|
9
|
+
0.21514,0.14927,0.36919,0.25085,0.08481,0.25793,0.50908,0.21164,1,0.26549,0.19946,0.31974,0.31671,0.40138,0.27729,0.21236,0.12307,0.18588,0.13768,0.30071,0.25254,0.34677,0.1733,0.62281,0.29312,0.27611,0.4228,0.2029,0.27492,0.17437,0.22453,0.10235,0.2441,0.18067,0.19028,0.14999,0.28367,0.25399,0.086681,0.24453,0.43229,0.20125,0.46846,0.26307,0.17693,0.28891,0.3001,0.38276,0.23854,0.19822,0.033907,0.16505,0.094849,0.30212,0.25405,0.29728,0.1752,0.55013,0.25095,0.23,0.37088,0.19873,0.25467,0.14047,0.19414,0.11,0.23868,0.17729
|
10
|
+
0.33635,0.26917,0.25788,0.5472,0.084828,0.58814,0.39404,0.39113,0.26549,1,0.22022,0.56632,0.13855,0.29938,0.19304,0.35229,0.27542,0.16432,0.25277,0.55702,0.42156,0.32046,0.42535,0.37918,0.13805,0.34594,0.33177,0.58315,0.41028,0.37735,0.10822,0.084603,0.33541,0.35014,0.34995,0.26121,0.29836,0.56581,0.095466,0.55603,0.42227,0.41363,0.26491,0.8896,0.233,0.56217,0.13301,0.32132,0.21343,0.35367,0.2946,0.17261,0.30289,0.56312,0.42213,0.30509,0.44706,0.4058,0.13519,0.35092,0.36184,0.59239,0.38633,0.41877,0.099088,0.078155,0.31681,0.36654
|
11
|
+
0.22823,0.21299,0.33516,0.18165,0.093157,0.22263,0.33342,0.2959,0.19946,0.22022,1,0.21418,0.21071,0.3125,0.13468,0.17617,0.36409,0.32783,0.37912,0.23542,0.20222,0.27778,0.25202,0.26435,0.18674,0.40845,0.38759,0.22986,0.25744,0.34013,0.1308,0.084834,0.22329,0.29578,0.20319,0.2076,0.24319,0.18476,0.072496,0.19896,0.25623,0.23261,0.16155,0.21429,0.28502,0.20972,0.11917,0.23872,0.11743,0.17783,0.26115,0.22348,0.31449,0.23189,0.19548,0.22512,0.21198,0.22252,0.14503,0.27351,0.31115,0.20792,0.22455,0.25889,0.085721,0.047698,0.21206,0.25189
|
12
|
+
0.34938,0.31207,0.26393,0.78325,0.087628,0.58203,0.40125,0.33839,0.31974,0.56632,0.21418,1,0.13855,0.28341,0.28369,0.41653,0.3006,0.12,0.2428,0.76434,0.50025,0.33586,0.49481,0.48932,0.13752,0.34501,0.37159,0.63863,0.45005,0.43107,0.099136,0.079794,0.38042,0.4068,0.38442,0.29053,0.29739,0.77545,0.094351,0.56441,0.4178,0.35504,0.30758,0.55771,0.21115,0.82142,0.13023,0.29979,0.29826,0.42962,0.29533,0.11701,0.27748,0.73835,0.50088,0.3035,0.50608,0.51221,0.12676,0.31895,0.38741,0.62556,0.43216,0.45992,0.077996,0.0842,0.36456,0.42037
|
13
|
+
0.17559,0.043062,0.24612,0.098254,0.073858,0.17815,0.30943,0.14356,0.31671,0.13855,0.21071,0.13855,1,0.34256,0.1949,0.14382,0.064098,0.21801,0.12781,0.12022,0.18466,0.12597,0.1062,0.32892,0.29701,0.069672,0.34863,0.051631,0.2167,0.020085,0.26157,0.12782,0.13401,0.078577,0.12687,0.029452,0.097347,0.096713,0.073586,0.17359,0.18694,0.11347,0.26268,0.14529,0.1065,0.12859,0.35235,0.27352,0.16923,0.12501,-0.085507,0.12033,0.013485,0.1182,0.19236,0.070779,0.10841,0.25953,0.20123,-0.0275,0.21109,0.051835,0.19494,-0.016161,0.19109,0.13297,0.12922,0.067904
|
14
|
+
0.55249,0.11281,0.62604,0.21542,0.12485,0.36769,0.72782,0.49218,0.40138,0.29938,0.3125,0.28341,0.34256,1,0.23951,0.25152,0.39267,0.51969,0.46977,0.24588,0.3355,0.29415,0.28963,0.50508,0.21714,0.39066,0.62418,0.25217,0.47206,0.39516,0.3615,0.22529,0.25837,0.21835,0.37495,0.091372,0.38693,0.21492,0.11515,0.33882,0.52458,0.38873,0.32277,0.30131,0.23914,0.27183,0.2889,0.65977,0.20903,0.23144,0.12392,0.42081,0.26323,0.23788,0.32528,0.2129,0.24786,0.41763,0.15494,0.22868,0.45896,0.23097,0.38408,0.22889,0.28896,0.19328,0.23504,0.18765
|
15
|
+
0.15869,0.11419,0.22838,0.21037,0.11188,0.33374,0.32288,0.21531,0.27729,0.19304,0.13468,0.28369,0.1949,0.23951,1,0.1892,0.10991,0.11703,0.10758,0.22447,0.21428,0.1721,0.19013,0.36567,0.1531,0.17031,0.25677,0.23127,0.23553,0.16733,0.10917,0.081971,0.18033,0.1688,0.17079,0.10776,0.21892,0.20916,0.081339,0.28618,0.29953,0.20045,0.26095,0.1878,0.12849,0.25813,0.19228,0.23831,0.27659,0.18318,0.071913,0.097766,0.10327,0.22075,0.21372,0.14528,0.18306,0.35586,0.12744,0.13858,0.23305,0.21824,0.22293,0.14833,0.098242,0.09287,0.17024,0.16009
|
16
|
+
0.33989,0.28743,0.21333,0.42742,0.079888,0.371,0.28471,0.28602,0.21236,0.35229,0.17617,0.41653,0.14382,0.25152,0.1892,1,0.27799,0.11789,0.2215,0.34678,0.64834,0.32934,0.63469,0.35431,0.11611,0.26983,0.39838,0.48912,0.46896,0.44205,0.096727,0.077496,0.37151,0.42353,0.36225,0.24237,0.21748,0.41901,0.092252,0.37676,0.28269,0.29849,0.21213,0.35463,0.16617,0.42748,0.12847,0.25886,0.20714,0.64244,0.25031,0.091279,0.23002,0.33354,0.63923,0.26731,0.62774,0.35841,0.10022,0.22194,0.37411,0.4897,0.4626,0.4701,0.074307,0.085223,0.35882,0.43566
|
17
|
+
0.47512,0.31058,0.44902,0.275,0.083717,0.29707,0.36677,0.37536,0.12307,0.27542,0.36409,0.3006,0.064098,0.39267,0.10991,0.27799,1,0.34812,0.64463,0.30687,0.33279,0.29725,0.48016,0.23132,0.071823,0.52103,0.51143,0.34973,0.41804,0.55825,0.11041,0.086383,0.29278,0.42549,0.38224,0.27513,0.31287,0.27188,0.066479,0.27271,0.27053,0.29444,0.086589,0.27624,0.27017,0.3013,0.019193,0.27345,0.1061,0.29367,0.47237,0.22652,0.48509,0.29356,0.31961,0.22843,0.39703,0.19386,0.040812,0.32121,0.39875,0.32446,0.36401,0.43329,0.050296,0.050317,0.27504,0.37381
|
18
|
+
0.29903,0.038963,0.491,0.065629,0.091417,0.19554,0.44707,0.36243,0.18588,0.16432,0.32783,0.12,0.21801,0.51969,0.11703,0.11789,0.34812,1,0.46731,0.12074,0.15118,0.16575,0.16176,0.17221,0.096585,0.33789,0.4304,0.097311,0.22299,0.25386,0.21359,0.13177,0.13765,0.12263,0.17788,0.020196,0.23328,0.071442,0.07212,0.17366,0.24678,0.23371,0.11457,0.17142,0.21338,0.11354,0.15479,0.33171,0.091683,0.10504,0.10764,0.41934,0.22933,0.1195,0.16004,0.078294,0.11887,0.091086,0.036529,0.11703,0.22853,0.074602,0.18199,0.10178,0.14824,0.093552,0.13214,0.089835
|
19
|
+
0.48612,0.21756,0.44842,0.20806,0.08808,0.27109,0.37333,0.36487,0.13768,0.25277,0.37912,0.2428,0.12781,0.46977,0.10758,0.2215,0.64463,0.46731,1,0.24804,0.26757,0.24051,0.35375,0.19711,0.080393,0.42127,0.49552,0.24765,0.38459,0.43624,0.18004,0.12362,0.2391,0.32128,0.35492,0.18468,0.24198,0.20775,0.068027,0.24778,0.22269,0.26698,0.084356,0.26112,0.26014,0.24254,0.066459,0.31054,0.096514,0.22828,0.3379,0.29787,0.47127,0.23874,0.26484,0.15578,0.292,0.13767,0.037617,0.19542,0.32298,0.22982,0.32681,0.29565,0.10098,0.081872,0.22853,0.27765
|
20
|
+
0.27537,0.32742,0.27685,0.74128,0.0783,0.46209,0.37499,0.29397,0.30071,0.55702,0.23542,0.76434,0.12022,0.24588,0.22447,0.34678,0.30687,0.12074,0.24804,1,0.42482,0.35611,0.43852,0.47101,0.15853,0.3731,0.37057,0.55229,0.36688,0.409,0.084593,0.058659,0.38545,0.39091,0.30804,0.31412,0.30877,0.73491,0.080112,0.44537,0.39365,0.30184,0.30497,0.53532,0.23332,0.74971,0.11467,0.26181,0.24072,0.36047,0.30848,0.12642,0.29206,0.85572,0.42101,0.32872,0.43802,0.48849,0.14955,0.35189,0.39554,0.53681,0.34813,0.42537,0.068144,0.057787,0.37511,0.40219
|
21
|
+
0.437,0.31905,0.27524,0.51223,0.097245,0.43999,0.34736,0.3523,0.25254,0.42156,0.20222,0.50025,0.18466,0.3355,0.21428,0.64834,0.33279,0.15118,0.26757,0.42482,1,0.3285,0.80335,0.3878,0.12662,0.30911,0.47006,0.57735,0.59448,0.54048,0.12924,0.10696,0.46254,0.5256,0.43472,0.26238,0.25194,0.4998,0.10771,0.44243,0.32379,0.348,0.24563,0.41919,0.18236,0.51133,0.16193,0.32071,0.23174,0.62963,0.26206,0.11826,0.23985,0.40463,0.86163,0.27836,0.76094,0.39235,0.10501,0.23858,0.42783,0.55783,0.56183,0.55735,0.10126,0.1104,0.4325,0.51617
|
22
|
+
0.22268,0.3632,0.30136,0.3202,0.081343,0.27405,0.40148,0.28643,0.34677,0.32046,0.27778,0.33586,0.12597,0.29415,0.1721,0.32934,0.29725,0.16575,0.24051,0.35611,0.3285,1,0.35406,0.48329,0.23097,0.46173,0.41911,0.37042,0.31481,0.45085,0.090588,0.051445,0.33293,0.38341,0.26067,0.33628,0.29566,0.32707,0.084653,0.25933,0.38666,0.27861,0.32134,0.31602,0.2514,0.33718,0.12145,0.29443,0.16286,0.32247,0.30601,0.14193,0.30059,0.35826,0.31749,0.47658,0.33867,0.46128,0.21523,0.41004,0.43261,0.35893,0.31122,0.42134,0.073259,0.047203,0.32405,0.38373
|
23
|
+
0.42768,0.39376,0.31193,0.50276,0.10055,0.46495,0.32936,0.43329,0.1733,0.42535,0.25202,0.49481,0.1062,0.28963,0.19013,0.63469,0.48016,0.16176,0.35375,0.43852,0.80335,0.35406,1,0.32472,0.075329,0.42955,0.49975,0.66092,0.56771,0.6741,0.072217,0.08004,0.44589,0.58203,0.43738,0.33205,0.30234,0.48901,0.10284,0.45435,0.31297,0.39931,0.17238,0.41791,0.21794,0.50424,0.079999,0.25286,0.21094,0.63326,0.4293,0.098803,0.34627,0.41775,0.74769,0.3003,0.82215,0.33452,0.058171,0.31893,0.46008,0.62854,0.53463,0.66431,0.038403,0.074175,0.41705,0.56463
|
24
|
+
0.31851,0.26915,0.49931,0.43738,0.10538,0.4077,0.71669,0.32257,0.62281,0.37918,0.26435,0.48932,0.32892,0.50508,0.36567,0.35431,0.23132,0.17221,0.19711,0.47101,0.3878,0.48329,0.32472,1,0.33769,0.4686,0.56497,0.433,0.40622,0.37538,0.25932,0.11332,0.35571,0.31414,0.32371,0.26336,0.44463,0.43142,0.1084,0.38734,0.65018,0.32401,0.5747,0.37377,0.23988,0.47129,0.32365,0.50798,0.34284,0.3423,0.1541,0.16926,0.19926,0.46534,0.38482,0.4332,0.31842,0.83076,0.29623,0.40615,0.54013,0.41609,0.38614,0.32178,0.22294,0.1267,0.34443,0.3126
|
25
|
+
0.091322,0.16869,0.17053,0.10989,0.056426,0.11522,0.23136,0.07308,0.29312,0.13805,0.18674,0.13752,0.29701,0.21714,0.1531,0.11611,0.071823,0.096585,0.080393,0.15853,0.12662,0.23097,0.075329,0.33769,1,0.17088,0.33834,0.05728,0.16895,0.065911,0.13985,0.071952,0.1699,0.14282,0.095241,0.17036,0.12128,0.11336,0.056662,0.11063,0.19722,0.085469,0.26466,0.14003,0.15655,0.12959,0.24905,0.21545,0.12828,0.10796,0.019186,0.071666,0.076098,0.16191,0.12526,0.20921,0.080354,0.29705,0.32101,0.14268,0.29538,0.061128,0.15468,0.056978,0.1141,0.079204,0.16464,0.13371
|
26
|
+
0.28476,0.34982,0.61303,0.30757,0.10179,0.31759,0.58409,0.47114,0.27611,0.34594,0.40845,0.34501,0.069672,0.39066,0.17031,0.26983,0.52103,0.33789,0.42127,0.3731,0.30911,0.46173,0.42955,0.4686,0.17088,1,0.56355,0.47138,0.32195,0.63284,0.10417,0.03806,0.31485,0.4032,0.27029,0.33244,0.51127,0.31384,0.083119,0.27958,0.50895,0.37673,0.24293,0.32907,0.31566,0.33739,0.046898,0.3083,0.15249,0.27855,0.43766,0.25501,0.38179,0.36985,0.29166,0.40281,0.34664,0.41849,0.13209,0.66241,0.49311,0.41302,0.28643,0.49608,0.053673,0.0072531,0.29487,0.36634
|
27
|
+
0.46057,0.33262,0.63815,0.31273,0.11914,0.35805,0.62639,0.40313,0.4228,0.33177,0.38759,0.37159,0.34863,0.62418,0.25677,0.39838,0.51143,0.4304,0.49552,0.37057,0.47006,0.41911,0.49975,0.56497,0.33834,0.56355,1,0.36401,0.46447,0.48505,0.30304,0.15886,0.35732,0.36796,0.36719,0.27565,0.3967,0.31202,0.11074,0.34741,0.44316,0.34175,0.34598,0.34371,0.27331,0.36498,0.27575,0.48256,0.2316,0.38435,0.24205,0.28078,0.31516,0.36205,0.4633,0.30732,0.44965,0.45998,0.24485,0.33162,0.64466,0.33973,0.42836,0.35579,0.20091,0.14247,0.34884,0.34797
|
28
|
+
0.32986,0.36548,0.28618,0.63975,0.10022,0.6095,0.44626,0.54179,0.2029,0.58315,0.22986,0.63863,0.051631,0.25217,0.23127,0.48912,0.34973,0.097311,0.24765,0.55229,0.57735,0.37042,0.66092,0.433,0.05728,0.47138,0.36401,1,0.43601,0.67313,0.038993,0.055074,0.36184,0.47022,0.37559,0.32987,0.37009,0.63333,0.10527,0.58743,0.47236,0.533,0.21801,0.56925,0.22267,0.64351,0.046273,0.25352,0.26288,0.50121,0.41469,0.075177,0.32972,0.54087,0.54331,0.33609,0.63287,0.46565,0.05393,0.4148,0.38079,0.89575,0.42262,0.68254,0.021837,0.053412,0.34115,0.47822
|
29
|
+
0.60814,0.28467,0.3296,0.43478,0.10898,0.46864,0.40655,0.37918,0.27492,0.41028,0.25744,0.45005,0.2167,0.47206,0.23553,0.46896,0.41804,0.22299,0.38459,0.36688,0.59448,0.31481,0.56771,0.40622,0.16895,0.32195,0.46447,0.43601,1,0.48001,0.1719,0.16271,0.5263,0.4784,0.55275,0.25352,0.28725,0.42152,0.11363,0.45468,0.37135,0.36072,0.26064,0.40614,0.22939,0.45066,0.19351,0.43052,0.24386,0.46538,0.29614,0.18439,0.32785,0.34737,0.57129,0.27527,0.54245,0.40434,0.14829,0.25806,0.43396,0.4331,0.72242,0.45062,0.13805,0.14845,0.45416,0.45222
|
30
|
+
0.41163,0.41194,0.42408,0.40721,0.10513,0.42423,0.48935,0.55758,0.17437,0.37735,0.34013,0.43107,0.020085,0.39516,0.16733,0.44205,0.55825,0.25386,0.43624,0.409,0.54048,0.45085,0.6741,0.37538,0.065911,0.63284,0.48505,0.67313,0.48001,1,0.056228,0.055362,0.41195,0.56755,0.4106,0.36936,0.42797,0.40333,0.099262,0.38939,0.45405,0.48596,0.16728,0.35707,0.30147,0.43231,0.0074564,0.32979,0.17257,0.46317,0.55573,0.21064,0.4863,0.39412,0.4856,0.40201,0.58806,0.36976,0.059077,0.51341,0.48333,0.61591,0.44199,0.77609,0.029638,0.042617,0.37927,0.54382
|
31
|
+
0.2006,0.013687,0.24888,0.072172,0.046457,0.12706,0.29057,0.12146,0.22453,0.10822,0.1308,0.099136,0.26157,0.3615,0.10917,0.096727,0.11041,0.21359,0.18004,0.084593,0.12924,0.090588,0.072217,0.25932,0.13985,0.10417,0.30304,0.038993,0.1719,0.056228,1,0.10985,0.090561,0.045764,0.12564,0.0023828,0.096305,0.068842,0.043428,0.12383,0.16758,0.10031,0.16906,0.11512,0.079224,0.093488,0.20222,0.2705,0.092359,0.084022,-0.042646,0.15147,0.056544,0.081313,0.13534,0.047843,0.073069,0.19299,0.097465,0.0072041,0.19088,0.040796,0.14255,0.0037007,0.23944,0.10579,0.087776,0.037243
|
32
|
+
0.15553,0.027148,0.11405,0.065841,0.079868,0.12305,0.14601,0.12731,0.10235,0.084603,0.084834,0.079794,0.12782,0.22529,0.081971,0.077496,0.086383,0.13177,0.12362,0.058659,0.10696,0.051445,0.08004,0.11332,0.071952,0.03806,0.15886,0.055074,0.16271,0.055362,0.10985,1,0.071066,0.067234,0.11549,0.019993,0.056355,0.065633,0.045449,0.11606,0.099944,0.10454,0.083866,0.087764,0.048575,0.077907,0.1105,0.1824,0.075241,0.070516,0.0029754,0.092478,0.057483,0.056636,0.10661,0.029904,0.076822,0.096803,0.05554,-0.001148,0.11446,0.056222,0.13256,0.034428,0.093789,0.096983,0.06274,0.054282
|
33
|
+
0.29537,0.30071,0.2443,0.35856,0.079204,0.31396,0.2989,0.25451,0.2441,0.33541,0.22329,0.38042,0.13401,0.25837,0.18033,0.37151,0.29278,0.13765,0.2391,0.38545,0.46254,0.33293,0.44589,0.35571,0.1699,0.31485,0.35732,0.36184,0.5263,0.41195,0.090561,0.071066,1,0.45435,0.31951,0.28449,0.26098,0.35621,0.082994,0.30089,0.30919,0.25417,0.24433,0.32316,0.22316,0.37908,0.13091,0.26676,0.18253,0.37651,0.28381,0.14652,0.27676,0.37716,0.44118,0.31273,0.43031,0.36393,0.16116,0.29596,0.38615,0.3562,0.47196,0.41554,0.0799,0.068433,0.48414,0.42396
|
34
|
+
0.29326,0.41797,0.19747,0.40199,0.095449,0.35682,0.24494,0.31594,0.18067,0.35014,0.29578,0.4068,0.078577,0.21835,0.1688,0.42353,0.42549,0.12263,0.32128,0.39091,0.5256,0.38341,0.58203,0.31414,0.14282,0.4032,0.36796,0.47022,0.4784,0.56755,0.045764,0.067234,0.45435,1,0.34549,0.38474,0.23474,0.39909,0.093501,0.3407,0.26869,0.30608,0.18495,0.34023,0.2547,0.41121,0.067145,0.21286,0.17511,0.445,0.42194,0.089243,0.37512,0.38113,0.49025,0.35971,0.5398,0.32867,0.13813,0.34149,0.40536,0.45862,0.43591,0.57483,0.024085,0.057463,0.3996,0.56391
|
35
|
+
0.54877,0.24217,0.25882,0.37637,0.077365,0.39396,0.33393,0.30892,0.19028,0.34995,0.20319,0.38442,0.12687,0.37495,0.17079,0.36225,0.38224,0.17788,0.35492,0.30804,0.43472,0.26067,0.43738,0.32371,0.095241,0.27029,0.36719,0.37559,0.55275,0.4106,0.12564,0.11549,0.31951,0.34549,1,0.22627,0.30077,0.37287,0.094746,0.42213,0.39236,0.38044,0.18623,0.36857,0.21774,0.39536,0.12598,0.48444,0.18582,0.36757,0.36868,0.20529,0.42903,0.29873,0.45061,0.23318,0.45969,0.3495,0.094457,0.2704,0.41594,0.38987,0.61645,0.43694,0.11861,0.13334,0.31745,0.37578
|
36
|
+
0.14728,0.38811,0.10868,0.29156,0.054749,0.22338,0.1511,0.17973,0.14999,0.26121,0.2076,0.29053,0.029452,0.091372,0.10776,0.24237,0.27513,0.020196,0.18468,0.31412,0.26238,0.33628,0.33205,0.26336,0.17036,0.33244,0.27565,0.32987,0.25352,0.36936,0.0023828,0.019993,0.28449,0.38474,0.22627,1,0.19396,0.29464,0.060176,0.2186,0.21641,0.21416,0.1646,0.25567,0.21373,0.29547,0.037358,0.1386,0.1161,0.27155,0.35631,0.033585,0.30987,0.31255,0.25208,0.35614,0.33268,0.28558,0.18886,0.34948,0.38246,0.33373,0.25947,0.4116,-0.0051495,0.018779,0.2783,0.39507
|
37
|
+
0.25458,0.16148,0.57516,0.21235,0.086293,0.32536,0.59612,0.39302,0.28367,0.29836,0.24319,0.29739,0.097347,0.38693,0.21892,0.21748,0.31287,0.23328,0.24198,0.30877,0.25194,0.29566,0.30234,0.44463,0.12128,0.51127,0.3967,0.37009,0.28725,0.42797,0.096305,0.056355,0.26098,0.23474,0.30077,0.19396,1,0.22355,0.10694,0.31693,0.77175,0.44904,0.31913,0.26707,0.36605,0.28575,0.16649,0.55219,0.2304,0.20819,0.43203,0.47565,0.40527,0.3105,0.25838,0.32445,0.29558,0.52477,0.14003,0.67792,0.59384,0.36727,0.30256,0.42384,0.17823,0.082834,0.25501,0.25813
|
38
|
+
0.32333,0.31874,0.18449,0.85907,0.072456,0.50244,0.31638,0.28689,0.25399,0.56581,0.18476,0.77545,0.096713,0.21492,0.20916,0.41901,0.27188,0.071442,0.20775,0.73491,0.4998,0.32707,0.48901,0.43142,0.11336,0.31384,0.31202,0.63333,0.42152,0.40333,0.068842,0.065633,0.35621,0.39909,0.37287,0.29464,0.22355,1,0.082686,0.51236,0.34811,0.31822,0.26687,0.57958,0.17838,0.80189,0.087467,0.24101,0.24079,0.4396,0.28679,0.060789,0.25142,0.74696,0.50957,0.30268,0.51796,0.47442,0.10781,0.29643,0.33617,0.641,0.418,0.45669,0.046122,0.067772,0.34865,0.41993
|
39
|
+
0.086524,0.061011,0.093974,0.080323,0.052613,0.12933,0.12388,0.12538,0.086681,0.095466,0.072496,0.094351,0.073586,0.11515,0.081339,0.092252,0.066479,0.07212,0.068027,0.080112,0.10771,0.084653,0.10284,0.1084,0.056662,0.083119,0.11074,0.10527,0.11363,0.099262,0.043428,0.045449,0.082994,0.093501,0.094746,0.060176,0.10694,0.082686,1,0.15175,0.13262,0.13782,0.090034,0.094574,0.095519,0.094778,0.080306,0.13537,0.11118,0.089707,0.072426,0.088065,0.085639,0.079515,0.11116,0.079486,0.10608,0.11336,0.055738,0.090848,0.11969,0.10526,0.1199,0.1012,0.0501,0.10505,0.083868,0.10132
|
40
|
+
0.37962,0.23452,0.27103,0.50639,0.11467,0.68915,0.42063,0.44812,0.24453,0.55603,0.19896,0.56441,0.17359,0.33882,0.28618,0.37676,0.27271,0.17366,0.24778,0.44537,0.44243,0.25933,0.45435,0.38734,0.11063,0.27958,0.34741,0.58743,0.45468,0.38939,0.12383,0.11606,0.30089,0.3407,0.42213,0.2186,0.31693,0.51236,0.15175,1,0.45521,0.52016,0.25243,0.59644,0.2132,0.58803,0.1703,0.38154,0.35968,0.38422,0.27653,0.1617,0.28863,0.44688,0.45622,0.22805,0.48391,0.42265,0.098139,0.26423,0.34962,0.61147,0.46851,0.43296,0.11049,0.13887,0.29381,0.36531
|
41
|
+
0.32989,0.18775,0.57072,0.33184,0.10763,0.4511,0.76292,0.45955,0.43229,0.42227,0.25623,0.4178,0.18694,0.52458,0.29953,0.28269,0.27053,0.24678,0.22269,0.39365,0.32379,0.38666,0.31297,0.65018,0.19722,0.50895,0.44316,0.47236,0.37135,0.45405,0.16758,0.099944,0.30919,0.26869,0.39236,0.21641,0.77175,0.34811,0.13262,0.45521,1,0.54556,0.46602,0.40785,0.37066,0.41053,0.25933,0.71134,0.3163,0.27043,0.36999,0.47719,0.37457,0.40032,0.33254,0.41384,0.3175,0.73561,0.21123,0.67068,0.62798,0.49004,0.39021,0.46546,0.24637,0.13111,0.30322,0.29643
|
42
|
+
0.33094,0.21753,0.34417,0.31031,0.11318,0.47654,0.45448,0.54581,0.20125,0.41363,0.23261,0.35504,0.11347,0.38873,0.20045,0.29849,0.29444,0.23371,0.26698,0.30184,0.348,0.27861,0.39931,0.32401,0.085469,0.37673,0.34175,0.533,0.36072,0.48596,0.10031,0.10454,0.25417,0.30608,0.38044,0.21416,0.44904,0.31822,0.13782,0.52016,0.54556,1,0.21294,0.4227,0.28676,0.36235,0.12805,0.48996,0.22698,0.30301,0.36922,0.29798,0.37114,0.30243,0.35998,0.26949,0.4128,0.36467,0.08723,0.41748,0.4044,0.55719,0.39058,0.52141,0.11817,0.13322,0.25166,0.33583
|
43
|
+
0.17627,0.15578,0.30023,0.25741,0.074662,0.25845,0.44986,0.18606,0.46846,0.26491,0.16155,0.30758,0.26268,0.32277,0.26095,0.21213,0.086589,0.11457,0.084356,0.30497,0.24563,0.32134,0.17238,0.5747,0.26466,0.24293,0.34598,0.21801,0.26064,0.16728,0.16906,0.083866,0.24433,0.18495,0.18623,0.1646,0.31913,0.26687,0.090034,0.25243,0.46602,0.21294,1,0.25697,0.18842,0.31471,0.28835,0.37955,0.26829,0.20411,0.06784,0.16385,0.11073,0.31101,0.24679,0.33218,0.18159,0.59917,0.25091,0.27685,0.38353,0.22586,0.25231,0.16726,0.18111,0.10429,0.24094,0.19248
|
44
|
+
0.3457,0.26828,0.24929,0.54917,0.081905,0.57236,0.37935,0.37277,0.26307,0.8896,0.21429,0.55771,0.14529,0.30131,0.1878,0.35463,0.27624,0.17142,0.26112,0.53532,0.41919,0.31602,0.41791,0.37377,0.14003,0.32907,0.34371,0.56925,0.40614,0.35707,0.11512,0.087764,0.32316,0.34023,0.36857,0.25567,0.26707,0.57958,0.094574,0.59644,0.40785,0.4227,0.25697,1,0.21823,0.57959,0.13182,0.32593,0.2134,0.36165,0.27832,0.15739,0.29109,0.56676,0.43584,0.29283,0.46085,0.39293,0.13096,0.32278,0.34878,0.60971,0.40553,0.41623,0.096296,0.082743,0.3169,0.36701
|
45
|
+
0.17844,0.18712,0.26566,0.17096,0.074308,0.21821,0.29213,0.25515,0.17693,0.233,0.28502,0.21115,0.1065,0.23914,0.12849,0.16617,0.27017,0.21338,0.26014,0.23332,0.18236,0.2514,0.21794,0.23988,0.15655,0.31566,0.27331,0.22267,0.22939,0.30147,0.079224,0.048575,0.22316,0.2547,0.21774,0.21373,0.36605,0.17838,0.095519,0.2132,0.37066,0.28676,0.18842,0.21823,1,0.20559,0.20799,0.33195,0.13107,0.16778,0.34566,0.3699,0.40222,0.23389,0.18469,0.26327,0.21521,0.2709,0.16966,0.41221,0.38891,0.22212,0.24432,0.30747,0.13413,0.080319,0.22046,0.28623
|
46
|
+
0.35117,0.31842,0.24808,0.79109,0.084114,0.56851,0.38383,0.33172,0.28891,0.56217,0.20972,0.82142,0.12859,0.27183,0.25813,0.42748,0.3013,0.11354,0.24254,0.74971,0.51133,0.33718,0.50424,0.47129,0.12959,0.33739,0.36498,0.64351,0.45066,0.43231,0.093488,0.077907,0.37908,0.41121,0.39536,0.29547,0.28575,0.80189,0.094778,0.58803,0.41053,0.36235,0.31471,0.57959,0.20559,1,0.12034,0.29646,0.31142,0.44475,0.30207,0.10856,0.27953,0.7621,0.51884,0.30546,0.52573,0.51191,0.11952,0.31494,0.38184,0.65104,0.44527,0.47445,0.071904,0.083637,0.37039,0.43227
|
47
|
+
0.13901,0.034327,0.2053,0.085055,0.066725,0.16699,0.28553,0.11497,0.3001,0.13301,0.11917,0.13023,0.35235,0.2889,0.19228,0.12847,0.019193,0.15479,0.066459,0.11467,0.16193,0.12145,0.079999,0.32365,0.24905,0.046898,0.27575,0.046273,0.19351,0.0074564,0.20222,0.1105,0.13091,0.067145,0.12598,0.037358,0.16649,0.087467,0.080306,0.1703,0.25933,0.12805,0.28835,0.13182,0.20799,0.12034,1,0.32031,0.17881,0.10903,-0.051329,0.17201,0.041377,0.11537,0.16742,0.10553,0.089932,0.30923,0.26358,0.056786,0.2629,0.050132,0.19101,-0.00039713,0.23178,0.14165,0.12692,0.068389
|
48
|
+
0.44736,0.12444,0.48081,0.23236,0.10515,0.36138,0.61891,0.37372,0.38276,0.32132,0.23872,0.29979,0.27352,0.65977,0.23831,0.25886,0.27345,0.33171,0.31054,0.26181,0.32071,0.29443,0.25286,0.50798,0.21545,0.3083,0.48256,0.25352,0.43052,0.32979,0.2705,0.1824,0.26676,0.21286,0.48444,0.1386,0.55219,0.24101,0.13537,0.38154,0.71134,0.48996,0.37955,0.32593,0.33195,0.29646,0.32031,1,0.24279,0.24303,0.2558,0.52556,0.38766,0.26285,0.33774,0.29602,0.27549,0.54093,0.21997,0.42369,0.60354,0.27234,0.47592,0.32282,0.32812,0.22622,0.26702,0.24368
|
49
|
+
0.16562,0.11995,0.19786,0.24077,0.074923,0.32574,0.29719,0.20891,0.23854,0.21343,0.11743,0.29826,0.16923,0.20903,0.27659,0.20714,0.1061,0.091683,0.096514,0.24072,0.23174,0.16286,0.21094,0.34284,0.12828,0.15249,0.2316,0.26288,0.24386,0.17257,0.092359,0.075241,0.18253,0.17511,0.18582,0.1161,0.2304,0.24079,0.11118,0.35968,0.3163,0.22698,0.26829,0.2134,0.13107,0.31142,0.17881,0.24279,1,0.20489,0.097959,0.099602,0.11705,0.23779,0.23795,0.14495,0.2174,0.36632,0.11342,0.15389,0.23524,0.26538,0.24816,0.17934,0.091636,0.094891,0.17913,0.18346
|
50
|
+
0.33164,0.31121,0.19222,0.4448,0.076447,0.37516,0.26352,0.28168,0.19822,0.35367,0.17783,0.42962,0.12501,0.23144,0.18318,0.64244,0.29367,0.10504,0.22828,0.36047,0.62963,0.32247,0.63326,0.3423,0.10796,0.27855,0.38435,0.50121,0.46538,0.46317,0.084022,0.070516,0.37651,0.445,0.36757,0.27155,0.20819,0.4396,0.089707,0.38422,0.27043,0.30301,0.20411,0.36165,0.16778,0.44475,0.10903,0.24303,0.20489,1,0.28204,0.071695,0.24913,0.34859,0.65074,0.31208,0.6635,0.36322,0.095155,0.237,0.38797,0.52177,0.46939,0.51297,0.058478,0.079616,0.36991,0.46809
|
51
|
+
0.23074,0.34172,0.20672,0.28334,0.05771,0.27678,0.20002,0.30125,0.033907,0.2946,0.26115,0.29533,-0.085507,0.12392,0.071913,0.25031,0.47237,0.10764,0.3379,0.30848,0.26206,0.30601,0.4293,0.1541,0.019186,0.43766,0.24205,0.41469,0.29614,0.55573,-0.042646,0.0029754,0.28381,0.42194,0.36868,0.35631,0.43203,0.28679,0.072426,0.27653,0.36999,0.36922,0.06784,0.27832,0.34566,0.30207,-0.051329,0.2558,0.097959,0.28204,1,0.24376,0.62216,0.3051,0.26344,0.33394,0.4418,0.22831,0.052753,0.55408,0.45425,0.42237,0.33673,0.62345,-0.011322,0.010659,0.27928,0.47338
|
52
|
+
0.22735,0.007078,0.4036,0.051116,0.065842,0.16225,0.40427,0.2659,0.16505,0.17261,0.22348,0.11701,0.12033,0.42081,0.097766,0.091279,0.22652,0.41934,0.29787,0.12642,0.11826,0.14193,0.098803,0.16926,0.071666,0.25501,0.28078,0.075177,0.18439,0.21064,0.15147,0.092478,0.14652,0.089243,0.20529,0.033585,0.47565,0.060789,0.088065,0.1617,0.47719,0.29798,0.16385,0.15739,0.3699,0.10856,0.17201,0.52556,0.099602,0.071695,0.24376,1,0.37621,0.12999,0.13021,0.15317,0.096417,0.20167,0.08638,0.39406,0.40257,0.075414,0.19462,0.17056,0.24374,0.11675,0.14532,0.11145
|
53
|
+
0.31261,0.29314,0.24926,0.24494,0.071891,0.28951,0.25349,0.30582,0.094849,0.30289,0.31449,0.27748,0.013485,0.26323,0.10327,0.23002,0.48509,0.22933,0.47127,0.29206,0.23985,0.30059,0.34627,0.19926,0.076098,0.38179,0.31516,0.32972,0.32785,0.4863,0.056544,0.057483,0.27676,0.37512,0.42903,0.30987,0.40527,0.25142,0.085639,0.28863,0.37457,0.37114,0.11073,0.29109,0.40222,0.27953,0.041377,0.38766,0.11705,0.24913,0.62216,0.37621,1,0.29152,0.24456,0.30652,0.35452,0.25192,0.097536,0.46925,0.48586,0.33456,0.36856,0.50539,0.091655,0.072494,0.27223,0.40902
|
54
|
+
0.25644,0.32295,0.27281,0.71155,0.076565,0.45103,0.37089,0.28551,0.30212,0.56312,0.23189,0.73835,0.1182,0.23788,0.22075,0.33354,0.29356,0.1195,0.23874,0.85572,0.40463,0.35826,0.41775,0.46534,0.16191,0.36985,0.36205,0.54087,0.34737,0.39412,0.081313,0.056636,0.37716,0.38113,0.29873,0.31255,0.3105,0.74696,0.079515,0.44688,0.40032,0.30243,0.31101,0.56676,0.23389,0.7621,0.11537,0.26285,0.23779,0.34859,0.3051,0.12999,0.29152,1,0.40651,0.33378,0.42425,0.49402,0.15404,0.35693,0.39244,0.5383,0.33729,0.41928,0.067127,0.05619,0.37224,0.39561
|
55
|
+
0.42687,0.30149,0.27628,0.51601,0.094171,0.43563,0.34369,0.33655,0.25405,0.42213,0.19548,0.50088,0.19236,0.32528,0.21372,0.63923,0.31961,0.16004,0.26484,0.42101,0.86163,0.31749,0.74769,0.38482,0.12526,0.29166,0.4633,0.54331,0.57129,0.4856,0.13534,0.10661,0.44118,0.49025,0.45061,0.25208,0.25838,0.50957,0.11116,0.45622,0.33254,0.35998,0.24679,0.43584,0.18469,0.51884,0.16742,0.33774,0.23795,0.65074,0.26344,0.13021,0.24456,0.40651,1,0.26747,0.81156,0.39086,0.10172,0.23796,0.42846,0.57216,0.58647,0.56696,0.10585,0.1182,0.44308,0.52968
|
56
|
+
0.15956,0.32955,0.21259,0.29163,0.065261,0.23573,0.32447,0.2251,0.29728,0.30509,0.22512,0.3035,0.070779,0.2129,0.14528,0.26731,0.22843,0.078294,0.15578,0.32872,0.27836,0.47658,0.3003,0.4332,0.20921,0.40281,0.30732,0.33609,0.27527,0.40201,0.047843,0.029904,0.31273,0.35971,0.23318,0.35614,0.32445,0.30268,0.079486,0.22805,0.41384,0.26949,0.33218,0.29283,0.26327,0.30546,0.10553,0.29602,0.14495,0.31208,0.33394,0.15317,0.30652,0.33378,0.26747,1,0.30499,0.47205,0.225,0.47301,0.45153,0.34433,0.2796,0.43173,0.069641,0.037347,0.3036,0.37452
|
57
|
+
0.39175,0.37831,0.23148,0.52565,0.087733,0.46388,0.28088,0.36973,0.1752,0.44706,0.21198,0.50608,0.10841,0.24786,0.18306,0.62774,0.39703,0.11887,0.292,0.43802,0.76094,0.33867,0.82215,0.31842,0.080354,0.34664,0.44965,0.63287,0.54245,0.58806,0.073069,0.076822,0.43031,0.5398,0.45969,0.33268,0.29558,0.51796,0.10608,0.48391,0.3175,0.4128,0.18159,0.46085,0.21521,0.52573,0.089932,0.27549,0.2174,0.6635,0.4418,0.096417,0.35452,0.42425,0.81156,0.30499,1,0.34616,0.071421,0.32398,0.47508,0.66873,0.56763,0.69386,0.046458,0.085679,0.4283,0.58612
|
58
|
+
0.28276,0.27468,0.40849,0.46198,0.096223,0.42833,0.64282,0.29743,0.55013,0.4058,0.22252,0.51221,0.25953,0.41763,0.35586,0.35841,0.19386,0.091086,0.13767,0.48849,0.39235,0.46128,0.33452,0.83076,0.29705,0.41849,0.45998,0.46565,0.40434,0.36976,0.19299,0.096803,0.36393,0.32867,0.3495,0.28558,0.52477,0.47442,0.11336,0.42265,0.73561,0.36467,0.59917,0.39293,0.2709,0.51191,0.30923,0.54093,0.36632,0.36322,0.22831,0.20167,0.25192,0.49402,0.39086,0.47205,0.34616,1,0.29535,0.49565,0.58229,0.47694,0.40439,0.38284,0.22133,0.12591,0.35381,0.34307
|
59
|
+
0.064623,0.15488,0.11013,0.10224,0.045787,0.097661,0.17749,0.044834,0.25095,0.13519,0.14503,0.12676,0.20123,0.15494,0.12744,0.10022,0.040812,0.036529,0.037617,0.14955,0.10501,0.21523,0.058171,0.29623,0.32101,0.13209,0.24485,0.05393,0.14829,0.059077,0.097465,0.05554,0.16116,0.13813,0.094457,0.18886,0.14003,0.10781,0.055738,0.098139,0.21123,0.08723,0.25091,0.13096,0.16966,0.11952,0.26358,0.21997,0.11342,0.095155,0.052753,0.08638,0.097536,0.15404,0.10172,0.225,0.071421,0.29535,1,0.18769,0.30856,0.061819,0.14857,0.078201,0.11542,0.07366,0.15726,0.14077
|
60
|
+
0.17248,0.30349,0.40172,0.28175,0.066822,0.27121,0.44805,0.32954,0.23,0.35092,0.27351,0.31895,-0.0275,0.22868,0.13858,0.22194,0.32121,0.11703,0.19542,0.35189,0.23858,0.41004,0.31893,0.40615,0.14268,0.66241,0.33162,0.4148,0.25806,0.51341,0.0072041,-0.001148,0.29596,0.34149,0.2704,0.34948,0.67792,0.29643,0.090848,0.26423,0.67068,0.41748,0.27685,0.32278,0.41221,0.31494,0.056786,0.42369,0.15389,0.237,0.55408,0.39406,0.46925,0.35693,0.23796,0.47301,0.32398,0.49565,0.18769,1,0.6114,0.42001,0.28799,0.55967,0.10664,0.017479,0.29182,0.38277
|
61
|
+
0.34142,0.3487,0.45342,0.33191,0.096362,0.34878,0.51188,0.3154,0.37088,0.36184,0.31115,0.38741,0.21109,0.45896,0.23305,0.37411,0.39875,0.22853,0.32298,0.39554,0.42783,0.43261,0.46008,0.54013,0.29538,0.49311,0.64466,0.38079,0.43396,0.48333,0.19088,0.11446,0.38615,0.40536,0.41594,0.38246,0.59384,0.33617,0.11969,0.34962,0.62798,0.4044,0.38353,0.34878,0.38891,0.38184,0.2629,0.60354,0.23524,0.38797,0.45425,0.40257,0.48586,0.39244,0.42846,0.45153,0.47508,0.58229,0.30856,0.6114,1,0.39169,0.44311,0.50715,0.2397,0.14264,0.37462,0.42971
|
62
|
+
0.32041,0.35805,0.23862,0.63176,0.092618,0.59648,0.39796,0.49286,0.19873,0.59239,0.20792,0.62556,0.051835,0.23097,0.21824,0.4897,0.32446,0.074602,0.22982,0.53681,0.55783,0.35893,0.62854,0.41609,0.061128,0.41302,0.33973,0.89575,0.4331,0.61591,0.040796,0.056222,0.3562,0.45862,0.38987,0.33373,0.36727,0.641,0.10526,0.61147,0.49004,0.55719,0.22586,0.60971,0.22212,0.65104,0.050132,0.27234,0.26538,0.52177,0.42237,0.075414,0.33456,0.5383,0.57216,0.34433,0.66873,0.47694,0.061819,0.42001,0.39169,1,0.44314,0.71852,0.027244,0.058244,0.3491,0.4941
|
63
|
+
0.53208,0.28174,0.2831,0.42225,0.09703,0.43808,0.36001,0.33261,0.25467,0.38633,0.22455,0.43216,0.19494,0.38408,0.22293,0.4626,0.36401,0.18199,0.32681,0.34813,0.56183,0.31122,0.53463,0.38614,0.15468,0.28643,0.42836,0.42262,0.72242,0.44199,0.14255,0.13256,0.47196,0.43591,0.61645,0.25947,0.30256,0.418,0.1199,0.46851,0.39021,0.39058,0.25231,0.40553,0.24432,0.44527,0.19101,0.47592,0.24816,0.46939,0.33673,0.19462,0.36856,0.33729,0.58647,0.2796,0.56763,0.40439,0.14857,0.28799,0.44311,0.44314,1,0.48877,0.13204,0.16581,0.49747,0.49116
|
64
|
+
0.31044,0.43035,0.23509,0.45501,0.08678,0.42295,0.31707,0.43895,0.14047,0.41877,0.25889,0.45992,-0.016161,0.22889,0.14833,0.4701,0.43329,0.10178,0.29565,0.42537,0.55735,0.42134,0.66431,0.32178,0.056978,0.49608,0.35579,0.68254,0.45062,0.77609,0.0037007,0.034428,0.41554,0.57483,0.43694,0.4116,0.42384,0.45669,0.1012,0.43296,0.46546,0.52141,0.16726,0.41623,0.30747,0.47445,-0.00039713,0.32282,0.17934,0.51297,0.62345,0.17056,0.50539,0.41928,0.56696,0.43173,0.69386,0.38284,0.078201,0.55967,0.50715,0.71852,0.48877,1,0.0085923,0.039975,0.41446,0.62563
|
65
|
+
0.14412,-0.014059,0.19557,0.045598,0.039206,0.10926,0.25067,0.095199,0.19414,0.099088,0.085721,0.077996,0.19109,0.28896,0.098242,0.074307,0.050296,0.14824,0.10098,0.068144,0.10126,0.073259,0.038403,0.22294,0.1141,0.053673,0.20091,0.021837,0.13805,0.029638,0.23944,0.093789,0.0799,0.024085,0.11861,-0.0051495,0.17823,0.046122,0.0501,0.11049,0.24637,0.11817,0.18111,0.096296,0.13413,0.071904,0.23178,0.32812,0.091636,0.058478,-0.011322,0.24374,0.091655,0.067127,0.10585,0.069641,0.046458,0.22133,0.11542,0.10664,0.2397,0.027244,0.13204,0.0085923,1,0.11137,0.077451,0.027664
|
66
|
+
0.13927,0.023059,0.096964,0.068334,0.043452,0.12242,0.1379,0.094296,0.11,0.078155,0.047698,0.0842,0.13297,0.19328,0.09287,0.085223,0.050317,0.093552,0.081872,0.057787,0.1104,0.047203,0.074175,0.1267,0.079204,0.0072531,0.14247,0.053412,0.14845,0.042617,0.10579,0.096983,0.068433,0.057463,0.13334,0.018779,0.082834,0.067772,0.10505,0.13887,0.13111,0.13322,0.10429,0.082743,0.080319,0.083637,0.14165,0.22622,0.094891,0.079616,0.010659,0.11675,0.072494,0.05619,0.1182,0.037347,0.085679,0.12591,0.07366,0.017479,0.14264,0.058244,0.16581,0.039975,0.11137,1,0.068183,0.067582
|
67
|
+
0.26837,0.28959,0.23529,0.34605,0.073929,0.28954,0.28344,0.23068,0.23868,0.31681,0.21206,0.36456,0.12922,0.23504,0.17024,0.35882,0.27504,0.13214,0.22853,0.37511,0.4325,0.32405,0.41705,0.34443,0.16464,0.29487,0.34884,0.34115,0.45416,0.37927,0.087776,0.06274,0.48414,0.3996,0.31745,0.2783,0.25501,0.34865,0.083868,0.29381,0.30322,0.25166,0.24094,0.3169,0.22046,0.37039,0.12692,0.26702,0.17913,0.36991,0.27928,0.14532,0.27223,0.37224,0.44308,0.3036,0.4283,0.35381,0.15726,0.29182,0.37462,0.3491,0.49747,0.41446,0.077451,0.068183,1,0.44552
|
68
|
+
0.28378,0.41842,0.17214,0.42051,0.084553,0.35783,0.23322,0.29199,0.17729,0.36654,0.25189,0.42037,0.067904,0.18765,0.16009,0.43566,0.37381,0.089835,0.27765,0.40219,0.51617,0.38373,0.56463,0.3126,0.13371,0.36634,0.34797,0.47822,0.45222,0.54382,0.037243,0.054282,0.42396,0.56391,0.37578,0.39507,0.25813,0.41993,0.10132,0.36531,0.29643,0.33583,0.19248,0.36701,0.28623,0.43227,0.068389,0.24368,0.18346,0.46809,0.47338,0.11145,0.40902,0.39561,0.52968,0.37452,0.58612,0.34307,0.14077,0.38277,0.42971,0.4941,0.49116,0.62563,0.027664,0.067582,0.44552,1
|
@@ -0,0 +1,68 @@
|
|
1
|
+
1,0.18248,0.39523,0.32371,0.088134,0.389,0.44796,0.37898,0.21274,0.33104,0.23303,0.34465,0.17985,0.54883,0.16055,0.33947,0.48449,0.30505,0.48886,0.27426,0.43353,0.22792,0.42974,0.32046,0.093145,0.27888,0.46443,0.32148,0.61334,0.40645,0.18835,0.15607,0.30193,0.2991,0.5622,0.14768,0.26192,0.31343,0.084769,0.37497,0.32936,0.33436,0.18155,0.339,0.1805,0.34589,0.14718,0.44123,0.16635,0.33146,0.23347,0.22823,0.30873,0.25454,0.42025,0.16002,0.39201,0.28627,0.069472,0.17348,0.35026,0.3125,0.539,0.30494,0.14883,0.14006,0.27288,0.28871
|
2
|
+
0.18248,1,0.13378,0.31596,0.063454,0.24603,0.16918,0.21266,0.15158,0.26468,0.21964,0.31596,0.035366,0.1175,0.11867,0.29355,0.31676,0.04052,0.22658,0.32673,0.32279,0.36979,0.40025,0.2761,0.16943,0.35937,0.33961,0.3669,0.29015,0.42123,0.0061126,0.027155,0.30055,0.42709,0.23967,0.39779,0.17866,0.31404,0.059292,0.23762,0.19767,0.22382,0.16053,0.26289,0.19127,0.31975,0.031344,0.12424,0.12707,0.31749,0.35008,0.0094468,0.30134,0.32135,0.30449,0.34177,0.38132,0.28435,0.15407,0.31006,0.35891,0.35896,0.28407,0.43753,-0.008768,0.018646,0.29159,0.42548
|
3
|
+
0.39523,0.13378,1,0.17999,0.11205,0.30618,0.76683,0.47055,0.36768,0.2655,0.34352,0.26317,0.24689,0.6275,0.23243,0.22082,0.45968,0.49434,0.44776,0.27846,0.27726,0.31425,0.31711,0.50805,0.17458,0.61767,0.64025,0.29366,0.33573,0.43446,0.22683,0.11573,0.25351,0.21029,0.2697,0.12055,0.58042,0.18372,0.09263,0.27729,0.57333,0.35448,0.30098,0.25574,0.26731,0.25003,0.20359,0.4871,0.20462,0.20451,0.22105,0.40267,0.2568,0.27371,0.27525,0.2234,0.23986,0.41423,0.11993,0.40768,0.46177,0.2474,0.29473,0.24723,0.19451,0.097931,0.2431,0.18854
|
4
|
+
0.32371,0.31596,0.17999,1,0.077179,0.50611,0.31546,0.28723,0.25102,0.5357,0.18635,0.78828,0.096526,0.21037,0.21551,0.43714,0.27309,0.067245,0.20975,0.74352,0.51744,0.32457,0.50327,0.44315,0.10515,0.3009,0.31039,0.64071,0.43438,0.40263,0.063273,0.068576,0.35763,0.40211,0.36722,0.29149,0.21853,0.85918,0.081167,0.50455,0.33864,0.31457,0.2667,0.54315,0.17226,0.79221,0.089881,0.22574,0.2452,0.45122,0.28132,0.053128,0.24002,0.71366,0.52019,0.29889,0.52295,0.47209,0.10003,0.27882,0.33668,0.63405,0.421,0.45315,0.053676,0.063091,0.3452,0.4219
|
5
|
+
0.088134,0.063454,0.11205,0.077179,1,0.14852,0.13666,0.14216,0.088212,0.091835,0.095652,0.093036,0.076212,0.13031,0.11561,0.086455,0.085986,0.09542,0.089686,0.083779,0.10415,0.086758,0.10639,0.11137,0.059315,0.10289,0.12429,0.10721,0.11701,0.10955,0.043349,0.083371,0.083789,0.10022,0.081526,0.059162,0.088763,0.076947,0.054192,0.1214,0.1137,0.11854,0.079011,0.088838,0.075322,0.090529,0.068176,0.1118,0.080283,0.082897,0.060752,0.071613,0.074115,0.082358,0.099861,0.071698,0.094366,0.10315,0.047884,0.070195,0.10348,0.098552,0.1044,0.092157,0.042027,0.046406,0.079811,0.090625
|
6
|
+
0.389,0.24603,0.30618,0.50611,0.14852,1,0.47139,0.51962,0.26111,0.59218,0.2303,0.58717,0.18581,0.37019,0.33756,0.38984,0.30061,0.19807,0.2716,0.46912,0.45157,0.28463,0.47434,0.41966,0.11834,0.31051,0.36494,0.61649,0.48051,0.42847,0.12103,0.12908,0.32421,0.36744,0.39469,0.22936,0.33165,0.50382,0.12972,0.70026,0.46196,0.48335,0.27073,0.58016,0.2183,0.57566,0.17831,0.36777,0.33394,0.39159,0.28239,0.16367,0.28613,0.45615,0.44496,0.24543,0.47135,0.44276,0.10414,0.26949,0.36392,0.60269,0.45193,0.43027,0.11721,0.12501,0.29926,0.36879
|
7
|
+
0.44796,0.16918,0.76683,0.31546,0.13666,0.47139,1,0.55783,0.50449,0.40271,0.34246,0.40554,0.31289,0.72998,0.32998,0.29872,0.38108,0.45282,0.37618,0.38209,0.3582,0.412,0.34345,0.72005,0.23358,0.58468,0.62883,0.45827,0.42069,0.49669,0.26983,0.15062,0.30904,0.26235,0.34673,0.16179,0.59978,0.32015,0.12386,0.43339,0.76449,0.46625,0.45107,0.38903,0.29616,0.39087,0.28943,0.62405,0.30628,0.28196,0.21471,0.40239,0.26267,0.37647,0.35206,0.3331,0.297,0.6468,0.18692,0.44799,0.52112,0.41213,0.37633,0.33073,0.25321,0.14298,0.29248,0.252
|
8
|
+
0.37898,0.21266,0.47055,0.28723,0.14216,0.51962,0.55783,1,0.21292,0.39152,0.30012,0.34191,0.146,0.49623,0.21747,0.29612,0.3819,0.36412,0.37352,0.29849,0.35814,0.2963,0.43686,0.33396,0.07421,0.46852,0.40917,0.54637,0.38775,0.56554,0.11273,0.13235,0.26249,0.32874,0.31341,0.18983,0.39739,0.28929,0.12513,0.45386,0.46431,0.55071,0.19453,0.37642,0.25437,0.33894,0.11902,0.38122,0.21457,0.29396,0.31342,0.27283,0.3154,0.29132,0.33924,0.2354,0.37645,0.31169,0.051143,0.33251,0.33374,0.49823,0.34373,0.45088,0.10114,0.098838,0.23926,0.30851
|
9
|
+
0.21274,0.15158,0.36768,0.25102,0.088212,0.26111,0.50449,0.21292,1,0.26843,0.20452,0.32121,0.31857,0.40033,0.28298,0.22221,0.12657,0.18441,0.13017,0.30509,0.26207,0.35017,0.18319,0.62305,0.29629,0.27394,0.42244,0.20722,0.27995,0.17847,0.20557,0.10375,0.24825,0.18834,0.19493,0.15312,0.28518,0.25571,0.086803,0.24929,0.43151,0.20673,0.46705,0.26592,0.17931,0.29111,0.30416,0.38377,0.24387,0.20998,0.038277,0.15742,0.091539,0.30528,0.26266,0.30135,0.18525,0.54872,0.25574,0.22744,0.37387,0.2042,0.26195,0.14718,0.19082,0.1113,0.2429,0.18676
|
10
|
+
0.33104,0.26468,0.2655,0.5357,0.091835,0.59218,0.40271,0.39152,0.26843,1,0.2248,0.56072,0.1444,0.30283,0.19846,0.35888,0.27566,0.17322,0.25539,0.55729,0.42206,0.32535,0.42284,0.38727,0.14525,0.33549,0.33842,0.57223,0.41127,0.3704,0.10655,0.087835,0.33635,0.34906,0.34376,0.26113,0.3089,0.55276,0.094067,0.55856,0.42679,0.41276,0.27254,0.89415,0.22911,0.55479,0.14092,0.32646,0.21634,0.35593,0.29096,0.174,0.29769,0.56597,0.42195,0.3049,0.44154,0.4109,0.13924,0.34308,0.37439,0.58345,0.38721,0.4106,0.10912,0.081136,0.31793,0.36614
|
11
|
+
0.23303,0.21964,0.34352,0.18635,0.095652,0.2303,0.34246,0.30012,0.20452,0.2248,1,0.22075,0.20727,0.31763,0.1393,0.18818,0.3677,0.32924,0.3806,0.24174,0.20895,0.28685,0.25985,0.27858,0.18575,0.41351,0.39104,0.23633,0.26379,0.34827,0.11899,0.085044,0.22621,0.30172,0.21203,0.21324,0.25129,0.18857,0.073845,0.20718,0.26227,0.23717,0.1668,0.21851,0.28291,0.21693,0.11476,0.2428,0.12262,0.18908,0.26912,0.22098,0.31907,0.23798,0.20299,0.23132,0.22288,0.23527,0.14542,0.27626,0.31551,0.21485,0.23263,0.26833,0.085356,0.048139,0.21713,0.26119
|
12
|
+
0.34465,0.31596,0.26317,0.78828,0.093036,0.58717,0.40554,0.34191,0.32121,0.56072,0.22075,1,0.13972,0.27991,0.29149,0.43351,0.30012,0.11918,0.24264,0.76911,0.51261,0.34464,0.5022,0.4994,0.13789,0.33884,0.3709,0.645,0.4578,0.4306,0.091105,0.085435,0.38502,0.41391,0.38106,0.29582,0.30264,0.77903,0.095678,0.56701,0.42519,0.36122,0.31877,0.55704,0.21217,0.82653,0.13814,0.29682,0.30594,0.44462,0.29523,0.11394,0.27186,0.74067,0.51184,0.31361,0.5115,0.52555,0.12703,0.31654,0.39417,0.63234,0.44026,0.4628,0.088563,0.081172,0.37197,0.42796
|
13
|
+
0.17985,0.035366,0.24689,0.096526,0.076212,0.18581,0.31289,0.146,0.31857,0.1444,0.20727,0.13972,1,0.34809,0.2,0.15028,0.064561,0.22559,0.11957,0.1216,0.19268,0.12421,0.11155,0.33237,0.29417,0.060811,0.34479,0.055884,0.22271,0.020383,0.24699,0.13235,0.13715,0.078376,0.13228,0.022071,0.10101,0.094955,0.070285,0.18293,0.19354,0.11938,0.26595,0.15006,0.10415,0.13168,0.36143,0.28091,0.17277,0.13089,-0.086618,0.11936,-0.00096095,0.11963,0.19984,0.067717,0.11482,0.2615,0.20048,-0.032285,0.21096,0.057028,0.20262,-0.015003,0.19297,0.13514,0.13267,0.069247
|
14
|
+
0.54883,0.1175,0.6275,0.21037,0.13031,0.37019,0.72998,0.49623,0.40033,0.30283,0.31763,0.27991,0.34809,1,0.24571,0.25711,0.4042,0.52814,0.46461,0.24904,0.33846,0.3014,0.29495,0.50592,0.22159,0.38413,0.62535,0.25543,0.47847,0.398,0.33581,0.22893,0.26534,0.22745,0.38327,0.095902,0.3902,0.20989,0.11413,0.34257,0.5195,0.39821,0.32619,0.30183,0.24163,0.27007,0.29843,0.66196,0.21367,0.24042,0.13279,0.4212,0.26308,0.23964,0.32525,0.21374,0.25506,0.41729,0.16363,0.22573,0.46381,0.23436,0.39372,0.23245,0.28166,0.20019,0.24287,0.20145
|
15
|
+
0.16055,0.11867,0.23243,0.21551,0.11561,0.33756,0.32998,0.21747,0.28298,0.19846,0.1393,0.29149,0.2,0.24571,1,0.19857,0.11336,0.12026,0.10376,0.23276,0.22241,0.17955,0.19655,0.37381,0.15399,0.1726,0.26302,0.23735,0.24361,0.17216,0.10294,0.085573,0.18801,0.17711,0.17231,0.11115,0.22234,0.2147,0.082047,0.29137,0.30847,0.20563,0.26692,0.19527,0.13033,0.26798,0.19938,0.24765,0.27892,0.19392,0.076379,0.10024,0.10053,0.22875,0.22124,0.1511,0.19059,0.36317,0.13336,0.14286,0.24254,0.2248,0.23246,0.15548,0.10221,0.094468,0.17564,0.16913
|
16
|
+
0.33947,0.29355,0.22082,0.43714,0.086455,0.38984,0.29872,0.29612,0.22221,0.35888,0.18818,0.43351,0.15028,0.25711,0.19857,1,0.28075,0.1238,0.22155,0.35581,0.6576,0.34155,0.64494,0.37147,0.118,0.27504,0.41144,0.50653,0.47828,0.45157,0.090714,0.084,0.37898,0.43809,0.36283,0.25452,0.23352,0.42706,0.090477,0.39522,0.30072,0.31389,0.22572,0.36444,0.17075,0.44626,0.13726,0.26471,0.22056,0.65412,0.26158,0.094868,0.2281,0.34221,0.64971,0.28162,0.64058,0.37838,0.10302,0.23084,0.3981,0.5086,0.47163,0.48385,0.082289,0.088552,0.36345,0.4491
|
17
|
+
0.48449,0.31676,0.45968,0.27309,0.085986,0.30061,0.38108,0.3819,0.12657,0.27566,0.3677,0.30012,0.064561,0.4042,0.11336,0.28075,1,0.35869,0.65151,0.30467,0.33364,0.30823,0.48266,0.24282,0.075297,0.52329,0.52475,0.3489,0.42488,0.56325,0.10814,0.087106,0.29515,0.42708,0.38996,0.28099,0.32455,0.26807,0.066214,0.2756,0.27748,0.30443,0.093853,0.27553,0.26948,0.29991,0.020145,0.28102,0.11182,0.29756,0.47687,0.2346,0.49339,0.29083,0.31877,0.23453,0.40102,0.20507,0.047244,0.32444,0.41289,0.32249,0.37038,0.43559,0.060168,0.052987,0.2776,0.3779
|
18
|
+
0.30505,0.04052,0.49434,0.067245,0.09542,0.19807,0.45282,0.36412,0.18441,0.17322,0.32924,0.11918,0.22559,0.52814,0.12026,0.1238,0.35869,1,0.47007,0.12395,0.15472,0.17078,0.16727,0.17897,0.098826,0.33226,0.43269,0.10164,0.23005,0.26086,0.20161,0.13441,0.14218,0.12924,0.19206,0.022451,0.23204,0.070799,0.073827,0.17995,0.24424,0.24021,0.11545,0.17809,0.20707,0.11524,0.15864,0.33981,0.092801,0.11411,0.11671,0.42237,0.23706,0.12217,0.16236,0.080576,0.12809,0.09483,0.043019,0.11454,0.23133,0.079084,0.19368,0.10872,0.15008,0.099978,0.13708,0.10199
|
19
|
+
0.48886,0.22658,0.44776,0.20975,0.089686,0.2716,0.37618,0.37352,0.13017,0.25539,0.3806,0.24264,0.11957,0.46461,0.10376,0.22155,0.65151,0.47007,1,0.25204,0.26493,0.24871,0.36005,0.19683,0.07718,0.42534,0.4956,0.25464,0.38852,0.44792,0.16056,0.11792,0.24257,0.32656,0.36122,0.19442,0.24688,0.20886,0.067521,0.24876,0.22117,0.27848,0.080217,0.26087,0.25241,0.24313,0.060568,0.30209,0.095163,0.23125,0.35093,0.29614,0.47774,0.24248,0.26048,0.16012,0.29935,0.1383,0.038003,0.201,0.32608,0.23561,0.33083,0.30668,0.096109,0.077589,0.23304,0.28577
|
20
|
+
0.27426,0.32673,0.27846,0.74352,0.083779,0.46912,0.38209,0.29849,0.30509,0.55729,0.24174,0.76911,0.1216,0.24904,0.23276,0.35581,0.30467,0.12395,0.25204,1,0.42993,0.36097,0.43649,0.48309,0.15997,0.36748,0.3677,0.55332,0.37315,0.40568,0.081996,0.065088,0.38679,0.39412,0.30819,0.3162,0.31531,0.73612,0.081556,0.44968,0.40145,0.3056,0.31604,0.53863,0.23292,0.75191,0.12148,0.26154,0.24765,0.36672,0.3048,0.12574,0.29004,0.85728,0.42493,0.33628,0.43461,0.50004,0.15225,0.34806,0.39959,0.53907,0.35305,0.42363,0.080283,0.05649,0.38103,0.40539
|
21
|
+
0.43353,0.32279,0.27726,0.51744,0.10415,0.45157,0.3582,0.35814,0.26207,0.42206,0.20895,0.51261,0.19268,0.33846,0.22241,0.6576,0.33364,0.15472,0.26493,0.42993,1,0.34059,0.80876,0.40403,0.13181,0.30737,0.47975,0.5869,0.60248,0.54766,0.12223,0.11119,0.46903,0.53854,0.43365,0.27327,0.26475,0.50365,0.10812,0.45485,0.34008,0.36061,0.26337,0.42335,0.1885,0.52606,0.17591,0.32396,0.24455,0.64076,0.27189,0.1184,0.23487,0.40872,0.86582,0.29256,0.76681,0.4134,0.11084,0.24442,0.45147,0.5705,0.57098,0.5668,0.1104,0.11264,0.43838,0.52985
|
22
|
+
0.22792,0.36979,0.31425,0.32457,0.086758,0.28463,0.412,0.2963,0.35017,0.32535,0.28685,0.34464,0.12421,0.3014,0.17955,0.34155,0.30823,0.17078,0.24871,0.36097,0.34059,1,0.36745,0.49076,0.2318,0.4681,0.42894,0.37861,0.3271,0.46182,0.082288,0.055142,0.33633,0.39746,0.266,0.34286,0.30581,0.33135,0.085789,0.26934,0.39254,0.28865,0.32465,0.32077,0.25615,0.3444,0.12229,0.29606,0.17267,0.33711,0.31396,0.14454,0.30652,0.36135,0.32957,0.48707,0.34958,0.46753,0.21558,0.4114,0.44184,0.36827,0.31992,0.43041,0.075244,0.048711,0.32912,0.39568
|
23
|
+
0.42974,0.40025,0.31711,0.50327,0.10639,0.47434,0.34345,0.43686,0.18319,0.42284,0.25985,0.5022,0.11155,0.29495,0.19655,0.64494,0.48266,0.16727,0.36005,0.43649,0.80876,0.36745,1,0.34138,0.078379,0.42962,0.5138,0.66772,0.57523,0.68182,0.067418,0.081789,0.45275,0.59352,0.43508,0.34291,0.31633,0.48769,0.10237,0.46496,0.32919,0.41025,0.18896,0.41944,0.22022,0.51358,0.090104,0.25729,0.2228,0.64414,0.43953,0.10454,0.34833,0.41581,0.75307,0.31423,0.82849,0.35514,0.06365,0.32352,0.4841,0.63709,0.54325,0.67347,0.049243,0.075624,0.42199,0.57691
|
24
|
+
0.32046,0.2761,0.50805,0.44315,0.11137,0.41966,0.72005,0.33396,0.62305,0.38727,0.27858,0.4994,0.33237,0.50592,0.37381,0.37147,0.24282,0.17897,0.19683,0.48309,0.40403,0.49076,0.34138,1,0.33962,0.47519,0.57131,0.44604,0.41813,0.3851,0.24032,0.11735,0.36387,0.32949,0.32989,0.27048,0.45524,0.439,0.10884,0.39884,0.65666,0.33625,0.5763,0.38325,0.24908,0.48266,0.32969,0.50748,0.3561,0.36143,0.16289,0.16692,0.2,0.47615,0.39917,0.44112,0.33403,0.83422,0.29979,0.4077,0.54646,0.43009,0.39808,0.33517,0.22482,0.12796,0.35254,0.32831
|
25
|
+
0.093145,0.16943,0.17458,0.10515,0.059315,0.11834,0.23358,0.07421,0.29629,0.14525,0.18575,0.13789,0.29417,0.22159,0.15399,0.118,0.075297,0.098826,0.07718,0.15997,0.13181,0.2318,0.078379,0.33962,1,0.1744,0.33911,0.055955,0.17188,0.067028,0.13023,0.075507,0.17109,0.14401,0.096689,0.16953,0.12842,0.10894,0.055488,0.1133,0.199,0.08753,0.26601,0.14382,0.15833,0.12902,0.24798,0.21814,0.13063,0.10979,0.018532,0.068827,0.071469,0.16206,0.12885,0.21261,0.083812,0.29641,0.32197,0.14235,0.29725,0.060819,0.15917,0.055634,0.1104,0.078793,0.16772,0.13574
|
26
|
+
0.27888,0.35937,0.61767,0.3009,0.10289,0.31051,0.58468,0.46852,0.27394,0.33549,0.41351,0.33884,0.060811,0.38413,0.1726,0.27504,0.52329,0.33226,0.42534,0.36748,0.30737,0.4681,0.42962,0.47519,0.1744,1,0.56469,0.46676,0.3213,0.63449,0.086619,0.03442,0.31536,0.41101,0.26681,0.34412,0.51799,0.30498,0.082089,0.27555,0.50997,0.37387,0.24338,0.31793,0.31738,0.33126,0.037142,0.3014,0.15771,0.28751,0.44761,0.25269,0.39288,0.36286,0.28868,0.41299,0.34812,0.42363,0.13735,0.66548,0.50295,0.40991,0.28855,0.50036,0.053535,0.0041275,0.29892,0.37723
|
27
|
+
0.46443,0.33961,0.64025,0.31039,0.12429,0.36494,0.62883,0.40917,0.42244,0.33842,0.39104,0.3709,0.34479,0.62535,0.26302,0.41144,0.52475,0.43269,0.4956,0.3677,0.47975,0.42894,0.5138,0.57131,0.33911,0.56469,1,0.376,0.4743,0.49435,0.28328,0.16101,0.36437,0.38076,0.37694,0.28367,0.40746,0.30594,0.10885,0.3563,0.44521,0.35399,0.3493,0.34744,0.2721,0.36629,0.27866,0.48338,0.24215,0.4007,0.25274,0.27396,0.31879,0.35751,0.46899,0.31749,0.46421,0.46755,0.24877,0.32996,0.65496,0.35342,0.44002,0.36688,0.19951,0.14605,0.35421,0.36261
|
28
|
+
0.32148,0.3669,0.29366,0.64071,0.10721,0.61649,0.45827,0.54637,0.20722,0.57223,0.23633,0.645,0.055884,0.25543,0.23735,0.50653,0.3489,0.10164,0.25464,0.55332,0.5869,0.37861,0.66772,0.44604,0.055955,0.46676,0.376,1,0.44217,0.67476,0.038723,0.058662,0.36365,0.47874,0.36744,0.33382,0.38061,0.63324,0.1043,0.59345,0.48404,0.5361,0.23254,0.566,0.22525,0.65024,0.05407,0.25555,0.27296,0.51694,0.41752,0.084869,0.32891,0.5414,0.55305,0.34677,0.63888,0.48203,0.05603,0.41025,0.40059,0.89834,0.42886,0.68624,0.039403,0.052387,0.34395,0.48687
|
29
|
+
0.61334,0.29015,0.33573,0.43438,0.11701,0.48051,0.42069,0.38775,0.27995,0.41127,0.26379,0.4578,0.22271,0.47847,0.24361,0.47828,0.42488,0.23005,0.38852,0.37315,0.60248,0.3271,0.57523,0.41813,0.17188,0.3213,0.4743,0.44217,1,0.48881,0.16179,0.16735,0.53344,0.48723,0.56045,0.26179,0.30274,0.42115,0.1149,0.46364,0.3855,0.37656,0.27416,0.40941,0.2353,0.45924,0.20518,0.43705,0.25522,0.47536,0.30681,0.18698,0.32937,0.35387,0.57682,0.28384,0.55126,0.41888,0.15255,0.26589,0.44965,0.43903,0.73304,0.45829,0.14335,0.15443,0.46166,0.4635
|
30
|
+
0.40645,0.42123,0.43446,0.40263,0.10955,0.42847,0.49669,0.56554,0.17847,0.3704,0.34827,0.4306,0.020383,0.398,0.17216,0.45157,0.56325,0.26086,0.44792,0.40568,0.54766,0.46182,0.68182,0.3851,0.067028,0.63449,0.49435,0.67476,0.48881,1,0.050049,0.056625,0.41754,0.58156,0.40709,0.37956,0.44083,0.39849,0.099581,0.39486,0.45889,0.49326,0.17787,0.35289,0.30432,0.43356,0.0081597,0.32731,0.18137,0.47572,0.56427,0.21951,0.49473,0.39088,0.49135,0.41325,0.59507,0.38268,0.061956,0.51242,0.49907,0.6198,0.44616,0.78053,0.040564,0.042753,0.38482,0.5556
|
31
|
+
0.18835,0.0061126,0.22683,0.063273,0.043349,0.12103,0.26983,0.11273,0.20557,0.10655,0.11899,0.091105,0.24699,0.33581,0.10294,0.090714,0.10814,0.20161,0.16056,0.081996,0.12223,0.082288,0.067418,0.24032,0.13023,0.086619,0.28328,0.038723,0.16179,0.050049,1,0.10414,0.084681,0.039543,0.12827,-0.0051572,0.089323,0.062334,0.040791,0.11973,0.15683,0.098351,0.15771,0.11322,0.071004,0.088067,0.19534,0.25511,0.086324,0.078036,-0.040796,0.14276,0.045954,0.080454,0.12758,0.036147,0.069534,0.17918,0.092153,-0.0019859,0.17741,0.041383,0.13758,-0.00077048,0.2245,0.10264,0.08093,0.033153
|
32
|
+
0.15607,0.027155,0.11573,0.068576,0.083371,0.12908,0.15062,0.13235,0.10375,0.087835,0.085044,0.085435,0.13235,0.22893,0.085573,0.084,0.087106,0.13441,0.11792,0.065088,0.11119,0.055142,0.081789,0.11735,0.075507,0.03442,0.16101,0.058662,0.16735,0.056625,0.10414,1,0.072458,0.071671,0.1182,0.018347,0.057304,0.067295,0.044474,0.12342,0.10207,0.11133,0.088545,0.090085,0.048463,0.083518,0.11858,0.18679,0.077805,0.0752,0.0035894,0.094231,0.051953,0.061595,0.10804,0.032343,0.078133,0.1004,0.06163,-0.0026727,0.1177,0.059458,0.13757,0.034117,0.089583,0.10136,0.067631,0.057774
|
33
|
+
0.30193,0.30055,0.25351,0.35763,0.083789,0.32421,0.30904,0.26249,0.24825,0.33635,0.22621,0.38502,0.13715,0.26534,0.18801,0.37898,0.29515,0.14218,0.24257,0.38679,0.46903,0.33633,0.45275,0.36387,0.17109,0.31536,0.36437,0.36365,0.53344,0.41754,0.084681,0.072458,1,0.45493,0.32217,0.28624,0.27144,0.35506,0.084564,0.30997,0.31787,0.26389,0.25103,0.32546,0.2242,0.38391,0.13484,0.27066,0.19201,0.38345,0.28699,0.14515,0.27513,0.37896,0.44929,0.31648,0.43769,0.37162,0.162,0.29734,0.39254,0.35961,0.47949,0.41809,0.083375,0.069306,0.48605,0.42792
|
34
|
+
0.2991,0.42709,0.21029,0.40211,0.10022,0.36744,0.26235,0.32874,0.18834,0.34906,0.30172,0.41391,0.078376,0.22745,0.17711,0.43809,0.42708,0.12924,0.32656,0.39412,0.53854,0.39746,0.59352,0.32949,0.14401,0.41101,0.38076,0.47874,0.48723,0.58156,0.039543,0.071671,0.45493,1,0.34316,0.39472,0.2519,0.39758,0.097145,0.34971,0.28391,0.31941,0.1977,0.34052,0.25938,0.41925,0.070924,0.21676,0.18503,0.45829,0.43188,0.094797,0.379,0.38334,0.50153,0.37336,0.54963,0.34498,0.13893,0.34997,0.42082,0.46657,0.44482,0.58678,0.029375,0.056883,0.40609,0.57643
|
35
|
+
0.5622,0.23967,0.2697,0.36722,0.081526,0.39469,0.34673,0.31341,0.19493,0.34376,0.21203,0.38106,0.13228,0.38327,0.17231,0.36283,0.38996,0.19206,0.36122,0.30819,0.43365,0.266,0.43508,0.32989,0.096689,0.26681,0.37694,0.36744,0.56045,0.40709,0.12827,0.1182,0.32217,0.34316,1,0.22356,0.309,0.36457,0.091804,0.41761,0.39582,0.38813,0.19657,0.36265,0.21539,0.39263,0.13426,0.48502,0.18999,0.3682,0.36054,0.20989,0.41936,0.29715,0.44777,0.23347,0.45516,0.35633,0.095546,0.26435,0.42225,0.38113,0.61893,0.42934,0.13137,0.13725,0.3166,0.37373
|
36
|
+
0.14768,0.39779,0.12055,0.29149,0.059162,0.22936,0.16179,0.18983,0.15312,0.26113,0.21324,0.29582,0.022071,0.095902,0.11115,0.25452,0.28099,0.022451,0.19442,0.3162,0.27327,0.34286,0.34291,0.27048,0.16953,0.34412,0.28367,0.33382,0.26179,0.37956,-0.0051572,0.018347,0.28624,0.39472,0.22356,1,0.21121,0.29358,0.061677,0.22281,0.2262,0.22115,0.16958,0.25497,0.21775,0.30023,0.032696,0.13686,0.12362,0.28468,0.36275,0.035766,0.31667,0.3146,0.26269,0.3686,0.34224,0.29365,0.18919,0.35987,0.39226,0.33778,0.264,0.42176,-0.0055293,0.014629,0.28205,0.40288
|
37
|
+
0.26192,0.17866,0.58042,0.21853,0.088763,0.33165,0.59978,0.39739,0.28518,0.3089,0.25129,0.30264,0.10101,0.3902,0.22234,0.23352,0.32455,0.23204,0.24688,0.31531,0.26475,0.30581,0.31633,0.45524,0.12842,0.51799,0.40746,0.38061,0.30274,0.44083,0.089323,0.057304,0.27144,0.2519,0.309,0.21121,1,0.23045,0.10617,0.32338,0.77408,0.45257,0.32702,0.27506,0.36865,0.29449,0.16719,0.55811,0.23833,0.22801,0.4427,0.46928,0.41184,0.31672,0.26648,0.33846,0.3076,0.53658,0.15421,0.68257,0.60744,0.37729,0.31748,0.43816,0.18495,0.085112,0.26361,0.27641
|
38
|
+
0.31343,0.31404,0.18372,0.85918,0.076947,0.50382,0.32015,0.28929,0.25571,0.55276,0.18857,0.77903,0.094955,0.20989,0.2147,0.42706,0.26807,0.070799,0.20886,0.73612,0.50365,0.33135,0.48769,0.439,0.10894,0.30498,0.30594,0.63324,0.42115,0.39849,0.062334,0.067295,0.35506,0.39758,0.36457,0.29358,0.23045,1,0.082122,0.50949,0.35646,0.32173,0.27872,0.57214,0.18161,0.80176,0.09328,0.23607,0.24611,0.44352,0.28468,0.063521,0.24589,0.74834,0.51145,0.30982,0.51237,0.48563,0.10511,0.29347,0.34059,0.64238,0.4169,0.45493,0.056356,0.062546,0.3484,0.42073
|
39
|
+
0.084769,0.059292,0.09263,0.081167,0.054192,0.12972,0.12386,0.12513,0.086803,0.094067,0.073845,0.095678,0.070285,0.11413,0.082047,0.090477,0.066214,0.073827,0.067521,0.081556,0.10812,0.085789,0.10237,0.10884,0.055488,0.082089,0.10885,0.1043,0.1149,0.099581,0.040791,0.044474,0.084564,0.097145,0.091804,0.061677,0.10617,0.082122,1,0.15145,0.1333,0.13802,0.091461,0.093242,0.095416,0.096203,0.078483,0.13659,0.11094,0.090607,0.070987,0.087763,0.080041,0.08065,0.11133,0.08095,0.10488,0.11385,0.056158,0.090714,0.12189,0.10517,0.12166,0.10416,0.05136,0.10644,0.08499,0.10198
|
40
|
+
0.37497,0.23762,0.27729,0.50455,0.1214,0.70026,0.43339,0.45386,0.24929,0.55856,0.20718,0.56701,0.18293,0.34257,0.29137,0.39522,0.2756,0.17995,0.24876,0.44968,0.45485,0.26934,0.46496,0.39884,0.1133,0.27555,0.3563,0.59345,0.46364,0.39486,0.11973,0.12342,0.30997,0.34971,0.41761,0.22281,0.32338,0.50949,0.15145,1,0.46508,0.52846,0.26709,0.59998,0.21306,0.58915,0.18229,0.38675,0.36424,0.40079,0.27845,0.16395,0.2796,0.44972,0.46662,0.23548,0.49002,0.43576,0.099611,0.26068,0.36391,0.61559,0.4766,0.43846,0.11958,0.14,0.3004,0.37434
|
41
|
+
0.32936,0.19767,0.57333,0.33864,0.1137,0.46196,0.76449,0.46431,0.43151,0.42679,0.26227,0.42519,0.19354,0.5195,0.30847,0.30072,0.27748,0.24424,0.22117,0.40145,0.34008,0.39254,0.32919,0.65666,0.199,0.50997,0.44521,0.48404,0.3855,0.45889,0.15683,0.10207,0.31787,0.28391,0.39582,0.2262,0.77408,0.35646,0.1333,0.46508,1,0.54906,0.4733,0.41219,0.3728,0.42093,0.26337,0.70949,0.32862,0.29203,0.37367,0.4684,0.37314,0.40785,0.34646,0.42121,0.33214,0.74314,0.22026,0.66944,0.63343,0.50162,0.40478,0.47356,0.2507,0.1331,0.31221,0.31415
|
42
|
+
0.33436,0.22382,0.35448,0.31457,0.11854,0.48335,0.46625,0.55071,0.20673,0.41276,0.23717,0.36122,0.11938,0.39821,0.20563,0.31389,0.30443,0.24021,0.27848,0.3056,0.36061,0.28865,0.41025,0.33625,0.08753,0.37387,0.35399,0.5361,0.37656,0.49326,0.098351,0.11133,0.26389,0.31941,0.38813,0.22115,0.45257,0.32173,0.13802,0.52846,0.54906,1,0.22648,0.42449,0.28506,0.37043,0.1358,0.49885,0.23573,0.32028,0.3743,0.30722,0.37499,0.30536,0.37246,0.28021,0.42222,0.37742,0.091977,0.41141,0.42283,0.55862,0.40589,0.5272,0.12379,0.14063,0.25898,0.3517
|
43
|
+
0.18155,0.16053,0.30098,0.2667,0.079011,0.27073,0.45107,0.19453,0.46705,0.27254,0.1668,0.31877,0.26595,0.32619,0.26692,0.22572,0.093853,0.11545,0.080217,0.31604,0.26337,0.32465,0.18896,0.5763,0.26601,0.24338,0.3493,0.23254,0.27416,0.17787,0.15771,0.088545,0.25103,0.1977,0.19657,0.16958,0.32702,0.27872,0.091461,0.26709,0.4733,0.22648,1,0.26541,0.19214,0.32725,0.29347,0.38601,0.2796,0.22203,0.075765,0.15985,0.1088,0.3207,0.26302,0.336,0.19733,0.60171,0.25351,0.27929,0.39017,0.24225,0.26814,0.18139,0.18185,0.10677,0.2478,0.20713
|
44
|
+
0.339,0.26289,0.25574,0.54315,0.088838,0.58016,0.38903,0.37642,0.26592,0.89415,0.21851,0.55704,0.15006,0.30183,0.19527,0.36444,0.27553,0.17809,0.26087,0.53863,0.42335,0.32077,0.41944,0.38325,0.14382,0.31793,0.34744,0.566,0.40941,0.35289,0.11322,0.090085,0.32546,0.34052,0.36265,0.25497,0.27506,0.57214,0.093242,0.59998,0.41219,0.42449,0.26541,1,0.21276,0.57578,0.13843,0.32664,0.21835,0.36672,0.27482,0.15602,0.28407,0.57124,0.43989,0.29138,0.45874,0.40023,0.13179,0.31249,0.35715,0.60652,0.4084,0.41093,0.10472,0.084889,0.32009,0.36899
|
45
|
+
0.1805,0.19127,0.26731,0.17226,0.075322,0.2183,0.29616,0.25437,0.17931,0.22911,0.28291,0.21217,0.10415,0.24163,0.13033,0.17075,0.26948,0.20707,0.25241,0.23292,0.1885,0.25615,0.22022,0.24908,0.15833,0.31738,0.2721,0.22525,0.2353,0.30432,0.071004,0.048463,0.2242,0.25938,0.21539,0.21775,0.36865,0.18161,0.095416,0.21306,0.3728,0.28506,0.19214,0.21276,1,0.20889,0.19816,0.32913,0.13497,0.17608,0.34493,0.3609,0.39573,0.23494,0.18957,0.2696,0.21889,0.27801,0.1749,0.41742,0.38953,0.2239,0.249,0.31081,0.13412,0.079399,0.22337,0.29178
|
46
|
+
0.34589,0.31975,0.25003,0.79221,0.090529,0.57566,0.39087,0.33894,0.29111,0.55479,0.21693,0.82653,0.13168,0.27007,0.26798,0.44626,0.29991,0.11524,0.24313,0.75191,0.52606,0.3444,0.51358,0.48266,0.12902,0.33126,0.36629,0.65024,0.45924,0.43356,0.088067,0.083518,0.38391,0.41925,0.39263,0.30023,0.29449,0.80176,0.096203,0.58915,0.42093,0.37043,0.32725,0.57578,0.20889,1,0.12883,0.29511,0.3195,0.46013,0.30235,0.10875,0.27469,0.76192,0.53121,0.31473,0.5321,0.52674,0.12005,0.31373,0.3918,0.65821,0.4529,0.4791,0.084048,0.080456,0.3778,0.4402
|
47
|
+
0.14718,0.031344,0.20359,0.089881,0.068176,0.17831,0.28943,0.11902,0.30416,0.14092,0.11476,0.13814,0.36143,0.29843,0.19938,0.13726,0.020145,0.15864,0.060568,0.12148,0.17591,0.12229,0.090104,0.32969,0.24798,0.037142,0.27866,0.05407,0.20518,0.0081597,0.19534,0.11858,0.13484,0.070924,0.13426,0.032696,0.16719,0.09328,0.078483,0.18229,0.26337,0.1358,0.29347,0.13843,0.19816,0.12883,1,0.32808,0.1856,0.12077,-0.05579,0.16391,0.025288,0.121,0.18049,0.10334,0.10101,0.31276,0.26264,0.04846,0.2635,0.059339,0.20361,0.0030217,0.23442,0.14746,0.13253,0.072975
|
48
|
+
0.44123,0.12424,0.4871,0.22574,0.1118,0.36777,0.62405,0.38122,0.38377,0.32646,0.2428,0.29682,0.28091,0.66196,0.24765,0.26471,0.28102,0.33981,0.30209,0.26154,0.32396,0.29606,0.25729,0.50748,0.21814,0.3014,0.48338,0.25555,0.43705,0.32731,0.25511,0.18679,0.27066,0.21676,0.48502,0.13686,0.55811,0.23607,0.13659,0.38675,0.70949,0.49885,0.38601,0.32664,0.32913,0.29511,0.32808,1,0.25275,0.25027,0.25295,0.52132,0.37412,0.26213,0.33858,0.29457,0.27879,0.54137,0.22611,0.41593,0.602,0.27392,0.48215,0.31841,0.32545,0.23282,0.27021,0.2495
|
49
|
+
0.16635,0.12707,0.20462,0.2452,0.080283,0.33394,0.30628,0.21457,0.24387,0.21634,0.12262,0.30594,0.17277,0.21367,0.27892,0.22056,0.11182,0.092801,0.095163,0.24765,0.24455,0.17267,0.2228,0.3561,0.13063,0.15771,0.24215,0.27296,0.25522,0.18137,0.086324,0.077805,0.19201,0.18503,0.18999,0.12362,0.23833,0.24611,0.11094,0.36424,0.32862,0.23573,0.2796,0.21835,0.13497,0.3195,0.1856,0.25275,1,0.22008,0.10502,0.099804,0.1146,0.24459,0.24883,0.1559,0.22805,0.38006,0.12011,0.16145,0.24909,0.27564,0.25927,0.19186,0.095652,0.096219,0.18779,0.19576
|
50
|
+
0.33146,0.31749,0.20451,0.45122,0.082897,0.39159,0.28196,0.29396,0.20998,0.35593,0.18908,0.44462,0.13089,0.24042,0.19392,0.65412,0.29756,0.11411,0.23125,0.36672,0.64076,0.33711,0.64414,0.36143,0.10979,0.28751,0.4007,0.51694,0.47536,0.47572,0.078036,0.0752,0.38345,0.45829,0.3682,0.28468,0.22801,0.44352,0.090607,0.40079,0.29203,0.32028,0.22203,0.36672,0.17608,0.46013,0.12077,0.25027,0.22008,1,0.2936,0.080535,0.24975,0.35523,0.66212,0.32642,0.67533,0.3857,0.098456,0.24792,0.41475,0.53847,0.47906,0.52822,0.068079,0.081229,0.3737,0.48044
|
51
|
+
0.23347,0.35008,0.22105,0.28132,0.060752,0.28239,0.21471,0.31342,0.038277,0.29096,0.26912,0.29523,-0.086618,0.13279,0.076379,0.26158,0.47687,0.11671,0.35093,0.3048,0.27189,0.31396,0.43953,0.16289,0.018532,0.44761,0.25274,0.41752,0.30681,0.56427,-0.040796,0.0035894,0.28699,0.43188,0.36054,0.36275,0.4427,0.28468,0.070987,0.27845,0.37367,0.3743,0.075765,0.27482,0.34493,0.30235,-0.05579,0.25295,0.10502,0.2936,1,0.25314,0.62381,0.30102,0.27168,0.34055,0.4475,0.23784,0.054418,0.55694,0.46005,0.42327,0.34066,0.62882,-0.0014515,0.0066391,0.28311,0.47868
|
52
|
+
0.22823,0.0094468,0.40267,0.053128,0.071613,0.16367,0.40239,0.27283,0.15742,0.174,0.22098,0.11394,0.11936,0.4212,0.10024,0.094868,0.2346,0.42237,0.29614,0.12574,0.1184,0.14454,0.10454,0.16692,0.068827,0.25269,0.27396,0.084869,0.18698,0.21951,0.14276,0.094231,0.14515,0.094797,0.20989,0.035766,0.46928,0.063521,0.087763,0.16395,0.4684,0.30722,0.15985,0.15602,0.3609,0.10875,0.16391,0.52132,0.099804,0.080535,0.25314,1,0.38269,0.13,0.12893,0.15217,0.10278,0.19832,0.089089,0.3922,0.39609,0.084352,0.19937,0.18073,0.23976,0.12046,0.14471,0.11986
|
53
|
+
0.30873,0.30134,0.2568,0.24002,0.074115,0.28613,0.26267,0.3154,0.091539,0.29769,0.31907,0.27186,-0.00096095,0.26308,0.10053,0.2281,0.49339,0.23706,0.47774,0.29004,0.23487,0.30652,0.34833,0.2,0.071469,0.39288,0.31879,0.32891,0.32937,0.49473,0.045954,0.051953,0.27513,0.379,0.41936,0.31667,0.41184,0.24589,0.080041,0.2796,0.37314,0.37499,0.1088,0.28407,0.39573,0.27469,0.025288,0.37412,0.1146,0.24975,0.62381,0.38269,1,0.28818,0.23655,0.30941,0.35146,0.25066,0.096406,0.47437,0.48473,0.33049,0.36157,0.5085,0.087005,0.062674,0.27234,0.41023
|
54
|
+
0.25454,0.32135,0.27371,0.71366,0.082358,0.45615,0.37647,0.29132,0.30528,0.56597,0.23798,0.74067,0.11963,0.23964,0.22875,0.34221,0.29083,0.12217,0.24248,0.85728,0.40872,0.36135,0.41581,0.47615,0.16206,0.36286,0.35751,0.5414,0.35387,0.39088,0.080454,0.061595,0.37896,0.38334,0.29715,0.3146,0.31672,0.74834,0.08065,0.44972,0.40785,0.30536,0.3207,0.57124,0.23494,0.76192,0.121,0.26213,0.24459,0.35523,0.30102,0.13,0.28818,1,0.40931,0.33977,0.4208,0.5042,0.15573,0.35227,0.39543,0.5412,0.34177,0.41866,0.081059,0.052782,0.37852,0.39777
|
55
|
+
0.42025,0.30449,0.27525,0.52019,0.099861,0.44496,0.35206,0.33924,0.26266,0.42195,0.20299,0.51184,0.19984,0.32525,0.22124,0.64971,0.31877,0.16236,0.26048,0.42493,0.86582,0.32957,0.75307,0.39917,0.12885,0.28868,0.46899,0.55305,0.57682,0.49135,0.12758,0.10804,0.44929,0.50153,0.44777,0.26269,0.26648,0.51145,0.11133,0.46662,0.34646,0.37246,0.26302,0.43989,0.18957,0.53121,0.18049,0.33858,0.24883,0.66212,0.27168,0.12893,0.23655,0.40931,1,0.28236,0.81738,0.41004,0.1082,0.24084,0.44892,0.58481,0.59411,0.57718,0.11433,0.1196,0.44747,0.5421
|
56
|
+
0.16002,0.34177,0.2234,0.29889,0.071698,0.24543,0.3331,0.2354,0.30135,0.3049,0.23132,0.31361,0.067717,0.21374,0.1511,0.28162,0.23453,0.080576,0.16012,0.33628,0.29256,0.48707,0.31423,0.44112,0.21261,0.41299,0.31749,0.34677,0.28384,0.41325,0.036147,0.032343,0.31648,0.37336,0.23347,0.3686,0.33846,0.30982,0.08095,0.23548,0.42121,0.28021,0.336,0.29138,0.2696,0.31473,0.10334,0.29457,0.1559,0.32642,0.34055,0.15217,0.30941,0.33977,0.28236,1,0.31779,0.4786,0.22867,0.47967,0.46163,0.35498,0.28649,0.44389,0.067303,0.035819,0.30932,0.38682
|
57
|
+
0.39201,0.38132,0.23986,0.52295,0.094366,0.47135,0.297,0.37645,0.18525,0.44154,0.22288,0.5115,0.11482,0.25506,0.19059,0.64058,0.40102,0.12809,0.29935,0.43461,0.76681,0.34958,0.82849,0.33403,0.083812,0.34812,0.46421,0.63888,0.55126,0.59507,0.069534,0.078133,0.43769,0.54963,0.45516,0.34224,0.3076,0.51237,0.10488,0.49002,0.33214,0.42222,0.19733,0.45874,0.21889,0.5321,0.10101,0.27879,0.22805,0.67533,0.4475,0.10278,0.35146,0.4208,0.81738,0.31779,1,0.36432,0.076183,0.32326,0.49645,0.67482,0.57458,0.70071,0.057353,0.08707,0.43205,0.59615
|
58
|
+
0.28627,0.28435,0.41423,0.47209,0.10315,0.44276,0.6468,0.31169,0.54872,0.4109,0.23527,0.52555,0.2615,0.41729,0.36317,0.37838,0.20507,0.09483,0.1383,0.50004,0.4134,0.46753,0.35514,0.83422,0.29641,0.42363,0.46755,0.48203,0.41888,0.38268,0.17918,0.1004,0.37162,0.34498,0.35633,0.29365,0.53658,0.48563,0.11385,0.43576,0.74314,0.37742,0.60171,0.40023,0.27801,0.52674,0.31276,0.54137,0.38006,0.3857,0.23784,0.19832,0.25066,0.5042,0.41004,0.4786,0.36432,1,0.29694,0.49813,0.58876,0.49332,0.41918,0.40023,0.22409,0.12666,0.36307,0.36071
|
59
|
+
0.069472,0.15407,0.11993,0.10003,0.047884,0.10414,0.18692,0.051143,0.25574,0.13924,0.14542,0.12703,0.20048,0.16363,0.13336,0.10302,0.047244,0.043019,0.038003,0.15225,0.11084,0.21558,0.06365,0.29979,0.32197,0.13735,0.24877,0.05603,0.15255,0.061956,0.092153,0.06163,0.162,0.13893,0.095546,0.18919,0.15421,0.10511,0.056158,0.099611,0.22026,0.091977,0.25351,0.13179,0.1749,0.12005,0.26264,0.22611,0.12011,0.098456,0.054418,0.089089,0.096406,0.15573,0.1082,0.22867,0.076183,0.29694,1,0.19399,0.3123,0.063709,0.15362,0.078214,0.1131,0.074761,0.16005,0.14363
|
60
|
+
0.17348,0.31006,0.40768,0.27882,0.070195,0.26949,0.44799,0.33251,0.22744,0.34308,0.27626,0.31654,-0.032285,0.22573,0.14286,0.23084,0.32444,0.11454,0.201,0.34806,0.24442,0.4114,0.32352,0.4077,0.14235,0.66548,0.32996,0.41025,0.26589,0.51242,-0.0019859,-0.0026727,0.29734,0.34997,0.26435,0.35987,0.68257,0.29347,0.090714,0.26068,0.66944,0.41141,0.27929,0.31249,0.41742,0.31373,0.04846,0.41593,0.16145,0.24792,0.55694,0.3922,0.47437,0.35227,0.24084,0.47967,0.32326,0.49813,0.19399,1,0.61299,0.4143,0.29296,0.55896,0.10407,0.015224,0.29395,0.39317
|
61
|
+
0.35026,0.35891,0.46177,0.33668,0.10348,0.36392,0.52112,0.33374,0.37387,0.37439,0.31551,0.39417,0.21096,0.46381,0.24254,0.3981,0.41289,0.23133,0.32608,0.39959,0.45147,0.44184,0.4841,0.54646,0.29725,0.50295,0.65496,0.40059,0.44965,0.49907,0.17741,0.1177,0.39254,0.42082,0.42225,0.39226,0.60744,0.34059,0.12189,0.36391,0.63343,0.42283,0.39017,0.35715,0.38953,0.3918,0.2635,0.602,0.24909,0.41475,0.46005,0.39609,0.48473,0.39543,0.44892,0.46163,0.49645,0.58876,0.3123,0.61299,1,0.41195,0.45852,0.5235,0.23477,0.1456,0.38136,0.44568
|
62
|
+
0.3125,0.35896,0.2474,0.63405,0.098552,0.60269,0.41213,0.49823,0.2042,0.58345,0.21485,0.63234,0.057028,0.23436,0.2248,0.5086,0.32249,0.079084,0.23561,0.53907,0.5705,0.36827,0.63709,0.43009,0.060819,0.40991,0.35342,0.89834,0.43903,0.6198,0.041383,0.059458,0.35961,0.46657,0.38113,0.33778,0.37729,0.64238,0.10517,0.61559,0.50162,0.55862,0.24225,0.60652,0.2239,0.65821,0.059339,0.27392,0.27564,0.53847,0.42327,0.084352,0.33049,0.5412,0.58481,0.35498,0.67482,0.49332,0.063709,0.4143,0.41195,1,0.44861,0.72073,0.042054,0.057397,0.35225,0.50246
|
63
|
+
0.539,0.28407,0.29473,0.421,0.1044,0.45193,0.37633,0.34373,0.26195,0.38721,0.23263,0.44026,0.20262,0.39372,0.23246,0.47163,0.37038,0.19368,0.33083,0.35305,0.57098,0.31992,0.54325,0.39808,0.15917,0.28855,0.44002,0.42886,0.73304,0.44616,0.13758,0.13757,0.47949,0.44482,0.61893,0.264,0.31748,0.4169,0.12166,0.4766,0.40478,0.40589,0.26814,0.4084,0.249,0.4529,0.20361,0.48215,0.25927,0.47906,0.34066,0.19937,0.36157,0.34177,0.59411,0.28649,0.57458,0.41918,0.15362,0.29296,0.45852,0.44861,1,0.49261,0.14133,0.17104,0.49975,0.49705
|
64
|
+
0.30494,0.43753,0.24723,0.45315,0.092157,0.43027,0.33073,0.45088,0.14718,0.4106,0.26833,0.4628,-0.015003,0.23245,0.15548,0.48385,0.43559,0.10872,0.30668,0.42363,0.5668,0.43041,0.67347,0.33517,0.055634,0.50036,0.36688,0.68624,0.45829,0.78053,-0.00077048,0.034117,0.41809,0.58678,0.42934,0.42176,0.43816,0.45493,0.10416,0.43846,0.47356,0.5272,0.18139,0.41093,0.31081,0.4791,0.0030217,0.31841,0.19186,0.52822,0.62882,0.18073,0.5085,0.41866,0.57718,0.44389,0.70071,0.40023,0.078214,0.55896,0.5235,0.72073,0.49261,1,0.018662,0.038378,0.41804,0.63508
|
65
|
+
0.14883,-0.008768,0.19451,0.053676,0.042027,0.11721,0.25321,0.10114,0.19082,0.10912,0.085356,0.088563,0.19297,0.28166,0.10221,0.082289,0.060168,0.15008,0.096109,0.080283,0.1104,0.075244,0.049243,0.22482,0.1104,0.053535,0.19951,0.039403,0.14335,0.040564,0.2245,0.089583,0.083375,0.029375,0.13137,-0.0055293,0.18495,0.056356,0.05136,0.11958,0.2507,0.12379,0.18185,0.10472,0.13412,0.084048,0.23442,0.32545,0.095652,0.068079,-0.0014515,0.23976,0.087005,0.081059,0.11433,0.067303,0.057353,0.22409,0.1131,0.10407,0.23477,0.042054,0.14133,0.018662,1,0.11325,0.083887,0.036645
|
66
|
+
0.14006,0.018646,0.097931,0.063091,0.046406,0.12501,0.14298,0.098838,0.1113,0.081136,0.048139,0.081172,0.13514,0.20019,0.094468,0.088552,0.052987,0.099978,0.077589,0.05649,0.11264,0.048711,0.075624,0.12796,0.078793,0.0041275,0.14605,0.052387,0.15443,0.042753,0.10264,0.10136,0.069306,0.056883,0.13725,0.014629,0.085112,0.062546,0.10644,0.14,0.1331,0.14063,0.10677,0.084889,0.079399,0.080456,0.14746,0.23282,0.096219,0.081229,0.0066391,0.12046,0.062674,0.052782,0.1196,0.035819,0.08707,0.12666,0.074761,0.015224,0.1456,0.057397,0.17104,0.038378,0.11325,1,0.069818,0.067466
|
67
|
+
0.27288,0.29159,0.2431,0.3452,0.079811,0.29926,0.29248,0.23926,0.2429,0.31793,0.21713,0.37197,0.13267,0.24287,0.17564,0.36345,0.2776,0.13708,0.23304,0.38103,0.43838,0.32912,0.42199,0.35254,0.16772,0.29892,0.35421,0.34395,0.46166,0.38482,0.08093,0.067631,0.48605,0.40609,0.3166,0.28205,0.26361,0.3484,0.08499,0.3004,0.31221,0.25898,0.2478,0.32009,0.22337,0.3778,0.13253,0.27021,0.18779,0.3737,0.28311,0.14471,0.27234,0.37852,0.44747,0.30932,0.43205,0.36307,0.16005,0.29395,0.38136,0.35225,0.49975,0.41804,0.083887,0.069818,1,0.4499
|
68
|
+
0.28871,0.42548,0.18854,0.4219,0.090625,0.36879,0.252,0.30851,0.18676,0.36614,0.26119,0.42796,0.069247,0.20145,0.16913,0.4491,0.3779,0.10199,0.28577,0.40539,0.52985,0.39568,0.57691,0.32831,0.13574,0.37723,0.36261,0.48687,0.4635,0.5556,0.033153,0.057774,0.42792,0.57643,0.37373,0.40288,0.27641,0.42073,0.10198,0.37434,0.31415,0.3517,0.20713,0.36899,0.29178,0.4402,0.072975,0.2495,0.19576,0.48044,0.47868,0.11986,0.41023,0.39777,0.5421,0.38682,0.59615,0.36071,0.14363,0.39317,0.44568,0.50246,0.49705,0.63508,0.036645,0.067466,0.4499,1
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,68 @@
|
|
1
|
+
1.3354
|
2
|
+
1.1441
|
3
|
+
1.2944
|
4
|
+
1.5201
|
5
|
+
1.1892
|
6
|
+
1.3042
|
7
|
+
1.306
|
8
|
+
1.2164
|
9
|
+
1.531
|
10
|
+
1.4632
|
11
|
+
1.2279
|
12
|
+
1.4741
|
13
|
+
1.1965
|
14
|
+
1.2339
|
15
|
+
1.2872
|
16
|
+
1.4381
|
17
|
+
1.2683
|
18
|
+
1.2098
|
19
|
+
1.285
|
20
|
+
1.5576
|
21
|
+
1.4339
|
22
|
+
1.3099
|
23
|
+
1.447
|
24
|
+
1.3288
|
25
|
+
1.1495
|
26
|
+
1.232
|
27
|
+
1.2279
|
28
|
+
1.3618
|
29
|
+
1.3117
|
30
|
+
1.2825
|
31
|
+
1.1741
|
32
|
+
1.0145
|
33
|
+
1.6491
|
34
|
+
1.2273
|
35
|
+
1.3703
|
36
|
+
1.1484
|
37
|
+
1.2938
|
38
|
+
1.5022
|
39
|
+
1.1704
|
40
|
+
1.3155
|
41
|
+
1.3174
|
42
|
+
1.2207
|
43
|
+
1.5424
|
44
|
+
1.4608
|
45
|
+
1.2436
|
46
|
+
1.4936
|
47
|
+
1.1925
|
48
|
+
1.2264
|
49
|
+
1.2746
|
50
|
+
1.4295
|
51
|
+
1.2589
|
52
|
+
1.2064
|
53
|
+
1.2718
|
54
|
+
1.5705
|
55
|
+
1.4325
|
56
|
+
1.3158
|
57
|
+
1.4492
|
58
|
+
1.345
|
59
|
+
1.144
|
60
|
+
1.2273
|
61
|
+
1.2206
|
62
|
+
1.3576
|
63
|
+
1.2965
|
64
|
+
1.2989
|
65
|
+
1.2083
|
66
|
+
1.0854
|
67
|
+
1.6701
|
68
|
+
1.249
|
@@ -0,0 +1,68 @@
|
|
1
|
+
0.22037
|
2
|
+
-1.9216
|
3
|
+
5.5096
|
4
|
+
-4.1155
|
5
|
+
1.1812
|
6
|
+
-2.2488
|
7
|
+
3.8454
|
8
|
+
1.8838
|
9
|
+
4.8808
|
10
|
+
-2.7857
|
11
|
+
4.5461
|
12
|
+
-3.8586
|
13
|
+
6.3826
|
14
|
+
5.3479
|
15
|
+
1.452
|
16
|
+
-4.794
|
17
|
+
2.4237
|
18
|
+
6.5105
|
19
|
+
3.6995
|
20
|
+
-3.8515
|
21
|
+
-4.8003
|
22
|
+
1.6512
|
23
|
+
-3.7629
|
24
|
+
2.5559
|
25
|
+
6.2624
|
26
|
+
3.7767
|
27
|
+
3.1801
|
28
|
+
-2.6644
|
29
|
+
-2.1074
|
30
|
+
0.060494
|
31
|
+
7.534
|
32
|
+
4.1611
|
33
|
+
-4.372
|
34
|
+
-2.3979
|
35
|
+
-1.2413
|
36
|
+
-0.85403
|
37
|
+
4.2062
|
38
|
+
-4.0885
|
39
|
+
0.33241
|
40
|
+
-2.716
|
41
|
+
3.3335
|
42
|
+
1.2926
|
43
|
+
4.1096
|
44
|
+
-2.9445
|
45
|
+
4.227
|
46
|
+
-3.9389
|
47
|
+
6.1569
|
48
|
+
4.964
|
49
|
+
-0.049871
|
50
|
+
-4.6095
|
51
|
+
0.97491
|
52
|
+
6.6233
|
53
|
+
2.5047
|
54
|
+
-3.7025
|
55
|
+
-4.8486
|
56
|
+
1.6299
|
57
|
+
-4.1805
|
58
|
+
2.028
|
59
|
+
5.8797
|
60
|
+
3.798
|
61
|
+
3.0292
|
62
|
+
-2.9316
|
63
|
+
-2.5575
|
64
|
+
-1.4338
|
65
|
+
7.4356
|
66
|
+
4.0493
|
67
|
+
-4.387
|
68
|
+
-2.653
|
Binary file
|