educommon 3.12.0__py3-none-any.whl → 3.13.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. educommon/__init__.py +0 -1
  2. educommon/about/ui/actions.py +16 -30
  3. educommon/about/ui/ui.py +3 -12
  4. educommon/about/utils.py +6 -5
  5. educommon/async_task/__init__.py +0 -1
  6. educommon/async_task/actions.py +18 -13
  7. educommon/async_task/apps.py +4 -0
  8. educommon/async_task/locker.py +2 -5
  9. educommon/async_task/migrations/0001_initial.py +55 -9
  10. educommon/async_task/migrations/0002_task_type_and_status_data.py +94 -89
  11. educommon/async_task/migrations/0003_alter_runningtask_options.py +0 -1
  12. educommon/async_task/models.py +9 -6
  13. educommon/async_task/tasks.py +11 -7
  14. educommon/async_task/ui.py +16 -35
  15. educommon/async_tasks/__init__.py +0 -1
  16. educommon/async_tasks/apps.py +4 -0
  17. educommon/async_tasks/locks.py +11 -21
  18. educommon/async_tasks/migrations/0001_initial.py +68 -8
  19. educommon/async_tasks/migrations/0002_load_initial_data.py +0 -1
  20. educommon/async_tasks/models.py +9 -29
  21. educommon/async_tasks/tasks.py +25 -54
  22. educommon/audit_log/__init__.py +1 -0
  23. educommon/audit_log/actions.py +27 -36
  24. educommon/audit_log/app_meta.py +7 -4
  25. educommon/audit_log/apps.py +44 -29
  26. educommon/audit_log/constants.py +7 -4
  27. educommon/audit_log/error_log/actions.py +1 -3
  28. educommon/audit_log/helpers.py +2 -4
  29. educommon/audit_log/management/commands/reinstall_audit_log.py +11 -7
  30. educommon/audit_log/migrations/0001_initial.py +91 -16
  31. educommon/audit_log/migrations/0002_install_audit_log.py +13 -13
  32. educommon/audit_log/migrations/0003_logproxy.py +1 -3
  33. educommon/audit_log/migrations/0004_reinstall_audit_log.py +1 -4
  34. educommon/audit_log/migrations/0005_postgresql_error.py +4 -2
  35. educommon/audit_log/migrations/0006_auto_20200806_1707.py +3 -4
  36. educommon/audit_log/migrations/0007_create_selective_tables_function.py +8 -5
  37. educommon/audit_log/migrations/0008_table_logged.py +0 -1
  38. educommon/audit_log/migrations/0009_reinstall_audit_log.py +0 -1
  39. educommon/audit_log/models.py +36 -42
  40. educommon/audit_log/permissions.py +11 -9
  41. educommon/audit_log/proxies.py +12 -23
  42. educommon/audit_log/ui.py +18 -15
  43. educommon/audit_log/utils/__init__.py +28 -60
  44. educommon/audit_log/utils/operations.py +16 -2
  45. educommon/auth/__init__.py +0 -3
  46. educommon/auth/rbac/__init__.py +2 -4
  47. educommon/auth/rbac/actions.py +148 -145
  48. educommon/auth/rbac/app_meta.py +9 -6
  49. educommon/auth/rbac/backends/base.py +2 -8
  50. educommon/auth/rbac/backends/caching.py +27 -37
  51. educommon/auth/rbac/backends/simple.py +1 -4
  52. educommon/auth/rbac/checker.py +1 -3
  53. educommon/auth/rbac/management/commands/rbac.py +6 -11
  54. educommon/auth/rbac/manager.py +18 -47
  55. educommon/auth/rbac/migrations/0001_initial.py +73 -12
  56. educommon/auth/rbac/migrations/0002_model_modifier_metaclass_fix.py +7 -6
  57. educommon/auth/rbac/migrations/0003_permission_hidden.py +1 -5
  58. educommon/auth/rbac/migrations/0004_auto_20171024_1245.py +26 -19
  59. educommon/auth/rbac/models.py +63 -68
  60. educommon/auth/rbac/permissions.py +6 -7
  61. educommon/auth/rbac/ui.py +83 -84
  62. educommon/auth/rbac/utils.py +10 -11
  63. educommon/auth/rbac/validators.py +4 -5
  64. educommon/auth/simple_auth/__init__.py +1 -5
  65. educommon/auth/simple_auth/actions.py +79 -92
  66. educommon/auth/simple_auth/app_meta.py +2 -9
  67. educommon/auth/simple_auth/checkers.py +3 -3
  68. educommon/auth/simple_auth/migrations/0001_initial.py +23 -4
  69. educommon/auth/simple_auth/validators.py +0 -1
  70. educommon/contingent/actions.py +7 -7
  71. educommon/contingent/app_meta.py +1 -4
  72. educommon/contingent/base.py +10 -15
  73. educommon/contingent/catalogs.py +424 -540
  74. educommon/contingent/contingent_plugin/actions.py +4 -15
  75. educommon/contingent/contingent_plugin/apps.py +10 -4
  76. educommon/contingent/contingent_plugin/migrations/0001_initial.py +5 -6
  77. educommon/contingent/contingent_plugin/migrations/0002_add_contingent_model_deleted.py +6 -11
  78. educommon/contingent/contingent_plugin/model_views.py +2 -12
  79. educommon/contingent/contingent_plugin/models.py +2 -7
  80. educommon/contingent/contingent_plugin/observer.py +14 -13
  81. educommon/contingent/contingent_plugin/plugin_meta.py +1 -3
  82. educommon/contingent/contingent_plugin/storage.py +8 -7
  83. educommon/contingent/contingent_plugin/utils.py +6 -6
  84. educommon/django/db/fields.py +72 -86
  85. educommon/django/db/migration/__init__.py +3 -7
  86. educommon/django/db/migration/operations.py +29 -51
  87. educommon/django/db/mixins/__init__.py +16 -10
  88. educommon/django/db/mixins/date_interval.py +47 -75
  89. educommon/django/db/mixins/validation.py +26 -26
  90. educommon/django/db/model_view/__init__.py +18 -22
  91. educommon/django/db/models.py +9 -8
  92. educommon/django/db/observer.py +9 -27
  93. educommon/django/db/partitioning/__init__.py +66 -92
  94. educommon/django/db/partitioning/management/commands/apply_partitioning.py +3 -13
  95. educommon/django/db/partitioning/management/commands/clear_table.py +18 -14
  96. educommon/django/db/partitioning/management/commands/split_table.py +18 -13
  97. educommon/django/db/routers.py +6 -15
  98. educommon/django/db/signals.py +149 -2
  99. educommon/django/db/utils.py +14 -19
  100. educommon/django/db/validators/__init__.py +1 -0
  101. educommon/django/db/validators/simple.py +72 -100
  102. educommon/django/storages/atcfs/api.py +39 -53
  103. educommon/django/storages/atcfs/app_meta.py +1 -1
  104. educommon/django/storages/atcfs/management/commands/atcfs_migrate.py +42 -55
  105. educommon/django/storages/atcfs/models.py +0 -3
  106. educommon/django/storages/atcfs/monkey_patching.py +18 -12
  107. educommon/django/storages/atcfs/storage.py +14 -23
  108. educommon/extjs/fields/input_params.py +15 -45
  109. educommon/importer/XLSReader.py +143 -241
  110. educommon/importer/__init__.py +86 -4
  111. educommon/importer/api.py +53 -84
  112. educommon/importer/constants.py +4 -14
  113. educommon/importer/loggers.py +16 -26
  114. educommon/importer/proxy.py +131 -176
  115. educommon/importer/proxy_import.py +11 -12
  116. educommon/importer/report.py +4 -6
  117. educommon/importer/ui.py +32 -26
  118. educommon/importer/validators.py +4 -7
  119. educommon/integration_entities/helpers.py +14 -18
  120. educommon/ioc/__init__.py +3 -6
  121. educommon/logger/loggers.py +10 -14
  122. educommon/m3/__init__.py +20 -38
  123. educommon/m3/extensions/__init__.py +1 -0
  124. educommon/m3/extensions/listeners/__init__.py +22 -38
  125. educommon/m3/extensions/listeners/delete_check/listeners.py +31 -41
  126. educommon/m3/extensions/listeners/delete_check/mixins.py +20 -25
  127. educommon/m3/extensions/listeners/delete_check/signals.py +2 -2
  128. educommon/m3/extensions/listeners/delete_check/ui.py +15 -14
  129. educommon/m3/extensions/listeners/delete_check/utils.py +9 -11
  130. educommon/m3/extensions/ui.py +15 -33
  131. educommon/m3/transaction_context.py +17 -19
  132. educommon/objectpack/actions.py +70 -88
  133. educommon/objectpack/apps.py +5 -0
  134. educommon/objectpack/filters.py +9 -15
  135. educommon/objectpack/ui.py +59 -77
  136. educommon/report/__init__.py +9 -5
  137. educommon/report/actions.py +29 -32
  138. educommon/report/constructor/__init__.py +5 -8
  139. educommon/report/constructor/app_meta.py +1 -3
  140. educommon/report/constructor/apps.py +1 -0
  141. educommon/report/constructor/base.py +33 -80
  142. educommon/report/constructor/builders/excel/_base.py +138 -286
  143. educommon/report/constructor/builders/excel/_header.py +2 -9
  144. educommon/report/constructor/builders/excel/product.py +13 -34
  145. educommon/report/constructor/builders/excel/with_merged_cells.py +18 -14
  146. educommon/report/constructor/config.py +2 -0
  147. educommon/report/constructor/editor/actions.py +101 -215
  148. educommon/report/constructor/editor/ui.py +71 -93
  149. educommon/report/constructor/exceptions.py +6 -12
  150. educommon/report/constructor/migrations/0001_initial.py +36 -44
  151. educommon/report/constructor/migrations/0002_report_filters.py +86 -72
  152. educommon/report/constructor/migrations/0003_reportfilter_exclude.py +5 -5
  153. educommon/report/constructor/migrations/0004_reportfilter_fields.py +22 -18
  154. educommon/report/constructor/migrations/0005_reportcolumn_visible.py +5 -4
  155. educommon/report/constructor/migrations/0006_reportsorting.py +21 -17
  156. educommon/report/constructor/migrations/0007_include_available_units.py +14 -14
  157. educommon/report/constructor/migrations/0008_auto_20170407_1318.py +4 -5
  158. educommon/report/constructor/migrations/0009_auto_20180405_0642.py +1 -4
  159. educommon/report/constructor/migrations/0010_add_aggregate_fields.py +7 -8
  160. educommon/report/constructor/mixins.py +14 -15
  161. educommon/report/constructor/models.py +76 -124
  162. educommon/report/constructor/utils.py +3 -8
  163. educommon/report/constructor/validators.py +1 -3
  164. educommon/report/reporter.py +25 -43
  165. educommon/report/utils.py +14 -40
  166. educommon/rest/actions.py +7 -11
  167. educommon/rest/context.py +6 -16
  168. educommon/rest/controllers.py +10 -10
  169. educommon/rest/mixins.py +29 -27
  170. educommon/secure_media/app_meta.py +9 -9
  171. educommon/utils/__init__.py +3 -2
  172. educommon/utils/caching.py +1 -3
  173. educommon/utils/conversion.py +1 -3
  174. educommon/utils/crypto.py +1 -2
  175. educommon/utils/date.py +13 -26
  176. educommon/utils/db/__init__.py +17 -26
  177. educommon/utils/db/postgresql.py +1 -4
  178. educommon/utils/fonts/__init__.py +3 -4
  179. educommon/utils/licence/__init__.py +5 -16
  180. educommon/utils/misc.py +9 -18
  181. educommon/utils/object_grid.py +55 -62
  182. educommon/utils/phone_number/modelfields.py +1 -3
  183. educommon/utils/phone_number/phone_number.py +5 -8
  184. educommon/utils/phone_number/validators.py +8 -23
  185. educommon/utils/plugins.py +15 -28
  186. educommon/utils/registry.py +2 -1
  187. educommon/utils/seqtools.py +1 -3
  188. educommon/utils/serializer.py +9 -16
  189. educommon/utils/storage.py +3 -2
  190. educommon/utils/system.py +1 -3
  191. educommon/utils/system_app/management/commands/delete_objects.py +17 -34
  192. educommon/utils/ui.py +87 -84
  193. educommon/utils/xml/__init__.py +2 -7
  194. educommon/utils/xml/resolver.py +1 -0
  195. educommon/ws_log/actions.py +31 -76
  196. educommon/ws_log/base.py +6 -20
  197. educommon/ws_log/migrations/0001_initial.py +25 -8
  198. educommon/ws_log/migrations/0002_auto_20160628_1334.py +0 -1
  199. educommon/ws_log/migrations/0003_add_fields_to_smev_logs.py +20 -4
  200. educommon/ws_log/migrations/0004_auto_20160727_1600.py +7 -6
  201. educommon/ws_log/migrations/0005_auto_20161130_1615.py +14 -4
  202. educommon/ws_log/migrations/0006_auto_20170327_1027.py +3 -2
  203. educommon/ws_log/migrations/0007_auto_20180607_1040.py +8 -9
  204. educommon/ws_log/migrations/0008_auto_20180713_1445.py +23 -10
  205. educommon/ws_log/migrations/0009_auto_20201130_1553.py +7 -2
  206. educommon/ws_log/models.py +21 -35
  207. educommon/ws_log/provider.py +2 -1
  208. educommon/ws_log/report.py +8 -13
  209. educommon/ws_log/smev/applications.py +12 -27
  210. educommon/ws_log/smev/exceptions.py +2 -3
  211. educommon/ws_log/ui.py +32 -32
  212. educommon/ws_log/utils.py +1 -3
  213. educommon-3.13.2.dist-info/METADATA +57 -0
  214. educommon-3.13.2.dist-info/RECORD +354 -0
  215. {educommon-3.12.0.dist-info → educommon-3.13.2.dist-info}/WHEEL +1 -1
  216. educommon/utils/patches.py +0 -27
  217. educommon/version.conf +0 -11
  218. educommon-3.12.0.dist-info/METADATA +0 -47
  219. educommon-3.12.0.dist-info/RECORD +0 -357
  220. educommon-3.12.0.dist-info/dependency_links.txt +0 -1
  221. {educommon-3.12.0.dist-info → educommon-3.13.2.dist-info}/top_level.txt +0 -0
