This file is indexed.

/usr/share/perl5/MIME/types.db is in libmime-types-perl 2.04-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
1425:EXTENSIONS
#;application/x-mathcad
%;application/x-trash
123;application/vnd.lotus-1-2-3
323;text/x-h323
3dm;x-world/x-3dmf
3dmf;x-world/x-3dmf
3dml;text/vnd.in3d.3dml
3ds;image/x-3ds
3g2;video/3gpp2
3gp;video/3gpp
3gpp2;video/3gpp2
3gpp;video/3gpp
7z;application/x-7z-compressed
a;application/octet-stream
aab;application/x-authorware-bin
aac;audio/x-aac
aam;application/x-authorware-map
aas;application/x-authorware-seg
abc;text/vnd.abc
abw;application/x-abiword
ac;application/pkix-attr-cert
acc;application/vnd.americandynamics.acc
ace;application/x-ace-compressed
acgi;text/html
acu;application/vnd.acucobol
acutc;application/vnd.acucorp
adp;audio/x-adpcm
aep;application/vnd.audiograph
afl;video/x-animaflex
afm;application/x-font-type1
afp;application/vnd.ibm.modcap
ahead;application/vnd.ahead.space
ai;application/postscript
aif;audio/x-aiff
aifc;audio/x-aiff
aiff;audio/x-aiff
aim;application/x-aim
aip;text/x-audiosoft-intra
air;application/vnd.adobe.air-application-installer-package+zip
ait;application/vnd.dvb.ait
alc;x-chemical/x-alchemy
ami;application/vnd.amiga.amu
amr;audio/amr
ani;application/x-navi-animation
anx;application/x-annodex
aos;application/x-nokia-9000-communicator-add-on-software
apk;application/vnd.android.package-archive
appcache;text/x-cache-manifest
application;application/x-ms-application
apr;application/vnd.lotus-approach
aps;application/x-mime
arc;application/x-freearc
arj;application/x-arj
art;image/x-jg
asc;application/pgp-signature
asf;application/vnd.ms-asf
asm;text/x-asm
asn;x-chemical/x-ncbi-asn1
aso;x-chemical/x-ncbi-asn1-binary
asp;text/x-asp
asx;video/x-ms-asf
atc;application/vnd.acucorp
atom;application/atom+xml
atomcat;application/atomcat+xml
atomsrv;application/x-atomserv+xml
atomsvc;application/atomsvc+xml
atx;application/vnd.antix.game-component
au;audio/basic
avi;video/x-msvideo
avs;video/x-avs-video
aw;application/x-applixware
awb;audio/amr-wb
axa;audio/x-annodex
axv;video/x-annodex
azf;application/vnd.airzip.filesecure.azf
azs;application/vnd.airzip.filesecure.azs
azw;application/vnd.amazon.ebook
b;x-chemical/x-molconn-z
bak;application/x-trash
bat;application/x-msdos-program
bck;application/x-vmsbackup
bcpio;application/x-bcpio
bdf;application/x-font-bdf
bdm;application/vnd.syncml.dm+wbxml
bed;application/vnd.realvnc.bed
bh2;application/vnd.fujitsu.oasysprs
bib;text/x-bibtex
bin;application/x-mac-binary
bkm;application/vnd.nervana
blb;application/x-blorb
bleep;application/x-bleeper
bm;image/x-bmp
bmi;application/vnd.bmi
bmp;image/x-bmp
boo;text/x-boo
book;application/x-maker
box;application/vnd.previewsystems.box
boz;application/x-bzip2
bpd;application/vnd.hbci
bpk;application/octet-stream
brf;text/plain
bsd;x-chemical/x-crossfire
bsh;application/x-bsh
btif;image/prs.btif
bz2;application/x-bzip2
bz;application/x-bzip
c++;text/x-c++src
c11amc;application/vnd.cluetrust.cartomobile-config
c11amz;application/vnd.cluetrust.cartomobile-config-pkg
c3d;x-chemical/x-chem3d
c4d;application/vnd.clonk.c4group
c4f;application/vnd.clonk.c4group
c4g;application/vnd.clonk.c4group
c4p;application/vnd.clonk.c4group
c4u;application/vnd.clonk.c4group
c;text/x-csrc
cab;application/x-cab
cac;x-chemical/x-cache
cache;x-chemical/x-cache
caf;audio/x-caf
cap;application/x-cap
car;application/vnd.curl.car
cascii;x-chemical/x-cactvs-binary
cat;application/vnd.ms-pki.seccat
cbin;x-chemical/x-cactvs-binary
cbr;application/x-cbr
cbz;application/x-cbz
cc;text/x-c++src
ccad;application/x-clariscad
ccc;text/vnd.net2phone.commcenter.command
cco;application/x-cocoa
cct;application/x-director
ccxml;application/ccxml+xml
cda;application/x-cdf
cdbcmsg;application/vnd.contact.cmsg
cdf;application/x-cdf
cdkey;application/vnd.mediastation.cdkey
cdmia;application/cdmi-capability
cdmic;application/cdmi-container
cdmid;application/cdmi-domain
cdmio;application/cdmi-object
cdmiq;application/cdmi-queue
cdr;image/x-coreldraw
cdt;image/x-coreldrawtemplate
cdx;x-chemical/x-cdx
cdxml;application/vnd.chemdraw+xml
cdy;application/vnd.cinderella
cef;x-chemical/x-cxf
cer;application/pkix-cert
cfs;application/x-cfs-compressed
cgm;image/cgm
cha;application/x-chat
chat;application/x-chat
chm;x-chemical/x-chemdraw
chrt;application/vnd.kde.kchart
cif;x-chemical/x-cif
cii;application/vnd.anser-web-certificate-issue-initiation
cil;application/vnd.ms-artgalry
cla;application/vnd.claymore
class;application/x-java-vm
clkk;application/vnd.crick.clicker.keyboard
clkp;application/vnd.crick.clicker.palette
clkt;application/vnd.crick.clicker.template
clkw;application/vnd.crick.clicker.wordbank
clkx;application/vnd.crick.clicker
clp;application/x-msclip
cls;text/x-tex
cmc;application/vnd.cosmocaller
cmdf;x-chemical/x-cmdf
cml;x-chemical/x-cml
cmp;application/vnd.yellowriver-custom-menu
cmx;image/x-cmx
cod;application/vnd.rim.cod
com;application/x-msdos-program
conf;text/plain
cpa;x-chemical/x-compass
cpio;application/x-cpio
cpp;text/x-c++src
cpt;application/x-mac-compactpro
cr2;image/x-canon-cr2
crd;application/x-mscardfile
crl;application/pkix-crl
crt;application/x-x509-ca-cert
crw;image/x-canon-crw
cryptonote;application/vnd.rig.cryptonote
csf;x-chemical/x-cache-csf
csh;application/x-csh
csm;application/x-cu-seeme
csml;x-chemical/x-csml
csp;application/vnd.commonspace
css;text/css
cst;application/x-director
csv;text/csv
ctab;x-chemical/x-cactvs-binary
ctx;x-chemical/x-ctx
cu;application/x-cu-seeme
cub;x-chemical/x-gaussian-cube
curl;application/vnd.curl
cw;application/prs.cww
cww;application/prs.cww
cxf;x-chemical/x-cxf
cxt;application/x-director
cxx;text/x-c++src
d;text/x-dsrc
dae;model/vnd.collada+xml
daf;application/vnd.mobius.daf
dart;application/vnd.dart
dat;application/x-ns-proxy-autoconfig
dataless;application/vnd.fdsn.seed
davmount;application/x-davmount+xml
dbk;application/x-docbook+xml
dcr;application/x-director
dcurl;text/vnd.curl.dcurl
dd2;application/vnd.oma.dd2+xml
ddd;application/vnd.fujixerox.ddd
deb;application/x-debian-package
deepv;application/x-deepv
def;text/plain
deploy;application/octet-stream
der;application/x-x509-ca-cert
dfac;application/vnd.dreamfactory
dgc;application/x-dgc-compressed
dgn;image/vnd.dgn
dic;text/x-c
dif;video/dv
diff;text/x-diff
dir;application/x-director
dis;application/vnd.mobius.dis
dist;application/octet-stream
distz;application/octet-stream
djv;image/vnd.djvu
djvu;image/vnd.djvu
dl;video/x-dl
dll;application/x-msdos-program
dmg;application/x-apple-diskimage
dms;application/x-dms
dna;application/vnd.dna
doc;application/msword
docm;application/vnd.ms-word.document.macroenabled.12
docx;application/vnd.openxmlformats-officedocument.wordprocessingml.document
dot;application/msword
dotm;application/vnd.ms-word.template.macroenabled.12
dotx;application/vnd.openxmlformats-officedocument.wordprocessingml.template
dp;application/vnd.osgi.dp
dpg;application/vnd.dpgraph
dra;audio/vnd.dra
drw;application/x-drafting
dsc;text/prs.lines.tag
dssc;application/dssc+der
dtb;application/x-dtbook+xml
dtd;application/xml-dtd
dts;audio/vnd.dts
dtshd;audio/vnd.dts.hd
dump;application/octet-stream
dv;video/dv
dvb;video/vnd.dvb.file
dvi;application/x-dvi
dwf;x-drawing/x-dwf
dwg;image/vnd.dwg
dx;x-chemical/x-jcamp-dx
dxf;image/vnd.dxf
dxp;application/vnd.spotfire.dxp
dxr;application/x-director
ecelp4800;audio/vnd.nuera.ecelp4800
ecelp7470;audio/vnd.nuera.ecelp7470
ecelp9600;audio/vnd.nuera.ecelp9600
ecma;application/ecmascript
edm;application/vnd.novadigm.edm
edx;application/vnd.novadigm.edx
efif;application/vnd.picsel
ei6;application/vnd.pg.osasli
el;text/x-script.elisp
elc;application/x-bytecode.elisp
emb;x-chemical/x-embl-dl-nucleotide
embl;x-chemical/x-embl-dl-nucleotide
eml;message/rfc822
emm;application/vnd.ibm.electronic-media
emma;application/emma+xml
ent;application/vnd.nervana
entity;application/vnd.nervana
env;application/x-envoy
eol;audio/vnd.digital-winds
eot;application/vnd.ms-fontobject
eps2;application/postscript
eps3;application/postscript
eps;application/postscript
epsf;application/postscript
epsi;application/postscript
epub;application/x-epub+zip
erf;image/x-epson-erf
es3;application/vnd.eszigno3+xml
es;application/ecmascript
esa;application/vnd.osgi.subsystem
esf;application/vnd.epson.esf
et3;application/vnd.eszigno3+xml
etx;text/x-setext
eva;application/x-eva
evc;audio/evrc
evy;application/x-envoy
exe;application/x-msdos-program
exi;application/exi
ext;application/vnd.novadigm.ext
ez2;application/vnd.ezpix-album
ez3;application/vnd.ezpix-package
ez;application/andrew-inset
f4a;audio/mp4
f4b;audio/mp4
f4p;video/mp4
f4v;video/mp4
f77;text/x-fortran
f90;text/x-fortran
f;text/x-fortran
fb;application/x-maker
fbdoc;application/x-maker
fbs;image/vnd.fastbidsheet
fcdt;application/vnd.adobe.formscentral.fcdt
fch;x-chemical/x-gaussian-checkpoint
fchk;x-chemical/x-gaussian-checkpoint
fcs;application/vnd.isac.fcs
fdf;application/vnd.fdf
fe_launch;application/vnd.denovo.fcselayout-link
fg5;application/vnd.fujitsu.oasysgp
fgd;application/x-director
fh4;image/x-freehand
fh5;image/x-freehand
fh7;image/x-freehand
fh;image/x-freehand
fhc;image/x-freehand
fif;application/x-fractals
fig;application/x-xfig
flac;audio/x-flac
fli;video/x-fli
flo;application/vnd.micrografx.flo
flv;video/x-flv
flw;application/vnd.kde.kivio
flx;text/vnd.fmi.flexstor
fly;text/vnd.fly
fm;application/x-maker
fmf;video/x-atomic3d-feature
fnc;application/vnd.frogans.fnc
for;text/x-fortran
fpx;image/vnd.fpx
frame;application/x-maker
frl;application/x-freeloader
frm;application/x-maker
fsc;application/vnd.fsc.weblauch
fst;image/vnd.fst
ftc;application/vnd.fluxtime.clip
fti;application/vnd.anser-web-funds-transfer-initiation
funk;audio/x-make
fvt;video/vnd.fvt
fxp;application/vnd.adobe.fxp
fzs;application/vnd.fuzzysheet
g2w;application/vnd.geoplan
g3;image/g3fax
g3w;application/vnd.geospace
g;text/plain
gac;application/vnd.groove-account
gal;x-chemical/x-gaussian-log
gam;x-chemical/x-gamess-input
gamin;x-chemical/x-gamess-input
gau;x-chemical/x-gaussian-input
gbr;application/rpki-ghostbusters
gca;application/x-gca-compressed
gcd;text/x-pcs-gcd
gcf;application/x-graphing-calculator
gcg;x-chemical/x-gcg8-sequence
gdl;model/vnd.gdl
gen;x-chemical/x-genbank
geo;application/vnd.dynageo
gex;application/vnd.geometry-explorer
gf;application/x-tex-gf
ggb;application/vnd.geogebra.file
ggt;application/vnd.geogebra.tool
ghf;application/vnd.groove-help
gif;image/gif
gim;application/vnd.groove-identity-message
gjc;x-chemical/x-gaussian-input
gjf;x-chemical/x-gaussian-input
gl;video/x-gl
gml;application/x-gml+xml
gmx;application/vnd.gmx
gnumeric;application/x-gnumeric
gph;application/vnd.flographit
gpt;x-chemical/x-mopac-graph
gpx;application/x-gpx+xml
gqf;application/vnd.grafeq
gqs;application/vnd.grafeq
gram;application/srgs
gramps;application/x-gramps-xml
gre;application/vnd.geometry-explorer
grv;application/vnd.groove-injector
grxml;application/srgs+xml
gsd;audio/x-gsm
gsf;application/x-font
gsm;audio/x-gsm
gsp;application/x-gsp
gss;application/x-gss
gtar;application/x-gtar
gtm;application/vnd.groove-tool-message
gtw;model/vnd.gtw
gv;text/vnd.graphviz
gxf;application/x-gxf
gxt;application/vnd.geonext
gz;application/x-gzip
gzip;application/x-gzip
h++;text/x-c++hdr
h261;video/h261
h263;video/h263
h264;video/h264
h;text/x-chdr
hal;application/vnd.hal+xml
hbc;application/vnd.hbci
hbci;application/vnd.hbci
hdf;application/x-hdf
help;application/x-helpfile
hep;application/x-hep
hgl;application/vnd.hp-hpgl
hh;text/x-c++hdr
hin;x-chemical/x-hin
hlb;text/x-script
hlp;application/x-winhlp
hpg;application/vnd.hp-hpgl
hpgl;application/vnd.hp-hpgl
hpid;application/vnd.hp-hpid
hpp;text/x-c++hdr
hps;application/vnd.hp-hps
hqx;application/mac-binhex40
hs;text/x-haskell
hta;application/x-hta
htc;text/x-component
htke;application/vnd.kenameapp
htm;text/html
html;text/html
htmls;text/html
htmlx;text/html
htt;text/x-webviewhtml
htx;text/html
hvd;application/vnd.yamaha.hv-dic
hvp;application/vnd.yamaha.hv-voice
hvs;application/vnd.yamaha.hv-script
hxx;text/x-c++hdr
i2g;application/vnd.intergeo
ica;application/x-ica
icc;application/vnd.iccprofile
ice;x-conference/x-cooltalk
icm;application/vnd.iccprofile
ico;image/vnd.microsoft.icon
ics;text/calendar
icz;text/calendar
idc;text/plain
ief;image/ief
iefs;image/ief
ifb;text/calendar
ifm;application/vnd.shana.informed.formdata
iges;model/iges
igl;application/vnd.igloader
igm;application/vnd.insors.igm
igs;model/iges
igx;application/vnd.micrografx.igx
iif;application/vnd.shana.informed.interchange
iii;application/x-iphone
ima;application/x-ima
imagemap;application/x-imagemap
imap;application/x-imagemap
imp;application/vnd.accpac.simply.imp
ims;application/vnd.ms-ims
in;text/plain
inf;application/x-inf
info;application/x-info
ink;application/inkml+xml
inp;x-chemical/x-gamess-input
ins;application/x-internet-signup
install;application/x-install-instructions
iota;application/vnd.astraea-software.iota
ip;application/x-ip2
ipfix;application/ipfix
ipk;application/vnd.shana.informed.package
irm;application/vnd.ibm.rights-management
irp;application/vnd.irepository.package+xml
iso;application/x-iso9660-image
isp;application/x-internet-signup
ist;x-chemical/x-isostar
istr;x-chemical/x-isostar
isu;video/x-isvideo
it;audio/x-it
itp;application/vnd.shana.informed.formtemplate
iv;application/x-inventor
ivp;application/vnd.immervision-ivp
ivr;x-i-world/x-i-vrml
ivu;application/vnd.immervision-ivu
ivy;application/x-livescreen
jad;text/vnd.sun.j2me.app-descriptor
jam;application/x-jam
jar;application/x-java-archive
jav;text/x-java-source
java;text/x-java
jcm;application/x-java-commerce
jdx;x-chemical/x-jcamp-dx
jfif-tbnl;image/jpeg
jfif;image/jpeg
jisp;application/vnd.jisp
jlt;application/vnd.hp-jlyt
jmz;application/x-jmol
jng;image/x-jng
jnlp;application/x-java-jnlp-file
joda;application/vnd.joost.joda-archive
jp2;image/jp2
jpe;image/jpeg
jpeg;image/jpeg
jpf;image/jpx
jpg2;image/jp2
jpg;image/jpeg
jpgm;image/jpm
jpgv;video/jpeg
jpm;image/jpm
jps;image/x-jps
jpx;image/jpx
js;application/javascript
json;application/json
jsonml;application/x-jsonml+json
jut;image/x-jutvision
kar;audio/x-midi
karbon;application/vnd.kde.karbon
kcm;application/vnd.nervana
key;application/pgp-keys
kfo;application/vnd.kde.kformula
kia;application/vnd.kidspiration
kil;application/x-killustrator
kin;x-chemical/x-kinemage
kml;application/vnd.google-earth.kml+xml
kmz;application/vnd.google-earth.kmz
kne;application/vnd.kinar
knp;application/vnd.kinar
kom;application/vnd.hbci
kon;application/vnd.kde.kontour
koz;audio/vnd.audiokoz
kpr;application/vnd.kde.kpresenter
kpt;application/vnd.kde.kpresenter
kpxx;application/vnd.ds-keypoint
ksh;application/x-ksh
ksp;application/vnd.kde.kspread
ktr;application/vnd.kahootz
ktx;image/ktx
ktz;application/vnd.kahootz
kwd;application/vnd.kde.kword
kwt;application/vnd.kde.kword
l16;audio/l16
la;audio/x-nspaudio
lam;audio/x-liveaudio
lasxml;application/vnd.las.las+xml
latex;application/x-latex
lbd;application/vnd.llamagraphics.life-balance.desktop
lbe;application/vnd.llamagraphics.life-balance.exchange+xml
les;application/vnd.hhe.lesson-player
lha;application/x-lha
lhs;text/x-literate-haskell
lhx;application/octet-stream
lin;application/x-bbolin
link66;application/vnd.route66.link66+xml
list3820;application/vnd.ibm.modcap
list;text/plain
listafp;application/vnd.ibm.modcap
lma;audio/x-nspaudio
lnk;application/x-ms-shortcut
log;text/plain
lostxml;application/lost+xml
lrf;application/octet-stream
lrm;application/vnd.ms-lrm
lsf;video/x-la-asf
lsp;application/x-lisp
lst;text/plain
lsx;video/x-la-asf
ltf;application/vnd.frogans.ltf
ltx;text/x-tex
lvp;audio/vnd.lucent.voice
lwp;application/vnd.lotus-wordpro
lyx;application/x-lyx
lzh;application/x-lzh
lzx;application/x-lzx
m13;application/x-msmediaview
m14;application/x-msmediaview
m1v;video/mpeg
m21;application/mp21
m2a;audio/mpeg
m2v;video/mpeg
m3a;audio/mpeg
m3g;application/x-m3g
m3u8;application/vnd.apple.mpegurl
m3u;audio/x-mpegurl
m4a;audio/mpeg
m4u;video/vnd.mpegurl
m4v;video/x-m4v
m;text/x-m
ma;application/mathematica
mads;application/mads+xml
mag;application/vnd.ecowin.chart
maker;application/x-maker
man;application/x-troff-man
manifest;text/x-cache-manifest
map;application/x-navimap
mar;text/plain
mathml;application/mathml+xml
mb;application/mathematica
mbd;application/x-mbedlet
mbk;application/vnd.mobius.mbk
mbox;application/mbox
mc$;application/x-magic-cap-package-1.0
mc1;application/vnd.medcalcdata
mcd;application/vnd.mcd
mcf;image/x-vasa
mcif;x-chemical/x-mmcif
mcm;x-chemical/x-macmolecule
mcp;application/x-netmc
mcurl;text/vnd.curl.mcurl
mda;application/x-msaccess
mdb;application/x-msaccess
mde;application/x-msaccess
mdf;application/x-msaccess
mdi;image/vnd.ms-modi
me;application/x-troff-me
mesh;model/mesh
meta4;application/metalink4+xml
metalink;application/x-metalink+xml
mets;application/mets+xml
mfm;application/vnd.mfmp
mft;application/rpki-manifest
mgp;application/vnd.osgeo.mapguide.package
mgz;application/vnd.proteus.magazine
mht;message/rfc822
mhtml;message/rfc822
mid;audio/x-midi
midi;audio/x-midi
mie;application/x-mie
mif;application/vnd.mif
mime;message/rfc822
mj2;video/mj2
mjf;audio/x-vnd.audioexplosion.mjuicemediafile
mjp2;video/mj2
mjpg;video/x-motion-jpeg
mka;audio/x-matroska
mkv;video/x-matroska
mlp;application/vnd.dolby.mlp
mm;application/x-freemind
mmd;x-chemical/x-macromodel-input
mme;application/x-base64
mmf;application/vnd.smaf
mml;text/x-mathml
mmod;x-chemical/x-macromodel-input
mmr;image/vnd.fujixerox.edmics-mmr
mng;video/x-mng
mny;application/x-msmoney
mobi;application/x-mobipocket-ebook
moc;text/x-moc
mod;audio/x-mod
mods;application/mods+xml
mol2;x-chemical/x-mol2
mol;x-chemical/x-mdl-molfile
moo;x-chemical/x-mopac-out
moov;video/quicktime
mop;x-chemical/x-mopac-input
mopcrt;x-chemical/x-mopac-input
mov;video/quicktime
movie;video/x-sgi-movie
mp2;audio/mpeg
mp2a;audio/mpeg
mp3;audio/mpeg
mp4;video/mp4
mp4a;audio/mp4
mp4s;application/mp4
mp4v;video/mp4
mpa;audio/mpeg
mpc;application/vnd.mophun.certificate
mpe;video/mpeg
mpeg;video/mpeg
mpega;audio/mpeg
mpg4;video/mp4
mpg;video/mpeg
mpga;audio/mpeg
mpkg;application/vnd.apple.installer+xml
mpm;application/vnd.blueice.multipass
mpn;application/vnd.mophun.application
mpp;application/vnd.ms-project
mpt;application/x-project
mpv;video/x-matroska
mpx;application/x-project
mpy;application/vnd.ibm.minipay
mqy;application/vnd.mobius.mqy
mrc;application/marc
mrcx;application/marcxml+xml
ms;application/x-troff-ms
mscml;application/mediaservercontrol+xml
mseed;application/vnd.fdsn.mseed
mseq;application/vnd.mseq
msf;application/vnd.epson.msf
msh;model/mesh
msi;application/x-msi
msl;application/vnd.mobius.msl
msty;application/vnd.muvee.style
mts;model/vnd.mts
mus;application/vnd.musician
musicxml;application/vnd.recordare.musicxml+xml
mv;video/x-sgi-movie
mvb;x-chemical/x-mopac-vib
mwf;application/vnd.mfer
mxf;application/mxf
mxl;application/vnd.recordare.musicxml
mxmf;audio/vnd.nokia.mobile-xmf
mxml;application/xv+xml
mxs;application/vnd.triscape.mxs
mxu;video/vnd.mpegurl
my;audio/x-make
mzz;application/x-vnd.audioexplosion.mzz
n-gage;application/vnd.nokia.n-gage.symbian.install
n3;text/n3
nap;image/naplps
naplps;image/naplps
nb;application/mathematica
nbp;application/mathematica
nc;application/x-netcdf
ncm;application/vnd.nokia.configuration-message
ncx;application/x-dtbncx+xml
nef;image/x-nikon-nef
nfo;text/x-nfo
ngdat;application/vnd.nokia.n-gage.data
nif;image/x-niff
niff;image/x-niff
nim;video/vnd.nokia.interleaved-multimedia
nix;application/x-mix-transfer
nlu;application/vnd.neurolanguage.nlu
nml;application/vnd.enliven
nnd;application/vnd.noblenet-directory
nns;application/vnd.noblenet-sealer
nnw;application/vnd.noblenet-web
npx;image/vnd.net-fpx
nsc;application/x-conference
nsf;application/vnd.lotus-notes
ntf;application/vnd.nitf
nvd;application/x-navidoc
nwc;application/x-nwc
nws;message/rfc822
nzb;application/x-nzb
o;application/x-object
oa2;application/vnd.fujitsu.oasys2
oa3;application/vnd.fujitsu.oasys3
oas;application/vnd.fujitsu.oasys
obd;application/x-msbinder
obj;application/x-tgif
oda;application/oda
odb;application/vnd.oasis.opendocument.database
odc;application/vnd.oasis.opendocument.chart
odf;application/vnd.oasis.opendocument.formula
odft;application/vnd.oasis.opendocument.formula-template
odg;application/vnd.oasis.opendocument.graphics
odi;application/vnd.oasis.opendocument.image
odm;application/vnd.oasis.opendocument.text-master
odp;application/vnd.oasis.opendocument.presentation
ods;application/vnd.oasis.opendocument.spreadsheet
odt;application/vnd.oasis.opendocument.text
oga;audio/ogg
ogg;audio/ogg
ogv;video/ogg
ogx;application/ogg
old;application/x-trash
omc;application/x-omc
omcd;application/x-omcdatamaker
omcr;application/x-omcregerator
omdoc;application/x-omdoc+xml
onepkg;application/x-onenote
onetmp;application/x-onenote
onetoc2;application/x-onenote
onetoc;application/x-onenote
opf;application/x-oebps-package+xml
opml;text/x-opml
oprc;application/vnd.palm
orf;image/x-olympus-orf
org;application/vnd.lotus-organizer
orq;application/ocsp-request
ors;application/ocsp-response
osf;application/vnd.yamaha.openscoreformat
osfpvg;application/vnd.yamaha.openscoreformat.osfpvg+xml
otc;application/vnd.oasis.opendocument.chart-template
otf;application/x-font-otf
otg;application/vnd.oasis.opendocument.graphics-template
oth;application/vnd.oasis.opendocument.text-web
oti;application/vnd.oasis.opendocument.image-template
otm;application/vnd.oasis.opendocument.text-master
otp;application/vnd.oasis.opendocument.presentation-template
ots;application/vnd.oasis.opendocument.spreadsheet-template
ott;application/vnd.oasis.opendocument.text-template
oxps;application/oxps
oxt;application/vnd.openofficeorg.extension
oza;application/x-oz-application
p10;application/pkcs10
p12;application/x-pkcs12
p7a;application/x-pkcs7-signature
p7b;application/x-pkcs7-certificates
p7c;application/pkcs7-mime
p7m;application/pkcs7-mime
p7r;application/x-pkcs7-certreqresp
p7s;application/pkcs7-signature
p8;application/pkcs8
p;text/x-pascal
pac;application/x-ns-proxy-autoconfig
part;application/x-pro_eng
pas;text/x-pascal
pat;image/x-coreldrawpattern
patch;text/x-diff
paw;application/vnd.pawaafile
pbd;application/vnd.powerbuilder6
pbm;image/x-portable-bitmap
pcap;application/x-cap
pcf.z;application/x-font
pcf;application/x-font
pcl;application/vnd.hp-pcl
pclxl;application/vnd.hp-pclxl
pct;image/x-pict
pcurl;application/vnd.curl.pcurl
pcx;image/x-pcx
pdb;application/vnd.palm
pdf;application/pdf
pfa;application/x-font
pfb;application/x-font
pfm;application/x-font-type1
pfr;application/font-tdpfr
pfunk;audio/x-make
pfx;application/x-pkcs12
pgb;image/vnd.glocalgraphics.pgb
pgm;image/x-portable-graymap
pgn;application/x-chess-pgn
pgp;application/pgp-signature
php3;application/x-httpd-php3
php3p;application/x-httpd-php3-preprocessed
php4;application/x-httpd-php4
php5;application/x-httpd-php5
php;application/x-httpd-php
phps;application/x-httpd-php-source
pht;application/x-httpd-php
phtml;application/x-httpd-php
pic;image/x-pict
pict;image/x-pict
pk;application/x-tex-pk
pkd;application/vnd.hbci
pkg;application/x-newton-compatible-pkg
pki;application/pkixcmp
pkipath;application/x-pkix-pkipath
pko;application/vnd.ms-pki.pko
pl;application/x-perl
plb;application/vnd.3gpp.pic-bw-large
plc;application/vnd.mobius.plc
plf;application/vnd.pocketlearn
plj;audio/vnd.everad.plj
pls;audio/x-scpls
plt;application/vnd.hp-hpgl
plx;application/x-pixclscript
pm4;application/x-pagemaker
pm5;application/x-pagemaker
pm;application/x-pagemaker
pml;application/vnd.ctc-posml
png;image/png
pnm;image/x-portable-anymap
portpkg;application/vnd.macports.portpkg
pot;application/vnd.ms-powerpoint
potm;application/vnd.ms-powerpoint.template.macroenabled.12
potx;application/vnd.openxmlformats-officedocument.presentationml.template
pov;model/x-pov
ppa;application/vnd.ms-powerpoint
ppam;application/vnd.ms-powerpoint.addin.macroenabled.12
ppd;application/vnd.cups-ppd
ppm;image/x-portable-pixmap
pps;application/vnd.ms-powerpoint
ppsm;application/vnd.ms-powerpoint.slideshow.macroenabled.12
ppsx;application/vnd.openxmlformats-officedocument.presentationml.slideshow
ppt;application/vnd.ms-powerpoint
pptm;application/vnd.ms-powerpoint.presentation.macroenabled.12
pptx;application/vnd.openxmlformats-officedocument.presentationml.presentation
ppz;application/x-mspowerpoint
pqa;application/vnd.palm
prc;application/vnd.palm
pre;application/vnd.lotus-freelance
prf;application/x-pics-rules
prt;x-chemical/x-ncbi-asn1-ascii
ps-z;application/postscript
ps;application/postscript
psb;application/vnd.3gpp.pic-bw-small
psd;image/x-photoshop
psf;application/x-font-linux-psf
psid;audio/prs.sid
pskcxml;application/pskc+xml
pt5;application/x-pagemaker
pti;application/vnd.pvi.ptid1
ptid;application/vnd.pvi.ptid1
pub;application/x-mspublisher
pvb;application/vnd.3gpp.pic-bw-var
pvu;x-paleovu/x-pv
pwn;application/vnd.3m.post-it-notes
pwz;application/vnd.ms-powerpoint
py;application/x-python
pya;audio/vnd.ms-playready.media.pya
pyc;application/x-python-code
pyo;application/x-python-code
pyv;video/vnd.ms-playready.media.pyv
qam;application/vnd.epson.quickanime
qbo;application/vnd.intu.qbo
qcp;audio/qcelp
qd3;x-world/x-3dmf
qd3d;x-world/x-3dmf
qfx;application/vnd.intu.qfx
qgs;application/x-qgis
qif;image/x-quicktime
qps;application/vnd.publishare-delta-tree
qt;video/quicktime
qtc;video/x-qtc
qti;image/x-quicktime
qtif;image/x-quicktime
qtl;application/x-quicktimeplayer
qwd;application/vnd.quark.quarkxpress
qwt;application/vnd.quark.quarkxpress
qxb;application/vnd.quark.quarkxpress
qxd;application/vnd.quark.quarkxpress
qxl;application/vnd.quark.quarkxpress
qxt;application/vnd.quark.quarkxpress
ra;audio/x-pn-realaudio
ram;audio/x-pn-realaudio
rar;application/x-rar
ras;image/x-cmu-raster
rast;image/x-cmu-raster
rb;application/x-ruby
rbw;application/x-ruby
rcprofile;application/vnd.ipunplugged.rcprofile
rct;application/prs.nprend
rd;x-chemical/x-mdl-rdfile
rdf;application/rdf+xml
rdz;application/vnd.data-vision.rdz
rep;application/vnd.businessobjects
req;application/vnd.nervana
request;application/vnd.nervana
res;application/x-dtbresource+xml
rexx;text/x-script.rexx
rf;image/vnd.rn-realflash
rgb;image/x-rgb
rhtml;application/x-html+ruby
rif;application/reginfo+xml
rip;audio/vnd.rip
ris;application/x-research-info-systems
rl;application/resource-lists+xml
rlc;image/vnd.fujixerox.edmics-rlc
rld;application/resource-lists-diff+xml
rm;audio/x-pn-realaudio
rmi;audio/x-mid
rmm;audio/x-pn-realaudio
rmp;audio/x-pn-realaudio-plugin
rms;application/vnd.jcp.javame.midlet-rms
rmvb;application/vnd.rn-realmedia-vbr
rnc;application/relax-ng-compact-syntax
rnd;application/prs.nprend
rng;application/x-ringing-tones
rnx;application/vnd.rn-realplayer
roa;application/rpki-roa
roff;application/x-troff
ros;x-chemical/x-rosdal
rp9;application/vnd.cloanto.rp9
rp;image/vnd.rn-realpix
rpm;application/x-redhat-package-manager
rpss;application/vnd.nokia.radio-presets
rpst;application/vnd.nokia.radio-preset
rq;application/sparql-query
rs;application/rls-services+xml
rsd;application/x-rsd+xml
rss;application/x-rss+xml
rst;text/prs.fallenstein.rst
rt;text/richtext
rtf;application/rtf
rtx;text/richtext
rv;video/vnd.rn-realvideo
rxn;x-chemical/x-mdl-rxnfile
s11;video/vnd.sealed.mpeg1
s14;video/vnd.sealed.mpeg4
s1a;application/vnd.sealedmedia.softseal.pdf
s1e;application/vnd.sealed.xls
s1g;image/vnd.sealedmedia.softseal.gif
s1h;application/vnd.sealedmedia.softseal.html
s1j;image/vnd.sealedmedia.softseal.jpg
s1m;audio/vnd.sealedmedia.softseal.mpeg
s1n;image/vnd.sealed.png
s1p;application/vnd.sealed.ppt
s1q;video/vnd.sealedmedia.softseal.mov
s1w;application/vnd.sealed.doc
s3m;audio/x-s3m
s;text/x-asm
saf;application/vnd.yamaha.smaf-audio
sav;application/x-spss
saveme;application/octet-stream
sbk;application/x-tbook
sbml;application/sbml+xml
sbs;application/x-spss
sc;application/vnd.ibm.secure-container
scala;text/x-scala
scd;application/x-msschedule
scm;application/vnd.lotus-screencam
scq;application/scvp-cv-request
scr;application/x-silverlight
scs;application/scvp-cv-response
sct;text/x-scriptlet
scurl;text/vnd.curl.scurl
sd2;audio/x-sd2
sd;x-chemical/x-mdl-sdfile
sda;application/vnd.stardivision.draw
sdc;application/vnd.stardivision.calc
sdd;application/vnd.stardivision.impress
sdf;application/vnd.stardivision.math
sdkd;application/vnd.solent.sdkm+xml
sdkm;application/vnd.solent.sdkm+xml
sdml;text/plain
sdo;application/vnd.sealed.doc
sdoc;application/vnd.sealed.doc
sdp;application/sdp
sdr;application/x-sounder
sds;application/vnd.stardivision.chart
sdw;application/vnd.stardivision.writer
sea;application/x-sea
see;application/vnd.seemail
seed;application/vnd.fdsn.seed
sem;application/vnd.sealed.eml
sema;application/vnd.sema
semd;application/vnd.semd
semf;application/vnd.semf
seml;application/vnd.sealed.eml
ser;application/x-java-serialized-object
set;application/x-set
setpay;application/set-payment-initiation
setreg;application/set-registration-initiation
sfd-hdstx;application/vnd.hydrostatix.sof-data
sfs;application/vnd.spotfire.sfs
sfv;text/x-sfv
sgf;application/x-go-sgf
sgi;image/vnd.sealedmedia.softseal.gif
sgif;image/vnd.sealedmedia.softseal.gif
sgl;application/vnd.stardivision.writer-global
sgm;text/sgml
sgml;text/sgml
sh;application/x-sh
shar;application/x-shar
shf;application/shf+xml
shp;application/x-qgis
shtml;text/html
shx;application/x-qgis
si;text/vnd.wap.si
sic;application/vnd.wap.sic
sid;audio/prs.sid
sig;application/pgp-signature
sik;application/x-trash
sil;audio/x-silk
silo;model/mesh
sis;application/vnd.symbian.install
sisx;x-epoc/x-sisx-app
sit;application/x-stuffit
sitx;application/x-stuffit
siv;application/sieve
sjp;image/vnd.sealedmedia.softseal.jpg
sjpg;image/vnd.sealedmedia.softseal.jpg
skd;application/x-koan
skm;application/x-koan
skp;application/x-koan
skt;application/x-koan
sl;text/vnd.wap.sl
slc;application/vnd.wap.slc
sldm;application/vnd.ms-powerpoint.slide.macroenabled.12
sldx;application/vnd.openxmlformats-officedocument.presentationml.slide
slt;application/vnd.epson.salt
sm;application/vnd.stepmania.stepchart
smf;application/vnd.stardivision.math
smh;application/vnd.sealed.mht
smht;application/vnd.sealed.mht
smi;application/smil
smil;application/smil
smo;video/vnd.sealedmedia.softseal.mov
smov;video/vnd.sealedmedia.softseal.mov
smp3;audio/vnd.sealedmedia.softseal.mpeg
smp;audio/vnd.sealedmedia.softseal.mpeg
smpg;video/vnd.sealed.mpeg4
sms;application/vnd.3gpp.sms
smv;audio/smv
smzip;application/vnd.stepmania.package
snd;audio/basic
snf;application/x-font-snf
so;application/octet-stream
soc;application/sgml-open-catalog
sol;application/x-solids
spc;x-chemical/x-galactic-spc
spd;application/vnd.sealedmedia.softseal.pdf
spdf;application/vnd.sealedmedia.softseal.pdf
spf;application/vnd.yamaha.smaf-phrase
spl;application/x-futuresplash
spn;image/vnd.sealed.png
spng;image/vnd.sealed.png
spo;application/x-spss
spot;text/vnd.in3d.spot
spp;application/vnd.sealed.ppt
sppt;application/vnd.sealed.ppt
spq;application/scvp-vp-request
spr;application/x-sprite
sprite;application/x-sprite
sps;application/x-spss
spx;audio/ogg
sql;application/x-sql
src;application/x-wais-source
srt;application/x-subrip
sru;application/sru+xml
srx;application/sparql-results+xml
ssdl;application/x-ssdl+xml
sse;application/vnd.kodak-descriptor
ssf;application/vnd.epson.ssf
ssi;text/x-server-parsed-html
ssm;application/x-streamingmedia
ssml;application/ssml+xml
sst;application/vnd.ms-pki.certstore
ssw;video/vnd.sealed.swf
sswf;video/vnd.sealed.swf
st;application/vnd.sailingtracker.track
stc;application/vnd.sun.xml.calc.template
std;application/vnd.sun.xml.draw.template
step;application/x-step
stf;application/vnd.wt.stf
sti;application/vnd.sun.xml.impress.template
stk;application/hyperstudio
stl;application/vnd.ms-pki.stl
stm;application/vnd.sealedmedia.softseal.html
stml;application/vnd.sealedmedia.softseal.html
stp;application/x-step
str;application/vnd.pg.format
stw;application/vnd.sun.xml.writer.template
sty;text/x-tex
sub;image/vnd.dvb.subtitle
sus;application/vnd.sus-calendar
susp;application/vnd.sus-calendar
sv4cpio;application/x-sv4cpio
sv4crc;application/x-sv4crc
svc;application/vnd.dvb.service
svd;application/vnd.svd
svf;image/vnd.dwg
svg;image/svg+xml
svgz;image/svg+xml
svr;application/x-world
sw;x-chemical/x-swissprot
swa;application/x-director
swf;application/x-shockwave-flash
swfl;application/x-shockwave-flash
swi;application/vnd.aristanetworks.swi
sxc;application/vnd.sun.xml.calc
sxd;application/vnd.sun.xml.draw
sxg;application/vnd.sun.xml.writer.global
sxi;application/vnd.sun.xml.impress
sxl;application/vnd.sealed.xls
sxls;application/vnd.sealed.xls
sxm;application/vnd.sun.xml.math
sxw;application/vnd.sun.xml.writer
t3;application/x-t3vm-image
t;application/x-troff
taglet;application/vnd.mynfc
talk;text/x-speech
tao;application/vnd.tao.intent-module-archive
tar;application/x-tar
taz;application/x-gtar
tbk;application/x-toolbook
tbz2;application/x-gtar
tbz;application/x-gtar
tcap;application/vnd.3gpp2.tcap
tcl;application/x-tcl
tcsh;text/x-script.tcsh
teacher;application/vnd.smart.teacher
tei;application/tei+xml
tex;application/x-tex
texi;application/x-texinfo
texinfo;application/x-texinfo
text;application/x-plain
tfi;application/thraud+xml
tfm;application/x-tex-tfm
tga;image/x-targa
tgf;x-chemical/x-mdl-tgf
tgz;application/x-gtar
thmx;application/vnd.ms-officetheme
tif;image/tiff
tiff;image/tiff
tk;text/x-tcl
tm;text/x-texmacs
tmo;application/vnd.tmobile-livetv
torrent;application/x-bittorrent
tpl;application/vnd.groove-tool-template
tpt;application/vnd.trid.tpt
tr;application/x-troff
tra;application/vnd.trueapp
trm;application/x-msterminal
ts;text/x-texmacs
tsd;application/timestamped-data
tsi;audio/x-tsp-audio
tsp;application/x-dsptype
tsv;text/tab-separated-values
ttc;application/x-font-ttf
ttf;application/x-font-ttf
ttl;text/turtle
turbot;image/x-florian
twd;application/vnd.simtech-mindmapper
twds;application/vnd.simtech-mindmapper
txd;application/vnd.genomatix.tuxedo
txf;application/vnd.mobius.txf
txt;text/plain
u32;application/x-authorware-bin
udeb;application/x-debian-package
ufd;application/vnd.ufdl
ufdl;application/vnd.ufdl
uil;text/x-uil
uls;text/x-iuls
ulx;application/x-glulx
umj;application/vnd.umajin
uni;text/uri-list
unis;text/uri-list
unityweb;application/vnd.unity
unv;application/x-i-deas
uoml;application/vnd.uoml+xml
upa;application/vnd.hbci
uri;text/uri-list
uris;text/uri-list
urls;text/uri-list
ustar;application/x-ustar
utz;application/vnd.uiq.theme
uu;text/x-uuencode
uue;text/x-uuencode
uva;audio/vnd.dece.audio
uvf;application/vnd.dece.data
uvh;video/vnd.dece.hd
uvi;image/vnd.dece.graphic
uvm;video/vnd.dece.mobile
uvp;video/vnd.dece.pd
uvs;video/vnd.dece.sd
uvt;application/vnd.dece.ttml+xml
uvu;video/vnd.uvvu.mp4
uvv;video/vnd.dece.video
uvx;application/vnd.dece.unspecified
uvz;application/vnd.dece.zip
val;x-chemical/x-ncbi-asn1-binary
vbk;audio/vnd.nortel.vbk
vcard;text/vcard
vcd;application/x-cdlink
vcf;text/x-vcard
vcg;application/vnd.groove-vcard
vcs;text/x-vcalendar
vcx;application/vnd.vcx
vda;application/x-vda
vdo;video/x-vdo
vew;application/x-groupwise
vis;application/vnd.visionary
viv;video/vnd.vivo
vivo;video/vnd.vivo
vmd;x-chemical/x-vmd
vmf;application/x-vocaltec-media-file
vms;x-chemical/x-vamas-iso14976
vob;video/x-ms-vob
voc;audio/x-voc
vor;application/vnd.stardivision.writer
vos;video/x-vosaic
vox;audio/x-voxware
vqe;audio/x-twinvq-plugin
vqf;audio/x-twinvq
vql;audio/x-twinvq-plugin
vrm;x-world/x-vrml
vrml;model/vrml
vrt;x-world/x-vrt
vsc;application/vnd.vidsoft.vidconference
vsd;application/vnd.visio
vsf;application/vnd.vsf
vss;application/vnd.visio
vst;application/vnd.visio
vsw;application/vnd.visio
vtu;model/vnd.vtu
vxml;application/voicexml+xml
w3d;application/x-director
w60;application/x-wordperfect6.0
w61;application/x-wordperfect6.1
w6w;application/msword
wad;application/x-doom
wav;audio/x-wav
wax;audio/x-ms-wax
wb1;application/x-qpro
wbmp;image/vnd.wap.wbmp
wbs;application/vnd.criticaltools.wbs+xml
wbxml;application/vnd.wap.wbxml
wcm;application/vnd.ms-works
wdb;application/vnd.ms-works
wdp;image/vnd.ms-photo
web;application/vnd.xara
weba;audio/x-webm
webm;video/x-webm
webp;image/x-webp
wg;application/vnd.pmi.widget
wgt;application/widget
wif;application/watcherinfo+xml
wiz;application/msword
wk1;application/x-123
wk;application/x-123
wks;application/vnd.lotus-1-2-3
wm;video/x-ms-wm
wma;audio/x-ms-wma
wmd;application/x-ms-wmd
wmf;application/x-msmetafile
wml;text/vnd.wap.wml
wmlc;application/vnd.wap.wmlc
wmls;text/vnd.wap.wmlscript
wmlsc;application/vnd.wap.wmlscriptc
wmv;video/x-ms-wmv
wmx;video/x-ms-wmx
wmz;application/x-ms-wmz
woff;application/x-font-woff
word;application/msword
wp5;application/vnd.wordperfect5.1
wp6;application/x-wordperfect6.1
wp;application/wordperfect5.1
wpd;application/vnd.wordperfect
wpl;application/vnd.ms-wpl
wps;application/vnd.ms-works
wq1;application/x-lotus
wqd;application/vnd.wqd
wrd;application/x-msword
wri;application/x-mswrite
wrl;model/vrml
wrz;model/vrml
wsc;text/x-scriptlet
wsdl;application/wsdl+xml
wspolicy;application/wspolicy+xml
wsrc;application/x-wais-source
wtb;application/vnd.webturbo
wtk;application/x-wintalk
wv;application/vnd.wv.csp+wbxml
wvx;video/x-ms-wvx
wz;application/x-wingz
x-png;image/png
x32;application/x-authorware-bin
x3d;model/x-x3d+xml
x3db;model/x-x3d+binary
x3dv;model/x-x3d+vrml
x_b;model/vnd.parasolid.transmit.binary
x_t;model/vnd.parasolid.transmit.text
xaml;application/x-xaml+xml
xap;application/x-silverlight-app
xar;application/vnd.xara
xbap;application/x-ms-xbap
xbd;application/vnd.fujixerox.docuworks.binder
xbm;image/x-xbitmap
xcf;application/x-xcf
xdf;application/xcap-diff+xml
xdm;application/vnd.syncml.dm+xml
xdp;application/vnd.adobe.xdp+xml
xdr;video/x-amt-demorun
xdssc;application/dssc+xml
xdw;application/vnd.fujixerox.docuworks
xenc;application/xenc+xml
xer;application/patch-ops-error+xml
xfdf;application/vnd.adobe.xfdf
xfdl;application/vnd.xfdl
xgz;x-xgl/x-drawing
xht;application/xhtml+xml
xhtml;application/xhtml+xml
xhvml;application/xv+xml
xif;image/vnd.xiff
xl;application/x-excel
xla;application/vnd.ms-excel
xlam;application/vnd.ms-excel.addin.macroenabled.12
xlb;application/vnd.ms-excel
xlc;application/x-excel
xld;application/x-excel
xlf;application/x-xliff+xml
xlk;application/x-excel
xll;application/x-excel
xlm;application/x-excel
xls;application/vnd.ms-excel
xlsb;application/vnd.ms-excel.sheet.binary.macroenabled.12
xlsm;application/vnd.ms-excel.sheet.macroenabled.12
xlsx;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
xlt;application/vnd.ms-excel
xltm;application/vnd.ms-excel.template.macroenabled.12
xltx;application/vnd.openxmlformats-officedocument.spreadsheetml.template
xlv;application/x-excel
xlw;application/x-excel
xm;audio/x-xm
xml;application/xml
xmt_bin;model/vnd.parasolid.transmit.binary
xmt_txt;model/vnd.parasolid.transmit.text
xmz;x-xgl/x-movie
xo;application/vnd.olpc-sugar
xop;application/xop+xml
xpdl;application/xml
xpi;application/x-xpinstall
xpix;application/x-vnd.ls-xpix
xpl;application/x-xproc+xml
xpm;image/x-xpixmap
xpr;application/vnd.is-xpr
xps;application/vnd.ms-xpsdocument
xpw;application/vnd.intercon.formnet
xpx;application/vnd.intercon.formnet
xsd;application/xml
xsl;application/xml
xslt;application/xslt+xml
xsm;application/vnd.syncml+xml
xspf;application/x-xspf+xml
xsr;video/x-amt-showrun
xtel;x-chemical/x-xtel
xul;application/vnd.mozilla.xul+xml
xvm;application/xv+xml
xvml;application/xv+xml
xwd;image/x-xwindowdump
xyz;x-chemical/x-xyz
xz;application/x-xz
yang;application/yang
yin;application/yin+xml
z1;application/x-zmachine
z;application/x-compress
zaz;application/vnd.zzazz.deck+xml
zip;application/zip
zir;application/vnd.zul
zirz;application/vnd.zul
zmm;application/vnd.handheld-entertainment+xml
zmt;x-chemical/x-mopac-input
zoo;application/octet-stream
zsh;text/x-script.zsh
~;application/x-trash

