grnsight 6.0.4 → 7.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1245) hide show
  1. package/.eslintrc.yml +4 -4
  2. package/database/README.md +224 -79
  3. package/database/constants.py +42 -0
  4. package/database/expression-database/README.md +2 -2
  5. package/database/expression-database/schema.sql +14 -14
  6. package/database/expression-database/scripts/loader.py +6 -6
  7. package/database/filter_update.py +168 -0
  8. package/database/grnsettings-database/README.md +52 -0
  9. package/database/grnsettings-database/schema.sql +4 -0
  10. package/database/loader.py +30 -0
  11. package/database/loader_update.py +36 -0
  12. package/database/network-database/README.md +36 -4
  13. package/database/network-database/schema.sql +7 -7
  14. package/database/network-database/scripts/generate_network.py +16 -24
  15. package/database/network-database/scripts/generate_new_network_version.py +216 -0
  16. package/database/protein-protein-database/README.md +71 -0
  17. package/database/protein-protein-database/schema.sql +37 -0
  18. package/database/protein-protein-database/scripts/generate_protein_network.py +227 -0
  19. package/database/protein-protein-database/scripts/remove_duplicates.sh +4 -0
  20. package/database/utils.py +418 -0
  21. package/package.json +2 -2
  22. package/server/app.js +2 -0
  23. package/server/config/config.js +4 -4
  24. package/server/controllers/additional-sheet-parser.js +2 -1
  25. package/server/controllers/constants.js +5 -0
  26. package/server/controllers/custom-workbook-controller.js +8 -6
  27. package/server/controllers/demo-workbooks.js +1460 -4
  28. package/server/controllers/export-constants.js +3 -2
  29. package/server/controllers/exporters/sif.js +6 -1
  30. package/server/controllers/exporters/xlsx.js +8 -3
  31. package/server/controllers/expression-sheet-parser.js +0 -6
  32. package/server/controllers/grnsettings-database-controller.js +17 -0
  33. package/server/controllers/importers/sif.js +29 -11
  34. package/server/controllers/network-database-controller.js +2 -2
  35. package/server/controllers/network-sheet-parser.js +54 -12
  36. package/server/controllers/protein-database-controller.js +18 -0
  37. package/server/controllers/sif-constants.js +4 -4
  38. package/server/controllers/spreadsheet-controller.js +44 -1
  39. package/server/controllers/workbook-constants.js +21 -4
  40. package/server/dals/expression-dal.js +8 -7
  41. package/server/dals/grnsetting-dal.js +49 -0
  42. package/server/dals/network-dal.js +13 -12
  43. package/server/dals/protein-dal.js +106 -0
  44. package/test/export-tests.js +136 -9
  45. package/test/import-sif-tests.js +54 -13
  46. package/test/test.js +1 -1
  47. package/test-files/additional-sheet-test-files/optimization-parameters-default.xlsx +0 -0
  48. package/test-files/demo-files/18_proteins_81_edges_PPI.xlsx +0 -0
  49. package/test-files/expression-data-test-sheets/expression_sheet_missing_data_ok_export_exact.xlsx +0 -0
  50. package/web-client/config/config.js +4 -4
  51. package/web-client/public/js/api/grnsight-api.js +72 -56
  52. package/web-client/public/js/constants.js +26 -12
  53. package/web-client/public/js/generateNetwork.js +173 -67
  54. package/web-client/public/js/graph.js +420 -150
  55. package/web-client/public/js/grnsight.js +25 -4
  56. package/web-client/public/js/grnstate.js +3 -1
  57. package/web-client/public/js/iframe-coordination.js +3 -3
  58. package/web-client/public/js/setup-handlers.js +28 -32
  59. package/web-client/public/js/setup-load-and-import-handlers.js +196 -170
  60. package/web-client/public/js/update-app.js +84 -17
  61. package/web-client/public/js/upload.js +193 -157
  62. package/web-client/public/lib/bootstrap.file-input/bootstrap.file-input.js +0 -1
  63. package/web-client/public/stylesheets/grnsight.styl +40 -16
  64. package/web-client/views/components/demo.pug +7 -5
  65. package/web-client/views/upload.pug +63 -49
  66. package/.bundle/config +0 -3
  67. package/GRNsight - Beta.html +0 -194
  68. package/Gemfile.lock +0 -259
  69. package/_gh_pages/about.html +0 -807
  70. package/_gh_pages/assets/css/bootstrap.min.css +0 -10
  71. package/_gh_pages/assets/css/footer.css +0 -3
  72. package/_gh_pages/assets/css/main.css +0 -363
  73. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_estimation_output_binary-no-targetless-genes_sif.png +0 -0
  74. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_estimation_output_binary_sif.png +0 -0
  75. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_graphml_3-edges-and-footer.png +0 -0
  76. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_graphml_header-and-3-nodes.png +0 -0
  77. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_graphml_output_3-edges-and-footer.png +0 -0
  78. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_graphml_output_header-and-3-nodes.png +0 -0
  79. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_input_binary-no-targetless-genes_sif.png +0 -0
  80. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_input_binary_sif.png +0 -0
  81. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_input_concatenated-no-targetless-genes_sif.png +0 -0
  82. package/_gh_pages/assets/images/21-genes_31-edges_Schade-data_input_concatenated_sif.png +0 -0
  83. package/_gh_pages/assets/images/Carrillo_Roque_LMU_Symposium_2015.pptx +0 -0
  84. package/_gh_pages/assets/images/Choe-Shin_CMSI402-poster-session_20180430.jpg +0 -0
  85. package/_gh_pages/assets/images/Choe_SCCUR_2017.jpg +0 -0
  86. package/_gh_pages/assets/images/Dahlquist-BMB-2015-Fig1.jpg +0 -0
  87. package/_gh_pages/assets/images/Dahlquist-BMB-2015-Fig8.jpg +0 -0
  88. package/_gh_pages/assets/images/Dahlquist-Choe-Shin_CMSI402-poster-session_20180430.jpg +0 -0
  89. package/_gh_pages/assets/images/Demo-3-auto-layout.jpg +0 -0
  90. package/_gh_pages/assets/images/Demo-3-paper-layout.jpg +0 -0
  91. package/_gh_pages/assets/images/Demo-4-auto-layout.jpg +0 -0
  92. package/_gh_pages/assets/images/Demo-4-paper-layout.jpg +0 -0
  93. package/_gh_pages/assets/images/Dionisio-Dahlquist_GRNsight-shades_20170506.jpg +0 -0
  94. package/_gh_pages/assets/images/GRNsight_logo_20140710_main.jpg +0 -0
  95. package/_gh_pages/assets/images/GRNsight_logo_20140710_main_resized.jpg +0 -0
  96. package/_gh_pages/assets/images/GRNsight_logo_20140710_rollover.jpg +0 -0
  97. package/_gh_pages/assets/images/GRNsight_logo_20140710_rollover_resized.jpg +0 -0
  98. package/_gh_pages/assets/images/Johnson_Williams_LMU_Symposium_2015.pptx +0 -0
  99. package/_gh_pages/assets/images/Klein_Samdarshi_TriBeta_2018_20180317.jpg +0 -0
  100. package/_gh_pages/assets/images/LMULogoHQ2.png +0 -0
  101. package/_gh_pages/assets/images/LMUSymposium_Group_20150321-2.jpg +0 -0
  102. package/_gh_pages/assets/images/LMUSymposium_Group_20150321-2_resized.jpg +0 -0
  103. package/_gh_pages/assets/images/Sample_network_optimized_weights_worksheet.jpg +0 -0
  104. package/_gh_pages/assets/images/Sample_network_worksheet.jpg +0 -0
  105. package/_gh_pages/assets/images/Shin_SCCUR_2017.jpg +0 -0
  106. package/_gh_pages/assets/images/demo-3_network-sheet.png +0 -0
  107. package/_gh_pages/assets/images/demo-4_network-optimized-weights-sheet.png +0 -0
  108. package/_gh_pages/assets/images/gene-pages-0.png +0 -0
  109. package/_gh_pages/assets/images/gene-pages-1.png +0 -0
  110. package/_gh_pages/assets/images/gene-pages-2.png +0 -0
  111. package/_gh_pages/assets/images/gene-pages-3.png +0 -0
  112. package/_gh_pages/assets/images/grnsight2020.png +0 -0
  113. package/_gh_pages/assets/images/lmu logo.gif +0 -0
  114. package/_gh_pages/assets/images/v3demo2-grid+nodecoloring.png +0 -0
  115. package/_gh_pages/assets/images/v3demo2-nodecoloring.png +0 -0
  116. package/_gh_pages/assets/images/v3demo2.png +0 -0
  117. package/_gh_pages/assets/js/ga-report.js +0 -35
  118. package/_gh_pages/assets/js/iframeResizer.min.js +0 -9
  119. package/_gh_pages/assets/js/main.js +0 -132
  120. package/_gh_pages/beta.html +0 -144
  121. package/_gh_pages/contact.html +0 -178
  122. package/_gh_pages/coverage/coverage.json +0 -1
  123. package/_gh_pages/coverage/coverage.raw.json +0 -1
  124. package/_gh_pages/coverage/lcov-report/base.css +0 -223
  125. package/_gh_pages/coverage/lcov-report/block-navigation.js +0 -63
  126. package/_gh_pages/coverage/lcov-report/controllers/additional-sheet-parser.js.html +0 -330
  127. package/_gh_pages/coverage/lcov-report/controllers/constants.js.html +0 -243
  128. package/_gh_pages/coverage/lcov-report/controllers/export-controller.js.html +0 -285
  129. package/_gh_pages/coverage/lcov-report/controllers/exporters/graphml.js.html +0 -405
  130. package/_gh_pages/coverage/lcov-report/controllers/exporters/index.html +0 -110
  131. package/_gh_pages/coverage/lcov-report/controllers/exporters/sif.js.html +0 -150
  132. package/_gh_pages/coverage/lcov-report/controllers/helpers.js.html +0 -114
  133. package/_gh_pages/coverage/lcov-report/controllers/import-controller.js.html +0 -233
  134. package/_gh_pages/coverage/lcov-report/controllers/importers/graphml.js.html +0 -716
  135. package/_gh_pages/coverage/lcov-report/controllers/importers/index.html +0 -106
  136. package/_gh_pages/coverage/lcov-report/controllers/importers/sif.js.html +0 -488
  137. package/_gh_pages/coverage/lcov-report/controllers/index.html +0 -162
  138. package/_gh_pages/coverage/lcov-report/controllers/semantic-checker.js.html +0 -810
  139. package/_gh_pages/coverage/lcov-report/controllers/spreadsheet-controller.js.html +0 -1779
  140. package/_gh_pages/coverage/lcov-report/index.html +0 -136
  141. package/_gh_pages/coverage/lcov-report/prettify.css +0 -1
  142. package/_gh_pages/coverage/lcov-report/prettify.js +0 -1
  143. package/_gh_pages/coverage/lcov-report/server/controllers/additional-sheet-parser.js.html +0 -330
  144. package/_gh_pages/coverage/lcov-report/server/controllers/constants.js.html +0 -243
  145. package/_gh_pages/coverage/lcov-report/server/controllers/export-controller.js.html +0 -285
  146. package/_gh_pages/coverage/lcov-report/server/controllers/exporters/graphml.js.html +0 -405
  147. package/_gh_pages/coverage/lcov-report/server/controllers/exporters/index.html +0 -110
  148. package/_gh_pages/coverage/lcov-report/server/controllers/exporters/sif.js.html +0 -150
  149. package/_gh_pages/coverage/lcov-report/server/controllers/graphml-constants.js.html +0 -585
  150. package/_gh_pages/coverage/lcov-report/server/controllers/helpers.js.html +0 -114
  151. package/_gh_pages/coverage/lcov-report/server/controllers/import-controller.js.html +0 -237
  152. package/_gh_pages/coverage/lcov-report/server/controllers/importers/graphml.js.html +0 -585
  153. package/_gh_pages/coverage/lcov-report/server/controllers/importers/index.html +0 -110
  154. package/_gh_pages/coverage/lcov-report/server/controllers/importers/sif.js.html +0 -492
  155. package/_gh_pages/coverage/lcov-report/server/controllers/index.html +0 -188
  156. package/_gh_pages/coverage/lcov-report/server/controllers/semantic-checker.js.html +0 -810
  157. package/_gh_pages/coverage/lcov-report/server/controllers/spreadsheet-controller.js.html +0 -1779
  158. package/_gh_pages/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  159. package/_gh_pages/coverage/lcov-report/sorter.js +0 -158
  160. package/_gh_pages/coverage/lcov-report/web-client/public/js/grnstate.js.html +0 -225
  161. package/_gh_pages/coverage/lcov-report/web-client/public/js/index.html +0 -97
  162. package/_gh_pages/coverage/lcov.info +0 -49
  163. package/_gh_pages/documentation.html +0 -1132
  164. package/_gh_pages/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.aux +0 -47
  165. package/_gh_pages/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.bbl +0 -73
  166. package/_gh_pages/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.blg +0 -52
  167. package/_gh_pages/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.log +0 -1056
  168. package/_gh_pages/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.out +0 -7
  169. package/_gh_pages/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.synctex.gz +0 -0
  170. package/_gh_pages/documents/manuscripts/peerj-computerscience-2016/revisions/GRNsight_PeerJ-CS_manuscript_2016_text-only_revised-Dondi.docx +0 -0
  171. package/_gh_pages/encryption/server.cert +0 -21
  172. package/_gh_pages/encryption/server.key +0 -28
  173. package/_gh_pages/favicon.ico +0 -0
  174. package/_gh_pages/googlea1a858c5bc91c87e.html +0 -1
  175. package/_gh_pages/index.html +0 -163
  176. package/_gh_pages/links.html +0 -177
  177. package/_gh_pages/news.html +0 -367
  178. package/_gh_pages/onlyfooter.html +0 -78
  179. package/_gh_pages/onlyheader.html +0 -64
  180. package/_gh_pages/onlysidebar.html +0 -73
  181. package/_gh_pages/package-lock.json +0 -14048
  182. package/_gh_pages/params.json +0 -1
  183. package/_gh_pages/people.html +0 -260
  184. package/_gh_pages/privacy.html +0 -147
  185. package/_gh_pages/publications.html +0 -378
  186. package/_gh_pages/robots.txt +0 -1
  187. package/_gh_pages/server/API Project-7d45e9f24a96.p12 +0 -0
  188. package/_gh_pages/server/grnmap.pem +0 -31
  189. package/_gh_pages/server/grnsight.pem +0 -19
  190. package/_gh_pages/sitemap.xml +0 -174
  191. package/_gh_pages/test-files/import-samples/attributes.graphml +0 -40
  192. package/_gh_pages/test-files/import-samples/port.graphml +0 -32
  193. package/_gh_pages/test-files/import-samples/simple.graphml +0 -31
  194. package/_gh_pages/web-client/public/js/grnsight.min.js +0 -2347
  195. package/_gh_pages/web-client/public/stylesheets/grnsight.css +0 -443
  196. package/coverage/coverage.json +0 -1
  197. package/coverage/coverage.raw.json +0 -1
  198. package/coverage/lcov-report/base.css +0 -223
  199. package/coverage/lcov-report/block-navigation.js +0 -63
  200. package/coverage/lcov-report/controllers/additional-sheet-parser.js.html +0 -330
  201. package/coverage/lcov-report/controllers/constants.js.html +0 -243
  202. package/coverage/lcov-report/controllers/export-controller.js.html +0 -285
  203. package/coverage/lcov-report/controllers/exporters/graphml.js.html +0 -405
  204. package/coverage/lcov-report/controllers/exporters/index.html +0 -110
  205. package/coverage/lcov-report/controllers/exporters/sif.js.html +0 -150
  206. package/coverage/lcov-report/controllers/helpers.js.html +0 -114
  207. package/coverage/lcov-report/controllers/import-controller.js.html +0 -233
  208. package/coverage/lcov-report/controllers/importers/graphml.js.html +0 -716
  209. package/coverage/lcov-report/controllers/importers/index.html +0 -106
  210. package/coverage/lcov-report/controllers/importers/sif.js.html +0 -488
  211. package/coverage/lcov-report/controllers/index.html +0 -162
  212. package/coverage/lcov-report/controllers/semantic-checker.js.html +0 -810
  213. package/coverage/lcov-report/controllers/spreadsheet-controller.js.html +0 -1779
  214. package/coverage/lcov-report/index.html +0 -136
  215. package/coverage/lcov-report/prettify.css +0 -1
  216. package/coverage/lcov-report/prettify.js +0 -1
  217. package/coverage/lcov-report/server/controllers/additional-sheet-parser.js.html +0 -330
  218. package/coverage/lcov-report/server/controllers/constants.js.html +0 -243
  219. package/coverage/lcov-report/server/controllers/export-controller.js.html +0 -285
  220. package/coverage/lcov-report/server/controllers/exporters/graphml.js.html +0 -405
  221. package/coverage/lcov-report/server/controllers/exporters/index.html +0 -110
  222. package/coverage/lcov-report/server/controllers/exporters/sif.js.html +0 -150
  223. package/coverage/lcov-report/server/controllers/graphml-constants.js.html +0 -585
  224. package/coverage/lcov-report/server/controllers/helpers.js.html +0 -114
  225. package/coverage/lcov-report/server/controllers/import-controller.js.html +0 -237
  226. package/coverage/lcov-report/server/controllers/importers/graphml.js.html +0 -585
  227. package/coverage/lcov-report/server/controllers/importers/index.html +0 -110
  228. package/coverage/lcov-report/server/controllers/importers/sif.js.html +0 -492
  229. package/coverage/lcov-report/server/controllers/index.html +0 -188
  230. package/coverage/lcov-report/server/controllers/semantic-checker.js.html +0 -810
  231. package/coverage/lcov-report/server/controllers/spreadsheet-controller.js.html +0 -1779
  232. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  233. package/coverage/lcov-report/sorter.js +0 -158
  234. package/coverage/lcov-report/web-client/public/js/grnstate.js.html +0 -225
  235. package/coverage/lcov-report/web-client/public/js/index.html +0 -97
  236. package/coverage/lcov.info +0 -1952
  237. package/database/network-database/scripts/filter_genes.py +0 -76
  238. package/database/network-database/scripts/loader.py +0 -79
  239. package/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.aux +0 -47
  240. package/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.bbl +0 -73
  241. package/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.blg +0 -52
  242. package/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.log +0 -1056
  243. package/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.out +0 -7
  244. package/documents/abstracts/SIGGRAPH 2017 Abstract/siggraph-abstract-review.synctex.gz +0 -0
  245. package/documents/manuscripts/peerj-computerscience-2016/revisions/GRNsight_PeerJ-CS_manuscript_2016_text-only_revised-Dondi.docx +0 -0
  246. package/encryption/server.cert +0 -21
  247. package/encryption/server.key +0 -28
  248. package/gdb/PG_VERSION +0 -1
  249. package/gdb/base/1/112 +0 -0
  250. package/gdb/base/1/113 +0 -0
  251. package/gdb/base/1/1247 +0 -0
  252. package/gdb/base/1/1247_fsm +0 -0
  253. package/gdb/base/1/1247_vm +0 -0
  254. package/gdb/base/1/1249 +0 -0
  255. package/gdb/base/1/1249_fsm +0 -0
  256. package/gdb/base/1/1249_vm +0 -0
  257. package/gdb/base/1/1255 +0 -0
  258. package/gdb/base/1/1255_fsm +0 -0
  259. package/gdb/base/1/1255_vm +0 -0
  260. package/gdb/base/1/1259 +0 -0
  261. package/gdb/base/1/1259_fsm +0 -0
  262. package/gdb/base/1/1259_vm +0 -0
  263. package/gdb/base/1/13852 +0 -0
  264. package/gdb/base/1/13852_fsm +0 -0
  265. package/gdb/base/1/13852_vm +0 -0
  266. package/gdb/base/1/13855 +0 -0
  267. package/gdb/base/1/13856 +0 -0
  268. package/gdb/base/1/13857 +0 -0
  269. package/gdb/base/1/13857_fsm +0 -0
  270. package/gdb/base/1/13857_vm +0 -0
  271. package/gdb/base/1/13860 +0 -0
  272. package/gdb/base/1/13861 +0 -0
  273. package/gdb/base/1/13862 +0 -0
  274. package/gdb/base/1/13862_fsm +0 -0
  275. package/gdb/base/1/13862_vm +0 -0
  276. package/gdb/base/1/13865 +0 -0
  277. package/gdb/base/1/13866 +0 -0
  278. package/gdb/base/1/13867 +0 -0
  279. package/gdb/base/1/13867_fsm +0 -0
  280. package/gdb/base/1/13867_vm +0 -0
  281. package/gdb/base/1/13870 +0 -0
  282. package/gdb/base/1/13871 +0 -0
  283. package/gdb/base/1/1417 +0 -0
  284. package/gdb/base/1/1418 +0 -0
  285. package/gdb/base/1/174 +0 -0
  286. package/gdb/base/1/175 +0 -0
  287. package/gdb/base/1/2187 +0 -0
  288. package/gdb/base/1/2224 +0 -0
  289. package/gdb/base/1/2228 +0 -0
  290. package/gdb/base/1/2328 +0 -0
  291. package/gdb/base/1/2336 +0 -0
  292. package/gdb/base/1/2337 +0 -0
  293. package/gdb/base/1/2579 +0 -0
  294. package/gdb/base/1/2600 +0 -0
  295. package/gdb/base/1/2600_fsm +0 -0
  296. package/gdb/base/1/2600_vm +0 -0
  297. package/gdb/base/1/2601 +0 -0
  298. package/gdb/base/1/2601_fsm +0 -0
  299. package/gdb/base/1/2601_vm +0 -0
  300. package/gdb/base/1/2602 +0 -0
  301. package/gdb/base/1/2602_fsm +0 -0
  302. package/gdb/base/1/2602_vm +0 -0
  303. package/gdb/base/1/2603 +0 -0
  304. package/gdb/base/1/2603_fsm +0 -0
  305. package/gdb/base/1/2603_vm +0 -0
  306. package/gdb/base/1/2604 +0 -0
  307. package/gdb/base/1/2605 +0 -0
  308. package/gdb/base/1/2605_fsm +0 -0
  309. package/gdb/base/1/2605_vm +0 -0
  310. package/gdb/base/1/2606 +0 -0
  311. package/gdb/base/1/2606_fsm +0 -0
  312. package/gdb/base/1/2606_vm +0 -0
  313. package/gdb/base/1/2607 +0 -0
  314. package/gdb/base/1/2607_fsm +0 -0
  315. package/gdb/base/1/2607_vm +0 -0
  316. package/gdb/base/1/2608 +0 -0
  317. package/gdb/base/1/2608_fsm +0 -0
  318. package/gdb/base/1/2608_vm +0 -0
  319. package/gdb/base/1/2609 +0 -0
  320. package/gdb/base/1/2609_fsm +0 -0
  321. package/gdb/base/1/2609_vm +0 -0
  322. package/gdb/base/1/2610 +0 -0
  323. package/gdb/base/1/2610_fsm +0 -0
  324. package/gdb/base/1/2610_vm +0 -0
  325. package/gdb/base/1/2611 +0 -0
  326. package/gdb/base/1/2612 +0 -0
  327. package/gdb/base/1/2612_fsm +0 -0
  328. package/gdb/base/1/2612_vm +0 -0
  329. package/gdb/base/1/2613 +0 -0
  330. package/gdb/base/1/2615 +0 -0
  331. package/gdb/base/1/2615_fsm +0 -0
  332. package/gdb/base/1/2615_vm +0 -0
  333. package/gdb/base/1/2616 +0 -0
  334. package/gdb/base/1/2616_fsm +0 -0
  335. package/gdb/base/1/2616_vm +0 -0
  336. package/gdb/base/1/2617 +0 -0
  337. package/gdb/base/1/2617_fsm +0 -0
  338. package/gdb/base/1/2617_vm +0 -0
  339. package/gdb/base/1/2618 +0 -0
  340. package/gdb/base/1/2618_fsm +0 -0
  341. package/gdb/base/1/2618_vm +0 -0
  342. package/gdb/base/1/2619 +0 -0
  343. package/gdb/base/1/2619_fsm +0 -0
  344. package/gdb/base/1/2619_vm +0 -0
  345. package/gdb/base/1/2620 +0 -0
  346. package/gdb/base/1/2650 +0 -0
  347. package/gdb/base/1/2651 +0 -0
  348. package/gdb/base/1/2652 +0 -0
  349. package/gdb/base/1/2653 +0 -0
  350. package/gdb/base/1/2654 +0 -0
  351. package/gdb/base/1/2655 +0 -0
  352. package/gdb/base/1/2656 +0 -0
  353. package/gdb/base/1/2657 +0 -0
  354. package/gdb/base/1/2658 +0 -0
  355. package/gdb/base/1/2659 +0 -0
  356. package/gdb/base/1/2660 +0 -0
  357. package/gdb/base/1/2661 +0 -0
  358. package/gdb/base/1/2662 +0 -0
  359. package/gdb/base/1/2663 +0 -0
  360. package/gdb/base/1/2664 +0 -0
  361. package/gdb/base/1/2665 +0 -0
  362. package/gdb/base/1/2666 +0 -0
  363. package/gdb/base/1/2667 +0 -0
  364. package/gdb/base/1/2668 +0 -0
  365. package/gdb/base/1/2669 +0 -0
  366. package/gdb/base/1/2670 +0 -0
  367. package/gdb/base/1/2673 +0 -0
  368. package/gdb/base/1/2673_fsm +0 -0
  369. package/gdb/base/1/2674 +0 -0
  370. package/gdb/base/1/2674_fsm +0 -0
  371. package/gdb/base/1/2675 +0 -0
  372. package/gdb/base/1/2678 +0 -0
  373. package/gdb/base/1/2679 +0 -0
  374. package/gdb/base/1/2680 +0 -0
  375. package/gdb/base/1/2681 +0 -0
  376. package/gdb/base/1/2682 +0 -0
  377. package/gdb/base/1/2683 +0 -0
  378. package/gdb/base/1/2684 +0 -0
  379. package/gdb/base/1/2685 +0 -0
  380. package/gdb/base/1/2686 +0 -0
  381. package/gdb/base/1/2687 +0 -0
  382. package/gdb/base/1/2688 +0 -0
  383. package/gdb/base/1/2689 +0 -0
  384. package/gdb/base/1/2690 +0 -0
  385. package/gdb/base/1/2691 +0 -0
  386. package/gdb/base/1/2692 +0 -0
  387. package/gdb/base/1/2693 +0 -0
  388. package/gdb/base/1/2696 +0 -0
  389. package/gdb/base/1/2699 +0 -0
  390. package/gdb/base/1/2701 +0 -0
  391. package/gdb/base/1/2702 +0 -0
  392. package/gdb/base/1/2703 +0 -0
  393. package/gdb/base/1/2704 +0 -0
  394. package/gdb/base/1/2753 +0 -0
  395. package/gdb/base/1/2753_fsm +0 -0
  396. package/gdb/base/1/2753_vm +0 -0
  397. package/gdb/base/1/2754 +0 -0
  398. package/gdb/base/1/2755 +0 -0
  399. package/gdb/base/1/2756 +0 -0
  400. package/gdb/base/1/2757 +0 -0
  401. package/gdb/base/1/2830 +0 -0
  402. package/gdb/base/1/2831 +0 -0
  403. package/gdb/base/1/2832 +0 -0
  404. package/gdb/base/1/2833 +0 -0
  405. package/gdb/base/1/2834 +0 -0
  406. package/gdb/base/1/2835 +0 -0
  407. package/gdb/base/1/2836 +0 -0
  408. package/gdb/base/1/2836_fsm +0 -0
  409. package/gdb/base/1/2836_vm +0 -0
  410. package/gdb/base/1/2837 +0 -0
  411. package/gdb/base/1/2838 +0 -0
  412. package/gdb/base/1/2838_fsm +0 -0
  413. package/gdb/base/1/2838_vm +0 -0
  414. package/gdb/base/1/2839 +0 -0
  415. package/gdb/base/1/2840 +0 -0
  416. package/gdb/base/1/2840_fsm +0 -0
  417. package/gdb/base/1/2840_vm +0 -0
  418. package/gdb/base/1/2841 +0 -0
  419. package/gdb/base/1/2995 +0 -0
  420. package/gdb/base/1/2996 +0 -0
  421. package/gdb/base/1/3079 +0 -0
  422. package/gdb/base/1/3079_fsm +0 -0
  423. package/gdb/base/1/3079_vm +0 -0
  424. package/gdb/base/1/3080 +0 -0
  425. package/gdb/base/1/3081 +0 -0
  426. package/gdb/base/1/3085 +0 -0
  427. package/gdb/base/1/3118 +0 -0
  428. package/gdb/base/1/3119 +0 -0
  429. package/gdb/base/1/3164 +0 -0
  430. package/gdb/base/1/3256 +0 -0
  431. package/gdb/base/1/3257 +0 -0
  432. package/gdb/base/1/3258 +0 -0
  433. package/gdb/base/1/3350 +0 -0
  434. package/gdb/base/1/3351 +0 -0
  435. package/gdb/base/1/3379 +0 -0
  436. package/gdb/base/1/3380 +0 -0
  437. package/gdb/base/1/3381 +0 -0
  438. package/gdb/base/1/3394 +0 -0
  439. package/gdb/base/1/3394_fsm +0 -0
  440. package/gdb/base/1/3394_vm +0 -0
  441. package/gdb/base/1/3395 +0 -0
  442. package/gdb/base/1/3429 +0 -0
  443. package/gdb/base/1/3430 +0 -0
  444. package/gdb/base/1/3431 +0 -0
  445. package/gdb/base/1/3433 +0 -0
  446. package/gdb/base/1/3439 +0 -0
  447. package/gdb/base/1/3440 +0 -0
  448. package/gdb/base/1/3455 +0 -0
  449. package/gdb/base/1/3456 +0 -0
  450. package/gdb/base/1/3456_fsm +0 -0
  451. package/gdb/base/1/3456_vm +0 -0
  452. package/gdb/base/1/3466 +0 -0
  453. package/gdb/base/1/3467 +0 -0
  454. package/gdb/base/1/3468 +0 -0
  455. package/gdb/base/1/3501 +0 -0
  456. package/gdb/base/1/3502 +0 -0
  457. package/gdb/base/1/3503 +0 -0
  458. package/gdb/base/1/3534 +0 -0
  459. package/gdb/base/1/3541 +0 -0
  460. package/gdb/base/1/3541_fsm +0 -0
  461. package/gdb/base/1/3541_vm +0 -0
  462. package/gdb/base/1/3542 +0 -0
  463. package/gdb/base/1/3574 +0 -0
  464. package/gdb/base/1/3575 +0 -0
  465. package/gdb/base/1/3576 +0 -0
  466. package/gdb/base/1/3596 +0 -0
  467. package/gdb/base/1/3597 +0 -0
  468. package/gdb/base/1/3598 +0 -0
  469. package/gdb/base/1/3599 +0 -0
  470. package/gdb/base/1/3600 +0 -0
  471. package/gdb/base/1/3600_fsm +0 -0
  472. package/gdb/base/1/3600_vm +0 -0
  473. package/gdb/base/1/3601 +0 -0
  474. package/gdb/base/1/3601_fsm +0 -0
  475. package/gdb/base/1/3601_vm +0 -0
  476. package/gdb/base/1/3602 +0 -0
  477. package/gdb/base/1/3602_fsm +0 -0
  478. package/gdb/base/1/3602_vm +0 -0
  479. package/gdb/base/1/3603 +0 -0
  480. package/gdb/base/1/3603_fsm +0 -0
  481. package/gdb/base/1/3603_vm +0 -0
  482. package/gdb/base/1/3604 +0 -0
  483. package/gdb/base/1/3605 +0 -0
  484. package/gdb/base/1/3606 +0 -0
  485. package/gdb/base/1/3607 +0 -0
  486. package/gdb/base/1/3608 +0 -0
  487. package/gdb/base/1/3609 +0 -0
  488. package/gdb/base/1/3712 +0 -0
  489. package/gdb/base/1/3764 +0 -0
  490. package/gdb/base/1/3764_fsm +0 -0
  491. package/gdb/base/1/3764_vm +0 -0
  492. package/gdb/base/1/3766 +0 -0
  493. package/gdb/base/1/3767 +0 -0
  494. package/gdb/base/1/3997 +0 -0
  495. package/gdb/base/1/4143 +0 -0
  496. package/gdb/base/1/4144 +0 -0
  497. package/gdb/base/1/4145 +0 -0
  498. package/gdb/base/1/4146 +0 -0
  499. package/gdb/base/1/4147 +0 -0
  500. package/gdb/base/1/4148 +0 -0
  501. package/gdb/base/1/4149 +0 -0
  502. package/gdb/base/1/4150 +0 -0
  503. package/gdb/base/1/4151 +0 -0
  504. package/gdb/base/1/4152 +0 -0
  505. package/gdb/base/1/4153 +0 -0
  506. package/gdb/base/1/4154 +0 -0
  507. package/gdb/base/1/4155 +0 -0
  508. package/gdb/base/1/4156 +0 -0
  509. package/gdb/base/1/4157 +0 -0
  510. package/gdb/base/1/4158 +0 -0
  511. package/gdb/base/1/4159 +0 -0
  512. package/gdb/base/1/4160 +0 -0
  513. package/gdb/base/1/4163 +0 -0
  514. package/gdb/base/1/4164 +0 -0
  515. package/gdb/base/1/4165 +0 -0
  516. package/gdb/base/1/4166 +0 -0
  517. package/gdb/base/1/4167 +0 -0
  518. package/gdb/base/1/4168 +0 -0
  519. package/gdb/base/1/4169 +0 -0
  520. package/gdb/base/1/4170 +0 -0
  521. package/gdb/base/1/4171 +0 -0
  522. package/gdb/base/1/4172 +0 -0
  523. package/gdb/base/1/4173 +0 -0
  524. package/gdb/base/1/4174 +0 -0
  525. package/gdb/base/1/5002 +0 -0
  526. package/gdb/base/1/548 +0 -0
  527. package/gdb/base/1/549 +0 -0
  528. package/gdb/base/1/6102 +0 -0
  529. package/gdb/base/1/6104 +0 -0
  530. package/gdb/base/1/6106 +0 -0
  531. package/gdb/base/1/6110 +0 -0
  532. package/gdb/base/1/6111 +0 -0
  533. package/gdb/base/1/6112 +0 -0
  534. package/gdb/base/1/6113 +0 -0
  535. package/gdb/base/1/6117 +0 -0
  536. package/gdb/base/1/6175 +0 -0
  537. package/gdb/base/1/6176 +0 -0
  538. package/gdb/base/1/826 +0 -0
  539. package/gdb/base/1/827 +0 -0
  540. package/gdb/base/1/828 +0 -0
  541. package/gdb/base/1/PG_VERSION +0 -1
  542. package/gdb/base/1/pg_filenode.map +0 -0
  543. package/gdb/base/14033/112 +0 -0
  544. package/gdb/base/14033/113 +0 -0
  545. package/gdb/base/14033/1247 +0 -0
  546. package/gdb/base/14033/1247_fsm +0 -0
  547. package/gdb/base/14033/1247_vm +0 -0
  548. package/gdb/base/14033/1249 +0 -0
  549. package/gdb/base/14033/1249_fsm +0 -0
  550. package/gdb/base/14033/1249_vm +0 -0
  551. package/gdb/base/14033/1255 +0 -0
  552. package/gdb/base/14033/1255_fsm +0 -0
  553. package/gdb/base/14033/1255_vm +0 -0
  554. package/gdb/base/14033/1259 +0 -0
  555. package/gdb/base/14033/1259_fsm +0 -0
  556. package/gdb/base/14033/1259_vm +0 -0
  557. package/gdb/base/14033/13852 +0 -0
  558. package/gdb/base/14033/13852_fsm +0 -0
  559. package/gdb/base/14033/13852_vm +0 -0
  560. package/gdb/base/14033/13855 +0 -0
  561. package/gdb/base/14033/13856 +0 -0
  562. package/gdb/base/14033/13857 +0 -0
  563. package/gdb/base/14033/13857_fsm +0 -0
  564. package/gdb/base/14033/13857_vm +0 -0
  565. package/gdb/base/14033/13860 +0 -0
  566. package/gdb/base/14033/13861 +0 -0
  567. package/gdb/base/14033/13862 +0 -0
  568. package/gdb/base/14033/13862_fsm +0 -0
  569. package/gdb/base/14033/13862_vm +0 -0
  570. package/gdb/base/14033/13865 +0 -0
  571. package/gdb/base/14033/13866 +0 -0
  572. package/gdb/base/14033/13867 +0 -0
  573. package/gdb/base/14033/13867_fsm +0 -0
  574. package/gdb/base/14033/13867_vm +0 -0
  575. package/gdb/base/14033/13870 +0 -0
  576. package/gdb/base/14033/13871 +0 -0
  577. package/gdb/base/14033/1417 +0 -0
  578. package/gdb/base/14033/1418 +0 -0
  579. package/gdb/base/14033/174 +0 -0
  580. package/gdb/base/14033/175 +0 -0
  581. package/gdb/base/14033/2187 +0 -0
  582. package/gdb/base/14033/2224 +0 -0
  583. package/gdb/base/14033/2228 +0 -0
  584. package/gdb/base/14033/2328 +0 -0
  585. package/gdb/base/14033/2336 +0 -0
  586. package/gdb/base/14033/2337 +0 -0
  587. package/gdb/base/14033/2579 +0 -0
  588. package/gdb/base/14033/2600 +0 -0
  589. package/gdb/base/14033/2600_fsm +0 -0
  590. package/gdb/base/14033/2600_vm +0 -0
  591. package/gdb/base/14033/2601 +0 -0
  592. package/gdb/base/14033/2601_fsm +0 -0
  593. package/gdb/base/14033/2601_vm +0 -0
  594. package/gdb/base/14033/2602 +0 -0
  595. package/gdb/base/14033/2602_fsm +0 -0
  596. package/gdb/base/14033/2602_vm +0 -0
  597. package/gdb/base/14033/2603 +0 -0
  598. package/gdb/base/14033/2603_fsm +0 -0
  599. package/gdb/base/14033/2603_vm +0 -0
  600. package/gdb/base/14033/2604 +0 -0
  601. package/gdb/base/14033/2605 +0 -0
  602. package/gdb/base/14033/2605_fsm +0 -0
  603. package/gdb/base/14033/2605_vm +0 -0
  604. package/gdb/base/14033/2606 +0 -0
  605. package/gdb/base/14033/2606_fsm +0 -0
  606. package/gdb/base/14033/2606_vm +0 -0
  607. package/gdb/base/14033/2607 +0 -0
  608. package/gdb/base/14033/2607_fsm +0 -0
  609. package/gdb/base/14033/2607_vm +0 -0
  610. package/gdb/base/14033/2608 +0 -0
  611. package/gdb/base/14033/2608_fsm +0 -0
  612. package/gdb/base/14033/2608_vm +0 -0
  613. package/gdb/base/14033/2609 +0 -0
  614. package/gdb/base/14033/2609_fsm +0 -0
  615. package/gdb/base/14033/2609_vm +0 -0
  616. package/gdb/base/14033/2610 +0 -0
  617. package/gdb/base/14033/2610_fsm +0 -0
  618. package/gdb/base/14033/2610_vm +0 -0
  619. package/gdb/base/14033/2611 +0 -0
  620. package/gdb/base/14033/2612 +0 -0
  621. package/gdb/base/14033/2612_fsm +0 -0
  622. package/gdb/base/14033/2612_vm +0 -0
  623. package/gdb/base/14033/2613 +0 -0
  624. package/gdb/base/14033/2615 +0 -0
  625. package/gdb/base/14033/2615_fsm +0 -0
  626. package/gdb/base/14033/2615_vm +0 -0
  627. package/gdb/base/14033/2616 +0 -0
  628. package/gdb/base/14033/2616_fsm +0 -0
  629. package/gdb/base/14033/2616_vm +0 -0
  630. package/gdb/base/14033/2617 +0 -0
  631. package/gdb/base/14033/2617_fsm +0 -0
  632. package/gdb/base/14033/2617_vm +0 -0
  633. package/gdb/base/14033/2618 +0 -0
  634. package/gdb/base/14033/2618_fsm +0 -0
  635. package/gdb/base/14033/2618_vm +0 -0
  636. package/gdb/base/14033/2619 +0 -0
  637. package/gdb/base/14033/2619_fsm +0 -0
  638. package/gdb/base/14033/2619_vm +0 -0
  639. package/gdb/base/14033/2620 +0 -0
  640. package/gdb/base/14033/2650 +0 -0
  641. package/gdb/base/14033/2651 +0 -0
  642. package/gdb/base/14033/2652 +0 -0
  643. package/gdb/base/14033/2653 +0 -0
  644. package/gdb/base/14033/2654 +0 -0
  645. package/gdb/base/14033/2655 +0 -0
  646. package/gdb/base/14033/2656 +0 -0
  647. package/gdb/base/14033/2657 +0 -0
  648. package/gdb/base/14033/2658 +0 -0
  649. package/gdb/base/14033/2659 +0 -0
  650. package/gdb/base/14033/2660 +0 -0
  651. package/gdb/base/14033/2661 +0 -0
  652. package/gdb/base/14033/2662 +0 -0
  653. package/gdb/base/14033/2663 +0 -0
  654. package/gdb/base/14033/2664 +0 -0
  655. package/gdb/base/14033/2665 +0 -0
  656. package/gdb/base/14033/2666 +0 -0
  657. package/gdb/base/14033/2667 +0 -0
  658. package/gdb/base/14033/2668 +0 -0
  659. package/gdb/base/14033/2669 +0 -0
  660. package/gdb/base/14033/2670 +0 -0
  661. package/gdb/base/14033/2673 +0 -0
  662. package/gdb/base/14033/2673_fsm +0 -0
  663. package/gdb/base/14033/2674 +0 -0
  664. package/gdb/base/14033/2674_fsm +0 -0
  665. package/gdb/base/14033/2675 +0 -0
  666. package/gdb/base/14033/2678 +0 -0
  667. package/gdb/base/14033/2679 +0 -0
  668. package/gdb/base/14033/2680 +0 -0
  669. package/gdb/base/14033/2681 +0 -0
  670. package/gdb/base/14033/2682 +0 -0
  671. package/gdb/base/14033/2683 +0 -0
  672. package/gdb/base/14033/2684 +0 -0
  673. package/gdb/base/14033/2685 +0 -0
  674. package/gdb/base/14033/2686 +0 -0
  675. package/gdb/base/14033/2687 +0 -0
  676. package/gdb/base/14033/2688 +0 -0
  677. package/gdb/base/14033/2689 +0 -0
  678. package/gdb/base/14033/2690 +0 -0
  679. package/gdb/base/14033/2691 +0 -0
  680. package/gdb/base/14033/2692 +0 -0
  681. package/gdb/base/14033/2693 +0 -0
  682. package/gdb/base/14033/2696 +0 -0
  683. package/gdb/base/14033/2699 +0 -0
  684. package/gdb/base/14033/2701 +0 -0
  685. package/gdb/base/14033/2702 +0 -0
  686. package/gdb/base/14033/2703 +0 -0
  687. package/gdb/base/14033/2704 +0 -0
  688. package/gdb/base/14033/2753 +0 -0
  689. package/gdb/base/14033/2753_fsm +0 -0
  690. package/gdb/base/14033/2753_vm +0 -0
  691. package/gdb/base/14033/2754 +0 -0
  692. package/gdb/base/14033/2755 +0 -0
  693. package/gdb/base/14033/2756 +0 -0
  694. package/gdb/base/14033/2757 +0 -0
  695. package/gdb/base/14033/2830 +0 -0
  696. package/gdb/base/14033/2831 +0 -0
  697. package/gdb/base/14033/2832 +0 -0
  698. package/gdb/base/14033/2833 +0 -0
  699. package/gdb/base/14033/2834 +0 -0
  700. package/gdb/base/14033/2835 +0 -0
  701. package/gdb/base/14033/2836 +0 -0
  702. package/gdb/base/14033/2836_fsm +0 -0
  703. package/gdb/base/14033/2836_vm +0 -0
  704. package/gdb/base/14033/2837 +0 -0
  705. package/gdb/base/14033/2838 +0 -0
  706. package/gdb/base/14033/2838_fsm +0 -0
  707. package/gdb/base/14033/2838_vm +0 -0
  708. package/gdb/base/14033/2839 +0 -0
  709. package/gdb/base/14033/2840 +0 -0
  710. package/gdb/base/14033/2840_fsm +0 -0
  711. package/gdb/base/14033/2840_vm +0 -0
  712. package/gdb/base/14033/2841 +0 -0
  713. package/gdb/base/14033/2995 +0 -0
  714. package/gdb/base/14033/2996 +0 -0
  715. package/gdb/base/14033/3079 +0 -0
  716. package/gdb/base/14033/3079_fsm +0 -0
  717. package/gdb/base/14033/3079_vm +0 -0
  718. package/gdb/base/14033/3080 +0 -0
  719. package/gdb/base/14033/3081 +0 -0
  720. package/gdb/base/14033/3085 +0 -0
  721. package/gdb/base/14033/3118 +0 -0
  722. package/gdb/base/14033/3119 +0 -0
  723. package/gdb/base/14033/3164 +0 -0
  724. package/gdb/base/14033/3256 +0 -0
  725. package/gdb/base/14033/3257 +0 -0
  726. package/gdb/base/14033/3258 +0 -0
  727. package/gdb/base/14033/3350 +0 -0
  728. package/gdb/base/14033/3351 +0 -0
  729. package/gdb/base/14033/3379 +0 -0
  730. package/gdb/base/14033/3380 +0 -0
  731. package/gdb/base/14033/3381 +0 -0
  732. package/gdb/base/14033/3394 +0 -0
  733. package/gdb/base/14033/3394_fsm +0 -0
  734. package/gdb/base/14033/3394_vm +0 -0
  735. package/gdb/base/14033/3395 +0 -0
  736. package/gdb/base/14033/3429 +0 -0
  737. package/gdb/base/14033/3430 +0 -0
  738. package/gdb/base/14033/3431 +0 -0
  739. package/gdb/base/14033/3433 +0 -0
  740. package/gdb/base/14033/3439 +0 -0
  741. package/gdb/base/14033/3440 +0 -0
  742. package/gdb/base/14033/3455 +0 -0
  743. package/gdb/base/14033/3456 +0 -0
  744. package/gdb/base/14033/3456_fsm +0 -0
  745. package/gdb/base/14033/3456_vm +0 -0
  746. package/gdb/base/14033/3466 +0 -0
  747. package/gdb/base/14033/3467 +0 -0
  748. package/gdb/base/14033/3468 +0 -0
  749. package/gdb/base/14033/3501 +0 -0
  750. package/gdb/base/14033/3502 +0 -0
  751. package/gdb/base/14033/3503 +0 -0
  752. package/gdb/base/14033/3534 +0 -0
  753. package/gdb/base/14033/3541 +0 -0
  754. package/gdb/base/14033/3541_fsm +0 -0
  755. package/gdb/base/14033/3541_vm +0 -0
  756. package/gdb/base/14033/3542 +0 -0
  757. package/gdb/base/14033/3574 +0 -0
  758. package/gdb/base/14033/3575 +0 -0
  759. package/gdb/base/14033/3576 +0 -0
  760. package/gdb/base/14033/3596 +0 -0
  761. package/gdb/base/14033/3597 +0 -0
  762. package/gdb/base/14033/3598 +0 -0
  763. package/gdb/base/14033/3599 +0 -0
  764. package/gdb/base/14033/3600 +0 -0
  765. package/gdb/base/14033/3600_fsm +0 -0
  766. package/gdb/base/14033/3600_vm +0 -0
  767. package/gdb/base/14033/3601 +0 -0
  768. package/gdb/base/14033/3601_fsm +0 -0
  769. package/gdb/base/14033/3601_vm +0 -0
  770. package/gdb/base/14033/3602 +0 -0
  771. package/gdb/base/14033/3602_fsm +0 -0
  772. package/gdb/base/14033/3602_vm +0 -0
  773. package/gdb/base/14033/3603 +0 -0
  774. package/gdb/base/14033/3603_fsm +0 -0
  775. package/gdb/base/14033/3603_vm +0 -0
  776. package/gdb/base/14033/3604 +0 -0
  777. package/gdb/base/14033/3605 +0 -0
  778. package/gdb/base/14033/3606 +0 -0
  779. package/gdb/base/14033/3607 +0 -0
  780. package/gdb/base/14033/3608 +0 -0
  781. package/gdb/base/14033/3609 +0 -0
  782. package/gdb/base/14033/3712 +0 -0
  783. package/gdb/base/14033/3764 +0 -0
  784. package/gdb/base/14033/3764_fsm +0 -0
  785. package/gdb/base/14033/3764_vm +0 -0
  786. package/gdb/base/14033/3766 +0 -0
  787. package/gdb/base/14033/3767 +0 -0
  788. package/gdb/base/14033/3997 +0 -0
  789. package/gdb/base/14033/4143 +0 -0
  790. package/gdb/base/14033/4144 +0 -0
  791. package/gdb/base/14033/4145 +0 -0
  792. package/gdb/base/14033/4146 +0 -0
  793. package/gdb/base/14033/4147 +0 -0
  794. package/gdb/base/14033/4148 +0 -0
  795. package/gdb/base/14033/4149 +0 -0
  796. package/gdb/base/14033/4150 +0 -0
  797. package/gdb/base/14033/4151 +0 -0
  798. package/gdb/base/14033/4152 +0 -0
  799. package/gdb/base/14033/4153 +0 -0
  800. package/gdb/base/14033/4154 +0 -0
  801. package/gdb/base/14033/4155 +0 -0
  802. package/gdb/base/14033/4156 +0 -0
  803. package/gdb/base/14033/4157 +0 -0
  804. package/gdb/base/14033/4158 +0 -0
  805. package/gdb/base/14033/4159 +0 -0
  806. package/gdb/base/14033/4160 +0 -0
  807. package/gdb/base/14033/4163 +0 -0
  808. package/gdb/base/14033/4164 +0 -0
  809. package/gdb/base/14033/4165 +0 -0
  810. package/gdb/base/14033/4166 +0 -0
  811. package/gdb/base/14033/4167 +0 -0
  812. package/gdb/base/14033/4168 +0 -0
  813. package/gdb/base/14033/4169 +0 -0
  814. package/gdb/base/14033/4170 +0 -0
  815. package/gdb/base/14033/4171 +0 -0
  816. package/gdb/base/14033/4172 +0 -0
  817. package/gdb/base/14033/4173 +0 -0
  818. package/gdb/base/14033/4174 +0 -0
  819. package/gdb/base/14033/5002 +0 -0
  820. package/gdb/base/14033/548 +0 -0
  821. package/gdb/base/14033/549 +0 -0
  822. package/gdb/base/14033/6102 +0 -0
  823. package/gdb/base/14033/6104 +0 -0
  824. package/gdb/base/14033/6106 +0 -0
  825. package/gdb/base/14033/6110 +0 -0
  826. package/gdb/base/14033/6111 +0 -0
  827. package/gdb/base/14033/6112 +0 -0
  828. package/gdb/base/14033/6113 +0 -0
  829. package/gdb/base/14033/6117 +0 -0
  830. package/gdb/base/14033/6175 +0 -0
  831. package/gdb/base/14033/6176 +0 -0
  832. package/gdb/base/14033/826 +0 -0
  833. package/gdb/base/14033/827 +0 -0
  834. package/gdb/base/14033/828 +0 -0
  835. package/gdb/base/14033/PG_VERSION +0 -1
  836. package/gdb/base/14033/pg_filenode.map +0 -0
  837. package/gdb/base/14034/112 +0 -0
  838. package/gdb/base/14034/113 +0 -0
  839. package/gdb/base/14034/1247 +0 -0
  840. package/gdb/base/14034/1247_fsm +0 -0
  841. package/gdb/base/14034/1247_vm +0 -0
  842. package/gdb/base/14034/1249 +0 -0
  843. package/gdb/base/14034/1249_fsm +0 -0
  844. package/gdb/base/14034/1249_vm +0 -0
  845. package/gdb/base/14034/1255 +0 -0
  846. package/gdb/base/14034/1255_fsm +0 -0
  847. package/gdb/base/14034/1255_vm +0 -0
  848. package/gdb/base/14034/1259 +0 -0
  849. package/gdb/base/14034/1259_fsm +0 -0
  850. package/gdb/base/14034/1259_vm +0 -0
  851. package/gdb/base/14034/13852 +0 -0
  852. package/gdb/base/14034/13852_fsm +0 -0
  853. package/gdb/base/14034/13852_vm +0 -0
  854. package/gdb/base/14034/13855 +0 -0
  855. package/gdb/base/14034/13856 +0 -0
  856. package/gdb/base/14034/13857 +0 -0
  857. package/gdb/base/14034/13857_fsm +0 -0
  858. package/gdb/base/14034/13857_vm +0 -0
  859. package/gdb/base/14034/13860 +0 -0
  860. package/gdb/base/14034/13861 +0 -0
  861. package/gdb/base/14034/13862 +0 -0
  862. package/gdb/base/14034/13862_fsm +0 -0
  863. package/gdb/base/14034/13862_vm +0 -0
  864. package/gdb/base/14034/13865 +0 -0
  865. package/gdb/base/14034/13866 +0 -0
  866. package/gdb/base/14034/13867 +0 -0
  867. package/gdb/base/14034/13867_fsm +0 -0
  868. package/gdb/base/14034/13867_vm +0 -0
  869. package/gdb/base/14034/13870 +0 -0
  870. package/gdb/base/14034/13871 +0 -0
  871. package/gdb/base/14034/1417 +0 -0
  872. package/gdb/base/14034/1418 +0 -0
  873. package/gdb/base/14034/16386 +0 -0
  874. package/gdb/base/14034/16389 +0 -0
  875. package/gdb/base/14034/16390 +0 -0
  876. package/gdb/base/14034/16391 +0 -0
  877. package/gdb/base/14034/16393 +0 -0
  878. package/gdb/base/14034/16396 +0 -0
  879. package/gdb/base/14034/16397 +0 -0
  880. package/gdb/base/14034/16398 +0 -0
  881. package/gdb/base/14034/16400 +0 -0
  882. package/gdb/base/14034/16403 +0 -0
  883. package/gdb/base/14034/16404 +0 -0
  884. package/gdb/base/14034/16420 +0 -0
  885. package/gdb/base/14034/16423 +0 -0
  886. package/gdb/base/14034/16424 +0 -0
  887. package/gdb/base/14034/16425 +0 -0
  888. package/gdb/base/14034/16427 +0 -0
  889. package/gdb/base/14034/16430 +0 -0
  890. package/gdb/base/14034/16431 +0 -0
  891. package/gdb/base/14034/16432 +0 -0
  892. package/gdb/base/14034/16434 +0 -0
  893. package/gdb/base/14034/16437 +0 -0
  894. package/gdb/base/14034/16438 +0 -0
  895. package/gdb/base/14034/16439 +0 -0
  896. package/gdb/base/14034/16446 +0 -0
  897. package/gdb/base/14034/16449 +0 -0
  898. package/gdb/base/14034/16450 +0 -0
  899. package/gdb/base/14034/16451 +0 -0
  900. package/gdb/base/14034/16458 +0 -0
  901. package/gdb/base/14034/16461 +0 -0
  902. package/gdb/base/14034/16462 +0 -0
  903. package/gdb/base/14034/16463 +0 -0
  904. package/gdb/base/14034/16475 +0 -0
  905. package/gdb/base/14034/16478 +0 -0
  906. package/gdb/base/14034/16479 +0 -0
  907. package/gdb/base/14034/16480 +0 -0
  908. package/gdb/base/14034/174 +0 -0
  909. package/gdb/base/14034/175 +0 -0
  910. package/gdb/base/14034/2187 +0 -0
  911. package/gdb/base/14034/2224 +0 -0
  912. package/gdb/base/14034/2228 +0 -0
  913. package/gdb/base/14034/2328 +0 -0
  914. package/gdb/base/14034/2336 +0 -0
  915. package/gdb/base/14034/2337 +0 -0
  916. package/gdb/base/14034/2579 +0 -0
  917. package/gdb/base/14034/2600 +0 -0
  918. package/gdb/base/14034/2600_fsm +0 -0
  919. package/gdb/base/14034/2600_vm +0 -0
  920. package/gdb/base/14034/2601 +0 -0
  921. package/gdb/base/14034/2601_fsm +0 -0
  922. package/gdb/base/14034/2601_vm +0 -0
  923. package/gdb/base/14034/2602 +0 -0
  924. package/gdb/base/14034/2602_fsm +0 -0
  925. package/gdb/base/14034/2602_vm +0 -0
  926. package/gdb/base/14034/2603 +0 -0
  927. package/gdb/base/14034/2603_fsm +0 -0
  928. package/gdb/base/14034/2603_vm +0 -0
  929. package/gdb/base/14034/2604 +0 -0
  930. package/gdb/base/14034/2605 +0 -0
  931. package/gdb/base/14034/2605_fsm +0 -0
  932. package/gdb/base/14034/2605_vm +0 -0
  933. package/gdb/base/14034/2606 +0 -0
  934. package/gdb/base/14034/2606_fsm +0 -0
  935. package/gdb/base/14034/2606_vm +0 -0
  936. package/gdb/base/14034/2607 +0 -0
  937. package/gdb/base/14034/2607_fsm +0 -0
  938. package/gdb/base/14034/2607_vm +0 -0
  939. package/gdb/base/14034/2608 +0 -0
  940. package/gdb/base/14034/2608_fsm +0 -0
  941. package/gdb/base/14034/2608_vm +0 -0
  942. package/gdb/base/14034/2609 +0 -0
  943. package/gdb/base/14034/2609_fsm +0 -0
  944. package/gdb/base/14034/2609_vm +0 -0
  945. package/gdb/base/14034/2610 +0 -0
  946. package/gdb/base/14034/2610_fsm +0 -0
  947. package/gdb/base/14034/2610_vm +0 -0
  948. package/gdb/base/14034/2611 +0 -0
  949. package/gdb/base/14034/2612 +0 -0
  950. package/gdb/base/14034/2612_fsm +0 -0
  951. package/gdb/base/14034/2612_vm +0 -0
  952. package/gdb/base/14034/2613 +0 -0
  953. package/gdb/base/14034/2615 +0 -0
  954. package/gdb/base/14034/2615_fsm +0 -0
  955. package/gdb/base/14034/2615_vm +0 -0
  956. package/gdb/base/14034/2616 +0 -0
  957. package/gdb/base/14034/2616_fsm +0 -0
  958. package/gdb/base/14034/2616_vm +0 -0
  959. package/gdb/base/14034/2617 +0 -0
  960. package/gdb/base/14034/2617_fsm +0 -0
  961. package/gdb/base/14034/2617_vm +0 -0
  962. package/gdb/base/14034/2618 +0 -0
  963. package/gdb/base/14034/2618_fsm +0 -0
  964. package/gdb/base/14034/2618_vm +0 -0
  965. package/gdb/base/14034/2619 +0 -0
  966. package/gdb/base/14034/2619_fsm +0 -0
  967. package/gdb/base/14034/2619_vm +0 -0
  968. package/gdb/base/14034/2620 +0 -0
  969. package/gdb/base/14034/2650 +0 -0
  970. package/gdb/base/14034/2651 +0 -0
  971. package/gdb/base/14034/2652 +0 -0
  972. package/gdb/base/14034/2653 +0 -0
  973. package/gdb/base/14034/2654 +0 -0
  974. package/gdb/base/14034/2655 +0 -0
  975. package/gdb/base/14034/2656 +0 -0
  976. package/gdb/base/14034/2657 +0 -0
  977. package/gdb/base/14034/2658 +0 -0
  978. package/gdb/base/14034/2659 +0 -0
  979. package/gdb/base/14034/2660 +0 -0
  980. package/gdb/base/14034/2661 +0 -0
  981. package/gdb/base/14034/2662 +0 -0
  982. package/gdb/base/14034/2663 +0 -0
  983. package/gdb/base/14034/2664 +0 -0
  984. package/gdb/base/14034/2665 +0 -0
  985. package/gdb/base/14034/2666 +0 -0
  986. package/gdb/base/14034/2667 +0 -0
  987. package/gdb/base/14034/2668 +0 -0
  988. package/gdb/base/14034/2669 +0 -0
  989. package/gdb/base/14034/2670 +0 -0
  990. package/gdb/base/14034/2673 +0 -0
  991. package/gdb/base/14034/2673_fsm +0 -0
  992. package/gdb/base/14034/2674 +0 -0
  993. package/gdb/base/14034/2674_fsm +0 -0
  994. package/gdb/base/14034/2675 +0 -0
  995. package/gdb/base/14034/2678 +0 -0
  996. package/gdb/base/14034/2679 +0 -0
  997. package/gdb/base/14034/2680 +0 -0
  998. package/gdb/base/14034/2681 +0 -0
  999. package/gdb/base/14034/2682 +0 -0
  1000. package/gdb/base/14034/2683 +0 -0
  1001. package/gdb/base/14034/2684 +0 -0
  1002. package/gdb/base/14034/2685 +0 -0
  1003. package/gdb/base/14034/2686 +0 -0
  1004. package/gdb/base/14034/2687 +0 -0
  1005. package/gdb/base/14034/2688 +0 -0
  1006. package/gdb/base/14034/2689 +0 -0
  1007. package/gdb/base/14034/2690 +0 -0
  1008. package/gdb/base/14034/2691 +0 -0
  1009. package/gdb/base/14034/2692 +0 -0
  1010. package/gdb/base/14034/2693 +0 -0
  1011. package/gdb/base/14034/2696 +0 -0
  1012. package/gdb/base/14034/2699 +0 -0
  1013. package/gdb/base/14034/2701 +0 -0
  1014. package/gdb/base/14034/2702 +0 -0
  1015. package/gdb/base/14034/2703 +0 -0
  1016. package/gdb/base/14034/2704 +0 -0
  1017. package/gdb/base/14034/2753 +0 -0
  1018. package/gdb/base/14034/2753_fsm +0 -0
  1019. package/gdb/base/14034/2753_vm +0 -0
  1020. package/gdb/base/14034/2754 +0 -0
  1021. package/gdb/base/14034/2755 +0 -0
  1022. package/gdb/base/14034/2756 +0 -0
  1023. package/gdb/base/14034/2757 +0 -0
  1024. package/gdb/base/14034/2830 +0 -0
  1025. package/gdb/base/14034/2831 +0 -0
  1026. package/gdb/base/14034/2832 +0 -0
  1027. package/gdb/base/14034/2833 +0 -0
  1028. package/gdb/base/14034/2834 +0 -0
  1029. package/gdb/base/14034/2835 +0 -0
  1030. package/gdb/base/14034/2836 +0 -0
  1031. package/gdb/base/14034/2836_fsm +0 -0
  1032. package/gdb/base/14034/2836_vm +0 -0
  1033. package/gdb/base/14034/2837 +0 -0
  1034. package/gdb/base/14034/2838 +0 -0
  1035. package/gdb/base/14034/2838_fsm +0 -0
  1036. package/gdb/base/14034/2838_vm +0 -0
  1037. package/gdb/base/14034/2839 +0 -0
  1038. package/gdb/base/14034/2840 +0 -0
  1039. package/gdb/base/14034/2840_fsm +0 -0
  1040. package/gdb/base/14034/2840_vm +0 -0
  1041. package/gdb/base/14034/2841 +0 -0
  1042. package/gdb/base/14034/2995 +0 -0
  1043. package/gdb/base/14034/2996 +0 -0
  1044. package/gdb/base/14034/3079 +0 -0
  1045. package/gdb/base/14034/3079_fsm +0 -0
  1046. package/gdb/base/14034/3079_vm +0 -0
  1047. package/gdb/base/14034/3080 +0 -0
  1048. package/gdb/base/14034/3081 +0 -0
  1049. package/gdb/base/14034/3085 +0 -0
  1050. package/gdb/base/14034/3118 +0 -0
  1051. package/gdb/base/14034/3119 +0 -0
  1052. package/gdb/base/14034/3164 +0 -0
  1053. package/gdb/base/14034/3256 +0 -0
  1054. package/gdb/base/14034/3257 +0 -0
  1055. package/gdb/base/14034/3258 +0 -0
  1056. package/gdb/base/14034/3350 +0 -0
  1057. package/gdb/base/14034/3351 +0 -0
  1058. package/gdb/base/14034/3379 +0 -0
  1059. package/gdb/base/14034/3380 +0 -0
  1060. package/gdb/base/14034/3381 +0 -0
  1061. package/gdb/base/14034/3394 +0 -0
  1062. package/gdb/base/14034/3394_fsm +0 -0
  1063. package/gdb/base/14034/3394_vm +0 -0
  1064. package/gdb/base/14034/3395 +0 -0
  1065. package/gdb/base/14034/3429 +0 -0
  1066. package/gdb/base/14034/3430 +0 -0
  1067. package/gdb/base/14034/3431 +0 -0
  1068. package/gdb/base/14034/3433 +0 -0
  1069. package/gdb/base/14034/3439 +0 -0
  1070. package/gdb/base/14034/3440 +0 -0
  1071. package/gdb/base/14034/3455 +0 -0
  1072. package/gdb/base/14034/3456 +0 -0
  1073. package/gdb/base/14034/3456_fsm +0 -0
  1074. package/gdb/base/14034/3456_vm +0 -0
  1075. package/gdb/base/14034/3466 +0 -0
  1076. package/gdb/base/14034/3467 +0 -0
  1077. package/gdb/base/14034/3468 +0 -0
  1078. package/gdb/base/14034/3501 +0 -0
  1079. package/gdb/base/14034/3502 +0 -0
  1080. package/gdb/base/14034/3503 +0 -0
  1081. package/gdb/base/14034/3534 +0 -0
  1082. package/gdb/base/14034/3541 +0 -0
  1083. package/gdb/base/14034/3541_fsm +0 -0
  1084. package/gdb/base/14034/3541_vm +0 -0
  1085. package/gdb/base/14034/3542 +0 -0
  1086. package/gdb/base/14034/3574 +0 -0
  1087. package/gdb/base/14034/3575 +0 -0
  1088. package/gdb/base/14034/3576 +0 -0
  1089. package/gdb/base/14034/3596 +0 -0
  1090. package/gdb/base/14034/3597 +0 -0
  1091. package/gdb/base/14034/3598 +0 -0
  1092. package/gdb/base/14034/3599 +0 -0
  1093. package/gdb/base/14034/3600 +0 -0
  1094. package/gdb/base/14034/3600_fsm +0 -0
  1095. package/gdb/base/14034/3600_vm +0 -0
  1096. package/gdb/base/14034/3601 +0 -0
  1097. package/gdb/base/14034/3601_fsm +0 -0
  1098. package/gdb/base/14034/3601_vm +0 -0
  1099. package/gdb/base/14034/3602 +0 -0
  1100. package/gdb/base/14034/3602_fsm +0 -0
  1101. package/gdb/base/14034/3602_vm +0 -0
  1102. package/gdb/base/14034/3603 +0 -0
  1103. package/gdb/base/14034/3603_fsm +0 -0
  1104. package/gdb/base/14034/3603_vm +0 -0
  1105. package/gdb/base/14034/3604 +0 -0
  1106. package/gdb/base/14034/3605 +0 -0
  1107. package/gdb/base/14034/3606 +0 -0
  1108. package/gdb/base/14034/3607 +0 -0
  1109. package/gdb/base/14034/3608 +0 -0
  1110. package/gdb/base/14034/3609 +0 -0
  1111. package/gdb/base/14034/3712 +0 -0
  1112. package/gdb/base/14034/3764 +0 -0
  1113. package/gdb/base/14034/3764_fsm +0 -0
  1114. package/gdb/base/14034/3764_vm +0 -0
  1115. package/gdb/base/14034/3766 +0 -0
  1116. package/gdb/base/14034/3767 +0 -0
  1117. package/gdb/base/14034/3997 +0 -0
  1118. package/gdb/base/14034/4143 +0 -0
  1119. package/gdb/base/14034/4144 +0 -0
  1120. package/gdb/base/14034/4145 +0 -0
  1121. package/gdb/base/14034/4146 +0 -0
  1122. package/gdb/base/14034/4147 +0 -0
  1123. package/gdb/base/14034/4148 +0 -0
  1124. package/gdb/base/14034/4149 +0 -0
  1125. package/gdb/base/14034/4150 +0 -0
  1126. package/gdb/base/14034/4151 +0 -0
  1127. package/gdb/base/14034/4152 +0 -0
  1128. package/gdb/base/14034/4153 +0 -0
  1129. package/gdb/base/14034/4154 +0 -0
  1130. package/gdb/base/14034/4155 +0 -0
  1131. package/gdb/base/14034/4156 +0 -0
  1132. package/gdb/base/14034/4157 +0 -0
  1133. package/gdb/base/14034/4158 +0 -0
  1134. package/gdb/base/14034/4159 +0 -0
  1135. package/gdb/base/14034/4160 +0 -0
  1136. package/gdb/base/14034/4163 +0 -0
  1137. package/gdb/base/14034/4164 +0 -0
  1138. package/gdb/base/14034/4165 +0 -0
  1139. package/gdb/base/14034/4166 +0 -0
  1140. package/gdb/base/14034/4167 +0 -0
  1141. package/gdb/base/14034/4168 +0 -0
  1142. package/gdb/base/14034/4169 +0 -0
  1143. package/gdb/base/14034/4170 +0 -0
  1144. package/gdb/base/14034/4171 +0 -0
  1145. package/gdb/base/14034/4172 +0 -0
  1146. package/gdb/base/14034/4173 +0 -0
  1147. package/gdb/base/14034/4174 +0 -0
  1148. package/gdb/base/14034/5002 +0 -0
  1149. package/gdb/base/14034/548 +0 -0
  1150. package/gdb/base/14034/549 +0 -0
  1151. package/gdb/base/14034/6102 +0 -0
  1152. package/gdb/base/14034/6104 +0 -0
  1153. package/gdb/base/14034/6106 +0 -0
  1154. package/gdb/base/14034/6110 +0 -0
  1155. package/gdb/base/14034/6111 +0 -0
  1156. package/gdb/base/14034/6112 +0 -0
  1157. package/gdb/base/14034/6113 +0 -0
  1158. package/gdb/base/14034/6117 +0 -0
  1159. package/gdb/base/14034/6175 +0 -0
  1160. package/gdb/base/14034/6176 +0 -0
  1161. package/gdb/base/14034/826 +0 -0
  1162. package/gdb/base/14034/827 +0 -0
  1163. package/gdb/base/14034/828 +0 -0
  1164. package/gdb/base/14034/PG_VERSION +0 -1
  1165. package/gdb/base/14034/pg_filenode.map +0 -0
  1166. package/gdb/base/14034/pg_internal.init +0 -0
  1167. package/gdb/global/1213 +0 -0
  1168. package/gdb/global/1213_fsm +0 -0
  1169. package/gdb/global/1213_vm +0 -0
  1170. package/gdb/global/1214 +0 -0
  1171. package/gdb/global/1214_fsm +0 -0
  1172. package/gdb/global/1214_vm +0 -0
  1173. package/gdb/global/1232 +0 -0
  1174. package/gdb/global/1233 +0 -0
  1175. package/gdb/global/1260 +0 -0
  1176. package/gdb/global/1260_fsm +0 -0
  1177. package/gdb/global/1260_vm +0 -0
  1178. package/gdb/global/1261 +0 -0
  1179. package/gdb/global/1261_fsm +0 -0
  1180. package/gdb/global/1261_vm +0 -0
  1181. package/gdb/global/1262 +0 -0
  1182. package/gdb/global/1262_fsm +0 -0
  1183. package/gdb/global/1262_vm +0 -0
  1184. package/gdb/global/2396 +0 -0
  1185. package/gdb/global/2396_fsm +0 -0
  1186. package/gdb/global/2396_vm +0 -0
  1187. package/gdb/global/2397 +0 -0
  1188. package/gdb/global/2671 +0 -0
  1189. package/gdb/global/2672 +0 -0
  1190. package/gdb/global/2676 +0 -0
  1191. package/gdb/global/2677 +0 -0
  1192. package/gdb/global/2694 +0 -0
  1193. package/gdb/global/2695 +0 -0
  1194. package/gdb/global/2697 +0 -0
  1195. package/gdb/global/2698 +0 -0
  1196. package/gdb/global/2846 +0 -0
  1197. package/gdb/global/2847 +0 -0
  1198. package/gdb/global/2964 +0 -0
  1199. package/gdb/global/2965 +0 -0
  1200. package/gdb/global/2966 +0 -0
  1201. package/gdb/global/2967 +0 -0
  1202. package/gdb/global/3592 +0 -0
  1203. package/gdb/global/3593 +0 -0
  1204. package/gdb/global/4060 +0 -0
  1205. package/gdb/global/4061 +0 -0
  1206. package/gdb/global/4175 +0 -0
  1207. package/gdb/global/4176 +0 -0
  1208. package/gdb/global/4177 +0 -0
  1209. package/gdb/global/4178 +0 -0
  1210. package/gdb/global/4181 +0 -0
  1211. package/gdb/global/4182 +0 -0
  1212. package/gdb/global/4183 +0 -0
  1213. package/gdb/global/4184 +0 -0
  1214. package/gdb/global/4185 +0 -0
  1215. package/gdb/global/4186 +0 -0
  1216. package/gdb/global/6000 +0 -0
  1217. package/gdb/global/6001 +0 -0
  1218. package/gdb/global/6002 +0 -0
  1219. package/gdb/global/6100 +0 -0
  1220. package/gdb/global/6114 +0 -0
  1221. package/gdb/global/6115 +0 -0
  1222. package/gdb/global/pg_control +0 -0
  1223. package/gdb/global/pg_filenode.map +0 -0
  1224. package/gdb/global/pg_internal.init +0 -0
  1225. package/gdb/pg_hba.conf +0 -98
  1226. package/gdb/pg_ident.conf +0 -42
  1227. package/gdb/pg_logical/replorigin_checkpoint +0 -0
  1228. package/gdb/pg_multixact/members/0000 +0 -0
  1229. package/gdb/pg_multixact/offsets/0000 +0 -0
  1230. package/gdb/pg_stat/db_0.stat +0 -0
  1231. package/gdb/pg_stat/db_14034.stat +0 -0
  1232. package/gdb/pg_stat/global.stat +0 -0
  1233. package/gdb/pg_subtrans/0000 +0 -0
  1234. package/gdb/pg_wal/000000010000000000000001 +0 -0
  1235. package/gdb/pg_xact/0000 +0 -0
  1236. package/gdb/postgresql.auto.conf +0 -2
  1237. package/gdb/postgresql.conf +0 -796
  1238. package/gdb/postmaster.opts +0 -1
  1239. package/server/API Project-7d45e9f24a96.p12 +0 -0
  1240. package/server/grnmap.pem +0 -31
  1241. package/server/grnsight.pem +0 -19
  1242. package/test-files/import-samples/attributes.graphml +0 -40
  1243. package/test-files/import-samples/port.graphml +0 -32
  1244. package/test-files/import-samples/simple.graphml +0 -31
  1245. package/web-client/public/js/grnsight.min.js +0 -2371
