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.
Files changed (121) hide show
  1. vbi/__init__.py +37 -0
  2. vbi/_version.py +17 -0
  3. vbi/dataset/__init__.py +0 -0
  4. vbi/dataset/connectivity_84/centers.txt +84 -0
  5. vbi/dataset/connectivity_84/centres.txt +84 -0
  6. vbi/dataset/connectivity_84/cortical.txt +84 -0
  7. vbi/dataset/connectivity_84/tract_lengths.txt +84 -0
  8. vbi/dataset/connectivity_84/weights.txt +84 -0
  9. vbi/dataset/connectivity_88/Aud_88.txt +88 -0
  10. vbi/dataset/connectivity_88/Bold.npz +0 -0
  11. vbi/dataset/connectivity_88/Labels.txt +17 -0
  12. vbi/dataset/connectivity_88/Region_labels.txt +88 -0
  13. vbi/dataset/connectivity_88/tract_lengths.txt +88 -0
  14. vbi/dataset/connectivity_88/weights.txt +88 -0
  15. vbi/feature_extraction/__init__.py +1 -0
  16. vbi/feature_extraction/calc_features.py +293 -0
  17. vbi/feature_extraction/features.json +535 -0
  18. vbi/feature_extraction/features.py +2124 -0
  19. vbi/feature_extraction/features_settings.py +374 -0
  20. vbi/feature_extraction/features_utils.py +1357 -0
  21. vbi/feature_extraction/infodynamics.jar +0 -0
  22. vbi/feature_extraction/utility.py +507 -0
  23. vbi/inference.py +98 -0
  24. vbi/models/__init__.py +0 -0
  25. vbi/models/cpp/__init__.py +0 -0
  26. vbi/models/cpp/_src/__init__.py +0 -0
  27. vbi/models/cpp/_src/__pycache__/mpr_sde.cpython-310.pyc +0 -0
  28. vbi/models/cpp/_src/_do.cpython-310-x86_64-linux-gnu.so +0 -0
  29. vbi/models/cpp/_src/_jr_sdde.cpython-310-x86_64-linux-gnu.so +0 -0
  30. vbi/models/cpp/_src/_jr_sde.cpython-310-x86_64-linux-gnu.so +0 -0
  31. vbi/models/cpp/_src/_km_sde.cpython-310-x86_64-linux-gnu.so +0 -0
  32. vbi/models/cpp/_src/_mpr_sde.cpython-310-x86_64-linux-gnu.so +0 -0
  33. vbi/models/cpp/_src/_vep.cpython-310-x86_64-linux-gnu.so +0 -0
  34. vbi/models/cpp/_src/_wc_ode.cpython-310-x86_64-linux-gnu.so +0 -0
  35. vbi/models/cpp/_src/bold.hpp +303 -0
  36. vbi/models/cpp/_src/do.hpp +167 -0
  37. vbi/models/cpp/_src/do.i +17 -0
  38. vbi/models/cpp/_src/do.py +467 -0
  39. vbi/models/cpp/_src/do_wrap.cxx +12811 -0
  40. vbi/models/cpp/_src/jr_sdde.hpp +352 -0
  41. vbi/models/cpp/_src/jr_sdde.i +19 -0
  42. vbi/models/cpp/_src/jr_sdde.py +688 -0
  43. vbi/models/cpp/_src/jr_sdde_wrap.cxx +18718 -0
  44. vbi/models/cpp/_src/jr_sde.hpp +264 -0
  45. vbi/models/cpp/_src/jr_sde.i +17 -0
  46. vbi/models/cpp/_src/jr_sde.py +470 -0
  47. vbi/models/cpp/_src/jr_sde_wrap.cxx +13406 -0
  48. vbi/models/cpp/_src/km_sde.hpp +158 -0
  49. vbi/models/cpp/_src/km_sde.i +19 -0
  50. vbi/models/cpp/_src/km_sde.py +671 -0
  51. vbi/models/cpp/_src/km_sde_wrap.cxx +17367 -0
  52. vbi/models/cpp/_src/makefile +52 -0
  53. vbi/models/cpp/_src/mpr_sde.hpp +327 -0
  54. vbi/models/cpp/_src/mpr_sde.i +19 -0
  55. vbi/models/cpp/_src/mpr_sde.py +711 -0
  56. vbi/models/cpp/_src/mpr_sde_wrap.cxx +18618 -0
  57. vbi/models/cpp/_src/utility.hpp +307 -0
  58. vbi/models/cpp/_src/vep.hpp +171 -0
  59. vbi/models/cpp/_src/vep.i +16 -0
  60. vbi/models/cpp/_src/vep.py +464 -0
  61. vbi/models/cpp/_src/vep_wrap.cxx +12968 -0
  62. vbi/models/cpp/_src/wc_ode.hpp +294 -0
  63. vbi/models/cpp/_src/wc_ode.i +19 -0
  64. vbi/models/cpp/_src/wc_ode.py +686 -0
  65. vbi/models/cpp/_src/wc_ode_wrap.cxx +24263 -0
  66. vbi/models/cpp/damp_oscillator.py +143 -0
  67. vbi/models/cpp/jansen_rit.py +543 -0
  68. vbi/models/cpp/km.py +187 -0
  69. vbi/models/cpp/mpr.py +289 -0
  70. vbi/models/cpp/vep.py +150 -0
  71. vbi/models/cpp/wc.py +216 -0
  72. vbi/models/cupy/__init__.py +0 -0
  73. vbi/models/cupy/bold.py +111 -0
  74. vbi/models/cupy/ghb.py +284 -0
  75. vbi/models/cupy/jansen_rit.py +473 -0
  76. vbi/models/cupy/km.py +224 -0
  77. vbi/models/cupy/mpr.py +475 -0
  78. vbi/models/cupy/mpr_modified_bold.py +12 -0
  79. vbi/models/cupy/utils.py +184 -0
  80. vbi/models/numba/__init__.py +0 -0
  81. vbi/models/numba/_ww_EI.py +444 -0
  82. vbi/models/numba/damp_oscillator.py +162 -0
  83. vbi/models/numba/ghb.py +208 -0
  84. vbi/models/numba/mpr.py +383 -0
  85. vbi/models/pytorch/__init__.py +0 -0
  86. vbi/models/pytorch/data/default_parameters.npz +0 -0
  87. vbi/models/pytorch/data/input/ROI_sim.mat +0 -0
  88. vbi/models/pytorch/data/input/fc_test.csv +68 -0
  89. vbi/models/pytorch/data/input/fc_train.csv +68 -0
  90. vbi/models/pytorch/data/input/fc_vali.csv +68 -0
  91. vbi/models/pytorch/data/input/fcd_test.mat +0 -0
  92. vbi/models/pytorch/data/input/fcd_test_high_window.mat +0 -0
  93. vbi/models/pytorch/data/input/fcd_test_low_window.mat +0 -0
  94. vbi/models/pytorch/data/input/fcd_train.mat +0 -0
  95. vbi/models/pytorch/data/input/fcd_vali.mat +0 -0
  96. vbi/models/pytorch/data/input/myelin.csv +68 -0
  97. vbi/models/pytorch/data/input/rsfc_gradient.csv +68 -0
  98. vbi/models/pytorch/data/input/run_label_testset.mat +0 -0
  99. vbi/models/pytorch/data/input/sc_test.csv +68 -0
  100. vbi/models/pytorch/data/input/sc_train.csv +68 -0
  101. vbi/models/pytorch/data/input/sc_vali.csv +68 -0
  102. vbi/models/pytorch/data/obs_kong0.npz +0 -0
  103. vbi/models/pytorch/ww_sde_kong.py +570 -0
  104. vbi/models/tvbk/__init__.py +9 -0
  105. vbi/models/tvbk/tvbk_wrapper.py +166 -0
  106. vbi/models/tvbk/utils.py +72 -0
  107. vbi/papers/__init__.py +0 -0
  108. vbi/papers/pavlides_pcb_2015/pavlides.py +211 -0
  109. vbi/tests/__init__.py +0 -0
  110. vbi/tests/_test_mpr_nb.py +36 -0
  111. vbi/tests/test_features.py +355 -0
  112. vbi/tests/test_ghb_cupy.py +90 -0
  113. vbi/tests/test_mpr_cupy.py +49 -0
  114. vbi/tests/test_mpr_numba.py +84 -0
  115. vbi/tests/test_suite.py +19 -0
  116. vbi/utils.py +402 -0
  117. vbi-0.1.3.dist-info/METADATA +166 -0
  118. vbi-0.1.3.dist-info/RECORD +121 -0
  119. vbi-0.1.3.dist-info/WHEEL +5 -0
  120. vbi-0.1.3.dist-info/licenses/LICENSE +201 -0
  121. vbi-0.1.3.dist-info/top_level.txt +1 -0