42:application::
x-access;;
x-amf;;
x-appledouble;;base64
x-auth-policy+xml;;
x-cellml+xml;;
x-core;;
x-example;;
x-executable;;
x-font-dos;;
x-font-framemaker;;
x-font-libgrx;;
x-font-speedo;;
x-font-sunos-news;;
x-font-vfont;;
x-ghostview;;
x-gunzip;;
x-ideas;;
x-java-applet;;
x-java-bean;;
x-kdelnk;;
x-lotus-123;;
x-mbms-associated-procedure-description+xml;;
x-mbms-deregister+xml;;
x-mbms-envelope+xml;;
x-mbms-msk+xml;;
x-mbms-msk-response+xml;;
x-mbms-protection-description+xml;;
x-mbms-reception-report+xml;;
x-mbms-register+xml;;
x-mbms-register-response+xml;;
x-mbms-user-service-description+xml;;
x-ms-tnef;;
x-news-message-id;;
x-qsig;;
x-remote_printing;;
x-rx;;
x-shellscript;;
x-simple-message-summary;;
x-videolan;;
x-vividence.scriptfile;;
x-word;;base64
x-x400-bp;;

331:application::E
x-123;wk,wk1;
x-7z-compressed;7z;
x-abiword;abw;
x-acad;dwg;
x-ace-compressed;ace;
x-aim;aim;
x-annodex;anx;
x-apple-diskimage;dmg;
x-applixware;aw;
x-arj;arj;
x-atomserv+xml;atomsrv;
x-authorware-bin;aab,u32,vox,x32;
x-authorware-map;aam;
x-authorware-seg;aas;
x-base64;mm,mme;
x-bbolin;lin;
x-bcpio;bcpio;
x-binary;bin;
x-binhex40;hqx;
x-binhex4;hqx;
x-binhex;hqx;
x-bittorrent;torrent;
x-bleeper;bleep;base64
x-blorb;blb;
x-book;boo,book;
x-bsh;bsh,sh,shar;
x-bytecode.elisp;elc;
x-bytecode.python;pyc;
x-bzip2;bz2,boz;
x-bzip;bz;
x-cab;cab;
x-cap;cap,pcap;
x-cbr;cbr;
x-cbz;cbz;
x-cdf;cdf,cda;
x-cdlink;vcd;
x-cfs-compressed;cfs;
x-chat;chat,cha;
x-chess-pgn;pgn;
x-clariscad;ccad;
x-cmu-raster;ras;
x-cocoa;cco;
x-compactpro;cpt;
x-compress;z;base64
x-compressed;gz,tgz,z,zip;
x-conference;nsc;
x-cpio;cpio;base64
x-cpt;cpt;
x-csh;csh;8bit
x-cu-seeme;cu,csm;
x-davmount+xml;davmount;
x-debian-package;deb,udeb;
x-deepv;deepv;
x-dgc-compressed;dgc;
x-director;dcr,dir,dxr,cct,cst,cxt,fgd,swa,w3d;
x-dms;dms;
x-docbook+xml;dbk;
x-doom;wad;
x-drafting;drw;
x-dsptype;tsp;
x-dtbncx+xml;ncx;
x-dtbook+xml;dtb;
x-dtbresource+xml;res;
x-dvi;dvi;base64
x-dxf;dxf;
x-elc;elc;
x-envoy;evy,env;
x-epub+zip;epub;
x-esrehber;es;
x-eva;eva;
x-excel;xl,xla,xlb,xlc,xld,xlk,xll,xlm,xls,xlt,xlv,xlw;
x-font-bdf;bdf;
x-font-ghostscript;gsf;
x-font-linux-psf;psf;
x-font-otf;otf;
x-font-pcf;pcf;
x-font-snf;snf;
x-font-ttf;ttf,ttc;
x-font-type1;pfa,afm,pfb,pfm;
x-font-woff;woff;
x-font;pfa,pfb,gsf,pcf,pcf.z;
x-fractals;fif;
x-frame;mif;
x-freearc;arc;
x-freelance;pre;
x-freeloader;frl;
x-freemind;mm;
x-futuresplash;spl;
x-gca-compressed;gca;
x-glulx;ulx;
x-gml+xml;gml;
x-gnumeric;gnumeric;
x-gnutar;tgz;
x-go-sgf;sgf;
x-gpx+xml;gpx;
x-gramps-xml;gramps;
x-graphing-calculator;gcf;
x-groupwise;vew;
x-gsp;gsp;
x-gss;gss;
x-gtar;gtar,tgz,tbz2,tbz,taz;base64
x-gxf;gxf;
x-gzip;gz,gzip,tgz;base64
x-hdf;hdf;
x-helpfile;help,hlp;
x-hep;hep;
x-hlp;hlp;
x-hta;hta;
x-html+ruby;rhtml;8bit
x-httpd-eruby;rhtml;
x-httpd-imap;imap;
x-httpd-php-source;phps;
x-httpd-php3-preprocessed;php3p;
x-httpd-php3;php3;
x-httpd-php4;php4;
x-httpd-php5;php5;
x-httpd-php;phtml,pht,php;8bit
x-i-deas;unv;
x-ica;ica;
x-ima;ima;
x-imagemap;imagemap,imap;8bit
x-inf;inf;
x-info;info;
x-install-instructions;install;
x-internet-signup;ins,isp;
x-internett-signup;ins;
x-inventor;iv;
x-ip2;ip;
x-iphone;iii;
x-iso9660-image;iso;
x-jam;jam;
x-java-archive;jar;
x-java-byte-code;class;
x-java-class;class;
x-java-commerce;jcm;
x-java-jnlp-file;jnlp;
x-java-serialized-object;ser;
x-java-vm;class;
x-java;class;
x-javascript;js;
x-jmol;jmz;
x-jsonml+json;jsonml;
x-kchart;chrt;
x-killustrator;kil;
x-koan;skp,skd,skt,skm;
x-kpresenter;kpr,kpt;
x-ksh;ksh;
x-kspread;ksp;
x-kword;kwd,kwt;
x-latex;latex,ltx;8bit
x-lha;lha;
x-lisp;lsp;
x-livescreen;ivy;
x-lotus;wq1;
x-lotusscreencam;scm;
x-lyx;lyx;
x-lzh-compressed;lzh;
x-lzh;lzh;
x-lzx;lzx;
x-m3g;m3g;
x-mac-binary;bin;
x-mac-binhex40;hqx;
x-mac-binhex;hqx;
x-mac-compactpro;cpt;
x-macbinary;bin;
x-magic-cap-package-1.0;mc$;
x-maker;frm,maker,frame,fm,fb,book,fbdoc;
x-mathcad;#,mcd;mcd,
x-mbedlet;mbd;
x-mcad;mcd;
x-meme;mm;
x-metalink+xml;metalink;
x-midi;mid,midi;
x-mie;mie;
x-mif;mif;
x-mime;aps;
x-mix-transfer;nix;
x-mobipocket-ebook;prc,mobi;
x-mplayer2;asx;
x-ms-application;application;
x-ms-shortcut;lnk;
x-ms-wmd;wmd;
x-ms-wmz;wmz;
x-ms-xbap;xbap;
x-msaccess;mdb,mda,mde,mdf;base64
x-msbinder;obd;
x-mscardfile;crd;
x-msclip;clp;
x-msdos-program;com,exe,bat,dll;base64
x-msdownload;exe,bat,com,dll,msi;base64
x-msexcel;xla,xls,xlw;
x-msi;msi;
x-msmediaview;mvb,m13,m14;
x-msmetafile;wmf;
x-msmoney;mny;
x-mspowerpoint;pot,pps,ppt,ppz;
x-mspublisher;pub;
x-msschedule;scd;
x-msterminal;trm;
x-msword;doc,dot,wrd;base64
x-mswrite;wri;
x-navi-animation;ani;
x-navidoc;nvd;
x-navimap;map;
x-navistyle;stl;
x-netcdf;nc,cdf;
x-netmc;mcp;
x-newton-compatible-pkg;pkg;
x-nokia-9000-communicator-add-on-software;aos;
x-ns-proxy-autoconfig;pac,dat;
x-nwc;nwc;
x-nzb;nzb;
x-object;o;
x-oebps-package+xml;opf;
x-omc;omc;
x-omcdatamaker;omcd;
x-omcregerator;omcr;
x-omdoc+xml;omdoc;
x-onenote;onetoc,onepkg,onetmp,onetoc2;
x-oz-application;oza;
x-pagemaker;pm5,pt5,pm,pm4;
x-pcl;pcl;
x-perl;pl,pm;8bit
x-pgp;pgp;
x-pics-rules;prf;
x-pixclscript;plx;
x-pkcs-12;p12;
x-pkcs-crl;crl;
x-pkcs10;p10;
x-pkcs12;p12,pfx;
x-pkcs7-certificates;p7b,spc;
x-pkcs7-certreqresp;p7r;
x-pkcs7-crl;crl;
x-pkcs7-mime;p7c,p7m;
x-pkcs7-signature;p7a;
x-pkix-pkipath;pkipath;
x-plain;text;
x-pointplus;css;
x-portable-anymap;pnm;
x-powerpoint;ppt;
x-pro_eng;part,prt;
x-project;mpc,mpt,mpv,mpx;
x-python-code;pyc,pyo;
x-python;py;8bit
x-qgis;qgs,shp,shx;
x-qpro;wb1;
x-quicktimeplayer;qtl;
x-rar-compressed;rar;base64
x-rar;rar;
x-redhat-package-manager;rpm;
x-research-info-systems;ris;
x-ringing-tones;rng;
x-rpm;rpm;
x-rsd+xml;rsd;
x-rss+xml;rss;
x-rtf;rtf;
x-ruby;rb,rbw;8bit
x-sdp;sdp;
x-sea;sea;
x-seelogo;sl;
x-set;set;
x-sh;sh;8bit
x-shar;shar,sh;8bit
x-shockwave-flash;swf,swfl;
x-silverlight-app;xap;
x-silverlight;scr;
x-sit;sit;
x-sla;stl;
x-solids;sol;
x-sounder;sdr;
x-sprite;spr,sprite;
x-spss;sav,sbs,sps,spo,spp;
x-sql;sql;
x-ssdl+xml;ssdl;
x-step;step,stp;
x-streamingmedia;ssm;
x-stuffit;sit,sitx;base64
x-stuffitx;sitx;
x-subrip;srt;
x-sv4cpio;sv4cpio;base64
x-sv4crc;sv4crc;base64
x-t3vm-image;t3;
x-tads;gam;
x-tar;tar;base64
x-tbook;sbk,tbk;
x-tcl;tcl;8bit
x-tex-gf;gf;
x-tex-pk;pk;
x-tex-tfm;tfm;
x-tex;tex;8bit
x-texinfo;texinfo,texi;8bit
x-tgif;obj;
x-toolbook;tbk;
x-trash;~,%,bak,old,sik;
x-troff-man;man;8bit
x-troff-me;me;
x-troff-ms;ms;
x-troff-msvideo;avi;
x-troff;t,tr,roff;8bit
x-ustar;ustar;base64
x-vda;vda;
x-visio;vsd,vst,vsw;
x-vmsbackup;bck;base64
x-vnd.audioexplosion.mzz;mzz;
x-vnd.ls-xpix;xpix;
x-vocaltec-media-desc;vmd;
x-vocaltec-media-file;vmf;
x-vrml;vrml;
x-wais-source;src,wsrc;
x-wingz;wz;
x-winhelp;hlp;
x-winhlp;hlp;
x-wintalk;wtk;
x-wordperfect6.0;w60,wp5;
x-wordperfect6.1;wp6,w61;
x-wordperfect;wp,wp5,wp6,wpd;
x-world;svr,wrl;
x-wpwin;wpd;
x-wri;wri;
x-x509-ca-cert;crt,der,cer;base64
x-x509-user-cert;crt;
x-xaml+xml;xaml;
x-xcf;xcf;
x-xfig;fig;
x-xliff+xml;xlf;
x-xpinstall;xpi;
x-xproc+xml;xpl;
x-xspf+xml;xspf;
x-xz;xz;
x-zip-compressed;zip;
x-zmachine;z1;