@@ -1,378 +0,0 @@
1
- <!doctype html>
2
- <html>
3
-
4
- <head>
5
- <title>GRNsight - Publications</title>
6
- <link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
7
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
8
- <link rel="stylesheet" type="text/css" href="/GRNsight/assets/css/main.css">
9
- <meta charset="utf-8">
10
- <!-- Begin Jekyll SEO tag v2.6.1 -->
11
- <meta name="generator" content="Jekyll v3.9.0" />
12
- <meta property="og:title" content="Publications" />
13
- <meta property="og:locale" content="en_US" />
14
- <meta name="description" content="Papers, talks, and posters about GRNsight, a web application and service for visualizing models of small- to medium-scale gene regulatory networks." />
15
- <meta property="og:description" content="Papers, talks, and posters about GRNsight, a web application and service for visualizing models of small- to medium-scale gene regulatory networks." />
16
- <link rel="canonical" href="http://localhost:3001/GRNsight/publications.html" />
17
- <meta property="og:url" content="http://localhost:3001/GRNsight/publications.html" />
18
- <meta property="og:site_name" content="GRNsight" />
19
- <script type="application/ld+json">
20
- {"@type":"WebPage","url":"http://localhost:3001/GRNsight/publications.html","description":"Papers, talks, and posters about GRNsight, a web application and service for visualizing models of small- to medium-scale gene regulatory networks.","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:3001/GRNsight/assets/images/GRNsight_logo_20140710_main_resized.jpg"}},"headline":"Publications","@context":"https://schema.org"}</script>
21
- <!-- End Jekyll SEO tag -->
22
-
23
- </head>
24
-
25
-
26
- <body>
27
-
28
- <div id="header">
29
- <div id="logo">
30
- <a href="http://dondi.github.io/GRNsight"><img id="GRNsightLogo" src="/GRNsight/assets/images/GRNsight_logo_20140710_main_resized.jpg" alt="GRNsight" width="200" height="118"></a></div>
31
- <div id="lmu">
32
- <a href="http://www.lmu.edu" target="_blank"><img src="/GRNsight/assets/images/LMULogoHQ2.png" alt="LMU logo" width="200" height="118" id="lmuLogo" /></a><br /><br /><br />
33
- <p id="subtextLMU">A Joint Project of the<br /> LMU Bioinformatics and Biomathematics Groups</p>
34
- </div>
35
- <p id="title"><a href="/GRNsight">GRNsight</a></p>
36
- <p id="subtext">Web app and service for visualizing models of gene regulatory networks.</p>
37
- <div class="alert alert-success d-none" id="cookie-notice" role="alert">
38
- <div>This site uses Google Analytics to count pageviews and file uploads to demonstrate usage of our software to interested parties such as our employers and funding agencies. Information about your use of this site is shared with Google. By using this site, you agree to its use of cookies.</div>
39
- <button class="cookie-action" data-dismiss="alert" aria-label="Got It">
40
- <strong>Got It</strong>
41
- </button>
42
- <a target="_blank" class="cookie-action" href="https://www.google.com/policies/technologies/cookies/">
43
- <strong>Learn More</strong>
44
- </a>
45
- </div>
46
-
47
- </div>
48
-
49
- <div id="navBar" class=".backBox">
50
- <div id="stickyBar" data-spy="affix" data-offset-top="140">
51
- <ul class="nav">
52
- <li><a href="/GRNsight/">Home</a></li>
53
- <li><a href="/GRNsight/about.html">About</a></li>
54
- <li><a href="/GRNsight/news.html">News</a></li>
55
- <li><a href="https://github.com/dondi/GRNsight" target="_blank">Developers</a></li>
56
- <li><a href="/GRNsight/documentation.html">Documentation</a></li>
57
- <li><a href="https://github.com/dondi/GRNsight/wiki" target="_blank">Wiki</a></li>
58
- <li><a href="/GRNsight/publications.html">Publications</a></li>
59
- <li><a href="/GRNsight/people.html">People</a></li>
60
- <li><a href="/GRNsight/contact.html">Contact</a></li>
61
- <li><a href="/GRNsight/links.html">Links</a></li>
62
- <li><a href="/GRNsight/beta.html">Beta</a></li>
63
- <li><a href="/GRNsight/about.html#privacy">Privacy</a></li>
64
-
65
- </ul>
66
- <p id="modText" class="modNav">
67
- Last modified: 6/24/18
68
- </p>
69
- </div>
70
-
71
- </div>
72
-
73
- <div id="mainContent">
74
- <p id="pageTitle">Publications</p>
75
-
76
- <div id="pageContent">
77
- <div class="panel-group">
78
- <div class="panel panel-default">
79
- <div class="panel-heading">
80
- <p class="panel-title aboutHeaders">
81
- <a href="#papers" data-toggle="collapse">
82
- Papers
83
- </a>
84
- </p>
85
- </div>
86
-
87
- <div id="papers" class="panel-collapse collapse in">
88
- <div class="panel-body">
89
-
90
- <p class="publication">
91
- <b>September 12, 2016</b><br>
92
- Kam D. Dahlquist, John David N. Dionisio, Ben G. Fitzpatrick, Nicole A. Anguiano, Anindita Varshneya, Britain J. Southwick, Mihir Samdarshi. (2016) GRNsight: a web application and service for visualizing models of small- to medium-scale gene regulatory networks. <em>PeerJ Computer Science</em> 2:e85 <a href="https://doi.org/10.7717/peerj-cs.85" target="_blank">https://doi.org/10.7717/peerj-cs.85</a><br><br>
93
-
94
- <a href="https://doi.org/10.7717/peerj-cs.85" target="_blank">View HTML with embedded PDF</a><br>
95
- <a href="https://peerj.com/articles/cs-85.pdf" target="_blank">Download PDF (2.7 MB)</a><br>
96
- <a href="https://peerj.com/articles/cs-85/reviews/" target="_blank">See peer review history</a><br><br>
97
-
98
- <i>Note that preprints of this article were posted in PeerJ Preprints on <a href="https://peerj.com/preprints/2068v1/" target="_blank">May 23</a> and <a href="https://peerj.com/preprints/2068v2/" target="_blank">August 18</a>, 2016.</i><br><br>
99
-
100
- <b>Abstract</b><br>
101
- GRNsight is a web application and service for visualizing models of gene regulatory networks (GRNs). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. The original motivation came from our efforts to perform parameter estimation and forward simulation of the dynamics of a differential equations model of a small GRN with 21 nodes and 31 edges. We wanted a quick and easy way to visualize the weight parameters from the model which represent the direction and magnitude of the influence of a transcription factor on its target gene, so we created GRNsight. GRNsight automatically lays out either an unweighted or weighted network graph based on an Excel spreadsheet containing an adjacency matrix where regulators are named in the columns and target genes in the rows, a Simple Interaction Format (SIF) text file, or a GraphML XML file. When a user uploads an input file specifying an unweighted network, GRNsight automatically lays out the graph using black lines and pointed arrowheads. For a weighted network, GRNsight uses pointed and blunt arrowheads, and colors the edges and adjusts their thicknesses based on the sign (positive for activation or negative for repression) and magnitude of the weight parameter. GRNsight is written in JavaScript, with diagrams facilitated by D3.js, a data visualization library. Node.js and the Express framework handle server-side functions. GRNsight’s diagrams are based on D3.js’s force graph layout algorithm, which was then extensively customized to support the specific needs of GRNs. Nodes are rectangular and support gene labels of up to 12 characters. The edges are arcs, which become straight lines when the nodes are close together. Self-regulatory edges are indicated by a loop. When a user mouses over an edge, the numerical value of the weight parameter is displayed. Visualizations can be modified by sliders that adjust the force graph layout parameters and through manual node dragging. GRNsight is best-suited for visualizing networks of fewer than 35 nodes and 70 edges, although it accepts networks of up to 75 nodes or 150 edges. GRNsight has general applicability for displaying any small, unweighted or weighted network with directed edges for systems biology or other application domains. GRNsight serves as an example of following and teaching best practices for scientific computing and complying with FAIR Principles, using an open and test-driven development model with rigorous documentation of requirements and issues on GitHub. An exhaustive unit testing framework using Mocha and the Chai assertion library consists of around 160 automated unit tests that examine nearly 530 test files to ensure that the program is running as expected. The GRNsight application (<a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>) and code (<a href="https://github.com/dondi/GRNsight">https://github.com/dondi/GRNsight</a>) are available under the open source BSD license.
102
- </p>
103
-
104
- </div>
105
- </div>
106
- </div>
107
-
108
- <div class="panel panel-default">
109
- <div class="panel-heading">
110
- <p class="panel-title aboutHeaders">
111
- <a href="#presentations" data-toggle="collapse">
112
- Presentations
113
- </a>
114
- </p>
115
- </div>
116
-
117
- <div id="presentations" class="panel-collapse collapse">
118
- <div class="panel-body">
119
-
120
- <p class="abstract">
121
- <b>LMU Department of Biology Seminar Series</b><br><br>
122
- September 16, 2016<br>
123
- GRNmap and GRNsight: Using the power of genomics, mathematics,and open source visualization software to understand gene regulatory networks in yeast<br>
124
- <b>Kam D. Dahlquist</b><br><br>
125
-
126
- </p>
127
- <br>
128
-
129
- <p class="abstract">
130
- <b><a href="https://www.open-bio.org/wiki/BOSC_2016">Bioinformatics Open Source Conference (BOSC) 2016, Orlando, FL</a></b><br><br>
131
- July 9, 2016<br>
132
- GRNmap and GRNsight: open source software for dynamical systems modeling and visualization of medium-scale gene regulatory networks<br>
133
- <b>Kam D. Dahlquist</b>, Ben G. Fitzpatrick, John David N. Dionisio, Nicole A. Anguiano, Juan S. Carrillo, Trixie Anne M. Roque, Anindita Varshneya, Mihir Samdarshi, and Chukwuemeka Azinge<br><br>
134
-
135
- Abstract: A gene regulatory network (GRN) consists of genes, transcription factors, and the regulatory connections between them that govern the level of expression of mRNA and proteins from those genes. Over a period of several years, our group has developed a MATLAB software package, called GRNmap, that uses ordinary differential equations to model the dynamics of medium-scale GRNs. The program uses a penalized least squares approach (Dahlquist et al. 2015, DOI: 10.1007/s11538-015-0092-6) to estimate production rates, expression thresholds, and regulatory weights for each transcription factor in the network based on gene expression data, and then performs a forward simulation of the dynamics of the network. GRNmap has options for using a sigmoidal or Michaelis-Menten production function. The large number of developers and time span of development led to a code base that was difficult to revise and adjust. We therefore brought the code under version control in a GitHub repository and refactored the script-based software with global variables into a function-based package that uses an object to carry relevant information from function to function. This modular approach allows for cleaner, less ambiguous code and increased maintainability. We standardized the format of the input and output Excel workbooks, making them more readable. We also added an optimization diagnostics output worksheet which includes both the actual and theoretical minimum least squared error overall, and the mean squared errors for the individual genes. The MATLAB compiler was used to create an executable that can be run on any Windows machine without the need of a MATLAB license, increasing the accessibility of our program. Finally, we have implemented test-driven development, creating unit tests for all new features to speed up debugging and to prevent future code regressions. We are improving the test coverage of previous code.<br><br>
136
- GRNsight is an open source web application for visualizing such models of gene regulatory networks. GRNsight accepts GRNmap- or user-generated spreadsheets containing an adjacency matrix representation of the GRN and automatically lays out the graph of the GRN model. It is written in JavaScript, with diagrams facilitated by D3.js. Node.js and the Express framework handle server-side functions. GRNsight’s diagrams are based on D3.js’s force graph layout algorithm, which was then extensively customized. GRNsight uses pointed and blunt arrowheads, and colors the edges and adjusts their thicknesses based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. Visualizations can be modified through manual node dragging and sliders that adjust the force graph parameters. From the early stages, GRNsight has had a unit testing framework using Mocha and the Chai assertion library to perform test-driven development where unit tests are written before new functionality is coded. This framework consists of over 160 automated unit tests that examine over 450 test files to ensure that the program is running as expected. Error and warning messages inform the user what happened, the source of the problem, and possible solutions. <br><br>
137
- Together, the life cycle of these two programs illustrate the differences between the cultures of mathematics and computing, the challenges and benefits of bringing an existing code base up to open development standards (GRNmap), and the advantages of starting a project using best practices from the beginning (GRNsight). Our goal is to facilitate reproducible research.<br><br>
138
- <a href="http://f1000research.com/slides/5-1637">Click here to view the slides on F1000Research.</a><br><br>
139
-
140
- <iframe src="//www.slideshare.net/GRNsight/slideshelf" width="615px" height="470px" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:none;" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>
141
-
142
- <!--<figcaption><a href="http://www.slideshare.net/GRNsight/dahlquist-bosc-20160709-64224474" target="_blank">Slides</a> from <a href="//www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>-->
143
- </p>
144
- <br>
145
- <p class="abstract">
146
- <b><a href="http://experimentalbiology.org/PDFS/2016/EB-2016-Program-Web-FullProgram.aspx">Experimental Biology 2016, San Diego, CA</a></b><br><br>
147
- April 4, 2016<br>
148
- <a href="http://www.fasebj.org/content/30/1_Supplement/819.16.abstract?sid=a80e9e6c-998f-4889-b1fd-ddcc75ab8bda">GRNmap and GRNsight: open source software for dynamical systems modeling and visualization of medium-scale gene regulatory networks</a><br>
149
- <b>Kam D. Dahlquist</b>, Ben G. Fitzpatrick, John David N. Dionisio, Nicole A. Anguiano, Juan S. Carrillo, Monica V. Hong, Kristen M. Horstmann, Kayla C. Jackson, K. Grace Johnson, Tessa A. Morris, Trixie Anne M. Roque, Mihir Samdarshi, Anindita Varshneya, Natalie E. Williams, and Kevin W. Wyllie<br><br>
150
-
151
- Abstract: A gene regulatory network (GRN) consists of genes, transcription factors, and the regulatory connections between them that govern the level of expression of mRNA and proteins from those genes. Our group has developed a MATLAB software package, called GRNmap, that uses ordinary differential equations to model the dynamics of medium-scale GRNs. The program uses a penalized least squares approach (Dahlquist et al. 2015, DOI: 10.1007/s11538-015-0092-6) to estimate production rates, expression thresholds, and regulatory weights for each transcription factor in the network based on gene expression data, and then performs a forward simulation of the dynamics of the network. GRNmap has options for using a sigmoidal or Michaelis-Menten production function. Parameters for a series of related networks, ranging in size from 15 to 35 genes, were optimized against DNA microarray data measuring the transcriptional response to cold shock in wild type and five strains individually deleted for the transcription factors, Cin5, Gln3, Hap4, Hmo1, Zap1, of budding yeast, Saccharomyces cerevisiae BY4741. Model predictions fit the experimental data well, within the 95% confidence interval. Open source code and a compiled executable that can run without a MATLAB license are available from <a href="http://kdahlquist.github.io/GRNmap/">http://kdahlquist.github.io/GRNmap/</a>. GRNsight is an open source web application for visualizing such models of gene regulatory networks. GRNsight accepts GRNmap- or user-generated spreadsheets containing an adjacency matrix representation of the GRN and automatically lays out the graph of the GRN model. The application colors the edges and adjusts their thicknesses based on the sign (activation or repression) and the strength (magnitude) of the regulatory relationship, respectively. Users can then modify the graph to define the best visual layout for the network. The GRNsight open source code and application are available from <a href="http://dondi.github.io/GRNsight/index.html">http://dondi.github.io/GRNsight/index.html</a>.
152
- </p>
153
-
154
- <figure class="publication">
155
- <iframe src="//www.slideshare.net/slideshow/embed_code/key/NC3auEnK2HuL1f" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen></iframe>
156
-
157
- <figcaption><a href="//www.slideshare.net/GRNsight/dahlquist-experimental-biology20160404" title="Dahlquist experimental biology_20160404" target="_blank">Presentation slides</a> from <a href="//www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
158
- </figure>
159
-
160
- <p class="abstract">
161
- <b><a href="http://ccbs.uci.edu/scsb2015home">5<sup>th</sup> Annual Southern California Systems Biology Conference</a></b><br><br>
162
- January 31, 2015<br>
163
- GRNmap and GRNsight: Open Source Software for Dynamical Systems Modeling and Visualization of Medium-Scale Gene Regulatory Networks<br>
164
- <b>Kam D. Dahlquist</b>, Ben G. Fitzpatrick, John David N. Dionisio, Nicole A. Anguiano, Juan S. Carrillo, Nicholas A. Rohacz, Katrina Sherbina, Britain J. Southwick, and Anindita Varshneya<br><br>
165
-
166
- Abstract: A gene regulatory network (GRN) consists of genes, transcription factors, and the regulatory connections between them that govern the level of expression of mRNA and proteins from those genes. Our group has developed a MATLAB software package, called GRNmap, that uses ordinary differential equations to model the dynamics of medium-scale GRNs. The program uses a penalized least squares approach to estimate production rates, expression thresholds, and regulatory weights for each transcription factor in the network based on gene expression data, and then performs a forward simulation of the dynamics of the network. Parameters for a 21-gene network were optimized against DNA microarray data measuring the transcriptional response to cold shock in wild type and four transcription factor deletion strains of budding yeast, Saccharomyces cerevisiae. Model predictions fit experimental data well, within the 95% confidence interval. Open source code and a compiled executable that can run without a MATLAB license are available from <a href="http://kdahlquist.github.io/GRNmap/">http://kdahlquist.github.io/GRNmap/</a>. GRNsight is an open source web application for visualizing such models of gene regulatory networks. GRNsight accepts GRNmap- or user-generated spreadsheets containing an adjacency matrix representation of the GRN and automatically lays out the graph of the GRN model. The application colors the edges and adjusts their thicknesses based on the sign (activation or repression) and the strength (magnitude) of the regulatory relationship, respectively. Users can then modify the graph to define the best visual layout for the network. The GRNsight code and application are available from <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/index.html</a>. This work was partially supported by NSF award 0921038.
167
- </p>
168
-
169
- <figure class="publication">
170
- <iframe src="//www.slideshare.net/slideshow/embed_code/44236648" width="425" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen></iframe>
171
- <figcaption><a href="http://www.slideshare.net/GRNsight/dahlquist-so-calsysbio20140131" title="Dahlquist so calsysbio_20140131" target="_blank">Presentation slides</a> from <a href="//www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
172
- </figure>
173
-
174
- <p class="abstract">
175
- <b>Loyola Marymount University CMSI 402 Presentation</b><br><br>
176
- May 8, 2014<br>
177
- GRNsight: a Web Application for Visualizing Models of Gene Regulatory Networks<br>
178
- <b>Britain Southwick</b>
179
- </p>
180
-
181
- <figure class="publication">
182
- <iframe src="//www.slideshare.net/slideshow/embed_code/35811802" width="427" height="356" allowfullscreen></iframe>
183
-
184
- <figcaption><a href="https://www.slideshare.net/GRNsight/southwick-britain-grnsightcmsi402presentation20140508" title="Southwick britain gr_nsight_cmsi402-presentation_20140508" target="_blank">Presentation slides</a> from <a href="http://www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
185
- </figure>
186
-
187
- <p class="abstract">
188
- <b><a href="http://academics.lmu.edu/media/lmuacademics/undergraduateresearchsymposium/documents/Full%20Program%20with%20abstracts%203.pdf">Loyola Marymount University 6<sup>th</sup> Annual Undergraduate Research Symposium</a></b><br><br>
189
- March 29, 2014<br>
190
- GRNsight: a Web Application for Visualizing Models of Gene Regulatory Networks<br>
191
- <b>Britain Southwick, Nicole Anguiano</b><br>
192
- John David N. Dionisio, Kam D. Dahlquist, Ben G. Fitzpatrick<br><br>
193
-
194
- Abstract: A gene regulatory network (GRN) consists of genes, transcription factors, and the regulatory connections between them, which govern the level of expression of mRNA and protein from those genes. GRNs can be mathematically modeled and simulated by applications such as GRNmap, a MATLAB program that estimates the parameters and performs forward simulations of a differential equations model of a GRN. Computer representations of GRNs, such as the models output by GRNmap, are tabular spreadsheets that are not easily interpretable. Ideally, GRNs should be displayed as diagrams (graphs) detailing the regulatory relationships (edges) between each gene (node) in the network. To address this need, we developed GRNsight. GRNsight is an open source web application for visualizing mathematical models of GRNs. It allows users to upload spreadsheets generated by GRNmap and uses the information in these spreadsheets to automatically create and display a graph of the GRN model. The application colors the edges and adjusts their thickness based on the sign (activation or repression) and the strength (magnitude) of the regulatory relationship, respectively. Finally, GRNsight then allows the user to modify the graph in order to define the best visual layout for the network. Most of GRNsight is written in JavaScript. HTTP requests are handled using Node.js and the Express framework. Graphs are generated through D3.js, a JavaScript data visualization library. <br>
195
- </p>
196
-
197
- <figure class="publication">
198
- <iframe src="//www.slideshare.net/slideshow/embed_code/35811669" width="427" height="356" allowfullscreen></iframe>
199
- <figcaption><a href="https://www.slideshare.net/GRNsight/southwick-anguiano-lmusymposiumpresentation20140329" title="Southwick anguiano lmu-symposium_presentation_20140329" target="_blank">Presentation slides</a> from <a href="http://www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
200
- </figure>
201
- </div>
202
- </div>
203
- </div>
204
-
205
- <div class="panel panel-default">
206
- <div class="panel-heading">
207
- <p class="panel-title aboutHeaders">
208
- <a href="#posters" data-toggle="collapse">
209
- Posters
210
- </a>
211
- </p>
212
- </div>
213
-
214
- <div id="posters" class="panel-collapse collapse">
215
- <div class="panel-body">
216
- <p class="abstract">
217
- <b><a href="https://www.open-bio.org/wiki/BOSC_2016">Bioinformatics Open Source Conference (BOSC) 2016</a> and <a href="http://www.iscb.org/ismb2016">Intelligent Systems for Molecular Biology (ISMB) 2016</a>, Orlando, FL</a></b><br><br>
218
- July 8-12, 2016<br>
219
- GRNmap and GRNsight: open source software for dynamical systems modeling and visualization of medium-scale gene regulatory networks<br>
220
- <b>Kam D. Dahlquist</b>, Ben G. Fitzpatrick, John David N. Dionisio, Nicole A. Anguiano, Juan S. Carrillo, Tessa A. Morris, Anindita Varshneya, Natalie E. Williams, K. Grace Johnson, Trixie Anne M. Roque, Kristen M. Horstmann, Mihir Samdarshi, Chukwuemeka E. Azinge, Brandon J. Klein, Margaret J. O’Neil1<br><br>
221
-
222
- Abstract: A gene regulatory network (GRN) consists of genes, transcription factors, and the regulatory connections between them that govern the level of expression of mRNA and proteins from those genes. Our open source MATLAB software package, GRNmap (<a href="http://kdahlquist.github.io/GRNmap/">http://kdahlquist.github.io/GRNmap/</a>), uses ordinary differential equations to model the dynamics of medium-scale GRNs. The program uses a penalized least squares approach (Dahlquist et al. 2015, DOI: 10.1007/s11538-015-0092-6) to estimate production rates, expression thresholds, and regulatory weights for each transcription factor in the network based on gene expression data, and then performs a forward simulation of the dynamics of the network. GRNmap has options for using a sigmoidal or Michaelis-Menten production function. Parameters for a series of related networks, ranging in size from 15 to 35 genes, were optimized against DNA microarray data measuring the transcriptional response to cold shock in budding yeast, Saccharomyces cerevisiae, for the wild type strain and strains deleted for the transcription factors Cin5, Gln3, Hap4, Hmo1, and Zap1, giving biological insights into this process. GRNsight is an open source web application for visualizing such models of gene regulatory networks (<a href="http://dondi.github.io/GRNsight/index.html">http://dondi.github.io/GRNsight/index.html</a>). GRNsight accepts GRNmap- or user-generated Excel spreadsheets containing an adjacency matrix representation of the GRN and automatically lays out the graph. The application colors the edges and adjusts their thicknesses based on the sign (activation or repression) and the strength (magnitude) of the regulatory relationship, respectively. Users can then modify the graph to define the best visual layout for the network. This work was partially supported by NSF award 0921038.<br><br>
223
- <a href="http://f1000research.com/posters/5-1618">Click here</a> to view the poster on F1000Research. <a href="//www.slideshare.net/GRNsight/dahlquist-etal-boscismb2016poster-64224013" title="Dahlquist et-al bosc-ismb_2016_poster" target="_blank">Click here</a> to view poster from <a href="//www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare.<br><br>
224
-
225
- </p>
226
- <p class="abstract">
227
- <b><a href="http://experimentalbiology.org/PDFS/2016/EB-2016-Program-Web-FullProgram.aspx">Experimental Biology 2016, San Diego, CA</a></b><br><br>
228
- April 4, 2016<br>
229
- <a href="http://www.fasebj.org/content/30/1_Supplement/819.10.abstract?sid=78e46198-a079-4985-9ebd-0e286b8dde38">Test-driven development improves GRNsight: a web application for visualizing models of gene regulatory networks</a><br>
230
- <b>Anindita Varshneya, Mihir Samdarshi</b>, Kam D. Dahlquist, John David N. Dionisio, and Ben G. Fitzpatrick<br><br>
231
-
232
- Abstract: GRNsight is a web application and service for visualizing models of gene regulatory networks (GRNs). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. GRNmap, a MATLAB program that performs parameter estimation and forward simulation of a differential equations model of a GRN, can mathematically model the dynamics of GRNs. GRNsight automatically lays out the network graph based on GRNmap output spreadsheets. GRNsight uses pointed and blunt arrowheads, and colors the edges and adjusts their thicknesses based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. Visualizations can be modified through manual node dragging and sliders that adjust the force graph parameters. We have now implemented an exhaustive unit testing framework using Mocha and the Chai assertion library to perform test-driven development where unit tests are written before new functionality is coded. This framework consists of over 135 automated unit tests that examine about 450 test files to ensure that the program is running as expected. Error and warning messages have a three-part framework that informs the user what happened, the source of the problem, and possible solutions. For example, GRNsight returns an error when the spreadsheet is formatted incorrectly or the maximum number of nodes or edges is exceeded. The completion of the testing framework marks the close of development for version 1 (the current release stands at version 1.12). In version 2.0 of GRNsight, a new feature will be implemented that colors the nodes (genes) based on the expression data. The user will have the choice to display the experimental data or the data produced by the forward simulation feature in GRNmap. GRNsight is available at <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>.
233
- </p>
234
-
235
- <figure class="publication">
236
- <iframe src="//www.slideshare.net/slideshow/embed_code/key/neLFcr6hwpjpkT" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen></iframe>
237
-
238
- <figcaption><a href="//www.slideshare.net/GRNsight/varshneya-samdarshi-lmusymposium2016" title="Varshneya samdarshi lmu_symposium_2016" target="_blank">Poster</a> from <a href="//www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
239
- </figure>
240
- <br><br>
241
- <p class="abstract">
242
- <b><a href="http://academics.lmu.edu/media/lmuacademics/undergraduateresearchsymposium/documents/ei8ht_Symposium_Long_Program_16_Secured.pdf">Loyola Marymount University 8<sup>th</sup> Annual Undergraduate Research Symposium</a></b><br><br>
243
- March 19, 2016<br>
244
- Test-driven development improves GRNsight: a web application for visualizing models of gene regulatory networks<br>
245
- <b>Anindita Varshneya, Mihir Samdarshi</b>, Kam D. Dahlquist, John David N. Dionisio, and Ben G. Fitzpatrick<br><br>
246
-
247
- Abstract: GRNsight is an open source web application and service for visualizing models of gene regulatory networks (GRNs). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. GRNmap, a MATLAB program that performs parameter estimation and forward simulation of a differential equations model of a GRN, can mathematically model the dynamics of GRNs. GRNsight automatically lays out the network graph based on GRNmap output spreadsheets. GRNsight uses pointed and blunt arrowheads, and colors the edges and adjusts their thicknesses based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. Visualizations can be modified through manual node dragging and sliders that adjust the force graph parameters. We have now implemented an exhaustive unit testing framework using Mocha and the Chai assertion library to perform test-driven development where unit tests are written before new functionality is coded. This framework consists of over 160 automated unit tests that examine over 450 test files to ensure that the program is running as expected. Error and warning messages inform the user what happened, the source of the problem, and possible solutions. The completion of the testing framework marks the close of development for version 1 (the current release stands at version 1.12). In version 2.0 of GRNsight, a new feature will be implemented that colors the nodes (genes) based on expression data provided by GRNmap. GRNsight is available at <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>.
248
- </p>
249
-
250
- <figure class="publication">
251
- <iframe src="//www.slideshare.net/slideshow/embed_code/key/neLFcr6hwpjpkT" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen></iframe>
252
-
253
- <figcaption><a href="//www.slideshare.net/GRNsight/varshneya-samdarshi-lmusymposium2016" title="Varshneya samdarshi lmu_symposium_2016" target="_blank">Poster</a> from <a href="//www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
254
- </figure>
255
-
256
- <p class="abstract">
257
- <b><a href="http://www.pointloma.edu/experience/academics/schools-departments/department-biology/science-education-programs/wcbsurc/40th-annual-wcbsurc-plnu-2015">40<sup>th</sup> Annual West Coast Biological Sciences Undergraduate Research Conference</a></b><br><br>
258
- April 25, 2015 <br>
259
- Improvements to GRNsight: a Web Application for Visualizing Models of Gene Regulatory Networks<br>
260
- <b>Nicole Anguiano, Anindita Varshneya</b>, Kam D. Dahlquist, John David N. Dionisio, and Ben G. Fitzpatrick<br><br>
261
-
262
- Abstract: GRNsight is a web application and service for visualizing models of gene regulatory networks (GRN). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. GRNmap, a MATLAB program that performs parameter estimation and forward simulation of a differential equations model of a GRN, can mathematically model GRNs. The general graph visualization tools that exist for displaying GRNs did not fulfill our needs, so we created GRNsight. GRNsight automatically lays out the network graph based on spreadsheets uploaded from GRNmap. GRNsight colors the edges and adjusts their thicknesses based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. GRNsight uses pointed and blunt arrowheads to indicate activation and repression, respectively. Visualizations can be modified through manual node dragging and sliders that adjust the force layout parameters. Since version 1.0, GRNsight has acquired significant user interface improvements, bug fixes, extended robustness to errors, and aesthetic refinements. Demo spreadsheets are now available for users who do not have their own models. GRNsight's current release is version 1.10, with beta version 1.11 available for testing new features. GRNsight is available at <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>.
263
- </p>
264
-
265
- <figure class="publication">
266
- <iframe src="//www.slideshare.net/slideshow/embed_code/46240444" width="476" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
267
-
268
- <figcaption><a href="http://www.slideshare.net/GRNsight/anguiano-varshneya-lmusymposium2015" title="Anguiano varshneya lmu_symposium_2015" target="_blank">Poster</a> from <a href="http://www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
269
- </figure>
270
-
271
- <p class="abstract">
272
- <b><a href="http://academics.lmu.edu/media/lmuacademics/undergraduateresearchsymposium/documents/Final%20Program%20w.%20Abstracts.pdf">Loyola Marymount University 7<sup>th</sup> Annual Undergraduate Research Symposium</a></b><br><br>
273
- March 21, 2015<br>
274
- Improvements to GRNsight: a Web Application for Visualizing Models of Gene Regulatory Networks<br>
275
- <b>Nicole Anguiano, Anindita Varshneya</b>, Kam D. Dahlquist, John David N. Dionisio, and Ben G. Fitzpatrick<br><br>
276
-
277
- Abstract: GRNsight is a web application and service for visualizing models of gene regulatory networks (GRN). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. GRNs can be mathematically modeled by GRNmap, a MATLAB program that performs parameter estimation and forward simulation of a differential equations model of a GRN. The general graph visualization tools that exist for displaying GRNs did not fulfill our needs, so we created GRNsight. GRNsight automatically lays out the network graph based on spreadsheets uploaded from GRNmap. It is written in JavaScript, with diagrams facilitated by D3.js. Node.js and the Express framework handle server-side functions. GRNsight’s diagrams are based on D3.js’s force graph layout algorithm, which was then extensively customized to support the specific needs of GRN visualization. GRNsight colors the edges and adjusts their thicknesses based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. GRNsight uses pointed and blunt arrowheads to indicate activation and repression, respectively. Visualizations can be modified through manual node dragging and sliders that adjust D3.js’s force layout parameters. Since version 1.0, GRNsight has acquired significant user interface improvements, bug fixes, extended robustness to errors in file formats, and aesthetic refinements, particularly for edge markers. Demo spreadsheets are now available for users who do not have their own models. GRNsight's current release is version 1.8, with beta version 1.9 available for testing new features. GRNsight is available at <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>.
278
- </p>
279
-
280
- <figure class="publication">
281
- <iframe src="//www.slideshare.net/slideshow/embed_code/46240444" width="476" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
282
-
283
- <figcaption><a href="http://www.slideshare.net/GRNsight/anguiano-varshneya-lmusymposium2015" title="Anguiano varshneya lmu_symposium_2015" target="_blank">Poster</a> from <a href="http://www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</div>
284
- </figure>
285
-
286
- <p class="abstract">
287
- <b><a href="http://ccbs.uci.edu/scsb2015home">5<sup>th</sup> Annual Southern California Systems Biology Conference</a></b><br><br>
288
- January 31, 2015<br>
289
- Improvements to GRNsight: a Web Application for Visualizing Models of Gene Regulatory Networks<br>
290
- <b>Nicole Anguiano</b>, Anindita Varshneya, Britain J. Southwick, Kam D. Dahlquist, John David N. Dionisio, and Ben G. Fitzpatrick<br><br>
291
-
292
- Abstract: GRNsight is a web application and service for visualizing models of gene regulatory networks (GRN). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. GRNs can be mathematically modeled by applications such as GRNmap, a MATLAB program that performs parameter estimation and forward simulation of a differential equations model of a GRN. GRNsight automatically lays out the network graph based on spreadsheets uploaded from GRNmap. It is written in JavaScript, with diagrams facilitated by D3.js. Node.js and the Express framework handle server-side functions. GRNsight’s diagrams are based on D3.js’s force graph layout algorithm, which was then extensively customized to support the specific needs of GRN visualization. GRNsight colors the edges and adjusts their thicknesses based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. GRNsight uses pointed and blunt arrowheads to indicate activation and repression, respectively. When a user mouses over an edge, the numerical value of the weight parameter is displayed. Visualizations can be modified through manual node dragging and sliders that adjust D3.js’s force layout parameters. Since version 1.0, GRNsight has acquired significant user interface improvements, bug fixes, extended robustness to errors in file formats, and aesthetic refinements, particularly for edge markers. Demo spreadsheets are now available for users who do not have their own models. GRNsight's current release is version 1.8, with beta version 1.9 available for testing new features. GRNsight is available at <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>.
293
- </p>
294
-
295
- <figure class="publication">
296
- <iframe src="//www.slideshare.net/slideshow/embed_code/42279842" width="476" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
297
-
298
- <figcaption><a href="http://www.slideshare.net/GRNsight/anguiano-varshneya-sccurposter20141122" title="Anguiano varshneya sccur-poster_20141122" target="_blank">Poster</a> from <a href="http://www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
299
- </figure>
300
-
301
- <p class="abstract">
302
- <b>2014 Southern California Conference for Undergraduate Research</b><br><br>
303
- November 22, 2014<br>
304
- GRNsight: A Web Application for Visualizing Models of Gene Regulatory Networks<br>
305
- <b>Nicole Anguiano, Anindita Varshneya</b>, John David N. Dionisio, Kam D. Dahlquist, Ben G. Fitzpatrick<br><br>
306
-
307
- Abstract: GRNsight is a web application and service for visualizing models of gene regulatory networks (GRN). A gene regulatory network consists of genes, transcription factors, and the regulatory connections between them which govern the level of expression of mRNA and protein from genes. GRNs can be mathematically modeled by applications such as GRNmap, a MATLAB program that performs parameter estimation and forward simulation of a differential equations model of a GRN. The general graph visualization tools that exist for displaying GRNs did not fulfill our needs, so we created GRNsight. GRNsight automatically lays out the network graph based on spreadsheets uploaded from GRNmap. It is written in JavaScript, with diagrams facilitated by D3.js, a data visualization library. Node.js and the Express framework handle server-side functions. GRNsight’s diagrams are based on D3.js’s force graph layout algorithm, which was then extensively customized to support the specific needs of GRN visualization. GRNsight colors the edges and adjusts their thickness based on the sign (activation or repression) and magnitude of the GRNmap weight parameter. GRNsight uses arrowheads and perpendicular line segments to indicate activation and repression, respectively. When a user mouses over an edge, the numerical value of the weight parameter is displayed. Visualizations can be modified through manual node dragging and sliders that adjust D3.js’s force layout parameters. GRNsight follows an open development model with rigorous documentation of requirements and issues on GitHub. Since version one, GRNsight has acquired significant user interface improvements, bug fixes, extended robustness to errors in file formats, and aesthetic refinements, particularly for edge markers. Demo spreadsheets are now available for users who do not have their own models. GRNsight's current release is version 1.6, with beta version 1.7 available for testing new features. GRNsight is available at <a href="http://dondi.github.io/GRNsight/">http://dondi.github.io/GRNsight/</a>.
308
- </p>
309
-
310
- <figure class="publication">
311
- <iframe src="//www.slideshare.net/slideshow/embed_code/42279842" width="476" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
312
-
313
- <figcaption><a href="http://www.slideshare.net/GRNsight/anguiano-varshneya-sccurposter20141122" title="Anguiano varshneya sccur-poster_20141122" target="_blank">Poster</a> from <a href="http://www.slideshare.net/GRNsight" target="_blank">GRNsight</a> on SlideShare</figcaption>
314
- </figure>
315
- </div>
316
- </div>
317
- </div>
318
- </div>
319
- </div>
320
-
321
- <div id="footer">
322
- <hr id="separate">
323
- <ul id="footerNav">
324
- <li><a href="/GRNsight/">Home</a></li>
325
- <li><a href="/GRNsight/about.html">About</a></li>
326
- <li><a href="/GRNsight/news.html">News</a></li>
327
- <li><a href="https://github.com/dondi/GRNsight" target="_blank">Developers</a></li>
328
- <li><a href="/GRNsight/documentation.html">Documentation</a></li>
329
- <li><a href="https://github.com/dondi/GRNsight/wiki" target="_blank">Wiki</a></li>
330
- <li><a href="/GRNsight/publications.html">Publications</a></li>
331
- <li><a href="/GRNsight/people.html">People</a></li>
332
- <li><a href="/GRNsight/contact.html">Contact</a></li>
333
- <li><a href="/GRNsight/links.html">Links</a></li>
334
- <li><a href="/GRNsight/beta.html">Beta</a></li>
335
- <li><a href="/GRNsight/about.html#privacy">Privacy</a></li>
336
-
337
- </ul>
338
- <p id="CCLicense">
339
- This web site is free and open to all users and there is no login requirement.
340
-
341
- Web site content is available under the <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank">Creative Commons
342
- <br>
343
- Attribution Non-Commercial Share Alike 3.0 Unported License</a>.
344
-
345
- GRNsight code is available under the open source <a href="http://opensource.org/licenses/BSD-3-Clause" target="_blank">BSD license</a>.
346
-
347
- <br>
348
-
349
- This page has been accessed <span class="ga-report"></span> times.
350
-
351
-
352
- </p>
353
-
354
- </div>
355
- </div>
356
-
357
- <script>
358
- (function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){
359
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
360
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
361
- })(window,document,"script","//www.google-analytics.com/analytics.js","ga");
362
-
363
- ga("create", "UA-54882218-1", "auto");
364
- ga("send", "pageview");
365
- </script>
366
- <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
367
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
368
- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
369
- <script src="/GRNsight/assets/js/main.js"></script>
370
- <script src="/GRNsight/assets/js/ga-report.js"></script>
371
-
372
-
373
-
374
-
375
-
376
- </body>
377
-
378
- </html>
@@ -1 +0,0 @@
1
- Sitemap: http://localhost:3001/GRNsight/sitemap.xml
@@ -1,31 +0,0 @@
1
- Bag Attributes
2
- friendlyName: privatekey
3
- localKeyID: 54 69 6D 65 20 31 34 33 34 35 32 34 30 38 36 38 32 31
4
- Key Attributes: <No Attributes>
5
- -----BEGIN RSA PRIVATE KEY-----
6
- MIIEpAIBAAKCAQEAtWCtvLCxKZnqi9Rir5Q9Ds/EN9yVFjqly+BK2iFQkW/Rt3im
7
- dQytMREL3vIQq8swW9ya7PYY4Zs2lE4sQnTa6grQXMhHvNvs/6bkQM9NwTd88FGS
8
- 3AoM4g3k0RTUwpTXNg0XXCLlBPbeidVLZcUD+yRrWCbNYwsy2LWLnFGj02u8p2SJ
9
- rxF9rsnbAW3hZ8NX/JhwM91uEzr/zYo4l9kOayAZZOAikwMXRl7OULjp8xb+hYDe
10
- e6ZmGPOcIHHqkeCqR8v6qYMhbLZ0MCHMvhBikkWuI9kpY3N6R6bJ0BEAZpYEaDDk
11
- RNOP/7GgjB0zxe6tq+Q8fUVnbaot9BlQzKM+JQIDAQABAoIBADMdNLj5PmQP6SZQ
12
- yyLZ7r8O1Cg99JHYI0MqSU3hl5f04DAJQze3Q9ORDzxcEVCoqU8qA0sGK4rgt+fh
13
- g92SmuLb+046buUNQWPmf2q4QRxTa9U5195Ews6txa8aZL8VPPURiWTAvLPCcoJ7
14
- Zo0ekXmkENA91yGzVTf3KYn7A+UffPPEoBAmbHuP+qTfig6JcOADGUO2VWOhHjnN
15
- z4VQiCGO3nluM/3ArgxyPZui4VIyAAOEDGEZS79CMEXe0O1oNvWblwEqAAN01hxB
16
- UkniZzvdzU+5x0PKcpJpyK+vxZN4gZ6dIyKdKIjRwowLBFBpksn3f9kss/LEgpeW
17
- kxHf2v0CgYEA4Ij79l/3nCzEdOUMF8LTeHUs3jbddfu/+vuZQTmkj6z7HBqrA9zp
18
- ZchkhJWVav4/E7qLfnW5qmhy91EbXzX7Tm/Tw1F/S2/glVkKgnt8Dw2rjMTQOYk0
19
- 2yF5EutyGKPeqVbj4eURqbyDxIg+GCND+oiE5yfyeobUlkQMnPB+aNsCgYEAzst0
20
- tMlc4GKlqFrdeI5WKX/MBoxwkzKSZ4ongUw2cX2GMlT+8fDSBUC1MJpEbi7451IF
21
- FMT2YfH7qs+ZpgnWIl0//oDENg1mx7DiRx/nPdJZKTysDdcIZ/FEFbXHIGEz1zgv
22
- Oa7i2+iUQojHBr2n5aPxkfPGplQYQl8ZQ/QOJP8CgYAzSdcUDhPHTsqJURCUFOKt
23
- L0bSc4Hew2S09eep6HrYftDVOJo7xahioYWka264A99wqDnY5xdD/5vTNmmkM/Z1
24
- kkGy6djD6IhKVQ57g61w2tSG0SYnHlo+e8TmN3XWfwgLcleXb/W66d7Hc7+LT/Ll
25
- NW32Rz+yET5aHK0s5Bpb5QKBgQC3Z2KeZGhm6Zaaddwua66nJ5y/whalthh6k+Dt
26
- n7Y5eWZnhVKHKVpbJkSMUoWWYzqFjgzLmtQZkg/uMijHRboQyDtVcMaUWdZqDMri
27
- 4byo68H//LtrmubtqOEFkC6G3S6pFj9sHVs+RkwXpk89/z7FQF2jYF0ybysE0msK
28
- BY316QKBgQCquQIzqxHI0X3Y3PRRN+peFgiMfgwkS+3Ck4rq1Due+FETO48v20+y
29
- wr/PMS/qXcCLaTcHmQk8CJJa2moewTnwKPIZfRexuaOapqIll5WwNFLZXiCM92FR
30
- /jmDKAiNo7zf+0rbEhgDFNQcoWr4RHVxfTWjupbPAxGByDYN4jNP7g==
31
- -----END RSA PRIVATE KEY-----
@@ -1,19 +0,0 @@
1
- Bag Attributes
2
- friendlyName: privatekey
3
- localKeyID: 54 69 6D 65 20 31 34 32 32 39 34 39 30 31 30 39 37 34
4
- Key Attributes: <No Attributes>
5
- -----BEGIN RSA PRIVATE KEY-----
6
- MIICXAIBAAKBgQDGB2wy2iMdvAwmREoru8qUukmYFVenFar5hAQqnvDSvbw7raDB
7
- nce7GQw6bzpoWYHpTvp/P/w1bRwSvB3lGdQdbTj4DdgUSKE6Tfm6/i3VnN/RGQVw
8
- LBlkMC5KyDbEdanqyDGdecw7YMAFanKT2kfROfy2/NEpgYIZBeMFG9HGlwIDAQAB
9
- AoGAOxBdsjEjxiufSA6YPMEPJBsH9kdvVFN/IlrAz2GGnKSgrwATcYw41VIcNpWU
10
- SylfORIoXqnb9Kdtdx0KoZl5jSMCD+GxPTMHZEFhLyC08lQlRBo+hFC7dpjtrnDQ
11
- ZWC+ccFfhjF9npz3id2CZ60pZSt9UjrYNkIJf281ISMnGuECQQDkenl3wgdK+yi4
12
- ud12EUqqhrjgbuLZ3YNcmP2rxtAlXaj6yFJcS+bJMntIUIEEneJQhxatdctsimH7
13
- F7IwhsWHAkEA3eH84WCLvJBTFREhQX5SYY6Qn/cAXzcvcMPyVPA4Zri+OQyFwwTh
14
- UiAonXlEwGgyZoNKKHr0i8Hhs6eoQMw6cQJAb1OR7h13qjxY6jF+TDI+vHpqiMje
15
- 9iMuB6dwKwvzjdFmLdP/9YLyT+SuF11KkDJR/MTl8t0ropaHCW7RXz277wJAa8Ry
16
- hajV1f0nTUknpN7M9nM/DWLzvEtacGPLlLOkQUgjpCPP6Bu7sJ7L+0hGO0mgiSfl
17
- YenuUt8VV6Pr1aUcEQJBALq8/Wt7wYnu2J83APSkR7U7wd0VmBW/bsLiv1SIwOjf
18
- O6xIFr8nxuLST32i3e2cXsLWl5DWCDMFfcnN1w3gJ0Q=
19
- -----END RSA PRIVATE KEY-----