summaryrefslogtreecommitdiff
path: root/chat/matrix-synapse/PLIST
blob: 9f46bad6cb514e87f5b59d659f070ba4732d8ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
@comment $NetBSD: PLIST,v 1.17 2021/08/31 19:57:59 js Exp $
bin/export_signing_key
bin/generate_config
bin/generate_log_config
bin/generate_signing_key.py
bin/hash_password
bin/move_remote_media_to_new_store.py
bin/register_new_matrix_user
bin/synapse_port_db
bin/synapse_review_recent_signups
bin/sync_room_to_group.pl
bin/synctl
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/synapse/__init__.py
${PYSITELIB}/synapse/__init__.pyc
${PYSITELIB}/synapse/__init__.pyo
${PYSITELIB}/synapse/_scripts/__init__.py
${PYSITELIB}/synapse/_scripts/__init__.pyc
${PYSITELIB}/synapse/_scripts/__init__.pyo
${PYSITELIB}/synapse/_scripts/register_new_matrix_user.py
${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyc
${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyo
${PYSITELIB}/synapse/_scripts/review_recent_signups.py
${PYSITELIB}/synapse/_scripts/review_recent_signups.pyc
${PYSITELIB}/synapse/_scripts/review_recent_signups.pyo
${PYSITELIB}/synapse/api/__init__.py
${PYSITELIB}/synapse/api/__init__.pyc
${PYSITELIB}/synapse/api/__init__.pyo
${PYSITELIB}/synapse/api/auth.py
${PYSITELIB}/synapse/api/auth.pyc
${PYSITELIB}/synapse/api/auth.pyo
${PYSITELIB}/synapse/api/auth_blocking.py
${PYSITELIB}/synapse/api/auth_blocking.pyc
${PYSITELIB}/synapse/api/auth_blocking.pyo
${PYSITELIB}/synapse/api/constants.py
${PYSITELIB}/synapse/api/constants.pyc
${PYSITELIB}/synapse/api/constants.pyo
${PYSITELIB}/synapse/api/errors.py
${PYSITELIB}/synapse/api/errors.pyc
${PYSITELIB}/synapse/api/errors.pyo
${PYSITELIB}/synapse/api/filtering.py
${PYSITELIB}/synapse/api/filtering.pyc
${PYSITELIB}/synapse/api/filtering.pyo
${PYSITELIB}/synapse/api/presence.py
${PYSITELIB}/synapse/api/presence.pyc
${PYSITELIB}/synapse/api/presence.pyo
${PYSITELIB}/synapse/api/ratelimiting.py
${PYSITELIB}/synapse/api/ratelimiting.pyc
${PYSITELIB}/synapse/api/ratelimiting.pyo
${PYSITELIB}/synapse/api/room_versions.py
${PYSITELIB}/synapse/api/room_versions.pyc
${PYSITELIB}/synapse/api/room_versions.pyo
${PYSITELIB}/synapse/api/urls.py
${PYSITELIB}/synapse/api/urls.pyc
${PYSITELIB}/synapse/api/urls.pyo
${PYSITELIB}/synapse/app/__init__.py
${PYSITELIB}/synapse/app/__init__.pyc
${PYSITELIB}/synapse/app/__init__.pyo
${PYSITELIB}/synapse/app/_base.py
${PYSITELIB}/synapse/app/_base.pyc
${PYSITELIB}/synapse/app/_base.pyo
${PYSITELIB}/synapse/app/admin_cmd.py
${PYSITELIB}/synapse/app/admin_cmd.pyc
${PYSITELIB}/synapse/app/admin_cmd.pyo
${PYSITELIB}/synapse/app/appservice.py
${PYSITELIB}/synapse/app/appservice.pyc
${PYSITELIB}/synapse/app/appservice.pyo
${PYSITELIB}/synapse/app/client_reader.py
${PYSITELIB}/synapse/app/client_reader.pyc
${PYSITELIB}/synapse/app/client_reader.pyo
${PYSITELIB}/synapse/app/event_creator.py
${PYSITELIB}/synapse/app/event_creator.pyc
${PYSITELIB}/synapse/app/event_creator.pyo
${PYSITELIB}/synapse/app/federation_reader.py
${PYSITELIB}/synapse/app/federation_reader.pyc
${PYSITELIB}/synapse/app/federation_reader.pyo
${PYSITELIB}/synapse/app/federation_sender.py
${PYSITELIB}/synapse/app/federation_sender.pyc
${PYSITELIB}/synapse/app/federation_sender.pyo
${PYSITELIB}/synapse/app/frontend_proxy.py
${PYSITELIB}/synapse/app/frontend_proxy.pyc
${PYSITELIB}/synapse/app/frontend_proxy.pyo
${PYSITELIB}/synapse/app/generic_worker.py
${PYSITELIB}/synapse/app/generic_worker.pyc
${PYSITELIB}/synapse/app/generic_worker.pyo
${PYSITELIB}/synapse/app/homeserver.py
${PYSITELIB}/synapse/app/homeserver.pyc
${PYSITELIB}/synapse/app/homeserver.pyo
${PYSITELIB}/synapse/app/media_repository.py
${PYSITELIB}/synapse/app/media_repository.pyc
${PYSITELIB}/synapse/app/media_repository.pyo
${PYSITELIB}/synapse/app/phone_stats_home.py
${PYSITELIB}/synapse/app/phone_stats_home.pyc
${PYSITELIB}/synapse/app/phone_stats_home.pyo
${PYSITELIB}/synapse/app/pusher.py
${PYSITELIB}/synapse/app/pusher.pyc
${PYSITELIB}/synapse/app/pusher.pyo
${PYSITELIB}/synapse/app/synchrotron.py
${PYSITELIB}/synapse/app/synchrotron.pyc
${PYSITELIB}/synapse/app/synchrotron.pyo
${PYSITELIB}/synapse/app/user_dir.py
${PYSITELIB}/synapse/app/user_dir.pyc
${PYSITELIB}/synapse/app/user_dir.pyo
${PYSITELIB}/synapse/appservice/__init__.py
${PYSITELIB}/synapse/appservice/__init__.pyc
${PYSITELIB}/synapse/appservice/__init__.pyo
${PYSITELIB}/synapse/appservice/api.py
${PYSITELIB}/synapse/appservice/api.pyc
${PYSITELIB}/synapse/appservice/api.pyo
${PYSITELIB}/synapse/appservice/scheduler.py
${PYSITELIB}/synapse/appservice/scheduler.pyc
${PYSITELIB}/synapse/appservice/scheduler.pyo
${PYSITELIB}/synapse/config/__init__.py
${PYSITELIB}/synapse/config/__init__.pyc
${PYSITELIB}/synapse/config/__init__.pyo
${PYSITELIB}/synapse/config/__main__.py
${PYSITELIB}/synapse/config/__main__.pyc
${PYSITELIB}/synapse/config/__main__.pyo
${PYSITELIB}/synapse/config/_base.py
${PYSITELIB}/synapse/config/_base.pyc
${PYSITELIB}/synapse/config/_base.pyi
${PYSITELIB}/synapse/config/_base.pyo
${PYSITELIB}/synapse/config/_util.py
${PYSITELIB}/synapse/config/_util.pyc
${PYSITELIB}/synapse/config/_util.pyo
${PYSITELIB}/synapse/config/account_validity.py
${PYSITELIB}/synapse/config/account_validity.pyc
${PYSITELIB}/synapse/config/account_validity.pyo
${PYSITELIB}/synapse/config/api.py
${PYSITELIB}/synapse/config/api.pyc
${PYSITELIB}/synapse/config/api.pyo
${PYSITELIB}/synapse/config/appservice.py
${PYSITELIB}/synapse/config/appservice.pyc
${PYSITELIB}/synapse/config/appservice.pyo
${PYSITELIB}/synapse/config/auth.py
${PYSITELIB}/synapse/config/auth.pyc
${PYSITELIB}/synapse/config/auth.pyo
${PYSITELIB}/synapse/config/cache.py
${PYSITELIB}/synapse/config/cache.pyc
${PYSITELIB}/synapse/config/cache.pyo
${PYSITELIB}/synapse/config/captcha.py
${PYSITELIB}/synapse/config/captcha.pyc
${PYSITELIB}/synapse/config/captcha.pyo
${PYSITELIB}/synapse/config/cas.py
${PYSITELIB}/synapse/config/cas.pyc
${PYSITELIB}/synapse/config/cas.pyo
${PYSITELIB}/synapse/config/consent.py
${PYSITELIB}/synapse/config/consent.pyc
${PYSITELIB}/synapse/config/consent.pyo
${PYSITELIB}/synapse/config/database.py
${PYSITELIB}/synapse/config/database.pyc
${PYSITELIB}/synapse/config/database.pyo
${PYSITELIB}/synapse/config/emailconfig.py
${PYSITELIB}/synapse/config/emailconfig.pyc
${PYSITELIB}/synapse/config/emailconfig.pyo
${PYSITELIB}/synapse/config/experimental.py
${PYSITELIB}/synapse/config/experimental.pyc
${PYSITELIB}/synapse/config/experimental.pyo
${PYSITELIB}/synapse/config/federation.py
${PYSITELIB}/synapse/config/federation.pyc
${PYSITELIB}/synapse/config/federation.pyo
${PYSITELIB}/synapse/config/groups.py
${PYSITELIB}/synapse/config/groups.pyc
${PYSITELIB}/synapse/config/groups.pyo
${PYSITELIB}/synapse/config/homeserver.py
${PYSITELIB}/synapse/config/homeserver.pyc
${PYSITELIB}/synapse/config/homeserver.pyo
${PYSITELIB}/synapse/config/jwt.py
${PYSITELIB}/synapse/config/jwt.pyc
${PYSITELIB}/synapse/config/jwt.pyo
${PYSITELIB}/synapse/config/key.py
${PYSITELIB}/synapse/config/key.pyc
${PYSITELIB}/synapse/config/key.pyo
${PYSITELIB}/synapse/config/logger.py
${PYSITELIB}/synapse/config/logger.pyc
${PYSITELIB}/synapse/config/logger.pyo
${PYSITELIB}/synapse/config/metrics.py
${PYSITELIB}/synapse/config/metrics.pyc
${PYSITELIB}/synapse/config/metrics.pyo
${PYSITELIB}/synapse/config/modules.py
${PYSITELIB}/synapse/config/modules.pyc
${PYSITELIB}/synapse/config/modules.pyo
${PYSITELIB}/synapse/config/oidc.py
${PYSITELIB}/synapse/config/oidc.pyc
${PYSITELIB}/synapse/config/oidc.pyo
${PYSITELIB}/synapse/config/password_auth_providers.py
${PYSITELIB}/synapse/config/password_auth_providers.pyc
${PYSITELIB}/synapse/config/password_auth_providers.pyo
${PYSITELIB}/synapse/config/push.py
${PYSITELIB}/synapse/config/push.pyc
${PYSITELIB}/synapse/config/push.pyo
${PYSITELIB}/synapse/config/ratelimiting.py
${PYSITELIB}/synapse/config/ratelimiting.pyc
${PYSITELIB}/synapse/config/ratelimiting.pyo
${PYSITELIB}/synapse/config/redis.py
${PYSITELIB}/synapse/config/redis.pyc
${PYSITELIB}/synapse/config/redis.pyo
${PYSITELIB}/synapse/config/registration.py
${PYSITELIB}/synapse/config/registration.pyc
${PYSITELIB}/synapse/config/registration.pyo
${PYSITELIB}/synapse/config/repository.py
${PYSITELIB}/synapse/config/repository.pyc
${PYSITELIB}/synapse/config/repository.pyo
${PYSITELIB}/synapse/config/room.py
${PYSITELIB}/synapse/config/room.pyc
${PYSITELIB}/synapse/config/room.pyo
${PYSITELIB}/synapse/config/room_directory.py
${PYSITELIB}/synapse/config/room_directory.pyc
${PYSITELIB}/synapse/config/room_directory.pyo
${PYSITELIB}/synapse/config/saml2.py
${PYSITELIB}/synapse/config/saml2.pyc
${PYSITELIB}/synapse/config/saml2.pyo
${PYSITELIB}/synapse/config/server.py
${PYSITELIB}/synapse/config/server.pyc
${PYSITELIB}/synapse/config/server.pyo
${PYSITELIB}/synapse/config/server_notices.py
${PYSITELIB}/synapse/config/server_notices.pyc
${PYSITELIB}/synapse/config/server_notices.pyo
${PYSITELIB}/synapse/config/spam_checker.py
${PYSITELIB}/synapse/config/spam_checker.pyc
${PYSITELIB}/synapse/config/spam_checker.pyo
${PYSITELIB}/synapse/config/sso.py
${PYSITELIB}/synapse/config/sso.pyc
${PYSITELIB}/synapse/config/sso.pyo
${PYSITELIB}/synapse/config/stats.py
${PYSITELIB}/synapse/config/stats.pyc
${PYSITELIB}/synapse/config/stats.pyo
${PYSITELIB}/synapse/config/third_party_event_rules.py
${PYSITELIB}/synapse/config/third_party_event_rules.pyc
${PYSITELIB}/synapse/config/third_party_event_rules.pyo
${PYSITELIB}/synapse/config/tls.py
${PYSITELIB}/synapse/config/tls.pyc
${PYSITELIB}/synapse/config/tls.pyo
${PYSITELIB}/synapse/config/tracer.py
${PYSITELIB}/synapse/config/tracer.pyc
${PYSITELIB}/synapse/config/tracer.pyo
${PYSITELIB}/synapse/config/user_directory.py
${PYSITELIB}/synapse/config/user_directory.pyc
${PYSITELIB}/synapse/config/user_directory.pyo
${PYSITELIB}/synapse/config/voip.py
${PYSITELIB}/synapse/config/voip.pyc
${PYSITELIB}/synapse/config/voip.pyo
${PYSITELIB}/synapse/config/workers.py
${PYSITELIB}/synapse/config/workers.pyc
${PYSITELIB}/synapse/config/workers.pyo
${PYSITELIB}/synapse/crypto/__init__.py
${PYSITELIB}/synapse/crypto/__init__.pyc
${PYSITELIB}/synapse/crypto/__init__.pyo
${PYSITELIB}/synapse/crypto/context_factory.py
${PYSITELIB}/synapse/crypto/context_factory.pyc
${PYSITELIB}/synapse/crypto/context_factory.pyo
${PYSITELIB}/synapse/crypto/event_signing.py
${PYSITELIB}/synapse/crypto/event_signing.pyc
${PYSITELIB}/synapse/crypto/event_signing.pyo
${PYSITELIB}/synapse/crypto/keyring.py
${PYSITELIB}/synapse/crypto/keyring.pyc
${PYSITELIB}/synapse/crypto/keyring.pyo
${PYSITELIB}/synapse/event_auth.py
${PYSITELIB}/synapse/event_auth.pyc
${PYSITELIB}/synapse/event_auth.pyo
${PYSITELIB}/synapse/events/__init__.py
${PYSITELIB}/synapse/events/__init__.pyc
${PYSITELIB}/synapse/events/__init__.pyo
${PYSITELIB}/synapse/events/builder.py
${PYSITELIB}/synapse/events/builder.pyc
${PYSITELIB}/synapse/events/builder.pyo
${PYSITELIB}/synapse/events/presence_router.py
${PYSITELIB}/synapse/events/presence_router.pyc
${PYSITELIB}/synapse/events/presence_router.pyo
${PYSITELIB}/synapse/events/snapshot.py
${PYSITELIB}/synapse/events/snapshot.pyc
${PYSITELIB}/synapse/events/snapshot.pyo
${PYSITELIB}/synapse/events/spamcheck.py
${PYSITELIB}/synapse/events/spamcheck.pyc
${PYSITELIB}/synapse/events/spamcheck.pyo
${PYSITELIB}/synapse/events/third_party_rules.py
${PYSITELIB}/synapse/events/third_party_rules.pyc
${PYSITELIB}/synapse/events/third_party_rules.pyo
${PYSITELIB}/synapse/events/utils.py
${PYSITELIB}/synapse/events/utils.pyc
${PYSITELIB}/synapse/events/utils.pyo
${PYSITELIB}/synapse/events/validator.py
${PYSITELIB}/synapse/events/validator.pyc
${PYSITELIB}/synapse/events/validator.pyo
${PYSITELIB}/synapse/federation/__init__.py
${PYSITELIB}/synapse/federation/__init__.pyc
${PYSITELIB}/synapse/federation/__init__.pyo
${PYSITELIB}/synapse/federation/federation_base.py
${PYSITELIB}/synapse/federation/federation_base.pyc
${PYSITELIB}/synapse/federation/federation_base.pyo
${PYSITELIB}/synapse/federation/federation_client.py
${PYSITELIB}/synapse/federation/federation_client.pyc
${PYSITELIB}/synapse/federation/federation_client.pyo
${PYSITELIB}/synapse/federation/federation_server.py
${PYSITELIB}/synapse/federation/federation_server.pyc
${PYSITELIB}/synapse/federation/federation_server.pyo
${PYSITELIB}/synapse/federation/persistence.py
${PYSITELIB}/synapse/federation/persistence.pyc
${PYSITELIB}/synapse/federation/persistence.pyo
${PYSITELIB}/synapse/federation/send_queue.py
${PYSITELIB}/synapse/federation/send_queue.pyc
${PYSITELIB}/synapse/federation/send_queue.pyo
${PYSITELIB}/synapse/federation/sender/__init__.py
${PYSITELIB}/synapse/federation/sender/__init__.pyc
${PYSITELIB}/synapse/federation/sender/__init__.pyo
${PYSITELIB}/synapse/federation/sender/per_destination_queue.py
${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyc
${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyo
${PYSITELIB}/synapse/federation/sender/transaction_manager.py
${PYSITELIB}/synapse/federation/sender/transaction_manager.pyc
${PYSITELIB}/synapse/federation/sender/transaction_manager.pyo
${PYSITELIB}/synapse/federation/transport/__init__.py
${PYSITELIB}/synapse/federation/transport/__init__.pyc
${PYSITELIB}/synapse/federation/transport/__init__.pyo
${PYSITELIB}/synapse/federation/transport/client.py
${PYSITELIB}/synapse/federation/transport/client.pyc
${PYSITELIB}/synapse/federation/transport/client.pyo
${PYSITELIB}/synapse/federation/transport/server/__init__.py
${PYSITELIB}/synapse/federation/transport/server/__init__.pyc
${PYSITELIB}/synapse/federation/transport/server/__init__.pyo
${PYSITELIB}/synapse/federation/transport/server/_base.py
${PYSITELIB}/synapse/federation/transport/server/_base.pyc
${PYSITELIB}/synapse/federation/transport/server/_base.pyo
${PYSITELIB}/synapse/federation/transport/server/federation.py
${PYSITELIB}/synapse/federation/transport/server/federation.pyc
${PYSITELIB}/synapse/federation/transport/server/federation.pyo
${PYSITELIB}/synapse/federation/transport/server/groups_local.py
${PYSITELIB}/synapse/federation/transport/server/groups_local.pyc
${PYSITELIB}/synapse/federation/transport/server/groups_local.pyo
${PYSITELIB}/synapse/federation/transport/server/groups_server.py
${PYSITELIB}/synapse/federation/transport/server/groups_server.pyc
${PYSITELIB}/synapse/federation/transport/server/groups_server.pyo
${PYSITELIB}/synapse/federation/units.py
${PYSITELIB}/synapse/federation/units.pyc
${PYSITELIB}/synapse/federation/units.pyo
${PYSITELIB}/synapse/groups/__init__.py
${PYSITELIB}/synapse/groups/__init__.pyc
${PYSITELIB}/synapse/groups/__init__.pyo
${PYSITELIB}/synapse/groups/attestations.py
${PYSITELIB}/synapse/groups/attestations.pyc
${PYSITELIB}/synapse/groups/attestations.pyo
${PYSITELIB}/synapse/groups/groups_server.py
${PYSITELIB}/synapse/groups/groups_server.pyc
${PYSITELIB}/synapse/groups/groups_server.pyo
${PYSITELIB}/synapse/handlers/__init__.py
${PYSITELIB}/synapse/handlers/__init__.pyc
${PYSITELIB}/synapse/handlers/__init__.pyo
${PYSITELIB}/synapse/handlers/_base.py
${PYSITELIB}/synapse/handlers/_base.pyc
${PYSITELIB}/synapse/handlers/_base.pyo
${PYSITELIB}/synapse/handlers/account_data.py
${PYSITELIB}/synapse/handlers/account_data.pyc
${PYSITELIB}/synapse/handlers/account_data.pyo
${PYSITELIB}/synapse/handlers/account_validity.py
${PYSITELIB}/synapse/handlers/account_validity.pyc
${PYSITELIB}/synapse/handlers/account_validity.pyo
${PYSITELIB}/synapse/handlers/admin.py
${PYSITELIB}/synapse/handlers/admin.pyc
${PYSITELIB}/synapse/handlers/admin.pyo
${PYSITELIB}/synapse/handlers/appservice.py
${PYSITELIB}/synapse/handlers/appservice.pyc
${PYSITELIB}/synapse/handlers/appservice.pyo
${PYSITELIB}/synapse/handlers/auth.py
${PYSITELIB}/synapse/handlers/auth.pyc
${PYSITELIB}/synapse/handlers/auth.pyo
${PYSITELIB}/synapse/handlers/cas.py
${PYSITELIB}/synapse/handlers/cas.pyc
${PYSITELIB}/synapse/handlers/cas.pyo
${PYSITELIB}/synapse/handlers/deactivate_account.py
${PYSITELIB}/synapse/handlers/deactivate_account.pyc
${PYSITELIB}/synapse/handlers/deactivate_account.pyo
${PYSITELIB}/synapse/handlers/device.py
${PYSITELIB}/synapse/handlers/device.pyc
${PYSITELIB}/synapse/handlers/device.pyo
${PYSITELIB}/synapse/handlers/devicemessage.py
${PYSITELIB}/synapse/handlers/devicemessage.pyc
${PYSITELIB}/synapse/handlers/devicemessage.pyo
${PYSITELIB}/synapse/handlers/directory.py
${PYSITELIB}/synapse/handlers/directory.pyc
${PYSITELIB}/synapse/handlers/directory.pyo
${PYSITELIB}/synapse/handlers/e2e_keys.py
${PYSITELIB}/synapse/handlers/e2e_keys.pyc
${PYSITELIB}/synapse/handlers/e2e_keys.pyo
${PYSITELIB}/synapse/handlers/e2e_room_keys.py
${PYSITELIB}/synapse/handlers/e2e_room_keys.pyc
${PYSITELIB}/synapse/handlers/e2e_room_keys.pyo
${PYSITELIB}/synapse/handlers/event_auth.py
${PYSITELIB}/synapse/handlers/event_auth.pyc
${PYSITELIB}/synapse/handlers/event_auth.pyo
${PYSITELIB}/synapse/handlers/events.py
${PYSITELIB}/synapse/handlers/events.pyc
${PYSITELIB}/synapse/handlers/events.pyo
${PYSITELIB}/synapse/handlers/federation.py
${PYSITELIB}/synapse/handlers/federation.pyc
${PYSITELIB}/synapse/handlers/federation.pyo
${PYSITELIB}/synapse/handlers/groups_local.py
${PYSITELIB}/synapse/handlers/groups_local.pyc
${PYSITELIB}/synapse/handlers/groups_local.pyo
${PYSITELIB}/synapse/handlers/identity.py
${PYSITELIB}/synapse/handlers/identity.pyc
${PYSITELIB}/synapse/handlers/identity.pyo
${PYSITELIB}/synapse/handlers/initial_sync.py
${PYSITELIB}/synapse/handlers/initial_sync.pyc
${PYSITELIB}/synapse/handlers/initial_sync.pyo
${PYSITELIB}/synapse/handlers/message.py
${PYSITELIB}/synapse/handlers/message.pyc
${PYSITELIB}/synapse/handlers/message.pyo
${PYSITELIB}/synapse/handlers/oidc.py
${PYSITELIB}/synapse/handlers/oidc.pyc
${PYSITELIB}/synapse/handlers/oidc.pyo
${PYSITELIB}/synapse/handlers/pagination.py
${PYSITELIB}/synapse/handlers/pagination.pyc
${PYSITELIB}/synapse/handlers/pagination.pyo
${PYSITELIB}/synapse/handlers/password_policy.py
${PYSITELIB}/synapse/handlers/password_policy.pyc
${PYSITELIB}/synapse/handlers/password_policy.pyo
${PYSITELIB}/synapse/handlers/presence.py
${PYSITELIB}/synapse/handlers/presence.pyc
${PYSITELIB}/synapse/handlers/presence.pyo
${PYSITELIB}/synapse/handlers/profile.py
${PYSITELIB}/synapse/handlers/profile.pyc
${PYSITELIB}/synapse/handlers/profile.pyo
${PYSITELIB}/synapse/handlers/read_marker.py
${PYSITELIB}/synapse/handlers/read_marker.pyc
${PYSITELIB}/synapse/handlers/read_marker.pyo
${PYSITELIB}/synapse/handlers/receipts.py
${PYSITELIB}/synapse/handlers/receipts.pyc
${PYSITELIB}/synapse/handlers/receipts.pyo
${PYSITELIB}/synapse/handlers/register.py
${PYSITELIB}/synapse/handlers/register.pyc
${PYSITELIB}/synapse/handlers/register.pyo
${PYSITELIB}/synapse/handlers/room.py
${PYSITELIB}/synapse/handlers/room.pyc
${PYSITELIB}/synapse/handlers/room.pyo
${PYSITELIB}/synapse/handlers/room_list.py
${PYSITELIB}/synapse/handlers/room_list.pyc
${PYSITELIB}/synapse/handlers/room_list.pyo
${PYSITELIB}/synapse/handlers/room_member.py
${PYSITELIB}/synapse/handlers/room_member.pyc
${PYSITELIB}/synapse/handlers/room_member.pyo
${PYSITELIB}/synapse/handlers/room_member_worker.py
${PYSITELIB}/synapse/handlers/room_member_worker.pyc
${PYSITELIB}/synapse/handlers/room_member_worker.pyo
${PYSITELIB}/synapse/handlers/room_summary.py
${PYSITELIB}/synapse/handlers/room_summary.pyc
${PYSITELIB}/synapse/handlers/room_summary.pyo
${PYSITELIB}/synapse/handlers/saml.py
${PYSITELIB}/synapse/handlers/saml.pyc
${PYSITELIB}/synapse/handlers/saml.pyo
${PYSITELIB}/synapse/handlers/search.py
${PYSITELIB}/synapse/handlers/search.pyc
${PYSITELIB}/synapse/handlers/search.pyo
${PYSITELIB}/synapse/handlers/send_email.py
${PYSITELIB}/synapse/handlers/send_email.pyc
${PYSITELIB}/synapse/handlers/send_email.pyo
${PYSITELIB}/synapse/handlers/set_password.py
${PYSITELIB}/synapse/handlers/set_password.pyc
${PYSITELIB}/synapse/handlers/set_password.pyo
${PYSITELIB}/synapse/handlers/sso.py
${PYSITELIB}/synapse/handlers/sso.pyc
${PYSITELIB}/synapse/handlers/sso.pyo
${PYSITELIB}/synapse/handlers/state_deltas.py
${PYSITELIB}/synapse/handlers/state_deltas.pyc
${PYSITELIB}/synapse/handlers/state_deltas.pyo
${PYSITELIB}/synapse/handlers/stats.py
${PYSITELIB}/synapse/handlers/stats.pyc
${PYSITELIB}/synapse/handlers/stats.pyo
${PYSITELIB}/synapse/handlers/sync.py
${PYSITELIB}/synapse/handlers/sync.pyc
${PYSITELIB}/synapse/handlers/sync.pyo
${PYSITELIB}/synapse/handlers/typing.py
${PYSITELIB}/synapse/handlers/typing.pyc
${PYSITELIB}/synapse/handlers/typing.pyo
${PYSITELIB}/synapse/handlers/ui_auth/__init__.py
${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyc
${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyo
${PYSITELIB}/synapse/handlers/ui_auth/checkers.py
${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyc
${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyo
${PYSITELIB}/synapse/handlers/user_directory.py
${PYSITELIB}/synapse/handlers/user_directory.pyc
${PYSITELIB}/synapse/handlers/user_directory.pyo
${PYSITELIB}/synapse/http/__init__.py
${PYSITELIB}/synapse/http/__init__.pyc
${PYSITELIB}/synapse/http/__init__.pyo
${PYSITELIB}/synapse/http/additional_resource.py
${PYSITELIB}/synapse/http/additional_resource.pyc
${PYSITELIB}/synapse/http/additional_resource.pyo
${PYSITELIB}/synapse/http/client.py
${PYSITELIB}/synapse/http/client.pyc
${PYSITELIB}/synapse/http/client.pyo
${PYSITELIB}/synapse/http/connectproxyclient.py
${PYSITELIB}/synapse/http/connectproxyclient.pyc
${PYSITELIB}/synapse/http/connectproxyclient.pyo
${PYSITELIB}/synapse/http/federation/__init__.py
${PYSITELIB}/synapse/http/federation/__init__.pyc
${PYSITELIB}/synapse/http/federation/__init__.pyo
${PYSITELIB}/synapse/http/federation/matrix_federation_agent.py
${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyc
${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyo
${PYSITELIB}/synapse/http/federation/srv_resolver.py
${PYSITELIB}/synapse/http/federation/srv_resolver.pyc
${PYSITELIB}/synapse/http/federation/srv_resolver.pyo
${PYSITELIB}/synapse/http/federation/well_known_resolver.py
${PYSITELIB}/synapse/http/federation/well_known_resolver.pyc
${PYSITELIB}/synapse/http/federation/well_known_resolver.pyo
${PYSITELIB}/synapse/http/matrixfederationclient.py
${PYSITELIB}/synapse/http/matrixfederationclient.pyc
${PYSITELIB}/synapse/http/matrixfederationclient.pyo
${PYSITELIB}/synapse/http/proxyagent.py
${PYSITELIB}/synapse/http/proxyagent.pyc
${PYSITELIB}/synapse/http/proxyagent.pyo
${PYSITELIB}/synapse/http/request_metrics.py
${PYSITELIB}/synapse/http/request_metrics.pyc
${PYSITELIB}/synapse/http/request_metrics.pyo
${PYSITELIB}/synapse/http/server.py
${PYSITELIB}/synapse/http/server.pyc
${PYSITELIB}/synapse/http/server.pyo
${PYSITELIB}/synapse/http/servlet.py
${PYSITELIB}/synapse/http/servlet.pyc
${PYSITELIB}/synapse/http/servlet.pyo
${PYSITELIB}/synapse/http/site.py
${PYSITELIB}/synapse/http/site.pyc
${PYSITELIB}/synapse/http/site.pyo
${PYSITELIB}/synapse/logging/__init__.py
${PYSITELIB}/synapse/logging/__init__.pyc
${PYSITELIB}/synapse/logging/__init__.pyo
${PYSITELIB}/synapse/logging/_remote.py
${PYSITELIB}/synapse/logging/_remote.pyc
${PYSITELIB}/synapse/logging/_remote.pyo
${PYSITELIB}/synapse/logging/_structured.py
${PYSITELIB}/synapse/logging/_structured.pyc
${PYSITELIB}/synapse/logging/_structured.pyo
${PYSITELIB}/synapse/logging/_terse_json.py
${PYSITELIB}/synapse/logging/_terse_json.pyc
${PYSITELIB}/synapse/logging/_terse_json.pyo
${PYSITELIB}/synapse/logging/context.py
${PYSITELIB}/synapse/logging/context.pyc
${PYSITELIB}/synapse/logging/context.pyo
${PYSITELIB}/synapse/logging/filter.py
${PYSITELIB}/synapse/logging/filter.pyc
${PYSITELIB}/synapse/logging/filter.pyo
${PYSITELIB}/synapse/logging/formatter.py
${PYSITELIB}/synapse/logging/formatter.pyc
${PYSITELIB}/synapse/logging/formatter.pyo
${PYSITELIB}/synapse/logging/handlers.py
${PYSITELIB}/synapse/logging/handlers.pyc
${PYSITELIB}/synapse/logging/handlers.pyo
${PYSITELIB}/synapse/logging/opentracing.py
${PYSITELIB}/synapse/logging/opentracing.pyc
${PYSITELIB}/synapse/logging/opentracing.pyo
${PYSITELIB}/synapse/logging/scopecontextmanager.py
${PYSITELIB}/synapse/logging/scopecontextmanager.pyc
${PYSITELIB}/synapse/logging/scopecontextmanager.pyo
${PYSITELIB}/synapse/logging/utils.py
${PYSITELIB}/synapse/logging/utils.pyc
${PYSITELIB}/synapse/logging/utils.pyo
${PYSITELIB}/synapse/metrics/__init__.py
${PYSITELIB}/synapse/metrics/__init__.pyc
${PYSITELIB}/synapse/metrics/__init__.pyo
${PYSITELIB}/synapse/metrics/_exposition.py
${PYSITELIB}/synapse/metrics/_exposition.pyc
${PYSITELIB}/synapse/metrics/_exposition.pyo
${PYSITELIB}/synapse/metrics/background_process_metrics.py
${PYSITELIB}/synapse/metrics/background_process_metrics.pyc
${PYSITELIB}/synapse/metrics/background_process_metrics.pyo
${PYSITELIB}/synapse/metrics/jemalloc.py
${PYSITELIB}/synapse/metrics/jemalloc.pyc
${PYSITELIB}/synapse/metrics/jemalloc.pyo
${PYSITELIB}/synapse/module_api/__init__.py
${PYSITELIB}/synapse/module_api/__init__.pyc
${PYSITELIB}/synapse/module_api/__init__.pyo
${PYSITELIB}/synapse/module_api/errors.py
${PYSITELIB}/synapse/module_api/errors.pyc
${PYSITELIB}/synapse/module_api/errors.pyo
${PYSITELIB}/synapse/notifier.py
${PYSITELIB}/synapse/notifier.pyc
${PYSITELIB}/synapse/notifier.pyo
${PYSITELIB}/synapse/push/__init__.py
${PYSITELIB}/synapse/push/__init__.pyc
${PYSITELIB}/synapse/push/__init__.pyo
${PYSITELIB}/synapse/push/action_generator.py
${PYSITELIB}/synapse/push/action_generator.pyc
${PYSITELIB}/synapse/push/action_generator.pyo
${PYSITELIB}/synapse/push/baserules.py
${PYSITELIB}/synapse/push/baserules.pyc
${PYSITELIB}/synapse/push/baserules.pyo
${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.py
${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyc
${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyo
${PYSITELIB}/synapse/push/clientformat.py
${PYSITELIB}/synapse/push/clientformat.pyc
${PYSITELIB}/synapse/push/clientformat.pyo
${PYSITELIB}/synapse/push/emailpusher.py
${PYSITELIB}/synapse/push/emailpusher.pyc
${PYSITELIB}/synapse/push/emailpusher.pyo
${PYSITELIB}/synapse/push/httppusher.py
${PYSITELIB}/synapse/push/httppusher.pyc
${PYSITELIB}/synapse/push/httppusher.pyo
${PYSITELIB}/synapse/push/mailer.py
${PYSITELIB}/synapse/push/mailer.pyc
${PYSITELIB}/synapse/push/mailer.pyo
${PYSITELIB}/synapse/push/presentable_names.py
${PYSITELIB}/synapse/push/presentable_names.pyc
${PYSITELIB}/synapse/push/presentable_names.pyo
${PYSITELIB}/synapse/push/push_rule_evaluator.py
${PYSITELIB}/synapse/push/push_rule_evaluator.pyc
${PYSITELIB}/synapse/push/push_rule_evaluator.pyo
${PYSITELIB}/synapse/push/push_tools.py
${PYSITELIB}/synapse/push/push_tools.pyc
${PYSITELIB}/synapse/push/push_tools.pyo
${PYSITELIB}/synapse/push/pusher.py
${PYSITELIB}/synapse/push/pusher.pyc
${PYSITELIB}/synapse/push/pusher.pyo
${PYSITELIB}/synapse/push/pusherpool.py
${PYSITELIB}/synapse/push/pusherpool.pyc
${PYSITELIB}/synapse/push/pusherpool.pyo
${PYSITELIB}/synapse/push/rulekinds.py
${PYSITELIB}/synapse/push/rulekinds.pyc
${PYSITELIB}/synapse/push/rulekinds.pyo
${PYSITELIB}/synapse/python_dependencies.py
${PYSITELIB}/synapse/python_dependencies.pyc
${PYSITELIB}/synapse/python_dependencies.pyo
${PYSITELIB}/synapse/replication/__init__.py
${PYSITELIB}/synapse/replication/__init__.pyc
${PYSITELIB}/synapse/replication/__init__.pyo
${PYSITELIB}/synapse/replication/http/__init__.py
${PYSITELIB}/synapse/replication/http/__init__.pyc
${PYSITELIB}/synapse/replication/http/__init__.pyo
${PYSITELIB}/synapse/replication/http/_base.py
${PYSITELIB}/synapse/replication/http/_base.pyc
${PYSITELIB}/synapse/replication/http/_base.pyo
${PYSITELIB}/synapse/replication/http/account_data.py
${PYSITELIB}/synapse/replication/http/account_data.pyc
${PYSITELIB}/synapse/replication/http/account_data.pyo
${PYSITELIB}/synapse/replication/http/devices.py
${PYSITELIB}/synapse/replication/http/devices.pyc
${PYSITELIB}/synapse/replication/http/devices.pyo
${PYSITELIB}/synapse/replication/http/federation.py
${PYSITELIB}/synapse/replication/http/federation.pyc
${PYSITELIB}/synapse/replication/http/federation.pyo
${PYSITELIB}/synapse/replication/http/login.py
${PYSITELIB}/synapse/replication/http/login.pyc
${PYSITELIB}/synapse/replication/http/login.pyo
${PYSITELIB}/synapse/replication/http/membership.py
${PYSITELIB}/synapse/replication/http/membership.pyc
${PYSITELIB}/synapse/replication/http/membership.pyo
${PYSITELIB}/synapse/replication/http/presence.py
${PYSITELIB}/synapse/replication/http/presence.pyc
${PYSITELIB}/synapse/replication/http/presence.pyo
${PYSITELIB}/synapse/replication/http/push.py
${PYSITELIB}/synapse/replication/http/push.pyc
${PYSITELIB}/synapse/replication/http/push.pyo
${PYSITELIB}/synapse/replication/http/register.py
${PYSITELIB}/synapse/replication/http/register.pyc
${PYSITELIB}/synapse/replication/http/register.pyo
${PYSITELIB}/synapse/replication/http/send_event.py
${PYSITELIB}/synapse/replication/http/send_event.pyc
${PYSITELIB}/synapse/replication/http/send_event.pyo
${PYSITELIB}/synapse/replication/http/streams.py
${PYSITELIB}/synapse/replication/http/streams.pyc
${PYSITELIB}/synapse/replication/http/streams.pyo
${PYSITELIB}/synapse/replication/slave/__init__.py
${PYSITELIB}/synapse/replication/slave/__init__.pyc
${PYSITELIB}/synapse/replication/slave/__init__.pyo
${PYSITELIB}/synapse/replication/slave/storage/__init__.py
${PYSITELIB}/synapse/replication/slave/storage/__init__.pyc
${PYSITELIB}/synapse/replication/slave/storage/__init__.pyo
${PYSITELIB}/synapse/replication/slave/storage/_base.py
${PYSITELIB}/synapse/replication/slave/storage/_base.pyc
${PYSITELIB}/synapse/replication/slave/storage/_base.pyo
${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.py
${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyc
${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyo
${PYSITELIB}/synapse/replication/slave/storage/account_data.py
${PYSITELIB}/synapse/replication/slave/storage/account_data.pyc
${PYSITELIB}/synapse/replication/slave/storage/account_data.pyo
${PYSITELIB}/synapse/replication/slave/storage/appservice.py
${PYSITELIB}/synapse/replication/slave/storage/appservice.pyc
${PYSITELIB}/synapse/replication/slave/storage/appservice.pyo
${PYSITELIB}/synapse/replication/slave/storage/client_ips.py
${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyc
${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyo
${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.py
${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyc
${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyo
${PYSITELIB}/synapse/replication/slave/storage/devices.py
${PYSITELIB}/synapse/replication/slave/storage/devices.pyc
${PYSITELIB}/synapse/replication/slave/storage/devices.pyo
${PYSITELIB}/synapse/replication/slave/storage/directory.py
${PYSITELIB}/synapse/replication/slave/storage/directory.pyc
${PYSITELIB}/synapse/replication/slave/storage/directory.pyo
${PYSITELIB}/synapse/replication/slave/storage/events.py
${PYSITELIB}/synapse/replication/slave/storage/events.pyc
${PYSITELIB}/synapse/replication/slave/storage/events.pyo
${PYSITELIB}/synapse/replication/slave/storage/filtering.py
${PYSITELIB}/synapse/replication/slave/storage/filtering.pyc
${PYSITELIB}/synapse/replication/slave/storage/filtering.pyo
${PYSITELIB}/synapse/replication/slave/storage/groups.py
${PYSITELIB}/synapse/replication/slave/storage/groups.pyc
${PYSITELIB}/synapse/replication/slave/storage/groups.pyo
${PYSITELIB}/synapse/replication/slave/storage/keys.py
${PYSITELIB}/synapse/replication/slave/storage/keys.pyc
${PYSITELIB}/synapse/replication/slave/storage/keys.pyo
${PYSITELIB}/synapse/replication/slave/storage/profile.py
${PYSITELIB}/synapse/replication/slave/storage/profile.pyc
${PYSITELIB}/synapse/replication/slave/storage/profile.pyo
${PYSITELIB}/synapse/replication/slave/storage/push_rule.py
${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyc
${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyo
${PYSITELIB}/synapse/replication/slave/storage/pushers.py
${PYSITELIB}/synapse/replication/slave/storage/pushers.pyc
${PYSITELIB}/synapse/replication/slave/storage/pushers.pyo
${PYSITELIB}/synapse/replication/slave/storage/receipts.py
${PYSITELIB}/synapse/replication/slave/storage/receipts.pyc
${PYSITELIB}/synapse/replication/slave/storage/receipts.pyo
${PYSITELIB}/synapse/replication/slave/storage/registration.py
${PYSITELIB}/synapse/replication/slave/storage/registration.pyc
${PYSITELIB}/synapse/replication/slave/storage/registration.pyo
${PYSITELIB}/synapse/replication/tcp/__init__.py
${PYSITELIB}/synapse/replication/tcp/__init__.pyc
${PYSITELIB}/synapse/replication/tcp/__init__.pyo
${PYSITELIB}/synapse/replication/tcp/client.py
${PYSITELIB}/synapse/replication/tcp/client.pyc
${PYSITELIB}/synapse/replication/tcp/client.pyo
${PYSITELIB}/synapse/replication/tcp/commands.py
${PYSITELIB}/synapse/replication/tcp/commands.pyc
${PYSITELIB}/synapse/replication/tcp/commands.pyo
${PYSITELIB}/synapse/replication/tcp/external_cache.py
${PYSITELIB}/synapse/replication/tcp/external_cache.pyc
${PYSITELIB}/synapse/replication/tcp/external_cache.pyo
${PYSITELIB}/synapse/replication/tcp/handler.py
${PYSITELIB}/synapse/replication/tcp/handler.pyc
${PYSITELIB}/synapse/replication/tcp/handler.pyo
${PYSITELIB}/synapse/replication/tcp/protocol.py
${PYSITELIB}/synapse/replication/tcp/protocol.pyc
${PYSITELIB}/synapse/replication/tcp/protocol.pyo
${PYSITELIB}/synapse/replication/tcp/redis.py
${PYSITELIB}/synapse/replication/tcp/redis.pyc
${PYSITELIB}/synapse/replication/tcp/redis.pyo
${PYSITELIB}/synapse/replication/tcp/resource.py
${PYSITELIB}/synapse/replication/tcp/resource.pyc
${PYSITELIB}/synapse/replication/tcp/resource.pyo
${PYSITELIB}/synapse/replication/tcp/streams/__init__.py
${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyc
${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyo
${PYSITELIB}/synapse/replication/tcp/streams/_base.py
${PYSITELIB}/synapse/replication/tcp/streams/_base.pyc
${PYSITELIB}/synapse/replication/tcp/streams/_base.pyo
${PYSITELIB}/synapse/replication/tcp/streams/events.py
${PYSITELIB}/synapse/replication/tcp/streams/events.pyc
${PYSITELIB}/synapse/replication/tcp/streams/events.pyo
${PYSITELIB}/synapse/replication/tcp/streams/federation.py
${PYSITELIB}/synapse/replication/tcp/streams/federation.pyc
${PYSITELIB}/synapse/replication/tcp/streams/federation.pyo
${PYSITELIB}/synapse/res/templates/account_previously_renewed.html
${PYSITELIB}/synapse/res/templates/account_renewed.html
${PYSITELIB}/synapse/res/templates/add_threepid.html
${PYSITELIB}/synapse/res/templates/add_threepid.txt
${PYSITELIB}/synapse/res/templates/add_threepid_failure.html
${PYSITELIB}/synapse/res/templates/add_threepid_success.html
${PYSITELIB}/synapse/res/templates/auth_success.html
${PYSITELIB}/synapse/res/templates/invalid_token.html
${PYSITELIB}/synapse/res/templates/mail-Element.css
${PYSITELIB}/synapse/res/templates/mail-Vector.css
${PYSITELIB}/synapse/res/templates/mail-expiry.css
${PYSITELIB}/synapse/res/templates/mail.css
${PYSITELIB}/synapse/res/templates/notice_expiry.html
${PYSITELIB}/synapse/res/templates/notice_expiry.txt
${PYSITELIB}/synapse/res/templates/notif.html
${PYSITELIB}/synapse/res/templates/notif.txt
${PYSITELIB}/synapse/res/templates/notif_mail.html
${PYSITELIB}/synapse/res/templates/notif_mail.txt
${PYSITELIB}/synapse/res/templates/password_reset.html
${PYSITELIB}/synapse/res/templates/password_reset.txt
${PYSITELIB}/synapse/res/templates/password_reset_confirmation.html
${PYSITELIB}/synapse/res/templates/password_reset_failure.html
${PYSITELIB}/synapse/res/templates/password_reset_success.html
${PYSITELIB}/synapse/res/templates/recaptcha.html
${PYSITELIB}/synapse/res/templates/registration.html
${PYSITELIB}/synapse/res/templates/registration.txt
${PYSITELIB}/synapse/res/templates/registration_failure.html
${PYSITELIB}/synapse/res/templates/registration_success.html
${PYSITELIB}/synapse/res/templates/room.html
${PYSITELIB}/synapse/res/templates/room.txt
${PYSITELIB}/synapse/res/templates/sso.css
${PYSITELIB}/synapse/res/templates/sso_account_deactivated.html
${PYSITELIB}/synapse/res/templates/sso_auth_account_details.html
${PYSITELIB}/synapse/res/templates/sso_auth_account_details.js
${PYSITELIB}/synapse/res/templates/sso_auth_bad_user.html
${PYSITELIB}/synapse/res/templates/sso_auth_confirm.html
${PYSITELIB}/synapse/res/templates/sso_auth_success.html
${PYSITELIB}/synapse/res/templates/sso_error.html
${PYSITELIB}/synapse/res/templates/sso_footer.html
${PYSITELIB}/synapse/res/templates/sso_login_idp_picker.html
${PYSITELIB}/synapse/res/templates/sso_new_user_consent.html
${PYSITELIB}/synapse/res/templates/sso_partial_profile.html
${PYSITELIB}/synapse/res/templates/sso_redirect_confirm.html
${PYSITELIB}/synapse/res/templates/terms.html
${PYSITELIB}/synapse/rest/__init__.py
${PYSITELIB}/synapse/rest/__init__.pyc
${PYSITELIB}/synapse/rest/__init__.pyo
${PYSITELIB}/synapse/rest/admin/__init__.py
${PYSITELIB}/synapse/rest/admin/__init__.pyc
${PYSITELIB}/synapse/rest/admin/__init__.pyo
${PYSITELIB}/synapse/rest/admin/_base.py
${PYSITELIB}/synapse/rest/admin/_base.pyc
${PYSITELIB}/synapse/rest/admin/_base.pyo
${PYSITELIB}/synapse/rest/admin/devices.py
${PYSITELIB}/synapse/rest/admin/devices.pyc
${PYSITELIB}/synapse/rest/admin/devices.pyo
${PYSITELIB}/synapse/rest/admin/event_reports.py
${PYSITELIB}/synapse/rest/admin/event_reports.pyc
${PYSITELIB}/synapse/rest/admin/event_reports.pyo
${PYSITELIB}/synapse/rest/admin/groups.py
${PYSITELIB}/synapse/rest/admin/groups.pyc
${PYSITELIB}/synapse/rest/admin/groups.pyo
${PYSITELIB}/synapse/rest/admin/media.py
${PYSITELIB}/synapse/rest/admin/media.pyc
${PYSITELIB}/synapse/rest/admin/media.pyo
${PYSITELIB}/synapse/rest/admin/purge_room_servlet.py
${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyc
${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyo
${PYSITELIB}/synapse/rest/admin/rooms.py
${PYSITELIB}/synapse/rest/admin/rooms.pyc
${PYSITELIB}/synapse/rest/admin/rooms.pyo
${PYSITELIB}/synapse/rest/admin/server_notice_servlet.py
${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyc
${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyo
${PYSITELIB}/synapse/rest/admin/statistics.py
${PYSITELIB}/synapse/rest/admin/statistics.pyc
${PYSITELIB}/synapse/rest/admin/statistics.pyo
${PYSITELIB}/synapse/rest/admin/username_available.py
${PYSITELIB}/synapse/rest/admin/username_available.pyc
${PYSITELIB}/synapse/rest/admin/username_available.pyo
${PYSITELIB}/synapse/rest/admin/users.py
${PYSITELIB}/synapse/rest/admin/users.pyc
${PYSITELIB}/synapse/rest/admin/users.pyo
${PYSITELIB}/synapse/rest/client/__init__.py
${PYSITELIB}/synapse/rest/client/__init__.pyc
${PYSITELIB}/synapse/rest/client/__init__.pyo
${PYSITELIB}/synapse/rest/client/_base.py
${PYSITELIB}/synapse/rest/client/_base.pyc
${PYSITELIB}/synapse/rest/client/_base.pyo
${PYSITELIB}/synapse/rest/client/account.py
${PYSITELIB}/synapse/rest/client/account.pyc
${PYSITELIB}/synapse/rest/client/account.pyo
${PYSITELIB}/synapse/rest/client/account_data.py
${PYSITELIB}/synapse/rest/client/account_data.pyc
${PYSITELIB}/synapse/rest/client/account_data.pyo
${PYSITELIB}/synapse/rest/client/account_validity.py
${PYSITELIB}/synapse/rest/client/account_validity.pyc
${PYSITELIB}/synapse/rest/client/account_validity.pyo
${PYSITELIB}/synapse/rest/client/auth.py
${PYSITELIB}/synapse/rest/client/auth.pyc
${PYSITELIB}/synapse/rest/client/auth.pyo
${PYSITELIB}/synapse/rest/client/capabilities.py
${PYSITELIB}/synapse/rest/client/capabilities.pyc
${PYSITELIB}/synapse/rest/client/capabilities.pyo
${PYSITELIB}/synapse/rest/client/devices.py
${PYSITELIB}/synapse/rest/client/devices.pyc
${PYSITELIB}/synapse/rest/client/devices.pyo
${PYSITELIB}/synapse/rest/client/directory.py
${PYSITELIB}/synapse/rest/client/directory.pyc
${PYSITELIB}/synapse/rest/client/directory.pyo
${PYSITELIB}/synapse/rest/client/events.py
${PYSITELIB}/synapse/rest/client/events.pyc
${PYSITELIB}/synapse/rest/client/events.pyo
${PYSITELIB}/synapse/rest/client/filter.py
${PYSITELIB}/synapse/rest/client/filter.pyc
${PYSITELIB}/synapse/rest/client/filter.pyo
${PYSITELIB}/synapse/rest/client/groups.py
${PYSITELIB}/synapse/rest/client/groups.pyc
${PYSITELIB}/synapse/rest/client/groups.pyo
${PYSITELIB}/synapse/rest/client/initial_sync.py
${PYSITELIB}/synapse/rest/client/initial_sync.pyc
${PYSITELIB}/synapse/rest/client/initial_sync.pyo
${PYSITELIB}/synapse/rest/client/keys.py
${PYSITELIB}/synapse/rest/client/keys.pyc
${PYSITELIB}/synapse/rest/client/keys.pyo
${PYSITELIB}/synapse/rest/client/knock.py
${PYSITELIB}/synapse/rest/client/knock.pyc
${PYSITELIB}/synapse/rest/client/knock.pyo
${PYSITELIB}/synapse/rest/client/login.py
${PYSITELIB}/synapse/rest/client/login.pyc
${PYSITELIB}/synapse/rest/client/login.pyo
${PYSITELIB}/synapse/rest/client/logout.py
${PYSITELIB}/synapse/rest/client/logout.pyc
${PYSITELIB}/synapse/rest/client/logout.pyo
${PYSITELIB}/synapse/rest/client/notifications.py
${PYSITELIB}/synapse/rest/client/notifications.pyc
${PYSITELIB}/synapse/rest/client/notifications.pyo
${PYSITELIB}/synapse/rest/client/openid.py
${PYSITELIB}/synapse/rest/client/openid.pyc
${PYSITELIB}/synapse/rest/client/openid.pyo
${PYSITELIB}/synapse/rest/client/password_policy.py
${PYSITELIB}/synapse/rest/client/password_policy.pyc
${PYSITELIB}/synapse/rest/client/password_policy.pyo
${PYSITELIB}/synapse/rest/client/presence.py
${PYSITELIB}/synapse/rest/client/presence.pyc
${PYSITELIB}/synapse/rest/client/presence.pyo
${PYSITELIB}/synapse/rest/client/profile.py
${PYSITELIB}/synapse/rest/client/profile.pyc
${PYSITELIB}/synapse/rest/client/profile.pyo
${PYSITELIB}/synapse/rest/client/push_rule.py
${PYSITELIB}/synapse/rest/client/push_rule.pyc
${PYSITELIB}/synapse/rest/client/push_rule.pyo
${PYSITELIB}/synapse/rest/client/pusher.py
${PYSITELIB}/synapse/rest/client/pusher.pyc
${PYSITELIB}/synapse/rest/client/pusher.pyo
${PYSITELIB}/synapse/rest/client/read_marker.py
${PYSITELIB}/synapse/rest/client/read_marker.pyc
${PYSITELIB}/synapse/rest/client/read_marker.pyo
${PYSITELIB}/synapse/rest/client/receipts.py
${PYSITELIB}/synapse/rest/client/receipts.pyc
${PYSITELIB}/synapse/rest/client/receipts.pyo
${PYSITELIB}/synapse/rest/client/register.py
${PYSITELIB}/synapse/rest/client/register.pyc
${PYSITELIB}/synapse/rest/client/register.pyo
${PYSITELIB}/synapse/rest/client/relations.py
${PYSITELIB}/synapse/rest/client/relations.pyc
${PYSITELIB}/synapse/rest/client/relations.pyo
${PYSITELIB}/synapse/rest/client/report_event.py
${PYSITELIB}/synapse/rest/client/report_event.pyc
${PYSITELIB}/synapse/rest/client/report_event.pyo
${PYSITELIB}/synapse/rest/client/room.py
${PYSITELIB}/synapse/rest/client/room.pyc
${PYSITELIB}/synapse/rest/client/room.pyo
${PYSITELIB}/synapse/rest/client/room_batch.py
${PYSITELIB}/synapse/rest/client/room_batch.pyc
${PYSITELIB}/synapse/rest/client/room_batch.pyo
${PYSITELIB}/synapse/rest/client/room_keys.py
${PYSITELIB}/synapse/rest/client/room_keys.pyc
${PYSITELIB}/synapse/rest/client/room_keys.pyo
${PYSITELIB}/synapse/rest/client/room_upgrade_rest_servlet.py
${PYSITELIB}/synapse/rest/client/room_upgrade_rest_servlet.pyc
${PYSITELIB}/synapse/rest/client/room_upgrade_rest_servlet.pyo
${PYSITELIB}/synapse/rest/client/sendtodevice.py
${PYSITELIB}/synapse/rest/client/sendtodevice.pyc
${PYSITELIB}/synapse/rest/client/sendtodevice.pyo
${PYSITELIB}/synapse/rest/client/shared_rooms.py
${PYSITELIB}/synapse/rest/client/shared_rooms.pyc
${PYSITELIB}/synapse/rest/client/shared_rooms.pyo
${PYSITELIB}/synapse/rest/client/sync.py
${PYSITELIB}/synapse/rest/client/sync.pyc
${PYSITELIB}/synapse/rest/client/sync.pyo
${PYSITELIB}/synapse/rest/client/tags.py
${PYSITELIB}/synapse/rest/client/tags.pyc
${PYSITELIB}/synapse/rest/client/tags.pyo
${PYSITELIB}/synapse/rest/client/thirdparty.py
${PYSITELIB}/synapse/rest/client/thirdparty.pyc
${PYSITELIB}/synapse/rest/client/thirdparty.pyo
${PYSITELIB}/synapse/rest/client/tokenrefresh.py
${PYSITELIB}/synapse/rest/client/tokenrefresh.pyc
${PYSITELIB}/synapse/rest/client/tokenrefresh.pyo
${PYSITELIB}/synapse/rest/client/transactions.py
${PYSITELIB}/synapse/rest/client/transactions.pyc
${PYSITELIB}/synapse/rest/client/transactions.pyo
${PYSITELIB}/synapse/rest/client/user_directory.py
${PYSITELIB}/synapse/rest/client/user_directory.pyc
${PYSITELIB}/synapse/rest/client/user_directory.pyo
${PYSITELIB}/synapse/rest/client/versions.py
${PYSITELIB}/synapse/rest/client/versions.pyc
${PYSITELIB}/synapse/rest/client/versions.pyo
${PYSITELIB}/synapse/rest/client/voip.py
${PYSITELIB}/synapse/rest/client/voip.pyc
${PYSITELIB}/synapse/rest/client/voip.pyo
${PYSITELIB}/synapse/rest/consent/__init__.py
${PYSITELIB}/synapse/rest/consent/__init__.pyc
${PYSITELIB}/synapse/rest/consent/__init__.pyo
${PYSITELIB}/synapse/rest/consent/consent_resource.py
${PYSITELIB}/synapse/rest/consent/consent_resource.pyc
${PYSITELIB}/synapse/rest/consent/consent_resource.pyo
${PYSITELIB}/synapse/rest/health.py
${PYSITELIB}/synapse/rest/health.pyc
${PYSITELIB}/synapse/rest/health.pyo
${PYSITELIB}/synapse/rest/key/__init__.py
${PYSITELIB}/synapse/rest/key/__init__.pyc
${PYSITELIB}/synapse/rest/key/__init__.pyo
${PYSITELIB}/synapse/rest/key/v2/__init__.py
${PYSITELIB}/synapse/rest/key/v2/__init__.pyc
${PYSITELIB}/synapse/rest/key/v2/__init__.pyo
${PYSITELIB}/synapse/rest/key/v2/local_key_resource.py
${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyc
${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyo
${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.py
${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyc
${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyo
${PYSITELIB}/synapse/rest/media/__init__.py
${PYSITELIB}/synapse/rest/media/__init__.pyc
${PYSITELIB}/synapse/rest/media/__init__.pyo
${PYSITELIB}/synapse/rest/media/v1/__init__.py
${PYSITELIB}/synapse/rest/media/v1/__init__.pyc
${PYSITELIB}/synapse/rest/media/v1/__init__.pyo
${PYSITELIB}/synapse/rest/media/v1/_base.py
${PYSITELIB}/synapse/rest/media/v1/_base.pyc
${PYSITELIB}/synapse/rest/media/v1/_base.pyo
${PYSITELIB}/synapse/rest/media/v1/config_resource.py
${PYSITELIB}/synapse/rest/media/v1/config_resource.pyc
${PYSITELIB}/synapse/rest/media/v1/config_resource.pyo
${PYSITELIB}/synapse/rest/media/v1/download_resource.py
${PYSITELIB}/synapse/rest/media/v1/download_resource.pyc
${PYSITELIB}/synapse/rest/media/v1/download_resource.pyo
${PYSITELIB}/synapse/rest/media/v1/filepath.py
${PYSITELIB}/synapse/rest/media/v1/filepath.pyc
${PYSITELIB}/synapse/rest/media/v1/filepath.pyo
${PYSITELIB}/synapse/rest/media/v1/media_repository.py
${PYSITELIB}/synapse/rest/media/v1/media_repository.pyc
${PYSITELIB}/synapse/rest/media/v1/media_repository.pyo
${PYSITELIB}/synapse/rest/media/v1/media_storage.py
${PYSITELIB}/synapse/rest/media/v1/media_storage.pyc
${PYSITELIB}/synapse/rest/media/v1/media_storage.pyo
${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.py
${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyc
${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyo
${PYSITELIB}/synapse/rest/media/v1/storage_provider.py
${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyc
${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyo
${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.py
${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyc
${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyo
${PYSITELIB}/synapse/rest/media/v1/thumbnailer.py
${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyc
${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyo
${PYSITELIB}/synapse/rest/media/v1/upload_resource.py
${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyc
${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyo
${PYSITELIB}/synapse/rest/synapse/__init__.py
${PYSITELIB}/synapse/rest/synapse/__init__.pyc
${PYSITELIB}/synapse/rest/synapse/__init__.pyo
${PYSITELIB}/synapse/rest/synapse/client/__init__.py
${PYSITELIB}/synapse/rest/synapse/client/__init__.pyc
${PYSITELIB}/synapse/rest/synapse/client/__init__.pyo
${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.py
${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyc
${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyo
${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.py
${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyc
${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyo
${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.py
${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyc
${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyo
${PYSITELIB}/synapse/rest/synapse/client/password_reset.py
${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyc
${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyo
${PYSITELIB}/synapse/rest/synapse/client/pick_idp.py
${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyc
${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyo
${PYSITELIB}/synapse/rest/synapse/client/pick_username.py
${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyc
${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyo
${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.py
${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyc
${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyo
${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.py
${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyc
${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyo
${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.py
${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyc
${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyo
${PYSITELIB}/synapse/rest/synapse/client/sso_register.py
${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyc
${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyo
${PYSITELIB}/synapse/rest/well_known.py
${PYSITELIB}/synapse/rest/well_known.pyc
${PYSITELIB}/synapse/rest/well_known.pyo
${PYSITELIB}/synapse/server.py
${PYSITELIB}/synapse/server.pyc
${PYSITELIB}/synapse/server.pyo
${PYSITELIB}/synapse/server_notices/__init__.py
${PYSITELIB}/synapse/server_notices/__init__.pyc
${PYSITELIB}/synapse/server_notices/__init__.pyo
${PYSITELIB}/synapse/server_notices/consent_server_notices.py
${PYSITELIB}/synapse/server_notices/consent_server_notices.pyc
${PYSITELIB}/synapse/server_notices/consent_server_notices.pyo
${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.py
${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyc
${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyo
${PYSITELIB}/synapse/server_notices/server_notices_manager.py
${PYSITELIB}/synapse/server_notices/server_notices_manager.pyc
${PYSITELIB}/synapse/server_notices/server_notices_manager.pyo
${PYSITELIB}/synapse/server_notices/server_notices_sender.py
${PYSITELIB}/synapse/server_notices/server_notices_sender.pyc
${PYSITELIB}/synapse/server_notices/server_notices_sender.pyo
${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.py
${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyc
${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyo
${PYSITELIB}/synapse/spam_checker_api/__init__.py
${PYSITELIB}/synapse/spam_checker_api/__init__.pyc
${PYSITELIB}/synapse/spam_checker_api/__init__.pyo
${PYSITELIB}/synapse/state/__init__.py
${PYSITELIB}/synapse/state/__init__.pyc
${PYSITELIB}/synapse/state/__init__.pyo
${PYSITELIB}/synapse/state/v1.py
${PYSITELIB}/synapse/state/v1.pyc
${PYSITELIB}/synapse/state/v1.pyo
${PYSITELIB}/synapse/state/v2.py
${PYSITELIB}/synapse/state/v2.pyc
${PYSITELIB}/synapse/state/v2.pyo
${PYSITELIB}/synapse/static/client/login/index.html
${PYSITELIB}/synapse/static/client/login/js/jquery-3.4.1.min.js
${PYSITELIB}/synapse/static/client/login/js/login.js
${PYSITELIB}/synapse/static/client/login/spinner.gif
${PYSITELIB}/synapse/static/client/login/style.css
${PYSITELIB}/synapse/static/client/register/index.html
${PYSITELIB}/synapse/static/client/register/js/jquery-3.4.1.min.js
${PYSITELIB}/synapse/static/client/register/js/register.js
${PYSITELIB}/synapse/static/client/register/register_config.sample.js
${PYSITELIB}/synapse/static/client/register/style.css
${PYSITELIB}/synapse/static/index.html
${PYSITELIB}/synapse/storage/__init__.py
${PYSITELIB}/synapse/storage/__init__.pyc
${PYSITELIB}/synapse/storage/__init__.pyo
${PYSITELIB}/synapse/storage/_base.py
${PYSITELIB}/synapse/storage/_base.pyc
${PYSITELIB}/synapse/storage/_base.pyo
${PYSITELIB}/synapse/storage/background_updates.py
${PYSITELIB}/synapse/storage/background_updates.pyc
${PYSITELIB}/synapse/storage/background_updates.pyo
${PYSITELIB}/synapse/storage/database.py
${PYSITELIB}/synapse/storage/database.pyc
${PYSITELIB}/synapse/storage/database.pyo
${PYSITELIB}/synapse/storage/databases/__init__.py
${PYSITELIB}/synapse/storage/databases/__init__.pyc
${PYSITELIB}/synapse/storage/databases/__init__.pyo
${PYSITELIB}/synapse/storage/databases/main/__init__.py
${PYSITELIB}/synapse/storage/databases/main/__init__.pyc
${PYSITELIB}/synapse/storage/databases/main/__init__.pyo
${PYSITELIB}/synapse/storage/databases/main/account_data.py
${PYSITELIB}/synapse/storage/databases/main/account_data.pyc
${PYSITELIB}/synapse/storage/databases/main/account_data.pyo
${PYSITELIB}/synapse/storage/databases/main/appservice.py
${PYSITELIB}/synapse/storage/databases/main/appservice.pyc
${PYSITELIB}/synapse/storage/databases/main/appservice.pyo
${PYSITELIB}/synapse/storage/databases/main/cache.py
${PYSITELIB}/synapse/storage/databases/main/cache.pyc
${PYSITELIB}/synapse/storage/databases/main/cache.pyo
${PYSITELIB}/synapse/storage/databases/main/censor_events.py
${PYSITELIB}/synapse/storage/databases/main/censor_events.pyc
${PYSITELIB}/synapse/storage/databases/main/censor_events.pyo
${PYSITELIB}/synapse/storage/databases/main/client_ips.py
${PYSITELIB}/synapse/storage/databases/main/client_ips.pyc
${PYSITELIB}/synapse/storage/databases/main/client_ips.pyo
${PYSITELIB}/synapse/storage/databases/main/deviceinbox.py
${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyc
${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyo
${PYSITELIB}/synapse/storage/databases/main/devices.py
${PYSITELIB}/synapse/storage/databases/main/devices.pyc
${PYSITELIB}/synapse/storage/databases/main/devices.pyo
${PYSITELIB}/synapse/storage/databases/main/directory.py
${PYSITELIB}/synapse/storage/databases/main/directory.pyc
${PYSITELIB}/synapse/storage/databases/main/directory.pyo
${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.py
${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyc
${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyo
${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.py
${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyc
${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyo
${PYSITELIB}/synapse/storage/databases/main/event_federation.py
${PYSITELIB}/synapse/storage/databases/main/event_federation.pyc
${PYSITELIB}/synapse/storage/databases/main/event_federation.pyo
${PYSITELIB}/synapse/storage/databases/main/event_push_actions.py
${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyc
${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyo
${PYSITELIB}/synapse/storage/databases/main/events.py
${PYSITELIB}/synapse/storage/databases/main/events.pyc
${PYSITELIB}/synapse/storage/databases/main/events.pyo
${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.py
${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyc
${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyo
${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.py
${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyc
${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyo
${PYSITELIB}/synapse/storage/databases/main/events_worker.py
${PYSITELIB}/synapse/storage/databases/main/events_worker.pyc
${PYSITELIB}/synapse/storage/databases/main/events_worker.pyo
${PYSITELIB}/synapse/storage/databases/main/filtering.py
${PYSITELIB}/synapse/storage/databases/main/filtering.pyc
${PYSITELIB}/synapse/storage/databases/main/filtering.pyo
${PYSITELIB}/synapse/storage/databases/main/group_server.py
${PYSITELIB}/synapse/storage/databases/main/group_server.pyc
${PYSITELIB}/synapse/storage/databases/main/group_server.pyo
${PYSITELIB}/synapse/storage/databases/main/keys.py
${PYSITELIB}/synapse/storage/databases/main/keys.pyc
${PYSITELIB}/synapse/storage/databases/main/keys.pyo
${PYSITELIB}/synapse/storage/databases/main/lock.py
${PYSITELIB}/synapse/storage/databases/main/lock.pyc
${PYSITELIB}/synapse/storage/databases/main/lock.pyo
${PYSITELIB}/synapse/storage/databases/main/media_repository.py
${PYSITELIB}/synapse/storage/databases/main/media_repository.pyc
${PYSITELIB}/synapse/storage/databases/main/media_repository.pyo
${PYSITELIB}/synapse/storage/databases/main/metrics.py
${PYSITELIB}/synapse/storage/databases/main/metrics.pyc
${PYSITELIB}/synapse/storage/databases/main/metrics.pyo
${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.py
${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyc
${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyo
${PYSITELIB}/synapse/storage/databases/main/openid.py
${PYSITELIB}/synapse/storage/databases/main/openid.pyc
${PYSITELIB}/synapse/storage/databases/main/openid.pyo
${PYSITELIB}/synapse/storage/databases/main/presence.py
${PYSITELIB}/synapse/storage/databases/main/presence.pyc
${PYSITELIB}/synapse/storage/databases/main/presence.pyo
${PYSITELIB}/synapse/storage/databases/main/profile.py
${PYSITELIB}/synapse/storage/databases/main/profile.pyc
${PYSITELIB}/synapse/storage/databases/main/profile.pyo
${PYSITELIB}/synapse/storage/databases/main/purge_events.py
${PYSITELIB}/synapse/storage/databases/main/purge_events.pyc
${PYSITELIB}/synapse/storage/databases/main/purge_events.pyo
${PYSITELIB}/synapse/storage/databases/main/push_rule.py
${PYSITELIB}/synapse/storage/databases/main/push_rule.pyc
${PYSITELIB}/synapse/storage/databases/main/push_rule.pyo
${PYSITELIB}/synapse/storage/databases/main/pusher.py
${PYSITELIB}/synapse/storage/databases/main/pusher.pyc
${PYSITELIB}/synapse/storage/databases/main/pusher.pyo
${PYSITELIB}/synapse/storage/databases/main/receipts.py
${PYSITELIB}/synapse/storage/databases/main/receipts.pyc
${PYSITELIB}/synapse/storage/databases/main/receipts.pyo
${PYSITELIB}/synapse/storage/databases/main/registration.py
${PYSITELIB}/synapse/storage/databases/main/registration.pyc
${PYSITELIB}/synapse/storage/databases/main/registration.pyo
${PYSITELIB}/synapse/storage/databases/main/rejections.py
${PYSITELIB}/synapse/storage/databases/main/rejections.pyc
${PYSITELIB}/synapse/storage/databases/main/rejections.pyo
${PYSITELIB}/synapse/storage/databases/main/relations.py
${PYSITELIB}/synapse/storage/databases/main/relations.pyc
${PYSITELIB}/synapse/storage/databases/main/relations.pyo
${PYSITELIB}/synapse/storage/databases/main/room.py
${PYSITELIB}/synapse/storage/databases/main/room.pyc
${PYSITELIB}/synapse/storage/databases/main/room.pyo
${PYSITELIB}/synapse/storage/databases/main/roommember.py
${PYSITELIB}/synapse/storage/databases/main/roommember.pyc
${PYSITELIB}/synapse/storage/databases/main/roommember.pyo
${PYSITELIB}/synapse/storage/databases/main/search.py
${PYSITELIB}/synapse/storage/databases/main/search.pyc
${PYSITELIB}/synapse/storage/databases/main/search.pyo
${PYSITELIB}/synapse/storage/databases/main/signatures.py
${PYSITELIB}/synapse/storage/databases/main/signatures.pyc
${PYSITELIB}/synapse/storage/databases/main/signatures.pyo
${PYSITELIB}/synapse/storage/databases/main/state.py
${PYSITELIB}/synapse/storage/databases/main/state.pyc
${PYSITELIB}/synapse/storage/databases/main/state.pyo
${PYSITELIB}/synapse/storage/databases/main/state_deltas.py
${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyc
${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyo
${PYSITELIB}/synapse/storage/databases/main/stats.py
${PYSITELIB}/synapse/storage/databases/main/stats.pyc
${PYSITELIB}/synapse/storage/databases/main/stats.pyo
${PYSITELIB}/synapse/storage/databases/main/stream.py
${PYSITELIB}/synapse/storage/databases/main/stream.pyc
${PYSITELIB}/synapse/storage/databases/main/stream.pyo
${PYSITELIB}/synapse/storage/databases/main/tags.py
${PYSITELIB}/synapse/storage/databases/main/tags.pyc
${PYSITELIB}/synapse/storage/databases/main/tags.pyo
${PYSITELIB}/synapse/storage/databases/main/transactions.py
${PYSITELIB}/synapse/storage/databases/main/transactions.pyc
${PYSITELIB}/synapse/storage/databases/main/transactions.pyo
${PYSITELIB}/synapse/storage/databases/main/ui_auth.py
${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyc
${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyo
${PYSITELIB}/synapse/storage/databases/main/user_directory.py
${PYSITELIB}/synapse/storage/databases/main/user_directory.pyc
${PYSITELIB}/synapse/storage/databases/main/user_directory.pyo
${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.py
${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyc
${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyo
${PYSITELIB}/synapse/storage/databases/state/__init__.py
${PYSITELIB}/synapse/storage/databases/state/__init__.pyc
${PYSITELIB}/synapse/storage/databases/state/__init__.pyo
${PYSITELIB}/synapse/storage/databases/state/bg_updates.py
${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyc
${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyo
${PYSITELIB}/synapse/storage/databases/state/store.py
${PYSITELIB}/synapse/storage/databases/state/store.pyc
${PYSITELIB}/synapse/storage/databases/state/store.pyo
${PYSITELIB}/synapse/storage/engines/__init__.py
${PYSITELIB}/synapse/storage/engines/__init__.pyc
${PYSITELIB}/synapse/storage/engines/__init__.pyo
${PYSITELIB}/synapse/storage/engines/_base.py
${PYSITELIB}/synapse/storage/engines/_base.pyc
${PYSITELIB}/synapse/storage/engines/_base.pyo
${PYSITELIB}/synapse/storage/engines/postgres.py
${PYSITELIB}/synapse/storage/engines/postgres.pyc
${PYSITELIB}/synapse/storage/engines/postgres.pyo
${PYSITELIB}/synapse/storage/engines/sqlite.py
${PYSITELIB}/synapse/storage/engines/sqlite.pyc
${PYSITELIB}/synapse/storage/engines/sqlite.pyo
${PYSITELIB}/synapse/storage/keys.py
${PYSITELIB}/synapse/storage/keys.pyc
${PYSITELIB}/synapse/storage/keys.pyo
${PYSITELIB}/synapse/storage/persist_events.py
${PYSITELIB}/synapse/storage/persist_events.pyc
${PYSITELIB}/synapse/storage/persist_events.pyo
${PYSITELIB}/synapse/storage/prepare_database.py
${PYSITELIB}/synapse/storage/prepare_database.pyc
${PYSITELIB}/synapse/storage/prepare_database.pyo
${PYSITELIB}/synapse/storage/purge_events.py
${PYSITELIB}/synapse/storage/purge_events.pyc
${PYSITELIB}/synapse/storage/purge_events.pyo
${PYSITELIB}/synapse/storage/push_rule.py
${PYSITELIB}/synapse/storage/push_rule.pyc
${PYSITELIB}/synapse/storage/push_rule.pyo
${PYSITELIB}/synapse/storage/relations.py
${PYSITELIB}/synapse/storage/relations.pyc
${PYSITELIB}/synapse/storage/relations.pyo
${PYSITELIB}/synapse/storage/roommember.py
${PYSITELIB}/synapse/storage/roommember.pyc
${PYSITELIB}/synapse/storage/roommember.pyo
${PYSITELIB}/synapse/storage/schema/README.md
${PYSITELIB}/synapse/storage/schema/__init__.py
${PYSITELIB}/synapse/storage/schema/__init__.pyc
${PYSITELIB}/synapse/storage/schema/__init__.pyo
${PYSITELIB}/synapse/storage/schema/common/delta/25/00background_updates.sql
${PYSITELIB}/synapse/storage/schema/common/delta/35/00background_updates_add_col.sql
${PYSITELIB}/synapse/storage/schema/common/delta/58/00background_update_ordering.sql
${PYSITELIB}/synapse/storage/schema/common/full_schemas/54/full.sql
${PYSITELIB}/synapse/storage/schema/common/schema_version.sql
${PYSITELIB}/synapse/storage/schema/main/delta/12/v12.sql
${PYSITELIB}/synapse/storage/schema/main/delta/13/v13.sql
${PYSITELIB}/synapse/storage/schema/main/delta/14/v14.sql
${PYSITELIB}/synapse/storage/schema/main/delta/15/appservice_txns.sql
${PYSITELIB}/synapse/storage/schema/main/delta/15/presence_indices.sql
${PYSITELIB}/synapse/storage/schema/main/delta/15/v15.sql
${PYSITELIB}/synapse/storage/schema/main/delta/16/events_order_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/16/remote_media_cache_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/16/remove_duplicates.sql
${PYSITELIB}/synapse/storage/schema/main/delta/16/room_alias_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/16/unique_constraints.sql
${PYSITELIB}/synapse/storage/schema/main/delta/16/users.sql
${PYSITELIB}/synapse/storage/schema/main/delta/17/drop_indexes.sql
${PYSITELIB}/synapse/storage/schema/main/delta/17/server_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/17/user_threepids.sql
${PYSITELIB}/synapse/storage/schema/main/delta/18/server_keys_bigger_ints.sql
${PYSITELIB}/synapse/storage/schema/main/delta/19/event_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/20/dummy.sql
${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.py
${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/21/end_to_end_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/21/receipts.sql
${PYSITELIB}/synapse/storage/schema/main/delta/22/receipts_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/22/user_threepids_unique.sql
${PYSITELIB}/synapse/storage/schema/main/delta/24/stats_reporting.sql
${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.py
${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/25/guest_access.sql
${PYSITELIB}/synapse/storage/schema/main/delta/25/history_visibility.sql
${PYSITELIB}/synapse/storage/schema/main/delta/25/tags.sql
${PYSITELIB}/synapse/storage/schema/main/delta/26/account_data.sql
${PYSITELIB}/synapse/storage/schema/main/delta/27/account_data.sql
${PYSITELIB}/synapse/storage/schema/main/delta/27/forgotten_memberships.sql
${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.py
${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/28/event_push_actions.sql
${PYSITELIB}/synapse/storage/schema/main/delta/28/events_room_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/28/public_roms_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/28/receipts_user_id_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/28/upgrade_times.sql
${PYSITELIB}/synapse/storage/schema/main/delta/28/users_is_guest.sql
${PYSITELIB}/synapse/storage/schema/main/delta/29/push_actions.sql
${PYSITELIB}/synapse/storage/schema/main/delta/30/alias_creator.sql
${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.py
${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/30/deleted_pushers.sql
${PYSITELIB}/synapse/storage/schema/main/delta/30/presence_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/30/public_rooms.sql
${PYSITELIB}/synapse/storage/schema/main/delta/30/push_rule_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/30/threepid_guest_access_tokens.sql
${PYSITELIB}/synapse/storage/schema/main/delta/31/invites.sql
${PYSITELIB}/synapse/storage/schema/main/delta/31/local_media_repository_url_cache.sql
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.py
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.py
${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/32/events.sql
${PYSITELIB}/synapse/storage/schema/main/delta/32/openid.sql
${PYSITELIB}/synapse/storage/schema/main/delta/32/pusher_throttle.sql
${PYSITELIB}/synapse/storage/schema/main/delta/32/remove_indices.sql
${PYSITELIB}/synapse/storage/schema/main/delta/32/reports.sql
${PYSITELIB}/synapse/storage/schema/main/delta/33/access_tokens_device_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/33/devices.sql
${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys_clear_unknown_device.sql
${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.py
${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.py
${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/33/user_ips_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/34/appservice_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.py
${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/34/device_inbox.sql
${PYSITELIB}/synapse/storage/schema/main/delta/34/push_display_name_rename.sql
${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.py
${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/35/contains_url.sql
${PYSITELIB}/synapse/storage/schema/main/delta/35/device_outbox.sql
${PYSITELIB}/synapse/storage/schema/main/delta/35/device_stream_id.sql
${PYSITELIB}/synapse/storage/schema/main/delta/35/event_push_actions_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/35/public_room_list_change_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/35/stream_order_to_extrem.sql
${PYSITELIB}/synapse/storage/schema/main/delta/36/readd_public_rooms.sql
${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.py
${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/37/user_threepids.sql
${PYSITELIB}/synapse/storage/schema/main/delta/38/postgres_fts_gist.sql
${PYSITELIB}/synapse/storage/schema/main/delta/39/appservice_room_list.sql
${PYSITELIB}/synapse/storage/schema/main/delta/39/device_federation_stream_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/39/event_push_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/39/federation_out_position.sql
${PYSITELIB}/synapse/storage/schema/main/delta/39/membership_profile.sql
${PYSITELIB}/synapse/storage/schema/main/delta/40/current_state_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/40/device_inbox.sql
${PYSITELIB}/synapse/storage/schema/main/delta/40/device_list_streams.sql
${PYSITELIB}/synapse/storage/schema/main/delta/40/event_push_summary.sql
${PYSITELIB}/synapse/storage/schema/main/delta/40/pushers.sql
${PYSITELIB}/synapse/storage/schema/main/delta/41/device_list_stream_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/41/device_outbound_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/41/event_search_event_id_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/41/ratelimit.sql
${PYSITELIB}/synapse/storage/schema/main/delta/42/current_state_delta.sql
${PYSITELIB}/synapse/storage/schema/main/delta/42/device_list_last_id.sql
${PYSITELIB}/synapse/storage/schema/main/delta/42/event_auth_state_only.sql
${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.py
${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/43/blocked_rooms.sql
${PYSITELIB}/synapse/storage/schema/main/delta/43/quarantine_media.sql
${PYSITELIB}/synapse/storage/schema/main/delta/43/url_cache.sql
${PYSITELIB}/synapse/storage/schema/main/delta/43/user_share.sql
${PYSITELIB}/synapse/storage/schema/main/delta/44/expire_url_cache.sql
${PYSITELIB}/synapse/storage/schema/main/delta/45/group_server.sql
${PYSITELIB}/synapse/storage/schema/main/delta/45/profile_cache.sql
${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_refresh_tokens.sql
${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_unique_deleted_pushers.sql
${PYSITELIB}/synapse/storage/schema/main/delta/46/group_server.sql
${PYSITELIB}/synapse/storage/schema/main/delta/46/local_media_repository_url_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_null_room_ids.sql
${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_typos.sql
${PYSITELIB}/synapse/storage/schema/main/delta/47/last_access_media.sql
${PYSITELIB}/synapse/storage/schema/main/delta/47/postgres_fts_gin.sql
${PYSITELIB}/synapse/storage/schema/main/delta/47/push_actions_staging.sql
${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_consent.sql
${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_ips_last_seen_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/48/deactivated_users.sql
${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.py
${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/48/groups_joinable.sql
${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_consent_server_notice_sent.sql
${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_daily_visits.sql
${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_ips_last_seen_only_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/50/add_creation_ts_users_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/50/erasure_store.sql
${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.py
${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/51/e2e_room_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/51/monthly_active_users.sql
${PYSITELIB}/synapse/storage/schema/main/delta/52/add_event_to_state_group_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/52/device_list_streams_unique_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/52/e2e_room_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/add_user_type_to_users.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/drop_sent_transactions.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/event_format_version.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_dir_populate.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_ips_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_share.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_threepid_id.sql
${PYSITELIB}/synapse/storage/schema/main/delta/53/users_in_public_rooms.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/account_validity_with_renewal.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/add_validity_to_server_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/delete_forward_extremities.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_legacy_tables.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_presence_list.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/relations.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/stats.sql
${PYSITELIB}/synapse/storage/schema/main/delta/54/stats2.sql
${PYSITELIB}/synapse/storage/schema/main/delta/55/access_token_expiry.sql
${PYSITELIB}/synapse/storage/schema/main/delta/55/track_threepid_validations.sql
${PYSITELIB}/synapse/storage/schema/main/delta/55/users_alter_deactivated.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/add_spans_to_device_lists.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership_mk2.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/delete_keys_from_deleted_backups.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_failure_ts.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_retry_interval_type.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/56/device_stream_id_insert.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/devices_last_seen.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/drop_unused_event_tables.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/event_expiry.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels_background_update.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/fix_room_keys_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices_fix.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/delta/56/nuke_empty_communities_from_db.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/public_room_list_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor2.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor3_fix_update.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor4.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/remove_tombstoned_rooms_from_directory.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/room_key_etag.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/room_membership_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/room_retention.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys_nonunique_signatures.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/stats_separated.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.py
${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/56/user_external_ids.sql
${PYSITELIB}/synapse/storage/schema/main/delta/56/users_in_public_rooms_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/57/delete_old_current_state_events.sql
${PYSITELIB}/synapse/storage/schema/main/delta/57/device_list_remote_cache_stale.sql
${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.py
${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/57/remove_sent_outbound_pokes.sql
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column.sql
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/delta/58/02remove_dup_outbound_pokes.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/03persist_ui_auth.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/05cache_instance.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.py
${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/delta/58/07persist_ui_auth_ips.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/delta/58/09shadow_ban.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/10_pushrules_enabled_delete_obsolete.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/10drop_local_rejections_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/10federation_pos_instance_name.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/11dehydration.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/11fallback.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.py
${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/58/12room_stats.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/13remove_presence_allow_inbound.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/58/15_catchup_destination_rooms.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/15unread_count.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/16populate_stats_process_rooms_fix.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/17_catchup_last_successful.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/18stream_positions.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/19instance_map.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/58/19txn_id.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/20instance_name_event_tables.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/20user_daily_visits.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/21as_device_stream.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/21drop_device_max_stream_id.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/22puppet_token.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/22users_have_local_media.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/23e2e_cross_signing_keys_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/24drop_event_json_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/25user_external_ids_user_id_idx.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/26access_token_last_validated.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/27local_invites.sql
${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.py
${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/59/02shard_send_to_device.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/03shard_send_to_device_sequence.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/59/04drop_account_data.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/05cache_invalidation.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/06chain_cover_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/59/07shard_account_data_fix.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_pushers_for_deactivated_accounts.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_stale_pushers.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/09rejected_events_metadata.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/10delete_purged_chain_cover.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/11add_knock_members_to_stats.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/11drop_thumbnail_constraint.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/59/12account_validity_token_used_ts_ms.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance_seq.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/59/13users_to_send_full_presence_to.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/14refresh_tokens.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/15locks.sql
${PYSITELIB}/synapse/storage/schema/main/delta/59/16federation_inbound_staging.sql
${PYSITELIB}/synapse/storage/schema/main/delta/60/01recreate_stream_ordering.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/60/02change_stream_ordering_columns.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/61/01change_appservices_txns.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/delta/61/01insertion_event_lookups.sql
${PYSITELIB}/synapse/storage/schema/main/delta/61/02drop_redundant_room_depth_index.sql
${PYSITELIB}/synapse/storage/schema/main/delta/61/03recreate_min_depth.py
${PYSITELIB}/synapse/storage/schema/main/delta/61/03recreate_min_depth.pyc
${PYSITELIB}/synapse/storage/schema/main/delta/61/03recreate_min_depth.pyo
${PYSITELIB}/synapse/storage/schema/main/delta/62/01insertion_event_extremities.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/application_services.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_edges.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_signatures.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/im.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/keys.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/media_repository.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/presence.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/profiles.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/push.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/redactions.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/room_aliases.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/state.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/transactions.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/users.sql
${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.postgres
${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.sqlite
${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/stream_positions.sql
${PYSITELIB}/synapse/storage/schema/state/delta/23/drop_state_index.sql
${PYSITELIB}/synapse/storage/schema/state/delta/30/state_stream.sql
${PYSITELIB}/synapse/storage/schema/state/delta/32/remove_state_indices.sql
${PYSITELIB}/synapse/storage/schema/state/delta/35/add_state_index.sql
${PYSITELIB}/synapse/storage/schema/state/delta/35/state.sql
${PYSITELIB}/synapse/storage/schema/state/delta/35/state_dedupe.sql
${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.py
${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyc
${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyo
${PYSITELIB}/synapse/storage/schema/state/delta/56/state_group_room_idx.sql
${PYSITELIB}/synapse/storage/schema/state/delta/61/02state_groups_state_n_distinct.sql.postgres
${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/full.sql
${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/sequence.sql.postgres
${PYSITELIB}/synapse/storage/state.py
${PYSITELIB}/synapse/storage/state.pyc
${PYSITELIB}/synapse/storage/state.pyo
${PYSITELIB}/synapse/storage/types.py
${PYSITELIB}/synapse/storage/types.pyc
${PYSITELIB}/synapse/storage/types.pyo
${PYSITELIB}/synapse/storage/util/__init__.py
${PYSITELIB}/synapse/storage/util/__init__.pyc
${PYSITELIB}/synapse/storage/util/__init__.pyo
${PYSITELIB}/synapse/storage/util/id_generators.py
${PYSITELIB}/synapse/storage/util/id_generators.pyc
${PYSITELIB}/synapse/storage/util/id_generators.pyo
${PYSITELIB}/synapse/storage/util/sequence.py
${PYSITELIB}/synapse/storage/util/sequence.pyc
${PYSITELIB}/synapse/storage/util/sequence.pyo
${PYSITELIB}/synapse/streams/__init__.py
${PYSITELIB}/synapse/streams/__init__.pyc
${PYSITELIB}/synapse/streams/__init__.pyo
${PYSITELIB}/synapse/streams/config.py
${PYSITELIB}/synapse/streams/config.pyc
${PYSITELIB}/synapse/streams/config.pyo
${PYSITELIB}/synapse/streams/events.py
${PYSITELIB}/synapse/streams/events.pyc
${PYSITELIB}/synapse/streams/events.pyo
${PYSITELIB}/synapse/types.py
${PYSITELIB}/synapse/types.pyc
${PYSITELIB}/synapse/types.pyo
${PYSITELIB}/synapse/util/__init__.py
${PYSITELIB}/synapse/util/__init__.pyc
${PYSITELIB}/synapse/util/__init__.pyo
${PYSITELIB}/synapse/util/async_helpers.py
${PYSITELIB}/synapse/util/async_helpers.pyc
${PYSITELIB}/synapse/util/async_helpers.pyo
${PYSITELIB}/synapse/util/batching_queue.py
${PYSITELIB}/synapse/util/batching_queue.pyc
${PYSITELIB}/synapse/util/batching_queue.pyo
${PYSITELIB}/synapse/util/caches/__init__.py
${PYSITELIB}/synapse/util/caches/__init__.pyc
${PYSITELIB}/synapse/util/caches/__init__.pyo
${PYSITELIB}/synapse/util/caches/cached_call.py
${PYSITELIB}/synapse/util/caches/cached_call.pyc
${PYSITELIB}/synapse/util/caches/cached_call.pyo
${PYSITELIB}/synapse/util/caches/deferred_cache.py
${PYSITELIB}/synapse/util/caches/deferred_cache.pyc
${PYSITELIB}/synapse/util/caches/deferred_cache.pyo
${PYSITELIB}/synapse/util/caches/descriptors.py
${PYSITELIB}/synapse/util/caches/descriptors.pyc
${PYSITELIB}/synapse/util/caches/descriptors.pyo
${PYSITELIB}/synapse/util/caches/dictionary_cache.py
${PYSITELIB}/synapse/util/caches/dictionary_cache.pyc
${PYSITELIB}/synapse/util/caches/dictionary_cache.pyo
${PYSITELIB}/synapse/util/caches/expiringcache.py
${PYSITELIB}/synapse/util/caches/expiringcache.pyc
${PYSITELIB}/synapse/util/caches/expiringcache.pyo
${PYSITELIB}/synapse/util/caches/lrucache.py
${PYSITELIB}/synapse/util/caches/lrucache.pyc
${PYSITELIB}/synapse/util/caches/lrucache.pyo
${PYSITELIB}/synapse/util/caches/response_cache.py
${PYSITELIB}/synapse/util/caches/response_cache.pyc
${PYSITELIB}/synapse/util/caches/response_cache.pyo
${PYSITELIB}/synapse/util/caches/stream_change_cache.py
${PYSITELIB}/synapse/util/caches/stream_change_cache.pyc
${PYSITELIB}/synapse/util/caches/stream_change_cache.pyo
${PYSITELIB}/synapse/util/caches/treecache.py
${PYSITELIB}/synapse/util/caches/treecache.pyc
${PYSITELIB}/synapse/util/caches/treecache.pyo
${PYSITELIB}/synapse/util/caches/ttlcache.py
${PYSITELIB}/synapse/util/caches/ttlcache.pyc
${PYSITELIB}/synapse/util/caches/ttlcache.pyo
${PYSITELIB}/synapse/util/daemonize.py
${PYSITELIB}/synapse/util/daemonize.pyc
${PYSITELIB}/synapse/util/daemonize.pyo
${PYSITELIB}/synapse/util/distributor.py
${PYSITELIB}/synapse/util/distributor.pyc
${PYSITELIB}/synapse/util/distributor.pyo
${PYSITELIB}/synapse/util/file_consumer.py
${PYSITELIB}/synapse/util/file_consumer.pyc
${PYSITELIB}/synapse/util/file_consumer.pyo
${PYSITELIB}/synapse/util/frozenutils.py
${PYSITELIB}/synapse/util/frozenutils.pyc
${PYSITELIB}/synapse/util/frozenutils.pyo
${PYSITELIB}/synapse/util/hash.py
${PYSITELIB}/synapse/util/hash.pyc
${PYSITELIB}/synapse/util/hash.pyo
${PYSITELIB}/synapse/util/httpresourcetree.py
${PYSITELIB}/synapse/util/httpresourcetree.pyc
${PYSITELIB}/synapse/util/httpresourcetree.pyo
${PYSITELIB}/synapse/util/iterutils.py
${PYSITELIB}/synapse/util/iterutils.pyc
${PYSITELIB}/synapse/util/iterutils.pyo
${PYSITELIB}/synapse/util/linked_list.py
${PYSITELIB}/synapse/util/linked_list.pyc
${PYSITELIB}/synapse/util/linked_list.pyo
${PYSITELIB}/synapse/util/logcontext.py
${PYSITELIB}/synapse/util/logcontext.pyc
${PYSITELIB}/synapse/util/logcontext.pyo
${PYSITELIB}/synapse/util/logformatter.py
${PYSITELIB}/synapse/util/logformatter.pyc
${PYSITELIB}/synapse/util/logformatter.pyo
${PYSITELIB}/synapse/util/macaroons.py
${PYSITELIB}/synapse/util/macaroons.pyc
${PYSITELIB}/synapse/util/macaroons.pyo
${PYSITELIB}/synapse/util/manhole.py
${PYSITELIB}/synapse/util/manhole.pyc
${PYSITELIB}/synapse/util/manhole.pyo
${PYSITELIB}/synapse/util/metrics.py
${PYSITELIB}/synapse/util/metrics.pyc
${PYSITELIB}/synapse/util/metrics.pyo
${PYSITELIB}/synapse/util/module_loader.py
${PYSITELIB}/synapse/util/module_loader.pyc
${PYSITELIB}/synapse/util/module_loader.pyo
${PYSITELIB}/synapse/util/msisdn.py
${PYSITELIB}/synapse/util/msisdn.pyc
${PYSITELIB}/synapse/util/msisdn.pyo
${PYSITELIB}/synapse/util/patch_inline_callbacks.py
${PYSITELIB}/synapse/util/patch_inline_callbacks.pyc
${PYSITELIB}/synapse/util/patch_inline_callbacks.pyo
${PYSITELIB}/synapse/util/ratelimitutils.py
${PYSITELIB}/synapse/util/ratelimitutils.pyc
${PYSITELIB}/synapse/util/ratelimitutils.pyo
${PYSITELIB}/synapse/util/retryutils.py
${PYSITELIB}/synapse/util/retryutils.pyc
${PYSITELIB}/synapse/util/retryutils.pyo
${PYSITELIB}/synapse/util/rlimit.py
${PYSITELIB}/synapse/util/rlimit.pyc
${PYSITELIB}/synapse/util/rlimit.pyo
${PYSITELIB}/synapse/util/stringutils.py
${PYSITELIB}/synapse/util/stringutils.pyc
${PYSITELIB}/synapse/util/stringutils.pyo
${PYSITELIB}/synapse/util/templates.py
${PYSITELIB}/synapse/util/templates.pyc
${PYSITELIB}/synapse/util/templates.pyo
${PYSITELIB}/synapse/util/threepids.py
${PYSITELIB}/synapse/util/threepids.pyc
${PYSITELIB}/synapse/util/threepids.pyo
${PYSITELIB}/synapse/util/versionstring.py
${PYSITELIB}/synapse/util/versionstring.pyc
${PYSITELIB}/synapse/util/versionstring.pyo
${PYSITELIB}/synapse/util/wheel_timer.py
${PYSITELIB}/synapse/util/wheel_timer.pyc
${PYSITELIB}/synapse/util/wheel_timer.pyo
${PYSITELIB}/synapse/visibility.py
${PYSITELIB}/synapse/visibility.pyc
${PYSITELIB}/synapse/visibility.pyo
${PYSITELIB}/synmark/__init__.py
${PYSITELIB}/synmark/__init__.pyc
${PYSITELIB}/synmark/__init__.pyo
${PYSITELIB}/synmark/__main__.py
${PYSITELIB}/synmark/__main__.pyc
${PYSITELIB}/synmark/__main__.pyo
${PYSITELIB}/synmark/suites/__init__.py
${PYSITELIB}/synmark/suites/__init__.pyc
${PYSITELIB}/synmark/suites/__init__.pyo
${PYSITELIB}/synmark/suites/logging.py
${PYSITELIB}/synmark/suites/logging.pyc
${PYSITELIB}/synmark/suites/logging.pyo
${PYSITELIB}/synmark/suites/lrucache.py
${PYSITELIB}/synmark/suites/lrucache.pyc
${PYSITELIB}/synmark/suites/lrucache.pyo
${PYSITELIB}/synmark/suites/lrucache_evict.py
${PYSITELIB}/synmark/suites/lrucache_evict.pyc
${PYSITELIB}/synmark/suites/lrucache_evict.pyo