-
Notifications
You must be signed in to change notification settings - Fork 1
/
routes.txt
2340 lines (2340 loc) · 100 KB
/
routes.txt
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
/
/ep/magdeburg-7
/ep/magdeburg-7/parties
/ep/magdeburg-7/party/buendnis-90-die-gruenen
/ep/magdeburg-7/party/future-magdeburg
/ep/magdeburg-7/party/cdu
/ep/magdeburg-7/party/spd
/ep/magdeburg-7/party/afd
/ep/magdeburg-7/party/die-linke
/ep/magdeburg-7/party/gartenpartei
/ep/magdeburg-7/party/tierschutzpartei
/ep/magdeburg-7/party/tierschutzallianz
/ep/magdeburg-7/party/fdp
/ep/magdeburg-7/party/parteilos-01
/ep/magdeburg-7/factions
/ep/magdeburg-7/faction/gruene-future
/ep/magdeburg-7/faction/fdp-tierschutzpartei
/ep/magdeburg-7/faction/spd
/ep/magdeburg-7/faction/afd
/ep/magdeburg-7/faction/die-linke
/ep/magdeburg-7/faction/cdu
/ep/magdeburg-7/faction/gartenpartei-tierschutzallianz
/ep/magdeburg-7/faction/oberbuergermeisterin
/ep/magdeburg-7/persons
/ep/magdeburg-7/person/alexander-pott
/ep/magdeburg-7/person/julia-bohlander
/ep/magdeburg-7/person/matthias-borowiak
/ep/magdeburg-7/person/stephan-bublitz
/ep/magdeburg-7/person/juergen-canehl
/ep/magdeburg-7/person/mathilde-lemesle
/ep/magdeburg-7/person/madeleine-linke
/ep/magdeburg-7/person/julia-mayer-buch
/ep/magdeburg-7/person/olaf-meister
/ep/magdeburg-7/person/kathrin-natho
/ep/magdeburg-7/person/mirko-stage
/ep/magdeburg-7/person/kathrin-meyer-pinger
/ep/magdeburg-7/person/burkhard-moll
/ep/magdeburg-7/person/stephan-papenbreer
/ep/magdeburg-7/person/evelin-schulz
/ep/magdeburg-7/person/carola-schumann
/ep/magdeburg-7/person/barbara-jutta-tietge
/ep/magdeburg-7/person/mirjam-karl-sy
/ep/magdeburg-7/person/norman-belas
/ep/magdeburg-7/person/julia-brandt
/ep/magdeburg-7/person/falko-grube
/ep/magdeburg-7/person/christoph-abel
/ep/magdeburg-7/person/karsten-koepp
/ep/magdeburg-7/person/kornelia-keune
/ep/magdeburg-7/person/steffi-meyer
/ep/magdeburg-7/person/jens-roesler
/ep/magdeburg-7/person/thomas-wiebe
/ep/magdeburg-7/person/niko-zenker
/ep/magdeburg-7/person/oliver-kirchner
/ep/magdeburg-7/person/matthias-kleiser
/ep/magdeburg-7/person/hagen-kohl
/ep/magdeburg-7/person/ronny-kumpf
/ep/magdeburg-7/person/christian-mertens
/ep/magdeburg-7/person/jan-moldenhauer
/ep/magdeburg-7/person/frank-pasemann
/ep/magdeburg-7/person/bernd-neubauer
/ep/magdeburg-7/person/bernd-kuhnert
/ep/magdeburg-7/person/anke-jaeger
/ep/magdeburg-7/person/tobias-baum
/ep/magdeburg-7/person/rene-hempel
/ep/magdeburg-7/person/dennis-jannack
/ep/magdeburg-7/person/nadja-loesch
/ep/magdeburg-7/person/hans-joachim-mewes
/ep/magdeburg-7/person/oliver-mueller
/ep/magdeburg-7/person/chris-scheunchen
/ep/magdeburg-7/person/matthias-boxhorn
/ep/magdeburg-7/person/bernd-heynemann
/ep/magdeburg-7/person/michael-hoffmann
/ep/magdeburg-7/person/stefanie-middendorf
/ep/magdeburg-7/person/tim-rohne
/ep/magdeburg-7/person/manuel-rupsch
/ep/magdeburg-7/person/andreas-schumann
/ep/magdeburg-7/person/frank-schuster
/ep/magdeburg-7/person/wigbert-schwenke
/ep/magdeburg-7/person/reinhard-stern
/ep/magdeburg-7/person/aila-fassl
/ep/magdeburg-7/person/marcel-guderjahn
/ep/magdeburg-7/person/roland-zander
/ep/magdeburg-7/person/simone-borris
/ep/magdeburg-7/sessions
/ep/magdeburg-7/session/2022-09-01
/ep/magdeburg-7/session/2022-10-06
/ep/magdeburg-7/session/2022-10-10
/ep/magdeburg-7/session/2022-11-10
/ep/magdeburg-7/session/2022-11-14
/ep/magdeburg-7/session/2022-12-08
/ep/magdeburg-7/session/2022-12-12
/ep/magdeburg-7/session/2023-01-19
/ep/magdeburg-7/session/2023-02-16
/ep/magdeburg-7/session/2023-03-16
/ep/magdeburg-7/session/2023-04-20
/ep/magdeburg-7/session/2023-04-24
/ep/magdeburg-7/session/2023-05-25
/ep/magdeburg-7/session/2023-05-30
/ep/magdeburg-7/session/2023-06-22
/ep/magdeburg-7/session/2023-06-26
/ep/magdeburg-7/session/2023-08-17
/ep/magdeburg-7/session/2023-08-21
/ep/magdeburg-7/session/2023-09-14
/ep/magdeburg-7/session/2023-09-18
/ep/magdeburg-7/session/2023-10-12
/ep/magdeburg-7/session/2023-10-16
/ep/magdeburg-7/session/2023-11-20
/ep/magdeburg-7/session/2023-12-07
/ep/magdeburg-7/session/2023-12-11
/ep/magdeburg-7/session/2024-01-18
/ep/magdeburg-7/session/2024-02-15
/ep/magdeburg-7/session/2024-03-07
/ep/magdeburg-7/session/2024-03-11
/ep/magdeburg-7/session/2024-04-04
/ep/magdeburg-7/session/2024-04-08
/ep/magdeburg-7/session/2024-05-02
/ep/magdeburg-7/session/2024-05-06
/ep/magdeburg-7/session/2024-06-13
/ep/magdeburg-7/session/2024-06-17
/ep/magdeburg-7/session/2022-09-01/voting/1
/ep/magdeburg-7/session/2022-09-01/voting/2
/ep/magdeburg-7/session/2022-09-01/voting/3
/ep/magdeburg-7/session/2022-09-01/voting/4
/ep/magdeburg-7/session/2022-09-01/voting/5
/ep/magdeburg-7/session/2022-09-01/voting/6
/ep/magdeburg-7/session/2022-09-01/voting/7
/ep/magdeburg-7/session/2022-09-01/voting/8
/ep/magdeburg-7/session/2022-09-01/voting/9
/ep/magdeburg-7/session/2022-09-01/voting/10
/ep/magdeburg-7/session/2022-09-01/voting/11
/ep/magdeburg-7/session/2022-09-01/voting/12
/ep/magdeburg-7/session/2022-09-01/voting/13
/ep/magdeburg-7/session/2022-09-01/voting/14
/ep/magdeburg-7/session/2022-09-01/voting/15
/ep/magdeburg-7/session/2022-09-01/voting/16
/ep/magdeburg-7/session/2022-09-01/voting/17
/ep/magdeburg-7/session/2022-09-01/voting/18
/ep/magdeburg-7/session/2022-09-01/voting/19
/ep/magdeburg-7/session/2022-09-01/voting/20
/ep/magdeburg-7/session/2022-09-01/voting/21
/ep/magdeburg-7/session/2022-09-01/voting/22
/ep/magdeburg-7/session/2022-09-01/voting/23
/ep/magdeburg-7/session/2022-09-01/voting/24
/ep/magdeburg-7/session/2022-09-01/voting/25
/ep/magdeburg-7/session/2022-09-01/voting/26
/ep/magdeburg-7/session/2022-09-01/voting/27
/ep/magdeburg-7/session/2022-09-01/voting/28
/ep/magdeburg-7/session/2022-09-01/voting/29
/ep/magdeburg-7/session/2022-09-01/voting/30
/ep/magdeburg-7/session/2022-09-01/voting/31
/ep/magdeburg-7/session/2022-09-01/voting/32
/ep/magdeburg-7/session/2022-09-01/voting/33
/ep/magdeburg-7/session/2022-09-01/voting/34
/ep/magdeburg-7/session/2022-09-01/voting/35
/ep/magdeburg-7/session/2022-09-01/voting/36
/ep/magdeburg-7/session/2022-09-01/voting/37
/ep/magdeburg-7/session/2022-09-01/voting/38
/ep/magdeburg-7/session/2022-09-01/voting/39
/ep/magdeburg-7/session/2022-09-01/voting/40
/ep/magdeburg-7/session/2022-09-01/voting/41
/ep/magdeburg-7/session/2022-09-01/voting/42
/ep/magdeburg-7/session/2022-09-01/voting/43
/ep/magdeburg-7/session/2022-09-01/voting/44
/ep/magdeburg-7/session/2022-09-01/voting/45
/ep/magdeburg-7/session/2022-09-01/voting/46
/ep/magdeburg-7/session/2022-09-01/voting/47
/ep/magdeburg-7/session/2022-09-01/voting/48
/ep/magdeburg-7/session/2022-09-01/voting/49
/ep/magdeburg-7/session/2022-09-01/voting/50
/ep/magdeburg-7/session/2022-09-01/voting/51
/ep/magdeburg-7/session/2022-09-01/voting/52
/ep/magdeburg-7/session/2022-09-01/voting/53
/ep/magdeburg-7/session/2022-09-01/voting/54
/ep/magdeburg-7/session/2022-09-01/voting/55
/ep/magdeburg-7/session/2022-09-01/voting/56
/ep/magdeburg-7/session/2022-09-01/voting/57
/ep/magdeburg-7/session/2022-09-01/voting/58
/ep/magdeburg-7/session/2022-09-01/voting/59
/ep/magdeburg-7/session/2022-09-01/voting/60
/ep/magdeburg-7/session/2022-09-01/voting/61
/ep/magdeburg-7/session/2022-09-01/voting/62
/ep/magdeburg-7/session/2022-09-01/voting/63
/ep/magdeburg-7/session/2022-09-01/voting/64
/ep/magdeburg-7/session/2022-09-01/voting/65
/ep/magdeburg-7/session/2022-09-01/voting/66
/ep/magdeburg-7/session/2022-09-01/voting/67
/ep/magdeburg-7/session/2022-09-01/voting/68
/ep/magdeburg-7/session/2022-09-01/voting/69
/ep/magdeburg-7/session/2022-09-01/voting/70
/ep/magdeburg-7/session/2022-09-01/voting/71
/ep/magdeburg-7/session/2022-09-01/voting/72
/ep/magdeburg-7/session/2022-09-01/voting/73
/ep/magdeburg-7/session/2022-09-01/voting/74
/ep/magdeburg-7/session/2022-09-01/voting/75
/ep/magdeburg-7/session/2022-09-01/voting/76
/ep/magdeburg-7/session/2022-09-01/voting/77
/ep/magdeburg-7/session/2022-09-01/voting/78
/ep/magdeburg-7/session/2022-09-01/voting/79
/ep/magdeburg-7/session/2022-09-01/voting/80
/ep/magdeburg-7/session/2022-09-01/voting/81
/ep/magdeburg-7/session/2022-09-01/voting/82
/ep/magdeburg-7/session/2022-09-01/voting/83
/ep/magdeburg-7/session/2022-09-01/voting/84
/ep/magdeburg-7/session/2022-09-01/voting/85
/ep/magdeburg-7/session/2022-10-06/voting/1
/ep/magdeburg-7/session/2022-10-06/voting/2
/ep/magdeburg-7/session/2022-10-06/voting/3
/ep/magdeburg-7/session/2022-10-06/voting/4
/ep/magdeburg-7/session/2022-10-06/voting/5
/ep/magdeburg-7/session/2022-10-06/voting/6
/ep/magdeburg-7/session/2022-10-06/voting/7
/ep/magdeburg-7/session/2022-10-06/voting/8
/ep/magdeburg-7/session/2022-10-06/voting/9
/ep/magdeburg-7/session/2022-10-06/voting/10
/ep/magdeburg-7/session/2022-10-06/voting/11
/ep/magdeburg-7/session/2022-10-06/voting/12
/ep/magdeburg-7/session/2022-10-06/voting/13
/ep/magdeburg-7/session/2022-10-06/voting/14
/ep/magdeburg-7/session/2022-10-06/voting/15
/ep/magdeburg-7/session/2022-10-06/voting/16
/ep/magdeburg-7/session/2022-10-06/voting/17
/ep/magdeburg-7/session/2022-10-06/voting/18
/ep/magdeburg-7/session/2022-10-06/voting/19
/ep/magdeburg-7/session/2022-10-06/voting/20
/ep/magdeburg-7/session/2022-10-06/voting/21
/ep/magdeburg-7/session/2022-10-06/voting/22
/ep/magdeburg-7/session/2022-10-06/voting/23
/ep/magdeburg-7/session/2022-10-06/voting/24
/ep/magdeburg-7/session/2022-10-06/voting/25
/ep/magdeburg-7/session/2022-10-06/voting/26
/ep/magdeburg-7/session/2022-10-06/voting/27
/ep/magdeburg-7/session/2022-10-06/voting/28
/ep/magdeburg-7/session/2022-10-10/voting/1
/ep/magdeburg-7/session/2022-10-10/voting/2
/ep/magdeburg-7/session/2022-10-10/voting/3
/ep/magdeburg-7/session/2022-10-10/voting/4
/ep/magdeburg-7/session/2022-10-10/voting/5
/ep/magdeburg-7/session/2022-10-10/voting/6
/ep/magdeburg-7/session/2022-10-10/voting/7
/ep/magdeburg-7/session/2022-10-10/voting/8
/ep/magdeburg-7/session/2022-10-10/voting/9
/ep/magdeburg-7/session/2022-10-10/voting/10
/ep/magdeburg-7/session/2022-10-10/voting/11
/ep/magdeburg-7/session/2022-10-10/voting/12
/ep/magdeburg-7/session/2022-10-10/voting/13
/ep/magdeburg-7/session/2022-10-10/voting/14
/ep/magdeburg-7/session/2022-10-10/voting/15
/ep/magdeburg-7/session/2022-10-10/voting/16
/ep/magdeburg-7/session/2022-10-10/voting/17
/ep/magdeburg-7/session/2022-10-10/voting/18
/ep/magdeburg-7/session/2022-10-10/voting/19
/ep/magdeburg-7/session/2022-10-10/voting/20
/ep/magdeburg-7/session/2022-10-10/voting/21
/ep/magdeburg-7/session/2022-10-10/voting/22
/ep/magdeburg-7/session/2022-10-10/voting/23
/ep/magdeburg-7/session/2022-10-10/voting/24
/ep/magdeburg-7/session/2022-10-10/voting/25
/ep/magdeburg-7/session/2022-10-10/voting/26
/ep/magdeburg-7/session/2022-10-10/voting/27
/ep/magdeburg-7/session/2022-10-10/voting/28
/ep/magdeburg-7/session/2022-10-10/voting/29
/ep/magdeburg-7/session/2022-10-10/voting/30
/ep/magdeburg-7/session/2022-10-10/voting/31
/ep/magdeburg-7/session/2022-10-10/voting/32
/ep/magdeburg-7/session/2022-10-10/voting/33
/ep/magdeburg-7/session/2022-10-10/voting/34
/ep/magdeburg-7/session/2022-10-10/voting/35
/ep/magdeburg-7/session/2022-10-10/voting/36
/ep/magdeburg-7/session/2022-10-10/voting/37
/ep/magdeburg-7/session/2022-10-10/voting/38
/ep/magdeburg-7/session/2022-10-10/voting/39
/ep/magdeburg-7/session/2022-10-10/voting/40
/ep/magdeburg-7/session/2022-10-10/voting/41
/ep/magdeburg-7/session/2022-10-10/voting/42
/ep/magdeburg-7/session/2022-10-10/voting/43
/ep/magdeburg-7/session/2022-10-10/voting/44
/ep/magdeburg-7/session/2022-10-10/voting/45
/ep/magdeburg-7/session/2022-10-10/voting/46
/ep/magdeburg-7/session/2022-10-10/voting/47
/ep/magdeburg-7/session/2022-10-10/voting/48
/ep/magdeburg-7/session/2022-10-10/voting/49
/ep/magdeburg-7/session/2022-10-10/voting/50
/ep/magdeburg-7/session/2022-10-10/voting/51
/ep/magdeburg-7/session/2022-10-10/voting/52
/ep/magdeburg-7/session/2022-10-10/voting/53
/ep/magdeburg-7/session/2022-10-10/voting/54
/ep/magdeburg-7/session/2022-10-10/voting/55
/ep/magdeburg-7/session/2022-10-10/voting/56
/ep/magdeburg-7/session/2022-10-10/voting/57
/ep/magdeburg-7/session/2022-10-10/voting/58
/ep/magdeburg-7/session/2022-10-10/voting/59
/ep/magdeburg-7/session/2022-10-10/voting/60
/ep/magdeburg-7/session/2022-10-10/voting/61
/ep/magdeburg-7/session/2022-10-10/voting/62
/ep/magdeburg-7/session/2022-10-10/voting/63
/ep/magdeburg-7/session/2022-10-10/voting/64
/ep/magdeburg-7/session/2022-10-10/voting/65
/ep/magdeburg-7/session/2022-10-10/voting/66
/ep/magdeburg-7/session/2022-10-10/voting/67
/ep/magdeburg-7/session/2022-10-10/voting/68
/ep/magdeburg-7/session/2022-10-10/voting/69
/ep/magdeburg-7/session/2022-10-10/voting/70
/ep/magdeburg-7/session/2022-10-10/voting/71
/ep/magdeburg-7/session/2022-11-10/voting/1
/ep/magdeburg-7/session/2022-11-10/voting/2
/ep/magdeburg-7/session/2022-11-10/voting/3
/ep/magdeburg-7/session/2022-11-10/voting/4
/ep/magdeburg-7/session/2022-11-10/voting/5
/ep/magdeburg-7/session/2022-11-10/voting/6
/ep/magdeburg-7/session/2022-11-10/voting/7
/ep/magdeburg-7/session/2022-11-10/voting/8
/ep/magdeburg-7/session/2022-11-10/voting/9
/ep/magdeburg-7/session/2022-11-10/voting/10
/ep/magdeburg-7/session/2022-11-10/voting/11
/ep/magdeburg-7/session/2022-11-10/voting/12
/ep/magdeburg-7/session/2022-11-10/voting/13
/ep/magdeburg-7/session/2022-11-10/voting/14
/ep/magdeburg-7/session/2022-11-10/voting/15
/ep/magdeburg-7/session/2022-11-10/voting/16
/ep/magdeburg-7/session/2022-11-10/voting/17
/ep/magdeburg-7/session/2022-11-10/voting/18
/ep/magdeburg-7/session/2022-11-10/voting/19
/ep/magdeburg-7/session/2022-11-10/voting/20
/ep/magdeburg-7/session/2022-11-10/voting/21
/ep/magdeburg-7/session/2022-11-10/voting/22
/ep/magdeburg-7/session/2022-11-10/voting/23
/ep/magdeburg-7/session/2022-11-10/voting/24
/ep/magdeburg-7/session/2022-11-10/voting/25
/ep/magdeburg-7/session/2022-11-10/voting/26
/ep/magdeburg-7/session/2022-11-10/voting/27
/ep/magdeburg-7/session/2022-11-10/voting/28
/ep/magdeburg-7/session/2022-11-10/voting/29
/ep/magdeburg-7/session/2022-11-10/voting/30
/ep/magdeburg-7/session/2022-11-10/voting/31
/ep/magdeburg-7/session/2022-11-10/voting/32
/ep/magdeburg-7/session/2022-11-10/voting/33
/ep/magdeburg-7/session/2022-11-10/voting/34
/ep/magdeburg-7/session/2022-11-10/voting/35
/ep/magdeburg-7/session/2022-11-10/voting/36
/ep/magdeburg-7/session/2022-11-10/voting/37
/ep/magdeburg-7/session/2022-11-14/voting/1
/ep/magdeburg-7/session/2022-11-14/voting/2
/ep/magdeburg-7/session/2022-11-14/voting/3
/ep/magdeburg-7/session/2022-11-14/voting/4
/ep/magdeburg-7/session/2022-11-14/voting/5
/ep/magdeburg-7/session/2022-11-14/voting/6
/ep/magdeburg-7/session/2022-11-14/voting/7
/ep/magdeburg-7/session/2022-11-14/voting/8
/ep/magdeburg-7/session/2022-11-14/voting/9
/ep/magdeburg-7/session/2022-11-14/voting/10
/ep/magdeburg-7/session/2022-11-14/voting/11
/ep/magdeburg-7/session/2022-11-14/voting/12
/ep/magdeburg-7/session/2022-11-14/voting/13
/ep/magdeburg-7/session/2022-11-14/voting/14
/ep/magdeburg-7/session/2022-11-14/voting/15
/ep/magdeburg-7/session/2022-11-14/voting/16
/ep/magdeburg-7/session/2022-11-14/voting/17
/ep/magdeburg-7/session/2022-11-14/voting/18
/ep/magdeburg-7/session/2022-11-14/voting/19
/ep/magdeburg-7/session/2022-11-14/voting/20
/ep/magdeburg-7/session/2022-11-14/voting/21
/ep/magdeburg-7/session/2022-11-14/voting/22
/ep/magdeburg-7/session/2022-11-14/voting/23
/ep/magdeburg-7/session/2022-11-14/voting/24
/ep/magdeburg-7/session/2022-11-14/voting/25
/ep/magdeburg-7/session/2022-11-14/voting/26
/ep/magdeburg-7/session/2022-11-14/voting/27
/ep/magdeburg-7/session/2022-11-14/voting/28
/ep/magdeburg-7/session/2022-11-14/voting/29
/ep/magdeburg-7/session/2022-11-14/voting/30
/ep/magdeburg-7/session/2022-11-14/voting/31
/ep/magdeburg-7/session/2022-11-14/voting/32
/ep/magdeburg-7/session/2022-11-14/voting/33
/ep/magdeburg-7/session/2022-11-14/voting/34
/ep/magdeburg-7/session/2022-11-14/voting/35
/ep/magdeburg-7/session/2022-11-14/voting/36
/ep/magdeburg-7/session/2022-11-14/voting/37
/ep/magdeburg-7/session/2022-11-14/voting/38
/ep/magdeburg-7/session/2022-11-14/voting/39
/ep/magdeburg-7/session/2022-11-14/voting/40
/ep/magdeburg-7/session/2022-11-14/voting/41
/ep/magdeburg-7/session/2022-11-14/voting/42
/ep/magdeburg-7/session/2022-11-14/voting/43
/ep/magdeburg-7/session/2022-11-14/voting/44
/ep/magdeburg-7/session/2022-11-14/voting/45
/ep/magdeburg-7/session/2022-11-14/voting/46
/ep/magdeburg-7/session/2022-11-14/voting/47
/ep/magdeburg-7/session/2022-11-14/voting/48
/ep/magdeburg-7/session/2022-11-14/voting/49
/ep/magdeburg-7/session/2022-11-14/voting/50
/ep/magdeburg-7/session/2022-11-14/voting/51
/ep/magdeburg-7/session/2022-11-14/voting/52
/ep/magdeburg-7/session/2022-11-14/voting/53
/ep/magdeburg-7/session/2022-12-08/voting/1
/ep/magdeburg-7/session/2022-12-08/voting/2
/ep/magdeburg-7/session/2022-12-08/voting/3
/ep/magdeburg-7/session/2022-12-08/voting/4
/ep/magdeburg-7/session/2022-12-08/voting/5
/ep/magdeburg-7/session/2022-12-08/voting/6
/ep/magdeburg-7/session/2022-12-08/voting/7
/ep/magdeburg-7/session/2022-12-08/voting/8
/ep/magdeburg-7/session/2022-12-08/voting/9
/ep/magdeburg-7/session/2022-12-08/voting/10
/ep/magdeburg-7/session/2022-12-08/voting/11
/ep/magdeburg-7/session/2022-12-08/voting/12
/ep/magdeburg-7/session/2022-12-08/voting/13
/ep/magdeburg-7/session/2022-12-08/voting/14
/ep/magdeburg-7/session/2022-12-08/voting/15
/ep/magdeburg-7/session/2022-12-08/voting/16
/ep/magdeburg-7/session/2022-12-08/voting/17
/ep/magdeburg-7/session/2022-12-08/voting/18
/ep/magdeburg-7/session/2022-12-08/voting/19
/ep/magdeburg-7/session/2022-12-08/voting/20
/ep/magdeburg-7/session/2022-12-08/voting/21
/ep/magdeburg-7/session/2022-12-08/voting/22
/ep/magdeburg-7/session/2022-12-08/voting/23
/ep/magdeburg-7/session/2022-12-08/voting/24
/ep/magdeburg-7/session/2022-12-08/voting/25
/ep/magdeburg-7/session/2022-12-08/voting/26
/ep/magdeburg-7/session/2022-12-08/voting/27
/ep/magdeburg-7/session/2022-12-08/voting/28
/ep/magdeburg-7/session/2022-12-08/voting/29
/ep/magdeburg-7/session/2022-12-08/voting/30
/ep/magdeburg-7/session/2022-12-08/voting/31
/ep/magdeburg-7/session/2022-12-08/voting/32
/ep/magdeburg-7/session/2022-12-08/voting/33
/ep/magdeburg-7/session/2022-12-08/voting/34
/ep/magdeburg-7/session/2022-12-08/voting/35
/ep/magdeburg-7/session/2022-12-08/voting/36
/ep/magdeburg-7/session/2022-12-08/voting/37
/ep/magdeburg-7/session/2022-12-08/voting/38
/ep/magdeburg-7/session/2022-12-08/voting/39
/ep/magdeburg-7/session/2022-12-08/voting/40
/ep/magdeburg-7/session/2022-12-08/voting/41
/ep/magdeburg-7/session/2022-12-08/voting/42
/ep/magdeburg-7/session/2022-12-08/voting/43
/ep/magdeburg-7/session/2022-12-08/voting/44
/ep/magdeburg-7/session/2022-12-08/voting/45
/ep/magdeburg-7/session/2022-12-08/voting/46
/ep/magdeburg-7/session/2022-12-08/voting/47
/ep/magdeburg-7/session/2022-12-08/voting/48
/ep/magdeburg-7/session/2022-12-08/voting/49
/ep/magdeburg-7/session/2022-12-08/voting/50
/ep/magdeburg-7/session/2022-12-08/voting/51
/ep/magdeburg-7/session/2022-12-08/voting/52
/ep/magdeburg-7/session/2022-12-08/voting/53
/ep/magdeburg-7/session/2022-12-08/voting/54
/ep/magdeburg-7/session/2022-12-08/voting/55
/ep/magdeburg-7/session/2022-12-08/voting/56
/ep/magdeburg-7/session/2022-12-08/voting/57
/ep/magdeburg-7/session/2022-12-08/voting/58
/ep/magdeburg-7/session/2022-12-08/voting/59
/ep/magdeburg-7/session/2022-12-08/voting/60
/ep/magdeburg-7/session/2022-12-08/voting/61
/ep/magdeburg-7/session/2022-12-08/voting/62
/ep/magdeburg-7/session/2022-12-08/voting/63
/ep/magdeburg-7/session/2022-12-08/voting/64
/ep/magdeburg-7/session/2022-12-08/voting/65
/ep/magdeburg-7/session/2022-12-08/voting/66
/ep/magdeburg-7/session/2022-12-08/voting/67
/ep/magdeburg-7/session/2022-12-08/voting/68
/ep/magdeburg-7/session/2022-12-08/voting/69
/ep/magdeburg-7/session/2022-12-08/voting/70
/ep/magdeburg-7/session/2022-12-08/voting/71
/ep/magdeburg-7/session/2022-12-08/voting/72
/ep/magdeburg-7/session/2022-12-08/voting/73
/ep/magdeburg-7/session/2022-12-08/voting/74
/ep/magdeburg-7/session/2022-12-08/voting/75
/ep/magdeburg-7/session/2022-12-08/voting/76
/ep/magdeburg-7/session/2022-12-08/voting/77
/ep/magdeburg-7/session/2022-12-08/voting/78
/ep/magdeburg-7/session/2022-12-08/voting/79
/ep/magdeburg-7/session/2022-12-08/voting/80
/ep/magdeburg-7/session/2022-12-08/voting/81
/ep/magdeburg-7/session/2022-12-08/voting/82
/ep/magdeburg-7/session/2022-12-08/voting/83
/ep/magdeburg-7/session/2022-12-08/voting/84
/ep/magdeburg-7/session/2022-12-08/voting/85
/ep/magdeburg-7/session/2022-12-08/voting/86
/ep/magdeburg-7/session/2022-12-12/voting/1
/ep/magdeburg-7/session/2022-12-12/voting/2
/ep/magdeburg-7/session/2022-12-12/voting/3
/ep/magdeburg-7/session/2022-12-12/voting/4
/ep/magdeburg-7/session/2022-12-12/voting/5
/ep/magdeburg-7/session/2022-12-12/voting/6
/ep/magdeburg-7/session/2022-12-12/voting/7
/ep/magdeburg-7/session/2022-12-12/voting/8
/ep/magdeburg-7/session/2022-12-12/voting/9
/ep/magdeburg-7/session/2022-12-12/voting/10
/ep/magdeburg-7/session/2022-12-12/voting/11
/ep/magdeburg-7/session/2022-12-12/voting/12
/ep/magdeburg-7/session/2022-12-12/voting/13
/ep/magdeburg-7/session/2022-12-12/voting/14
/ep/magdeburg-7/session/2022-12-12/voting/15
/ep/magdeburg-7/session/2022-12-12/voting/16
/ep/magdeburg-7/session/2022-12-12/voting/17
/ep/magdeburg-7/session/2022-12-12/voting/18
/ep/magdeburg-7/session/2022-12-12/voting/19
/ep/magdeburg-7/session/2022-12-12/voting/20
/ep/magdeburg-7/session/2022-12-12/voting/21
/ep/magdeburg-7/session/2022-12-12/voting/22
/ep/magdeburg-7/session/2022-12-12/voting/23
/ep/magdeburg-7/session/2022-12-12/voting/24
/ep/magdeburg-7/session/2022-12-12/voting/25
/ep/magdeburg-7/session/2022-12-12/voting/26
/ep/magdeburg-7/session/2022-12-12/voting/27
/ep/magdeburg-7/session/2022-12-12/voting/28
/ep/magdeburg-7/session/2022-12-12/voting/29
/ep/magdeburg-7/session/2022-12-12/voting/30
/ep/magdeburg-7/session/2022-12-12/voting/31
/ep/magdeburg-7/session/2022-12-12/voting/32
/ep/magdeburg-7/session/2022-12-12/voting/33
/ep/magdeburg-7/session/2022-12-12/voting/34
/ep/magdeburg-7/session/2022-12-12/voting/35
/ep/magdeburg-7/session/2022-12-12/voting/36
/ep/magdeburg-7/session/2022-12-12/voting/37
/ep/magdeburg-7/session/2022-12-12/voting/38
/ep/magdeburg-7/session/2022-12-12/voting/39
/ep/magdeburg-7/session/2022-12-12/voting/40
/ep/magdeburg-7/session/2022-12-12/voting/41
/ep/magdeburg-7/session/2022-12-12/voting/42
/ep/magdeburg-7/session/2022-12-12/voting/43
/ep/magdeburg-7/session/2022-12-12/voting/44
/ep/magdeburg-7/session/2022-12-12/voting/45
/ep/magdeburg-7/session/2022-12-12/voting/46
/ep/magdeburg-7/session/2023-01-19/voting/1
/ep/magdeburg-7/session/2023-01-19/voting/2
/ep/magdeburg-7/session/2023-01-19/voting/3
/ep/magdeburg-7/session/2023-01-19/voting/4
/ep/magdeburg-7/session/2023-01-19/voting/5
/ep/magdeburg-7/session/2023-01-19/voting/6
/ep/magdeburg-7/session/2023-01-19/voting/7
/ep/magdeburg-7/session/2023-01-19/voting/8
/ep/magdeburg-7/session/2023-01-19/voting/9
/ep/magdeburg-7/session/2023-01-19/voting/10
/ep/magdeburg-7/session/2023-01-19/voting/11
/ep/magdeburg-7/session/2023-01-19/voting/12
/ep/magdeburg-7/session/2023-01-19/voting/13
/ep/magdeburg-7/session/2023-01-19/voting/14
/ep/magdeburg-7/session/2023-01-19/voting/15
/ep/magdeburg-7/session/2023-01-19/voting/16
/ep/magdeburg-7/session/2023-01-19/voting/17
/ep/magdeburg-7/session/2023-01-19/voting/18
/ep/magdeburg-7/session/2023-01-19/voting/19
/ep/magdeburg-7/session/2023-01-19/voting/20
/ep/magdeburg-7/session/2023-01-19/voting/21
/ep/magdeburg-7/session/2023-01-19/voting/22
/ep/magdeburg-7/session/2023-01-19/voting/23
/ep/magdeburg-7/session/2023-01-19/voting/24
/ep/magdeburg-7/session/2023-01-19/voting/25
/ep/magdeburg-7/session/2023-01-19/voting/26
/ep/magdeburg-7/session/2023-01-19/voting/27
/ep/magdeburg-7/session/2023-01-19/voting/28
/ep/magdeburg-7/session/2023-01-19/voting/29
/ep/magdeburg-7/session/2023-01-19/voting/30
/ep/magdeburg-7/session/2023-01-19/voting/31
/ep/magdeburg-7/session/2023-01-19/voting/32
/ep/magdeburg-7/session/2023-01-19/voting/33
/ep/magdeburg-7/session/2023-01-19/voting/34
/ep/magdeburg-7/session/2023-01-19/voting/35
/ep/magdeburg-7/session/2023-01-19/voting/36
/ep/magdeburg-7/session/2023-01-19/voting/37
/ep/magdeburg-7/session/2023-01-19/voting/38
/ep/magdeburg-7/session/2023-01-19/voting/39
/ep/magdeburg-7/session/2023-01-19/voting/40
/ep/magdeburg-7/session/2023-01-19/voting/41
/ep/magdeburg-7/session/2023-01-19/voting/42
/ep/magdeburg-7/session/2023-01-19/voting/43
/ep/magdeburg-7/session/2023-01-19/voting/44
/ep/magdeburg-7/session/2023-01-19/voting/45
/ep/magdeburg-7/session/2023-01-19/voting/46
/ep/magdeburg-7/session/2023-01-19/voting/47
/ep/magdeburg-7/session/2023-01-19/voting/48
/ep/magdeburg-7/session/2023-01-19/voting/49
/ep/magdeburg-7/session/2023-01-19/voting/50
/ep/magdeburg-7/session/2023-01-19/voting/51
/ep/magdeburg-7/session/2023-01-19/voting/52
/ep/magdeburg-7/session/2023-01-19/voting/53
/ep/magdeburg-7/session/2023-01-19/voting/54
/ep/magdeburg-7/session/2023-01-19/voting/55
/ep/magdeburg-7/session/2023-01-19/voting/56
/ep/magdeburg-7/session/2023-01-19/voting/57
/ep/magdeburg-7/session/2023-01-19/voting/58
/ep/magdeburg-7/session/2023-01-19/voting/59
/ep/magdeburg-7/session/2023-01-19/voting/60
/ep/magdeburg-7/session/2023-01-19/voting/61
/ep/magdeburg-7/session/2023-01-19/voting/62
/ep/magdeburg-7/session/2023-01-19/voting/63
/ep/magdeburg-7/session/2023-01-19/voting/64
/ep/magdeburg-7/session/2023-01-19/voting/65
/ep/magdeburg-7/session/2023-01-19/voting/66
/ep/magdeburg-7/session/2023-01-19/voting/67
/ep/magdeburg-7/session/2023-01-19/voting/68
/ep/magdeburg-7/session/2023-01-19/voting/69
/ep/magdeburg-7/session/2023-02-16/voting/1
/ep/magdeburg-7/session/2023-02-16/voting/2
/ep/magdeburg-7/session/2023-02-16/voting/3
/ep/magdeburg-7/session/2023-02-16/voting/4
/ep/magdeburg-7/session/2023-02-16/voting/5
/ep/magdeburg-7/session/2023-02-16/voting/6
/ep/magdeburg-7/session/2023-02-16/voting/7
/ep/magdeburg-7/session/2023-02-16/voting/8
/ep/magdeburg-7/session/2023-02-16/voting/9
/ep/magdeburg-7/session/2023-02-16/voting/10
/ep/magdeburg-7/session/2023-02-16/voting/11
/ep/magdeburg-7/session/2023-02-16/voting/12
/ep/magdeburg-7/session/2023-02-16/voting/13
/ep/magdeburg-7/session/2023-02-16/voting/14
/ep/magdeburg-7/session/2023-02-16/voting/15
/ep/magdeburg-7/session/2023-02-16/voting/16
/ep/magdeburg-7/session/2023-02-16/voting/17
/ep/magdeburg-7/session/2023-02-16/voting/18
/ep/magdeburg-7/session/2023-02-16/voting/19
/ep/magdeburg-7/session/2023-02-16/voting/20
/ep/magdeburg-7/session/2023-02-16/voting/21
/ep/magdeburg-7/session/2023-02-16/voting/22
/ep/magdeburg-7/session/2023-02-16/voting/23
/ep/magdeburg-7/session/2023-02-16/voting/24
/ep/magdeburg-7/session/2023-02-16/voting/25
/ep/magdeburg-7/session/2023-02-16/voting/26
/ep/magdeburg-7/session/2023-02-16/voting/27
/ep/magdeburg-7/session/2023-02-16/voting/28
/ep/magdeburg-7/session/2023-02-16/voting/29
/ep/magdeburg-7/session/2023-02-16/voting/30
/ep/magdeburg-7/session/2023-02-16/voting/31
/ep/magdeburg-7/session/2023-02-16/voting/32
/ep/magdeburg-7/session/2023-02-16/voting/33
/ep/magdeburg-7/session/2023-02-16/voting/34
/ep/magdeburg-7/session/2023-02-16/voting/35
/ep/magdeburg-7/session/2023-02-16/voting/36
/ep/magdeburg-7/session/2023-02-16/voting/37
/ep/magdeburg-7/session/2023-02-16/voting/38
/ep/magdeburg-7/session/2023-02-16/voting/39
/ep/magdeburg-7/session/2023-02-16/voting/40
/ep/magdeburg-7/session/2023-02-16/voting/41
/ep/magdeburg-7/session/2023-02-16/voting/42
/ep/magdeburg-7/session/2023-02-16/voting/43
/ep/magdeburg-7/session/2023-02-16/voting/44
/ep/magdeburg-7/session/2023-02-16/voting/45
/ep/magdeburg-7/session/2023-02-16/voting/46
/ep/magdeburg-7/session/2023-02-16/voting/47
/ep/magdeburg-7/session/2023-02-16/voting/48
/ep/magdeburg-7/session/2023-02-16/voting/49
/ep/magdeburg-7/session/2023-02-16/voting/50
/ep/magdeburg-7/session/2023-02-16/voting/51
/ep/magdeburg-7/session/2023-02-16/voting/52
/ep/magdeburg-7/session/2023-02-16/voting/53
/ep/magdeburg-7/session/2023-02-16/voting/54
/ep/magdeburg-7/session/2023-02-16/voting/55
/ep/magdeburg-7/session/2023-02-16/voting/56
/ep/magdeburg-7/session/2023-02-16/voting/57
/ep/magdeburg-7/session/2023-02-16/voting/58
/ep/magdeburg-7/session/2023-02-16/voting/59
/ep/magdeburg-7/session/2023-02-16/voting/60
/ep/magdeburg-7/session/2023-02-16/voting/61
/ep/magdeburg-7/session/2023-02-16/voting/62
/ep/magdeburg-7/session/2023-02-16/voting/63
/ep/magdeburg-7/session/2023-02-16/voting/64
/ep/magdeburg-7/session/2023-02-16/voting/65
/ep/magdeburg-7/session/2023-02-16/voting/66
/ep/magdeburg-7/session/2023-02-16/voting/67
/ep/magdeburg-7/session/2023-02-16/voting/68
/ep/magdeburg-7/session/2023-02-16/voting/69
/ep/magdeburg-7/session/2023-03-16/voting/1
/ep/magdeburg-7/session/2023-03-16/voting/2
/ep/magdeburg-7/session/2023-03-16/voting/3
/ep/magdeburg-7/session/2023-03-16/voting/4
/ep/magdeburg-7/session/2023-03-16/voting/5
/ep/magdeburg-7/session/2023-03-16/voting/6
/ep/magdeburg-7/session/2023-03-16/voting/7
/ep/magdeburg-7/session/2023-03-16/voting/8
/ep/magdeburg-7/session/2023-03-16/voting/9
/ep/magdeburg-7/session/2023-03-16/voting/10
/ep/magdeburg-7/session/2023-03-16/voting/11
/ep/magdeburg-7/session/2023-03-16/voting/12
/ep/magdeburg-7/session/2023-03-16/voting/13
/ep/magdeburg-7/session/2023-03-16/voting/14
/ep/magdeburg-7/session/2023-03-16/voting/15
/ep/magdeburg-7/session/2023-03-16/voting/16
/ep/magdeburg-7/session/2023-03-16/voting/17
/ep/magdeburg-7/session/2023-03-16/voting/18
/ep/magdeburg-7/session/2023-03-16/voting/19
/ep/magdeburg-7/session/2023-03-16/voting/20
/ep/magdeburg-7/session/2023-03-16/voting/21
/ep/magdeburg-7/session/2023-03-16/voting/22
/ep/magdeburg-7/session/2023-03-16/voting/23
/ep/magdeburg-7/session/2023-03-16/voting/24
/ep/magdeburg-7/session/2023-03-16/voting/25
/ep/magdeburg-7/session/2023-03-16/voting/26
/ep/magdeburg-7/session/2023-03-16/voting/27
/ep/magdeburg-7/session/2023-03-16/voting/28
/ep/magdeburg-7/session/2023-03-16/voting/29
/ep/magdeburg-7/session/2023-03-16/voting/30
/ep/magdeburg-7/session/2023-03-16/voting/31
/ep/magdeburg-7/session/2023-03-16/voting/32
/ep/magdeburg-7/session/2023-03-16/voting/33
/ep/magdeburg-7/session/2023-03-16/voting/34
/ep/magdeburg-7/session/2023-03-16/voting/35
/ep/magdeburg-7/session/2023-03-16/voting/36
/ep/magdeburg-7/session/2023-03-16/voting/37
/ep/magdeburg-7/session/2023-03-16/voting/38
/ep/magdeburg-7/session/2023-03-16/voting/39
/ep/magdeburg-7/session/2023-03-16/voting/40
/ep/magdeburg-7/session/2023-03-16/voting/41
/ep/magdeburg-7/session/2023-03-16/voting/42
/ep/magdeburg-7/session/2023-03-16/voting/43
/ep/magdeburg-7/session/2023-03-16/voting/44
/ep/magdeburg-7/session/2023-03-16/voting/45
/ep/magdeburg-7/session/2023-03-16/voting/46
/ep/magdeburg-7/session/2023-03-16/voting/47
/ep/magdeburg-7/session/2023-03-16/voting/48
/ep/magdeburg-7/session/2023-03-16/voting/49
/ep/magdeburg-7/session/2023-03-16/voting/50
/ep/magdeburg-7/session/2023-03-16/voting/51
/ep/magdeburg-7/session/2023-03-16/voting/52
/ep/magdeburg-7/session/2023-03-16/voting/53
/ep/magdeburg-7/session/2023-03-16/voting/54
/ep/magdeburg-7/session/2023-03-16/voting/55
/ep/magdeburg-7/session/2023-03-16/voting/56
/ep/magdeburg-7/session/2023-03-16/voting/57
/ep/magdeburg-7/session/2023-03-16/voting/58
/ep/magdeburg-7/session/2023-03-16/voting/59
/ep/magdeburg-7/session/2023-03-16/voting/60
/ep/magdeburg-7/session/2023-03-16/voting/61
/ep/magdeburg-7/session/2023-03-16/voting/62
/ep/magdeburg-7/session/2023-03-16/voting/63
/ep/magdeburg-7/session/2023-04-20/voting/1
/ep/magdeburg-7/session/2023-04-20/voting/2
/ep/magdeburg-7/session/2023-04-20/voting/3
/ep/magdeburg-7/session/2023-04-20/voting/4
/ep/magdeburg-7/session/2023-04-20/voting/5
/ep/magdeburg-7/session/2023-04-20/voting/6
/ep/magdeburg-7/session/2023-04-20/voting/7
/ep/magdeburg-7/session/2023-04-20/voting/8
/ep/magdeburg-7/session/2023-04-20/voting/9
/ep/magdeburg-7/session/2023-04-20/voting/10
/ep/magdeburg-7/session/2023-04-20/voting/11
/ep/magdeburg-7/session/2023-04-20/voting/12
/ep/magdeburg-7/session/2023-04-20/voting/13
/ep/magdeburg-7/session/2023-04-20/voting/14
/ep/magdeburg-7/session/2023-04-20/voting/15
/ep/magdeburg-7/session/2023-04-20/voting/16
/ep/magdeburg-7/session/2023-04-20/voting/17
/ep/magdeburg-7/session/2023-04-20/voting/18
/ep/magdeburg-7/session/2023-04-20/voting/19
/ep/magdeburg-7/session/2023-04-20/voting/20
/ep/magdeburg-7/session/2023-04-20/voting/21
/ep/magdeburg-7/session/2023-04-20/voting/22
/ep/magdeburg-7/session/2023-04-20/voting/23
/ep/magdeburg-7/session/2023-04-20/voting/24
/ep/magdeburg-7/session/2023-04-20/voting/25
/ep/magdeburg-7/session/2023-04-20/voting/26
/ep/magdeburg-7/session/2023-04-20/voting/27
/ep/magdeburg-7/session/2023-04-20/voting/28
/ep/magdeburg-7/session/2023-04-20/voting/29
/ep/magdeburg-7/session/2023-04-20/voting/30
/ep/magdeburg-7/session/2023-04-20/voting/31
/ep/magdeburg-7/session/2023-04-20/voting/32
/ep/magdeburg-7/session/2023-04-20/voting/33
/ep/magdeburg-7/session/2023-04-20/voting/34
/ep/magdeburg-7/session/2023-04-20/voting/35
/ep/magdeburg-7/session/2023-04-20/voting/36
/ep/magdeburg-7/session/2023-04-20/voting/37
/ep/magdeburg-7/session/2023-04-20/voting/38
/ep/magdeburg-7/session/2023-04-20/voting/39
/ep/magdeburg-7/session/2023-04-20/voting/40
/ep/magdeburg-7/session/2023-04-20/voting/41
/ep/magdeburg-7/session/2023-04-20/voting/42
/ep/magdeburg-7/session/2023-04-20/voting/43
/ep/magdeburg-7/session/2023-04-20/voting/44
/ep/magdeburg-7/session/2023-04-20/voting/45
/ep/magdeburg-7/session/2023-04-20/voting/46
/ep/magdeburg-7/session/2023-04-20/voting/47
/ep/magdeburg-7/session/2023-04-20/voting/48
/ep/magdeburg-7/session/2023-04-20/voting/49
/ep/magdeburg-7/session/2023-04-20/voting/50
/ep/magdeburg-7/session/2023-04-20/voting/51
/ep/magdeburg-7/session/2023-04-20/voting/52
/ep/magdeburg-7/session/2023-04-20/voting/53
/ep/magdeburg-7/session/2023-04-20/voting/54
/ep/magdeburg-7/session/2023-04-24/voting/1
/ep/magdeburg-7/session/2023-04-24/voting/2
/ep/magdeburg-7/session/2023-04-24/voting/3
/ep/magdeburg-7/session/2023-04-24/voting/4
/ep/magdeburg-7/session/2023-04-24/voting/5
/ep/magdeburg-7/session/2023-04-24/voting/6
/ep/magdeburg-7/session/2023-04-24/voting/7
/ep/magdeburg-7/session/2023-04-24/voting/8
/ep/magdeburg-7/session/2023-04-24/voting/9
/ep/magdeburg-7/session/2023-04-24/voting/10
/ep/magdeburg-7/session/2023-04-24/voting/11
/ep/magdeburg-7/session/2023-04-24/voting/12
/ep/magdeburg-7/session/2023-04-24/voting/13
/ep/magdeburg-7/session/2023-04-24/voting/14
/ep/magdeburg-7/session/2023-04-24/voting/15
/ep/magdeburg-7/session/2023-04-24/voting/16
/ep/magdeburg-7/session/2023-04-24/voting/17
/ep/magdeburg-7/session/2023-04-24/voting/18
/ep/magdeburg-7/session/2023-04-24/voting/19
/ep/magdeburg-7/session/2023-04-24/voting/20
/ep/magdeburg-7/session/2023-04-24/voting/21
/ep/magdeburg-7/session/2023-04-24/voting/22
/ep/magdeburg-7/session/2023-04-24/voting/23
/ep/magdeburg-7/session/2023-04-24/voting/24
/ep/magdeburg-7/session/2023-04-24/voting/25
/ep/magdeburg-7/session/2023-04-24/voting/26
/ep/magdeburg-7/session/2023-04-24/voting/27
/ep/magdeburg-7/session/2023-04-24/voting/28
/ep/magdeburg-7/session/2023-04-24/voting/29
/ep/magdeburg-7/session/2023-04-24/voting/30
/ep/magdeburg-7/session/2023-04-24/voting/31
/ep/magdeburg-7/session/2023-04-24/voting/32
/ep/magdeburg-7/session/2023-04-24/voting/33
/ep/magdeburg-7/session/2023-04-24/voting/34
/ep/magdeburg-7/session/2023-04-24/voting/35
/ep/magdeburg-7/session/2023-04-24/voting/36
/ep/magdeburg-7/session/2023-04-24/voting/37
/ep/magdeburg-7/session/2023-04-24/voting/38
/ep/magdeburg-7/session/2023-04-24/voting/39
/ep/magdeburg-7/session/2023-04-24/voting/40
/ep/magdeburg-7/session/2023-04-24/voting/41
/ep/magdeburg-7/session/2023-04-24/voting/42
/ep/magdeburg-7/session/2023-04-24/voting/43
/ep/magdeburg-7/session/2023-04-24/voting/44
/ep/magdeburg-7/session/2023-04-24/voting/45
/ep/magdeburg-7/session/2023-04-24/voting/46
/ep/magdeburg-7/session/2023-05-25/voting/1
/ep/magdeburg-7/session/2023-05-25/voting/2
/ep/magdeburg-7/session/2023-05-25/voting/3
/ep/magdeburg-7/session/2023-05-25/voting/4
/ep/magdeburg-7/session/2023-05-25/voting/5
/ep/magdeburg-7/session/2023-05-25/voting/6
/ep/magdeburg-7/session/2023-05-25/voting/7
/ep/magdeburg-7/session/2023-05-25/voting/8
/ep/magdeburg-7/session/2023-05-25/voting/9
/ep/magdeburg-7/session/2023-05-25/voting/10
/ep/magdeburg-7/session/2023-05-25/voting/11
/ep/magdeburg-7/session/2023-05-25/voting/12
/ep/magdeburg-7/session/2023-05-25/voting/13
/ep/magdeburg-7/session/2023-05-25/voting/14
/ep/magdeburg-7/session/2023-05-25/voting/15
/ep/magdeburg-7/session/2023-05-25/voting/16
/ep/magdeburg-7/session/2023-05-25/voting/17
/ep/magdeburg-7/session/2023-05-25/voting/18
/ep/magdeburg-7/session/2023-05-25/voting/19
/ep/magdeburg-7/session/2023-05-25/voting/20
/ep/magdeburg-7/session/2023-05-25/voting/21
/ep/magdeburg-7/session/2023-05-25/voting/22
/ep/magdeburg-7/session/2023-05-25/voting/23
/ep/magdeburg-7/session/2023-05-25/voting/24
/ep/magdeburg-7/session/2023-05-25/voting/25
/ep/magdeburg-7/session/2023-05-25/voting/26
/ep/magdeburg-7/session/2023-05-25/voting/27
/ep/magdeburg-7/session/2023-05-25/voting/28
/ep/magdeburg-7/session/2023-05-25/voting/29
/ep/magdeburg-7/session/2023-05-25/voting/30
/ep/magdeburg-7/session/2023-05-25/voting/31
/ep/magdeburg-7/session/2023-05-25/voting/32
/ep/magdeburg-7/session/2023-05-25/voting/33
/ep/magdeburg-7/session/2023-05-25/voting/34
/ep/magdeburg-7/session/2023-05-25/voting/35
/ep/magdeburg-7/session/2023-05-25/voting/36
/ep/magdeburg-7/session/2023-05-25/voting/37
/ep/magdeburg-7/session/2023-05-25/voting/38
/ep/magdeburg-7/session/2023-05-25/voting/39
/ep/magdeburg-7/session/2023-05-25/voting/40
/ep/magdeburg-7/session/2023-05-25/voting/41
/ep/magdeburg-7/session/2023-05-25/voting/42
/ep/magdeburg-7/session/2023-05-25/voting/43
/ep/magdeburg-7/session/2023-05-25/voting/44
/ep/magdeburg-7/session/2023-05-25/voting/45
/ep/magdeburg-7/session/2023-05-25/voting/46
/ep/magdeburg-7/session/2023-05-25/voting/47
/ep/magdeburg-7/session/2023-05-25/voting/48
/ep/magdeburg-7/session/2023-05-25/voting/49
/ep/magdeburg-7/session/2023-05-25/voting/50
/ep/magdeburg-7/session/2023-05-25/voting/51
/ep/magdeburg-7/session/2023-05-25/voting/52
/ep/magdeburg-7/session/2023-05-25/voting/53
/ep/magdeburg-7/session/2023-05-25/voting/54
/ep/magdeburg-7/session/2023-05-25/voting/55
/ep/magdeburg-7/session/2023-05-25/voting/56
/ep/magdeburg-7/session/2023-05-25/voting/57
/ep/magdeburg-7/session/2023-05-25/voting/58
/ep/magdeburg-7/session/2023-05-25/voting/59
/ep/magdeburg-7/session/2023-05-25/voting/60
/ep/magdeburg-7/session/2023-05-25/voting/61
/ep/magdeburg-7/session/2023-05-25/voting/62
/ep/magdeburg-7/session/2023-05-25/voting/63
/ep/magdeburg-7/session/2023-05-25/voting/64
/ep/magdeburg-7/session/2023-05-25/voting/65
/ep/magdeburg-7/session/2023-05-25/voting/66
/ep/magdeburg-7/session/2023-05-25/voting/67
/ep/magdeburg-7/session/2023-05-25/voting/68
/ep/magdeburg-7/session/2023-05-25/voting/69
/ep/magdeburg-7/session/2023-05-25/voting/70
/ep/magdeburg-7/session/2023-05-25/voting/71
/ep/magdeburg-7/session/2023-05-25/voting/72
/ep/magdeburg-7/session/2023-05-25/voting/73
/ep/magdeburg-7/session/2023-05-25/voting/74
/ep/magdeburg-7/session/2023-05-30/voting/1
/ep/magdeburg-7/session/2023-05-30/voting/2
/ep/magdeburg-7/session/2023-05-30/voting/3
/ep/magdeburg-7/session/2023-05-30/voting/4
/ep/magdeburg-7/session/2023-05-30/voting/5
/ep/magdeburg-7/session/2023-05-30/voting/6
/ep/magdeburg-7/session/2023-05-30/voting/7
/ep/magdeburg-7/session/2023-05-30/voting/8
/ep/magdeburg-7/session/2023-05-30/voting/9
/ep/magdeburg-7/session/2023-05-30/voting/10
/ep/magdeburg-7/session/2023-05-30/voting/11
/ep/magdeburg-7/session/2023-05-30/voting/12
/ep/magdeburg-7/session/2023-05-30/voting/13
/ep/magdeburg-7/session/2023-05-30/voting/14
/ep/magdeburg-7/session/2023-05-30/voting/15
/ep/magdeburg-7/session/2023-05-30/voting/16
/ep/magdeburg-7/session/2023-05-30/voting/17
/ep/magdeburg-7/session/2023-05-30/voting/18
/ep/magdeburg-7/session/2023-05-30/voting/19
/ep/magdeburg-7/session/2023-05-30/voting/20
/ep/magdeburg-7/session/2023-05-30/voting/21
/ep/magdeburg-7/session/2023-05-30/voting/22
/ep/magdeburg-7/session/2023-05-30/voting/23
/ep/magdeburg-7/session/2023-05-30/voting/24
/ep/magdeburg-7/session/2023-05-30/voting/25
/ep/magdeburg-7/session/2023-05-30/voting/26
/ep/magdeburg-7/session/2023-05-30/voting/27
/ep/magdeburg-7/session/2023-05-30/voting/28
/ep/magdeburg-7/session/2023-05-30/voting/29
/ep/magdeburg-7/session/2023-05-30/voting/30
/ep/magdeburg-7/session/2023-05-30/voting/31
/ep/magdeburg-7/session/2023-05-30/voting/32
/ep/magdeburg-7/session/2023-05-30/voting/33
/ep/magdeburg-7/session/2023-05-30/voting/34
/ep/magdeburg-7/session/2023-05-30/voting/35
/ep/magdeburg-7/session/2023-05-30/voting/36
/ep/magdeburg-7/session/2023-05-30/voting/37
/ep/magdeburg-7/session/2023-05-30/voting/38
/ep/magdeburg-7/session/2023-05-30/voting/39
/ep/magdeburg-7/session/2023-05-30/voting/40
/ep/magdeburg-7/session/2023-05-30/voting/41
/ep/magdeburg-7/session/2023-05-30/voting/42
/ep/magdeburg-7/session/2023-05-30/voting/43
/ep/magdeburg-7/session/2023-05-30/voting/44
/ep/magdeburg-7/session/2023-05-30/voting/45
/ep/magdeburg-7/session/2023-05-30/voting/46
/ep/magdeburg-7/session/2023-05-30/voting/47
/ep/magdeburg-7/session/2023-06-22/voting/1
/ep/magdeburg-7/session/2023-06-22/voting/2
/ep/magdeburg-7/session/2023-06-22/voting/3
/ep/magdeburg-7/session/2023-06-22/voting/4
/ep/magdeburg-7/session/2023-06-22/voting/5
/ep/magdeburg-7/session/2023-06-22/voting/6
/ep/magdeburg-7/session/2023-06-22/voting/7
/ep/magdeburg-7/session/2023-06-22/voting/8
/ep/magdeburg-7/session/2023-06-22/voting/9
/ep/magdeburg-7/session/2023-06-22/voting/10
/ep/magdeburg-7/session/2023-06-22/voting/11
/ep/magdeburg-7/session/2023-06-22/voting/12
/ep/magdeburg-7/session/2023-06-22/voting/13
/ep/magdeburg-7/session/2023-06-22/voting/14
/ep/magdeburg-7/session/2023-06-22/voting/15
/ep/magdeburg-7/session/2023-06-22/voting/16
/ep/magdeburg-7/session/2023-06-22/voting/17
/ep/magdeburg-7/session/2023-06-22/voting/18
/ep/magdeburg-7/session/2023-06-22/voting/19
/ep/magdeburg-7/session/2023-06-22/voting/20
/ep/magdeburg-7/session/2023-06-22/voting/21
/ep/magdeburg-7/session/2023-06-26/voting/1
/ep/magdeburg-7/session/2023-06-26/voting/2
/ep/magdeburg-7/session/2023-06-26/voting/3
/ep/magdeburg-7/session/2023-06-26/voting/4
/ep/magdeburg-7/session/2023-06-26/voting/5
/ep/magdeburg-7/session/2023-06-26/voting/6
/ep/magdeburg-7/session/2023-06-26/voting/7
/ep/magdeburg-7/session/2023-06-26/voting/8
/ep/magdeburg-7/session/2023-06-26/voting/9
/ep/magdeburg-7/session/2023-06-26/voting/10
/ep/magdeburg-7/session/2023-06-26/voting/11
/ep/magdeburg-7/session/2023-06-26/voting/12
/ep/magdeburg-7/session/2023-06-26/voting/13
/ep/magdeburg-7/session/2023-06-26/voting/14
/ep/magdeburg-7/session/2023-06-26/voting/15
/ep/magdeburg-7/session/2023-06-26/voting/16
/ep/magdeburg-7/session/2023-06-26/voting/17
/ep/magdeburg-7/session/2023-06-26/voting/18
/ep/magdeburg-7/session/2023-06-26/voting/19
/ep/magdeburg-7/session/2023-06-26/voting/20
/ep/magdeburg-7/session/2023-06-26/voting/21
/ep/magdeburg-7/session/2023-06-26/voting/22
/ep/magdeburg-7/session/2023-06-26/voting/23
/ep/magdeburg-7/session/2023-06-26/voting/24
/ep/magdeburg-7/session/2023-06-26/voting/25
/ep/magdeburg-7/session/2023-06-26/voting/26
/ep/magdeburg-7/session/2023-06-26/voting/27
/ep/magdeburg-7/session/2023-06-26/voting/28
/ep/magdeburg-7/session/2023-06-26/voting/29
/ep/magdeburg-7/session/2023-06-26/voting/30
/ep/magdeburg-7/session/2023-06-26/voting/31
/ep/magdeburg-7/session/2023-06-26/voting/32