556:application:I:
1d-interleaved-parityfec;;
3gpp-ims+xml;;
activemessage;;
applefile;;base64
atomdeleted+xml;;
atomicmail;;
batch-smtp;;
beep+xml;;
calendar+xml;;
call-completion;;
cals-1840;;
ccmp+xml;;
cea-2018+xml;;
cfw;;
cnrp+xml;;
conference-info+xml;;
cpl+xml;;
csrattrs;;
csta+xml;;
cstadata+xml;;
cybercash;;
dash+xml;;
dca-rft;;
dec-dx;;
dialog-info+xml;;
dicom;;
dns;;
dskpp+xml;;
dvcs;;
edi-consent;;
edi-x12;;
edifact;;
encaprtp;;
epp+xml;;
eshop;;
fastinfoset;;
fastsoap;;
fdt+xml;;
fits;;
font-sfnt;;
font-woff;;
framework-attributes+xml;;
gzip;;
h224;;
held+xml;;
http;;
ibe-key-request+xml;;
ibe-pkg-reply+xml;;
ibe-pp-data;;
im-iscomposing+xml;;
index.cmd;;
index.obj;;
index.response;;
index.vnd;;
index;;
iotp;;
ipp;;
isup;;
its+xml;;
json-patch+json;;
kpml-request+xml;;
kpml-response+xml;;
ld+json;;
link-format;;
lostsync+xml;;
macwriteii;;
mathml-content+xml;;
mathml-presentation+xml;;
media-policy-dataset+xml;;
media_control+xml;;
mikey;;
moss-keys;;
moss-signature;;
mosskey-data;;
mosskey-request;;
mpeg4-generic;;
mpeg4-iod-xmt;;
mpeg4-iod;;
mrb-consumer+xml;;
mrb-publish+xml;;
msc-ivr+xml;;
msc-mixer+xml;;
nasdata;;
news-checkgroups;;
news-groupinfo;;
news-transmission;;
nlsml+xml;;
nss;;
p2p-overlay+xml;;
parityfec;;
pidf+xml;;
pidf-diff+xml;;
poc-settings+xml;;
provenance+xml;;
prs.alvestrand.titrax-sheet;;
prs.plucker;;
prs.rdf-xml-crypt;;
prs.xsf+xml;;
raptorfec;;
remote-printing;;
riscos;;
rlmi+xml;;
rpki-updown;;
rtploopback;;
rtx;;
samlassertion+xml;;
samlmetadata+xml;;
sep+xml;;
sep-exi;;
session-info;;
set-payment;;
set-registration;;
sgml;;
simple-filter+xml;;
simplesymbolcontainer;;
slate;;
smpte336m;;
soap+fastinfoset;;
soap+xml;;
spirits-event+xml;;
sql;;
tamp-apex-update-confirm;;
tamp-apex-update;;
tamp-community-update-confirm;;
tamp-community-update;;
tamp-error;;
tamp-sequence-adjust-confirm;;
tamp-sequence-adjust;;
tamp-status-query;;
tamp-status-response;;
tamp-update-confirm;;
tamp-update;;
timestamp-query;;
timestamp-reply;;
tve-trigger;;
ulpfec;;
urc-grpsheet+xml;;
urc-ressheet+xml;;
urc-targetdesc+xml;;
urc-uisocketdesc+xml;;
vcard+xml;;
vemmi;;
vnd.3gpp.bsf+xml;;
vnd.3gpp2.bcmcsinfo+xml;;
vnd.3gpp2.sms;;
vnd.adobe.partial-upload;;
vnd.aether.imp;;
vnd.ah-barcode;;
vnd.amundsen.maze+xml;;
vnd.api+json;;
vnd.autopackage;;
vnd.avistar+xml;;
vnd.balsamiq.bmml+xml;;
vnd.bluetooth.ep.oob;;
vnd.cab-jscript;;
vnd.canon-cpdl;;
vnd.canon-lips;;
vnd.cendio.thinlinc.clientconf;;
vnd.century-systems.tcp_stream;;
vnd.cirpack.isdn-ext;;
vnd.collection+json;;
vnd.collection.next+json;;
vnd.commerce-battelle;;
vnd.comsocaller;;
vnd.ctct.ws+xml;;
vnd.cups-pdf;;
vnd.cups-postscript;;
vnd.cups-raster;;
vnd.cups-raw;;
vnd.cyan.dean.root+xml;;
vnd.cybank;;
vnd.desmume.movie;;
vnd.dir-bi.plate-dl-nosuffix;;
vnd.dm.delegation+xml;;
vnd.dolby.mobile.1;;
vnd.dolby.mobile.2;;
vnd.dtg.local.flash;;
vnd.dtg.local.html;;
vnd.dtg.local;;
vnd.dvb.dvbj;;
vnd.dvb.esgcontainer;;
vnd.dvb.ipdcdftnotifaccess;;
vnd.dvb.ipdcesgaccess2;;
vnd.dvb.ipdcesgaccess;;
vnd.dvb.ipdcesgpdd;;
vnd.dvb.ipdcroaming;;
vnd.dvb.iptv.alfec-base;;
vnd.dvb.iptv.alfec-enhancement;;
vnd.dvb.notif-aggregate-root+xml;;
vnd.dvb.notif-container+xml;;
vnd.dvb.notif-generic+xml;;
vnd.dvb.notif-ia-msglist+xml;;
vnd.dvb.notif-ia-registration-request+xml;;
vnd.dvb.notif-ia-registration-response+xml;;
vnd.dvb.notif-init+xml;;
vnd.dvb.pfr;;
vnd.dxr;;
vnd.easykaraoke.cdgdownload;;
vnd.ecdis-update;;
vnd.ecowin.filerequest;;
vnd.ecowin.fileupdate;;
vnd.ecowin.series;;
vnd.ecowin.seriesrequest;;
vnd.ecowin.seriesupdate;;
vnd.emclient.accessrequest+xml;;
vnd.eprints.data+xml;;
vnd.ericsson.quickcall;;
vnd.etsi.aoc+xml;;
vnd.etsi.asic-e+zip;;
vnd.etsi.cug+xml;;
vnd.etsi.iptvcommand+xml;;
vnd.etsi.iptvdiscovery+xml;;
vnd.etsi.iptvprofile+xml;;
vnd.etsi.iptvsad-bc+xml;;
vnd.etsi.iptvsad-cod+xml;;
vnd.etsi.iptvsad-npvr+xml;;
vnd.etsi.iptvservice+xml;;
vnd.etsi.iptvsync+xml;;
vnd.etsi.iptvueprofile+xml;;
vnd.etsi.mcid+xml;;
vnd.etsi.mheg5;;
vnd.etsi.overload-control-policy-dataset+xml;;
vnd.etsi.pstn+xml;;
vnd.etsi.sci+xml;;
vnd.etsi.simservs+xml;;
vnd.etsi.tsl+xml;;
vnd.etsi.tsl.der;;
vnd.eudora.data;;
vnd.f-secure.mobile;;
vnd.ffsns;;
vnd.fints;;
vnd.font-fontforge-sfd;;
vnd.fujixerox.art-ex;;
vnd.fujixerox.art4;;
vnd.fujixerox.docuworks.container;;
vnd.fujixerox.hbpl;;
vnd.fut-misnet;;
vnd.geocube+xml;;
vnd.globalplatform.card-content-mgt-response;;
vnd.globalplatform.card-content-mgt;;
vnd.gridmp;;
vnd.hal+json;;
vnd.hcl-bireports;;
vnd.httphone;;
vnd.ibm.afplinedata;;
vnd.ieee.1905;;
vnd.informedcontrol.rms+xml;;
vnd.informix-visionary;;
vnd.infotech.project+xml;;
vnd.infotech.project;;
vnd.innopath.wamp.notification;;
vnd.intertrust.digibox;;
vnd.intertrust.nncp;;
vnd.iptc.g2.conceptitem+xml;;
vnd.iptc.g2.knowledgeitem+xml;;
vnd.iptc.g2.newsitem+xml;;
vnd.iptc.g2.newsmessage+xml;;
vnd.iptc.g2.packageitem+xml;;
vnd.iptc.g2.planningitem+xml;;
vnd.japannet-directory-service;;
vnd.japannet-jpnstore-wakeup;;
vnd.japannet-payment-wakeup;;
vnd.japannet-registration-wakeup;;
vnd.japannet-registration;;
vnd.japannet-setstore-wakeup;;
vnd.japannet-verification-wakeup;;
vnd.japannet-verification;;
vnd.jsk.isdn-ngn;;
vnd.liberty-request+xml;;
vnd.marlin.drm.actiontoken+xml;;
vnd.marlin.drm.conftoken+xml;;
vnd.marlin.drm.license+xml;;
vnd.marlin.drm.mdcf;;
vnd.meridian-slingshot;;
vnd.minisoft-hp3000-save;;
vnd.mitsubishi.misty-guard.trustweb;;
vnd.motorola.flexsuite.adsi;;
vnd.motorola.flexsuite.fis;;
vnd.motorola.flexsuite.gotap;;
vnd.motorola.flexsuite.kmr;;
vnd.motorola.flexsuite.ttc;;
vnd.motorola.flexsuite.wem;;
vnd.motorola.flexsuite;;
vnd.motorola.iprm;;
vnd.ms-color.iccprofile;;
vnd.ms-office.activex+xml;;
vnd.ms-opentype;;
vnd.ms-package.obfuscated-opentype;;
vnd.ms-playready.initiator+xml;;
vnd.ms-printing.printticket+xml;;
vnd.ms-tnef;;base64
vnd.ms-windows.printerpairing;;
vnd.ms-wmdrm.lic-chlg-req;;
vnd.ms-wmdrm.lic-resp;;
vnd.ms-wmdrm.meter-chlg-req;;
vnd.ms-wmdrm.meter-resp;;
vnd.msign;;
vnd.multiad.creator.cif;;
vnd.multiad.creator;;
vnd.music-niff;;
vnd.ncd.control;;
vnd.ncd.reference;;
vnd.netfpx;;
vnd.nintendo.nitro.rom;;
vnd.nokia.catalogs;;
vnd.nokia.conml+wbxml;;
vnd.nokia.conml+xml;;
vnd.nokia.iptv.config+xml;;
vnd.nokia.isds-radio-presets;;
vnd.nokia.landmark+wbxml;;
vnd.nokia.landmark+xml;;
vnd.nokia.landmarkcollection+xml;;
vnd.nokia.n-gage.ac+xml;;
vnd.nokia.ncd;;
vnd.nokia.pcd+wbxml;;
vnd.nokia.pcd+xml;;
vnd.ntt-local.content-share;;
vnd.ntt-local.file-transfer;;
vnd.ntt-local.sip-ta_remote;;
vnd.ntt-local.sip-ta_tcp_stream;;
vnd.obn;;
vnd.oftn.l10n+json;;
vnd.oipf.contentaccessdownload+xml;;
vnd.oipf.contentaccessstreaming+xml;;
vnd.oipf.cspg-hexbinary;;
vnd.oipf.dae.svg+xml;;
vnd.oipf.dae.xhtml+xml;;
vnd.oipf.mippvcontrolmessage+xml;;
vnd.oipf.pae.gem;;
vnd.oipf.spdiscovery+xml;;
vnd.oipf.spdlist+xml;;
vnd.oipf.ueprofile+xml;;
vnd.oipf.userprofile+xml;;
vnd.oma-scws-config;;
vnd.oma-scws-http-request;;
vnd.oma-scws-http-response;;
vnd.oma.bcast.associated-procedure-parameter+xml;;
vnd.oma.bcast.drm-trigger+xml;;
vnd.oma.bcast.imd+xml;;
vnd.oma.bcast.ltkm;;
vnd.oma.bcast.notification+xml;;
vnd.oma.bcast.provisioningtrigger;;
vnd.oma.bcast.sgboot;;
vnd.oma.bcast.sgdd+xml;;
vnd.oma.bcast.sgdu;;
vnd.oma.bcast.simple-symbol-container;;
vnd.oma.bcast.smartcard-trigger+xml;;
vnd.oma.bcast.sprov+xml;;
vnd.oma.bcast.stkm;;
vnd.oma.cab-address-book+xml;;
vnd.oma.cab-feature-handler+xml;;
vnd.oma.cab-pcc+xml;;
vnd.oma.cab-subs-invite+xml;;
vnd.oma.cab-user-prefs+xml;;
vnd.oma.dcd;;
vnd.oma.dcdc;;
vnd.oma.drm.risd+xml;;
vnd.oma.group-usage-list+xml;;
vnd.oma.pal+xml;;
vnd.oma.poc.detailed-progress-report+xml;;
vnd.oma.poc.final-report+xml;;
vnd.oma.poc.groups+xml;;
vnd.oma.poc.invocation-descriptor+xml;;
vnd.oma.poc.optimized-progress-report+xml;;
vnd.oma.push;;
vnd.oma.scidm.messages+xml;;
vnd.oma.xcap-directory+xml;;
vnd.omads-email+xml;;
vnd.omads-file+xml;;
vnd.omads-folder+xml;;
vnd.omaloc-supl-init;;
vnd.openxmlformats-officedocument.custom-properties+xml;;
vnd.openxmlformats-officedocument.customxmlproperties+xml;;
vnd.openxmlformats-officedocument.drawing+xml;;
vnd.openxmlformats-officedocument.drawingml.chart+xml;;
vnd.openxmlformats-officedocument.drawingml.chartshapes+xml;;
vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml;;
vnd.openxmlformats-officedocument.drawingml.diagramdata+xml;;
vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml;;
vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml;;
vnd.openxmlformats-officedocument.extended-properties+xml;;
vnd.openxmlformats-officedocument.presentationml.commentauthors+xml;;
vnd.openxmlformats-officedocument.presentationml.comments+xml;;
vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml;;
vnd.openxmlformats-officedocument.presentationml.notesmaster+xml;;
vnd.openxmlformats-officedocument.presentationml.notesslide+xml;;
vnd.openxmlformats-officedocument.presentationml.presentation.main+xml;;
vnd.openxmlformats-officedocument.presentationml.presprops+xml;;
vnd.openxmlformats-officedocument.presentationml.slide+xml;;
vnd.openxmlformats-officedocument.presentationml.slidelayout+xml;;
vnd.openxmlformats-officedocument.presentationml.slidemaster+xml;;
vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml;;
vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml;;
vnd.openxmlformats-officedocument.presentationml.tablestyles+xml;;
vnd.openxmlformats-officedocument.presentationml.tags+xml;;
vnd.openxmlformats-officedocument.presentationml.template.main+xml;;
vnd.openxmlformats-officedocument.presentationml.viewprops+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.comments+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.connections+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.styles+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.table+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml;;
vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml;;
vnd.openxmlformats-officedocument.theme+xml;;
vnd.openxmlformats-officedocument.themeoverride+xml;;
vnd.openxmlformats-officedocument.vmldrawing;;
vnd.openxmlformats-officedocument.wordprocessingml.comments+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.footer+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.settings+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.styles+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml;;
vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml;;
vnd.openxmlformats-package.core-properties+xml;;
vnd.openxmlformats-package.digital-signature-xmlsignature+xml;;
vnd.openxmlformats-package.relationships+xml;;
vnd.orange.indata;;
vnd.osa.netdeploy;;
vnd.osgi.bundle;;
vnd.otps.ct-kip+xml;;
vnd.paos.xml;;
vnd.piaccess.application-licence;;
vnd.poc.group-advertisement+xml;;
vnd.powerbuilder6-s;;
vnd.powerbuilder7-s;;
vnd.powerbuilder75-s;;
vnd.powerbuilder75;;
vnd.powerbuilder7;;
vnd.preminet;;
vnd.pwg-multiplexed;;
vnd.pwg-xhtml-print+xml;;
vnd.pwg-xmhtml-print+xml;;
vnd.qualcomm.brew-app-res;;
vnd.quobject-quoxdocument;;
vnd.radisys.moml+xml;;
vnd.radisys.msml+xml;;
vnd.radisys.msml-audit+xml;;
vnd.radisys.msml-audit-conf+xml;;
vnd.radisys.msml-audit-conn+xml;;
vnd.radisys.msml-audit-dialog+xml;;
vnd.radisys.msml-audit-stream+xml;;
vnd.radisys.msml-conf+xml;;
vnd.radisys.msml-dialog+xml;;
vnd.radisys.msml-dialog-base+xml;;
vnd.radisys.msml-dialog-fax-detect+xml;;
vnd.radisys.msml-dialog-fax-sendrecv+xml;;
vnd.radisys.msml-dialog-group+xml;;
vnd.radisys.msml-dialog-speech+xml;;
vnd.radisys.msml-dialog-transform+xml;;
vnd.rainstor.data;;
vnd.rapid;;
vnd.renlearn.rlprint;;
vnd.rs-274x;;
vnd.ruckus.download;;
vnd.s3sms;;
vnd.sbm.cid;;
vnd.sbm.mid2;;
vnd.scribus;;
vnd.sealed.3df;;
vnd.sealed.csf;;
vnd.sealed.net;;
vnd.sealed.tiff;;
vnd.siren+json;;
vnd.smart.notebook;;
vnd.software602.filler.form+xml;;
vnd.software602.filler.form-xml-zip;;
vnd.sss-cod;;
vnd.sss-dtf;;
vnd.sss-ntf;;
vnd.street-stream;;
vnd.sun.wadl+xml;;
vnd.swiftview-ics;;
vnd.syncml.dm.notification;;
vnd.syncml.dmddf+wbxml;;
vnd.syncml.dmddf+xml;;
vnd.syncml.dmtnds+wbxml;;
vnd.syncml.dmtnds+xml;;
vnd.syncml.ds.notification;;
vnd.truedoc;;
vnd.tve-trigger;;
vnd.ubisoft.webplayer;;
vnd.uplanet.alert-wbxml;;
vnd.uplanet.alert;;
vnd.uplanet.bearer-choice-wbxml;;
vnd.uplanet.bearer-choice;;
vnd.uplanet.cacheop-wbxml;;
vnd.uplanet.cacheop;;
vnd.uplanet.channel-wbxml;;
vnd.uplanet.channel;;
vnd.uplanet.list-wbxml;;
vnd.uplanet.list;;
vnd.uplanet.listcmd-wbxml;;
vnd.uplanet.listcmd;;
vnd.uplanet.signal;;
vnd.vd-study;;
vnd.vectorworks;;
vnd.verimatrix.vcas;;
vnd.vividence.scriptfile;;
vnd.wfa.p2p;;
vnd.wfa.wsc;;
vnd.windows.devicepairing;;
vnd.wmc;;
vnd.wmf.bootstrap;;
vnd.wolfram.mathematica.package;;
vnd.wolfram.mathematica;;
vnd.wrq-hp3000-labelled;;
vnd.wv.csp+xml;;8bit
vnd.wv.ssp+xml;;8bit
vnd.xacml+json;;
vnd.xfdl.webform;;
vnd.xmi+xml;;
vnd.xmpie.cpkg;;
vnd.xmpie.dpkg;;
vnd.xmpie.plan;;
vnd.xmpie.ppkg;;
vnd.xmpie.xlim;;
vnd.yamaha.remote-setup;;
vnd.yamaha.through-ngn;;
vnd.yamaha.tunnel-udpencap;;
vq-rtcpxr;;
whoispp-query;;
whoispp-response;;
wita;;
x400-bp;;
xcap-att+xml;;
xcap-caps+xml;;
xcap-el+xml;;
xcap-error+xml;;
xcap-ns+xml;;
xcon-conference-info+xml;;
xcon-conference-info-diff+xml;;
xhtml-voice+xml;;
xml-external-parsed-entity;;
xmpp+xml;;
zlib;;

