1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
/// `*`
pub const _STAR: crate::Name = crate::Name::new_unchecked("*");
/// `1d-interleaved-parityfec`
pub const _1D_INTERLEAVED_PARITYFEC: crate::Name = crate::Name::new_unchecked("1d-interleaved-parityfec");
/// `32kadpcm`
pub const _32KADPCM: crate::Name = crate::Name::new_unchecked("32kadpcm");
/// `3gpdash-qoe-report`
pub const _3GPDASH_QOE_REPORT: crate::Name = crate::Name::new_unchecked("3gpdash-qoe-report");
/// `3gpp`
pub const _3GPP: crate::Name = crate::Name::new_unchecked("3gpp");
/// `3gpp-ims`
pub const _3GPP_IMS: crate::Name = crate::Name::new_unchecked("3gpp-ims");
/// `3gpp-tt`
pub const _3GPP_TT: crate::Name = crate::Name::new_unchecked("3gpp-tt");
/// `3gpp2`
pub const _3GPP2: crate::Name = crate::Name::new_unchecked("3gpp2");
/// `3gppHal`
pub const _3GPP_HAL: crate::Name = crate::Name::new_unchecked("3gppHal");
/// `3gppHalForms`
pub const _3GPP_HAL_FORMS: crate::Name = crate::Name::new_unchecked("3gppHalForms");
/// `3mf`
pub const _3MF: crate::Name = crate::Name::new_unchecked("3mf");
/// `A2L`
pub const A2L: crate::Name = crate::Name::new_unchecked("A2L");
/// `aac`
pub const AAC: crate::Name = crate::Name::new_unchecked("aac");
/// `ac3`
pub const AC3: crate::Name = crate::Name::new_unchecked("ac3");
/// `ace`
pub const ACE: crate::Name = crate::Name::new_unchecked("ace");
/// `aces`
pub const ACES: crate::Name = crate::Name::new_unchecked("aces");
/// `activemessage`
pub const ACTIVEMESSAGE: crate::Name = crate::Name::new_unchecked("activemessage");
/// `activity`
pub const ACTIVITY: crate::Name = crate::Name::new_unchecked("activity");
/// `alternative`
pub const ALTERNATIVE: crate::Name = crate::Name::new_unchecked("alternative");
/// `alto-costmap`
pub const ALTO_COSTMAP: crate::Name = crate::Name::new_unchecked("alto-costmap");
/// `alto-costmapfilter`
pub const ALTO_COSTMAPFILTER: crate::Name = crate::Name::new_unchecked("alto-costmapfilter");
/// `alto-directory`
pub const ALTO_DIRECTORY: crate::Name = crate::Name::new_unchecked("alto-directory");
/// `alto-endpointcost`
pub const ALTO_ENDPOINTCOST: crate::Name = crate::Name::new_unchecked("alto-endpointcost");
/// `alto-endpointcostparams`
pub const ALTO_ENDPOINTCOSTPARAMS: crate::Name = crate::Name::new_unchecked("alto-endpointcostparams");
/// `alto-endpointprop`
pub const ALTO_ENDPOINTPROP: crate::Name = crate::Name::new_unchecked("alto-endpointprop");
/// `alto-endpointpropparams`
pub const ALTO_ENDPOINTPROPPARAMS: crate::Name = crate::Name::new_unchecked("alto-endpointpropparams");
/// `alto-error`
pub const ALTO_ERROR: crate::Name = crate::Name::new_unchecked("alto-error");
/// `alto-networkmap`
pub const ALTO_NETWORKMAP: crate::Name = crate::Name::new_unchecked("alto-networkmap");
/// `alto-networkmapfilter`
pub const ALTO_NETWORKMAPFILTER: crate::Name = crate::Name::new_unchecked("alto-networkmapfilter");
/// `alto-updatestreamcontrol`
pub const ALTO_UPDATESTREAMCONTROL: crate::Name = crate::Name::new_unchecked("alto-updatestreamcontrol");
/// `alto-updatestreamparams`
pub const ALTO_UPDATESTREAMPARAMS: crate::Name = crate::Name::new_unchecked("alto-updatestreamparams");
/// `AML`
pub const AML: crate::Name = crate::Name::new_unchecked("AML");
/// `AMR`
pub const AMR: crate::Name = crate::Name::new_unchecked("AMR");
/// `AMR-WB`
pub const AMR_WB: crate::Name = crate::Name::new_unchecked("AMR-WB");
/// `amr-wb+`
pub const AMR_WB_PLUS: crate::Name = crate::Name::new_unchecked("amr-wb+");
/// `andrew-inset`
pub const ANDREW_INSET: crate::Name = crate::Name::new_unchecked("andrew-inset");
/// `appledouble`
pub const APPLEDOUBLE: crate::Name = crate::Name::new_unchecked("appledouble");
/// `applefile`
pub const APPLEFILE: crate::Name = crate::Name::new_unchecked("applefile");
/// `application`
pub const APPLICATION: crate::Name = crate::Name::new_unchecked("application");
/// `aptx`
pub const APTX: crate::Name = crate::Name::new_unchecked("aptx");
/// `asc`
pub const ASC: crate::Name = crate::Name::new_unchecked("asc");
/// `at`
pub const AT: crate::Name = crate::Name::new_unchecked("at");
/// `ATF`
pub const ATF: crate::Name = crate::Name::new_unchecked("ATF");
/// `ATFX`
pub const ATFX: crate::Name = crate::Name::new_unchecked("ATFX");
/// `atom`
pub const ATOM: crate::Name = crate::Name::new_unchecked("atom");
/// `atomcat`
pub const ATOMCAT: crate::Name = crate::Name::new_unchecked("atomcat");
/// `atomdeleted`
pub const ATOMDELETED: crate::Name = crate::Name::new_unchecked("atomdeleted");
/// `atomicmail`
pub const ATOMICMAIL: crate::Name = crate::Name::new_unchecked("atomicmail");
/// `atomsvc`
pub const ATOMSVC: crate::Name = crate::Name::new_unchecked("atomsvc");
/// `ATRAC-ADVANCED-LOSSLESS`
pub const ATRAC_ADVANCED_LOSSLESS: crate::Name = crate::Name::new_unchecked("ATRAC-ADVANCED-LOSSLESS");
/// `ATRAC-X`
pub const ATRAC_X: crate::Name = crate::Name::new_unchecked("ATRAC-X");
/// `ATRAC3`
pub const ATRAC3: crate::Name = crate::Name::new_unchecked("ATRAC3");
/// `atsc-dwd`
pub const ATSC_DWD: crate::Name = crate::Name::new_unchecked("atsc-dwd");
/// `atsc-dynamic-event-message`
pub const ATSC_DYNAMIC_EVENT_MESSAGE: crate::Name = crate::Name::new_unchecked("atsc-dynamic-event-message");
/// `atsc-held`
pub const ATSC_HELD: crate::Name = crate::Name::new_unchecked("atsc-held");
/// `atsc-rdt`
pub const ATSC_RDT: crate::Name = crate::Name::new_unchecked("atsc-rdt");
/// `atsc-rsat`
pub const ATSC_RSAT: crate::Name = crate::Name::new_unchecked("atsc-rsat");
/// `ATXML`
pub const ATXML: crate::Name = crate::Name::new_unchecked("ATXML");
/// `audio`
pub const AUDIO: crate::Name = crate::Name::new_unchecked("audio");
/// `auth-policy`
pub const AUTH_POLICY: crate::Name = crate::Name::new_unchecked("auth-policy");
/// `AV1`
pub const AV1: crate::Name = crate::Name::new_unchecked("AV1");
/// `avci`
pub const AVCI: crate::Name = crate::Name::new_unchecked("avci");
/// `avcs`
pub const AVCS: crate::Name = crate::Name::new_unchecked("avcs");
/// `avif`
pub const AVIF: crate::Name = crate::Name::new_unchecked("avif");
/// `bacnet-xdd`
pub const BACNET_XDD: crate::Name = crate::Name::new_unchecked("bacnet-xdd");
/// `basic`
pub const BASIC: crate::Name = crate::Name::new_unchecked("basic");
/// `batch-SMTP`
pub const BATCH_SMTP: crate::Name = crate::Name::new_unchecked("batch-SMTP");
/// `beep`
pub const BEEP: crate::Name = crate::Name::new_unchecked("beep");
/// `ber`
pub const BER: crate::Name = crate::Name::new_unchecked("ber");
/// `bmp`
pub const BMP: crate::Name = crate::Name::new_unchecked("bmp");
/// `BMPEG`
pub const BMPEG: crate::Name = crate::Name::new_unchecked("BMPEG");
/// `boundary`
pub const BOUNDARY: crate::Name = crate::Name::new_unchecked("boundary");
/// `BT656`
pub const BT656: crate::Name = crate::Name::new_unchecked("BT656");
/// `BV16`
pub const BV16: crate::Name = crate::Name::new_unchecked("BV16");
/// `BV32`
pub const BV32: crate::Name = crate::Name::new_unchecked("BV32");
/// `byteranges`
pub const BYTERANGES: crate::Name = crate::Name::new_unchecked("byteranges");
/// `cache-manifest`
pub const CACHE_MANIFEST: crate::Name = crate::Name::new_unchecked("cache-manifest");
/// `calendar`
pub const CALENDAR: crate::Name = crate::Name::new_unchecked("calendar");
/// `call-completion`
pub const CALL_COMPLETION: crate::Name = crate::Name::new_unchecked("call-completion");
/// `CALS-1840`
pub const CALS_1840: crate::Name = crate::Name::new_unchecked("CALS-1840");
/// `captive`
pub const CAPTIVE: crate::Name = crate::Name::new_unchecked("captive");
/// `cbor`
pub const CBOR: crate::Name = crate::Name::new_unchecked("cbor");
/// `cbor-seq`
pub const CBOR_SEQ: crate::Name = crate::Name::new_unchecked("cbor-seq");
/// `cccex`
pub const CCCEX: crate::Name = crate::Name::new_unchecked("cccex");
/// `ccmp`
pub const CCMP: crate::Name = crate::Name::new_unchecked("ccmp");
/// `ccxml`
pub const CCXML: crate::Name = crate::Name::new_unchecked("ccxml");
/// `CDFX`
pub const CDFX: crate::Name = crate::Name::new_unchecked("CDFX");
/// `cdmi-capability`
pub const CDMI_CAPABILITY: crate::Name = crate::Name::new_unchecked("cdmi-capability");
/// `cdmi-container`
pub const CDMI_CONTAINER: crate::Name = crate::Name::new_unchecked("cdmi-container");
/// `cdmi-domain`
pub const CDMI_DOMAIN: crate::Name = crate::Name::new_unchecked("cdmi-domain");
/// `cdmi-object`
pub const CDMI_OBJECT: crate::Name = crate::Name::new_unchecked("cdmi-object");
/// `cdmi-queue`
pub const CDMI_QUEUE: crate::Name = crate::Name::new_unchecked("cdmi-queue");
/// `cdni`
pub const CDNI: crate::Name = crate::Name::new_unchecked("cdni");
/// `CEA`
pub const CEA: crate::Name = crate::Name::new_unchecked("CEA");
/// `cea-2018`
pub const CEA_2018: crate::Name = crate::Name::new_unchecked("cea-2018");
/// `CelB`
pub const CEL_B: crate::Name = crate::Name::new_unchecked("CelB");
/// `cellml`
pub const CELLML: crate::Name = crate::Name::new_unchecked("cellml");
/// `cfw`
pub const CFW: crate::Name = crate::Name::new_unchecked("cfw");
/// `cgm`
pub const CGM: crate::Name = crate::Name::new_unchecked("cgm");
/// `charset`
pub const CHARSET: crate::Name = crate::Name::new_unchecked("charset");
/// `chemical`
pub const CHEMICAL: crate::Name = crate::Name::new_unchecked("chemical");
/// `city`
pub const CITY: crate::Name = crate::Name::new_unchecked("city");
/// `clearmode`
pub const CLEARMODE: crate::Name = crate::Name::new_unchecked("clearmode");
/// `clr`
pub const CLR: crate::Name = crate::Name::new_unchecked("clr");
/// `clue`
pub const CLUE: crate::Name = crate::Name::new_unchecked("clue");
/// `clue_info`
pub const CLUE_INFO: crate::Name = crate::Name::new_unchecked("clue_info");
/// `cms`
pub const CMS: crate::Name = crate::Name::new_unchecked("cms");
/// `CN`
pub const CN: crate::Name = crate::Name::new_unchecked("CN");
/// `cnrp`
pub const CNRP: crate::Name = crate::Name::new_unchecked("cnrp");
/// `coap-group`
pub const COAP_GROUP: crate::Name = crate::Name::new_unchecked("coap-group");
/// `coap-payload`
pub const COAP_PAYLOAD: crate::Name = crate::Name::new_unchecked("coap-payload");
/// `collection`
pub const COLLECTION: crate::Name = crate::Name::new_unchecked("collection");
/// `commonground`
pub const COMMONGROUND: crate::Name = crate::Name::new_unchecked("commonground");
/// `conference-info`
pub const CONFERENCE_INFO: crate::Name = crate::Name::new_unchecked("conference-info");
/// `cose`
pub const COSE: crate::Name = crate::Name::new_unchecked("cose");
/// `cose-key`
pub const COSE_KEY: crate::Name = crate::Name::new_unchecked("cose-key");
/// `cose-key-set`
pub const COSE_KEY_SET: crate::Name = crate::Name::new_unchecked("cose-key-set");
/// `cpl`
pub const CPL: crate::Name = crate::Name::new_unchecked("cpl");
/// `cql`
pub const CQL: crate::Name = crate::Name::new_unchecked("cql");
/// `cql-expression`
pub const CQL_EXPRESSION: crate::Name = crate::Name::new_unchecked("cql-expression");
/// `cql-identifier`
pub const CQL_IDENTIFIER: crate::Name = crate::Name::new_unchecked("cql-identifier");
/// `csrattrs`
pub const CSRATTRS: crate::Name = crate::Name::new_unchecked("csrattrs");
/// `css`
pub const CSS: crate::Name = crate::Name::new_unchecked("css");
/// `csta`
pub const CSTA: crate::Name = crate::Name::new_unchecked("csta");
/// `CSTAdata`
pub const CSTADATA: crate::Name = crate::Name::new_unchecked("CSTAdata");
/// `csv`
pub const CSV: crate::Name = crate::Name::new_unchecked("csv");
/// `csv-schema`
pub const CSV_SCHEMA: crate::Name = crate::Name::new_unchecked("csv-schema");
/// `csvm`
pub const CSVM: crate::Name = crate::Name::new_unchecked("csvm");
/// `cwt`
pub const CWT: crate::Name = crate::Name::new_unchecked("cwt");
/// `cybercash`
pub const CYBERCASH: crate::Name = crate::Name::new_unchecked("cybercash");
/// `dash`
pub const DASH: crate::Name = crate::Name::new_unchecked("dash");
/// `dash-patch`
pub const DASH_PATCH: crate::Name = crate::Name::new_unchecked("dash-patch");
/// `dashdelta`
pub const DASHDELTA: crate::Name = crate::Name::new_unchecked("dashdelta");
/// `DAT12`
pub const DAT12: crate::Name = crate::Name::new_unchecked("DAT12");
/// `davmount`
pub const DAVMOUNT: crate::Name = crate::Name::new_unchecked("davmount");
/// `dca-rft`
pub const DCA_RFT: crate::Name = crate::Name::new_unchecked("dca-rft");
/// `DCD`
pub const DCD: crate::Name = crate::Name::new_unchecked("DCD");
/// `dec-dx`
pub const DEC_DX: crate::Name = crate::Name::new_unchecked("dec-dx");
/// `delsp`
pub const DELSP: crate::Name = crate::Name::new_unchecked("delsp");
/// `der`
pub const DER: crate::Name = crate::Name::new_unchecked("der");
/// `dialog-info`
pub const DIALOG_INFO: crate::Name = crate::Name::new_unchecked("dialog-info");
/// `dicom`
pub const DICOM: crate::Name = crate::Name::new_unchecked("dicom");
/// `dicom-rle`
pub const DICOM_RLE: crate::Name = crate::Name::new_unchecked("dicom-rle");
/// `digest`
pub const DIGEST: crate::Name = crate::Name::new_unchecked("digest");
/// `DII`
pub const DII: crate::Name = crate::Name::new_unchecked("DII");
/// `directory`
pub const DIRECTORY: crate::Name = crate::Name::new_unchecked("directory");
/// `DIT`
pub const DIT: crate::Name = crate::Name::new_unchecked("DIT");
/// `dls`
pub const DLS: crate::Name = crate::Name::new_unchecked("dls");
/// `dns`
pub const DNS: crate::Name = crate::Name::new_unchecked("dns");
/// `dns-message`
pub const DNS_MESSAGE: crate::Name = crate::Name::new_unchecked("dns-message");
/// `dots`
pub const DOTS: crate::Name = crate::Name::new_unchecked("dots");
/// `dskpp`
pub const DSKPP: crate::Name = crate::Name::new_unchecked("dskpp");
/// `dsr-es201108`
pub const DSR_ES201108: crate::Name = crate::Name::new_unchecked("dsr-es201108");
/// `dsr-es202050`
pub const DSR_ES202050: crate::Name = crate::Name::new_unchecked("dsr-es202050");
/// `dsr-es202211`
pub const DSR_ES202211: crate::Name = crate::Name::new_unchecked("dsr-es202211");
/// `dsr-es202212`
pub const DSR_ES202212: crate::Name = crate::Name::new_unchecked("dsr-es202212");
/// `dssc`
pub const DSSC: crate::Name = crate::Name::new_unchecked("dssc");
/// `DV`
pub const DV: crate::Name = crate::Name::new_unchecked("DV");
/// `dvcs`
pub const DVCS: crate::Name = crate::Name::new_unchecked("dvcs");
/// `DVI4`
pub const DVI4: crate::Name = crate::Name::new_unchecked("DVI4");
/// `e57`
pub const E57: crate::Name = crate::Name::new_unchecked("e57");
/// `eac3`
pub const EAC3: crate::Name = crate::Name::new_unchecked("eac3");
/// `ecmascript`
pub const ECMASCRIPT: crate::Name = crate::Name::new_unchecked("ecmascript");
/// `EDI-consent`
pub const EDI_CONSENT: crate::Name = crate::Name::new_unchecked("EDI-consent");
/// `EDI-X12`
pub const EDI_X12: crate::Name = crate::Name::new_unchecked("EDI-X12");
/// `EDIFACT`
pub const EDIFACT: crate::Name = crate::Name::new_unchecked("EDIFACT");
/// `efi`
pub const EFI: crate::Name = crate::Name::new_unchecked("efi");
/// `elm`
pub const ELM: crate::Name = crate::Name::new_unchecked("elm");
/// `EmergencyCallData.cap`
pub const EMERGENCY_CALL_DATA_CAP: crate::Name = crate::Name::new_unchecked("EmergencyCallData.cap");
/// `EmergencyCallData.Comment`
pub const EMERGENCY_CALL_DATA_COMMENT: crate::Name = crate::Name::new_unchecked("EmergencyCallData.Comment");
/// `EmergencyCallData.Control`
pub const EMERGENCY_CALL_DATA_CONTROL: crate::Name = crate::Name::new_unchecked("EmergencyCallData.Control");
/// `EmergencyCallData.DeviceInfo`
pub const EMERGENCY_CALL_DATA_DEVICE_INFO: crate::Name = crate::Name::new_unchecked("EmergencyCallData.DeviceInfo");
/// `EmergencyCallData.eCall.MSD`
pub const EMERGENCY_CALL_DATA_E_CALL_MSD: crate::Name = crate::Name::new_unchecked("EmergencyCallData.eCall.MSD");
/// `EmergencyCallData.ProviderInfo`
pub const EMERGENCY_CALL_DATA_PROVIDER_INFO: crate::Name = crate::Name::new_unchecked("EmergencyCallData.ProviderInfo");
/// `EmergencyCallData.ServiceInfo`
pub const EMERGENCY_CALL_DATA_SERVICE_INFO: crate::Name = crate::Name::new_unchecked("EmergencyCallData.ServiceInfo");
/// `EmergencyCallData.SubscriberInfo`
pub const EMERGENCY_CALL_DATA_SUBSCRIBER_INFO: crate::Name = crate::Name::new_unchecked("EmergencyCallData.SubscriberInfo");
/// `EmergencyCallData.VEDS`
pub const EMERGENCY_CALL_DATA_VEDS: crate::Name = crate::Name::new_unchecked("EmergencyCallData.VEDS");
/// `emf`
pub const EMF: crate::Name = crate::Name::new_unchecked("emf");
/// `emma`
pub const EMMA: crate::Name = crate::Name::new_unchecked("emma");
/// `emotionml`
pub const EMOTIONML: crate::Name = crate::Name::new_unchecked("emotionml");
/// `encaprtp`
pub const ENCAPRTP: crate::Name = crate::Name::new_unchecked("encaprtp");
/// `encrypted`
pub const ENCRYPTED: crate::Name = crate::Name::new_unchecked("encrypted");
/// `enriched`
pub const ENRICHED: crate::Name = crate::Name::new_unchecked("enriched");
/// `epp`
pub const EPP: crate::Name = crate::Name::new_unchecked("epp");
/// `epub`
pub const EPUB: crate::Name = crate::Name::new_unchecked("epub");
/// `eshop`
pub const ESHOP: crate::Name = crate::Name::new_unchecked("eshop");
/// `event-stream`
pub const EVENT_STREAM: crate::Name = crate::Name::new_unchecked("event-stream");
/// `EVRC`
pub const EVRC: crate::Name = crate::Name::new_unchecked("EVRC");
/// `EVRC-QCP`
pub const EVRC_QCP: crate::Name = crate::Name::new_unchecked("EVRC-QCP");
/// `EVRC0`
pub const EVRC0: crate::Name = crate::Name::new_unchecked("EVRC0");
/// `EVRC1`
pub const EVRC1: crate::Name = crate::Name::new_unchecked("EVRC1");
/// `EVRCB`
pub const EVRCB: crate::Name = crate::Name::new_unchecked("EVRCB");
/// `EVRCB0`
pub const EVRCB0: crate::Name = crate::Name::new_unchecked("EVRCB0");
/// `EVRCB1`
pub const EVRCB1: crate::Name = crate::Name::new_unchecked("EVRCB1");
/// `EVRCNW`
pub const EVRCNW: crate::Name = crate::Name::new_unchecked("EVRCNW");
/// `EVRCNW0`
pub const EVRCNW0: crate::Name = crate::Name::new_unchecked("EVRCNW0");
/// `EVRCNW1`
pub const EVRCNW1: crate::Name = crate::Name::new_unchecked("EVRCNW1");
/// `EVRCWB`
pub const EVRCWB: crate::Name = crate::Name::new_unchecked("EVRCWB");
/// `EVRCWB0`
pub const EVRCWB0: crate::Name = crate::Name::new_unchecked("EVRCWB0");
/// `EVRCWB1`
pub const EVRCWB1: crate::Name = crate::Name::new_unchecked("EVRCWB1");
/// `EVS`
pub const EVS: crate::Name = crate::Name::new_unchecked("EVS");
/// `example`
pub const EXAMPLE: crate::Name = crate::Name::new_unchecked("example");
/// `exi`
pub const EXI: crate::Name = crate::Name::new_unchecked("exi");
/// `expect-ct-report`
pub const EXPECT_CT_REPORT: crate::Name = crate::Name::new_unchecked("expect-ct-report");
/// `express`
pub const EXPRESS: crate::Name = crate::Name::new_unchecked("express");
/// `fastinfoset`
pub const FASTINFOSET: crate::Name = crate::Name::new_unchecked("fastinfoset");
/// `fastsoap`
pub const FASTSOAP: crate::Name = crate::Name::new_unchecked("fastsoap");
/// `fdt`
pub const FDT: crate::Name = crate::Name::new_unchecked("fdt");
/// `FFV1`
pub const FFV1: crate::Name = crate::Name::new_unchecked("FFV1");
/// `fhir`
pub const FHIR: crate::Name = crate::Name::new_unchecked("fhir");
/// `fhirpath`
pub const FHIRPATH: crate::Name = crate::Name::new_unchecked("fhirpath");
/// `fits`
pub const FITS: crate::Name = crate::Name::new_unchecked("fits");
/// `flexfec`
pub const FLEXFEC: crate::Name = crate::Name::new_unchecked("flexfec");
/// `font`
pub const FONT: crate::Name = crate::Name::new_unchecked("font");
/// `font-sfnt`
pub const FONT_SFNT: crate::Name = crate::Name::new_unchecked("font-sfnt");
/// `font-tdpfr`
pub const FONT_TDPFR: crate::Name = crate::Name::new_unchecked("font-tdpfr");
/// `font-woff`
pub const FONT_WOFF: crate::Name = crate::Name::new_unchecked("font-woff");
/// `form-data`
pub const FORM_DATA: crate::Name = crate::Name::new_unchecked("form-data");
/// `format`
pub const FORMAT: crate::Name = crate::Name::new_unchecked("format");
/// `framework-attributes`
pub const FRAMEWORK_ATTRIBUTES: crate::Name = crate::Name::new_unchecked("framework-attributes");
/// `fwdred`
pub const FWDRED: crate::Name = crate::Name::new_unchecked("fwdred");
/// `g3fax`
pub const G3FAX: crate::Name = crate::Name::new_unchecked("g3fax");
/// `G711-0`
pub const G711_0: crate::Name = crate::Name::new_unchecked("G711-0");
/// `G719`
pub const G719: crate::Name = crate::Name::new_unchecked("G719");
/// `G722`
pub const G722: crate::Name = crate::Name::new_unchecked("G722");
/// `G7221`
pub const G7221: crate::Name = crate::Name::new_unchecked("G7221");
/// `G723`
pub const G723: crate::Name = crate::Name::new_unchecked("G723");
/// `G726-16`
pub const G726_16: crate::Name = crate::Name::new_unchecked("G726-16");
/// `G726-24`
pub const G726_24: crate::Name = crate::Name::new_unchecked("G726-24");
/// `G726-32`
pub const G726_32: crate::Name = crate::Name::new_unchecked("G726-32");
/// `G726-40`
pub const G726_40: crate::Name = crate::Name::new_unchecked("G726-40");
/// `G728`
pub const G728: crate::Name = crate::Name::new_unchecked("G728");
/// `G729`
pub const G729: crate::Name = crate::Name::new_unchecked("G729");
/// `G7291`
pub const G7291: crate::Name = crate::Name::new_unchecked("G7291");
/// `G729D`
pub const G729D: crate::Name = crate::Name::new_unchecked("G729D");
/// `G729E`
pub const G729E: crate::Name = crate::Name::new_unchecked("G729E");
/// `geo`
pub const GEO: crate::Name = crate::Name::new_unchecked("geo");
/// `geopackage`
pub const GEOPACKAGE: crate::Name = crate::Name::new_unchecked("geopackage");
/// `geoxacml`
pub const GEOXACML: crate::Name = crate::Name::new_unchecked("geoxacml");
/// `gff3`
pub const GFF3: crate::Name = crate::Name::new_unchecked("gff3");
/// `gif`
pub const GIF: crate::Name = crate::Name::new_unchecked("gif");
/// `gltf`
pub const GLTF: crate::Name = crate::Name::new_unchecked("gltf");
/// `gltf-binary`
pub const GLTF_BINARY: crate::Name = crate::Name::new_unchecked("gltf-binary");
/// `gltf-buffer`
pub const GLTF_BUFFER: crate::Name = crate::Name::new_unchecked("gltf-buffer");
/// `gml`
pub const GML: crate::Name = crate::Name::new_unchecked("gml");
/// `grammar-ref-list`
pub const GRAMMAR_REF_LIST: crate::Name = crate::Name::new_unchecked("grammar-ref-list");
/// `GSM`
pub const GSM: crate::Name = crate::Name::new_unchecked("GSM");
/// `GSM-EFR`
pub const GSM_EFR: crate::Name = crate::Name::new_unchecked("GSM-EFR");
/// `GSM-HR-08`
pub const GSM_HR_08: crate::Name = crate::Name::new_unchecked("GSM-HR-08");
/// `gzip`
pub const GZIP: crate::Name = crate::Name::new_unchecked("gzip");
/// `H224`
pub const H224: crate::Name = crate::Name::new_unchecked("H224");
/// `H261`
pub const H261: crate::Name = crate::Name::new_unchecked("H261");
/// `H263`
pub const H263: crate::Name = crate::Name::new_unchecked("H263");
/// `H263-1998`
pub const H263_1998: crate::Name = crate::Name::new_unchecked("H263-1998");
/// `H263-2000`
pub const H263_2000: crate::Name = crate::Name::new_unchecked("H263-2000");
/// `H264`
pub const H264: crate::Name = crate::Name::new_unchecked("H264");
/// `H264-RCDO`
pub const H264_RCDO: crate::Name = crate::Name::new_unchecked("H264-RCDO");
/// `H264-SVC`
pub const H264_SVC: crate::Name = crate::Name::new_unchecked("H264-SVC");
/// `H265`
pub const H265: crate::Name = crate::Name::new_unchecked("H265");
/// `header-set`
pub const HEADER_SET: crate::Name = crate::Name::new_unchecked("header-set");
/// `heic`
pub const HEIC: crate::Name = crate::Name::new_unchecked("heic");
/// `heic-sequence`
pub const HEIC_SEQUENCE: crate::Name = crate::Name::new_unchecked("heic-sequence");
/// `heif`
pub const HEIF: crate::Name = crate::Name::new_unchecked("heif");
/// `heif-sequence`
pub const HEIF_SEQUENCE: crate::Name = crate::Name::new_unchecked("heif-sequence");
/// `hej2k`
pub const HEJ2K: crate::Name = crate::Name::new_unchecked("hej2k");
/// `held`
pub const HELD: crate::Name = crate::Name::new_unchecked("held");
/// `hsj2`
pub const HSJ2: crate::Name = crate::Name::new_unchecked("hsj2");
/// `html`
pub const HTML: crate::Name = crate::Name::new_unchecked("html");
/// `http`
pub const HTTP: crate::Name = crate::Name::new_unchecked("http");
/// `hyperstudio`
pub const HYPERSTUDIO: crate::Name = crate::Name::new_unchecked("hyperstudio");
/// `ibe-key-request`
pub const IBE_KEY_REQUEST: crate::Name = crate::Name::new_unchecked("ibe-key-request");
/// `ibe-pkg-reply`
pub const IBE_PKG_REPLY: crate::Name = crate::Name::new_unchecked("ibe-pkg-reply");
/// `ibe-pp-data`
pub const IBE_PP_DATA: crate::Name = crate::Name::new_unchecked("ibe-pp-data");
/// `ief`
pub const IEF: crate::Name = crate::Name::new_unchecked("ief");
/// `iges`
pub const IGES: crate::Name = crate::Name::new_unchecked("iges");
/// `iLBC`
pub const I_LBC: crate::Name = crate::Name::new_unchecked("iLBC");
/// `im-iscomposing`
pub const IM_ISCOMPOSING: crate::Name = crate::Name::new_unchecked("im-iscomposing");
/// `image`
pub const IMAGE: crate::Name = crate::Name::new_unchecked("image");
/// `index`
pub const INDEX: crate::Name = crate::Name::new_unchecked("index");
/// `index.cmd`
pub const INDEX_CMD: crate::Name = crate::Name::new_unchecked("index.cmd");
/// `index.obj`
pub const INDEX_OBJ: crate::Name = crate::Name::new_unchecked("index.obj");
/// `index.response`
pub const INDEX_RESPONSE: crate::Name = crate::Name::new_unchecked("index.response");
/// `index.vnd`
pub const INDEX_VND: crate::Name = crate::Name::new_unchecked("index.vnd");
/// `inkml`
pub const INKML: crate::Name = crate::Name::new_unchecked("inkml");
/// `IOTP`
pub const IOTP: crate::Name = crate::Name::new_unchecked("IOTP");
/// `ip-mr_v2.5`
pub const IP_MR_V2_5: crate::Name = crate::Name::new_unchecked("ip-mr_v2.5");
/// `ipfix`
pub const IPFIX: crate::Name = crate::Name::new_unchecked("ipfix");
/// `ipp`
pub const IPP: crate::Name = crate::Name::new_unchecked("ipp");
/// `iso.segment`
pub const ISO_SEGMENT: crate::Name = crate::Name::new_unchecked("iso.segment");
/// `ISUP`
pub const ISUP: crate::Name = crate::Name::new_unchecked("ISUP");
/// `its`
pub const ITS: crate::Name = crate::Name::new_unchecked("its");
/// `java-archive`
pub const JAVA_ARCHIVE: crate::Name = crate::Name::new_unchecked("java-archive");
/// `javascript`
pub const JAVASCRIPT: crate::Name = crate::Name::new_unchecked("javascript");
/// `javascript1.0`
pub const JAVASCRIPT1_0: crate::Name = crate::Name::new_unchecked("javascript1.0");
/// `javascript1.1`
pub const JAVASCRIPT1_1: crate::Name = crate::Name::new_unchecked("javascript1.1");
/// `javascript1.2`
pub const JAVASCRIPT1_2: crate::Name = crate::Name::new_unchecked("javascript1.2");
/// `javascript1.3`
pub const JAVASCRIPT1_3: crate::Name = crate::Name::new_unchecked("javascript1.3");
/// `javascript1.4`
pub const JAVASCRIPT1_4: crate::Name = crate::Name::new_unchecked("javascript1.4");
/// `javascript1.5`
pub const JAVASCRIPT1_5: crate::Name = crate::Name::new_unchecked("javascript1.5");
/// `jcr-cnd`
pub const JCR_CND: crate::Name = crate::Name::new_unchecked("jcr-cnd");
/// `jf2feed`
pub const JF2FEED: crate::Name = crate::Name::new_unchecked("jf2feed");
/// `jls`
pub const JLS: crate::Name = crate::Name::new_unchecked("jls");
/// `jose`
pub const JOSE: crate::Name = crate::Name::new_unchecked("jose");
/// `jp2`
pub const JP2: crate::Name = crate::Name::new_unchecked("jp2");
/// `jpeg`
pub const JPEG: crate::Name = crate::Name::new_unchecked("jpeg");
/// `jpeg2000`
pub const JPEG2000: crate::Name = crate::Name::new_unchecked("jpeg2000");
/// `jph`
pub const JPH: crate::Name = crate::Name::new_unchecked("jph");
/// `jphc`
pub const JPHC: crate::Name = crate::Name::new_unchecked("jphc");
/// `jpm`
pub const JPM: crate::Name = crate::Name::new_unchecked("jpm");
/// `jpx`
pub const JPX: crate::Name = crate::Name::new_unchecked("jpx");
/// `jrd`
pub const JRD: crate::Name = crate::Name::new_unchecked("jrd");
/// `jscalendar`
pub const JSCALENDAR: crate::Name = crate::Name::new_unchecked("jscalendar");
/// `jscript`
pub const JSCRIPT: crate::Name = crate::Name::new_unchecked("jscript");
/// `json`
pub const JSON: crate::Name = crate::Name::new_unchecked("json");
/// `json-patch`
pub const JSON_PATCH: crate::Name = crate::Name::new_unchecked("json-patch");
/// `json-seq`
pub const JSON_SEQ: crate::Name = crate::Name::new_unchecked("json-seq");
/// `jwk`
pub const JWK: crate::Name = crate::Name::new_unchecked("jwk");
/// `jwk-set`
pub const JWK_SET: crate::Name = crate::Name::new_unchecked("jwk-set");
/// `jwt`
pub const JWT: crate::Name = crate::Name::new_unchecked("jwt");
/// `jxr`
pub const JXR: crate::Name = crate::Name::new_unchecked("jxr");
/// `jxrA`
pub const JXR_A: crate::Name = crate::Name::new_unchecked("jxrA");
/// `jxrS`
pub const JXR_S: crate::Name = crate::Name::new_unchecked("jxrS");
/// `jxs`
pub const JXS: crate::Name = crate::Name::new_unchecked("jxs");
/// `jxsc`
pub const JXSC: crate::Name = crate::Name::new_unchecked("jxsc");
/// `jxsi`
pub const JXSI: crate::Name = crate::Name::new_unchecked("jxsi");
/// `jxss`
pub const JXSS: crate::Name = crate::Name::new_unchecked("jxss");
/// `jxsv`
pub const JXSV: crate::Name = crate::Name::new_unchecked("jxsv");
/// `kpml-request`
pub const KPML_REQUEST: crate::Name = crate::Name::new_unchecked("kpml-request");
/// `kpml-response`
pub const KPML_RESPONSE: crate::Name = crate::Name::new_unchecked("kpml-response");
/// `ktx`
pub const KTX: crate::Name = crate::Name::new_unchecked("ktx");
/// `ktx2`
pub const KTX2: crate::Name = crate::Name::new_unchecked("ktx2");
/// `L16`
pub const L16: crate::Name = crate::Name::new_unchecked("L16");
/// `L20`
pub const L20: crate::Name = crate::Name::new_unchecked("L20");
/// `L24`
pub const L24: crate::Name = crate::Name::new_unchecked("L24");
/// `L8`
pub const L8: crate::Name = crate::Name::new_unchecked("L8");
/// `ld`
pub const LD: crate::Name = crate::Name::new_unchecked("ld");
/// `lgr`
pub const LGR: crate::Name = crate::Name::new_unchecked("lgr");
/// `link-format`
pub const LINK_FORMAT: crate::Name = crate::Name::new_unchecked("link-format");
/// `livescript`
pub const LIVESCRIPT: crate::Name = crate::Name::new_unchecked("livescript");
/// `load-control`
pub const LOAD_CONTROL: crate::Name = crate::Name::new_unchecked("load-control");
/// `lost`
pub const LOST: crate::Name = crate::Name::new_unchecked("lost");
/// `lostsync`
pub const LOSTSYNC: crate::Name = crate::Name::new_unchecked("lostsync");
/// `LPC`
pub const LPC: crate::Name = crate::Name::new_unchecked("LPC");
/// `lpf`
pub const LPF: crate::Name = crate::Name::new_unchecked("lpf");
/// `LXF`
pub const LXF: crate::Name = crate::Name::new_unchecked("LXF");
/// `mac-binhex40`
pub const MAC_BINHEX40: crate::Name = crate::Name::new_unchecked("mac-binhex40");
/// `macwriteii`
pub const MACWRITEII: crate::Name = crate::Name::new_unchecked("macwriteii");
/// `mads`
pub const MADS: crate::Name = crate::Name::new_unchecked("mads");
/// `manifest`
pub const MANIFEST: crate::Name = crate::Name::new_unchecked("manifest");
/// `marc`
pub const MARC: crate::Name = crate::Name::new_unchecked("marc");
/// `marcxml`
pub const MARCXML: crate::Name = crate::Name::new_unchecked("marcxml");
/// `markdown`
pub const MARKDOWN: crate::Name = crate::Name::new_unchecked("markdown");
/// `mathematica`
pub const MATHEMATICA: crate::Name = crate::Name::new_unchecked("mathematica");
/// `mathml`
pub const MATHML: crate::Name = crate::Name::new_unchecked("mathml");
/// `mathml-content`
pub const MATHML_CONTENT: crate::Name = crate::Name::new_unchecked("mathml-content");
/// `mathml-presentation`
pub const MATHML_PRESENTATION: crate::Name = crate::Name::new_unchecked("mathml-presentation");
/// `mbms-associated-procedure-description`
pub const MBMS_ASSOCIATED_PROCEDURE_DESCRIPTION: crate::Name = crate::Name::new_unchecked("mbms-associated-procedure-description");
/// `mbms-deregister`
pub const MBMS_DEREGISTER: crate::Name = crate::Name::new_unchecked("mbms-deregister");
/// `mbms-envelope`
pub const MBMS_ENVELOPE: crate::Name = crate::Name::new_unchecked("mbms-envelope");
/// `mbms-msk`
pub const MBMS_MSK: crate::Name = crate::Name::new_unchecked("mbms-msk");
/// `mbms-msk-response`
pub const MBMS_MSK_RESPONSE: crate::Name = crate::Name::new_unchecked("mbms-msk-response");
/// `mbms-protection-description`
pub const MBMS_PROTECTION_DESCRIPTION: crate::Name = crate::Name::new_unchecked("mbms-protection-description");
/// `mbms-reception-report`
pub const MBMS_RECEPTION_REPORT: crate::Name = crate::Name::new_unchecked("mbms-reception-report");
/// `mbms-register`
pub const MBMS_REGISTER: crate::Name = crate::Name::new_unchecked("mbms-register");
/// `mbms-register-response`
pub const MBMS_REGISTER_RESPONSE: crate::Name = crate::Name::new_unchecked("mbms-register-response");
/// `mbms-schedule`
pub const MBMS_SCHEDULE: crate::Name = crate::Name::new_unchecked("mbms-schedule");
/// `mbms-user-service-description`
pub const MBMS_USER_SERVICE_DESCRIPTION: crate::Name = crate::Name::new_unchecked("mbms-user-service-description");
/// `mbox`
pub const MBOX: crate::Name = crate::Name::new_unchecked("mbox");
/// `media_control`
pub const MEDIA_CONTROL: crate::Name = crate::Name::new_unchecked("media_control");
/// `media-policy-dataset`
pub const MEDIA_POLICY_DATASET: crate::Name = crate::Name::new_unchecked("media-policy-dataset");
/// `mediaservercontrol`
pub const MEDIASERVERCONTROL: crate::Name = crate::Name::new_unchecked("mediaservercontrol");
/// `MELP`
pub const MELP: crate::Name = crate::Name::new_unchecked("MELP");
/// `MELP1200`
pub const MELP1200: crate::Name = crate::Name::new_unchecked("MELP1200");
/// `MELP2400`
pub const MELP2400: crate::Name = crate::Name::new_unchecked("MELP2400");
/// `MELP600`
pub const MELP600: crate::Name = crate::Name::new_unchecked("MELP600");
/// `merge-patch`
pub const MERGE_PATCH: crate::Name = crate::Name::new_unchecked("merge-patch");
/// `mesh`
pub const MESH: crate::Name = crate::Name::new_unchecked("mesh");
/// `message`
pub const MESSAGE: crate::Name = crate::Name::new_unchecked("message");
/// `metalink4`
pub const METALINK4: crate::Name = crate::Name::new_unchecked("metalink4");
/// `mets`
pub const METS: crate::Name = crate::Name::new_unchecked("mets");
/// `MF4`
pub const MF4: crate::Name = crate::Name::new_unchecked("MF4");
/// `mhas`
pub const MHAS: crate::Name = crate::Name::new_unchecked("mhas");
/// `mikey`
pub const MIKEY: crate::Name = crate::Name::new_unchecked("mikey");
/// `mipc`
pub const MIPC: crate::Name = crate::Name::new_unchecked("mipc");
/// `missing-blocks`
pub const MISSING_BLOCKS: crate::Name = crate::Name::new_unchecked("missing-blocks");
/// `mixed`
pub const MIXED: crate::Name = crate::Name::new_unchecked("mixed");
/// `mizar`
pub const MIZAR: crate::Name = crate::Name::new_unchecked("mizar");
/// `mj2`
pub const MJ2: crate::Name = crate::Name::new_unchecked("mj2");
/// `mmt-aei`
pub const MMT_AEI: crate::Name = crate::Name::new_unchecked("mmt-aei");
/// `mmt-usd`
pub const MMT_USD: crate::Name = crate::Name::new_unchecked("mmt-usd");
/// `mobile-xmf`
pub const MOBILE_XMF: crate::Name = crate::Name::new_unchecked("mobile-xmf");
/// `model`
pub const MODEL: crate::Name = crate::Name::new_unchecked("model");
/// `mods`
pub const MODS: crate::Name = crate::Name::new_unchecked("mods");
/// `moss-keys`
pub const MOSS_KEYS: crate::Name = crate::Name::new_unchecked("moss-keys");
/// `moss-signature`
pub const MOSS_SIGNATURE: crate::Name = crate::Name::new_unchecked("moss-signature");
/// `mosskey-data`
pub const MOSSKEY_DATA: crate::Name = crate::Name::new_unchecked("mosskey-data");
/// `mosskey-request`
pub const MOSSKEY_REQUEST: crate::Name = crate::Name::new_unchecked("mosskey-request");
/// `MP1S`
pub const MP1S: crate::Name = crate::Name::new_unchecked("MP1S");
/// `mp21`
pub const MP21: crate::Name = crate::Name::new_unchecked("mp21");
/// `MP2P`
pub const MP2P: crate::Name = crate::Name::new_unchecked("MP2P");
/// `mp2t`
pub const MP2T: crate::Name = crate::Name::new_unchecked("mp2t");
/// `mp4`
pub const MP4: crate::Name = crate::Name::new_unchecked("mp4");
/// `MP4A-LATM`
pub const MP4A_LATM: crate::Name = crate::Name::new_unchecked("MP4A-LATM");
/// `MP4V-ES`
pub const MP4V_ES: crate::Name = crate::Name::new_unchecked("MP4V-ES");
/// `MPA`
pub const MPA: crate::Name = crate::Name::new_unchecked("MPA");
/// `mpa-robust`
pub const MPA_ROBUST: crate::Name = crate::Name::new_unchecked("mpa-robust");
/// `mpeg`
pub const MPEG: crate::Name = crate::Name::new_unchecked("mpeg");
/// `mpeg4-generic`
pub const MPEG4_GENERIC: crate::Name = crate::Name::new_unchecked("mpeg4-generic");
/// `mpeg4-iod`
pub const MPEG4_IOD: crate::Name = crate::Name::new_unchecked("mpeg4-iod");
/// `mpeg4-iod-xmt`
pub const MPEG4_IOD_XMT: crate::Name = crate::Name::new_unchecked("mpeg4-iod-xmt");
/// `MPV`
pub const MPV: crate::Name = crate::Name::new_unchecked("MPV");
/// `mrb-consumer`
pub const MRB_CONSUMER: crate::Name = crate::Name::new_unchecked("mrb-consumer");
/// `mrb-publish`
pub const MRB_PUBLISH: crate::Name = crate::Name::new_unchecked("mrb-publish");
/// `msc-ivr`
pub const MSC_IVR: crate::Name = crate::Name::new_unchecked("msc-ivr");
/// `msc-mixer`
pub const MSC_MIXER: crate::Name = crate::Name::new_unchecked("msc-mixer");
/// `msgpack`
pub const MSGPACK: crate::Name = crate::Name::new_unchecked("msgpack");
/// `msword`
pub const MSWORD: crate::Name = crate::Name::new_unchecked("msword");
/// `mtl`
pub const MTL: crate::Name = crate::Name::new_unchecked("mtl");
/// `mud`
pub const MUD: crate::Name = crate::Name::new_unchecked("mud");
/// `multilingual`
pub const MULTILINGUAL: crate::Name = crate::Name::new_unchecked("multilingual");
/// `multipart`
pub const MULTIPART: crate::Name = crate::Name::new_unchecked("multipart");
/// `multipart-core`
pub const MULTIPART_CORE: crate::Name = crate::Name::new_unchecked("multipart-core");
/// `mxf`
pub const MXF: crate::Name = crate::Name::new_unchecked("mxf");
/// `n-quads`
pub const N_QUADS: crate::Name = crate::Name::new_unchecked("n-quads");
/// `n-triples`
pub const N_TRIPLES: crate::Name = crate::Name::new_unchecked("n-triples");
/// `n3`
pub const N3: crate::Name = crate::Name::new_unchecked("n3");
/// `naplps`
pub const NAPLPS: crate::Name = crate::Name::new_unchecked("naplps");
/// `nasdata`
pub const NASDATA: crate::Name = crate::Name::new_unchecked("nasdata");
/// `news-checkgroups`
pub const NEWS_CHECKGROUPS: crate::Name = crate::Name::new_unchecked("news-checkgroups");
/// `news-groupinfo`
pub const NEWS_GROUPINFO: crate::Name = crate::Name::new_unchecked("news-groupinfo");
/// `news-transmission`
pub const NEWS_TRANSMISSION: crate::Name = crate::Name::new_unchecked("news-transmission");
/// `nlsml`
pub const NLSML: crate::Name = crate::Name::new_unchecked("nlsml");
/// `node`
pub const NODE: crate::Name = crate::Name::new_unchecked("node");
/// `nss`
pub const NSS: crate::Name = crate::Name::new_unchecked("nss");
/// `nv`
pub const NV: crate::Name = crate::Name::new_unchecked("nv");
/// `oauth-authz-req`
pub const OAUTH_AUTHZ_REQ: crate::Name = crate::Name::new_unchecked("oauth-authz-req");
/// `obj`
pub const OBJ: crate::Name = crate::Name::new_unchecked("obj");
/// `ocsp-request`
pub const OCSP_REQUEST: crate::Name = crate::Name::new_unchecked("ocsp-request");
/// `ocsp-response`
pub const OCSP_RESPONSE: crate::Name = crate::Name::new_unchecked("ocsp-response");
/// `octet-stream`
pub const OCTET_STREAM: crate::Name = crate::Name::new_unchecked("octet-stream");
/// `ODA`
pub const ODA: crate::Name = crate::Name::new_unchecked("ODA");
/// `odm`
pub const ODM: crate::Name = crate::Name::new_unchecked("odm");
/// `ODX`
pub const ODX: crate::Name = crate::Name::new_unchecked("ODX");
/// `oebps-package`
pub const OEBPS_PACKAGE: crate::Name = crate::Name::new_unchecked("oebps-package");
/// `ogg`
pub const OGG: crate::Name = crate::Name::new_unchecked("ogg");
/// `opc-nodeset`
pub const OPC_NODESET: crate::Name = crate::Name::new_unchecked("opc-nodeset");
/// `opus`
pub const OPUS: crate::Name = crate::Name::new_unchecked("opus");
/// `oscore`
pub const OSCORE: crate::Name = crate::Name::new_unchecked("oscore");
/// `otf`
pub const OTF: crate::Name = crate::Name::new_unchecked("otf");
/// `oxps`
pub const OXPS: crate::Name = crate::Name::new_unchecked("oxps");
/// `p21`
pub const P21: crate::Name = crate::Name::new_unchecked("p21");
/// `p2p-overlay`
pub const P2P_OVERLAY: crate::Name = crate::Name::new_unchecked("p2p-overlay");
/// `parallel`
pub const PARALLEL: crate::Name = crate::Name::new_unchecked("parallel");
/// `parameters`
pub const PARAMETERS: crate::Name = crate::Name::new_unchecked("parameters");
/// `parityfec`
pub const PARITYFEC: crate::Name = crate::Name::new_unchecked("parityfec");
/// `passport`
pub const PASSPORT: crate::Name = crate::Name::new_unchecked("passport");
/// `patch-ops-error`
pub const PATCH_OPS_ERROR: crate::Name = crate::Name::new_unchecked("patch-ops-error");
/// `PCMA`
pub const PCMA: crate::Name = crate::Name::new_unchecked("PCMA");
/// `PCMA-WB`
pub const PCMA_WB: crate::Name = crate::Name::new_unchecked("PCMA-WB");
/// `PCMU`
pub const PCMU: crate::Name = crate::Name::new_unchecked("PCMU");
/// `PCMU-WB`
pub const PCMU_WB: crate::Name = crate::Name::new_unchecked("PCMU-WB");
/// `pdf`
pub const PDF: crate::Name = crate::Name::new_unchecked("pdf");
/// `PDX`
pub const PDX: crate::Name = crate::Name::new_unchecked("PDX");
/// `pem-certificate-chain`
pub const PEM_CERTIFICATE_CHAIN: crate::Name = crate::Name::new_unchecked("pem-certificate-chain");
/// `pgp-encrypted`
pub const PGP_ENCRYPTED: crate::Name = crate::Name::new_unchecked("pgp-encrypted");
/// `pgp-keys`
pub const PGP_KEYS: crate::Name = crate::Name::new_unchecked("pgp-keys");
/// `pgp-signature`
pub const PGP_SIGNATURE: crate::Name = crate::Name::new_unchecked("pgp-signature");
/// `pidf`
pub const PIDF: crate::Name = crate::Name::new_unchecked("pidf");
/// `pidf-diff`
pub const PIDF_DIFF: crate::Name = crate::Name::new_unchecked("pidf-diff");
/// `pkcs10`
pub const PKCS10: crate::Name = crate::Name::new_unchecked("pkcs10");
/// `pkcs12`
pub const PKCS12: crate::Name = crate::Name::new_unchecked("pkcs12");
/// `pkcs7-mime`
pub const PKCS7_MIME: crate::Name = crate::Name::new_unchecked("pkcs7-mime");
/// `pkcs7-signature`
pub const PKCS7_SIGNATURE: crate::Name = crate::Name::new_unchecked("pkcs7-signature");
/// `pkcs8`
pub const PKCS8: crate::Name = crate::Name::new_unchecked("pkcs8");
/// `pkcs8-encrypted`
pub const PKCS8_ENCRYPTED: crate::Name = crate::Name::new_unchecked("pkcs8-encrypted");
/// `pkix-attr-cert`
pub const PKIX_ATTR_CERT: crate::Name = crate::Name::new_unchecked("pkix-attr-cert");
/// `pkix-cert`
pub const PKIX_CERT: crate::Name = crate::Name::new_unchecked("pkix-cert");
/// `pkix-crl`
pub const PKIX_CRL: crate::Name = crate::Name::new_unchecked("pkix-crl");
/// `pkix-pkipath`
pub const PKIX_PKIPATH: crate::Name = crate::Name::new_unchecked("pkix-pkipath");
/// `pkixcmp`
pub const PKIXCMP: crate::Name = crate::Name::new_unchecked("pkixcmp");
/// `plain`
pub const PLAIN: crate::Name = crate::Name::new_unchecked("plain");
/// `pls`
pub const PLS: crate::Name = crate::Name::new_unchecked("pls");
/// `png`
pub const PNG: crate::Name = crate::Name::new_unchecked("png");
/// `poc-settings`
pub const POC_SETTINGS: crate::Name = crate::Name::new_unchecked("poc-settings");
/// `pointer`
pub const POINTER: crate::Name = crate::Name::new_unchecked("pointer");
/// `postscript`
pub const POSTSCRIPT: crate::Name = crate::Name::new_unchecked("postscript");
/// `ppsp-tracker`
pub const PPSP_TRACKER: crate::Name = crate::Name::new_unchecked("ppsp-tracker");
/// `problem`
pub const PROBLEM: crate::Name = crate::Name::new_unchecked("problem");
/// `provenance`
pub const PROVENANCE: crate::Name = crate::Name::new_unchecked("provenance");
/// `provenance-notation`
pub const PROVENANCE_NOTATION: crate::Name = crate::Name::new_unchecked("provenance-notation");
/// `prs.alvestrand.titrax-sheet`
pub const PRS_ALVESTRAND_TITRAX_SHEET: crate::Name = crate::Name::new_unchecked("prs.alvestrand.titrax-sheet");
/// `prs.btif`
pub const PRS_BTIF: crate::Name = crate::Name::new_unchecked("prs.btif");
/// `prs.cww`
pub const PRS_CWW: crate::Name = crate::Name::new_unchecked("prs.cww");
/// `prs.cyn`
pub const PRS_CYN: crate::Name = crate::Name::new_unchecked("prs.cyn");
/// `prs.fallenstein.rst`
pub const PRS_FALLENSTEIN_RST: crate::Name = crate::Name::new_unchecked("prs.fallenstein.rst");
/// `prs.hpub`
pub const PRS_HPUB: crate::Name = crate::Name::new_unchecked("prs.hpub");
/// `prs.lines.tag`
pub const PRS_LINES_TAG: crate::Name = crate::Name::new_unchecked("prs.lines.tag");
/// `prs.nprend`
pub const PRS_NPREND: crate::Name = crate::Name::new_unchecked("prs.nprend");
/// `prs.plucker`
pub const PRS_PLUCKER: crate::Name = crate::Name::new_unchecked("prs.plucker");
/// `prs.prop.logic`
pub const PRS_PROP_LOGIC: crate::Name = crate::Name::new_unchecked("prs.prop.logic");
/// `prs.pti`
pub const PRS_PTI: crate::Name = crate::Name::new_unchecked("prs.pti");
/// `prs.rdf-xml-crypt`
pub const PRS_RDF_XML_CRYPT: crate::Name = crate::Name::new_unchecked("prs.rdf-xml-crypt");
/// `prs.sid`
pub const PRS_SID: crate::Name = crate::Name::new_unchecked("prs.sid");
/// `prs.xsf`
pub const PRS_XSF: crate::Name = crate::Name::new_unchecked("prs.xsf");
/// `pskc`
pub const PSKC: crate::Name = crate::Name::new_unchecked("pskc");
/// `pvd`
pub const PVD: crate::Name = crate::Name::new_unchecked("pvd");
/// `pwg-raster`
pub const PWG_RASTER: crate::Name = crate::Name::new_unchecked("pwg-raster");
/// `q`
pub const Q: crate::Name = crate::Name::new_unchecked("q");
/// `QCELP`
pub const QCELP: crate::Name = crate::Name::new_unchecked("QCELP");
/// `QSIG`
pub const QSIG: crate::Name = crate::Name::new_unchecked("QSIG");
/// `quicktime`
pub const QUICKTIME: crate::Name = crate::Name::new_unchecked("quicktime");
/// `raptorfec`
pub const RAPTORFEC: crate::Name = crate::Name::new_unchecked("raptorfec");
/// `raw`
pub const RAW: crate::Name = crate::Name::new_unchecked("raw");
/// `rdap`
pub const RDAP: crate::Name = crate::Name::new_unchecked("rdap");
/// `rdf`
pub const RDF: crate::Name = crate::Name::new_unchecked("rdf");
/// `RED`
pub const RED: crate::Name = crate::Name::new_unchecked("RED");
/// `reginfo`
pub const REGINFO: crate::Name = crate::Name::new_unchecked("reginfo");
/// `related`
pub const RELATED: crate::Name = crate::Name::new_unchecked("related");
/// `relax-ng-compact-syntax`
pub const RELAX_NG_COMPACT_SYNTAX: crate::Name = crate::Name::new_unchecked("relax-ng-compact-syntax");
/// `remote-printing`
pub const REMOTE_PRINTING: crate::Name = crate::Name::new_unchecked("remote-printing");
/// `report`
pub const REPORT: crate::Name = crate::Name::new_unchecked("report");
/// `reputon`
pub const REPUTON: crate::Name = crate::Name::new_unchecked("reputon");
/// `resource-lists`
pub const RESOURCE_LISTS: crate::Name = crate::Name::new_unchecked("resource-lists");
/// `resource-lists-diff`
pub const RESOURCE_LISTS_DIFF: crate::Name = crate::Name::new_unchecked("resource-lists-diff");
/// `rfc`
pub const RFC: crate::Name = crate::Name::new_unchecked("rfc");
/// `rfc822-headers`
pub const RFC822_HEADERS: crate::Name = crate::Name::new_unchecked("rfc822-headers");
/// `richtext`
pub const RICHTEXT: crate::Name = crate::Name::new_unchecked("richtext");
/// `riscos`
pub const RISCOS: crate::Name = crate::Name::new_unchecked("riscos");
/// `rlmi`
pub const RLMI: crate::Name = crate::Name::new_unchecked("rlmi");
/// `rls-services`
pub const RLS_SERVICES: crate::Name = crate::Name::new_unchecked("rls-services");
/// `route-apd`
pub const ROUTE_APD: crate::Name = crate::Name::new_unchecked("route-apd");
/// `route-s-tsid`
pub const ROUTE_S_TSID: crate::Name = crate::Name::new_unchecked("route-s-tsid");
/// `route-usd`
pub const ROUTE_USD: crate::Name = crate::Name::new_unchecked("route-usd");
/// `rpki-ghostbusters`
pub const RPKI_GHOSTBUSTERS: crate::Name = crate::Name::new_unchecked("rpki-ghostbusters");
/// `rpki-manifest`
pub const RPKI_MANIFEST: crate::Name = crate::Name::new_unchecked("rpki-manifest");
/// `rpki-publication`
pub const RPKI_PUBLICATION: crate::Name = crate::Name::new_unchecked("rpki-publication");
/// `rpki-roa`
pub const RPKI_ROA: crate::Name = crate::Name::new_unchecked("rpki-roa");
/// `rpki-updown`
pub const RPKI_UPDOWN: crate::Name = crate::Name::new_unchecked("rpki-updown");
/// `rtf`
pub const RTF: crate::Name = crate::Name::new_unchecked("rtf");
/// `rtp-enc-aescm128`
pub const RTP_ENC_AESCM128: crate::Name = crate::Name::new_unchecked("rtp-enc-aescm128");
/// `rtp-midi`
pub const RTP_MIDI: crate::Name = crate::Name::new_unchecked("rtp-midi");
/// `rtploopback`
pub const RTPLOOPBACK: crate::Name = crate::Name::new_unchecked("rtploopback");
/// `rtx`
pub const RTX: crate::Name = crate::Name::new_unchecked("rtx");
/// `samlassertion`
pub const SAMLASSERTION: crate::Name = crate::Name::new_unchecked("samlassertion");
/// `samlmetadata`
pub const SAMLMETADATA: crate::Name = crate::Name::new_unchecked("samlmetadata");
/// `sarif`
pub const SARIF: crate::Name = crate::Name::new_unchecked("sarif");
/// `sarif-external-properties`
pub const SARIF_EXTERNAL_PROPERTIES: crate::Name = crate::Name::new_unchecked("sarif-external-properties");
/// `sbe`
pub const SBE: crate::Name = crate::Name::new_unchecked("sbe");
/// `sbml`
pub const SBML: crate::Name = crate::Name::new_unchecked("sbml");
/// `scaip`
pub const SCAIP: crate::Name = crate::Name::new_unchecked("scaip");
/// `scim`
pub const SCIM: crate::Name = crate::Name::new_unchecked("scim");
/// `scip`
pub const SCIP: crate::Name = crate::Name::new_unchecked("scip");
/// `scvp-cv-request`
pub const SCVP_CV_REQUEST: crate::Name = crate::Name::new_unchecked("scvp-cv-request");
/// `scvp-cv-response`
pub const SCVP_CV_RESPONSE: crate::Name = crate::Name::new_unchecked("scvp-cv-response");
/// `scvp-vp-request`
pub const SCVP_VP_REQUEST: crate::Name = crate::Name::new_unchecked("scvp-vp-request");
/// `scvp-vp-response`
pub const SCVP_VP_RESPONSE: crate::Name = crate::Name::new_unchecked("scvp-vp-response");
/// `sdp`
pub const SDP: crate::Name = crate::Name::new_unchecked("sdp");
/// `secevent`
pub const SECEVENT: crate::Name = crate::Name::new_unchecked("secevent");
/// `senml`
pub const SENML: crate::Name = crate::Name::new_unchecked("senml");
/// `senml-etch`
pub const SENML_ETCH: crate::Name = crate::Name::new_unchecked("senml-etch");
/// `senml-exi`
pub const SENML_EXI: crate::Name = crate::Name::new_unchecked("senml-exi");
/// `sensml`
pub const SENSML: crate::Name = crate::Name::new_unchecked("sensml");
/// `sensml-exi`
pub const SENSML_EXI: crate::Name = crate::Name::new_unchecked("sensml-exi");
/// `sep`
pub const SEP: crate::Name = crate::Name::new_unchecked("sep");
/// `sep-exi`
pub const SEP_EXI: crate::Name = crate::Name::new_unchecked("sep-exi");
/// `session-info`
pub const SESSION_INFO: crate::Name = crate::Name::new_unchecked("session-info");
/// `set-payment`
pub const SET_PAYMENT: crate::Name = crate::Name::new_unchecked("set-payment");
/// `set-payment-initiation`
pub const SET_PAYMENT_INITIATION: crate::Name = crate::Name::new_unchecked("set-payment-initiation");
/// `set-registration`
pub const SET_REGISTRATION: crate::Name = crate::Name::new_unchecked("set-registration");
/// `set-registration-initiation`
pub const SET_REGISTRATION_INITIATION: crate::Name = crate::Name::new_unchecked("set-registration-initiation");
/// `sfnt`
pub const SFNT: crate::Name = crate::Name::new_unchecked("sfnt");
/// `SGML`
pub const SGML: crate::Name = crate::Name::new_unchecked("SGML");
/// `sgml-open-catalog`
pub const SGML_OPEN_CATALOG: crate::Name = crate::Name::new_unchecked("sgml-open-catalog");
/// `shaclc`
pub const SHACLC: crate::Name = crate::Name::new_unchecked("shaclc");
/// `shex`
pub const SHEX: crate::Name = crate::Name::new_unchecked("shex");
/// `shf`
pub const SHF: crate::Name = crate::Name::new_unchecked("shf");
/// `sieve`
pub const SIEVE: crate::Name = crate::Name::new_unchecked("sieve");
/// `signed`
pub const SIGNED: crate::Name = crate::Name::new_unchecked("signed");
/// `simple-filter`
pub const SIMPLE_FILTER: crate::Name = crate::Name::new_unchecked("simple-filter");
/// `simple-message-summary`
pub const SIMPLE_MESSAGE_SUMMARY: crate::Name = crate::Name::new_unchecked("simple-message-summary");
/// `simpleSymbolContainer`
pub const SIMPLE_SYMBOL_CONTAINER: crate::Name = crate::Name::new_unchecked("simpleSymbolContainer");
/// `sipc`
pub const SIPC: crate::Name = crate::Name::new_unchecked("sipc");
/// `slate`
pub const SLATE: crate::Name = crate::Name::new_unchecked("slate");
/// `smil`
pub const SMIL: crate::Name = crate::Name::new_unchecked("smil");
/// `smpte291`
pub const SMPTE291: crate::Name = crate::Name::new_unchecked("smpte291");
/// `SMPTE292M`
pub const SMPTE292M: crate::Name = crate::Name::new_unchecked("SMPTE292M");
/// `smpte336m`
pub const SMPTE336M: crate::Name = crate::Name::new_unchecked("smpte336m");
/// `SMV`
pub const SMV: crate::Name = crate::Name::new_unchecked("SMV");
/// `SMV-QCP`
pub const SMV_QCP: crate::Name = crate::Name::new_unchecked("SMV-QCP");
/// `SMV0`
pub const SMV0: crate::Name = crate::Name::new_unchecked("SMV0");
/// `soap`
pub const SOAP: crate::Name = crate::Name::new_unchecked("soap");
/// `sofa`
pub const SOFA: crate::Name = crate::Name::new_unchecked("sofa");
/// `sp-midi`
pub const SP_MIDI: crate::Name = crate::Name::new_unchecked("sp-midi");
/// `sparql-query`
pub const SPARQL_QUERY: crate::Name = crate::Name::new_unchecked("sparql-query");
/// `sparql-results`
pub const SPARQL_RESULTS: crate::Name = crate::Name::new_unchecked("sparql-results");
/// `spdx`
pub const SPDX: crate::Name = crate::Name::new_unchecked("spdx");
/// `speex`
pub const SPEEX: crate::Name = crate::Name::new_unchecked("speex");
/// `spirits-event`
pub const SPIRITS_EVENT: crate::Name = crate::Name::new_unchecked("spirits-event");
/// `sql`
pub const SQL: crate::Name = crate::Name::new_unchecked("sql");
/// `srgs`
pub const SRGS: crate::Name = crate::Name::new_unchecked("srgs");
/// `sru`
pub const SRU: crate::Name = crate::Name::new_unchecked("sru");
/// `ssml`
pub const SSML: crate::Name = crate::Name::new_unchecked("ssml");
/// `step`
pub const STEP: crate::Name = crate::Name::new_unchecked("step");
/// `step-xml`
pub const STEP_XML: crate::Name = crate::Name::new_unchecked("step-xml");
/// `stix`
pub const STIX: crate::Name = crate::Name::new_unchecked("stix");
/// `stl`
pub const STL: crate::Name = crate::Name::new_unchecked("stl");
/// `strings`
pub const STRINGS: crate::Name = crate::Name::new_unchecked("strings");
/// `svg`
pub const SVG: crate::Name = crate::Name::new_unchecked("svg");
/// `swid`
pub const SWID: crate::Name = crate::Name::new_unchecked("swid");
/// `t140`
pub const T140: crate::Name = crate::Name::new_unchecked("t140");
/// `t140c`
pub const T140C: crate::Name = crate::Name::new_unchecked("t140c");
/// `t38`
pub const T38: crate::Name = crate::Name::new_unchecked("t38");
/// `tab-separated-values`
pub const TAB_SEPARATED_VALUES: crate::Name = crate::Name::new_unchecked("tab-separated-values");
/// `tamp-apex-update`
pub const TAMP_APEX_UPDATE: crate::Name = crate::Name::new_unchecked("tamp-apex-update");
/// `tamp-apex-update-confirm`
pub const TAMP_APEX_UPDATE_CONFIRM: crate::Name = crate::Name::new_unchecked("tamp-apex-update-confirm");
/// `tamp-community-update`
pub const TAMP_COMMUNITY_UPDATE: crate::Name = crate::Name::new_unchecked("tamp-community-update");
/// `tamp-community-update-confirm`
pub const TAMP_COMMUNITY_UPDATE_CONFIRM: crate::Name = crate::Name::new_unchecked("tamp-community-update-confirm");
/// `tamp-error`
pub const TAMP_ERROR: crate::Name = crate::Name::new_unchecked("tamp-error");
/// `tamp-sequence-adjust`
pub const TAMP_SEQUENCE_ADJUST: crate::Name = crate::Name::new_unchecked("tamp-sequence-adjust");
/// `tamp-sequence-adjust-confirm`
pub const TAMP_SEQUENCE_ADJUST_CONFIRM: crate::Name = crate::Name::new_unchecked("tamp-sequence-adjust-confirm");
/// `tamp-status-query`
pub const TAMP_STATUS_QUERY: crate::Name = crate::Name::new_unchecked("tamp-status-query");
/// `tamp-status-response`
pub const TAMP_STATUS_RESPONSE: crate::Name = crate::Name::new_unchecked("tamp-status-response");
/// `tamp-update`
pub const TAMP_UPDATE: crate::Name = crate::Name::new_unchecked("tamp-update");
/// `tamp-update-confirm`
pub const TAMP_UPDATE_CONFIRM: crate::Name = crate::Name::new_unchecked("tamp-update-confirm");
/// `taxii`
pub const TAXII: crate::Name = crate::Name::new_unchecked("taxii");
/// `td`
pub const TD: crate::Name = crate::Name::new_unchecked("td");
/// `tei`
pub const TEI: crate::Name = crate::Name::new_unchecked("tei");
/// `telephone-event`
pub const TELEPHONE_EVENT: crate::Name = crate::Name::new_unchecked("telephone-event");
/// `TETRA_ACELP`
pub const TETRA_ACELP: crate::Name = crate::Name::new_unchecked("TETRA_ACELP");
/// `TETRA_ACELP_BB`
pub const TETRA_ACELP_BB: crate::Name = crate::Name::new_unchecked("TETRA_ACELP_BB");
/// `TETRA_ISI`
pub const TETRA_ISI: crate::Name = crate::Name::new_unchecked("TETRA_ISI");
/// `text`
pub const TEXT: crate::Name = crate::Name::new_unchecked("text");
/// `thraud`
pub const THRAUD: crate::Name = crate::Name::new_unchecked("thraud");
/// `tiff`
pub const TIFF: crate::Name = crate::Name::new_unchecked("tiff");
/// `tiff-fx`
pub const TIFF_FX: crate::Name = crate::Name::new_unchecked("tiff-fx");
/// `timestamp-query`
pub const TIMESTAMP_QUERY: crate::Name = crate::Name::new_unchecked("timestamp-query");
/// `timestamp-reply`
pub const TIMESTAMP_REPLY: crate::Name = crate::Name::new_unchecked("timestamp-reply");
/// `timestamped-data`
pub const TIMESTAMPED_DATA: crate::Name = crate::Name::new_unchecked("timestamped-data");
/// `tlsrpt`
pub const TLSRPT: crate::Name = crate::Name::new_unchecked("tlsrpt");
/// `tnauthlist`
pub const TNAUTHLIST: crate::Name = crate::Name::new_unchecked("tnauthlist");
/// `token-introspection`
pub const TOKEN_INTROSPECTION: crate::Name = crate::Name::new_unchecked("token-introspection");
/// `tone`
pub const TONE: crate::Name = crate::Name::new_unchecked("tone");
/// `trickle-ice-sdpfrag`
pub const TRICKLE_ICE_SDPFRAG: crate::Name = crate::Name::new_unchecked("trickle-ice-sdpfrag");
/// `trig`
pub const TRIG: crate::Name = crate::Name::new_unchecked("trig");
/// `troff`
pub const TROFF: crate::Name = crate::Name::new_unchecked("troff");
/// `TSVCIS`
pub const TSVCIS: crate::Name = crate::Name::new_unchecked("TSVCIS");
/// `ttf`
pub const TTF: crate::Name = crate::Name::new_unchecked("ttf");
/// `ttml`
pub const TTML: crate::Name = crate::Name::new_unchecked("ttml");
/// `turtle`
pub const TURTLE: crate::Name = crate::Name::new_unchecked("turtle");
/// `tve-trigger`
pub const TVE_TRIGGER: crate::Name = crate::Name::new_unchecked("tve-trigger");
/// `tzif`
pub const TZIF: crate::Name = crate::Name::new_unchecked("tzif");
/// `tzif-leap`
pub const TZIF_LEAP: crate::Name = crate::Name::new_unchecked("tzif-leap");
/// `UEMCLIP`
pub const UEMCLIP: crate::Name = crate::Name::new_unchecked("UEMCLIP");
/// `ulpfec`
pub const ULPFEC: crate::Name = crate::Name::new_unchecked("ulpfec");
/// `urc-grpsheet`
pub const URC_GRPSHEET: crate::Name = crate::Name::new_unchecked("urc-grpsheet");
/// `urc-ressheet`
pub const URC_RESSHEET: crate::Name = crate::Name::new_unchecked("urc-ressheet");
/// `urc-targetdesc`
pub const URC_TARGETDESC: crate::Name = crate::Name::new_unchecked("urc-targetdesc");
/// `urc-uisocketdesc`
pub const URC_UISOCKETDESC: crate::Name = crate::Name::new_unchecked("urc-uisocketdesc");
/// `uri-list`
pub const URI_LIST: crate::Name = crate::Name::new_unchecked("uri-list");
/// `usac`
pub const USAC: crate::Name = crate::Name::new_unchecked("usac");
/// `vc1`
pub const VC1: crate::Name = crate::Name::new_unchecked("vc1");
/// `vc2`
pub const VC2: crate::Name = crate::Name::new_unchecked("vc2");
/// `vcard`
pub const VCARD: crate::Name = crate::Name::new_unchecked("vcard");
/// `VDVI`
pub const VDVI: crate::Name = crate::Name::new_unchecked("VDVI");
/// `vemmi`
pub const VEMMI: crate::Name = crate::Name::new_unchecked("vemmi");
/// `video`
pub const VIDEO: crate::Name = crate::Name::new_unchecked("video");
/// `VMR-WB`
pub const VMR_WB: crate::Name = crate::Name::new_unchecked("VMR-WB");
/// `voice-message`
pub const VOICE_MESSAGE: crate::Name = crate::Name::new_unchecked("voice-message");
/// `voicexml`
pub const VOICEXML: crate::Name = crate::Name::new_unchecked("voicexml");
/// `vorbis`
pub const VORBIS: crate::Name = crate::Name::new_unchecked("vorbis");
/// `vorbis-config`
pub const VORBIS_CONFIG: crate::Name = crate::Name::new_unchecked("vorbis-config");
/// `voucher-cms`
pub const VOUCHER_CMS: crate::Name = crate::Name::new_unchecked("voucher-cms");
/// `VP8`
pub const VP8: crate::Name = crate::Name::new_unchecked("VP8");
/// `VP9`
pub const VP9: crate::Name = crate::Name::new_unchecked("VP9");
/// `vq-rtcpxr`
pub const VQ_RTCPXR: crate::Name = crate::Name::new_unchecked("vq-rtcpxr");
/// `vrml`
pub const VRML: crate::Name = crate::Name::new_unchecked("vrml");
/// `vtt`
pub const VTT: crate::Name = crate::Name::new_unchecked("vtt");
/// `wasm`
pub const WASM: crate::Name = crate::Name::new_unchecked("wasm");
/// `watcherinfo`
pub const WATCHERINFO: crate::Name = crate::Name::new_unchecked("watcherinfo");
/// `wav`
pub const WAV: crate::Name = crate::Name::new_unchecked("wav");
/// `wbxml`
pub const WBXML: crate::Name = crate::Name::new_unchecked("wbxml");
/// `webm`
pub const WEBM: crate::Name = crate::Name::new_unchecked("webm");
/// `webp`
pub const WEBP: crate::Name = crate::Name::new_unchecked("webp");
/// `webpush-options`
pub const WEBPUSH_OPTIONS: crate::Name = crate::Name::new_unchecked("webpush-options");
/// `whoispp-query`
pub const WHOISPP_QUERY: crate::Name = crate::Name::new_unchecked("whoispp-query");
/// `whoispp-response`
pub const WHOISPP_RESPONSE: crate::Name = crate::Name::new_unchecked("whoispp-response");
/// `widget`
pub const WIDGET: crate::Name = crate::Name::new_unchecked("widget");
/// `wita`
pub const WITA: crate::Name = crate::Name::new_unchecked("wita");
/// `wmf`
pub const WMF: crate::Name = crate::Name::new_unchecked("wmf");
/// `woff`
pub const WOFF: crate::Name = crate::Name::new_unchecked("woff");
/// `woff2`
pub const WOFF2: crate::Name = crate::Name::new_unchecked("woff2");
/// `wordperfect5.1`
pub const WORDPERFECT5_1: crate::Name = crate::Name::new_unchecked("wordperfect5.1");
/// `wsdl`
pub const WSDL: crate::Name = crate::Name::new_unchecked("wsdl");
/// `wspolicy`
pub const WSPOLICY: crate::Name = crate::Name::new_unchecked("wspolicy");
/// `x3d`
pub const X3D: crate::Name = crate::Name::new_unchecked("x3d");
/// `x3d-vrml`
pub const X3D_VRML: crate::Name = crate::Name::new_unchecked("x3d-vrml");
/// `x400-bp`
pub const X400_BP: crate::Name = crate::Name::new_unchecked("x400-bp");
/// `xacml`
pub const XACML: crate::Name = crate::Name::new_unchecked("xacml");
/// `xcap-att`
pub const XCAP_ATT: crate::Name = crate::Name::new_unchecked("xcap-att");
/// `xcap-caps`
pub const XCAP_CAPS: crate::Name = crate::Name::new_unchecked("xcap-caps");
/// `xcap-diff`
pub const XCAP_DIFF: crate::Name = crate::Name::new_unchecked("xcap-diff");
/// `xcap-el`
pub const XCAP_EL: crate::Name = crate::Name::new_unchecked("xcap-el");
/// `xcap-error`
pub const XCAP_ERROR: crate::Name = crate::Name::new_unchecked("xcap-error");
/// `xcap-ns`
pub const XCAP_NS: crate::Name = crate::Name::new_unchecked("xcap-ns");
/// `xcon-conference-info`
pub const XCON_CONFERENCE_INFO: crate::Name = crate::Name::new_unchecked("xcon-conference-info");
/// `xcon-conference-info-diff`
pub const XCON_CONFERENCE_INFO_DIFF: crate::Name = crate::Name::new_unchecked("xcon-conference-info-diff");
/// `xenc`
pub const XENC: crate::Name = crate::Name::new_unchecked("xenc");
/// `xhtml`
pub const XHTML: crate::Name = crate::Name::new_unchecked("xhtml");
/// `xliff`
pub const XLIFF: crate::Name = crate::Name::new_unchecked("xliff");
/// `xml`
pub const XML: crate::Name = crate::Name::new_unchecked("xml");
/// `xml-dtd`
pub const XML_DTD: crate::Name = crate::Name::new_unchecked("xml-dtd");
/// `xml-external-parsed-entity`
pub const XML_EXTERNAL_PARSED_ENTITY: crate::Name = crate::Name::new_unchecked("xml-external-parsed-entity");
/// `xml-patch`
pub const XML_PATCH: crate::Name = crate::Name::new_unchecked("xml-patch");
/// `xmpp`
pub const XMPP: crate::Name = crate::Name::new_unchecked("xmpp");
/// `xop`
pub const XOP: crate::Name = crate::Name::new_unchecked("xop");
/// `xslt`
pub const XSLT: crate::Name = crate::Name::new_unchecked("xslt");
/// `xv`
pub const XV: crate::Name = crate::Name::new_unchecked("xv");
/// `yang`
pub const YANG: crate::Name = crate::Name::new_unchecked("yang");
/// `yang-data`
pub const YANG_DATA: crate::Name = crate::Name::new_unchecked("yang-data");
/// `yang-patch`
pub const YANG_PATCH: crate::Name = crate::Name::new_unchecked("yang-patch");
/// `yin`
pub const YIN: crate::Name = crate::Name::new_unchecked("yin");
/// `zip`
pub const ZIP: crate::Name = crate::Name::new_unchecked("zip");
/// `zlib`
pub const ZLIB: crate::Name = crate::Name::new_unchecked("zlib");
/// `zstd`
pub const ZSTD: crate::Name = crate::Name::new_unchecked("zstd");