vbi/__init__.py ADDED
@@ -0,0 +1,37 @@
1
+ import os
2
+ from .tests.test_suite import tests
3
+ from .utils import test_imports
4
+ from . import models
5
+ from ._version import __version__
6
+
7
+
8
+ from .feature_extraction.calc_features import (
9
+ extract_features_df,
10
+ extract_features_list,
11
+ extract_features,
12
+ calc_features,
13
+ )
14
+
15
+ from .feature_extraction.features_settings import (
16
+ get_features_by_given_names,
17
+ get_features_by_domain,
18
+ update_cfg,
19
+ add_feature,
20
+ add_features_from_json,
21
+ )
22
+
23
+ from .feature_extraction.features_utils import report_cfg
24
+ from .utils import LoadSample, timer, display_time, posterior_peaks
25
+
26
+ from .feature_extraction.utility import make_mask
27
+
28
+ from .utils import j2p, p2j
29
+
30
+
31
+
32
+ def get_version():
33
+ version_file = os.path.join(os.path.dirname(__file__), '_version.py')
34
+ with open(version_file) as f:
35
+ for line in f:
36
+ if line.startswith('__version__'):
37
+ return line.split('=')[1].strip().strip('"\'')
vbi/_version.py ADDED
@@ -0,0 +1,17 @@
1
+ __version__ = "v0.2"
2
+
3
+ if __name__ == '__main__':
4
+ print(__version__)
5
+ import os, sys
6
+ _, cmd, *args = sys.argv
7
+ print(cmd, args)
8
+ if cmd == 'tag':
9
+ import subprocess
10
+ def do(cmd):
11
+ print(cmd)
12
+ subprocess.check_call(cmd.split(' '))
13
+ do(f'/usr/bin/git add netsci/_version.py')
14
+ do(f'/usr/bin/git commit -m bump-version')
15
+ do(f'/usr/bin/git push -u origin main')
16
+ do(f'/usr/bin/git tag -f {__version__}')
17
+ do(f'/usr/bin/git push -u origin -f {__version__}')
File without changes
@@ -0,0 +1,84 @@
1
+ ctx-lh-bankssts -47.4046 -46.2536 -24.7605
2
+ ctx-lh-caudalanteriorcingulate -3.8134 15.3589 7.5379
3
+ ctx-lh-caudalmiddlefrontal -34.8053 6.1341 16.2457
4
+ ctx-lh-cuneus -7.9202 -83.8659 -14.3875
5
+ ctx-lh-entorhinal -25.0397 -6.3420 -49.7830
6
+ ctx-lh-fusiform -33.9334 -42.7347 -43.0737
7
+ ctx-lh-inferiorparietal -38.6715 -67.7397 -2.8553
8
+ ctx-lh-inferiortemporal -49.2928 -30.9005 -44.7260
9
+ ctx-lh-isthmuscingulate -8.2014 -47.7647 -8.9890
10
+ ctx-lh-lateraloccipital -30.7486 -87.0365 -30.6099
11
+ ctx-lh-lateralorbitofrontal -21.8053 28.9578 -31.4536
12
+ ctx-lh-lingual -13.1753 -70.5131 -34.0938
13
+ ctx-lh-medialorbitofrontal -6.1002 31.5223 -28.6576
14
+ ctx-lh-middletemporal -54.2288 -24.5305 -35.8230
15
+ ctx-lh-parahippocampal -23.4924 -31.3856 -39.8023
16
+ ctx-lh-paracentral -9.0402 -29.8114 26.9089
17
+ ctx-lh-parsopercularis -41.3580 13.8252 -6.3815
18
+ ctx-lh-parsorbitalis -41.0144 34.2114 -26.8605
19
+ ctx-lh-parstriangularis -41.8638 25.5635 -12.7966
20
+ ctx-lh-pericalcarine -11.8068 -84.0369 -26.6210
21
+ ctx-lh-postcentral -38.5249 -26.2796 15.0698
22
+ ctx-lh-posteriorcingulate -7.0833 -20.4019 11.4648
23
+ ctx-lh-precentral -36.9779 -13.2177 14.2410
24
+ ctx-lh-precuneus -10.7714 -62.7336 6.5599
25
+ ctx-lh-rostralanteriorcingulate -5.2197 30.6927 -15.5246
26
+ ctx-lh-rostralmiddlefrontal -29.1895 40.8886 -2.8127
27
+ ctx-lh-superiorfrontal -13.2186 20.3398 18.9550
28
+ ctx-lh-superiorparietal -24.5160 -63.6025 13.3232
29
+ ctx-lh-superiortemporal -49.6599 -14.6433 -25.9824
30
+ ctx-lh-supramarginal -48.4341 -39.4147 -1.5177
31
+ ctx-lh-frontalpole -8.7395 62.1010 -19.7154
32
+ ctx-lh-temporalpole -28.6606 11.7417 -47.0917
33
+ ctx-lh-transversetemporal -40.8164 -21.9847 -17.8926
34
+ ctx-lh-insula -34.7063 -3.8165 -21.0415
35
+ Left-Cerebellum-Cortex -21.8238 -54.4015 -55.4086
36
+ Left-Thalamus-Proper -12.5755 -20.4948 -17.3132
37
+ Left-Caudate -13.6270 3.5974 -10.7740
38
+ Left-Putamen -25.1739 -3.1054 -20.5286
39
+ Left-Pallidum -19.9749 -6.7951 -21.7355
40
+ Left-Hippocampus -23.5962 -22.6380 -34.5297
41
+ Left-Amygdala -21.5694 -4.8678 -37.9994
42
+ Left-Accumbens-area -9.2880 7.5789 -25.5193
43
+ Right-Thalamus-Proper 7.3681 -19.4757 -15.6975
44
+ Right-Caudate 9.5118 5.0284 -10.1460
45
+ Right-Putamen 21.2843 -2.2308 -19.5988
46
+ Right-Pallidum 15.6186 -5.7488 -20.7504
47
+ Right-Hippocampus 18.9341 -22.3647 -32.6586
48
+ Right-Amygdala 18.1424 -4.5332 -37.1673
49
+ Right-Accumbens-area 4.9855 9.3749 -24.5849
50
+ ctx-rh-bankssts 40.1801 -42.6860 -11.8620
51
+ ctx-rh-caudalanteriorcingulate 0.8775 15.6984 6.3300
52
+ ctx-rh-caudalmiddlefrontal 28.2935 4.4640 22.0324
53
+ ctx-rh-cuneus 2.7046 -82.9065 -12.2652
54
+ ctx-rh-entorhinal 18.2884 -8.3432 -49.8507
55
+ ctx-rh-fusiform 29.5750 -44.2659 -40.5307
56
+ ctx-rh-inferiorparietal 32.8621 -62.6632 4.1859
57
+ ctx-rh-inferiortemporal 42.9221 -30.9446 -41.8466
58
+ ctx-rh-isthmuscingulate 1.6171 -47.2571 -8.1522
59
+ ctx-rh-lateraloccipital 28.4141 -83.7608 -23.2273
60
+ ctx-rh-lateralorbitofrontal 17.8799 26.7242 -29.8676
61
+ ctx-rh-lingual 11.3229 -70.3632 -32.1136
62
+ ctx-rh-medialorbitofrontal 3.6064 35.6563 -26.3888
63
+ ctx-rh-middletemporal 49.0225 -27.0204 -30.8905
64
+ ctx-rh-parahippocampal 18.9968 -31.4713 -37.9995
65
+ ctx-rh-paracentral -0.0622 -28.9601 28.6029
66
+ ctx-rh-parsopercularis 39.6566 9.9410 -3.7855
67
+ ctx-rh-parsorbitalis 38.3791 35.3126 -24.0109
68
+ ctx-rh-parstriangularis 40.6748 25.0928 -9.0625
69
+ ctx-rh-pericalcarine 8.4816 -83.1408 -22.9216
70
+ ctx-rh-postcentral 31.8818 -23.8320 18.2522
71
+ ctx-rh-posteriorcingulate -0.7886 -19.9311 13.3214
72
+ ctx-rh-precentral 29.5594 -12.3740 18.4965
73
+ ctx-rh-precuneus 2.9635 -60.8764 7.9446
74
+ ctx-rh-rostralanteriorcingulate 0.8459 34.1621 -13.2345
75
+ ctx-rh-rostralmiddlefrontal 27.0974 37.5021 2.6240
76
+ ctx-rh-superiorfrontal 7.3086 20.5681 20.7884
77
+ ctx-rh-superiorparietal 15.3706 -60.3967 18.0861
78
+ ctx-rh-superiortemporal 44.7893 -14.1899 -23.3964
79
+ ctx-rh-supramarginal 41.4150 -34.5144 5.9752
80
+ ctx-rh-frontalpole 8.2497 62.2230 -16.7772
81
+ ctx-rh-temporalpole 25.1684 12.7715 -47.6332
82
+ ctx-rh-transversetemporal 36.3683 -22.3802 -12.5554
83
+ ctx-rh-insula 31.4756 -3.1275 -20.1943
84
+ Right-Cerebellum-Cortex 16.7655 -56.7792 -54.4605
@@ -0,0 +1,84 @@
1
+ Left-Cerebellum-Cortex 0.0 0.0 0.0
2
+ Left-Thalamus-Proper 0.0 0.0 0.0
3
+ Left-Caudate 0.0 0.0 0.0
4
+ Left-Putamen 0.0 0.0 0.0
5
+ Left-Pallidum 0.0 0.0 0.0
6
+ Left-Hippocampus 0.0 0.0 0.0
7
+ Left-Amygdala 0.0 0.0 0.0
8
+ Left-Accumbens-Area 0.0 0.0 0.0
9
+ ctx-lh-bankssts 0.0 0.0 0.0
10
+ ctx-lh-caudalanteriorcingulate 0.0 0.0 0.0
11
+ ctx-lh-caudalmiddlefrontal 0.0 0.0 0.0
12
+ ctx-lh-cuneus 0.0 0.0 0.0
13
+ ctx-lh-entorhinal 0.0 0.0 0.0
14
+ ctx-lh-fusiform 0.0 0.0 0.0
15
+ ctx-lh-inferiorparietal 0.0 0.0 0.0
16
+ ctx-lh-inferiortemporal 0.0 0.0 0.0
17
+ ctx-lh-isthmuscingulate 0.0 0.0 0.0
18
+ ctx-lh-lateraloccipital 0.0 0.0 0.0
19
+ ctx-lh-lateralorbitofrontal 0.0 0.0 0.0
20
+ ctx-lh-lingual 0.0 0.0 0.0
21
+ ctx-lh-medialorbitofrontal 0.0 0.0 0.0
22
+ ctx-lh-middletemporal 0.0 0.0 0.0
23
+ ctx-lh-parahippocampal 0.0 0.0 0.0
24
+ ctx-lh-paracentral 0.0 0.0 0.0
25
+ ctx-lh-parsopercularis 0.0 0.0 0.0
26
+ ctx-lh-parsorbitalis 0.0 0.0 0.0
27
+ ctx-lh-parstriangularis 0.0 0.0 0.0
28
+ ctx-lh-pericalcarine 0.0 0.0 0.0
29
+ ctx-lh-postcentral 0.0 0.0 0.0
30
+ ctx-lh-posteriorcingulate 0.0 0.0 0.0
31
+ ctx-lh-precentral 0.0 0.0 0.0
32
+ ctx-lh-precuneus 0.0 0.0 0.0
33
+ ctx-lh-rostralanteriorcingulate 0.0 0.0 0.0
34
+ ctx-lh-rostralmiddlefrontal 0.0 0.0 0.0
35
+ ctx-lh-superiorfrontal 0.0 0.0 0.0
36
+ ctx-lh-superiorparietal 0.0 0.0 0.0
37
+ ctx-lh-superiortemporal 0.0 0.0 0.0
38
+ ctx-lh-supramarginal 0.0 0.0 0.0
39
+ ctx-lh-frontalpole 0.0 0.0 0.0
40
+ ctx-lh-temporalpole 0.0 0.0 0.0
41
+ ctx-lh-transversetemporal 0.0 0.0 0.0
42
+ ctx-lh-insula 0.0 0.0 0.0
43
+ Right-Cerebellum-Cortex 0.0 0.0 0.0
44
+ Right-Thalamus-Proper 0.0 0.0 0.0
45
+ Right-Caudate 0.0 0.0 0.0
46
+ Right-Putamen 0.0 0.0 0.0
47
+ Right-Pallidum 0.0 0.0 0.0
48
+ Right-Hippocampus 0.0 0.0 0.0
49
+ Right-Amygdala 0.0 0.0 0.0
50
+ Right-Accumbens-Area 0.0 0.0 0.0
51
+ ctx-rh-bankssts 0.0 0.0 0.0
52
+ ctx-rh-caudalanteriorcingulate 0.0 0.0 0.0
53
+ ctx-rh-caudalmiddlefrontal 0.0 0.0 0.0
54
+ ctx-rh-cuneus 0.0 0.0 0.0
55
+ ctx-rh-entorhinal 0.0 0.0 0.0
56
+ ctx-rh-fusiform 0.0 0.0 0.0
57
+ ctx-rh-inferiorparietal 0.0 0.0 0.0
58
+ ctx-rh-inferiortemporal 0.0 0.0 0.0
59
+ ctx-rh-isthmuscingulate 0.0 0.0 0.0
60
+ ctx-rh-lateraloccipital 0.0 0.0 0.0
61
+ ctx-rh-lateralorbitofrontal 0.0 0.0 0.0
62
+ ctx-rh-lingual 0.0 0.0 0.0
63
+ ctx-rh-medialorbitofrontal 0.0 0.0 0.0
64
+ ctx-rh-middletemporal 0.0 0.0 0.0
65
+ ctx-rh-parahippocampal 0.0 0.0 0.0
66
+ ctx-rh-paracentral 0.0 0.0 0.0
67
+ ctx-rh-parsopercularis 0.0 0.0 0.0
68
+ ctx-rh-parsorbitalis 0.0 0.0 0.0
69
+ ctx-rh-parstriangularis 0.0 0.0 0.0
70
+ ctx-rh-pericalcarine 0.0 0.0 0.0
71
+ ctx-rh-postcentral 0.0 0.0 0.0
72
+ ctx-rh-posteriorcingulate 0.0 0.0 0.0
73
+ ctx-rh-precentral 0.0 0.0 0.0
74
+ ctx-rh-precuneus 0.0 0.0 0.0
75
+ ctx-rh-rostralanteriorcingulate 0.0 0.0 0.0
76
+ ctx-rh-rostralmiddlefrontal 0.0 0.0 0.0
77
+ ctx-rh-superiorfrontal 0.0 0.0 0.0
78
+ ctx-rh-superiorparietal 0.0 0.0 0.0
79
+ ctx-rh-superiortemporal 0.0 0.0 0.0
80
+ ctx-rh-supramarginal 0.0 0.0 0.0
81
+ ctx-rh-frontalpole 0.0 0.0 0.0
82
+ ctx-rh-temporalpole 0.0 0.0 0.0
83
+ ctx-rh-transversetemporal 0.0 0.0 0.0
84
+ ctx-rh-insula 0.0 0.0 0.0
@@ -0,0 +1,84 @@
1
+ 0
2
+ 0
3
+ 0
4
+ 0
5
+ 0
6
+ 0
7
+ 0
8
+ 0
9
+ 1
10
+ 1
11
+ 1
12
+ 1
13
+ 1
14
+ 1
15
+ 1
16
+ 1
17
+ 1
18
+ 1
19
+ 1
20
+ 1
21
+ 1
22
+ 1
23
+ 1
24
+ 1
25
+ 1
26
+ 1
27
+ 1
28
+ 1
29
+ 1
30
+ 1
31
+ 1
32
+ 1
33
+ 1
34
+ 1
35
+ 1
36
+ 1
37
+ 1
38
+ 1
39
+ 1
40
+ 1
41
+ 1
42
+ 1
43
+ 0
44
+ 0
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 0
51
+ 1
52
+ 1
53
+ 1
54
+ 1
55
+ 1
56
+ 1
57
+ 1
58
+ 1
59
+ 1
60
+ 1
61
+ 1
62
+ 1
63
+ 1
64
+ 1
65
+ 1
66
+ 1
67
+ 1
68
+ 1
69
+ 1
70
+ 1
71
+ 1
72
+ 1
73
+ 1
74
+ 1
75
+ 1
76
+ 1
77
+ 1
78
+ 1
79
+ 1
80
+ 1
81
+ 1
82
+ 1
83
+ 1
84
+ 1