497:application:I:E
andrew-inset;ez;
atom+xml;atom;8bit
atomcat+xml;atomcat;
atomsvc+xml;atomsvc;
ccxml+xml;ccxml;
cdmi-capability;cdmia;
cdmi-container;cdmic;
cdmi-domain;cdmid;
cdmi-object;cdmio;
cdmi-queue;cdmiq;
commonground;dp;
dssc+der;dssc;
dssc+xml;xdssc;
ecmascript;es,ecma,js;
emma+xml;emma;
exi;exi;
font-tdpfr;pfr;
hyperstudio;stk;
iges;iges,igs;
inkml+xml;ink;
ipfix;ipfix;
javascript;js;8bit
json;json;8bit
lost+xml;lostxml;
mac-binhex40;hqx;8bit
mads+xml;mads;
marc;mrc;
marcxml+xml;mrcx;
mathematica;nb,nbp,ma,mb;
mathml+xml;mathml;
mbox;mbox;
mediaservercontrol+xml;mscml;
metalink4+xml;meta4;
mets+xml;mets;
mods+xml;mods;
mp21;m21;
mp4;mp4s;
msword;doc,dot,w6w,wiz,word;
mxf;mxf;
ocsp-request;orq;
ocsp-response;ors;
octet-stream;so,a,dump,lhx,saveme,zoo,bpk,deploy,dist,distz,lrf;base64
oda;oda;
ogg;ogx;
oxps;oxps;
patch-ops-error+xml;xer;
pdf;pdf;base64
pgp-encrypted;pgp;7bit
pgp-keys;key;7bit
pgp-signature;sig,pgp,asc;base64
pkcs10;p10;
pkcs7-mime;p7m,p7c;
pkcs7-signature;p7s;
pkcs8;p8;
pkix-attr-cert;ac;
pkix-cert;cer,crt;
pkix-crl;crl;
pkixcmp;pki;
pls+xml;pls;
postscript;ps-z,ps,ai,eps,epsi,epsf,eps2,eps3;base64
prs.cww;cw,cww;
prs.nprend;rnd,rct;
pskc+xml;pskcxml;
rdf+xml;rdf;8bit
reginfo+xml;rif;
relax-ng-compact-syntax;rnc;
resource-lists+xml;rl;
resource-lists-diff+xml;rld;
rls-services+xml;rs;
rpki-ghostbusters;gbr;
rpki-manifest;mft;
rpki-roa;roa;
rtf;rtf,rtx;8bit
sbml+xml;sbml;
scvp-cv-request;scq;
scvp-cv-response;scs;
scvp-vp-request;spq;
scvp-vp-response;spp;
sdp;sdp;
set-payment-initiation;setpay;
set-registration-initiation;setreg;
sgml-open-catalog;soc;
shf+xml;shf;
sieve;siv;
smil+xml;smi,smil;
smil;smi,smil;8bit
sparql-query;rq;
sparql-results+xml;srx;
srgs+xml;grxml;
srgs;gram;
sru+xml;sru;
ssml+xml;ssml;
tei+xml;tei;
thraud+xml;tfi;
timestamped-data;tsd;
vnd.3gpp.pic-bw-large;plb;
vnd.3gpp.pic-bw-small;psb;
vnd.3gpp.pic-bw-var;pvb;
vnd.3gpp.sms;sms;
vnd.3gpp2.tcap;tcap;
vnd.3m.post-it-notes;pwn;
vnd.accpac.simply.aso;aso;
vnd.accpac.simply.imp;imp;
vnd.acucobol;acu;
vnd.acucorp;atc,acutc;7bit
vnd.adobe.air-application-installer-package+zip;air;
vnd.adobe.formscentral.fcdt;fcdt;
vnd.adobe.fxp;fxp;
vnd.adobe.xdp+xml;xdp;
vnd.adobe.xfdf;xfdf;
vnd.ahead.space;ahead;
vnd.airzip.filesecure.azf;azf;
vnd.airzip.filesecure.azs;azs;
vnd.amazon.ebook;azw;
vnd.americandynamics.acc;acc;
vnd.amiga.ami;ami;
vnd.amiga.amu;ami;
vnd.android.package-archive;apk;
vnd.anser-web-certificate-issue-initiation;cii;
vnd.anser-web-funds-transfer-initiation;fti;
vnd.antix.game-component;atx;
vnd.apple.installer+xml;mpkg;
vnd.apple.mpegurl;m3u8;
vnd.arastra.swi;swi;
vnd.aristanetworks.swi;swi;
vnd.astraea-software.iota;iota;
vnd.audiograph;aep;
vnd.blueice.multipass;mpm;
vnd.bmi;bmi;
vnd.businessobjects;rep;
vnd.chemdraw+xml;cdxml;
vnd.chipnuts.karaoke-mmd;mmd;
vnd.cinderella;cdy;
vnd.claymore;cla;
vnd.cloanto.rp9;rp9;
vnd.clonk.c4group;c4g,c4d,c4f,c4p,c4u;
vnd.cluetrust.cartomobile-config-pkg;c11amz;
vnd.cluetrust.cartomobile-config;c11amc;
vnd.commonspace;csp;
vnd.contact.cmsg;cdbcmsg;
vnd.cosmocaller;cmc;
vnd.crick.clicker.keyboard;clkk;
vnd.crick.clicker.palette;clkp;
vnd.crick.clicker.template;clkt;
vnd.crick.clicker.wordbank;clkw;
vnd.crick.clicker;clkx;
vnd.criticaltools.wbs+xml;wbs;
vnd.ctc-posml;pml;
vnd.cups-ppd;ppd;
vnd.curl.car;car;
vnd.curl.pcurl;pcurl;
vnd.curl;curl;
vnd.dart;dart;
vnd.data-vision.rdz;rdz;
vnd.dece.data;uvf;
vnd.dece.ttml+xml;uvt;
vnd.dece.unspecified;uvx;
vnd.dece.zip;uvz;
vnd.denovo.fcselayout-link;fe_launch;
vnd.dna;dna;
vnd.dolby.mlp;mlp;
vnd.dpgraph;dpg;
vnd.dreamfactory;dfac;
vnd.ds-keypoint;kpxx;
vnd.dvb.ait;ait;
vnd.dvb.service;svc;
vnd.dynageo;geo;
vnd.ecowin.chart;mag;
vnd.enliven;nml;
vnd.epson.esf;esf;
vnd.epson.msf;msf;
vnd.epson.quickanime;qam;
vnd.epson.salt;slt;
vnd.epson.ssf;ssf;
vnd.eszigno3+xml;es3,et3;
vnd.ezpix-album;ez2;
vnd.ezpix-package;ez3;
vnd.fdf;fdf;
vnd.fdsn.mseed;mseed;
vnd.fdsn.seed;seed,dataless;
vnd.flographit;gph;
vnd.fluxtime.clip;ftc;
vnd.framemaker;fm,book,frame,maker;
vnd.frogans.fnc;fnc;
vnd.frogans.ltf;ltf;
vnd.fsc.weblauch;fsc;7bit
vnd.fsc.weblaunch;fsc;
vnd.fujitsu.oasys2;oa2;
vnd.fujitsu.oasys3;oa3;
vnd.fujitsu.oasys;oas;
vnd.fujitsu.oasysgp;fg5;
vnd.fujitsu.oasysprs;bh2;
vnd.fujixerox.ddd;ddd;
vnd.fujixerox.docuworks.binder;xbd;
vnd.fujixerox.docuworks;xdw;
vnd.fuzzysheet;fzs;
vnd.genomatix.tuxedo;txd;
vnd.geogebra.file;ggb;
vnd.geogebra.tool;ggt;
vnd.geometry-explorer;gex,gre;
vnd.geonext;gxt;
vnd.geoplan;g2w;
vnd.geospace;g3w;
vnd.gmx;gmx;
vnd.google-earth.kml+xml;kml;8bit
vnd.google-earth.kmz;kmz;8bit
vnd.grafeq;gqf,gqs;
vnd.groove-account;gac;
vnd.groove-help;ghf;
vnd.groove-identity-message;gim;
vnd.groove-injector;grv;
vnd.groove-tool-message;gtm;
vnd.groove-tool-template;tpl;
vnd.groove-vcard;vcg;
vnd.hal+xml;hal;
vnd.handheld-entertainment+xml;zmm;
vnd.hbci;hbci,hbc,kom,upa,pkd,bpd;
vnd.hhe.lesson-player;les;
vnd.hp-hpgl;plt,hpgl,hgl,hpg;
vnd.hp-hpid;hpid;
vnd.hp-hps;hps;
vnd.hp-jlyt;jlt;
vnd.hp-pcl;pcl;
vnd.hp-pclxl;pclxl;
vnd.hydrostatix.sof-data;sfd-hdstx;
vnd.hzn-3d-crossword;x3d;
vnd.ibm.electronic-media;emm;
vnd.ibm.minipay;mpy;
vnd.ibm.modcap;afp,list3820,listafp;
vnd.ibm.rights-management;irm;
vnd.ibm.secure-container;sc;
vnd.iccprofile;icc,icm;
vnd.igloader;igl;
vnd.immervision-ivp;ivp;
vnd.immervision-ivu;ivu;
vnd.insors.igm;igm;
vnd.intercon.formnet;xpw,xpx;
vnd.intergeo;i2g;
vnd.intu.qbo;qbo;
vnd.intu.qfx;qfx;
vnd.ipunplugged.rcprofile;rcprofile;
vnd.irepository.package+xml;irp;
vnd.is-xpr;xpr;
vnd.isac.fcs;fcs;
vnd.jam;jam;
vnd.jcp.javame.midlet-rms;rms;
vnd.jisp;jisp;
vnd.joost.joda-archive;joda;
vnd.kahootz;ktz,ktr;
vnd.kde.karbon;karbon;
vnd.kde.kchart;chrt;
vnd.kde.kformula;kfo;
vnd.kde.kivio;flw;
vnd.kde.kontour;kon;
vnd.kde.kpresenter;kpr,kpt;
vnd.kde.kspread;ksp;
vnd.kde.kword;kwd,kwt;
vnd.kenameaapp;htke;
vnd.kenameapp;htke;
vnd.kidspiration;kia;
vnd.kinar;kne,knp;
vnd.koan;skp,skd,skm,skt;
vnd.kodak-descriptor;sse;
vnd.las.las+xml;lasxml;
vnd.llamagraphics.life-balance.desktop;lbd;
vnd.llamagraphics.life-balance.exchange+xml;lbe;
vnd.lotus-1-2-3;wks,123;
vnd.lotus-approach;apr;
vnd.lotus-freelance;pre;
vnd.lotus-notes;nsf;
vnd.lotus-organizer;org;
vnd.lotus-screencam;scm;
vnd.lotus-wordpro;lwp;
vnd.macports.portpkg;portpkg;
vnd.mcd;mcd;
vnd.medcalcdata;mc1;
vnd.mediastation.cdkey;cdkey;
vnd.mfer;mwf;
vnd.mfmp;mfm;
vnd.micrografx.flo;flo;
vnd.micrografx.igx;igx;
vnd.mif;mif;
vnd.mobius.daf;daf;
vnd.mobius.dis;dis;
vnd.mobius.mbk;mbk;
vnd.mobius.mqy;mqy;
vnd.mobius.msl;msl;
vnd.mobius.plc;plc;
vnd.mobius.txf;txf;
vnd.mophun.application;mpn;
vnd.mophun.certificate;mpc;
vnd.mozilla.xul+xml;xul;
vnd.ms-artgalry;cil;
vnd.ms-asf;asf;
vnd.ms-cab-compressed;cab;
vnd.ms-excel.addin.macroenabled.12;xlam;
vnd.ms-excel.sheet.binary.macroenabled.12;xlsb;
vnd.ms-excel.sheet.macroenabled.12;xlsm;
vnd.ms-excel.template.macroenabled.12;xltm;
vnd.ms-excel;xls,xlt,xlb,xla,xlc,xll,xlm,xlw;base64
vnd.ms-fontobject;eot;
vnd.ms-htmlhelp;chm;
vnd.ms-ims;ims;
vnd.ms-lrm;lrm;
vnd.ms-officetheme;thmx;
vnd.ms-pki.certstore;sst;
vnd.ms-pki.pko;pko;
vnd.ms-pki.seccat;cat;
vnd.ms-pki.stl;stl;
vnd.ms-powerpoint.addin.macroenabled.12;ppam;
vnd.ms-powerpoint.presentation.macroenabled.12;pptm;
vnd.ms-powerpoint.slide.macroenabled.12;sldm;
vnd.ms-powerpoint.slideshow.macroenabled.12;ppsm;
vnd.ms-powerpoint.template.macroenabled.12;potm;
vnd.ms-powerpoint;ppt,pps,pot,ppa,pwz;base64
vnd.ms-project;mpp,mpt;base64
vnd.ms-word.document.macroenabled.12;docm;
vnd.ms-word.template.macroenabled.12;dotm;
vnd.ms-works;wps,wcm,wdb,wks;base64
vnd.ms-wpl;wpl;base64
vnd.ms-xpsdocument;xps;8bit
vnd.mseq;mseq;
vnd.musician;mus;
vnd.muvee.style;msty;
vnd.mynfc;taglet;
vnd.nervana;ent,entity,req,request,bkm,kcm;
vnd.neurolanguage.nlu;nlu;
vnd.nitf;ntf;
vnd.noblenet-directory;nnd;
vnd.noblenet-sealer;nns;
vnd.noblenet-web;nnw;
vnd.nokia.configuration-message;ncm;
vnd.nokia.n-gage.data;ngdat;
vnd.nokia.n-gage.symbian.install;n-gage;
vnd.nokia.radio-preset;rpst;
vnd.nokia.radio-presets;rpss;
vnd.nokia.ringing-tone;rng;
vnd.novadigm.edm;edm;
vnd.novadigm.edx;edx;
vnd.novadigm.ext;ext;
vnd.oasis.opendocument.chart-template;otc;
vnd.oasis.opendocument.chart;odc;
vnd.oasis.opendocument.database;odb;
vnd.oasis.opendocument.formula-template;odft;
vnd.oasis.opendocument.formula;odf;
vnd.oasis.opendocument.graphics-template;otg;
vnd.oasis.opendocument.graphics;odg;
vnd.oasis.opendocument.image-template;oti;
vnd.oasis.opendocument.image;odi;
vnd.oasis.opendocument.presentation-template;otp;
vnd.oasis.opendocument.presentation;odp;
vnd.oasis.opendocument.spreadsheet-template;ots;
vnd.oasis.opendocument.spreadsheet;ods;
vnd.oasis.opendocument.text-master;odm,otm;
vnd.oasis.opendocument.text-template;ott;
vnd.oasis.opendocument.text-web;oth;
vnd.oasis.opendocument.text;odt;
vnd.olpc-sugar;xo;
vnd.oma.dd2+xml;dd2;
vnd.openofficeorg.extension;oxt;
vnd.openxmlformats-officedocument.presentationml.presentation;pptx;base64
vnd.openxmlformats-officedocument.presentationml.slide;sldx;
vnd.openxmlformats-officedocument.presentationml.slideshow;ppsx;base64
vnd.openxmlformats-officedocument.presentationml.template;potx;base64
vnd.openxmlformats-officedocument.spreadsheetml.sheet;xlsx;base64
vnd.openxmlformats-officedocument.spreadsheetml.template;xltx;base64
vnd.openxmlformats-officedocument.wordprocessingml.document;docx;base64
vnd.openxmlformats-officedocument.wordprocessingml.template;dotx;base64
vnd.osgeo.mapguide.package;mgp;
vnd.osgi.dp;dp;
vnd.osgi.subsystem;esa;
vnd.palm;prc,pdb,pqa,oprc;
vnd.pawaafile;paw;
vnd.pg.format;str;
vnd.pg.osasli;ei6;
vnd.picsel;efif;
vnd.pmi.widget;wg;
vnd.pocketlearn;plf;
vnd.powerbuilder6;pbd;
vnd.previewsystems.box;box;
vnd.proteus.magazine;mgz;
vnd.publishare-delta-tree;qps;
vnd.pvi.ptid1;pti,ptid;
vnd.quark.quarkxpress;qxd,qxt,qwd,qwt,qxl,qxb;8bit
vnd.realvnc.bed;bed;
vnd.recordare.musicxml+xml;musicxml;
vnd.recordare.musicxml;mxl;
vnd.rig.cryptonote;cryptonote;
vnd.rim.cod;cod;
vnd.rn-realmedia-vbr;rmvb;
vnd.rn-realmedia;rm;
vnd.rn-realplayer;rnx;
vnd.route66.link66+xml;link66;
vnd.sailingtracker.track;st;
vnd.sealed.doc;sdoc,sdo,s1w;
vnd.sealed.eml;seml,sem;
vnd.sealed.mht;smht,smh;
vnd.sealed.ppt;sppt,spp,s1p;
vnd.sealed.xls;sxls,sxl,s1e;
vnd.sealedmedia.softseal.html;stml,stm,s1h;
vnd.sealedmedia.softseal.pdf;spdf,spd,s1a;
vnd.seemail;see;
vnd.sema;sema;
vnd.semd;semd;
vnd.semf;semf;
vnd.shana.informed.formdata;ifm;
vnd.shana.informed.formtemplate;itp;
vnd.shana.informed.interchange;iif;
vnd.shana.informed.package;ipk;
vnd.simtech-mindmapper;twd,twds;
vnd.smaf;mmf;
vnd.smart.teacher;teacher;
vnd.solent.sdkm+xml;sdkm,sdkd;
vnd.spotfire.dxp;dxp;
vnd.spotfire.sfs;sfs;
vnd.stardivision.calc;sdc;
vnd.stardivision.chart;sds;
vnd.stardivision.draw;sda;
vnd.stardivision.impress;sdd;
vnd.stardivision.math;sdf,smf;
vnd.stardivision.writer-global;sgl;
vnd.stardivision.writer;sdw,vor;
vnd.stepmania.package;smzip;
vnd.stepmania.stepchart;sm;
vnd.sun.xml.calc.template;stc;
vnd.sun.xml.calc;sxc;
vnd.sun.xml.draw.template;std;
vnd.sun.xml.draw;sxd;
vnd.sun.xml.impress.template;sti;
vnd.sun.xml.impress;sxi;
vnd.sun.xml.math;sxm;
vnd.sun.xml.writer.global;sxg;
vnd.sun.xml.writer.template;stw;
vnd.sun.xml.writer;sxw;
vnd.sus-calendar;sus,susp;
vnd.svd;svd;
vnd.symbian.install;sis,sisx;
vnd.syncml+xml;xsm;
vnd.syncml.dm+wbxml;bdm;
vnd.syncml.dm+xml;xdm;
vnd.tao.intent-module-archive;tao;
vnd.tcpdump.pcap;pcap;
vnd.tmobile-livetv;tmo;
vnd.trid.tpt;tpt;
vnd.triscape.mxs;mxs;
vnd.trueapp;tra;
vnd.ufdl;ufd,ufdl;
vnd.uiq.theme;utz;
vnd.umajin;umj;
vnd.unity;unityweb;
vnd.uoml+xml;uoml;
vnd.vcx;vcx;
vnd.vidsoft.vidconference;vsc;8bit
vnd.visio;vsd,vst,vsw,vss;
vnd.visionary;vis;
vnd.vsf;vsf;
vnd.wap.sic;sic;
vnd.wap.slc;slc;
vnd.wap.wbxml;wbxml;
vnd.wap.wmlc;wmlc;
vnd.wap.wmlscriptc;wmlsc;
vnd.webturbo;wtb;
vnd.wolfram.player;nbp;
vnd.wordperfect5.1;wp5;
vnd.wordperfect;wpd;
vnd.wqd;wqd;
vnd.wt.stf;stf;
vnd.wv.csp+wbxml;wv;
vnd.xara;xar,web;
vnd.xfdl;xfdl;
vnd.yamaha.hv-dic;hvd;
vnd.yamaha.hv-script;hvs;
vnd.yamaha.hv-voice;hvp;
vnd.yamaha.openscoreformat.osfpvg+xml;osfpvg;
vnd.yamaha.openscoreformat;osf;
vnd.yamaha.smaf-audio;saf;
vnd.yamaha.smaf-phrase;spf;
vnd.yellowriver-custom-menu;cmp;
vnd.zul;zir,zirz;
vnd.zzazz.deck+xml;zaz;
voicexml+xml;vxml;
watcherinfo+xml;wif;
widget;wgt;
wordperfect5.1;wp5,wp;
wsdl+xml;wsdl;
wspolicy+xml;wspolicy;
xcap-diff+xml;xdf;
xenc+xml;xenc;
xhtml+xml;xhtml,xht;8bit
xml-dtd;dtd;8bit
xml;xml,xsl,xsd,xpdl;8bit
xop+xml;xop;
xslt+xml;xslt;8bit
xv+xml;mxml,xhvml,xvm,xvml;
yang;yang;
yin+xml;yin;
zip;zip;base64

