educommon 3.8.3__py3-none-any.whl → 3.9.0__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.
- educommon/audit_log/models.py +4 -1
- educommon/contingent/catalogs.py +19 -0
- educommon/contingent/json_data/icao.json +1054 -0
- educommon/version.conf +5 -5
- {educommon-3.8.3.dist-info → educommon-3.9.0.dist-info}/METADATA +1 -1
- {educommon-3.8.3.dist-info → educommon-3.9.0.dist-info}/RECORD +9 -8
- {educommon-3.8.3.dist-info → educommon-3.9.0.dist-info}/WHEEL +0 -0
- {educommon-3.8.3.dist-info → educommon-3.9.0.dist-info}/dependency_links.txt +0 -0
- {educommon-3.8.3.dist-info → educommon-3.9.0.dist-info}/top_level.txt +0 -0
educommon/audit_log/models.py
CHANGED
@@ -240,9 +240,12 @@ class AuditLog(ReadOnlyMixin, BaseModel):
|
|
240
240
|
|
241
241
|
return transformed_fields
|
242
242
|
|
243
|
-
def _transform_array_field(self, base_field: 'Field', value: Optional[str]) -> Optional[List[Any]]:
|
243
|
+
def _transform_array_field(self, base_field: 'Field', value: Optional[Union[str, list]]) -> Optional[List[Any]]:
|
244
244
|
"""Преобразует значение поля ArrayField."""
|
245
245
|
if value:
|
246
|
+
if isinstance(value, list):
|
247
|
+
return value
|
248
|
+
|
246
249
|
items = value[1:-1]
|
247
250
|
if items:
|
248
251
|
return [
|
educommon/contingent/catalogs.py
CHANGED
@@ -1181,3 +1181,22 @@ class DismissalReasons(BaseEnumerate):
|
|
1181
1181
|
ARMY: 'Призыв в армию',
|
1182
1182
|
EDUCATION: 'Дневное обучение',
|
1183
1183
|
}
|
1184
|
+
|
1185
|
+
|
1186
|
+
class IcaoVirtialModel(BaseCatalogVirtualModel):
|
1187
|
+
"""Виртуальная модель справочника ICAO."""
|
1188
|
+
|
1189
|
+
rf_code = 'RUS'
|
1190
|
+
rf_shortname = 'РОССИЯ'
|
1191
|
+
|
1192
|
+
id_field = 'code'
|
1193
|
+
data = load_values('icao.json')
|
1194
|
+
|
1195
|
+
fields_to_serialize = ['id', 'shortname']
|
1196
|
+
|
1197
|
+
def __str__(self):
|
1198
|
+
"""Строковое представление записи в виртуальной модели."""
|
1199
|
+
return self.shortname
|
1200
|
+
|
1201
|
+
class Meta:
|
1202
|
+
verbose_name = 'ICAO'
|
@@ -0,0 +1,1054 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"code": "ABH",
|
4
|
+
"shortname": "АБХАЗИЯ"
|
5
|
+
},
|
6
|
+
{
|
7
|
+
"code": "AUS",
|
8
|
+
"shortname": "АВСТРАЛИЯ"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"code": "AUT",
|
12
|
+
"shortname": "АВСТРИЯ"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"code": "AZE",
|
16
|
+
"shortname": "АЗЕРБАЙДЖАН"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"code": "ALB",
|
20
|
+
"shortname": "АЛБАНИЯ"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"code": "DZA",
|
24
|
+
"shortname": "АЛЖИР"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"code": "ASM",
|
28
|
+
"shortname": "АМЕРИКАНСКОЕ САМОА"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"code": "AIA",
|
32
|
+
"shortname": "АНГИЛЬЯ"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"code": "AGO",
|
36
|
+
"shortname": "АНГОЛА"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"code": "AND",
|
40
|
+
"shortname": "АНДОРРА"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"code": "ATA",
|
44
|
+
"shortname": "АНТАРКТИДА"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"code": "ATG",
|
48
|
+
"shortname": "АНТИГУА И БАРБУДА"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"code": "ARG",
|
52
|
+
"shortname": "АРГЕНТИНА"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"code": "ARM",
|
56
|
+
"shortname": "АРМЕНИЯ"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"code": "ABW",
|
60
|
+
"shortname": "АРУБА"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"code": "AFG",
|
64
|
+
"shortname": "АФГАНИСТАН"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"code": "BHS",
|
68
|
+
"shortname": "БАГАМЫ"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"code": "BGD",
|
72
|
+
"shortname": "БАНГЛАДЕШ"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"code": "BRB",
|
76
|
+
"shortname": "БАРБАДОС"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"code": "BHR",
|
80
|
+
"shortname": "БАХРЕЙН"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"code": "BLR",
|
84
|
+
"shortname": "БЕЛАРУСЬ"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"code": "BLZ",
|
88
|
+
"shortname": "БЕЛИЗ"
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"code": "BEL",
|
92
|
+
"shortname": "БЕЛЬГИЯ"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"code": "BEN",
|
96
|
+
"shortname": "БЕНИН"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"code": "BMU",
|
100
|
+
"shortname": "БЕРМУДЫ"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"code": "BGR",
|
104
|
+
"shortname": "БОЛГАРИЯ"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"code": "BOL",
|
108
|
+
"shortname": "БОЛИВИЯ, МНОГОНАЦИОНАЛЬНОЕ ГОСУДАРСТВО"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"code": "BES",
|
112
|
+
"shortname": "БОНЭЙР, СИНТ-ЭСТАТИУС И САБА"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"code": "BIH",
|
116
|
+
"shortname": "БОСНИЯ И ГЕРЦЕГОВИНА"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"code": "BWA",
|
120
|
+
"shortname": "БОТСВАНА"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"code": "BRA",
|
124
|
+
"shortname": "БРАЗИЛИЯ"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"code": "IOT",
|
128
|
+
"shortname": "БРИТАНСКАЯ ТЕРРИТОРИЯ В ИНДИЙСКОМ ОКЕАНЕ"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"code": "BRN",
|
132
|
+
"shortname": "БРУНЕЙ-ДАРУССАЛАМ"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"code": "BFA",
|
136
|
+
"shortname": "БУРКИНА-ФАСО"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"code": "BDI",
|
140
|
+
"shortname": "БУРУНДИ"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"code": "BTN",
|
144
|
+
"shortname": "БУТАН"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"code": "VUT",
|
148
|
+
"shortname": "ВАНУАТУ"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"code": "HUN",
|
152
|
+
"shortname": "ВЕНГРИЯ"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"code": "VEN",
|
156
|
+
"shortname": "ВЕНЕСУЭЛА БОЛИВАРИАНСКАЯ РЕСПУБЛИКА"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"code": "VGB",
|
160
|
+
"shortname": "ВИРГИНСКИЕ ОСТРОВА, БРИТАНСКИЕ"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"code": "VIR",
|
164
|
+
"shortname": "ВИРГИНСКИЕ ОСТРОВА, США"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"code": "VNM",
|
168
|
+
"shortname": "ВЬЕТНАМ"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"code": "GAB",
|
172
|
+
"shortname": "ГАБОН"
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"code": "GUY",
|
176
|
+
"shortname": "ГАЙАНА"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"code": "HTI",
|
180
|
+
"shortname": "ГАИТИ"
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"code": "GMB",
|
184
|
+
"shortname": "ГАМБИЯ"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"code": "GHA",
|
188
|
+
"shortname": "ГАНА"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"code": "GLP",
|
192
|
+
"shortname": "ГВАДЕЛУПА"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"code": "GTM",
|
196
|
+
"shortname": "ГВАТЕМАЛА"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"code": "GIN",
|
200
|
+
"shortname": "ГВИНЕЯ"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"code": "GNB",
|
204
|
+
"shortname": "ГВИНЕЯ-БИСАУ"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"code": "DEU",
|
208
|
+
"shortname": "ГЕРМАНИЯ"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"code": "GGY",
|
212
|
+
"shortname": "ГЕРНСИ"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"code": "GIB",
|
216
|
+
"shortname": "ГИБРАЛТАР"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"code": "HND",
|
220
|
+
"shortname": "ГОНДУРАС"
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"code": "HKG",
|
224
|
+
"shortname": "ГОНКОНГ"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"code": "GRD",
|
228
|
+
"shortname": "ГРЕНАДА"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"code": "GRL",
|
232
|
+
"shortname": "ГРЕНЛАНДИЯ"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"code": "GRC",
|
236
|
+
"shortname": "ГРЕЦИЯ"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"code": "GEO",
|
240
|
+
"shortname": "ГРУЗИЯ"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"code": "GUM",
|
244
|
+
"shortname": "ГУАМ"
|
245
|
+
},
|
246
|
+
{
|
247
|
+
"code": "DNK",
|
248
|
+
"shortname": "ДАНИЯ"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"code": "JEY",
|
252
|
+
"shortname": "ДЖЕРСИ"
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"code": "DJI",
|
256
|
+
"shortname": "ДЖИБУТИ"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"code": "DNR",
|
260
|
+
"shortname": "ДНР"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"code": "DMA",
|
264
|
+
"shortname": "ДОМИНИКА"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"code": "DOM",
|
268
|
+
"shortname": "ДОМИНИКАНСКАЯ РЕСПУБЛИКА"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"code": "EGY",
|
272
|
+
"shortname": "ЕГИПЕТ"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"code": "ZMB",
|
276
|
+
"shortname": "ЗАМБИЯ"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"code": "ESH",
|
280
|
+
"shortname": "ЗАПАДНАЯ САХАРА"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"code": "ZWE",
|
284
|
+
"shortname": "ЗИМБАБВЕ"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
"code": "YEM",
|
288
|
+
"shortname": "ЙЕМЕН"
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"code": "ISR",
|
292
|
+
"shortname": "ИЗРАИЛЬ"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"code": "IND",
|
296
|
+
"shortname": "ИНДИЯ"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"code": "IDN",
|
300
|
+
"shortname": "ИНДОНЕЗИЯ"
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"code": "JOR",
|
304
|
+
"shortname": "ИОРДАНИЯ"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"code": "IRQ",
|
308
|
+
"shortname": "ИРАК"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"code": "IRN",
|
312
|
+
"shortname": "ИРАН, ИСЛАМСКАЯ РЕСПУБЛИКА"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"code": "IRL",
|
316
|
+
"shortname": "ИРЛАНДИЯ"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"code": "ISL",
|
320
|
+
"shortname": "ИСЛАНДИЯ"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"code": "ESP",
|
324
|
+
"shortname": "ИСПАНИЯ"
|
325
|
+
},
|
326
|
+
{
|
327
|
+
"code": "ITA",
|
328
|
+
"shortname": "ИТАЛИЯ"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"code": "CPV",
|
332
|
+
"shortname": "КАБО-ВЕРДЕ"
|
333
|
+
},
|
334
|
+
{
|
335
|
+
"code": "KAZ",
|
336
|
+
"shortname": "КАЗАХСТАН"
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"code": "KHM",
|
340
|
+
"shortname": "КАМБОДЖА"
|
341
|
+
},
|
342
|
+
{
|
343
|
+
"code": "CMR",
|
344
|
+
"shortname": "КАМЕРУН"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"code": "CAN",
|
348
|
+
"shortname": "КАНАДА"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"code": "QAT",
|
352
|
+
"shortname": "КАТАР"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"code": "KEN",
|
356
|
+
"shortname": "КЕНИЯ"
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"code": "CYP",
|
360
|
+
"shortname": "КИПР"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"code": "KGZ",
|
364
|
+
"shortname": "КИРГИЗИЯ"
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"code": "KIR",
|
368
|
+
"shortname": "КИРИБАТИ"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"code": "CHN",
|
372
|
+
"shortname": "КИТАЙ"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"code": "CCK",
|
376
|
+
"shortname": "КОКОСОВЫЕ (КИЛИНГ) ОСТРОВА"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"code": "COL",
|
380
|
+
"shortname": "КОЛУМБИЯ"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"code": "COM",
|
384
|
+
"shortname": "КОМОРЫ"
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"code": "COG",
|
388
|
+
"shortname": "КОНГО"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"code": "COD",
|
392
|
+
"shortname": "КОНГО, ДЕМОКРАТИЧЕСКАЯ РЕСПУБЛИКА"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"code": "PRK",
|
396
|
+
"shortname": "КОРЕЯ, НАРОДНО-ДЕМОКРАТИЧЕСКАЯ РЕСПУБЛИКА"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"code": "KOR",
|
400
|
+
"shortname": "КОРЕЯ, РЕСПУБЛИКА"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"code": "CRI",
|
404
|
+
"shortname": "КОСТА-РИКА"
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"code": "CIV",
|
408
|
+
"shortname": "КОТ Д'ИВУАР"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"code": "CUB",
|
412
|
+
"shortname": "КУБА"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"code": "KWT",
|
416
|
+
"shortname": "КУВЕЙТ"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"code": "CUW",
|
420
|
+
"shortname": "КЮРАСАО"
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"code": "LAO",
|
424
|
+
"shortname": "ЛАОССКАЯ НАРОДНО-ДЕМОКРАТИЧЕСКАЯ РЕСПУБЛИКА"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"code": "LVA",
|
428
|
+
"shortname": "ЛАТВИЯ"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"code": "LSO",
|
432
|
+
"shortname": "ЛЕСОТО"
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"code": "LBR",
|
436
|
+
"shortname": "ЛИБЕРИЯ"
|
437
|
+
},
|
438
|
+
{
|
439
|
+
"code": "LBN",
|
440
|
+
"shortname": "ЛИВАН"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"code": "LBY",
|
444
|
+
"shortname": "ЛИВИЯ"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"code": "LTU",
|
448
|
+
"shortname": "ЛИТВА"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"code": "LIE",
|
452
|
+
"shortname": "ЛИХТЕНШТЕЙН"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"code": "LNR",
|
456
|
+
"shortname": "ЛНР"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"code": "LUX",
|
460
|
+
"shortname": "ЛЮКСЕМБУРГ"
|
461
|
+
},
|
462
|
+
{
|
463
|
+
"code": "MUS",
|
464
|
+
"shortname": "МАВРИКИЙ"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"code": "MRT",
|
468
|
+
"shortname": "МАВРИТАНИЯ"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"code": "MDG",
|
472
|
+
"shortname": "МАДАГАСКАР"
|
473
|
+
},
|
474
|
+
{
|
475
|
+
"code": "MYT",
|
476
|
+
"shortname": "МАЙОТТА"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"code": "MAC",
|
480
|
+
"shortname": "МАКАО"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"code": "MWI",
|
484
|
+
"shortname": "МАЛАВИ"
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"code": "MYS",
|
488
|
+
"shortname": "МАЛАЙЗИЯ"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"code": "MLI",
|
492
|
+
"shortname": "МАЛИ"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"code": "UMI",
|
496
|
+
"shortname": "МАЛЫЕ ТИХООКЕАНСКИЕ ОТДАЛЕННЫЕ ОСТРОВА СОЕДИНЕННЫХ ШТАТОВ"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"code": "MDV",
|
500
|
+
"shortname": "МАЛЬДИВЫ"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"code": "MLT",
|
504
|
+
"shortname": "МАЛЬТА"
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"code": "MAR",
|
508
|
+
"shortname": "МАРОККО"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"code": "MTQ",
|
512
|
+
"shortname": "МАРТИНИКА"
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"code": "MHL",
|
516
|
+
"shortname": "МАРШАЛЛОВЫ ОСТРОВА"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"code": "MEX",
|
520
|
+
"shortname": "МЕКСИКА"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"code": "FSM",
|
524
|
+
"shortname": "МИКРОНЕЗИЯ, ФЕДЕРАТИВНЫЕ ШТАТЫ"
|
525
|
+
},
|
526
|
+
{
|
527
|
+
"code": "MOZ",
|
528
|
+
"shortname": "МОЗАМБИК"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"code": "MDA",
|
532
|
+
"shortname": "МОЛДОВА, РЕСПУБЛИКА"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"code": "MCO",
|
536
|
+
"shortname": "МОНАКО"
|
537
|
+
},
|
538
|
+
{
|
539
|
+
"code": "MNG",
|
540
|
+
"shortname": "МОНГОЛИЯ"
|
541
|
+
},
|
542
|
+
{
|
543
|
+
"code": "MSR",
|
544
|
+
"shortname": "МОНТСЕРРАТ"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"code": "MMR",
|
548
|
+
"shortname": "МЬЯНМА"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"code": "NAM",
|
552
|
+
"shortname": "НАМИБИЯ"
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"code": "NRU",
|
556
|
+
"shortname": "НАУРУ"
|
557
|
+
},
|
558
|
+
{
|
559
|
+
"code": "NPL",
|
560
|
+
"shortname": "НЕПАЛ"
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"code": "NER",
|
564
|
+
"shortname": "НИГЕР"
|
565
|
+
},
|
566
|
+
{
|
567
|
+
"code": "NGA",
|
568
|
+
"shortname": "НИГЕРИЯ"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"code": "NLD",
|
572
|
+
"shortname": "НИДЕРЛАНДЫ"
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"code": "NIC",
|
576
|
+
"shortname": "НИКАРАГУА"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"code": "NIU",
|
580
|
+
"shortname": "НИУЭ"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"code": "NZL",
|
584
|
+
"shortname": "НОВАЯ ЗЕЛАНДИЯ"
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"code": "NCL",
|
588
|
+
"shortname": "НОВАЯ КАЛЕДОНИЯ"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"code": "NOR",
|
592
|
+
"shortname": "НОРВЕГИЯ"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"code": "ARE",
|
596
|
+
"shortname": "ОБЪЕДИНЕННЫЕ АРАБСКИЕ ЭМИРАТЫ"
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"code": "OMN",
|
600
|
+
"shortname": "ОМАН"
|
601
|
+
},
|
602
|
+
{
|
603
|
+
"code": "BVT",
|
604
|
+
"shortname": "ОСТРОВ БУВЕ"
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"code": "IMN",
|
608
|
+
"shortname": "ОСТРОВ МЭН"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"code": "NFK",
|
612
|
+
"shortname": "ОСТРОВ НОРФОЛК"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"code": "CXR",
|
616
|
+
"shortname": "ОСТРОВ РОЖДЕСТВА"
|
617
|
+
},
|
618
|
+
{
|
619
|
+
"code": "HMD",
|
620
|
+
"shortname": "ОСТРОВ ХЕРД И ОСТРОВА МАКДОНАЛЬД"
|
621
|
+
},
|
622
|
+
{
|
623
|
+
"code": "CYM",
|
624
|
+
"shortname": "ОСТРОВА КАЙМАН"
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"code": "COK",
|
628
|
+
"shortname": "ОСТРОВА КУКА"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"code": "TCA",
|
632
|
+
"shortname": "ОСТРОВА ТЕРКС И КАЙКОС"
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"code": "PAK",
|
636
|
+
"shortname": "ПАКИСТАН"
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"code": "PLW",
|
640
|
+
"shortname": "ПАЛАУ"
|
641
|
+
},
|
642
|
+
{
|
643
|
+
"code": "PSE",
|
644
|
+
"shortname": "ПАЛЕСТИНА, ГОСУДАРСТВО"
|
645
|
+
},
|
646
|
+
{
|
647
|
+
"code": "PAN",
|
648
|
+
"shortname": "ПАНАМА"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"code": "VAT",
|
652
|
+
"shortname": "ПАПСКИЙ ПРЕСТОЛ (ГОСУДАРСТВО - ГОРОД ВАТИКАН)"
|
653
|
+
},
|
654
|
+
{
|
655
|
+
"code": "PNG",
|
656
|
+
"shortname": "ПАПУА-НОВАЯ ГВИНЕЯ"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"code": "PRY",
|
660
|
+
"shortname": "ПАРАГВАЙ"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"code": "PER",
|
664
|
+
"shortname": "ПЕРУ"
|
665
|
+
},
|
666
|
+
{
|
667
|
+
"code": "PCN",
|
668
|
+
"shortname": "ПИТКЕРН"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"code": "POL",
|
672
|
+
"shortname": "ПОЛЬША"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"code": "PRT",
|
676
|
+
"shortname": "ПОРТУГАЛИЯ"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"code": "PRI",
|
680
|
+
"shortname": "ПУЭРТО-РИКО"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"code": "MKD",
|
684
|
+
"shortname": "РЕСПУБЛИКА МАКЕДОНИЯ"
|
685
|
+
},
|
686
|
+
{
|
687
|
+
"code": "REU",
|
688
|
+
"shortname": "РЕЮНЬОН"
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"code": "RUS",
|
692
|
+
"shortname": "РОССИЯ"
|
693
|
+
},
|
694
|
+
{
|
695
|
+
"code": "RWA",
|
696
|
+
"shortname": "РУАНДА"
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"code": "ROU",
|
700
|
+
"shortname": "РУМЫНИЯ"
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"code": "WSM",
|
704
|
+
"shortname": "САМОА"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"code": "SMR",
|
708
|
+
"shortname": "САН-МАРИНО"
|
709
|
+
},
|
710
|
+
{
|
711
|
+
"code": "STP",
|
712
|
+
"shortname": "САН-ТОМЕ И ПРИНСИПИ"
|
713
|
+
},
|
714
|
+
{
|
715
|
+
"code": "SAU",
|
716
|
+
"shortname": "САУДОВСКАЯ АРАВИЯ"
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"code": "SWZ",
|
720
|
+
"shortname": "СВАЗИЛЕНД"
|
721
|
+
},
|
722
|
+
{
|
723
|
+
"code": "SHN",
|
724
|
+
"shortname": "СВЯТАЯ ЕЛЕНА, ОСТРОВ ВОЗНЕСЕНИЯ, ТРИСТАН-ДА-КУНЬЯ"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"code": "MNP",
|
728
|
+
"shortname": "СЕВЕРНЫЕ МАРИАНСКИЕ ОСТРОВА"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"code": "SYC",
|
732
|
+
"shortname": "СЕЙШЕЛЫ"
|
733
|
+
},
|
734
|
+
{
|
735
|
+
"code": "BLM",
|
736
|
+
"shortname": "СЕН-БАРТЕЛЕМИ"
|
737
|
+
},
|
738
|
+
{
|
739
|
+
"code": "SEN",
|
740
|
+
"shortname": "СЕНЕГАЛ"
|
741
|
+
},
|
742
|
+
{
|
743
|
+
"code": "MAF",
|
744
|
+
"shortname": "СЕН-МАРТЕН"
|
745
|
+
},
|
746
|
+
{
|
747
|
+
"code": "SXM",
|
748
|
+
"shortname": "СЕН-МАРТЕН (нидерландская часть)"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"code": "VCT",
|
752
|
+
"shortname": "СЕНТ-ВИНСЕНТ И ГРЕНАДИНЫ"
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"code": "KNA",
|
756
|
+
"shortname": "СЕНТ-КИТС И НЕВИС"
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"code": "LCA",
|
760
|
+
"shortname": "СЕНТ-ЛЮСИЯ"
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"code": "SPM",
|
764
|
+
"shortname": "СЕНТ-ПЬЕР И МИКЕЛОН"
|
765
|
+
},
|
766
|
+
{
|
767
|
+
"code": "SRB",
|
768
|
+
"shortname": "СЕРБИЯ"
|
769
|
+
},
|
770
|
+
{
|
771
|
+
"code": "SGP",
|
772
|
+
"shortname": "СИНГАПУР"
|
773
|
+
},
|
774
|
+
{
|
775
|
+
"code": "SYR",
|
776
|
+
"shortname": "СИРИЙСКАЯ АРАБСКАЯ РЕСПУБЛИКА"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"code": "SVK",
|
780
|
+
"shortname": "СЛОВАКИЯ"
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"code": "SVN",
|
784
|
+
"shortname": "СЛОВЕНИЯ"
|
785
|
+
},
|
786
|
+
{
|
787
|
+
"code": "GBR",
|
788
|
+
"shortname": "СОЕДИНЕННОЕ КОРОЛЕВСТВО - ГРАЖДАНИН"
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"code": "GBD",
|
792
|
+
"shortname": "СОЕДИНЕННОЕ КОРОЛЕВСТВО - ГРАЖДАНИН ЗАВИСИМЫХ ТЕРРИТОРИЙ"
|
793
|
+
},
|
794
|
+
{
|
795
|
+
"code": "GBN",
|
796
|
+
"shortname": "СОЕДИНЕННОЕ КОРОЛЕВСТВО - БРИТАНСКИЙ ПОДДАННЫЙ (ЗАМОРСКИЕ ТЕРРИТОРИИ)"
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"code": "GBO",
|
800
|
+
"shortname": "СОЕДИНЕННОЕ КОРОЛЕВСТВО - ГРАЖДАНИН ЗАМОРСКИХ ТЕРРИТОРИЙ"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"code": "GBP",
|
804
|
+
"shortname": "СОЕДИНЕННОЕ КОРОЛЕВСТВО - ЛИЦО ПОД БРИТАНСКИМ ПОКРОВИТЕЛЬСТВОМ"
|
805
|
+
},
|
806
|
+
{
|
807
|
+
"code": "GBS",
|
808
|
+
"shortname": "СОЕДИНЕННОЕ КОРОЛЕВСТВО - БРИТАНСКИЙ ПОДДАННЫЙ"
|
809
|
+
},
|
810
|
+
{
|
811
|
+
"code": "USA",
|
812
|
+
"shortname": "СОЕДИНЕННЫЕ ШТАТЫ"
|
813
|
+
},
|
814
|
+
{
|
815
|
+
"code": "SLB",
|
816
|
+
"shortname": "СОЛОМОНОВЫ ОСТРОВА"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"code": "SOM",
|
820
|
+
"shortname": "СОМАЛИ"
|
821
|
+
},
|
822
|
+
{
|
823
|
+
"code": "SDN",
|
824
|
+
"shortname": "СУДАН"
|
825
|
+
},
|
826
|
+
{
|
827
|
+
"code": "SUR",
|
828
|
+
"shortname": "СУРИНАМ"
|
829
|
+
},
|
830
|
+
{
|
831
|
+
"code": "SLE",
|
832
|
+
"shortname": "СЬЕРРА-ЛЕОНЕ"
|
833
|
+
},
|
834
|
+
{
|
835
|
+
"code": "TJK",
|
836
|
+
"shortname": "ТАДЖИКИСТАН"
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"code": "TWN",
|
840
|
+
"shortname": "ТАЙВАНЬ (КИТАЙ)"
|
841
|
+
},
|
842
|
+
{
|
843
|
+
"code": "THA",
|
844
|
+
"shortname": "ТАИЛАНД"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
"code": "TZA",
|
848
|
+
"shortname": "ТАНЗАНИЯ, ОБЪЕДИНЕННАЯ РЕСПУБЛИКА"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"code": "TLS",
|
852
|
+
"shortname": "ТИМОР-ЛЕСТЕ"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"code": "TGO",
|
856
|
+
"shortname": "ТОГО"
|
857
|
+
},
|
858
|
+
{
|
859
|
+
"code": "TKL",
|
860
|
+
"shortname": "ТОКЕЛАУ"
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"code": "TON",
|
864
|
+
"shortname": "ТОНГА"
|
865
|
+
},
|
866
|
+
{
|
867
|
+
"code": "TTO",
|
868
|
+
"shortname": "ТРИНИДАД И ТОБАГО"
|
869
|
+
},
|
870
|
+
{
|
871
|
+
"code": "TUV",
|
872
|
+
"shortname": "ТУВАЛУ"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"code": "TUN",
|
876
|
+
"shortname": "ТУНИС"
|
877
|
+
},
|
878
|
+
{
|
879
|
+
"code": "TKM",
|
880
|
+
"shortname": "ТУРКМЕНИЯ"
|
881
|
+
},
|
882
|
+
{
|
883
|
+
"code": "TUR",
|
884
|
+
"shortname": "ТУРЦИЯ"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"code": "UGA",
|
888
|
+
"shortname": "УГАНДА"
|
889
|
+
},
|
890
|
+
{
|
891
|
+
"code": "UZB",
|
892
|
+
"shortname": "УЗБЕКИСТАН"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"code": "UKR",
|
896
|
+
"shortname": "УКРАИНА"
|
897
|
+
},
|
898
|
+
{
|
899
|
+
"code": "WLF",
|
900
|
+
"shortname": "УОЛЛИС И ФУТУНА"
|
901
|
+
},
|
902
|
+
{
|
903
|
+
"code": "URY",
|
904
|
+
"shortname": "УРУГВАЙ"
|
905
|
+
},
|
906
|
+
{
|
907
|
+
"code": "FRO",
|
908
|
+
"shortname": "ФАРЕРСКИЕ ОСТРОВА"
|
909
|
+
},
|
910
|
+
{
|
911
|
+
"code": "FJI",
|
912
|
+
"shortname": "ФИДЖИ"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"code": "PHL",
|
916
|
+
"shortname": "ФИЛИППИНЫ"
|
917
|
+
},
|
918
|
+
{
|
919
|
+
"code": "FIN",
|
920
|
+
"shortname": "ФИНЛЯНДИЯ"
|
921
|
+
},
|
922
|
+
{
|
923
|
+
"code": "FLK",
|
924
|
+
"shortname": "ФОЛКЛЕНДСКИЕ ОСТРОВА (МАЛЬВИНСКИЕ)"
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"code": "FRA",
|
928
|
+
"shortname": "ФРАНЦИЯ"
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"code": "GUF",
|
932
|
+
"shortname": "ФРАНЦУЗСКАЯ ГВИАНА"
|
933
|
+
},
|
934
|
+
{
|
935
|
+
"code": "PYF",
|
936
|
+
"shortname": "ФРАНЦУЗСКАЯ ПОЛИНЕЗИЯ"
|
937
|
+
},
|
938
|
+
{
|
939
|
+
"code": "ATF",
|
940
|
+
"shortname": "ФРАНЦУЗСКИЕ ЮЖНЫЕ ТЕРРИТОРИИ"
|
941
|
+
},
|
942
|
+
{
|
943
|
+
"code": "HRV",
|
944
|
+
"shortname": "ХОРВАТИЯ"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"code": "CAF",
|
948
|
+
"shortname": "ЦЕНТРАЛЬНО-АФРИКАНСКАЯ РЕСПУБЛИКА"
|
949
|
+
},
|
950
|
+
{
|
951
|
+
"code": "TCD",
|
952
|
+
"shortname": "ЧАД"
|
953
|
+
},
|
954
|
+
{
|
955
|
+
"code": "MNE",
|
956
|
+
"shortname": "ЧЕРНОГОРИЯ"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"code": "CZE",
|
960
|
+
"shortname": "ЧЕШСКАЯ РЕСПУБЛИКА"
|
961
|
+
},
|
962
|
+
{
|
963
|
+
"code": "CHL",
|
964
|
+
"shortname": "ЧИЛИ"
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"code": "CHE",
|
968
|
+
"shortname": "ШВЕЙЦАРИЯ"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"code": "SWE",
|
972
|
+
"shortname": "ШВЕЦИЯ"
|
973
|
+
},
|
974
|
+
{
|
975
|
+
"code": "SJM",
|
976
|
+
"shortname": "ШПИЦБЕРГЕН И ЯН МАЙЕН"
|
977
|
+
},
|
978
|
+
{
|
979
|
+
"code": "LKA",
|
980
|
+
"shortname": "ШРИ-ЛАНКА"
|
981
|
+
},
|
982
|
+
{
|
983
|
+
"code": "ECU",
|
984
|
+
"shortname": "ЭКВАДОР"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
"code": "GNQ",
|
988
|
+
"shortname": "ЭКВАТОРИАЛЬНАЯ ГВИНЕЯ"
|
989
|
+
},
|
990
|
+
{
|
991
|
+
"code": "ALA",
|
992
|
+
"shortname": "ЭЛАНДСКИЕ ОСТРОВА"
|
993
|
+
},
|
994
|
+
{
|
995
|
+
"code": "SLV",
|
996
|
+
"shortname": "ЭЛЬ-САЛЬВАДОР"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"code": "ERI",
|
1000
|
+
"shortname": "ЭРИТРЕЯ"
|
1001
|
+
},
|
1002
|
+
{
|
1003
|
+
"code": "EST",
|
1004
|
+
"shortname": "ЭСТОНИЯ"
|
1005
|
+
},
|
1006
|
+
{
|
1007
|
+
"code": "ETH",
|
1008
|
+
"shortname": "ЭФИОПИЯ"
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
"code": "ZAF",
|
1012
|
+
"shortname": "ЮЖНАЯ АФРИКА"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
"code": "OST",
|
1016
|
+
"shortname": "ЮЖНАЯ ОСЕТИЯ"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"code": "SGS",
|
1020
|
+
"shortname": "ЮЖНАЯ ДЖОРДЖИЯ И ЮЖНЫЕ САНДВИЧЕВЫ ОСТРОВА"
|
1021
|
+
},
|
1022
|
+
{
|
1023
|
+
"code": "SSD",
|
1024
|
+
"shortname": "ЮЖНЫЙ СУДАН"
|
1025
|
+
},
|
1026
|
+
{
|
1027
|
+
"code": "JAM",
|
1028
|
+
"shortname": "ЯМАЙКА"
|
1029
|
+
},
|
1030
|
+
{
|
1031
|
+
"code": "JPN",
|
1032
|
+
"shortname": "ЯПОНИЯ"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"code": "EUE",
|
1036
|
+
"shortname": "ЕВРОПЕЙСКИЙ СОЮЗ"
|
1037
|
+
},
|
1038
|
+
{
|
1039
|
+
"code": "XXA",
|
1040
|
+
"shortname": "ЛИЦО БЕЗ ГРАЖДАНСТВА СОГЛАСНО ОПРЕДЕЛЕНИЮ В СТАТЬЕ 1 КОНВЕНЦИИ 1954 ГОДА, КАСАЮЩЕЙСЯ СТАТУСА ЛИЦ БЕЗ ГРАЖДАНСТВА"
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"code": "XXB",
|
1044
|
+
"shortname": "БЕЖЕНЕЦ СОГЛАСНО ОПРЕДЕЛЕНИЮ В СТАТЬЕ 1 КОНВЕНЦИИ 1951 ГОДА, КАСАЮЩЕЙСЯ СТАТУСА БЕЖЕНЦЕВ, ИЗМЕНЕННОЙ ПРОТОКОЛОМ 1967 ГОДА"
|
1045
|
+
},
|
1046
|
+
{
|
1047
|
+
"code": "XXC",
|
1048
|
+
"shortname": "ИНОЙ БЕЖЕНЕЦ, ЧЕМ ТОТ, КОТОРЫЙ ОПРЕДЕЛЕН ВЫШЕ ПОД КОДОМ XXB"
|
1049
|
+
},
|
1050
|
+
{
|
1051
|
+
"code": "XXX",
|
1052
|
+
"shortname": "ЛИЦО НЕУСТАНОВЛЕННОГО ГРАЖДАНСТВА, КОТОРОМУ ГОСУДАРСТВО ВЫДАЧИ НЕ СЧИТАЕТ НЕОБХОДИМЫМ ПРИСВОИТЬ НИ ОДИН ИЗ УКАЗАННЫХ ВЫШЕ КОДОВ (XXA, XXB ИЛИ XXC), НЕЗАВИСИМО ОТ СТАТУСА ДАННОГО ЛИЦА. В ЭТУ КАТЕГОРИЮ МОГУТ ВХОДИТЬ ЛИЦА, НЕ ЯВЛЯЮЩИЕСЯ ЛИЦАМИ БЕЗ ГРАЖДАНСТВА ИЛИ БЕЖЕНЦАМИ, НО ГРАЖДАНСТВО КОТОРЫХ НЕ УСТАНОВЛЕНО И КОТОРЫЕ НА ЗАКОННОМ ОСНОВАНИИ ПРОЖИВАЮТ В ГОСУДАРСТВЕ ВЫДАЧИ"
|
1053
|
+
}
|
1054
|
+
]
|
educommon/version.conf
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
# нормальной установки обновлений.
|
5
5
|
|
6
6
|
[version]
|
7
|
-
BRANCH = tags/3.
|
8
|
-
VERSION = 3.
|
9
|
-
REVISION =
|
10
|
-
VERSION_DATE =
|
11
|
-
REVISION_DATE =
|
7
|
+
BRANCH = tags/3.9.0^0
|
8
|
+
VERSION = 3.9.0
|
9
|
+
REVISION = 77e759409318f3548abab15d34f60f9819105589
|
10
|
+
VERSION_DATE = 29.02.2024
|
11
|
+
REVISION_DATE = 29.02.2024
|
@@ -1,6 +1,6 @@
|
|
1
1
|
educommon/__init__.py,sha256=fvsBDL7g8HgOTd-JHOh7TSvMcnUauvGVgPuyA2Z9hUI,419
|
2
2
|
educommon/thread_data.py,sha256=n0XtdesP9H92O3rJ8K6fVnJLiHqyJEfh2xpuT36wzxs,61
|
3
|
-
educommon/version.conf,sha256=
|
3
|
+
educommon/version.conf,sha256=7pTTy0gLFtccJ5U2Mc26lYLocRUszAspwpKCP6tTU6U,450
|
4
4
|
educommon/about/README.rst,sha256=U48UW5jv-8qHyaV56atzzkNMvzHKXVcWSb_NR06PnMo,2685
|
5
5
|
educommon/about/__init__.py,sha256=H1W0IgW-qX9LCZ49GOJzHdmQGHhh-MA6U1xmNx7WnfM,132
|
6
6
|
educommon/about/apps.py,sha256=GrpJAOE2sF0ukWsqugP_WJS88DO4aL-T3kTLprrJrcA,259
|
@@ -47,7 +47,7 @@ educommon/audit_log/apps.py,sha256=zHeBEoF8HVNc6YIIQTW-lpEMXjrywnB23uqxXIR9IKg,5
|
|
47
47
|
educommon/audit_log/constants.py,sha256=96Gp-rYpt6poKAu8LbXY_0aApdOWYBy09235kAB0rSo,880
|
48
48
|
educommon/audit_log/helpers.py,sha256=qJLV6yVgf3Z-Mgalc6kGfFvxk8h1L4bTO9fdSL36OPk,738
|
49
49
|
educommon/audit_log/middleware.py,sha256=HkxBh-1RQJnhKqckkXaMbFjJ34WgZGJssbk04wiS3ts,1140
|
50
|
-
educommon/audit_log/models.py,sha256=
|
50
|
+
educommon/audit_log/models.py,sha256=1l1ld-q9Kg90JKssrR_MbM9d6nJuqhFCc8lvVo9RUW8,11682
|
51
51
|
educommon/audit_log/permissions.py,sha256=VB040UAY4_KmqM4ioToHlVHQYSE7OP0qHEUn9bnWUSo,1241
|
52
52
|
educommon/audit_log/proxies.py,sha256=r12ZVAPe8d78tZSnNsOypDnV-gQ4VFtw0l7DycksPhg,8562
|
53
53
|
educommon/audit_log/routers.py,sha256=FF3KLvf6_WWFuZ9VRI8AZyKDfWp_lyd0i6bcVFfIehQ,204
|
@@ -119,7 +119,7 @@ educommon/contingent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
119
119
|
educommon/contingent/actions.py,sha256=fX4wsISnjMh2gYwfA4SgWmcWW6Ar_g8SNKYU3JTl7bI,3035
|
120
120
|
educommon/contingent/app_meta.py,sha256=4VE-PqRFLs8vLkaowIHbDyVb_9dvCScml3WvZ24KDws,273
|
121
121
|
educommon/contingent/base.py,sha256=jo-8ViLDsb7-AgIVDbkfw6DMvYG-AfMFtO4WGsROCr8,6854
|
122
|
-
educommon/contingent/catalogs.py,sha256=
|
122
|
+
educommon/contingent/catalogs.py,sha256=OafO1jDi7q7wm_7cnu8k-xiUc6mwKhXE36HklJX2Sb4,61449
|
123
123
|
educommon/contingent/contingent_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
124
|
educommon/contingent/contingent_plugin/actions.py,sha256=SXjFCDGyFHrOZNcroEouRLZB7NqFSs7M_1Gw89bfe48,717
|
125
125
|
educommon/contingent/contingent_plugin/apps.py,sha256=ctT2ZbSh_7t0MT9apHAynxw22JHQ2YSrSnAJzXx4giM,697
|
@@ -132,6 +132,7 @@ educommon/contingent/contingent_plugin/utils.py,sha256=KwAAO17rwviPrWNdluL4pv9yB
|
|
132
132
|
educommon/contingent/contingent_plugin/migrations/0001_initial.py,sha256=2_eQ_tVQenBFkwRK3wPE6J9BgTxKPJcyD_7Odx3vEUs,1594
|
133
133
|
educommon/contingent/contingent_plugin/migrations/0002_add_contingent_model_deleted.py,sha256=OtqDfkN6s0F0Zg58dT4YarmSWQDUWrjoPh4AZSX9Gx0,1176
|
134
134
|
educommon/contingent/contingent_plugin/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
135
|
+
educommon/contingent/json_data/icao.json,sha256=4XEN5fCjczAvs4sGZFeZJmGMdxk4wcfWZBxjAi2ECwk,20078
|
135
136
|
educommon/contingent/json_data/okogu.json,sha256=1yK8VWxivX5VeFQzkNSUWqHabu6RBy4VJW0VnOIlEsw,53540
|
136
137
|
educommon/contingent/json_data/oksm.json,sha256=YRRdFEMCmBkUuDil0DIXLjZR9LU3EU-mwiPhWDnyZgQ,30877
|
137
138
|
educommon/django/__init__.py,sha256=0Fe7dZFIVdw18JIpvl9P7q0GoqKN7ySr5D1rA9YaAzk,69
|
@@ -341,8 +342,8 @@ educommon/ws_log/smev/exceptions.py,sha256=lmy7o2T3dJkqgIhG07qyh5yPqO3qZAYABuT4J
|
|
341
342
|
educommon/ws_log/templates/report/smev_logs.xlsx,sha256=nnYgB0Z_ix8HoxsRICjsZfFRQBdra-5Gd8nWhCxTjYg,10439
|
342
343
|
educommon/ws_log/templates/ui-js/smev-logs-list-window.js,sha256=AGup3D8GTJSY9WdDPj0zBJeYQBFOmGgcbxPOJbKK-nY,513
|
343
344
|
educommon/ws_log/templates/ui-js/smev-logs-report-setting-window.js,sha256=nQ7QYK9frJcE7g7kIt6INg9TlEEJAPPayBJgRaoTePA,1103
|
344
|
-
educommon-3.
|
345
|
-
educommon-3.
|
346
|
-
educommon-3.
|
347
|
-
educommon-3.
|
348
|
-
educommon-3.
|
345
|
+
educommon-3.9.0.dist-info/METADATA,sha256=aKvqi797ApWnD1CA1alCbLAdih94DSYt55brqTZ8qD4,1450
|
346
|
+
educommon-3.9.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
347
|
+
educommon-3.9.0.dist-info/dependency_links.txt,sha256=RNlr4t-BxZRm7e_IfVo1ikr5ln-7viimzLHvQMO1C_Q,43
|
348
|
+
educommon-3.9.0.dist-info/top_level.txt,sha256=z5fbW7bz_0V1foUm_FGcZ9_MTpW3N1dBN7-kEmMowl4,10
|
349
|
+
educommon-3.9.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|