@@ -1,357 +0,0 @@
1
- educommon/__init__.py,sha256=fvsBDL7g8HgOTd-JHOh7TSvMcnUauvGVgPuyA2Z9hUI,419
2
- educommon/thread_data.py,sha256=n0XtdesP9H92O3rJ8K6fVnJLiHqyJEfh2xpuT36wzxs,61
3
- educommon/version.conf,sha256=xen1bzwhKoQ5lIF3Nb7Dd54xD8sqWUWN5HjzGA8el-c,452
4
- educommon/about/README.rst,sha256=U48UW5jv-8qHyaV56atzzkNMvzHKXVcWSb_NR06PnMo,2685
5
- educommon/about/__init__.py,sha256=H1W0IgW-qX9LCZ49GOJzHdmQGHhh-MA6U1xmNx7WnfM,132
6
- educommon/about/apps.py,sha256=GrpJAOE2sF0ukWsqugP_WJS88DO4aL-T3kTLprrJrcA,259
7
- educommon/about/utils.py,sha256=sx95IIGwQWZZPLxgWYtDCxwlau_DVTB9measblhJWi0,625
8
- educommon/about/static/edu_about/barsgroup.png,sha256=WGmgL7P-gN516_sz8QdYC96kPPkfd2wqUY_UfIYzUQk,8382
9
- educommon/about/ui/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
10
- educommon/about/ui/about-window.js,sha256=IdItT3uimrz4r_7q96rjhwtUBk6jYdp3bll0KQ6pxYQ,535
11
- educommon/about/ui/actions.py,sha256=UKY-7d0PNMqLwkc0Ah-AMBc7UQgSBHpwiSbAOrpzjtU,5975
12
- educommon/about/ui/common-tab.html,sha256=5T4yKE-yDN3vD0sjCPT13hjQXxd08SVeZcZx5JDlm0Y,700
13
- educommon/about/ui/packages-tab.js,sha256=67e7MNKA7d5yr6wb8-C_RziAnlSHClvCBwd9QId0KkU,11192
14
- educommon/about/ui/postgresql-extensions-tab.js,sha256=JOzStPqMqTq3bANlka-WRWH7cbh1X90SH1KXkpWdfP4,129
15
- educommon/about/ui/ui.py,sha256=gI7NL9SLAvIz6aGWW7O92s_diE5Eb4hDUMC-Y2Fog4Y,5272
16
- educommon/async_task/__init__.py,sha256=OAycE1z98I29hf9C8pmgMRW6g6nC_56exQ7uwZS5-i0,110
17
- educommon/async_task/actions.py,sha256=hZxpPmcKx5LVQ8s8iMGLtM81HwdLUebnGd3OIgmJ8wc,6654
18
- educommon/async_task/apps.py,sha256=dGaiYZ9ockWK1wUAmEDP7NMtinV-IRkXGbaIrhsfuhU,143
19
- educommon/async_task/consts.py,sha256=LulbNKSlS_T8sNjFqMS7DtaotVI0HibD1a0Iz9iDo8M,242
20
- educommon/async_task/exceptions.py,sha256=PaaG2nqP0G2eZ-p0yssca2hhxIccil6MYKH6ZteezP8,117
21
- educommon/async_task/helpers.py,sha256=HihuIHrszhVQAb-Cs6-l4npnlNAgctItGBJ-oIPQX74,2706
22
- educommon/async_task/locker.py,sha256=TwVFhuEGsK0JHPXsWuqx7t2Op2mUKETY5EvHSeuKjc8,3844
23
- educommon/async_task/models.py,sha256=GdIzccMAJ6vZwGAI1HPukp3ceOgbaQ4dzkHi3HO-Ty4,7383
24
- educommon/async_task/tasks.py,sha256=T0INbjknXspeMleUkxPSGwJoKJy1_ZSDed4kbQ-RK44,12929
25
- educommon/async_task/ui.py,sha256=LD7RwM4-6M_6ZO3Ulwy6_lK7rDPcddg-gB6EOV65494,5829
26
- educommon/async_task/migrations/0001_initial.py,sha256=W0HfBmhatmQ7Dy4giGeqaZNtLHiEVAvJqx0AvHaxGZ0,3677
27
- educommon/async_task/migrations/0002_task_type_and_status_data.py,sha256=rDGxKnbwu4OqfcodFwA_TR-kfDGRKJhivEBFKuurM30,3359
28
- educommon/async_task/migrations/0003_alter_runningtask_options.py,sha256=bZz5o5q66rf9Hh4kmHs-WcV05Q2KhQEbLrs4s9bWzjg,480
29
- educommon/async_task/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- educommon/async_task/templates/ui-js/async-task-list-win.js,sha256=hjVV7S7HcJcpFkeToGAPQh_Icg63QC4jqGAyGOlilK8,749
31
- educommon/async_task/templates/ui-js/async-task-revoke.js,sha256=xKDi60ZH6X9CDkauYL27Ry6msmmJ1v14Cm1kv0lMkxg,1257
32
- educommon/async_task/templates/ui-js/async-task-view-win.js,sha256=EUTK1XhgPxNgJmQ2tB8oGvJt9XHVkdDv7FXAGD4cAUQ,260
33
- educommon/async_tasks/__init__.py,sha256=OAycE1z98I29hf9C8pmgMRW6g6nC_56exQ7uwZS5-i0,110
34
- educommon/async_tasks/apps.py,sha256=ollZ8IFsvIa9Rut-0-vqB9nfIrc5f12otI9SXISFpcQ,138
35
- educommon/async_tasks/exceptions.py,sha256=qPFa1MVHIRSjXwGXcOPeWQqtgRe-1APaDs_X8exImKA,251
36
- educommon/async_tasks/locks.py,sha256=PqSlJeYrKqlWx9FCx6JQvfb-P9H3pIGwryi3PeGW7Xw,3489
37
- educommon/async_tasks/models.py,sha256=_U8X76yQiBnPbmzS8Utz5vdjptwbUHk3ykaA-hnmQ38,3539
38
- educommon/async_tasks/statuses.py,sha256=aFm_fdrnN6kNyv46J90xH-RBDGdQQCcVgFyf1sbl9ow,1413
39
- educommon/async_tasks/tasks.py,sha256=WgSt-ozVp6z7UvRZBUXufbtYP-z93DqGVux845yW79c,11374
40
- educommon/async_tasks/fixtures/initial_data.json,sha256=d5EGMoCY8CVJL80C8ZaPwVVUZNfYelNmBIr7On4yZbg,303
41
- educommon/async_tasks/migrations/0001_initial.py,sha256=wLPfziKhYNW5Wygi2UQDvc2RyQJI29wTR_sjhmeygHI,4205
42
- educommon/async_tasks/migrations/0002_load_initial_data.py,sha256=LU_-pd1xzR2Ephi4YIe84-UtcrfGWb0-wUrbHGYov_g,478
43
- educommon/async_tasks/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- educommon/audit_log/__init__.py,sha256=Tfr49ckPpKO13NyGn-5Tr5G6MxRb09BvOgf0fTvBmCw,2772
45
- educommon/audit_log/actions.py,sha256=hPlnFK8Q8uITA6Rn0CvAyxo76pxVGC1X-g8vzWphgGo,5980
46
- educommon/audit_log/app_meta.py,sha256=fMPgP5S6kDe_lskTEhPVLzjDLDhoVPKCIjUeD4L7sHA,310
47
- educommon/audit_log/apps.py,sha256=zHeBEoF8HVNc6YIIQTW-lpEMXjrywnB23uqxXIR9IKg,5033
48
- educommon/audit_log/constants.py,sha256=96Gp-rYpt6poKAu8LbXY_0aApdOWYBy09235kAB0rSo,880
49
- educommon/audit_log/helpers.py,sha256=qJLV6yVgf3Z-Mgalc6kGfFvxk8h1L4bTO9fdSL36OPk,738
50
- educommon/audit_log/middleware.py,sha256=HkxBh-1RQJnhKqckkXaMbFjJ34WgZGJssbk04wiS3ts,1140
51
- educommon/audit_log/models.py,sha256=1l1ld-q9Kg90JKssrR_MbM9d6nJuqhFCc8lvVo9RUW8,11682
52
- educommon/audit_log/permissions.py,sha256=VB040UAY4_KmqM4ioToHlVHQYSE7OP0qHEUn9bnWUSo,1241
53
- educommon/audit_log/proxies.py,sha256=clKwtEQUBxEq6TuQ3GTyx-aKFZYaJYAnhaBh8ENHSlw,8559
54
- educommon/audit_log/routers.py,sha256=FF3KLvf6_WWFuZ9VRI8AZyKDfWp_lyd0i6bcVFfIehQ,204
55
- educommon/audit_log/ui.py,sha256=JPdhPXXpoAH391uXpddsb4fl48L6otP0vd49acA_ysU,2117
56
- educommon/audit_log/error_log/__init__.py,sha256=lfAIm5GTGQ1-kRFxH1s0agSt2Oeguwj2906XNBC0qH4,97
57
- educommon/audit_log/error_log/actions.py,sha256=RSWccdLiCHtu2pcFQim3_BPHfR8Rf8W0AdgESlAh9D8,2327
58
- educommon/audit_log/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- educommon/audit_log/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- educommon/audit_log/management/commands/reinstall_audit_log.py,sha256=_tHEJnTdd5Gsrk1_mYT8DLS_o_SbYOUeS7TTDlDv_NY,2945
61
- educommon/audit_log/migrations/0001_initial.py,sha256=6GOwqGaL1n1tHZ9OllGKnzMTTbjwZ83-bjBnUPboOhU,4461
62
- educommon/audit_log/migrations/0002_install_audit_log.py,sha256=zZbEyDS2kqmjWMjk8Y4Xh4P2y6eUTWpZvD5rV02N1HU,2831
63
- educommon/audit_log/migrations/0003_logproxy.py,sha256=l52NvBlwAnlvEsbh8MHBrtfurI6Z385KsV9JAD3eLXE,405
64
- educommon/audit_log/migrations/0004_reinstall_audit_log.py,sha256=YjOEd_dqkelehp_peOLKaAmHBJOU6qiOUKo-xT4kddw,282
65
- educommon/audit_log/migrations/0005_postgresql_error.py,sha256=r5Ni1CfZNtWOQIhqu8sgJEccJHBrT69ZVY6mApDAL44,709
66
- educommon/audit_log/migrations/0006_auto_20200806_1707.py,sha256=jeNvvIKyYCt22C4G282U6u_90_KK7rEC41Ytlz3b94A,611
67
- educommon/audit_log/migrations/0007_create_selective_tables_function.py,sha256=xhxqtyY4J7Dg__kanvTlhA4y_sxHH-5agZ555fX5x7Q,812
68
- educommon/audit_log/migrations/0008_table_logged.py,sha256=1ZpJ9-gywRLL81a8BizuLQ68c4YIfta2-xP_k6K6iWA,477
69
- educommon/audit_log/migrations/0009_reinstall_audit_log.py,sha256=22DZnOzYmZG1rLdNPXOZArje65CzTnOzvjeVLe72AYw,287
70
- educommon/audit_log/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
71
- educommon/audit_log/sql/configure_audit_log.sql,sha256=M3QxNKTZbn-uNRxGDvNxE9iJh1EOQUTIho7rvc3yhlY,1511
72
- educommon/audit_log/sql/install_audit_log.sql,sha256=SHrZ7WaYxawUKQEpZnj9k4HTU25NvBlxX_POqZ95HU0,14107
73
- educommon/audit_log/utils/__init__.py,sha256=qIO8Fre4BMfsKGYi7Q_iFXaKz95d74LxeSOrazhPw1Y,15603
74
- educommon/audit_log/utils/operations.py,sha256=Qjdb6FOG3WXbniG4Pau5yDa2Dfn85ivKgSFdw1WPv8A,1661
75
- educommon/auth/__init__.py,sha256=JnKZNoNGR8H9TIS_6wOlMYTabOuvsxacEQGi1tIJ148,127
76
- educommon/auth/rbac/__init__.py,sha256=rMC51R-oN3jCqWIkV1Pkfv5xDNSblwR8Eh-P5q66UDI,329
77
- educommon/auth/rbac/actions.py,sha256=25zVmGmYWE2gUt2ak13Ao9pOIZlJx6rgir8eLbj6cMM,26872
78
- educommon/auth/rbac/app_meta.py,sha256=tnt65zLTfng6qOrlMByGnxfF3gVLZ6OATNf5gCD3IWI,450
79
- educommon/auth/rbac/checker.py,sha256=8A583rwsXDeb4dCegN5mufMFhyDwvd72zfug90usvF8,2957
80
- educommon/auth/rbac/config.py,sha256=mRpOzD29ZHc0zX-CxhUyyICj3h0xj9gUM6N1OoLEWm0,1074
81
- educommon/auth/rbac/constants.py,sha256=Hm4kuG7HZ9krTwF6HIj3eMe8v98ui3EMueToBTeOh4A,502
82
- educommon/auth/rbac/manager.py,sha256=3WecXF0SU-uBGMxAWnsVLGmVI9QmHS7zDQ9wVgu6mZE,16250
83
- educommon/auth/rbac/models.py,sha256=fnLEYsr22ylGdefhT8bZz3mO8MZv8yAM5k6K8GXZYLQ,15214
84
- educommon/auth/rbac/permissions.py,sha256=rvAYUhWiB4xln39BgxRaXs7T5IzHAg0ZAtKgU__uPk8,865
85
- educommon/auth/rbac/ui.py,sha256=RK3YpoKyxKoJyK_qaBzV6HpwffA_S99ZzQbNKS134Ng,15735
86
- educommon/auth/rbac/utils.py,sha256=L9F5yXfDhkrgVHjgqsO7r5gYrfbM32OVAMiH_bMU4hQ,7819
87
- educommon/auth/rbac/validators.py,sha256=TJBzdd-DNCLu1k6HO_zejH3Gi2flMAhC6KemqDhER_0,483
88
- educommon/auth/rbac/backends/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
89
- educommon/auth/rbac/backends/base.py,sha256=v_NDcPwNR_6-NHjhhyfexj53awjFpsCkMy7tXJN2nlM,2995
90
- educommon/auth/rbac/backends/caching.py,sha256=YPIMlRYGVRZF64tsbsy2IfXcxc2kOnwF40muzOz7pAc,10290
91
- educommon/auth/rbac/backends/simple.py,sha256=06uOw3ATbY1wZvV410h7RZxC2L4haPGOXqJ1fSfXwZU,5038
92
- educommon/auth/rbac/management/__init__.py,sha256=4SvPFcSTlvQFsFT8RfibO_bfX-9b3rHugdZ6HhS0YOo,71
93
- educommon/auth/rbac/management/commands/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
94
- educommon/auth/rbac/management/commands/rbac.py,sha256=uUd_WQ12BpMSe6dMIsIRW-9smGoeW6owa26OyBfaL7A,5520
95
- educommon/auth/rbac/migrations/0001_initial.py,sha256=1wujKCwCJHM95h07FIWePUETu9hpfwrr-4Q7_8D7RXY,5474
96
- educommon/auth/rbac/migrations/0002_model_modifier_metaclass_fix.py,sha256=Q7Xs13GLUCvvBG_2RNT4OY7wgkZTTwWhgGNtCxLZXM4,577
97
- educommon/auth/rbac/migrations/0003_permission_hidden.py,sha256=ugvOCf4w0x1MbVqrlsWMrwW2b4D6BYzF0GQyJ71nFhs,470
98
- educommon/auth/rbac/migrations/0004_auto_20171024_1245.py,sha256=h358xDjbPcjA1jgRC-98F3C4wvQjn2ndHTjX33HfnJ4,2077
99
- educommon/auth/rbac/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
100
- educommon/auth/rbac/templates/rbac/role-add-window.js,sha256=5l1B38sfPp89nyky_Bpnf5GE8wSv6xLgHpJsqDwMCNc,335
101
- educommon/auth/rbac/templates/rbac/role-edit-window.js,sha256=5MueeeqykEdsW6BceIj_YOGCGs4g9dDL36mmmXwbSQg,7914
102
- educommon/auth/rbac/templates/rbac/roles-list-window.js,sha256=q7QqjsRyFtr1qk0dOJ9zn708SzCR9t_uN03ureIcqNQ,3768
103
- educommon/auth/rbac/templates/rbac/roles-view-list-window.js,sha256=gRkVvd-Wak57q9mNgDSXzzy-Pv-ZQokwQIlmhlFLys0,536
104
- educommon/auth/simple_auth/__init__.py,sha256=SLKPUpLFIQapwPtFm1-he9DcZU2TvKO_ZhgXVWnJqKw,267
105
- educommon/auth/simple_auth/actions.py,sha256=Rz6cbHZqocux5sWRC9mA2sdpvKarGmAmypDDsU8mi4k,11943
106
- educommon/auth/simple_auth/app_meta.py,sha256=TSVaaMPfSv0CMut9CYEHw4jtu4Zze_SDdPlGaFUKxxo,1088
107
- educommon/auth/simple_auth/checkers.py,sha256=Wc2zkoOakNQoBTr3k6_1CdvUOIkFw1l7ZRcecAnGfM8,2522
108
- educommon/auth/simple_auth/const.py,sha256=vizOnXnOVzY5CkgilnwBmhc3vO4biYKUu4VnzM7XsL4,396
109
- educommon/auth/simple_auth/models.py,sha256=HhyXs0krIIxtkPIeK8skjbRAdSMrfQ1sAL1Tuoe5vZU,700
110
- educommon/auth/simple_auth/ui.py,sha256=30S7T_UxqtTrN-KBYSsEPRZ8AYQr6IXPimArVeewhtQ,4620
111
- educommon/auth/simple_auth/validators.py,sha256=CglKaYI7q51A5wkJpoUr6oFz11YtQXnMlDnkXSi7T_o,204
112
- educommon/auth/simple_auth/migrations/0001_initial.py,sha256=XjEBW3AN67whOgfR03bqfm8r74eOJpQhFeFr6h5DFiE,1396
113
- educommon/auth/simple_auth/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
114
- educommon/auth/simple_auth/static/simple_auth/simple_auth.css,sha256=NqCIy9dIq389L7xnefNYAi2_vksJnsV1CRL8ZItTrKc,123
115
- educommon/auth/simple_auth/templates/simple_auth/change_reset_password_page.html,sha256=G6lrS61ZMFZzpZ3Jt1ZwpIGOCUky6R9W1K7QrVubIdU,1577
116
- educommon/auth/simple_auth/templates/simple_auth/login_page.html,sha256=BN0rx5mSmyCwVqa9uWbDRgtsojg6COQ6vZWbz0LDPm4,1444
117
- educommon/auth/simple_auth/templates/simple_auth/reset_password_page.html,sha256=MRg0QfF6LMfpRxZUphhI5BO1ENrCKjMmDW3tkvCcFIQ,1340
118
- educommon/auth/simple_auth/templates/simple_auth/email/reset_password.html,sha256=GuqE56sItB1Ar5vA5-jFkDnUlZbRK0cWDk2eWtDWcbg,635
119
- educommon/contingent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- educommon/contingent/actions.py,sha256=zcKKUvpWJrm32q0q96oILqVIWMaqaO8T3_sbu0Z6KO0,3233
121
- educommon/contingent/app_meta.py,sha256=4VE-PqRFLs8vLkaowIHbDyVb_9dvCScml3WvZ24KDws,273
122
- educommon/contingent/base.py,sha256=pGpYqTuJ9XyKpK7PKZZAngURlb7-YQx-wCZKAhYhYQA,6854
123
- educommon/contingent/catalogs.py,sha256=tUQSjDF0oWD4I7SUF48PwFg0tZbtQP5tUiWtR6zyY7Q,62092
124
- educommon/contingent/contingent_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- educommon/contingent/contingent_plugin/actions.py,sha256=SXjFCDGyFHrOZNcroEouRLZB7NqFSs7M_1Gw89bfe48,717
126
- educommon/contingent/contingent_plugin/apps.py,sha256=2RustoCdwosXEIXpXlgK1UVfFvx729K_lP6F6l8xCr8,810
127
- educommon/contingent/contingent_plugin/model_views.py,sha256=Xk-Xck9GsiB2AGdW750fsGtT2p1hybZmGI5hE2JhIwM,769
128
- educommon/contingent/contingent_plugin/models.py,sha256=Du9Ks2irXNLDmH0yE5fmID--eMyWufHYJihOdvEbceA,2506
129
- educommon/contingent/contingent_plugin/observer.py,sha256=JywNusbhDhTHe1sbWS_joSvK2sB_-b3yYFdEY4ZYX08,5181
130
- educommon/contingent/contingent_plugin/plugin_meta.py,sha256=mUGxMYPIRHrwXujREqZckaoGLO_tTF51O79RMexURto,148
131
- educommon/contingent/contingent_plugin/storage.py,sha256=Ud8-1jhejMkFyMYhjcsHexAtcLuQX1HGqNi3hBYyRk0,3314
132
- educommon/contingent/contingent_plugin/utils.py,sha256=KwAAO17rwviPrWNdluL4pv9yBeBO2aqtTFXhDKLiWT8,7161
133
- educommon/contingent/contingent_plugin/migrations/0001_initial.py,sha256=2_eQ_tVQenBFkwRK3wPE6J9BgTxKPJcyD_7Odx3vEUs,1594
134
- educommon/contingent/contingent_plugin/migrations/0002_add_contingent_model_deleted.py,sha256=OtqDfkN6s0F0Zg58dT4YarmSWQDUWrjoPh4AZSX9Gx0,1176
135
- educommon/contingent/contingent_plugin/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
136
- educommon/contingent/json_data/icao.json,sha256=4XEN5fCjczAvs4sGZFeZJmGMdxk4wcfWZBxjAi2ECwk,20078
137
- educommon/contingent/json_data/okogu.json,sha256=1yK8VWxivX5VeFQzkNSUWqHabu6RBy4VJW0VnOIlEsw,53540
138
- educommon/contingent/json_data/oksm.json,sha256=kZIQPcdWhwtHKJGgfO79gCYtk6dEe2iAz3Lj5L_AZrU,41859
139
- educommon/django/__init__.py,sha256=0Fe7dZFIVdw18JIpvl9P7q0GoqKN7ySr5D1rA9YaAzk,69
140
- educommon/django/db/__init__.py,sha256=bkN8tB5vTllcTXYt8ERHn1wgUQCFXNUmZi068u1jBfU,73
141
- educommon/django/db/fields.py,sha256=a_CCuDthg9Gv_T3Ngm93Iz6kTFNo1LJMnk2-PFKohsM,7141
142
- educommon/django/db/models.py,sha256=mNtrj3MZYCXJJ2alw5TaIiN_fFjsCUrm8OCeuZ9isWI,2107
143
- educommon/django/db/observer.py,sha256=oAh0Uu0fwlGZ4pj1ytKZyAhosbWKs4THGBTVyR4NYmA,10990
144
- educommon/django/db/routers.py,sha256=Zx8cIf7ZQpQLVhxutNj31_IQqYS6J3MnuBTOA5m43SQ,3268
145
- educommon/django/db/signals.py,sha256=pbBr31q3hK6aBW6FZXYmATxKp8KrCuqmrNdDZNnpw38,136
146
- educommon/django/db/utils.py,sha256=S9rZhfLn4GYWXiVOPSsEGl382NzUFeOxh-G7OtB43vE,9206
147
- educommon/django/db/migration/__init__.py,sha256=FwICNxrFGFwzy5klIKzYIhVpsunLipS4W8ysS8C0z5k,1882
148
- educommon/django/db/migration/operations.py,sha256=R_SCK8R1IF6x5qjJPoTnGjiAedqnBT-OpaEjyyJaxVM,9527
149
- educommon/django/db/mixins/__init__.py,sha256=SnFhMU701HuRcmS8QuIx4SS3B4vRdVsfwK7SgrqDD0U,14746
150
- educommon/django/db/mixins/date_interval.py,sha256=9Ro7KxqSf-dskU9MjAra3aS2a09_11cv1Tol7JWQw3g,24715
151
- educommon/django/db/mixins/validation.py,sha256=u3SDRSDvEkOjEMgfgCIFtnTUk4LRPdru0swzTGDSqIY,12173
152
- educommon/django/db/model_view/__init__.py,sha256=x0rHvR0q6RSDtuMWDGASrtCIYsytfNh-jHcsra0BTZY,12363
153
- educommon/django/db/model_view/table-view.html,sha256=EEz_tSJagl-mT-_bJaELshAEnFnuhPerpWegb3XeGO8,631
154
- educommon/django/db/partitioning/README.md,sha256=OgmFZwK_wD1EFKRprnFkeF0Rt7igcEuBncsOF9CsBjI,6927
155
- educommon/django/db/partitioning/__init__.py,sha256=SGUfTkw3iWcWXjOk7tcXc7RiYpeACssc5O8AMie0CbI,24083
156
- educommon/django/db/partitioning/const.py,sha256=52Ue7NylmDUMfV0kbk5fqCaE045IhMIh5ZX9juedYbY,927
157
- educommon/django/db/partitioning/partitioning.sql,sha256=UfPrtxy82tIr3XjXg_qTg-rUS0KqUyBexp3TBPdU0gk,21304
158
- educommon/django/db/partitioning/partitioning_set_search_path.sql,sha256=oGlljp2A6xd3FctJAqPAO7RCBSar7C_nsXEu8Ssi0WM,342
159
- educommon/django/db/partitioning/triggers.sql,sha256=OEwQqMwzRB79LcFM0-cWH8x_UdLKw-iZTSPILTGJ1Uk,3401
160
- educommon/django/db/partitioning/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
- educommon/django/db/partitioning/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- educommon/django/db/partitioning/management/commands/apply_partitioning.py,sha256=iDpw7Fl_PvuQK0R6yfcwKM8s6ctRi7eLMaW-qEaJLNM,3174
163
- educommon/django/db/partitioning/management/commands/clear_table.py,sha256=dohXtylU31ZxOJ1XPOrDcYi9DCA1fU13HWGJ_LgHqW4,2785
164
- educommon/django/db/partitioning/management/commands/split_table.py,sha256=gZwTsewKmToaeHh1MpDjttKUrCGYAxAKEy63e7EyPfA,2756
165
- educommon/django/db/validators/__init__.py,sha256=Hyx-L4suVzUuCEb-HQB9g8LnaxKQp2ymv-DtaOW6qbw,1986
166
- educommon/django/db/validators/simple.py,sha256=cwG-OLVPdD146A9dzLOaGyzZOoUWgQoFu9KDQ7_k8xI,38886
167
- educommon/django/storages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- educommon/django/storages/atcfs/README.rst,sha256=yPy55jjKmSVL6Sg1LHzg_6wI7UAG4JDI6rjqaVxQfWs,2656
169
- educommon/django/storages/atcfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
- educommon/django/storages/atcfs/api.py,sha256=XeQ_HBbvauiJG704Am5mDbOnvZblJH35xj70mKf13KI,6004
171
- educommon/django/storages/atcfs/app_meta.py,sha256=whuDogy_KsWNgdi1fitcyEClfd-2veYMPuLF9JLEVXY,352
172
- educommon/django/storages/atcfs/exceptions.py,sha256=GD2yxSiZC9N8n3KusXY5bJilPlD6nGL1G3xOwV9aIXc,106
173
- educommon/django/storages/atcfs/models.py,sha256=2JOzvRId0cnI-hgFHsspsP-ZXG9b75xefxIVaK3Ciuk,160
174
- educommon/django/storages/atcfs/monkey_patching.py,sha256=tWlY255LcS8h87CMQvYl-V1pFUIhylYJW0grlgmcfbs,2623
175
- educommon/django/storages/atcfs/settings.py,sha256=b1adPmpOaLq1uOm9vZaV9cHfKdhTlrtuO5tv0crV1j0,808
176
- educommon/django/storages/atcfs/storage.py,sha256=__J-Yf8vbJdD_R4qG_Njj7N4GQeQi2drjOgeWMd2F6k,4180
177
- educommon/django/storages/atcfs/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
- educommon/django/storages/atcfs/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
- educommon/django/storages/atcfs/management/commands/atcfs_migrate.py,sha256=D34mlG6mCSVUnM_r_Q-jmwyMY3EoDht7lae6-EVzmMc,7416
180
- educommon/django/storages/atcfs/templates/atcfs_unavailable.html,sha256=l5b0qFln7Cgv-oyzwk9Rk_ktNQlwSQ-fu1WQWuT6phY,196
181
- educommon/extjs/__init__.py,sha256=42n25CtDUE3wN6w27AplLrQnLrP8074V7YwAiLdEwRU,87
182
- educommon/extjs/fields/__init__.py,sha256=ZdfvHYPEO15R0dKOV7kpLudbdRe2vK4i9Hd20LDR3fM,110
183
- educommon/extjs/fields/input_params.py,sha256=1Lskn-fHygkn4xFciinDOnrXrAMZMznzfDqPvxv_vEM,4099
184
- educommon/importer/XLSReader.py,sha256=7xgaYl25AuwvwWybmYpKv18RPSC6v_E4S5OVwZs-AC0,37531
185
- educommon/importer/__init__.py,sha256=Qnt6Ss0OP2o3CQKkmuwFnb0uWZt2PGFZk_pdcw23spg,147
186
- educommon/importer/api.py,sha256=XsctSlbAlbk7SvI71QNoV6c2DcBLfG2dyWa88MWFNQE,13402
187
- educommon/importer/constants.py,sha256=RXR7b_v7imwEw0CMS5J6bkW-DHXGyeuR9SK4ziNpHj0,733
188
- educommon/importer/loggers.py,sha256=N07Q3MuGj2bWDmpsBpC76ZSjvVsRtWduxue4QNeVUmA,10270
189
- educommon/importer/proxy.py,sha256=lPJRko3cYnk3n8Aj856Ou0ktldwNbll8VLos1K1MS4c,37353
190
- educommon/importer/proxy_import.py,sha256=UijRonk2c1LJOLozTzMgv0rxZLnlhlogz9fCTdKyEWY,6244
191
- educommon/importer/refactoring-notes.txt,sha256=_9EsZLLDrJI4fioQ6bzcOMWE0lCYLyMJDi5Phe4mPNo,2087
192
- educommon/importer/report.py,sha256=_fLiblzOiupZio-of3YLX2yJvj9uedM3ACrj_BCEPXM,1506
193
- educommon/importer/test_file.xls,sha256=eq18e1vYTEEM_t7Pa5WsDVo2qwpUxfSwI7VCqhdpe6I,8704
194
- educommon/importer/ui.py,sha256=PdYvmGZajb608wqZVU8NIy1s6eyl2IU5FE6gxxnB1Jw,3918
195
- educommon/importer/validators.py,sha256=xHT7kUhkIfFa08xnRZMDKdAsjS5TJIKPIPvl09thV7w,1182
196
- educommon/integration_entities/README.rst,sha256=Vc5BYEHY8KfRZVHJg4GAAk0aKvJn52PJuShSxvDMa8g,158
197
- educommon/integration_entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
198
- educommon/integration_entities/consts.py,sha256=XMSR-9Q5cLSXe6Bn0JWFQQ8UfTyJfs7LYT1klj0Xvsc,448
199
- educommon/integration_entities/entities.py,sha256=v4QQPb8NeQJMdgxjfEcY9_NmPGasQbRPoA10gZEMAjU,2005
200
- educommon/integration_entities/enums.py,sha256=MPS3F402TMUP9wDJXBgNHoktVOf-zM8lAD22QphnLtU,335
201
- educommon/integration_entities/helpers.py,sha256=ETX_sn6PeKpUK9mBQQ3vtJy143EklRRB6koOQtpc-5I,9888
202
- educommon/integration_entities/mixins.py,sha256=pTZbuLMMsD4y513j-UoRKAjmPjCiwMp8d8I5xWoU33M,1115
203
- educommon/ioc/__init__.py,sha256=1X6uu-hwwxbwRZ6g0whIE04GbpXgU7K80QmtE0v-4kQ,4028
204
- educommon/logger/__init__.py,sha256=KhXTyv0V96wX_6QShkVrRIk_mqJtDYpeBMBb8PtBl-A,822
205
- educommon/logger/app_settings.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
- educommon/logger/apps.py,sha256=wkGeOGuklNHp_HrTiK1WXOvhkK90mAea3Jp_7uJjQw4,944
207
- educommon/logger/consts.py,sha256=uk_TFZteg3ghT1_pvP9nYALlyZBrsH8oMr6AXANFKAU,238
208
- educommon/logger/formatters.py,sha256=uraIlYukVsyVngBPm9SqJHzCtgYKvg1xMcwBiUD8hd4,400
209
- educommon/logger/helpers.py,sha256=6EsfkteuLt3S-AJTgl3V90KYNwiiBjDYTtuSqOq4kM8,1596
210
- educommon/logger/loggers.py,sha256=1btZkeQuh-xP1D06isprDXjVyNNbp6KUMeZF0d9DRSk,2965
211
- educommon/logger/records.py,sha256=rBVVIzdrs2x6T9e5QEpN6BZhwynneu7GfRexrUUTb9o,138
212
- educommon/m3/__init__.py,sha256=JVnJNZnQJxaN3-__E-ylZrCdbX-HKjD_lKRJ4xd23UI,17568
213
- educommon/m3/transaction_context.py,sha256=HfMJAIGGMgWgnzG55UP2O5t2ByViO0sbMWKag2VpArk,5150
214
- educommon/m3/extensions/__init__.py,sha256=Q9lMCVvwjZK3zkquxMasLj9CQdUxxvB70PL13OIWLF0,258
215
- educommon/m3/extensions/ui.py,sha256=41G-aBrTvDgNEAbe2fhbwKm9dw9QMdtLGvtNh4-OMyI,6912
216
- educommon/m3/extensions/listeners/__init__.py,sha256=ax097TgSn7rWH8L3DSiVCc1MOKnuL3uRjoocqXbdjAw,8897
217
- educommon/m3/extensions/listeners/delete_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
- educommon/m3/extensions/listeners/delete_check/cancel-confirm-window.js,sha256=Xh0Rzk9ua9NtR9TR0x7oPn0Q96IKqBQF0XkkFzTOUVI,916
219
- educommon/m3/extensions/listeners/delete_check/listeners.py,sha256=r_PhNLlt16Tcikl4lOmhG-E7Hl7KL596ZQL3cEr3f8w,6131
220
- educommon/m3/extensions/listeners/delete_check/mixins.py,sha256=kelvluswqu8u2h5QyVs_VEfwatkVWrSVbRlv4skScmw,7823
221
- educommon/m3/extensions/listeners/delete_check/related-objects-window.html,sha256=Do_SnmWfexnhDzgvr7o7JJubH4N8pvPNa268cd-JIcA,94
222
- educommon/m3/extensions/listeners/delete_check/signals.py,sha256=QnfevsAKpKtOE_EBc7h1qg4hTV4LxXYL5ivvpHyc704,467
223
- educommon/m3/extensions/listeners/delete_check/ui.py,sha256=W3sBsZGbF3q0rxuMUEmycBvFngUh--UQ-77xdjgvDP0,3507
224
- educommon/m3/extensions/listeners/delete_check/utils.py,sha256=87OmVAzx2lX_7M12Tsgr6cZocrnvuwnDMpIrx23Xmzw,3092
225
- educommon/objectpack/__init__.py,sha256=TwmrbrumJoH9KjYhbLnKExWmo4A0UQeyNYTK__93Vr8,69
226
- educommon/objectpack/actions.py,sha256=KanZUKMl4aUSRPZV-SJB3JwjDTYzuGweI9L5cE1KziI,14735
227
- educommon/objectpack/apps.py,sha256=LZl_kQ9s7G9pQ4a5_mWNPN52mFWJ7RGvGIHCHwhKYPo,220
228
- educommon/objectpack/filters.py,sha256=je0BIBbwhfVBuGJkeREiFzXuLRMigD8a5okWaY5hsCg,5166
229
- educommon/objectpack/ui.py,sha256=SDP3Pjy9rZHdMJtf4Rph5h8BM4fWuxOBrcWsWZ3l-Rk,14752
230
- educommon/objectpack/templates/base-grid-window.js,sha256=kq49GGDGPScqLCouIy0-seOimt5eX_l2pAkQNJ0rNCw,437
231
- educommon/objectpack/templates/filter-panel.js,sha256=vYw_AxOMRk0ylSBUT46qphilxKkKpaXzT5HfGwwoLYo,1408
232
- educommon/objectpack/templates/grid-panel.js,sha256=o6qkZ9o1MbFJd0LGq3HIk_5YIwC4WHfQT5NNEYEGo2o,1544
233
- educommon/objectpack/templates/multiSelectWindow.js,sha256=3yOdu0sPiirxrcUZtjg3oyjFEUVo9GQvfYSL2_6mE34,1842
234
- educommon/objectpack/templates/multiselect-page-fix.js,sha256=c8AfGz6yakhWdDseB9P9m2poDzTxAQp_OY-G7ZgBNPM,6741
235
- educommon/objectpack/templates/relations-check-mixin-template.html,sha256=HZETIVBZso0eC1l62atPfEyLMX3Gur_Sryvdsjv4mJk,1838
236
- educommon/report/__init__.py,sha256=Rca_F07oVjYQXsX60Yc5GEfMOsPUn6P9YpTeP2UMt08,17854
237
- educommon/report/actions.py,sha256=qng8gMOe9TQH1MA-n5ULHD6AgKnjDMwb9V2rTerT4VM,8705
238
- educommon/report/reporter.py,sha256=YQnvoeTFS5jCVRSKezMYE7qnUOJcX_AMxdtZ5yJ9d8k,10026
239
- educommon/report/utils.py,sha256=cnNnIwGWjYuZSwIuy_znEQF0oBQpRESYBwqPGF60md8,9974
240
- educommon/report/constructor/README.rst,sha256=M6bnt3eAdRMUSIbRXdbuleron11RajRmTQOAvbLNC4k,1138
241
- educommon/report/constructor/__init__.py,sha256=sMDEr17Etf69p4NKRelFv9ySrNT6JulFO1IByVfZA1w,1252
242
- educommon/report/constructor/app_meta.py,sha256=4hFKVlGCO4Mlu46fCw5k7iD9kSse8b9MQt3tRV5WyfE,200
243
- educommon/report/constructor/apps.py,sha256=NUp1dCkzHduZFXT6XPDQPasAei3Bs3TYdEQzXhqn1J8,371
244
- educommon/report/constructor/base.py,sha256=ABSNm1QrUyN4E6RybN7NM72D5W_4U6bz4vvxyTkIsNA,27333
245
- educommon/report/constructor/config.py,sha256=6PjPv4A3zww_DnZqE-aj72zduW7cZqbzVwuCP8JDsYg,1058
246
- educommon/report/constructor/constants.py,sha256=VF3tu6vEWrN37oPyipD3LGCElbaY2JHGaKy7AxUbQIU,3381
247
- educommon/report/constructor/exceptions.py,sha256=NL2mQggBHbkHaQFKpr9mTj7R5IVtxtCRKzJ00dgfTqM,1287
248
- educommon/report/constructor/mixins.py,sha256=4Oh3JB3VRr8Es6yLS3W1sXVPrV61SVPm-vBSlgbBXHY,2377
249
- educommon/report/constructor/models.py,sha256=g-fbs_kM16GBh_5MY0NenXc8cVwihDLVXz3uS_JN1Mg,18764
250
- educommon/report/constructor/plugin_meta.py,sha256=52IdIKr7ArMiHOnyZlKV5Fn6PxMhSbttipXz_Vbfkmg,114
251
- educommon/report/constructor/registries.py,sha256=aTFeW0htAeDYWd9HlLqn3GTK3mttjS8I8LddPc6Ea7M,1883
252
- educommon/report/constructor/utils.py,sha256=lXfKGlqPhmlnSLg4O0FTxRd3kLQtx3WlLQ7z84lbres,6563
253
- educommon/report/constructor/validators.py,sha256=E_VKNz0Z3YqJOJTjd7OdZXFMDnW8UUiVUIH9Jk6Irtw,524
254
- educommon/report/constructor/builders/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
255
- educommon/report/constructor/builders/excel/__init__.py,sha256=ZjiilnR4FRJm0DM06G3yKHBEDAPXs5JvuPO3JOg2FB8,104
256
- educommon/report/constructor/builders/excel/_base.py,sha256=JHfPgyQjaOhuOI9MpZ4k2_K_tR8AzQTEoNCVnli8lbo,56169
257
- educommon/report/constructor/builders/excel/_header.py,sha256=JUHHlBgkENPatp34csKrefteHsdbeCdJzqzSdTtof8M,4758
258
- educommon/report/constructor/builders/excel/constants.py,sha256=SM5OEkd7CMrGhuCpMWIdZGy-R1NAUB06973QnECayR0,28
259
- educommon/report/constructor/builders/excel/product.py,sha256=NsfjhUViZyi_XpDjiUJDwfgHVRlE98v40RMAa6mpAzk,6229
260
- educommon/report/constructor/builders/excel/with_merged_cells.py,sha256=mOlzkfqkbjTc3u9VsUyoNUAgH3AKc351E4Jz-5J6OTs,5150
261
- educommon/report/constructor/editor/__init__.py,sha256=WS6vGDp9CjGE-e_-AgywqN-W67tv5F_WcPgebLHwKbg,41
262
- educommon/report/constructor/editor/actions.py,sha256=EHJKR3AxwAPcK02YmL2U8ti-brstJK0ZzqulhoJ6oyk,38815
263
- educommon/report/constructor/editor/edit-window.js,sha256=AcbwuumR3k6Nzh8PNz8Rz35hREjl0cyenPI_3BcLq6o,39225
264
- educommon/report/constructor/editor/list-window.js,sha256=S2KQGqg5GnFMMYmPNEm_Yf9nXTbfwvIfs4E3LgWO9-0,3247
265
- educommon/report/constructor/editor/ui.py,sha256=sZjfiiQa2LIcfoyczPlMz3ImzO7TSNNAaV2We5hywIc,24628
266
- educommon/report/constructor/migrations/0001_initial.py,sha256=09EHB2qiKT6GVgT8bUXgEKRhVUkX2CCHOescOs-tbWg,3393
267
- educommon/report/constructor/migrations/0002_report_filters.py,sha256=Yv9O9cm-o1_y1UIjWagc5Pkwu_R_URCEQ2i4-hVbVmU,5009
268
- educommon/report/constructor/migrations/0003_reportfilter_exclude.py,sha256=s33WWNoQ6lhdr4mLMmXq-h4gWsDtRWhGOT4Ajfwe7jw,472
269
- educommon/report/constructor/migrations/0004_reportfilter_fields.py,sha256=162gmIw9rPO4Pl5VaYquniowZB7ZhAtehDliW2IYT14,1369
270
- educommon/report/constructor/migrations/0005_reportcolumn_visible.py,sha256=7f-gkdd-SvCgmW0YDpDaIVUlf_AjBt1apL1rDSzBoPw,431
271
- educommon/report/constructor/migrations/0006_reportsorting.py,sha256=kjkrAmSbZ5bexNM1uqOZhPXkrzs9EgNt9fyRfNfnCcA,1284
272
- educommon/report/constructor/migrations/0007_include_available_units.py,sha256=nPbqcRoBKkiQl-td3yr-bNIJMKVTAxApWVGJ0nn2zM4,1541
273
- educommon/report/constructor/migrations/0008_auto_20170407_1318.py,sha256=ptmhjsAwAsO9UHCH53B3SyHXWkbTE9JbDSLLB3dUGnA,557
274
- educommon/report/constructor/migrations/0009_auto_20180405_0642.py,sha256=vy0pP3HsbfM6hrYdp674scv6IFoWSOqIfgSOUkWhjzc,519
275
- educommon/report/constructor/migrations/0010_add_aggregate_fields.py,sha256=qeOaQWwxYAyGcK-CqO8ob8zZa2g4YPtW2ohdq8lSq_0,949
276
- educommon/report/constructor/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
277
- educommon/rest/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
278
- educommon/rest/actions.py,sha256=XvTp6aXbqhF951eTLE9YPPHhnWY77QT5J0aUOCIYF7U,1278
279
- educommon/rest/context.py,sha256=FLQRJvOW0Ah7LPcaT5_E_lDEHdX_Z5xllPd206x7sMg,3908
280
- educommon/rest/controllers.py,sha256=5rtN_hNQKe4I1L7Q53-1zCYgeULX6r4tBqFc-S6omwY,2516
281
- educommon/rest/misc.py,sha256=NFYw-WXYpUvH6FnL78EwzJXAtnTtQRnxqdvnRTg_qX0,475
282
- educommon/rest/mixins.py,sha256=ia0uH_5S6FOy7Gt8-1L8tkee5ryhkuXgrsnD-TH5fvw,4840
283
- educommon/secure_media/README.rst,sha256=Hi96RDL5T8FIuG3zaR2Fmxex2mE4lLu0F6t9_98_BHA,4001
284
- educommon/secure_media/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
- educommon/secure_media/app_meta.py,sha256=bA2OirIuk8FW3Krbr1EuK1DFeLgeaDXzNEAEY97fq5A,1317
286
- educommon/utils/__init__.py,sha256=kW7OOTVf4Ncht81N2deg5_JFWz4MqxNjseER-p3KGJw,2441
287
- educommon/utils/caching.py,sha256=ux6ShlJJK3gh0C6XvpanbapXOI5uXUhDNgWQI7AsBBE,4063
288
- educommon/utils/conversion.py,sha256=kEe15TwIH19RmC2mRl1JrrqD8mXgbCAPOYWnkIQXxqQ,1966
289
- educommon/utils/crypto.py,sha256=3uMk2CP53ZOsJ5Tcb0DLWxmk9ezINZQUsQcqF6j8XR0,2158
290
- educommon/utils/date.py,sha256=B0-rgaeM1LqjCBsINetjauZaOe0ATAcQUCZJTnLnNzo,16800
291
- educommon/utils/misc.py,sha256=BUMP9of-H5COcBWai5MJIV4iygKfMFwdI-Ry5IXSxWg,4629
292
- educommon/utils/object_grid.py,sha256=mUJd0HJmj4PVljmkwxlR3mQO__YnlLBmAZcFWGxTHLc,9048
293
- educommon/utils/patches.py,sha256=Pio9V3bmDH79tTJnM5hi8rwhMEBtbpAg30zPTk5fuN0,1157
294
- educommon/utils/plugins.py,sha256=YAD3FM78ihPtyaB_olNM1CoSc5Q5icF_J3A0ivFBFmY,9469
295
- educommon/utils/registry.py,sha256=mC_N9aentmznhLFuJn4vyTd3M7d628otWYIx1aM83KY,1995
296
- educommon/utils/seqtools.py,sha256=v621d2X1BO8PQeKIioX4V1BlLTnwIt__GJh9zPF1uI8,520
297
- educommon/utils/serializer.py,sha256=qdjC6Q6l-bwl9wAzhU6Ujs2_9sc57Z5RA9iNUmzBM74,8787
298
- educommon/utils/storage.py,sha256=UwKZX1qnZQgbFn34wLpPnSv_xU6KdpW3M1yz_VxCmww,2883
299
- educommon/utils/system.py,sha256=CBdm4t3ng6luvcQANpJiKrJplFmFeM-lX0rKhuII5Ik,2834
300
- educommon/utils/ui.py,sha256=NI1SpL0RxppQrDApZuZxhiIk9JWSsQQUDM1CilZwO4Q,16084
301
- educommon/utils/db/__init__.py,sha256=np9pL-_tv4C6i0iQzTjc-ZGKhaotJK8YSryoPaJ0QQA,7734
302
- educommon/utils/db/postgresql.py,sha256=3LOvLqG8QV3hsvo_fupkV26cQmSf0WNBhgpVcfs-lWc,2820
303
- educommon/utils/fonts/Arial.ttf,sha256=NcDzVZ2NtWnjbDEJW4pg1EFkPZX1kTneQOI_ragZuDM,275572
304
- educommon/utils/fonts/Calibri.ttf,sha256=Iv10aIYF7JjjjcObMimWVSmMxU-rqOiEYeeDIgwfkmE,811820
305
- educommon/utils/fonts/Tahoma.ttf,sha256=bGmcQotghnnHrebZwP92ZkobWSdMOUzwq6DuLDP4mEg,265528
306
- educommon/utils/fonts/__init__.py,sha256=KfGNPOWk7up_p62UKt0lZIuMpMryXYo0qoqI5_Yp7Zc,4815
307
- educommon/utils/licence/__init__.py,sha256=qr2XwwmrewMNM2y_bHaLq2Q20I8I66wfxtvrBABnpFU,5095
308
- educommon/utils/licence/converters.py,sha256=BLXjqy4kgBj78qqfiXtuz0Nwu5rVb_us3omNJkObTtA,1174
309
- educommon/utils/phone_number/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
- educommon/utils/phone_number/enums.py,sha256=EqTCTeCxYioKco07fkG25hq6lae63o0WZIuo-6fdNRg,1420
311
- educommon/utils/phone_number/modelfields.py,sha256=gIdDYSf7a30m85JTdmXVxOv0j-IYMUntweZngS7sV6I,2938
312
- educommon/utils/phone_number/phone_number.py,sha256=80dzAMiJ1rDWFRx2GsC1PTtg9GgXxdvty2-7XLhZTik,9969
313
- educommon/utils/phone_number/validators.py,sha256=QFMWGbatinNBjdMNYsMfNSO7VPARMdW4BFtIM_kOoxI,3290
314
- educommon/utils/system_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
315
- educommon/utils/system_app/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
- educommon/utils/system_app/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
- educommon/utils/system_app/management/commands/delete_objects.py,sha256=SlsiCMAV80QQy5cNNl50yxwjPMkK-_5OLyvuMAkgTKI,9295
318
- educommon/utils/system_app/templatetags/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
319
- educommon/utils/system_app/templatetags/educommon.py,sha256=_K5iM3LBnpCJJTIrC6PR5K6-ORIpm2NTQ7APlEu9FcQ,273
320
- educommon/utils/xml/__init__.py,sha256=TTnCVQmcT-PHW7REDmDM6tbmN7o5ahYK_m_kJFeI_L4,2194
321
- educommon/utils/xml/catalog.json,sha256=WI4Fc_ir0EdykEdMARxnYCyI-z_aPFJOjVLt4aHIaU0,875
322
- educommon/utils/xml/resolver.py,sha256=WiI1La8ucvdnbT6nKH5NdAbeydrpMmDnR60RcByxOr8,1750
323
- educommon/utils/xml/saml-schema-assertion-2.0.xsd,sha256=AG63VThDy3uqmwjaKp1EQ0bA6YL7nZKTur4I7eaAkks,13160
324
- educommon/utils/xml/saml-schema-protocol-2.0.xsd,sha256=SoFikUA-16-9j4-31qKqrZPoLImtkCouFu1oWbQ-k5U,13465
325
- educommon/utils/xml/xenc-schema.xsd,sha256=XdV_B0hw4dkffrgUqpKWfO_M6QEahq314Sp2n88qI34,5234
326
- educommon/utils/xml/xmldsig-core-schema.xsd,sha256=Nc-Bl9qBLIXkDVeJGzXJQYdWntR0otrIE85QkNr801w,10293
327
- educommon/ws_log/README.rst,sha256=9_yONwf0om7MUaNohwEX848zpd2mkbKEApVelKPerfE,5467
328
- educommon/ws_log/__init__.py,sha256=9VzXIVt7xpcgQBW6QWWc8np2PJpJfrkPqi5OmVG_Jo4,932
329
- educommon/ws_log/actions.py,sha256=pnG1m5fkpcQq0fg06KC8cLp-TryxILEOELx8985SpFY,9153
330
- educommon/ws_log/app_meta.py,sha256=JG1hyk9JQwxL-CY7Z3gDhoZA1M9DtD6Z0jcXCQ9vNt8,94
331
- educommon/ws_log/base.py,sha256=PhihS8qDJ_y9GITlmJ2lXoHbTBzQmiaLO6ojXrt-nCk,7138
332
- educommon/ws_log/models.py,sha256=bBknFBRyjJsDMQiLy5h7twJwOVAHbWTf92gSOZxLYyw,5656
333
- educommon/ws_log/provider.py,sha256=qRFo6zfdtNY-PtH9OpECZ_ioSncQpV6IwzCP_XPaOaw,885
334
- educommon/ws_log/report.py,sha256=uHotDZbRrDc_nLwn06kcvn9i5QLM_gpVMcWu1qTZdOA,3487
335
- educommon/ws_log/ui.py,sha256=DlqrBj-hV4bbTaiLWmRvTXA7TQO_vOiYHhE-fEq7Yxk,4038
336
- educommon/ws_log/utils.py,sha256=yC60cTBrzrmqe2krq5qRb8nGIDa9kv0mSqcNypSuwZQ,1753
337
- educommon/ws_log/migrations/0001_initial.py,sha256=an75W5B11dMT_JOIMW_a3hhriuak5LbVRCBSYweG2WE,2706
338
- educommon/ws_log/migrations/0002_auto_20160628_1334.py,sha256=PCHFVaZZEBIcUTz9djR4fUc0Nzzo2miJPxWC_2Y_b20,910
339
- educommon/ws_log/migrations/0003_add_fields_to_smev_logs.py,sha256=TE0y5b56BeRTVA4abcgNtSsS7NP_vgw33Y2kBhp1jM0,1682
340
- educommon/ws_log/migrations/0004_auto_20160727_1600.py,sha256=RuxdMLTVinYRByG4n7HzaaXpKEmne7E5ChxRikWCU-M,932
341
- educommon/ws_log/migrations/0005_auto_20161130_1615.py,sha256=l03v73phYQkC4j9wnmVFvXRsqwB96u3g8EUaixQFAFk,1586
342
- educommon/ws_log/migrations/0006_auto_20170327_1027.py,sha256=UDk4eZXNR8C582DkQn4Tju0pjOKSClzcavsm_ImBDKM,479
343
- educommon/ws_log/migrations/0007_auto_20180607_1040.py,sha256=0bxJajLL2c8PdyNVYf8aGPgPjDVJlfe02DazZmH4IJA,1171
344
- educommon/ws_log/migrations/0008_auto_20180713_1445.py,sha256=u_LIsk_ZuPesjBGLtQG_eYDEoMWYkFX29ULbs5TOlNc,1311
345
- educommon/ws_log/migrations/0009_auto_20201130_1553.py,sha256=xrrsawStT_7t1p3wcPgzE5JabER1xHAuOY9ZLt5AhtI,516
346
- educommon/ws_log/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
347
- educommon/ws_log/smev/__init__.py,sha256=fH-sq4dxJ0KCZs8o7uOZdG3qgivRsQbH5-Km5LUJFko,84
348
- educommon/ws_log/smev/applications.py,sha256=Am788Tq0K6CXsz1hzVEPemA_t5xKPz3Fj2eTUjrwvjM,5866
349
- educommon/ws_log/smev/exceptions.py,sha256=lmy7o2T3dJkqgIhG07qyh5yPqO3qZAYABuT4JRk6jfo,601
350
- educommon/ws_log/templates/report/smev_logs.xlsx,sha256=nnYgB0Z_ix8HoxsRICjsZfFRQBdra-5Gd8nWhCxTjYg,10439
351
- educommon/ws_log/templates/ui-js/smev-logs-list-window.js,sha256=AGup3D8GTJSY9WdDPj0zBJeYQBFOmGgcbxPOJbKK-nY,513
352
- educommon/ws_log/templates/ui-js/smev-logs-report-setting-window.js,sha256=nQ7QYK9frJcE7g7kIt6INg9TlEEJAPPayBJgRaoTePA,1103
353
- educommon-3.12.0.dist-info/METADATA,sha256=9t7lbgOOSfePEfKP9Tbsenc-NLJ06Tk4ALb3WoUe5Ag,1666
354
- educommon-3.12.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
355
- educommon-3.12.0.dist-info/dependency_links.txt,sha256=RNlr4t-BxZRm7e_IfVo1ikr5ln-7viimzLHvQMO1C_Q,43
356
- educommon-3.12.0.dist-info/top_level.txt,sha256=z5fbW7bz_0V1foUm_FGcZ9_MTpW3N1dBN7-kEmMowl4,10
357
- educommon-3.12.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- http://pypi.bars-open.ru/simple/m3-builder