16:audio::
x-eac3;;
x-evrc1;;
x-evrcb0;;
x-evrcb1;;
x-evrcb;;
x-evrcwb0;;
x-evrcwb1;;
x-evrcwb;;
x-example;;
x-g.722.1;;
x-g7291;;
x-isac;;
x-musepack;;
x-opus;;
x-red;;
x-tta;;

43:audio::E
x-aac;aac;
x-adpcm;adp,snd;
x-aiff;aif,aifc,aiff;base64
x-annodex;axa;
x-au;au;
x-caf;caf;
x-flac;flac;
x-gsm;gsm,gsd;
x-it;it;
x-jam;jam;
x-liveaudio;lam;
x-make.my.funk;pfunk;
x-make;funk,my,pfunk;
x-matroska;mka;
x-mid;mid,midi,rmi;
x-midi;mid,midi,kar,rmi;base64
x-mod;mod;
x-mpeg-3;mp3;
x-mpeg3;mp3;
x-mpeg;mp2;
x-mpegurl;m3u;
x-mpequrl;m3u;
x-ms-wax;wax;
x-ms-wma;wma;
x-nspaudio;la,lma;
x-pn-realaudio-plugin;rpm,rmp,ra;
x-pn-realaudio;rm,ram,ra,rmm,rmp;base64
x-psid;sid;
x-realaudio;ra;base64
x-s3m;s3m;
x-scpls;pls;
x-sd2;sd2;
x-silk;sil;
x-tsp-audio;tsi;
x-tsplayer;tsp;
x-twinvq-plugin;vqe,vql;
x-twinvq;vqf;
x-vnd.audioexplosion.mjuicemediafile;mjf;
x-voc;voc;
x-voxware;vox;
x-wav;wav;base64
x-webm;weba;base64
x-xm;xm;

