-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.xml
12978 lines (12978 loc) · 806 KB
/
index.xml
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
<index version="1">
<manifest-source>
<url>https://academic.preproduccio.uib.cat:2443/ewp/rest/manifest.xml</url>
<local-path-prefix>manifests/cat/academic.preproduccio.uib.cat/26fef43a8e33d9b98e1c595388bedc433f2ac81b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://academic.preproduccio.uib.es:2443/ewp/rest/manifest.xml</url>
<local-path-prefix>manifests/es/academic.preproduccio.uib.es/8cc6735a2a23e09839317d3fe75360017e9954e4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://academicos.ipvc.pt/rmobilidadenet/ewp/ewpstage/manifest</url>
<local-path-prefix>manifests/pt/academicos.ipvc.pt/2e3d8f048e141c855136fe205951bb41e646ec39</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://acc-ewp.uhasselt.be/manifest.xml</url>
<local-path-prefix>manifests/be/acc-ewp.uhasselt.be/63a695066a18d66b39036ea5326590e68a9d8b2a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://acc-ewp.uhasselt.be/tul.edu/manifest.xml</url>
<local-path-prefix>manifests/be/acc-ewp.uhasselt.be/3ce4f026848c2f174f6fea1b14ba520f65ca5411</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://acc-ewp.uhasselt.be/uhasselt.be/manifest.xml</url>
<local-path-prefix>manifests/be/acc-ewp.uhasselt.be/b64842ad9783920c0b89ee32f99b239a330e08ca</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://akademus-ewp-dev.asp.gda.pl/source/manifest.xml</url>
<local-path-prefix>manifests/pl/akademus-ewp-dev.asp.gda.pl/1cbe4e5923df35a33be04c0ab96e7a71a110ba88</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://akademus.asp.gda.pl/api/ewp-dev/manifest.xml</url>
<local-path-prefix>manifests/pl/akademus.asp.gda.pl/06c310e92bfa7b875aa70cee3646601cec197b81</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://alerts.terradotta.com/agr-network-api/v1/ewp/manifest</url>
<local-path-prefix>manifests/com/alerts.terradotta.com/9e0d84b3a56ada0eab17a2582da4d8b8272d43fc</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://aplitest.upv.es/ewpcv/discovery</url>
<local-path-prefix>manifests/es/aplitest.upv.es/3de3a79e0420a4df472adfd0ef7e2df29cc6d866</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://app-acewp-ld-wp.uxxi.net/ewp/api/manifest</url>
<local-path-prefix>manifests/net/app-acewp-ld-wp.uxxi.net/989a2525dcad287fd83336cbf676ad647cb618e1</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://app-demo.ehu.eus/ewp/manifest.xml</url>
<local-path-prefix>manifests/eus/app-demo.ehu.eus/e460ad1d4360fab0ddbc645ab4ba05667cbf911a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://app-pre.ehu.eus/ewp/manifest.xml</url>
<local-path-prefix>manifests/eus/app-pre.ehu.eus/cbe1da4b375030fdb1202a41a41c1d2d295328c5</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://app-staging.studemy.com/ewp/api/usamvcluj/discovery</url>
<local-path-prefix>manifests/com/app-staging.studemy.com/7d1da266a893fefd18d246fb8554ae50753fd50d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://app.ehu.eus/ewp-dev/manifest.xml</url>
<local-path-prefix>manifests/eus/app.ehu.eus/786d9e68f47d4a92f7a26f6f402a80e3dde6b4b2</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://app.erasmus.ankara.edu.tr/ewp/ankara/test/manifest.xml</url>
<local-path-prefix>manifests/tr/app.erasmus.ankara.edu.tr/bbe16d5ae3be2f5526f100f458d0461ae6e91a0b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://apps.udg.edu/ewpapitest/discovery</url>
<local-path-prefix>manifests/edu/apps.udg.edu/a4fd43247b17556d277a53100bbe389f9f6ec0f9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://apps.udg.edu:1443/ewpapitest/discovery</url>
<local-path-prefix>manifests/edu/apps.udg.edu/bf6c793324fe27e47eee44dc1b57691d13f8fa80</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://apps.uniroma3.it/public/erasmus/ewp-test/manifest.xml</url>
<local-path-prefix>manifests/it/apps.uniroma3.it/5b9be49392be88663f90b86a684c01675278f927</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://artemis.ugr.es/ewp/manifest</url>
<local-path-prefix>manifests/es/artemis.ugr.es/8e7d7d6d12140514b472440781342467a653a6b3</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://artemisd.ugr.es/ewp/manifest</url>
<local-path-prefix>manifests/es/artemisd.ugr.es/dfbe3256a63575f14e8b688be13fcf2d0d7606ba</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://authewp.it.auth.gr/ewp/rest/manifest</url>
<local-path-prefix>manifests/gr/authewp.it.auth.gr/8ef57b23f0b26a80b184afcecec3cb298526ea78</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://authewp.it.auth.gr/public-api/discovery/manifest.xml</url>
<local-path-prefix>manifests/gr/authewp.it.auth.gr/53dc3c4988145fbb407137b01d25c3ffa64696a4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://bach.wu.ac.at/z/ewp/manifest</url>
<local-path-prefix>manifests/at/bach.wu.ac.at/39731e20638787efc07c40c18aafabab07fb366b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://bach.wu.ac.at/zopevc/test/ewp/manifest</url>
<local-path-prefix>manifests/at/bach.wu.ac.at/ac4276ed6dc348c2f876664bc0fc3c159eaeaaa6</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://bwze.ug.edu.pl/ewp/test/manifest.xml</url>
<local-path-prefix>manifests/pl/bwze.ug.edu.pl/7a05c7920e4bb1aa8ddb91c075f7126053880b3e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://c4-erasmusapi.clouda.edu.pl/api/v1/manifest</url>
<local-path-prefix>manifests/pl/c4-erasmusapi.clouda.edu.pl/dea8bfd152a2b6494dc6ff7a3a3ef1927efff8ee</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://cvnet.cpd.ua.es/interoperabilidad/api/EWP/Manifest-dev</url>
<local-path-prefix>manifests/es/cvnet.cpd.ua.es/aa14e481ca6ebd723cbcae25c7718329cbbb8638</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://czuewp.is4u.cz/ewp/manifest.pl</url>
<local-path-prefix>manifests/cz/czuewp.is4u.cz/e7c776d293f6595099283f22817dd71ed329bf16</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://demo.campus.uni-freiburg.de/emrex_test/manifest.xml</url>
<local-path-prefix>manifests/de/demo.campus.uni-freiburg.de/d9e70505171ee514015b58e229e648f3c8254f19</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://demo.isois.ois.muni.cz/en/ewp/manifest/</url>
<local-path-prefix>manifests/cz/demo.isois.ois.muni.cz/e71c959aeaf15fabae75a04d9845e044a8a6233c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://demo03.extutv.ladok.se:442/ewp/manifest.xml</url>
<local-path-prefix>manifests/se/demo03.extutv.ladok.se/c8292d2b6c41c7ae380f166c86b4afe605463759</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://demo1-ewp.demo.moveon4.com/v1/manifest</url>
<local-path-prefix>manifests/com/demo1-ewp.demo.moveon4.com/df5309b5a73c3af1a2ae5750699ffe8bb0d56e57</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://demostag.osu.cz/ws/services/ewp/manifest</url>
<local-path-prefix>manifests/cz/demostag.osu.cz/5beccfdddf687d8c591fb869634b803d6ce40898</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://demostag.osu.cz:8843/ws/services/ewp/manifest</url>
<local-path-prefix>manifests/cz/demostag.osu.cz/128f298c18aaf3aeca548ab66cfacf2056ada8d5</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://deustotest.sigmaaie.org/ewp/rest/manifest.xml</url>
<local-path-prefix>manifests/org/deustotest.sigmaaie.org/8d8b16872ba3191d94027b2ff4425e1c25c17641</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://deustovp.sigmaaie.org/ewp/rest/manifest.xml</url>
<local-path-prefix>manifests/org/deustovp.sigmaaie.org/46fc3ce220fbed3a9ef82b104acc7b9899a4d7da</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-ewp-api.vut.cz/ewp/manifest.xml</url>
<local-path-prefix>manifests/cz/dev-ewp-api.vut.cz/864bc80c8b927498d12ffcfc5576d8fe4f7e4be6</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-ewp.uci.pb.edu.pl/EWP/manifest</url>
<local-path-prefix>manifests/pl/dev-ewp.uci.pb.edu.pl/088fb82d87573f58734f449162c9d7c79d873ef5</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-ewp.ucv.es/discovery</url>
<local-path-prefix>manifests/es/dev-ewp.ucv.es/79162ecc897fd2d9663435a8f0cd58eed2840464</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-ewp.ug.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/dev-ewp.ug.edu.pl/78d1c6c7e0a63adee561f5e9b86d5e14ef23b58a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-irk2.uci.pb.edu.pl/ewp/manifest/</url>
<local-path-prefix>manifests/pl/dev-irk2.uci.pb.edu.pl/1ebf7b34d3a488ca32a182bac2df4e1179cfc2d8</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-registry.erasmuswithoutpaper.eu/manifest-primaryValidatorHei1.xml</url>
<local-path-prefix>manifests/eu/dev-registry.erasmuswithoutpaper.eu/067db6f1fe9cea3aedb29e5723ddc4799a14eb2f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-registry.erasmuswithoutpaper.eu/manifest-primaryValidatorHei2.xml</url>
<local-path-prefix>manifests/eu/dev-registry.erasmuswithoutpaper.eu/d255d02f7946b2bbedf11baba22d7b8d602634c4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-registry.erasmuswithoutpaper.eu/manifest-registry.xml</url>
<local-path-prefix>manifests/eu/dev-registry.erasmuswithoutpaper.eu/47cc104cf04812a2a55f91e83d687a9f10db135e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-registry.erasmuswithoutpaper.eu/manifest-secondaryValidator.xml</url>
<local-path-prefix>manifests/eu/dev-registry.erasmuswithoutpaper.eu/5ac4ecc50d5e5561b7c942cb35127b37871ff195</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-registry.erasmuswithoutpaper.eu/manifest.xml</url>
<local-path-prefix>manifests/eu/dev-registry.erasmuswithoutpaper.eu/3ed454465aefeef6ca2892615825c441c0bdc734</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev-stats.erasmuswithoutpaper.eu/ewp/manifest/</url>
<local-path-prefix>manifests/eu/dev-stats.erasmuswithoutpaper.eu/3523a65d9bcdfa2b14acc7d67466ee166a203cc2</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.aec-ewp.eu/v1/manifest</url>
<local-path-prefix>manifests/eu/dev.aec-ewp.eu/1d679181fff00e7839d0c1a7486375c877779703</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.erasmus.upb.ro/devmanifest.xml</url>
<local-path-prefix>manifests/ro/dev.erasmus.upb.ro/0385aab4c5466dc90285005c524d14584fb28929</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.erasmus.upb.ro/main/devmanifest.xml</url>
<local-path-prefix>manifests/ro/dev.erasmus.upb.ro/d4dca70aeac1cff49501162675a23974327f2bed</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/92fb7f5dacd62f45915c048545f6a19b2de66237</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/acibadem</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/3bd52d9142ed22a6cc6a3bf0a7c2f59ff3e9340e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/aku</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/9813f7bd59a23a6a842fd52fa411e508d757fe8b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/altinbas</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/f8df932884f27a79a203f8bd56d784bc93bf00ad</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/bau</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/0fc96a290bfbbc420bc88f73a16562f66afc241f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/bezmialem</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/f44a0e88d6ccd728e5427f4615b4f1b2bea366b0</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/bilgi</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/6723edae8206af3f0cee17f8e8dbbdd4b472be97</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/deu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/17627c1e7f3921cef60718d69b16837536d87642</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/duzce</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/d85c25f17a968e4702b92031d8c5163b7d6c19eb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/ebyu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/ad792af72a0496c361a991aff88e6d7c13a9ee4f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/erciyes</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/01147602b244f6ef4a2062aae4754a04eb5a903f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/fsm</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/6d8d0b825966bd4cb68b007808ca36b7d0703b3d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/gop</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/7afb50bb1bd8af6c4517343facc29c28e9068cdb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/hku</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/95834cbad63a930a49875ce673b6431bb258ec6e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/ihu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/003b8f9d1bfe9591ea740c2361448f49220d7d31</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/iku</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/3522eb98f14d55c67f555b1c06d02e29d6562bb6</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/isikun</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/923e0aadca31402c35f5db1c39d36a20333a49ee</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/itu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/dea5b48efbcbff8871467aa989985111fb3ed11c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/izmirekonomi</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/e18c1f731ab7bfcb9796ee48d9a939c650880c15</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/jsga</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/aa74f98aeac01352d9acf09c45b13fdde14f1fbf</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/karabuk</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/a45df8153b23fadc8af0fadb6d71c1ba6f770c34</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/karatay</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/4e3246e70efe5d3d291eec7df99867f41cb7fbd9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/kastamonu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/94359fcee6bc9e3f116ab66cc5c2e48d8ec553b1</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/kayseri</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/eaf84228a98965b555ba1e1f0d05a4900ab9b2db</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/kion</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/804cd1962287f98af5a6bfbe6a02da660e6542ca</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/ku</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/9458580863e98da23a6dc383a9e0c67b403366cf</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/maltepe</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/e6abdd8e3d4c230fdb262f1dcc38b090f638477c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/mgu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/0fabcbaf145569b369863672ed18ad2e3c7049f5</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/mku</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/e32313c354c9a1627885fdc298c306d6c844165e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/msgsu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/251ca76f32dc68cbf7ccd66e69d87c8c4aa60e82</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/nevsehir</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/e1e62b36c4f16afcf21b8fb3ec2ca7a650cc1eba</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/okan</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/23e41fddf6e79457d0fda83d2d53c8cdc1c88019</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/ostimteknik</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/37d1e59453a7618f0734f0d5efc524fda170cad4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/ozyegin</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/70e37d40aec66d9ce060dbe1406f2580842f0d32</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/sdu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/89510a32522c647b9039f16d05220d7edd271604</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/selcuk</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/87d9cf398b7eab5b31464956e2019c172f3ebf6b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/sisli</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/ccbc86b9650c4def8996dca8db92f6f53c005c12</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/tau</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/44c2fd8413c026d0a31ec3f18b0538a323e1e400</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/tedu</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/67e4a99d0a15c8394e4701bc608d9abc79bbd3f9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/ticaret</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/9ea63cec348b76c85a73ec263cc081f03c395c43</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/uskudar</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/7fb5a1884360bd8c156bf7c9ee6e74a8560f5da9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/yeditepe</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/1ee96c1d7683e06bc2f09ad9066b609d5b4ef2e4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://dev.ewp.kion.com.tr/api/manifest/yildiz</url>
<local-path-prefix>manifests/tr/dev.ewp.kion.com.tr/b8d126fc1b62ca340e5b362170c3364fb151bf3b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://devmobion.fil.bg.ac.rs/api/ewpdev/manifest</url>
<local-path-prefix>manifests/rs/devmobion.fil.bg.ac.rs/a4ce8161fb441b561ae324de63604d54d34039e1</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://didatticatest.unistrasi.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/didatticatest.unistrasi.it/73738381d4f11ad942a0c51052eb260ba0e356ba</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://edison.sso.vsb.cz/ewp/test/manifest.xml</url>
<local-path-prefix>manifests/cz/edison.sso.vsb.cz/b639d0550c5a4efde5a0500bdb8b0b3e37a71490</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://emrex-test.ediplomas.gr/manifest.xml</url>
<local-path-prefix>manifests/gr/emrex-test.ediplomas.gr/21d70d8ff0be44ede87609cd2ece8aae411307bd</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://emrex-test.studij.hr/manifest.xml</url>
<local-path-prefix>manifests/hr/emrex-test.studij.hr/afbfa24073ffd451081a75e62c49fdb5eecd3169</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://emrex.hs-harz.de/manifest.xml</url>
<local-path-prefix>manifests/de/emrex.hs-harz.de/a6b2f8efed5cc467b84ea2da378c67c3619f8def</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://emrex.studij.hr/manifest.xml</url>
<local-path-prefix>manifests/hr/emrex.studij.hr/da256f2e87df3a8df1ae782eb71747d4d091e632</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ensino.digitalis.pt/mobilidadenet/doc/ewpstage/manifest</url>
<local-path-prefix>manifests/pt/ensino.digitalis.pt/7bfba008c0ff9b94ad775878cf15a905418e717a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ensino.digitalis.pt/mobilidadenet/ewp/ewpstage/manifest</url>
<local-path-prefix>manifests/pt/ensino.digitalis.pt/a8cd2df7eb96d9beaa8d921c95ee7f1c3a3a4cb0</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus-bld.is.cuni.cz/simplifyworks/public/ewp/manifest</url>
<local-path-prefix>manifests/cz/erasmus-bld.is.cuni.cz/a9a3c79e005b77132eba704f7915f90a5ffc6a28</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus-tst.is.cuni.cz/simplifyworks/public/ewp/manifest</url>
<local-path-prefix>manifests/cz/erasmus-tst.is.cuni.cz/076d882fc174f49a68da8b69a6c7e860c5116910</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus-tst6.is.cuni.cz/simplifyworks/public/ewp/manifest</url>
<local-path-prefix>manifests/cz/erasmus-tst6.is.cuni.cz/f17f545f116bf261aa0328ca5e7bbf6aebf3d7ae</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus.upb.ro/dev/devmanifest.xml</url>
<local-path-prefix>manifests/ro/erasmus.upb.ro/581f2a0caa57ec3f24586c2e4d85c193ff5f30b1</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus.upb.ro/dev2/dev2manifest.xml</url>
<local-path-prefix>manifests/ro/erasmus.upb.ro/2bf364f2a1f21d6fb47e5bf2b3af4b5a8ecb494e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus.upb.ro/dev2/devmanifest.xml</url>
<local-path-prefix>manifests/ro/erasmus.upb.ro/737da822d37cacc25531e1fd0e24b02a4096b5ca</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmus.upb.ro/manifest.xml</url>
<local-path-prefix>manifests/ro/erasmus.upb.ro/2a52c6c55a8f2673a1c541718b866248e4eb0e12</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmusmobility.unipi.it/ewp-test/manifest.xml</url>
<local-path-prefix>manifests/it/erasmusmobility.unipi.it/de83888ae0105b75e5394e44bbeb59a4220aa981</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmuswithoutpaper.sigmaaie.org:1453/SIGMA_SaaS_HOST.xml</url>
<local-path-prefix>manifests/org/erasmuswithoutpaper.sigmaaie.org/3b6991740e22db096c9e84799103bed92c14eb94</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmuswithoutpaper.sigmaaie.org:1453/UPF_HOST.xml</url>
<local-path-prefix>manifests/org/erasmuswithoutpaper.sigmaaie.org/5aabbd2b04c3a4f4e47f7809ac025bc1aea4e6b3</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://erasmuswithoutpaper.sigmaaie.org:1453/UVA_HOST.xml</url>
<local-path-prefix>manifests/org/erasmuswithoutpaper.sigmaaie.org/a36702251ef9a8c314180439b53d15b1e22ef570</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://esse3-pp.unibs.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/esse3-pp.unibs.it/6853dc6c86fd2bb8ac80c67a7209c76f31254ceb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://esse3.pp.unime.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/esse3.pp.unime.it/e62345d23a5545040574930057d6067c1b56f533</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://esse3beta4.esse3.pp.cineca.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/esse3beta4.esse3.pp.cineca.it/fe3a9a21e54f7d7f12da0aa13a8c2dead09a8a71</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://esse3lb-test.unisa.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/esse3lb-test.unisa.it/f17aa8964a593440ad70203abe974e809fbfc80b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://esse3test.iulm.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/esse3test.iulm.it/287047390731ef8e7f16c8f6b2b7b0665639583c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://esse3test.unimarconi.it/ewp/Manifest.do</url>
<local-path-prefix>manifests/it/esse3test.unimarconi.it/0ee5547e235dc5f64bd26393d45b49b23a3e7ee3</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-cloud.ewp.proacta.pl/manifest</url>
<local-path-prefix>manifests/pl/ewp-cloud.ewp.proacta.pl/bdc772a3d24a07c039cc2c0171cd9a5be4716821</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dashboard-api.besmart.it/api/ewpService/manifest</url>
<local-path-prefix>manifests/it/ewp-dashboard-api.besmart.it/a8b126e55d6bf61cde1daf719fd762b288cc4edb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.pcz.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-dev.pcz.pl/9e0f4f959aca855a141b7908484107451a5f097c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.servizionline.unige.it/erasmus/publics/api/manifest.xml</url>
<local-path-prefix>manifests/it/ewp-dev.servizionline.unige.it/a2bdda6e1d9a6656955b7d030fcdd650030d598d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.ujd.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-dev.ujd.edu.pl/21e8ad3773ba93456fbd3b3b45c26d63c46902f9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.uni.lodz.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-dev.uni.lodz.pl/a17b3caee17f38c389e303a4d58850f87dc9bc1b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.up.pt/rest/manifest</url>
<local-path-prefix>manifests/pt/ewp-dev.up.pt/41578d966e05e2fdb07bdf8c807966338ed2cc90</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.up.pt:8433/rest/manifest</url>
<local-path-prefix>manifests/pt/ewp-dev.up.pt/4b965452e0a863cfadbd4a9a67b8d7f940ee1822</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-dev.up.pt:8443/rest/manifest</url>
<local-path-prefix>manifests/pt/ewp-dev.up.pt/9b255416be299dc3fc08f1df28402345a75de3ee</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-hei.demo.usos.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-hei.demo.usos.edu.pl/d76822c4ec8e13264598ebec69f526d8ba6d41eb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-mobility-qua.ulisboa.pt/api/ewp/manifest</url>
<local-path-prefix>manifests/pt/ewp-mobility-qua.ulisboa.pt/e986de44bd054bb52674aeca43c365366ff6101a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-mobility-qua.ulisboa.pt/rest/ewp/manifest</url>
<local-path-prefix>manifests/pt/ewp-mobility-qua.ulisboa.pt/e4a3fb9bac158154f66b15d22cadef1b07f38380</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-pre.us.es/</url>
<local-path-prefix>manifests/es/ewp-pre.us.es/40dc1c840d3669690a70cd42be3c450be642c5da</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-pruebas.urjc.es/ewpcv/discovery</url>
<local-path-prefix>manifests/es/ewp-pruebas.urjc.es/634d50245184e4cf78a3b74eda23e63b02d0fed6</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-staging.aau.at/ewp/manifest</url>
<local-path-prefix>manifests/at/ewp-staging.aau.at/0ae35ac63ed208640dab57420f5644e1d221b323</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-staging.uni-corvinus.hu/manifest/manifest.xml</url>
<local-path-prefix>manifests/hu/ewp-staging.uni-corvinus.hu/dd630261c61fd84d772f489a6cdea604c68b74be</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test-gw.dirittoallostudio.it/be6e336481a08de1d4a8a2e7c913b65a/ewp/discovery/manifest.xml</url>
<local-path-prefix>manifests/it/ewp-test-gw.dirittoallostudio.it/eb1982af78adcf1cbe5375c5c7247540070b218c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test-public.unipa.it/ewp-unipa-connector/public/manifest</url>
<local-path-prefix>manifests/it/ewp-test-public.unipa.it/5b91b571d96b4b06d5f89b76a0cde289ee423852</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ans.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ans.edu.pl/78f15073d42eb7e1dc123304d2192575a7e34437</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ath.bielsko.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ath.bielsko.pl/6e1dc13a6788ae280c3fe7869bdd193f10feca4f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ath.bielsko.pl/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ath.bielsko.pl/ba3806e77991e4f5013a445d0e552c871c5d4a20</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ignatianum.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ignatianum.edu.pl/5336f049d86c2cdcabe16af586f823d1597d6dec</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.its.umu.se/ewp-reference-connector/rest/manifest</url>
<local-path-prefix>manifests/se/ewp-test.its.umu.se/1b5c4a1e2f0033d838262c286efed225a87bdc4c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.net.uw.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.net.uw.edu.pl/1684a30b01c06fa50cfef91183b62556d0f7e46b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.pans.glogow.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.pans.glogow.pl/0f434990e33192e3e77091f759dc8e5fdbf0d5eb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.panschelm.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.panschelm.edu.pl/94501f5f92376026a2492da1d9e74781f8f07a19</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.puas.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.puas.pl/0a3442bb15a399dc5c6fd401642469645cc3789e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.puas.pl/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.puas.pl/85e35fafb37ff630401edc0a14beaeee8e2f5c88</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.pwste.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.pwste.edu.pl/949716f362c0fb0f0090d04f10bd6ec31a5a022b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.pwsz.glogow.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.pwsz.glogow.pl/e5235e3b28a67d50296379fda7eca50d61c75fd9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.pwt.wroc.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.pwt.wroc.pl/17c144ec3e9e05261de88cf4235ffa1a13dd0b93</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.sgh.waw.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.sgh.waw.pl/f11272e98197269291d65ba32f936b5edc721c88</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/api/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/69cc3b7e467372dd1aae5cff3132b80aa9c1c6fb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ax/ha/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/45600d1cd29e5e45aa245efd804967d8d52b82cc</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/de/hs-ansbach/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/a71abef1eaac9fcdcc8afc9f660a26df280eeb16</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/de/hs-bochum/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/1a1e7af25363907d146315c4314b97fcb7c19ac9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/de/hs-fresenius/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/7152a4189c1a687598f28022ef64db194221b40e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/de/th-owl/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/b0de244f894805f8d9af85ac02a17dec925d05f9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/de/thm/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/c5e136642122779f835b593e84d16f300fcd117f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ee/emu/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/707b1241afedfb6dad6ef588c203eac9dac450b4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ee/taltech/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/6c40d6ca81ecebdac3142e20e8626182e7d80808</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ee/tktk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/581f6d33b9b0141c0cd7b3ed0877fc08885b38cd</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ee/tlu/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/b038dd69405a360079be01e25a3d4c1d4c4d8a45</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ee/ut/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/8cb86375663e03c112709350dcdfe7d1d2be118a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/abo/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/d3c02a9f707935486de4bcfdf7da8e94b21001d5</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/cou/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/c06bb4412060650276a3bd42c412478cf574eed9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/hamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/02163a5b9c7b863ad2c1ef3c4a767efde2dd0300</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/kamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/0812fd45420d22ba50029b0467550741d796473b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/lapinamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/a9fe1fca41fc8d2e3b911c72b3df0b940f7a5f3f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/laurea/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/b79b30f9c5c093141889cdedb65179c2485b564b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/novia/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/7581824602c591d8de7ebf10f2278046465e22b1</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/oulu/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/f236fbe228ded6b67379f2aadc78941009468c43</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/pkamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/9fa6dcd449f78109c239b7ccf89111c50f47ed87</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/samk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/80fa8b7a79b7f33dcd428b12d1166df46e8551cd</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/seamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/589e418f81a9a0f4bfa758ac61ed449e4d8013d9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/solemove/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/20ec6cca370326aae16f424e23e36dfd67bb9afe</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/solenovo/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/29bae854f108d40d9ac48907b3e96a59146b2d72</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/tamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/cc7898a08516c3f2438a0618034419445a76b854</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/uef/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/aa8029651d336423dff8cb64fed1cdd74c817ab0</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/ulapland/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/7519b2a6565436e881a6beb458f5645b11cab2c7</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/utu/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/add8897574fcd0a7fb5036a3903919f97fbce740</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/vamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/664d64c8081c0e19871267b5bdaf4b4da3a7416f</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fi/xamk/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/1f67c426dc857772097eabd1b578708b48352476</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fr/imt-mines-albi/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/3126611e35adb2bc85b756d60b3c222c6dc2ea42</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fr/iscom/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/501f2602835d29ffaf108b80e0ae509554bd9404</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/fr/mines-albi/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/525bf5dc236c1fff468fb2c25f335901c966ea2c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/ro/upt/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/26646569684fdbaac5cebae344f22216b820461d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/se/lu/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/85507b1c6a6623b5df8c4a82243caf39448a53cd</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.solenovo.fi/ewp/se/umu/manifest</url>
<local-path-prefix>manifests/fi/ewp-test.solenovo.fi/bd046790ad9f408d3ba9fdfece6793fd13f5a030</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ubb.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ubb.edu.pl/eaae2affa5600c2bcd90107b3ff8302e37bc7599</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ue.poznan.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ue.poznan.pl/5a583b439ee751ed7cbd316942ad12662371a007</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.ue.wroc.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.ue.wroc.pl/57859cf2161aaedc662b4668eeec3397b771cdda</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.uek.krakow.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.uek.krakow.pl/263603ff43a4c4c74e837ac002e81af72c14572e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.uma.es/rest/manifest</url>
<local-path-prefix>manifests/es/ewp-test.uma.es/38f48644cb7eebfaf523a8ce37f01081195a30d3</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.unibo.it/ewp/rest/manifest</url>
<local-path-prefix>manifests/it/ewp-test.unibo.it/626ce40ff0b52854166dd978c1208693233aa6e6</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.urk.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp-test.urk.edu.pl/94b2fe6e7e89a19349a672bbddac11e596dc7776</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-test.vermusuni.space/manifest.xml</url>
<local-path-prefix>manifests/space/ewp-test.vermusuni.space/e8129c7d88125c15c9e8d2de377063b7c7c326e7</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-teste.ubi.pt/Discovery/api/Manifest</url>
<local-path-prefix>manifests/pt/ewp-teste.ubi.pt/68dd0ffe563ee25aad572d2d2c1710ad326eb016</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-tst.uab.cat/ewp/rest/manifest.xml</url>
<local-path-prefix>manifests/cat/ewp-tst.uab.cat/c3f389b5089ee074b0f2a554709bd25ecb1e07ae</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-tst.uab.es/EWP/manifest_UAB_Dev.xml</url>
<local-path-prefix>manifests/es/ewp-tst.uab.es/b8b5802fbc61a016f7dab6910af10521612fe514</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-tst.uab.es/ewp/rest/manifest.xml</url>
<local-path-prefix>manifests/es/ewp-tst.uab.es/2ac97d3e1de4690db89fc8a549cc3b10f855dfa2</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp-vyvoj.science.upjs.sk/api/ewp/discovery</url>
<local-path-prefix>manifests/sk/ewp-vyvoj.science.upjs.sk/28217e18169d3c1cab7e0016eb75c166bc3e0136</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.allsessions.com/manifest.xml</url>
<local-path-prefix>manifests/com/ewp.allsessions.com/949ceac6ad92894c0203c813c65c95eb3aa7fc45</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.amu.edu.pl/test/manifest</url>
<local-path-prefix>manifests/pl/ewp.amu.edu.pl/6c57c848fdd7283cafee30fcd96d574f8028d8a8</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.demo.usos.edu.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp.demo.usos.edu.pl/614f6fa807862da39326806dac1d5fbeaaa34175</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.demo.usos.edu.pl/manifest</url>
<local-path-prefix>manifests/pl/ewp.demo.usos.edu.pl/7457c949da9cceb19ac90bc4d0e58d318d8ed12b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.demo.usos.edu.pl/stats/ewp/manifest/</url>
<local-path-prefix>manifests/pl/ewp.demo.usos.edu.pl/7c45471c547fa8e15036ae1cf732308399b2096e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.des.upc.edu/manifest.xml</url>
<local-path-prefix>manifests/edu/ewp.des.upc.edu/2ce5688e4a6a03e404351940de048e33b4bdbc08</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.dev.sgh.waw.pl/ewp/manifest</url>
<local-path-prefix>manifests/pl/ewp.dev.sgh.waw.pl/8374b18574a20540fc6dc3a674c87991cd5a7426</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.dev.url.edu/dev_manifest.xml</url>
<local-path-prefix>manifests/edu/ewp.dev.url.edu/f3d103977c116f14fb187349bf47394a56f90a1c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.dev.url.edu:10007/dev_manifest.xml</url>
<local-path-prefix>manifests/edu/ewp.dev.url.edu/8f4f6a9925b10a55d421b5fbad41b8489b83e2f9</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.henallux.be/manifest.xml</url>
<local-path-prefix>manifests/be/ewp.henallux.be/1d551f356e01dbb85587bbc5eec1d9b7b964fb40</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.hmsdevelopment.pl/api/ewp/host/manifest</url>
<local-path-prefix>manifests/pl/ewp.hmsdevelopment.pl/bb89a1f85b3cd9f79fa075faf875c12fead9d8b0</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.its.umu.se/ewp-reference-connector/rest/manifest</url>
<local-path-prefix>manifests/se/ewp.its.umu.se/eba6ab9f9af1e58abd78b45b3dfad037ff8f8a10</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.kalasoft.pl/api/ewp/host/manifest</url>
<local-path-prefix>manifests/pl/ewp.kalasoft.pl/64ba01106763ac450efb3513ffd6643ee19851ba</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.ms.dvl.p.lodz.pl/manifest</url>
<local-path-prefix>manifests/pl/ewp.ms.dvl.p.lodz.pl/2d30db6a10d96e8db188a19d9cba6f8b8cbde989</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.playdev.ulusofona.pt/discovery</url>
<local-path-prefix>manifests/pt/ewp.playdev.ulusofona.pt/79c9aec51e81a198d190789e23e2312cceabd3fb</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/440bd67422564b8dc3d0149023cfc80df3d9262e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/hunimed.eu</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/8e62514867bf7ea4fe4a47f5dbe7f9dc5e8abcba</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/iuav.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/9c03048e0e5abb8704d5bd3ad6e79c51954b100d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/liuc.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/def095b275001a342bf04c3963378d46de73e834</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/luiss.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/90818a7d9ab1a80bc137fc43acee6dd2f96c2bf8</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/lum.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/5fd128211ae6c7be9370787ff7159fb04c3984dc</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/lumsa.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/dfebe0a2505175c8d636008f879d228de716e658</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/poliba.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/1287d1d6493cf3c3ec701f1006f9648385f99456</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/polimi.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/f73cf047737fde63fdae0034cae62ddefd4ee04a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/polito.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/713913f9432b1b12d8acef48ab76398f1cd060c3</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/sns.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/3af595629810fea4ee15962e173117a34f0d19aa</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/uniba.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/5ef2a515fe368d46132ccf1b516042d9af1fdd8b</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unibas.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/bbaf34c7eb61e875504827eef7cf34bba48cdba4</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unibg.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/01e2e70cfd9d34e79dac6269682070e5d0d8e07a</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unibocconi.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/f2cf858a9ba8b882b52911d70fd93520393cc813</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unibs.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/8f2a2ed75d1471cac1c6f804d425fc1c839864ad</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unica.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/9919a25a0fc40d1eb0f7a39f6129601606096077</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unical.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/40c2c4ab657192f32eda1e780e8aae06bcc8680c</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unicam.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/8c4acd459bfa8e4548216805c32904b6e90efc38</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unicampania.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/6bd31f0bfa2e127f036fc27755229b88f10e5fe0</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unich.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/a4a5f41cf2ef3d1dfd0d00a31fab3e6fa316944d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unicineca.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/1226e7b310e3fd37b4c34b50ff2bb852b0113176</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unicz.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/e487dce10e1bd6e9e20daa54ee6f25ec6f96ce05</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unifg.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/56e24a2a02b2422e6b1a7b3a33fbf2208f5e345e</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unifi.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/117a92ec6fb14c407fd1599ad7729e1174ccb4f8</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unige.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/6ad8dd9feee32739ec17b5b2325e791abe0890dd</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unimc.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/c8b5d4f1665976cb606e3d8af8f5e96721e90598</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unime.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/a99cfb38f728e08aecbb77fe2909a8e8b2d84dd0</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unimib.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/e8e6fb7356f05c0a6e3d599cda403877805da343</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unimol.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/ddce6f57b1288e36cc4e3d765a8a21da87477913</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unimore.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/47f5f9d0f81ecad25f803e89e643d1098cc73e3d</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/uninsubria.it</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/a1f7421af04f8091d6c88642214fcd4e8ea7fbbe</local-path-prefix>
</manifest-source>
<manifest-source>
<url>https://ewp.pp.cineca.it/api/v1/primary/manifest/unint.eu</url>
<local-path-prefix>manifests/it/ewp.pp.cineca.it/799c0b6f9d6857f41d051aac7b1b4e23a960f42b</local-path-prefix>