forked from rayo/xmpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
1156 lines (1156 loc) · 74.8 KB
/
sitemap.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
<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url><loc>http://xmpp.org/</loc></url>
<url><loc>http://xmpp.org/about/</loc></url>
<url><loc>http://xmpp.org/ca/</loc></url>
<url><loc>http://xmpp.org/council/</loc></url>
<url><loc>http://xmpp.org/extensions/</loc></url>
<url><loc>http://xmpp.org/internet-drafts/</loc></url>
<url><loc>http://xmpp.org/interop/</loc></url>
<url><loc>http://xmpp.org/protocols/</loc></url>
<url><loc>http://xmpp.org/registrar/</loc></url>
<url><loc>http://xmpp.org/rfcs/</loc></url>
<url><loc>http://xmpp.org/robots.txt</loc></url>
<url><loc>http://xmpp.org/schemas/</loc></url>
<url><loc>http://xmpp.org/services/</loc></url>
<url><loc>http://xmpp.org/software/</loc></url>
<url><loc>http://xmpp.org/summit/</loc></url>
<url><loc>http://xmpp.org/tech/</loc></url>
<url><loc>http://xmpp.org/trademark/</loc></url>
<url><loc>http://xmpp.org/xsf/</loc></url>
<url><loc>http://xmpp.org/about/bof-minutes.txt</loc></url>
<url><loc>http://xmpp.org/about/books.shtml</loc></url>
<url><loc>http://xmpp.org/about/contributors.shtml</loc></url>
<url><loc>http://xmpp.org/about/copyright.shtml</loc></url>
<url><loc>http://xmpp.org/about/discuss.shtml</loc></url>
<url><loc>http://xmpp.org/about/history.shtml</loc></url>
<url><loc>http://xmpp.org/about/ietf-1999.shtml</loc></url>
<url><loc>http://xmpp.org/about/ipr-notice.txt</loc></url>
<url><loc>http://xmpp.org/about/jabber.shtml</loc></url>
<url><loc>http://xmpp.org/about/reqsum.shtml</loc></url>
<url><loc>http://xmpp.org/about/sponsors.shtml</loc></url>
<url><loc>http://xmpp.org/about/summary.shtml</loc></url>
<url><loc>http://xmpp.org/about/wg-charter.txt</loc></url>
<url><loc>http://xmpp.org/about/xmpp-simple.shtml</loc></url>
<url><loc>http://xmpp.org/ca/developers.shtml</loc></url>
<url><loc>http://xmpp.org/ca/dynamic-dns.shtml</loc></url>
<url><loc>http://xmpp.org/ca/installation.shtml</loc></url>
<url><loc>http://xmpp.org/ca/issuance.shtml</loc></url>
<url><loc>http://xmpp.org/ca/launch.shtml</loc></url>
<url><loc>http://xmpp.org/ca/whois.shtml</loc></url>
<url><loc>http://xmpp.org/ca/wizard.shtml</loc></url>
<url><loc>http://xmpp.org/council/agendas/</loc></url>
<url><loc>http://xmpp.org/council/policies.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_01.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_02.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_03.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_04.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_05.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_06.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_07.shtml</loc></url>
<url><loc>http://xmpp.org/council/tallies_08.shtml</loc></url>
<url><loc>http://xmpp.org/council/votes.shtml</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-09-17.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-09-27.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-10-04.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-10-11.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-11-08.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-11-15.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-11-22.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2002-12-06.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2003-02-07.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2003-02-20.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-09-22.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-09-29.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-10-05.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-10-12.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-10-20.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-10-27.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-11-05.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-11-12.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-11-19.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-12-03.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2004-12-09.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-01-07.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-01-21.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-02-11.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-04-07.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-04-21.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-05-12.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-06-02.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-06-16.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-07-14.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-07-28.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-08-18.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-09-08.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-09-14.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-10-05.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-10-19.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-11-02.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-11-16.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-11-30.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2005-12-14.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-01-11.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-01-24.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-02-07.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-02-09.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-03-09.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-03-23.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-04-11.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-04-25.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-04-28.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-05-16.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-06-14.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-06-27.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-07-12.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-07-26.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-08-16.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-08-30.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-09-13.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-10-03.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-10-11.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-11-06.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-11-21.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-11-29.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-12-06.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2006-12-20.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-01-03.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-01-17.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-01-31.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-02-14.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-02-26.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-03-14.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-03-28.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-04-10.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-04-20.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-05-02.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-05-16.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-05-30.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-06-04.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-06-13.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-06-25.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-07-11.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-08-08.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-08-22.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-09-05.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-09-26.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-10-03.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-10-24.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-11-07.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2007-11-21.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-01-09.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-01-30.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-03-05.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-04-30.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-05-28.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-06-18.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-07-16.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-08-20.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-09-03.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-10-08.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-10-15.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-10-22.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-10-29.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-11-05.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-11-12.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-11-19.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-11-26.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-12-03.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2008-12-10.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2009-01-07.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2009-01-21.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2009-02-18.html</loc></url>
<url><loc>http://xmpp.org/council/agendas/2009-02-25.html</loc></url>
<url><loc>http://xmpp.org/extensions/README.html</loc></url>
<url><loc>http://xmpp.org/extensions/all.shtml</loc></url>
<url><loc>http://xmpp.org/extensions/atom.xml</loc></url>
<url><loc>http://xmpp.org/extensions/attic/</loc></url>
<url><loc>http://xmpp.org/extensions/editor.shtml</loc></url>
<url><loc>http://xmpp.org/extensions/examples</loc></url>
<url><loc>http://xmpp.org/extensions/gps_datum.gif</loc></url>
<url><loc>http://xmpp.org/extensions/gps_datum.html</loc></url>
<url><loc>http://xmpp.org/extensions/inbox/</loc></url>
<url><loc>http://xmpp.org/extensions/ipr-policy.shtml</loc></url>
<url><loc>http://xmpp.org/extensions/refs/</loc></url>
<url><loc>http://xmpp.org/extensions/rss.xml</loc></url>
<url><loc>http://xmpp.org/extensions/submit.shtml</loc></url>
<url><loc>http://xmpp.org/extensions/template.html</loc></url>
<url><loc>http://xmpp.org/extensions/tmp/</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0001.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0001.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0002.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0002.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0003.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0003.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0004.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0004.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0005.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0005.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0006.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0006.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0007.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0007.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0008.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0008.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0009.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0009.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0010.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0010.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0011.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0011.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0012.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0012.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0013.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0013.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0014.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0014.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0015.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0015.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0016.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0016.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0017.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0017.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0018.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0018.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0019.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0019.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0020.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0020.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0021.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0021.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0022.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0022.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0023.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0023.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0024.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0024.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0025.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0025.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0026.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0026.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0027.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0027.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0028.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0028.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0029.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0029.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0030.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0030.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0031.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0031.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0032.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0032.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0033.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0033.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0034.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0034.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0035.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0035.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0036.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0036.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0037.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0037.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0038.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0038.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0039.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0039.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0040.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0040.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0041.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0041.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0042.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0042.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0043.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0043.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0044.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0044.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0045.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0045.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0046.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0046.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0047.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0047.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0048.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0048.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0049.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0049.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0050.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0050.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0051.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0051.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0052.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0052.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0053.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0053.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0054.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0054.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0055.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0055.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0056.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0056.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0057.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0057.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0058.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0058.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0059.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0059.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0060.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0060.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0061.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0061.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0062.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0062.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0063.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0063.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0064.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0064.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0065.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0065.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0066.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0066.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0067.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0067.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0068.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0068.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0069.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0069.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0070.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0070.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0071.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0071.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0072.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0072.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0073.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0073.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0074.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0074.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0075.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0075.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0076.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0076.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0077.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0077.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0078.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0078.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0079.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0079.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0080.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0080.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0081.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0081.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0082.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0082.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0083.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0083.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0084.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0084.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0085.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0085.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0086.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0086.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0087.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0087.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0088.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0088.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0089.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0089.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0090.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0090.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0091.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0091.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0092.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0092.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0093.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0093.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0094.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0094.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0095.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0095.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0096.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0096.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0097.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0097.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0098.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0098.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0099.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0099.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0100.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0100.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0101.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0101.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0102.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0102.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0103.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0103.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0104.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0104.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0105.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0105.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0106.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0106.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0107.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0107.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0108.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0108.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0109.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0109.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0110.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0110.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0111.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0111.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0112.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0112.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0113.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0113.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0114.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0114.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0115.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0115.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0116.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0116.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0117.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0117.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0118.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0118.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0119.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0119.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0120.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0120.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0121.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0121.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0122.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0122.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0123.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0123.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0124.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0124.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0125.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0125.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0126.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0126.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0127.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0127.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0128.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0128.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0129.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0129.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0130.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0130.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0131.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0131.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0132.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0132.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0133.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0133.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0134.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0134.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0135.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0135.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0136.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0136.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0137.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0137.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0138.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0138.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0139.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0139.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0140.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0140.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0141.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0141.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0142.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0142.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0143.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0143.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0144.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0144.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0145.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0145.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0146.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0146.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0147.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0147.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0148.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0148.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0149.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0149.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0150.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0150.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0151.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0151.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0152.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0152.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0153.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0153.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0154.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0154.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0155.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0155.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0156.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0156.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0157.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0157.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0158.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0158.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0159.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0159.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0160.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0160.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0161.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0161.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0162.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0162.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0163.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0163.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0164.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0164.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0165.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0165.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0166.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0166.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0167.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0167.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0168.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0168.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0169.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0169.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0170.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0170.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0171.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0171.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0172.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0172.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0173.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0173.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0174.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0174.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0175.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0175.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0176.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0176.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0177.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0177.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0178.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0178.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0179.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0179.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0180.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0180.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0181.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0181.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0182.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0182.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0183.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0183.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0184.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0184.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0185.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0185.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0186.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0186.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0187.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0187.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0188.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0188.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0189.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0189.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0190.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0190.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0191.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0191.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0192.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0192.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0193.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0193.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0194.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0194.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0195.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0195.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0196.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0196.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0197.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0197.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0198.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0198.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0199.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0199.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0200.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0200.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0201.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0201.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0202.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0202.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0203.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0203.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0204.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0204.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0205.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0205.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0206.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0206.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0207.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0207.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0208.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0208.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0209.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0209.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0210.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0210.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0211.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0211.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0212.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0212.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0213.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0213.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0214.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0214.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0215.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0215.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0216.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0216.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0217.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0217.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0218.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0218.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0219.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0219.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0220.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0220.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0221.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0221.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0222.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0222.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0223.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0223.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0224.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0224.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0225.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0225.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0226.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0226.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0227.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0227.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0228.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0228.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0229.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0229.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0230.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0230.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0231.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0231.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0232.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0232.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0233.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0233.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0234.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0234.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0235.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0235.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0236.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0236.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0237.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0237.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0238.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0238.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0239.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0239.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0240.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0240.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0241.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0241.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0242.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0242.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0243.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0243.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0244.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0244.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0245.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0245.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0246.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0246.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0247.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0247.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0248.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0248.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0249.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0249.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0250.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0250.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0251.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0251.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0252.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0252.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0253.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0253.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0254.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0254.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0255.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0255.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0256.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0256.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0257.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0257.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0258.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0258.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0259.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0259.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0260.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0260.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0261.html</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0261.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0262.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0263.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0264.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep-0265.xml</loc></url>
<url><loc>http://xmpp.org/extensions/xep.dtd</loc></url>
<url><loc>http://xmpp.org/extensions/xep.ent</loc></url>
<url><loc>http://xmpp.org/extensions/xep.xsd</loc></url>
<url><loc>http://xmpp.org/extensions/xmpp.css</loc></url>
<url><loc>http://xmpp.org/internet-drafts/attic/</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-hildebrand-webdav-notify-02.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-hildebrand-webdav-notify-02.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-ietf-sieve-notify-xmpp-09.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-ietf-sieve-notify-xmpp-09.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-meyer-xmpp-e2e-encryption-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-meyer-xmpp-e2e-encryption-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-meyer-xmpp-sasl-cert-management-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-meyer-xmpp-sasl-cert-management-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-atomlink-discuss-01.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-atomlink-discuss-01.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-atompub-notify-07.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-atompub-notify-07.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-im-01.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-im-01.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-im.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-im.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-pres-01.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-pres-01.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-pres.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-header-pres.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-jabberid-08.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-jabberid-08.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-jingle-sip-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-jingle-sip-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-09.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-09.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-rfc3921bis-08.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-rfc3921bis-08.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-rfc4622bis-01.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-rfc4622bis-01.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-caps-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-caps-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-chat-02.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-chat-02.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-core-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-core-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-groupchat-01.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-groupchat-01.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-im-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-im-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-media-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-media-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-presence-01.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-sip-xmpp-presence-01.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-feature-set-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-feature-set-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-interop-report-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-interop-report-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-msrp-00.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-msrp-00.txt</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-presence-analysis-03.html</loc></url>
<url><loc>http://xmpp.org/internet-drafts/draft-saintandre-xmpp-presence-analysis-03.txt</loc></url>
<url><loc>http://xmpp.org/interop/developers.shtml</loc></url>
<url><loc>http://xmpp.org/interop/join.shtml</loc></url>
<url><loc>http://xmpp.org/interop/producers.shtml</loc></url>
<url><loc>http://xmpp.org/interop/servers.shtml</loc></url>
<url><loc>http://xmpp.org/protocols/activity/</loc></url>
<url><loc>http://xmpp.org/protocols/address/</loc></url>
<url><loc>http://xmpp.org/protocols/amp/</loc></url>
<url><loc>http://xmpp.org/protocols/bookmarks/</loc></url>
<url><loc>http://xmpp.org/protocols/bytestreams/</loc></url>
<url><loc>http://xmpp.org/protocols/caps/</loc></url>
<url><loc>http://xmpp.org/protocols/chatstates/</loc></url>
<url><loc>http://xmpp.org/protocols/commands/</loc></url>
<url><loc>http://xmpp.org/protocols/compress/</loc></url>
<url><loc>http://xmpp.org/protocols/disco/</loc></url>
<url><loc>http://xmpp.org/protocols/feature-neg/</loc></url>
<url><loc>http://xmpp.org/protocols/file-transfer/</loc></url>
<url><loc>http://xmpp.org/protocols/geoloc/</loc></url>
<url><loc>http://xmpp.org/protocols/http-auth/</loc></url>
<url><loc>http://xmpp.org/protocols/httpbind/</loc></url>
<url><loc>http://xmpp.org/protocols/ibb/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:client/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:last/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:oob/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:privacy/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:register/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:roster/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:rpc/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:iq:version/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:server/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:server:dialback/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:x:data/</loc></url>
<url><loc>http://xmpp.org/protocols/jabber:x:oob/</loc></url>
<url><loc>http://xmpp.org/protocols/jidescaping/</loc></url>
<url><loc>http://xmpp.org/protocols/linklocal/</loc></url>
<url><loc>http://xmpp.org/protocols/mood/</loc></url>
<url><loc>http://xmpp.org/protocols/muc/</loc></url>
<url><loc>http://xmpp.org/protocols/nick/</loc></url>
<url><loc>http://xmpp.org/protocols/offline/</loc></url>
<url><loc>http://xmpp.org/protocols/pep/</loc></url>
<url><loc>http://xmpp.org/protocols/pubsub/</loc></url>
<url><loc>http://xmpp.org/protocols/rc/</loc></url>
<url><loc>http://xmpp.org/protocols/rosterx/</loc></url>
<url><loc>http://xmpp.org/protocols/rsm/</loc></url>
<url><loc>http://xmpp.org/protocols/shim/</loc></url>
<url><loc>http://xmpp.org/protocols/si/</loc></url>
<url><loc>http://xmpp.org/protocols/sipub/</loc></url>
<url><loc>http://xmpp.org/protocols/soap/</loc></url>
<url><loc>http://xmpp.org/protocols/streams/</loc></url>
<url><loc>http://xmpp.org/protocols/tune/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-bind/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-e2e/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-sasl/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-session/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-stanzas/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-streams/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:ietf:params:xml:ns:xmpp-tls/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:avatar/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:avatar:data/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:avatar:metadata/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:delay/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:ping/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:receipts/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:ssn/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:time/</loc></url>
<url><loc>http://xmpp.org/protocols/urn:xmpp:xbosh/</loc></url>
<url><loc>http://xmpp.org/protocols/waitinglist/</loc></url>
<url><loc>http://xmpp.org/protocols/xdata-layout/</loc></url>
<url><loc>http://xmpp.org/protocols/xdata-validate/</loc></url>
<url><loc>http://xmpp.org/protocols/xhtml-im/</loc></url>
<url><loc>http://xmpp.org/registrar/alt-connections.html</loc></url>
<url><loc>http://xmpp.org/registrar/alt-connections.xml</loc></url>
<url><loc>http://xmpp.org/registrar/amp-actions.html</loc></url>
<url><loc>http://xmpp.org/registrar/amp-actions.xml</loc></url>
<url><loc>http://xmpp.org/registrar/amp-conditions.html</loc></url>
<url><loc>http://xmpp.org/registrar/amp-conditions.xml</loc></url>
<url><loc>http://xmpp.org/registrar/compress.html</loc></url>
<url><loc>http://xmpp.org/registrar/compress.xml</loc></url>
<url><loc>http://xmpp.org/registrar/disco-categories.html</loc></url>
<url><loc>http://xmpp.org/registrar/disco-categories.xml</loc></url>
<url><loc>http://xmpp.org/registrar/disco-features.html</loc></url>
<url><loc>http://xmpp.org/registrar/disco-features.xml</loc></url>
<url><loc>http://xmpp.org/registrar/errors.html</loc></url>
<url><loc>http://xmpp.org/registrar/errors.xml</loc></url>
<url><loc>http://xmpp.org/registrar/formtypes.html</loc></url>
<url><loc>http://xmpp.org/registrar/formtypes.xml</loc></url>
<url><loc>http://xmpp.org/registrar/linklocal.html</loc></url>
<url><loc>http://xmpp.org/registrar/linklocal.xml</loc></url>
<url><loc>http://xmpp.org/registrar/mucstatus.html</loc></url>
<url><loc>http://xmpp.org/registrar/mucstatus.xml</loc></url>
<url><loc>http://xmpp.org/registrar/namespaces.html</loc></url>
<url><loc>http://xmpp.org/registrar/namespaces.xml</loc></url>
<url><loc>http://xmpp.org/registrar/nodes.html</loc></url>
<url><loc>http://xmpp.org/registrar/nodes.xml</loc></url>
<url><loc>http://xmpp.org/registrar/querytypes.html</loc></url>
<url><loc>http://xmpp.org/registrar/querytypes.xml</loc></url>
<url><loc>http://xmpp.org/registrar/shim.html</loc></url>
<url><loc>http://xmpp.org/registrar/shim.xml</loc></url>
<url><loc>http://xmpp.org/registrar/si-profiles.html</loc></url>
<url><loc>http://xmpp.org/registrar/si-profiles.xml</loc></url>
<url><loc>http://xmpp.org/registrar/stream-features.html</loc></url>
<url><loc>http://xmpp.org/registrar/stream-features.xml</loc></url>
<url><loc>http://xmpp.org/registrar/xdv-datatypes.html</loc></url>
<url><loc>http://xmpp.org/registrar/xdv-datatypes.xml</loc></url>
<url><loc>http://xmpp.org/registrar/xdv-prefixes.html</loc></url>
<url><loc>http://xmpp.org/registrar/xdv-prefixes.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3920.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3920.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3920.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3921.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3921.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3921.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3922.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3922.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3922.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3923.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3923.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc3923.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc4622.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc4622.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc4622.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc4854.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc4854.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc4854.xml</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc5122.html</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc5122.txt</loc></url>
<url><loc>http://xmpp.org/rfcs/rfc5122.xml</loc></url>
<url><loc>http://xmpp.org/schemas/activity.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/address.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/amp-errors.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/amp-feature.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/amp.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/archive.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/attention.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/avatar-data.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/avatar-metadata.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/bind.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/blocking-errors.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/blocking.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/bob.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/bookmarks.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/bytestreams.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/caps.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/captcha.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/chatstates.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/commands.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/component-accept.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/component-connect.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/compress-feature.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/compress.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/delay.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/delimiter.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/dialback.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/disco-info.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/disco-items.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/e2e.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/feature-neg.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/file-transfer.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/geoloc.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/http-auth.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/httpbind.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/ibb.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-auth.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-gateway.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-last.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-oob.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-pass.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-privacy.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-private.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-register.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-search.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-time.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/iq-version.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/jabber-client.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/jabber-rpc.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/jabber-server.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/langtrans-items.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/langtrans.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/media-element.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/mood.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/muc-admin.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/muc-owner.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/muc-unique.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/muc-user.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/muc.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/nick.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/offline.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/ping.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/privacy.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/pubsub-errors.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/pubsub-event.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/pubsub-owner.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/pubsub.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/receipts.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/roster.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/rosternotes.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/rosterx.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/rsm.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/sasl.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/session.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/shim.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/si.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/sipub.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/soap-fault.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/stanzaerror.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/streamerror.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/streams.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/time.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/tls.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/tune.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/vcard-avatar.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/waitinglist.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-data.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-delay.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-encrypted.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-event.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-expire.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-oob.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-roster.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/x-signed.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xbosh.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xdata-layout.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xdata-validate.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-blkphras-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-blkstruct-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-hypertext-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-im-driver.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-im-model.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-im-wrapper.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-image-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-inlphras-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-inlstruct-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-inlstyle-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-list-1.xsd</loc></url>
<url><loc>http://xmpp.org/schemas/xhtml-struct-1.xsd</loc></url>
<url><loc>http://xmpp.org/services/register.shtml</loc></url>
<url><loc>http://xmpp.org/software/ clients.shtml</loc></url>
<url><loc>http://xmpp.org/software/ libraries.shtml</loc></url>
<url><loc>http://xmpp.org/software/ servers.shtml</loc></url>
<url><loc>http://xmpp.org/summit/ summit1.shtml</loc></url>