100:audio:I:
1d-interleaved-parityfec;;
32kadpcm;;
3gpp2;;
3gpp;;
ac3;;
amr-wb+;;
asc;;
atrac-advanced-lossless;;
atrac-x;;
atrac3;;
bv16;;
bv32;;
clearmode;;
cn;;
dat12;;
dls;;
dsr-es201108;;
dsr-es202050;;
dsr-es202211;;
dsr-es202212;;
dv;;
dvi4;;
encaprtp;;
evrc-qcp;;
evrc0;;
evrcnw0;;
evrcnw1;;
evrcnw;;
fwdred;;
g719;;
g7221;;
g722;;
g723;;
g726-16;;
g726-24;;
g726-32;;
g726-40;;
g728;;
g729;;
g729d;;
g729e;;
gsm-efr;;
gsm-hr-08;;
gsm;;
ilbc;;
ip-mr_v2.5;;
l20;;
l24;;
l8;;
lpc;;
mobile-xmf;;
mp4a-latm;;
mpa-robust;;
mpa;;
mpeg4-generic;;
parityfec;;
pcma-wb;;
pcma;;
pcmu-wb;;
pcmu;;
raptorfec;;
rtp-enc-aescm128;;
rtp-midi;;
rtploopback;;
rtx;;
smv-qcp;;
smv0;;
sp-midi;;
speex;;
t140c;;
t38;;
telephone-event;;
tone;;
uemclip;;
ulpfec;;
vdvi;;
vmr-wb;;
vnd.3gpp.iufp;;
vnd.4sb;;
vnd.celp;;
vnd.cisco.nse;;
vnd.cmles.radio-events;;
vnd.cns.anp1;;
vnd.cns.inf1;;
vnd.dlna.adts;;
vnd.dolby.heaac.1;;
vnd.dolby.heaac.2;;
vnd.dolby.mlp;;
vnd.dolby.mps;;
vnd.dolby.pl2;;
vnd.dolby.pl2x;;
vnd.dolby.pl2z;;
vnd.dolby.pulse.1;;
vnd.dvb.file;;
vnd.hns.audio;;
vnd.octel.sbc;;
vnd.rhetorex.32kadpcm;;
vnd.vmx.cvsd;;
vorbis-config;;
vorbis;;

28:audio:I:E
amr-wb;awb;base64
amr;amr;base64
basic;au,snd;base64
evrc;evc;
l16;l16;
mp4;f4a,f4b,mp4a;
mpeg;mpga,mp2,mp3,mpega,m4a,m2a,mpa,mpg,m3a,mp2a;base64
ogg;ogg,oga,spx;
prs.sid;sid,psid;
qcelp;qcp;
smv;smv;
vnd.audiokoz;koz;
vnd.dece.audio;uva;
vnd.digital-winds;eol;7bit
vnd.dra;dra;
vnd.dts.hd;dtshd;
vnd.dts;dts;
vnd.everad.plj;plj;
vnd.lucent.voice;lvp;
vnd.ms-playready.media.pya;pya;
vnd.nokia.mobile-xmf;mxmf;
vnd.nortel.vbk;vbk;
vnd.nuera.ecelp4800;ecelp4800;
vnd.nuera.ecelp7470;ecelp7470;
vnd.nuera.ecelp9600;ecelp9600;
vnd.qcelp;qcp;
vnd.rip;rip;
vnd.sealedmedia.softseal.mpeg;smp3,smp,s1m;

1:image::
x-example;;

49:image::E
x-3ds;3ds;
x-bmp;bmp,bm;
x-canon-cr2;cr2;
x-canon-crw;crw;
x-cmu-raster;ras,rast;
x-cmx;cmx;
x-coreldraw;cdr;
x-coreldrawpattern;pat;
x-coreldrawtemplate;cdt;
x-corelphotopaint;cpt;
x-dwg;dwg,dxf,svf;
x-epson-erf;erf;
x-fif;fif;
x-florian;flo,turbot;
x-freehand;fh,fh4,fh5,fh7,fhc;
x-icon;ico;
x-jg;art;
x-jng;jng;
x-jps;jps;
x-jutvision;jut;
x-mrsid-image;sid;
x-ms-bmp;bmp;
x-niff;nif,niff;
x-nikon-nef;nef;
x-olympus-orf;orf;
x-pcx;pcx;
x-photoshop;psd;
x-pict;pic,pct,pict;
x-pjpeg;jfif,jpe,jpeg,jpg;
x-portable-anymap;pnm;base64
x-portable-bitmap;pbm;base64
x-portable-graymap;pgm;base64
x-portable-greymap;pgm;
x-portable-pixmap;ppm;base64
x-quicktime;qif,qti,qtif;
x-rgb;rgb;base64
x-sgi;sgi;
x-targa;tga;
x-tga;tga;
x-tiff;tif,tiff;
x-vasa;mcf;
x-webp;webp;
x-windows-bmp;bmp;
x-xbitmap;xbm;7bit
x-xbm;xbm;
x-xpixmap;xpm,pm;8bit
x-xpm;xpm;
x-xwd;xwd;
x-xwindowdump;xwd;base64

11:image:I:
fits;;
prs.pti;;
pwg-raster;;
t38;;
tiff-fx;;
vnd.airzip.accelerator.azv;;
vnd.cns.inf2;;
vnd.globalgraphics.pgb;;
vnd.mix;;
vnd.radiance;;
vnd.svf;;

38:image:I:E
cgm;cgm;
g3fax;g3;
gif;gif;base64
ief;ief,iefs;base64
jp2;jp2,jpg2;base64
jpeg;jpeg,jpg,jpe,jfif,jfif-tbnl;base64
jpm;jpm,jpgm;
jpx;jpf,jpx;
ktx;ktx;
naplps;nap,naplps;
png;png,x-png;base64
prs.btif;btif;
svg+xml;svg,svgz;8bit
tiff;tiff,tif;base64
vnd.adobe.photoshop;psd;
vnd.dece.graphic;uvi;
vnd.dgn;dgn;
vnd.djvu;djvu,djv;
vnd.dvb.subtitle;sub;
vnd.dwg;dwg,dxf,svf;
vnd.dxf;dxf;
vnd.fastbidsheet;fbs;
vnd.fpx;fpx;
vnd.fst;fst;
vnd.fujixerox.edmics-mmr;mmr;
vnd.fujixerox.edmics-rlc;rlc;
vnd.glocalgraphics.pgb;pgb;
vnd.microsoft.icon;ico;
vnd.ms-modi;mdi;
vnd.ms-photo;wdp;
vnd.net-fpx;npx,fpx;
vnd.rn-realflash;rf;
vnd.rn-realpix;rp;
vnd.sealed.png;spng,spn,s1n;
vnd.sealedmedia.softseal.gif;sgif,sgi,s1g;
vnd.sealedmedia.softseal.jpg;sjpg,sjp,s1j;
vnd.wap.wbmp;wbmp;
vnd.xiff;xif;

1:message::
x-example;;

18:message:I:
cpim;;
delivery-status;;
disposition-notification;;
external-body;;8bit
feedback-report;;
global-delivery-status;;
global-disposition-notification;;
global-headers;;
global;;
http;;
imdn+xml;;
news;;8bit
partial;;8bit
s-http;;
sip;;
sipfrag;;
tracking-status;;
vnd.si.simp;;

1:message:I:E
rfc822;eml,mht,mhtml,mime,nws;8bit

1:model::
x-example;;

4:model::E
x-pov;pov;
x-x3d+binary;x3db;
x-x3d+vrml;x3dv;
x-x3d+xml;x3d;

4:model:I:
vnd.flatland.3dml;;
vnd.gs-gdl;;
vnd.gs.gdl;;
vnd.moml+xml;;

11:model:I:E
iges;igs,iges;
mesh;msh,mesh,silo;
vnd.collada+xml;dae;
vnd.dwf;dwf;
vnd.gdl;gdl;
vnd.gtw;gtw;
vnd.mts;mts;
vnd.parasolid.transmit.binary;x_b,xmt_bin;
vnd.parasolid.transmit.text;x_t,xmt_txt;quoted-printable
vnd.vtu;vtu;
vrml;wrl,vrml,wrz;

4:multipart::
x-example;;
x-mixed-replace;;
x-tar;;
x-www-form-urlencoded;;

3:multipart::E
x-gzip;gzip;
x-ustar;ustar;
x-zip;zip;

13:multipart:I:
alternative;;8bit
appledouble;;8bit
byteranges;;
digest;;8bit
encrypted;;
form-data;;
header-set;;
mixed;;8bit
parallel;;8bit
related;;
report;;
signed;;
voice-message;;

5:text::
x-comma-separated-values;;8bit
x-crontab;;
x-english;;
x-example;;
x-makefile;;

65:text::E
x-asm;s,asm;
x-asp;asp;
x-audiosoft-intra;aip;
x-bibtex;bib;
x-boo;boo;
x-c++hdr;h++,hpp,hxx,hh;
x-c++src;c++,cpp,cxx,cc;
x-c;c,cc,cpp,cxx,dic,h,hh;
x-cache-manifest;manifest,appcache;
x-chdr;h;
x-component;htc;8bit
x-csh;csh;
x-csrc;c;
x-diff;diff,patch;
x-dsrc;d;
x-fortran;f,f77,f90,for;
x-h323;323;
x-h;h,hh;
x-haskell;hs;
x-iuls;uls;
x-java-source;java,jav;
x-java;java;
x-la-asf;lsx;
x-literate-haskell;lhs;
x-m;m;
x-mathml;mml;
x-mcf;mcf;
x-moc;moc;
x-nfo;nfo;
x-opml;opml;
x-pascal;p,pas;
x-pcs-gcd;gcd;
x-python;py;
x-scala;scala;
x-scriplet;wsc;
x-script.csh;csh;
x-script.elisp;el;
x-script.guile;scm;
x-script.ksh;ksh;
x-script.lisp;lsp;
x-script.perl-module;pm;
x-script.perl;pl;
x-script.phyton;py;
x-script.rexx;rexx;
x-script.scheme;scm;
x-script.sh;sh;
x-script.tcl;tcl;
x-script.tcsh;tcsh;
x-script.zsh;zsh;
x-script;hlb;
x-scriptlet;sct,wsc;
x-server-parsed-html;shtml,ssi;
x-setext;etx;
x-sfv;sfv;
x-sgml;sgml,sgm;8bit
x-sh;sh;
x-speech;spc,talk;
x-tcl;tcl,tk;
x-tex;tex,ltx,sty,cls;
x-texmacs;tm,ts;
x-uil;uil;
x-uuencode;uu,uue;
x-vcalendar;vcs;8bit
x-vcard;vcf;8bit
x-webviewhtml;htt;

31:text:I:
1d-interleaved-parityfec;;
directory;;
dns;;
encaprtp;;
enriched;;
fwdred;;
grammar-ref-list;;
mizar;;
parityfec;;
provenance-notation;;
raptorfec;;
red;;
rfc822-headers;;
rtp-enc-aescm128;;
rtploopback;;
rtx;;
t140;;
ulpfec;;
vnd.debian.copyright;;
vnd.dmclientscript;;
vnd.esmertec.theme-descriptor;;
vnd.flatland.3dml;;
vnd.iptc.newsml;;
vnd.iptc.nitf;;
vnd.latex-z;;
vnd.motorola.reflex;;
vnd.ms-mediapackage;;
vnd.radisys.msml-basic-layout;;
vnd.si.uricatalogue;;
vnd.trolltech.linguist;;
xml-external-parsed-entity;;

37:text:I:E
calendar;ics,icz,ifb;
css;css;8bit
csv;csv;8bit
ecmascript;js;
html;html,htm,htmlx,shtml,htx,acgi,htmls;8bit
javascript;js;
n3;n3;
plain;txt,brf,conf,def,g,idc,list,log,lst,mar,sdml,in;8bit
prs.fallenstein.rst;rst;
prs.lines.tag;dsc;
richtext;rtx,rt,rtf;8bit
rtf;rtf;8bit
sgml;sgml,sgm;
tab-separated-values;tsv;
troff;t,man,me,ms,roff,tr;
turtle;ttl;
uri-list;uri,uni,unis,uris,urls;
vcard;vcard;
vnd.abc;abc;
vnd.curl.dcurl;dcurl;
vnd.curl.mcurl;mcurl;
vnd.curl.scurl;scurl;
vnd.curl;curl;
vnd.dvb.subtitle;sub;
vnd.fly;fly;
vnd.fmi.flexstor;flx;
vnd.graphviz;gv;
vnd.in3d.3dml;3dml;
vnd.in3d.spot;spot;
vnd.net2phone.commcenter.command;ccc;
vnd.rn-realtext;rt;
vnd.sun.j2me.app-descriptor;jad;8bit
vnd.wap.si;si;
vnd.wap.sl;sl;
vnd.wap.wml;wml;
vnd.wap.wmlscript;wmls;
xml;xml;

1:video::
x-example;;

38:video::E
x-amt-demorun;xdr;
x-amt-showrun;xsr;
x-animaflex;afl;
x-annodex;axv;
x-atomic3d-feature;fmf;
x-avi;avi;
x-avs-video;avs;
x-dl;dl;base64
x-dv;dif,dv;
x-f4v;f4v;
x-fli;fli;base64
x-flv;flv;base64
x-gl;gl;base64
x-isvideo;isu;
x-jpm;jpm,jpgm;
x-la-asf;lsf,lsx;
x-m4v;m4v;
x-matroska;mpv,mkv;
x-mng;mng;
x-motion-jpeg;mjpg;
x-mpeg;mp2,mp3;
x-mpeq2a;mp2;
x-ms-asf-plugin;asx;
x-ms-asf;asf,asx;
x-ms-vob;vob;
x-ms-wm;wm;
x-ms-wmv;wmv;
x-ms-wmx;wmx;
x-ms-wvx;wvx;
x-msvideo;avi;base64
x-qtc;qtc;
x-scm;scm;
x-sgi-movie;movie,mv;base64
x-smv;smv;
x-vdo;vdo;
x-vivo;viv,vivo;
x-vosaic;vos;
x-webm;webm;base64

46:video:I:
1d-interleaved-parityfec;;
3gpp-tt;;
bmpeg;;
bt656;;
celb;;
encaprtp;;
h263-1998;;
h263-2000;;
h264-rcdo;;
h264-svc;;
jpeg2000;;
mp1s;;
mp2p;;
mp2t;;
mp4v-es;;
mpeg4-generic;;
mpv;;
nv;;
parityfec;;
pointer;;
raptorfec;;
raw;;
rtp-enc-aescm128;;
rtploopback;;
rtx;;
smpte292m;;
ulpfec;;
vc1;;
vnd.cctv;;
vnd.dece.mp4;;
vnd.directv.mpeg-tts;;
vnd.directv.mpeg;;
vnd.dlna.mpeg-tts;;
vnd.hns.video;;
vnd.iptvforum.1dparityfec-1010;;
vnd.iptvforum.1dparityfec-2005;;
vnd.iptvforum.2dparityfec-1010;;
vnd.iptvforum.2dparityfec-2005;;
vnd.iptvforum.ttsavc;;
vnd.iptvforum.ttsmpeg2;;
vnd.motorola.video;;
vnd.motorola.videop;;
vnd.mts;;
vnd.nokia.videovoip;;
vnd.radgamettools.bink;;
vnd.radgamettools.smacker;;

30:video:I:E
3gpp2;3g2,3gpp2;base64
3gpp;3gp,3gpp;base64
dv;dif,dv;
h261;h261;
h263;h263;
h264;h264;
jpeg;jpgv;
mj2;mj2,mjp2;
mp4;mp4,f4v,f4p,mp4v,mpg4;
mpeg;mp2,mpe,mpeg,mpg,m1v,m2v,mp3,mpa;base64
ogg;ogv;
quicktime;qt,mov,moov;base64
vnd.dece.hd;uvh;
vnd.dece.mobile;uvm;
vnd.dece.pd;uvp;
vnd.dece.sd;uvs;
vnd.dece.video;uvv;
vnd.dvb.file;dvb;
vnd.fvt;fvt;
vnd.mpegurl;mxu,m4u;8bit
vnd.ms-playready.media.pyv;pyv;
vnd.nokia.interleaved-multimedia;nim;
vnd.objectvideo;mp4;
vnd.rn-realvideo;rv;
vnd.sealed.mpeg1;s11;
vnd.sealed.mpeg4;smpg,s14;
vnd.sealed.swf;sswf,ssw;
vnd.sealedmedia.softseal.mov;smov,smo,s1q;
vnd.uvvu.mp4;uvu;
vnd.vivo;viv,vivo;

54:x-chemical::E
x-alchemy;alc;
x-cache-csf;csf;
x-cache;cac,cache;
x-cactvs-binary;cbin,cascii,ctab;
x-cdx;cdx;
x-cerius;cer;
x-chem3d;c3d;
x-chemdraw;chm;
x-cif;cif;
x-cmdf;cmdf;
x-cml;cml;
x-compass;cpa;
x-crossfire;bsd;
x-csml;csml,csm;
x-ctx;ctx;
x-cxf;cxf,cef;
x-embl-dl-nucleotide;emb,embl;
x-galactic-spc;spc;
x-gamess-input;inp,gam,gamin;
x-gaussian-checkpoint;fch,fchk;
x-gaussian-cube;cub;
x-gaussian-input;gau,gjc,gjf;
x-gaussian-log;gal;
x-gcg8-sequence;gcg;
x-genbank;gen;
x-hin;hin;
x-isostar;istr,ist;
x-jcamp-dx;jdx,dx;
x-kinemage;kin;
x-macmolecule;mcm;
x-macromodel-input;mmd,mmod;
x-mdl-molfile;mol;
x-mdl-rdfile;rd;
x-mdl-rxnfile;rxn;
x-mdl-sdfile;sd,sdf;
x-mdl-tgf;tgf;
x-mmcif;mcif;
x-mol2;mol2;
x-molconn-z;b;
x-mopac-graph;gpt;
x-mopac-input;mop,mopcrt,mpc,zmt;
x-mopac-out;moo;
x-mopac-vib;mvb;
x-ncbi-asn1-ascii;prt,ent;
x-ncbi-asn1-binary;val,aso;
x-ncbi-asn1-spec;asn;
x-ncbi-asn1;asn;
x-pdb;pdb,ent,xyz;
x-rosdal;ros;
x-swissprot;sw;
x-vamas-iso14976;vms;
x-vmd;vmd;
x-xtel;xtel;
x-xyz;xyz;

1:x-conference::E
x-cooltalk;ice;

1:x-drawing::E
x-dwf;dwf;

1:x-epoc::E
x-sisx-app;sisx;

1:x-i-world::E
x-i-vrml;ivr;

6:x-inode::
x-blockdevice;;
x-chardevice;;
x-directory-locked;;
x-directory;;
x-fifo;;
x-socket;;

3:x-music::E
x-crescendo;mid,midi;
x-karaoke;kar;
x-midi;mid,midi;

1:x-paleovu::E
x-pv;pvu;

1:x-windows::E
x-metafile;wmf;

4:x-world::E
x-3dmf;3dm,3dmf,qd3,qd3d;
x-svr;svr;
x-vrml;wrl,vrml,vrm,wrz;
x-vrt;vrt;

1:x-www::E
x-mime;mime;

2:x-xgl::E
x-drawing;xgz;
x-movie;xmz;