@allthings/sdk 6.2.0-9 → 6.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1133 -85
- package/dist/lib.cjs.js +1135 -88
- package/dist/lib.esm.js +1135 -88
- package/dist/lib.umd.min.js +1 -43
- package/dist/src/aws/parameterStore.test.d.ts +1 -0
- package/package.json +14 -10
- package/dist/test/constants.js +0 -16
- package/dist/test/helpers.js +0 -55
package/dist/lib.cjs.js
CHANGED
|
@@ -12,7 +12,7 @@ var require$$4 = require('https');
|
|
|
12
12
|
var require$$5 = require('url');
|
|
13
13
|
var require$$6 = require('fs');
|
|
14
14
|
|
|
15
|
-
const version = "6.2.
|
|
15
|
+
const version = "6.2.1";
|
|
16
16
|
|
|
17
17
|
const REST_API_URL = 'https://api.allthings.me';
|
|
18
18
|
const OAUTH_URL = 'https://accounts.allthings.me';
|
|
@@ -61,7 +61,7 @@ const getSecrets = async (ssm, config, params, defaultValue) => {
|
|
|
61
61
|
}
|
|
62
62
|
try {
|
|
63
63
|
const parameters = await ssm.send(new clientSsm.GetParametersCommand({
|
|
64
|
-
Names: params.map((param) => config.prefix
|
|
64
|
+
Names: params.map((param) => `${config.prefix ? config.prefix : ''}${param}`),
|
|
65
65
|
WithDecryption: true,
|
|
66
66
|
}));
|
|
67
67
|
return ((_b = (_a = parameters === null || parameters === void 0 ? void 0 : parameters.Parameters) === null || _a === void 0 ? void 0 : _a.map((parameter) => { var _a; return (_a = parameter.Value) !== null && _a !== void 0 ? _a : defaultValue; })) !== null && _b !== void 0 ? _b : [defaultValue]);
|
|
@@ -75,13 +75,12 @@ const getSecrets = async (ssm, config, params, defaultValue) => {
|
|
|
75
75
|
};
|
|
76
76
|
const getSecret = async (ssm, config, param, defaultValue) => {
|
|
77
77
|
var _a, _b;
|
|
78
|
-
console.log(config, param, { defaultValue });
|
|
79
78
|
if (config.onlyDefault) {
|
|
80
79
|
return defaultValue;
|
|
81
80
|
}
|
|
82
81
|
try {
|
|
83
82
|
const parameter = await ssm.send(new clientSsm.GetParameterCommand({
|
|
84
|
-
Name: config.prefix
|
|
83
|
+
Name: `${config.prefix ? config.prefix : ''}${param}`,
|
|
85
84
|
WithDecryption: true,
|
|
86
85
|
}));
|
|
87
86
|
return (_b = (_a = parameter === null || parameter === void 0 ? void 0 : parameter.Parameter) === null || _a === void 0 ? void 0 : _a.Value) !== null && _b !== void 0 ? _b : defaultValue;
|
|
@@ -1246,14 +1245,26 @@ var require$$0 = {
|
|
|
1246
1245
|
},
|
|
1247
1246
|
"application/3gpdash-qoe-report+xml": {
|
|
1248
1247
|
source: "iana",
|
|
1248
|
+
charset: "UTF-8",
|
|
1249
1249
|
compressible: true
|
|
1250
1250
|
},
|
|
1251
1251
|
"application/3gpp-ims+xml": {
|
|
1252
1252
|
source: "iana",
|
|
1253
1253
|
compressible: true
|
|
1254
|
+
},
|
|
1255
|
+
"application/3gpphal+json": {
|
|
1256
|
+
source: "iana",
|
|
1257
|
+
compressible: true
|
|
1258
|
+
},
|
|
1259
|
+
"application/3gpphalforms+json": {
|
|
1260
|
+
source: "iana",
|
|
1261
|
+
compressible: true
|
|
1254
1262
|
},
|
|
1255
1263
|
"application/a2l": {
|
|
1256
1264
|
source: "iana"
|
|
1265
|
+
},
|
|
1266
|
+
"application/ace+cbor": {
|
|
1267
|
+
source: "iana"
|
|
1257
1268
|
},
|
|
1258
1269
|
"application/activemessage": {
|
|
1259
1270
|
source: "iana"
|
|
@@ -1301,6 +1312,14 @@ var require$$0 = {
|
|
|
1301
1312
|
"application/alto-networkmapfilter+json": {
|
|
1302
1313
|
source: "iana",
|
|
1303
1314
|
compressible: true
|
|
1315
|
+
},
|
|
1316
|
+
"application/alto-updatestreamcontrol+json": {
|
|
1317
|
+
source: "iana",
|
|
1318
|
+
compressible: true
|
|
1319
|
+
},
|
|
1320
|
+
"application/alto-updatestreamparams+json": {
|
|
1321
|
+
source: "iana",
|
|
1322
|
+
compressible: true
|
|
1304
1323
|
},
|
|
1305
1324
|
"application/aml": {
|
|
1306
1325
|
source: "iana"
|
|
@@ -1319,6 +1338,9 @@ var require$$0 = {
|
|
|
1319
1338
|
extensions: [
|
|
1320
1339
|
"aw"
|
|
1321
1340
|
]
|
|
1341
|
+
},
|
|
1342
|
+
"application/at+jwt": {
|
|
1343
|
+
source: "iana"
|
|
1322
1344
|
},
|
|
1323
1345
|
"application/atf": {
|
|
1324
1346
|
source: "iana"
|
|
@@ -1342,7 +1364,10 @@ var require$$0 = {
|
|
|
1342
1364
|
},
|
|
1343
1365
|
"application/atomdeleted+xml": {
|
|
1344
1366
|
source: "iana",
|
|
1345
|
-
compressible: true
|
|
1367
|
+
compressible: true,
|
|
1368
|
+
extensions: [
|
|
1369
|
+
"atomdeleted"
|
|
1370
|
+
]
|
|
1346
1371
|
},
|
|
1347
1372
|
"application/atomicmail": {
|
|
1348
1373
|
source: "iana"
|
|
@@ -1353,6 +1378,34 @@ var require$$0 = {
|
|
|
1353
1378
|
extensions: [
|
|
1354
1379
|
"atomsvc"
|
|
1355
1380
|
]
|
|
1381
|
+
},
|
|
1382
|
+
"application/atsc-dwd+xml": {
|
|
1383
|
+
source: "iana",
|
|
1384
|
+
compressible: true,
|
|
1385
|
+
extensions: [
|
|
1386
|
+
"dwd"
|
|
1387
|
+
]
|
|
1388
|
+
},
|
|
1389
|
+
"application/atsc-dynamic-event-message": {
|
|
1390
|
+
source: "iana"
|
|
1391
|
+
},
|
|
1392
|
+
"application/atsc-held+xml": {
|
|
1393
|
+
source: "iana",
|
|
1394
|
+
compressible: true,
|
|
1395
|
+
extensions: [
|
|
1396
|
+
"held"
|
|
1397
|
+
]
|
|
1398
|
+
},
|
|
1399
|
+
"application/atsc-rdt+json": {
|
|
1400
|
+
source: "iana",
|
|
1401
|
+
compressible: true
|
|
1402
|
+
},
|
|
1403
|
+
"application/atsc-rsat+xml": {
|
|
1404
|
+
source: "iana",
|
|
1405
|
+
compressible: true,
|
|
1406
|
+
extensions: [
|
|
1407
|
+
"rsat"
|
|
1408
|
+
]
|
|
1356
1409
|
},
|
|
1357
1410
|
"application/atxml": {
|
|
1358
1411
|
source: "iana"
|
|
@@ -1376,6 +1429,7 @@ var require$$0 = {
|
|
|
1376
1429
|
},
|
|
1377
1430
|
"application/beep+xml": {
|
|
1378
1431
|
source: "iana",
|
|
1432
|
+
charset: "UTF-8",
|
|
1379
1433
|
compressible: true
|
|
1380
1434
|
},
|
|
1381
1435
|
"application/calendar+json": {
|
|
@@ -1384,16 +1438,26 @@ var require$$0 = {
|
|
|
1384
1438
|
},
|
|
1385
1439
|
"application/calendar+xml": {
|
|
1386
1440
|
source: "iana",
|
|
1387
|
-
compressible: true
|
|
1441
|
+
compressible: true,
|
|
1442
|
+
extensions: [
|
|
1443
|
+
"xcs"
|
|
1444
|
+
]
|
|
1388
1445
|
},
|
|
1389
1446
|
"application/call-completion": {
|
|
1390
1447
|
source: "iana"
|
|
1391
1448
|
},
|
|
1392
1449
|
"application/cals-1840": {
|
|
1393
1450
|
source: "iana"
|
|
1451
|
+
},
|
|
1452
|
+
"application/captive+json": {
|
|
1453
|
+
source: "iana",
|
|
1454
|
+
compressible: true
|
|
1394
1455
|
},
|
|
1395
1456
|
"application/cbor": {
|
|
1396
1457
|
source: "iana"
|
|
1458
|
+
},
|
|
1459
|
+
"application/cbor-seq": {
|
|
1460
|
+
source: "iana"
|
|
1397
1461
|
},
|
|
1398
1462
|
"application/cccex": {
|
|
1399
1463
|
source: "iana"
|
|
@@ -1411,7 +1475,10 @@ var require$$0 = {
|
|
|
1411
1475
|
},
|
|
1412
1476
|
"application/cdfx+xml": {
|
|
1413
1477
|
source: "iana",
|
|
1414
|
-
compressible: true
|
|
1478
|
+
compressible: true,
|
|
1479
|
+
extensions: [
|
|
1480
|
+
"cdfx"
|
|
1481
|
+
]
|
|
1415
1482
|
},
|
|
1416
1483
|
"application/cdmi-capability": {
|
|
1417
1484
|
source: "iana",
|
|
@@ -1459,6 +1526,17 @@ var require$$0 = {
|
|
|
1459
1526
|
},
|
|
1460
1527
|
"application/cfw": {
|
|
1461
1528
|
source: "iana"
|
|
1529
|
+
},
|
|
1530
|
+
"application/city+json": {
|
|
1531
|
+
source: "iana",
|
|
1532
|
+
compressible: true
|
|
1533
|
+
},
|
|
1534
|
+
"application/clr": {
|
|
1535
|
+
source: "iana"
|
|
1536
|
+
},
|
|
1537
|
+
"application/clue+xml": {
|
|
1538
|
+
source: "iana",
|
|
1539
|
+
compressible: true
|
|
1462
1540
|
},
|
|
1463
1541
|
"application/clue_info+xml": {
|
|
1464
1542
|
source: "iana",
|
|
@@ -1496,7 +1574,10 @@ var require$$0 = {
|
|
|
1496
1574
|
},
|
|
1497
1575
|
"application/cpl+xml": {
|
|
1498
1576
|
source: "iana",
|
|
1499
|
-
compressible: true
|
|
1577
|
+
compressible: true,
|
|
1578
|
+
extensions: [
|
|
1579
|
+
"cpl"
|
|
1580
|
+
]
|
|
1500
1581
|
},
|
|
1501
1582
|
"application/csrattrs": {
|
|
1502
1583
|
source: "iana"
|
|
@@ -1534,6 +1615,13 @@ var require$$0 = {
|
|
|
1534
1615
|
extensions: [
|
|
1535
1616
|
"mpd"
|
|
1536
1617
|
]
|
|
1618
|
+
},
|
|
1619
|
+
"application/dash-patch+xml": {
|
|
1620
|
+
source: "iana",
|
|
1621
|
+
compressible: true,
|
|
1622
|
+
extensions: [
|
|
1623
|
+
"mpp"
|
|
1624
|
+
]
|
|
1537
1625
|
},
|
|
1538
1626
|
"application/dashdelta": {
|
|
1539
1627
|
source: "iana"
|
|
@@ -1581,6 +1669,9 @@ var require$$0 = {
|
|
|
1581
1669
|
"application/dns+json": {
|
|
1582
1670
|
source: "iana",
|
|
1583
1671
|
compressible: true
|
|
1672
|
+
},
|
|
1673
|
+
"application/dns-message": {
|
|
1674
|
+
source: "iana"
|
|
1584
1675
|
},
|
|
1585
1676
|
"application/docbook+xml": {
|
|
1586
1677
|
source: "apache",
|
|
@@ -1588,6 +1679,9 @@ var require$$0 = {
|
|
|
1588
1679
|
extensions: [
|
|
1589
1680
|
"dbk"
|
|
1590
1681
|
]
|
|
1682
|
+
},
|
|
1683
|
+
"application/dots+cbor": {
|
|
1684
|
+
source: "iana"
|
|
1591
1685
|
},
|
|
1592
1686
|
"application/dskpp+xml": {
|
|
1593
1687
|
source: "iana",
|
|
@@ -1613,8 +1707,8 @@ var require$$0 = {
|
|
|
1613
1707
|
source: "iana",
|
|
1614
1708
|
compressible: true,
|
|
1615
1709
|
extensions: [
|
|
1616
|
-
"
|
|
1617
|
-
"
|
|
1710
|
+
"es",
|
|
1711
|
+
"ecma"
|
|
1618
1712
|
]
|
|
1619
1713
|
},
|
|
1620
1714
|
"application/edi-consent": {
|
|
@@ -1630,6 +1724,20 @@ var require$$0 = {
|
|
|
1630
1724
|
},
|
|
1631
1725
|
"application/efi": {
|
|
1632
1726
|
source: "iana"
|
|
1727
|
+
},
|
|
1728
|
+
"application/elm+json": {
|
|
1729
|
+
source: "iana",
|
|
1730
|
+
charset: "UTF-8",
|
|
1731
|
+
compressible: true
|
|
1732
|
+
},
|
|
1733
|
+
"application/elm+xml": {
|
|
1734
|
+
source: "iana",
|
|
1735
|
+
compressible: true
|
|
1736
|
+
},
|
|
1737
|
+
"application/emergencycalldata.cap+xml": {
|
|
1738
|
+
source: "iana",
|
|
1739
|
+
charset: "UTF-8",
|
|
1740
|
+
compressible: true
|
|
1633
1741
|
},
|
|
1634
1742
|
"application/emergencycalldata.comment+xml": {
|
|
1635
1743
|
source: "iana",
|
|
@@ -1671,7 +1779,10 @@ var require$$0 = {
|
|
|
1671
1779
|
},
|
|
1672
1780
|
"application/emotionml+xml": {
|
|
1673
1781
|
source: "iana",
|
|
1674
|
-
compressible: true
|
|
1782
|
+
compressible: true,
|
|
1783
|
+
extensions: [
|
|
1784
|
+
"emotionml"
|
|
1785
|
+
]
|
|
1675
1786
|
},
|
|
1676
1787
|
"application/encaprtp": {
|
|
1677
1788
|
source: "iana"
|
|
@@ -1695,6 +1806,16 @@ var require$$0 = {
|
|
|
1695
1806
|
extensions: [
|
|
1696
1807
|
"exi"
|
|
1697
1808
|
]
|
|
1809
|
+
},
|
|
1810
|
+
"application/expect-ct-report+json": {
|
|
1811
|
+
source: "iana",
|
|
1812
|
+
compressible: true
|
|
1813
|
+
},
|
|
1814
|
+
"application/express": {
|
|
1815
|
+
source: "iana",
|
|
1816
|
+
extensions: [
|
|
1817
|
+
"exp"
|
|
1818
|
+
]
|
|
1698
1819
|
},
|
|
1699
1820
|
"application/fastinfoset": {
|
|
1700
1821
|
source: "iana"
|
|
@@ -1704,14 +1825,19 @@ var require$$0 = {
|
|
|
1704
1825
|
},
|
|
1705
1826
|
"application/fdt+xml": {
|
|
1706
1827
|
source: "iana",
|
|
1707
|
-
compressible: true
|
|
1828
|
+
compressible: true,
|
|
1829
|
+
extensions: [
|
|
1830
|
+
"fdt"
|
|
1831
|
+
]
|
|
1708
1832
|
},
|
|
1709
1833
|
"application/fhir+json": {
|
|
1710
1834
|
source: "iana",
|
|
1835
|
+
charset: "UTF-8",
|
|
1711
1836
|
compressible: true
|
|
1712
1837
|
},
|
|
1713
1838
|
"application/fhir+xml": {
|
|
1714
1839
|
source: "iana",
|
|
1840
|
+
charset: "UTF-8",
|
|
1715
1841
|
compressible: true
|
|
1716
1842
|
},
|
|
1717
1843
|
"application/fido.trusted-apps+json": {
|
|
@@ -1719,6 +1845,9 @@ var require$$0 = {
|
|
|
1719
1845
|
},
|
|
1720
1846
|
"application/fits": {
|
|
1721
1847
|
source: "iana"
|
|
1848
|
+
},
|
|
1849
|
+
"application/flexfec": {
|
|
1850
|
+
source: "iana"
|
|
1722
1851
|
},
|
|
1723
1852
|
"application/font-sfnt": {
|
|
1724
1853
|
source: "iana"
|
|
@@ -1821,6 +1950,7 @@ var require$$0 = {
|
|
|
1821
1950
|
},
|
|
1822
1951
|
"application/im-iscomposing+xml": {
|
|
1823
1952
|
source: "iana",
|
|
1953
|
+
charset: "UTF-8",
|
|
1824
1954
|
compressible: true
|
|
1825
1955
|
},
|
|
1826
1956
|
"application/index": {
|
|
@@ -1863,7 +1993,10 @@ var require$$0 = {
|
|
|
1863
1993
|
},
|
|
1864
1994
|
"application/its+xml": {
|
|
1865
1995
|
source: "iana",
|
|
1866
|
-
compressible: true
|
|
1996
|
+
compressible: true,
|
|
1997
|
+
extensions: [
|
|
1998
|
+
"its"
|
|
1999
|
+
]
|
|
1867
2000
|
},
|
|
1868
2001
|
"application/java-archive": {
|
|
1869
2002
|
source: "apache",
|
|
@@ -1911,6 +2044,10 @@ var require$$0 = {
|
|
|
1911
2044
|
"application/jrd+json": {
|
|
1912
2045
|
source: "iana",
|
|
1913
2046
|
compressible: true
|
|
2047
|
+
},
|
|
2048
|
+
"application/jscalendar+json": {
|
|
2049
|
+
source: "iana",
|
|
2050
|
+
compressible: true
|
|
1914
2051
|
},
|
|
1915
2052
|
"application/json": {
|
|
1916
2053
|
source: "iana",
|
|
@@ -1968,7 +2105,10 @@ var require$$0 = {
|
|
|
1968
2105
|
},
|
|
1969
2106
|
"application/lgr+xml": {
|
|
1970
2107
|
source: "iana",
|
|
1971
|
-
compressible: true
|
|
2108
|
+
compressible: true,
|
|
2109
|
+
extensions: [
|
|
2110
|
+
"lgr"
|
|
2111
|
+
]
|
|
1972
2112
|
},
|
|
1973
2113
|
"application/link-format": {
|
|
1974
2114
|
source: "iana"
|
|
@@ -1987,6 +2127,10 @@ var require$$0 = {
|
|
|
1987
2127
|
"application/lostsync+xml": {
|
|
1988
2128
|
source: "iana",
|
|
1989
2129
|
compressible: true
|
|
2130
|
+
},
|
|
2131
|
+
"application/lpf+zip": {
|
|
2132
|
+
source: "iana",
|
|
2133
|
+
compressible: false
|
|
1990
2134
|
},
|
|
1991
2135
|
"application/lxf": {
|
|
1992
2136
|
source: "iana"
|
|
@@ -2014,6 +2158,7 @@ var require$$0 = {
|
|
|
2014
2158
|
]
|
|
2015
2159
|
},
|
|
2016
2160
|
"application/manifest+json": {
|
|
2161
|
+
source: "iana",
|
|
2017
2162
|
charset: "UTF-8",
|
|
2018
2163
|
compressible: true,
|
|
2019
2164
|
extensions: [
|
|
@@ -2108,7 +2253,10 @@ var require$$0 = {
|
|
|
2108
2253
|
},
|
|
2109
2254
|
"application/media-policy-dataset+xml": {
|
|
2110
2255
|
source: "iana",
|
|
2111
|
-
compressible: true
|
|
2256
|
+
compressible: true,
|
|
2257
|
+
extensions: [
|
|
2258
|
+
"mpf"
|
|
2259
|
+
]
|
|
2112
2260
|
},
|
|
2113
2261
|
"application/media_control+xml": {
|
|
2114
2262
|
source: "iana",
|
|
@@ -2151,10 +2299,26 @@ var require$$0 = {
|
|
|
2151
2299
|
},
|
|
2152
2300
|
"application/mikey": {
|
|
2153
2301
|
source: "iana"
|
|
2302
|
+
},
|
|
2303
|
+
"application/mipc": {
|
|
2304
|
+
source: "iana"
|
|
2305
|
+
},
|
|
2306
|
+
"application/missing-blocks+cbor-seq": {
|
|
2307
|
+
source: "iana"
|
|
2308
|
+
},
|
|
2309
|
+
"application/mmt-aei+xml": {
|
|
2310
|
+
source: "iana",
|
|
2311
|
+
compressible: true,
|
|
2312
|
+
extensions: [
|
|
2313
|
+
"maei"
|
|
2314
|
+
]
|
|
2154
2315
|
},
|
|
2155
2316
|
"application/mmt-usd+xml": {
|
|
2156
2317
|
source: "iana",
|
|
2157
|
-
compressible: true
|
|
2318
|
+
compressible: true,
|
|
2319
|
+
extensions: [
|
|
2320
|
+
"musd"
|
|
2321
|
+
]
|
|
2158
2322
|
},
|
|
2159
2323
|
"application/mods+xml": {
|
|
2160
2324
|
source: "iana",
|
|
@@ -2208,10 +2372,12 @@ var require$$0 = {
|
|
|
2208
2372
|
},
|
|
2209
2373
|
"application/msc-ivr+xml": {
|
|
2210
2374
|
source: "iana",
|
|
2375
|
+
charset: "UTF-8",
|
|
2211
2376
|
compressible: true
|
|
2212
2377
|
},
|
|
2213
2378
|
"application/msc-mixer+xml": {
|
|
2214
2379
|
source: "iana",
|
|
2380
|
+
charset: "UTF-8",
|
|
2215
2381
|
compressible: true
|
|
2216
2382
|
},
|
|
2217
2383
|
"application/msword": {
|
|
@@ -2225,6 +2391,9 @@ var require$$0 = {
|
|
|
2225
2391
|
"application/mud+json": {
|
|
2226
2392
|
source: "iana",
|
|
2227
2393
|
compressible: true
|
|
2394
|
+
},
|
|
2395
|
+
"application/multipart-core": {
|
|
2396
|
+
source: "iana"
|
|
2228
2397
|
},
|
|
2229
2398
|
"application/mxf": {
|
|
2230
2399
|
source: "iana",
|
|
@@ -2233,19 +2402,27 @@ var require$$0 = {
|
|
|
2233
2402
|
]
|
|
2234
2403
|
},
|
|
2235
2404
|
"application/n-quads": {
|
|
2236
|
-
source: "iana"
|
|
2405
|
+
source: "iana",
|
|
2406
|
+
extensions: [
|
|
2407
|
+
"nq"
|
|
2408
|
+
]
|
|
2237
2409
|
},
|
|
2238
2410
|
"application/n-triples": {
|
|
2239
|
-
source: "iana"
|
|
2411
|
+
source: "iana",
|
|
2412
|
+
extensions: [
|
|
2413
|
+
"nt"
|
|
2414
|
+
]
|
|
2240
2415
|
},
|
|
2241
2416
|
"application/nasdata": {
|
|
2242
2417
|
source: "iana"
|
|
2243
2418
|
},
|
|
2244
2419
|
"application/news-checkgroups": {
|
|
2245
|
-
source: "iana"
|
|
2420
|
+
source: "iana",
|
|
2421
|
+
charset: "US-ASCII"
|
|
2246
2422
|
},
|
|
2247
2423
|
"application/news-groupinfo": {
|
|
2248
|
-
source: "iana"
|
|
2424
|
+
source: "iana",
|
|
2425
|
+
charset: "US-ASCII"
|
|
2249
2426
|
},
|
|
2250
2427
|
"application/news-transmission": {
|
|
2251
2428
|
source: "iana"
|
|
@@ -2255,10 +2432,19 @@ var require$$0 = {
|
|
|
2255
2432
|
compressible: true
|
|
2256
2433
|
},
|
|
2257
2434
|
"application/node": {
|
|
2258
|
-
source: "iana"
|
|
2435
|
+
source: "iana",
|
|
2436
|
+
extensions: [
|
|
2437
|
+
"cjs"
|
|
2438
|
+
]
|
|
2259
2439
|
},
|
|
2260
2440
|
"application/nss": {
|
|
2261
2441
|
source: "iana"
|
|
2442
|
+
},
|
|
2443
|
+
"application/oauth-authz-req+jwt": {
|
|
2444
|
+
source: "iana"
|
|
2445
|
+
},
|
|
2446
|
+
"application/oblivious-dns-message": {
|
|
2447
|
+
source: "iana"
|
|
2262
2448
|
},
|
|
2263
2449
|
"application/ocsp-request": {
|
|
2264
2450
|
source: "iana"
|
|
@@ -2299,6 +2485,10 @@ var require$$0 = {
|
|
|
2299
2485
|
extensions: [
|
|
2300
2486
|
"oda"
|
|
2301
2487
|
]
|
|
2488
|
+
},
|
|
2489
|
+
"application/odm+xml": {
|
|
2490
|
+
source: "iana",
|
|
2491
|
+
compressible: true
|
|
2302
2492
|
},
|
|
2303
2493
|
"application/odx": {
|
|
2304
2494
|
source: "iana"
|
|
@@ -2332,16 +2522,33 @@ var require$$0 = {
|
|
|
2332
2522
|
"onetmp",
|
|
2333
2523
|
"onepkg"
|
|
2334
2524
|
]
|
|
2525
|
+
},
|
|
2526
|
+
"application/opc-nodeset+xml": {
|
|
2527
|
+
source: "iana",
|
|
2528
|
+
compressible: true
|
|
2529
|
+
},
|
|
2530
|
+
"application/oscore": {
|
|
2531
|
+
source: "iana"
|
|
2335
2532
|
},
|
|
2336
2533
|
"application/oxps": {
|
|
2337
2534
|
source: "iana",
|
|
2338
2535
|
extensions: [
|
|
2339
2536
|
"oxps"
|
|
2340
2537
|
]
|
|
2538
|
+
},
|
|
2539
|
+
"application/p21": {
|
|
2540
|
+
source: "iana"
|
|
2541
|
+
},
|
|
2542
|
+
"application/p21+zip": {
|
|
2543
|
+
source: "iana",
|
|
2544
|
+
compressible: false
|
|
2341
2545
|
},
|
|
2342
2546
|
"application/p2p-overlay+xml": {
|
|
2343
2547
|
source: "iana",
|
|
2344
|
-
compressible: true
|
|
2548
|
+
compressible: true,
|
|
2549
|
+
extensions: [
|
|
2550
|
+
"relo"
|
|
2551
|
+
]
|
|
2345
2552
|
},
|
|
2346
2553
|
"application/parityfec": {
|
|
2347
2554
|
source: "iana"
|
|
@@ -2365,6 +2572,9 @@ var require$$0 = {
|
|
|
2365
2572
|
},
|
|
2366
2573
|
"application/pdx": {
|
|
2367
2574
|
source: "iana"
|
|
2575
|
+
},
|
|
2576
|
+
"application/pem-certificate-chain": {
|
|
2577
|
+
source: "iana"
|
|
2368
2578
|
},
|
|
2369
2579
|
"application/pgp-encrypted": {
|
|
2370
2580
|
source: "iana",
|
|
@@ -2374,7 +2584,10 @@ var require$$0 = {
|
|
|
2374
2584
|
]
|
|
2375
2585
|
},
|
|
2376
2586
|
"application/pgp-keys": {
|
|
2377
|
-
source: "iana"
|
|
2587
|
+
source: "iana",
|
|
2588
|
+
extensions: [
|
|
2589
|
+
"asc"
|
|
2590
|
+
]
|
|
2378
2591
|
},
|
|
2379
2592
|
"application/pgp-signature": {
|
|
2380
2593
|
source: "iana",
|
|
@@ -2391,10 +2604,12 @@ var require$$0 = {
|
|
|
2391
2604
|
},
|
|
2392
2605
|
"application/pidf+xml": {
|
|
2393
2606
|
source: "iana",
|
|
2607
|
+
charset: "UTF-8",
|
|
2394
2608
|
compressible: true
|
|
2395
2609
|
},
|
|
2396
2610
|
"application/pidf-diff+xml": {
|
|
2397
2611
|
source: "iana",
|
|
2612
|
+
charset: "UTF-8",
|
|
2398
2613
|
compressible: true
|
|
2399
2614
|
},
|
|
2400
2615
|
"application/pkcs10": {
|
|
@@ -2467,6 +2682,7 @@ var require$$0 = {
|
|
|
2467
2682
|
},
|
|
2468
2683
|
"application/poc-settings+xml": {
|
|
2469
2684
|
source: "iana",
|
|
2685
|
+
charset: "UTF-8",
|
|
2470
2686
|
compressible: true
|
|
2471
2687
|
},
|
|
2472
2688
|
"application/postscript": {
|
|
@@ -2492,7 +2708,10 @@ var require$$0 = {
|
|
|
2492
2708
|
},
|
|
2493
2709
|
"application/provenance+xml": {
|
|
2494
2710
|
source: "iana",
|
|
2495
|
-
compressible: true
|
|
2711
|
+
compressible: true,
|
|
2712
|
+
extensions: [
|
|
2713
|
+
"provx"
|
|
2714
|
+
]
|
|
2496
2715
|
},
|
|
2497
2716
|
"application/prs.alvestrand.titrax-sheet": {
|
|
2498
2717
|
source: "iana"
|
|
@@ -2502,6 +2721,10 @@ var require$$0 = {
|
|
|
2502
2721
|
extensions: [
|
|
2503
2722
|
"cww"
|
|
2504
2723
|
]
|
|
2724
|
+
},
|
|
2725
|
+
"application/prs.cyn": {
|
|
2726
|
+
source: "iana",
|
|
2727
|
+
charset: "7-BIT"
|
|
2505
2728
|
},
|
|
2506
2729
|
"application/prs.hpub+zip": {
|
|
2507
2730
|
source: "iana",
|
|
@@ -2526,6 +2749,10 @@ var require$$0 = {
|
|
|
2526
2749
|
extensions: [
|
|
2527
2750
|
"pskcxml"
|
|
2528
2751
|
]
|
|
2752
|
+
},
|
|
2753
|
+
"application/pvd+json": {
|
|
2754
|
+
source: "iana",
|
|
2755
|
+
compressible: true
|
|
2529
2756
|
},
|
|
2530
2757
|
"application/qsig": {
|
|
2531
2758
|
source: "iana"
|
|
@@ -2605,15 +2832,24 @@ var require$$0 = {
|
|
|
2605
2832
|
},
|
|
2606
2833
|
"application/route-apd+xml": {
|
|
2607
2834
|
source: "iana",
|
|
2608
|
-
compressible: true
|
|
2835
|
+
compressible: true,
|
|
2836
|
+
extensions: [
|
|
2837
|
+
"rapd"
|
|
2838
|
+
]
|
|
2609
2839
|
},
|
|
2610
2840
|
"application/route-s-tsid+xml": {
|
|
2611
2841
|
source: "iana",
|
|
2612
|
-
compressible: true
|
|
2842
|
+
compressible: true,
|
|
2843
|
+
extensions: [
|
|
2844
|
+
"sls"
|
|
2845
|
+
]
|
|
2613
2846
|
},
|
|
2614
2847
|
"application/route-usd+xml": {
|
|
2615
2848
|
source: "iana",
|
|
2616
|
-
compressible: true
|
|
2849
|
+
compressible: true,
|
|
2850
|
+
extensions: [
|
|
2851
|
+
"rusd"
|
|
2852
|
+
]
|
|
2617
2853
|
},
|
|
2618
2854
|
"application/rpki-ghostbusters": {
|
|
2619
2855
|
source: "iana",
|
|
@@ -2673,6 +2909,17 @@ var require$$0 = {
|
|
|
2673
2909
|
"application/samlmetadata+xml": {
|
|
2674
2910
|
source: "iana",
|
|
2675
2911
|
compressible: true
|
|
2912
|
+
},
|
|
2913
|
+
"application/sarif+json": {
|
|
2914
|
+
source: "iana",
|
|
2915
|
+
compressible: true
|
|
2916
|
+
},
|
|
2917
|
+
"application/sarif-external-properties+json": {
|
|
2918
|
+
source: "iana",
|
|
2919
|
+
compressible: true
|
|
2920
|
+
},
|
|
2921
|
+
"application/sbe": {
|
|
2922
|
+
source: "iana"
|
|
2676
2923
|
},
|
|
2677
2924
|
"application/sbml+xml": {
|
|
2678
2925
|
source: "iana",
|
|
@@ -2731,6 +2978,16 @@ var require$$0 = {
|
|
|
2731
2978
|
},
|
|
2732
2979
|
"application/senml+xml": {
|
|
2733
2980
|
source: "iana",
|
|
2981
|
+
compressible: true,
|
|
2982
|
+
extensions: [
|
|
2983
|
+
"senmlx"
|
|
2984
|
+
]
|
|
2985
|
+
},
|
|
2986
|
+
"application/senml-etch+cbor": {
|
|
2987
|
+
source: "iana"
|
|
2988
|
+
},
|
|
2989
|
+
"application/senml-etch+json": {
|
|
2990
|
+
source: "iana",
|
|
2734
2991
|
compressible: true
|
|
2735
2992
|
},
|
|
2736
2993
|
"application/senml-exi": {
|
|
@@ -2745,7 +3002,10 @@ var require$$0 = {
|
|
|
2745
3002
|
},
|
|
2746
3003
|
"application/sensml+xml": {
|
|
2747
3004
|
source: "iana",
|
|
2748
|
-
compressible: true
|
|
3005
|
+
compressible: true,
|
|
3006
|
+
extensions: [
|
|
3007
|
+
"sensmlx"
|
|
3008
|
+
]
|
|
2749
3009
|
},
|
|
2750
3010
|
"application/sensml-exi": {
|
|
2751
3011
|
source: "iana"
|
|
@@ -2792,7 +3052,11 @@ var require$$0 = {
|
|
|
2792
3052
|
]
|
|
2793
3053
|
},
|
|
2794
3054
|
"application/sieve": {
|
|
2795
|
-
source: "iana"
|
|
3055
|
+
source: "iana",
|
|
3056
|
+
extensions: [
|
|
3057
|
+
"siv",
|
|
3058
|
+
"sieve"
|
|
3059
|
+
]
|
|
2796
3060
|
},
|
|
2797
3061
|
"application/simple-filter+xml": {
|
|
2798
3062
|
source: "iana",
|
|
@@ -2803,6 +3067,9 @@ var require$$0 = {
|
|
|
2803
3067
|
},
|
|
2804
3068
|
"application/simplesymbolcontainer": {
|
|
2805
3069
|
source: "iana"
|
|
3070
|
+
},
|
|
3071
|
+
"application/sipc": {
|
|
3072
|
+
source: "iana"
|
|
2806
3073
|
},
|
|
2807
3074
|
"application/slate": {
|
|
2808
3075
|
source: "iana"
|
|
@@ -2840,6 +3107,10 @@ var require$$0 = {
|
|
|
2840
3107
|
extensions: [
|
|
2841
3108
|
"srx"
|
|
2842
3109
|
]
|
|
3110
|
+
},
|
|
3111
|
+
"application/spdx+json": {
|
|
3112
|
+
source: "iana",
|
|
3113
|
+
compressible: true
|
|
2843
3114
|
},
|
|
2844
3115
|
"application/spirits-event+xml": {
|
|
2845
3116
|
source: "iana",
|
|
@@ -2885,6 +3156,13 @@ var require$$0 = {
|
|
|
2885
3156
|
"application/stix+json": {
|
|
2886
3157
|
source: "iana",
|
|
2887
3158
|
compressible: true
|
|
3159
|
+
},
|
|
3160
|
+
"application/swid+xml": {
|
|
3161
|
+
source: "iana",
|
|
3162
|
+
compressible: true,
|
|
3163
|
+
extensions: [
|
|
3164
|
+
"swidtag"
|
|
3165
|
+
]
|
|
2888
3166
|
},
|
|
2889
3167
|
"application/tamp-apex-update": {
|
|
2890
3168
|
source: "iana"
|
|
@@ -2925,6 +3203,10 @@ var require$$0 = {
|
|
|
2925
3203
|
"application/taxii+json": {
|
|
2926
3204
|
source: "iana",
|
|
2927
3205
|
compressible: true
|
|
3206
|
+
},
|
|
3207
|
+
"application/td+json": {
|
|
3208
|
+
source: "iana",
|
|
3209
|
+
compressible: true
|
|
2928
3210
|
},
|
|
2929
3211
|
"application/tei+xml": {
|
|
2930
3212
|
source: "iana",
|
|
@@ -2933,6 +3215,9 @@ var require$$0 = {
|
|
|
2933
3215
|
"tei",
|
|
2934
3216
|
"teicorpus"
|
|
2935
3217
|
]
|
|
3218
|
+
},
|
|
3219
|
+
"application/tetra_isi": {
|
|
3220
|
+
source: "iana"
|
|
2936
3221
|
},
|
|
2937
3222
|
"application/thraud+xml": {
|
|
2938
3223
|
source: "iana",
|
|
@@ -2962,19 +3247,46 @@ var require$$0 = {
|
|
|
2962
3247
|
},
|
|
2963
3248
|
"application/tnauthlist": {
|
|
2964
3249
|
source: "iana"
|
|
3250
|
+
},
|
|
3251
|
+
"application/token-introspection+jwt": {
|
|
3252
|
+
source: "iana"
|
|
3253
|
+
},
|
|
3254
|
+
"application/toml": {
|
|
3255
|
+
compressible: true,
|
|
3256
|
+
extensions: [
|
|
3257
|
+
"toml"
|
|
3258
|
+
]
|
|
2965
3259
|
},
|
|
2966
3260
|
"application/trickle-ice-sdpfrag": {
|
|
2967
3261
|
source: "iana"
|
|
2968
3262
|
},
|
|
2969
3263
|
"application/trig": {
|
|
2970
|
-
source: "iana"
|
|
3264
|
+
source: "iana",
|
|
3265
|
+
extensions: [
|
|
3266
|
+
"trig"
|
|
3267
|
+
]
|
|
2971
3268
|
},
|
|
2972
3269
|
"application/ttml+xml": {
|
|
2973
3270
|
source: "iana",
|
|
2974
|
-
compressible: true
|
|
3271
|
+
compressible: true,
|
|
3272
|
+
extensions: [
|
|
3273
|
+
"ttml"
|
|
3274
|
+
]
|
|
2975
3275
|
},
|
|
2976
3276
|
"application/tve-trigger": {
|
|
2977
3277
|
source: "iana"
|
|
3278
|
+
},
|
|
3279
|
+
"application/tzif": {
|
|
3280
|
+
source: "iana"
|
|
3281
|
+
},
|
|
3282
|
+
"application/tzif-leap": {
|
|
3283
|
+
source: "iana"
|
|
3284
|
+
},
|
|
3285
|
+
"application/ubjson": {
|
|
3286
|
+
compressible: false,
|
|
3287
|
+
extensions: [
|
|
3288
|
+
"ubj"
|
|
3289
|
+
]
|
|
2978
3290
|
},
|
|
2979
3291
|
"application/ulpfec": {
|
|
2980
3292
|
source: "iana"
|
|
@@ -2985,11 +3297,17 @@ var require$$0 = {
|
|
|
2985
3297
|
},
|
|
2986
3298
|
"application/urc-ressheet+xml": {
|
|
2987
3299
|
source: "iana",
|
|
2988
|
-
compressible: true
|
|
3300
|
+
compressible: true,
|
|
3301
|
+
extensions: [
|
|
3302
|
+
"rsheet"
|
|
3303
|
+
]
|
|
2989
3304
|
},
|
|
2990
3305
|
"application/urc-targetdesc+xml": {
|
|
2991
3306
|
source: "iana",
|
|
2992
|
-
compressible: true
|
|
3307
|
+
compressible: true,
|
|
3308
|
+
extensions: [
|
|
3309
|
+
"td"
|
|
3310
|
+
]
|
|
2993
3311
|
},
|
|
2994
3312
|
"application/urc-uisocketdesc+xml": {
|
|
2995
3313
|
source: "iana",
|
|
@@ -3011,7 +3329,10 @@ var require$$0 = {
|
|
|
3011
3329
|
},
|
|
3012
3330
|
"application/vnd.1000minds.decision-model+xml": {
|
|
3013
3331
|
source: "iana",
|
|
3014
|
-
compressible: true
|
|
3332
|
+
compressible: true,
|
|
3333
|
+
extensions: [
|
|
3334
|
+
"1km"
|
|
3335
|
+
]
|
|
3015
3336
|
},
|
|
3016
3337
|
"application/vnd.3gpp-prose+xml": {
|
|
3017
3338
|
source: "iana",
|
|
@@ -3023,6 +3344,9 @@ var require$$0 = {
|
|
|
3023
3344
|
},
|
|
3024
3345
|
"application/vnd.3gpp-v2x-local-service-information": {
|
|
3025
3346
|
source: "iana"
|
|
3347
|
+
},
|
|
3348
|
+
"application/vnd.3gpp.5gnas": {
|
|
3349
|
+
source: "iana"
|
|
3026
3350
|
},
|
|
3027
3351
|
"application/vnd.3gpp.access-transfer-events+xml": {
|
|
3028
3352
|
source: "iana",
|
|
@@ -3035,15 +3359,44 @@ var require$$0 = {
|
|
|
3035
3359
|
"application/vnd.3gpp.gmop+xml": {
|
|
3036
3360
|
source: "iana",
|
|
3037
3361
|
compressible: true
|
|
3362
|
+
},
|
|
3363
|
+
"application/vnd.3gpp.gtpc": {
|
|
3364
|
+
source: "iana"
|
|
3365
|
+
},
|
|
3366
|
+
"application/vnd.3gpp.interworking-data": {
|
|
3367
|
+
source: "iana"
|
|
3368
|
+
},
|
|
3369
|
+
"application/vnd.3gpp.lpp": {
|
|
3370
|
+
source: "iana"
|
|
3038
3371
|
},
|
|
3039
3372
|
"application/vnd.3gpp.mc-signalling-ear": {
|
|
3040
3373
|
source: "iana"
|
|
3374
|
+
},
|
|
3375
|
+
"application/vnd.3gpp.mcdata-affiliation-command+xml": {
|
|
3376
|
+
source: "iana",
|
|
3377
|
+
compressible: true
|
|
3378
|
+
},
|
|
3379
|
+
"application/vnd.3gpp.mcdata-info+xml": {
|
|
3380
|
+
source: "iana",
|
|
3381
|
+
compressible: true
|
|
3041
3382
|
},
|
|
3042
3383
|
"application/vnd.3gpp.mcdata-payload": {
|
|
3043
3384
|
source: "iana"
|
|
3385
|
+
},
|
|
3386
|
+
"application/vnd.3gpp.mcdata-service-config+xml": {
|
|
3387
|
+
source: "iana",
|
|
3388
|
+
compressible: true
|
|
3044
3389
|
},
|
|
3045
3390
|
"application/vnd.3gpp.mcdata-signalling": {
|
|
3046
3391
|
source: "iana"
|
|
3392
|
+
},
|
|
3393
|
+
"application/vnd.3gpp.mcdata-ue-config+xml": {
|
|
3394
|
+
source: "iana",
|
|
3395
|
+
compressible: true
|
|
3396
|
+
},
|
|
3397
|
+
"application/vnd.3gpp.mcdata-user-profile+xml": {
|
|
3398
|
+
source: "iana",
|
|
3399
|
+
compressible: true
|
|
3047
3400
|
},
|
|
3048
3401
|
"application/vnd.3gpp.mcptt-affiliation-command+xml": {
|
|
3049
3402
|
source: "iana",
|
|
@@ -3064,14 +3417,72 @@ var require$$0 = {
|
|
|
3064
3417
|
"application/vnd.3gpp.mcptt-mbms-usage-info+xml": {
|
|
3065
3418
|
source: "iana",
|
|
3066
3419
|
compressible: true
|
|
3420
|
+
},
|
|
3421
|
+
"application/vnd.3gpp.mcptt-service-config+xml": {
|
|
3422
|
+
source: "iana",
|
|
3423
|
+
compressible: true
|
|
3067
3424
|
},
|
|
3068
3425
|
"application/vnd.3gpp.mcptt-signed+xml": {
|
|
3069
3426
|
source: "iana",
|
|
3070
3427
|
compressible: true
|
|
3428
|
+
},
|
|
3429
|
+
"application/vnd.3gpp.mcptt-ue-config+xml": {
|
|
3430
|
+
source: "iana",
|
|
3431
|
+
compressible: true
|
|
3432
|
+
},
|
|
3433
|
+
"application/vnd.3gpp.mcptt-ue-init-config+xml": {
|
|
3434
|
+
source: "iana",
|
|
3435
|
+
compressible: true
|
|
3436
|
+
},
|
|
3437
|
+
"application/vnd.3gpp.mcptt-user-profile+xml": {
|
|
3438
|
+
source: "iana",
|
|
3439
|
+
compressible: true
|
|
3440
|
+
},
|
|
3441
|
+
"application/vnd.3gpp.mcvideo-affiliation-command+xml": {
|
|
3442
|
+
source: "iana",
|
|
3443
|
+
compressible: true
|
|
3444
|
+
},
|
|
3445
|
+
"application/vnd.3gpp.mcvideo-affiliation-info+xml": {
|
|
3446
|
+
source: "iana",
|
|
3447
|
+
compressible: true
|
|
3448
|
+
},
|
|
3449
|
+
"application/vnd.3gpp.mcvideo-info+xml": {
|
|
3450
|
+
source: "iana",
|
|
3451
|
+
compressible: true
|
|
3452
|
+
},
|
|
3453
|
+
"application/vnd.3gpp.mcvideo-location-info+xml": {
|
|
3454
|
+
source: "iana",
|
|
3455
|
+
compressible: true
|
|
3456
|
+
},
|
|
3457
|
+
"application/vnd.3gpp.mcvideo-mbms-usage-info+xml": {
|
|
3458
|
+
source: "iana",
|
|
3459
|
+
compressible: true
|
|
3460
|
+
},
|
|
3461
|
+
"application/vnd.3gpp.mcvideo-service-config+xml": {
|
|
3462
|
+
source: "iana",
|
|
3463
|
+
compressible: true
|
|
3464
|
+
},
|
|
3465
|
+
"application/vnd.3gpp.mcvideo-transmission-request+xml": {
|
|
3466
|
+
source: "iana",
|
|
3467
|
+
compressible: true
|
|
3468
|
+
},
|
|
3469
|
+
"application/vnd.3gpp.mcvideo-ue-config+xml": {
|
|
3470
|
+
source: "iana",
|
|
3471
|
+
compressible: true
|
|
3472
|
+
},
|
|
3473
|
+
"application/vnd.3gpp.mcvideo-user-profile+xml": {
|
|
3474
|
+
source: "iana",
|
|
3475
|
+
compressible: true
|
|
3071
3476
|
},
|
|
3072
3477
|
"application/vnd.3gpp.mid-call+xml": {
|
|
3073
3478
|
source: "iana",
|
|
3074
3479
|
compressible: true
|
|
3480
|
+
},
|
|
3481
|
+
"application/vnd.3gpp.ngap": {
|
|
3482
|
+
source: "iana"
|
|
3483
|
+
},
|
|
3484
|
+
"application/vnd.3gpp.pfcp": {
|
|
3485
|
+
source: "iana"
|
|
3075
3486
|
},
|
|
3076
3487
|
"application/vnd.3gpp.pic-bw-large": {
|
|
3077
3488
|
source: "iana",
|
|
@@ -3090,6 +3501,9 @@ var require$$0 = {
|
|
|
3090
3501
|
extensions: [
|
|
3091
3502
|
"pvb"
|
|
3092
3503
|
]
|
|
3504
|
+
},
|
|
3505
|
+
"application/vnd.3gpp.s1ap": {
|
|
3506
|
+
source: "iana"
|
|
3093
3507
|
},
|
|
3094
3508
|
"application/vnd.3gpp.sms": {
|
|
3095
3509
|
source: "iana"
|
|
@@ -3184,30 +3598,69 @@ var require$$0 = {
|
|
|
3184
3598
|
"fxpl"
|
|
3185
3599
|
]
|
|
3186
3600
|
},
|
|
3187
|
-
"application/vnd.adobe.partial-upload": {
|
|
3601
|
+
"application/vnd.adobe.partial-upload": {
|
|
3602
|
+
source: "iana"
|
|
3603
|
+
},
|
|
3604
|
+
"application/vnd.adobe.xdp+xml": {
|
|
3605
|
+
source: "iana",
|
|
3606
|
+
compressible: true,
|
|
3607
|
+
extensions: [
|
|
3608
|
+
"xdp"
|
|
3609
|
+
]
|
|
3610
|
+
},
|
|
3611
|
+
"application/vnd.adobe.xfdf": {
|
|
3612
|
+
source: "iana",
|
|
3613
|
+
extensions: [
|
|
3614
|
+
"xfdf"
|
|
3615
|
+
]
|
|
3616
|
+
},
|
|
3617
|
+
"application/vnd.aether.imp": {
|
|
3618
|
+
source: "iana"
|
|
3619
|
+
},
|
|
3620
|
+
"application/vnd.afpc.afplinedata": {
|
|
3621
|
+
source: "iana"
|
|
3622
|
+
},
|
|
3623
|
+
"application/vnd.afpc.afplinedata-pagedef": {
|
|
3624
|
+
source: "iana"
|
|
3625
|
+
},
|
|
3626
|
+
"application/vnd.afpc.cmoca-cmresource": {
|
|
3627
|
+
source: "iana"
|
|
3628
|
+
},
|
|
3629
|
+
"application/vnd.afpc.foca-charset": {
|
|
3630
|
+
source: "iana"
|
|
3631
|
+
},
|
|
3632
|
+
"application/vnd.afpc.foca-codedfont": {
|
|
3633
|
+
source: "iana"
|
|
3634
|
+
},
|
|
3635
|
+
"application/vnd.afpc.foca-codepage": {
|
|
3636
|
+
source: "iana"
|
|
3637
|
+
},
|
|
3638
|
+
"application/vnd.afpc.modca": {
|
|
3188
3639
|
source: "iana"
|
|
3189
3640
|
},
|
|
3190
|
-
"application/vnd.
|
|
3191
|
-
source: "iana"
|
|
3192
|
-
compressible: true,
|
|
3193
|
-
extensions: [
|
|
3194
|
-
"xdp"
|
|
3195
|
-
]
|
|
3641
|
+
"application/vnd.afpc.modca-cmtable": {
|
|
3642
|
+
source: "iana"
|
|
3196
3643
|
},
|
|
3197
|
-
"application/vnd.
|
|
3198
|
-
source: "iana"
|
|
3199
|
-
extensions: [
|
|
3200
|
-
"xfdf"
|
|
3201
|
-
]
|
|
3644
|
+
"application/vnd.afpc.modca-formdef": {
|
|
3645
|
+
source: "iana"
|
|
3202
3646
|
},
|
|
3203
|
-
"application/vnd.
|
|
3647
|
+
"application/vnd.afpc.modca-mediummap": {
|
|
3204
3648
|
source: "iana"
|
|
3205
3649
|
},
|
|
3206
|
-
"application/vnd.afpc.
|
|
3650
|
+
"application/vnd.afpc.modca-objectcontainer": {
|
|
3207
3651
|
source: "iana"
|
|
3208
3652
|
},
|
|
3209
|
-
"application/vnd.afpc.modca": {
|
|
3653
|
+
"application/vnd.afpc.modca-overlay": {
|
|
3654
|
+
source: "iana"
|
|
3655
|
+
},
|
|
3656
|
+
"application/vnd.afpc.modca-pagesegment": {
|
|
3210
3657
|
source: "iana"
|
|
3658
|
+
},
|
|
3659
|
+
"application/vnd.age": {
|
|
3660
|
+
source: "iana",
|
|
3661
|
+
extensions: [
|
|
3662
|
+
"age"
|
|
3663
|
+
]
|
|
3211
3664
|
},
|
|
3212
3665
|
"application/vnd.ah-barcode": {
|
|
3213
3666
|
source: "iana"
|
|
@@ -3258,6 +3711,9 @@ var require$$0 = {
|
|
|
3258
3711
|
"application/vnd.amundsen.maze+xml": {
|
|
3259
3712
|
source: "iana",
|
|
3260
3713
|
compressible: true
|
|
3714
|
+
},
|
|
3715
|
+
"application/vnd.android.ota": {
|
|
3716
|
+
source: "iana"
|
|
3261
3717
|
},
|
|
3262
3718
|
"application/vnd.android.package-archive": {
|
|
3263
3719
|
source: "apache",
|
|
@@ -3286,6 +3742,12 @@ var require$$0 = {
|
|
|
3286
3742
|
extensions: [
|
|
3287
3743
|
"atx"
|
|
3288
3744
|
]
|
|
3745
|
+
},
|
|
3746
|
+
"application/vnd.apache.arrow.file": {
|
|
3747
|
+
source: "iana"
|
|
3748
|
+
},
|
|
3749
|
+
"application/vnd.apache.arrow.stream": {
|
|
3750
|
+
source: "iana"
|
|
3289
3751
|
},
|
|
3290
3752
|
"application/vnd.apache.thrift.binary": {
|
|
3291
3753
|
source: "iana"
|
|
@@ -3299,6 +3761,10 @@ var require$$0 = {
|
|
|
3299
3761
|
"application/vnd.api+json": {
|
|
3300
3762
|
source: "iana",
|
|
3301
3763
|
compressible: true
|
|
3764
|
+
},
|
|
3765
|
+
"application/vnd.aplextor.warrp+json": {
|
|
3766
|
+
source: "iana",
|
|
3767
|
+
compressible: true
|
|
3302
3768
|
},
|
|
3303
3769
|
"application/vnd.apothekende.reservation+json": {
|
|
3304
3770
|
source: "iana",
|
|
@@ -3314,7 +3780,7 @@ var require$$0 = {
|
|
|
3314
3780
|
"application/vnd.apple.keynote": {
|
|
3315
3781
|
source: "iana",
|
|
3316
3782
|
extensions: [
|
|
3317
|
-
"
|
|
3783
|
+
"key"
|
|
3318
3784
|
]
|
|
3319
3785
|
},
|
|
3320
3786
|
"application/vnd.apple.mpegurl": {
|
|
@@ -3382,13 +3848,19 @@ var require$$0 = {
|
|
|
3382
3848
|
},
|
|
3383
3849
|
"application/vnd.balsamiq.bmml+xml": {
|
|
3384
3850
|
source: "iana",
|
|
3385
|
-
compressible: true
|
|
3851
|
+
compressible: true,
|
|
3852
|
+
extensions: [
|
|
3853
|
+
"bmml"
|
|
3854
|
+
]
|
|
3386
3855
|
},
|
|
3387
3856
|
"application/vnd.balsamiq.bmpr": {
|
|
3388
3857
|
source: "iana"
|
|
3389
3858
|
},
|
|
3390
3859
|
"application/vnd.banana-accounting": {
|
|
3391
3860
|
source: "iana"
|
|
3861
|
+
},
|
|
3862
|
+
"application/vnd.bbf.usp.error": {
|
|
3863
|
+
source: "iana"
|
|
3392
3864
|
},
|
|
3393
3865
|
"application/vnd.bbf.usp.msg": {
|
|
3394
3866
|
source: "iana"
|
|
@@ -3428,6 +3900,12 @@ var require$$0 = {
|
|
|
3428
3900
|
extensions: [
|
|
3429
3901
|
"bmi"
|
|
3430
3902
|
]
|
|
3903
|
+
},
|
|
3904
|
+
"application/vnd.bpf": {
|
|
3905
|
+
source: "iana"
|
|
3906
|
+
},
|
|
3907
|
+
"application/vnd.bpf3": {
|
|
3908
|
+
source: "iana"
|
|
3431
3909
|
},
|
|
3432
3910
|
"application/vnd.businessobjects": {
|
|
3433
3911
|
source: "iana",
|
|
@@ -3473,6 +3951,9 @@ var require$$0 = {
|
|
|
3473
3951
|
extensions: [
|
|
3474
3952
|
"mmd"
|
|
3475
3953
|
]
|
|
3954
|
+
},
|
|
3955
|
+
"application/vnd.ciedi": {
|
|
3956
|
+
source: "iana"
|
|
3476
3957
|
},
|
|
3477
3958
|
"application/vnd.cinderella": {
|
|
3478
3959
|
source: "iana",
|
|
@@ -3625,6 +4106,19 @@ var require$$0 = {
|
|
|
3625
4106
|
extensions: [
|
|
3626
4107
|
"wbs"
|
|
3627
4108
|
]
|
|
4109
|
+
},
|
|
4110
|
+
"application/vnd.cryptii.pipe+json": {
|
|
4111
|
+
source: "iana",
|
|
4112
|
+
compressible: true
|
|
4113
|
+
},
|
|
4114
|
+
"application/vnd.crypto-shade-file": {
|
|
4115
|
+
source: "iana"
|
|
4116
|
+
},
|
|
4117
|
+
"application/vnd.cryptomator.encrypted": {
|
|
4118
|
+
source: "iana"
|
|
4119
|
+
},
|
|
4120
|
+
"application/vnd.cryptomator.vault": {
|
|
4121
|
+
source: "iana"
|
|
3628
4122
|
},
|
|
3629
4123
|
"application/vnd.ctc-posml": {
|
|
3630
4124
|
source: "iana",
|
|
@@ -3675,10 +4169,24 @@ var require$$0 = {
|
|
|
3675
4169
|
},
|
|
3676
4170
|
"application/vnd.cybank": {
|
|
3677
4171
|
source: "iana"
|
|
4172
|
+
},
|
|
4173
|
+
"application/vnd.cyclonedx+json": {
|
|
4174
|
+
source: "iana",
|
|
4175
|
+
compressible: true
|
|
4176
|
+
},
|
|
4177
|
+
"application/vnd.cyclonedx+xml": {
|
|
4178
|
+
source: "iana",
|
|
4179
|
+
compressible: true
|
|
3678
4180
|
},
|
|
3679
4181
|
"application/vnd.d2l.coursepackage1p0+zip": {
|
|
3680
4182
|
source: "iana",
|
|
3681
4183
|
compressible: false
|
|
4184
|
+
},
|
|
4185
|
+
"application/vnd.d3m-dataset": {
|
|
4186
|
+
source: "iana"
|
|
4187
|
+
},
|
|
4188
|
+
"application/vnd.d3m-problem": {
|
|
4189
|
+
source: "iana"
|
|
3682
4190
|
},
|
|
3683
4191
|
"application/vnd.dart": {
|
|
3684
4192
|
source: "iana",
|
|
@@ -3700,6 +4208,12 @@ var require$$0 = {
|
|
|
3700
4208
|
"application/vnd.dataresource+json": {
|
|
3701
4209
|
source: "iana",
|
|
3702
4210
|
compressible: true
|
|
4211
|
+
},
|
|
4212
|
+
"application/vnd.dbf": {
|
|
4213
|
+
source: "iana",
|
|
4214
|
+
extensions: [
|
|
4215
|
+
"dbf"
|
|
4216
|
+
]
|
|
3703
4217
|
},
|
|
3704
4218
|
"application/vnd.debian.binary-package": {
|
|
3705
4219
|
source: "iana"
|
|
@@ -3812,6 +4326,10 @@ var require$$0 = {
|
|
|
3812
4326
|
extensions: [
|
|
3813
4327
|
"ait"
|
|
3814
4328
|
]
|
|
4329
|
+
},
|
|
4330
|
+
"application/vnd.dvb.dvbisl+xml": {
|
|
4331
|
+
source: "iana",
|
|
4332
|
+
compressible: true
|
|
3815
4333
|
},
|
|
3816
4334
|
"application/vnd.dvb.dvbj": {
|
|
3817
4335
|
source: "iana"
|
|
@@ -3897,6 +4415,10 @@ var require$$0 = {
|
|
|
3897
4415
|
},
|
|
3898
4416
|
"application/vnd.ecip.rlp": {
|
|
3899
4417
|
source: "iana"
|
|
4418
|
+
},
|
|
4419
|
+
"application/vnd.eclipse.ditto+json": {
|
|
4420
|
+
source: "iana",
|
|
4421
|
+
compressible: true
|
|
3900
4422
|
},
|
|
3901
4423
|
"application/vnd.ecowin.chart": {
|
|
3902
4424
|
source: "iana",
|
|
@@ -4071,6 +4593,10 @@ var require$$0 = {
|
|
|
4071
4593
|
},
|
|
4072
4594
|
"application/vnd.etsi.tsl.der": {
|
|
4073
4595
|
source: "iana"
|
|
4596
|
+
},
|
|
4597
|
+
"application/vnd.eu.kasparian.car+json": {
|
|
4598
|
+
source: "iana",
|
|
4599
|
+
compressible: true
|
|
4074
4600
|
},
|
|
4075
4601
|
"application/vnd.eudora.data": {
|
|
4076
4602
|
source: "iana"
|
|
@@ -4083,6 +4609,13 @@ var require$$0 = {
|
|
|
4083
4609
|
},
|
|
4084
4610
|
"application/vnd.evolv.ecig.theme": {
|
|
4085
4611
|
source: "iana"
|
|
4612
|
+
},
|
|
4613
|
+
"application/vnd.exstream-empower+zip": {
|
|
4614
|
+
source: "iana",
|
|
4615
|
+
compressible: false
|
|
4616
|
+
},
|
|
4617
|
+
"application/vnd.exstream-package": {
|
|
4618
|
+
source: "iana"
|
|
4086
4619
|
},
|
|
4087
4620
|
"application/vnd.ezpix-album": {
|
|
4088
4621
|
source: "iana",
|
|
@@ -4098,6 +4631,10 @@ var require$$0 = {
|
|
|
4098
4631
|
},
|
|
4099
4632
|
"application/vnd.f-secure.mobile": {
|
|
4100
4633
|
source: "iana"
|
|
4634
|
+
},
|
|
4635
|
+
"application/vnd.familysearch.gedcom+zip": {
|
|
4636
|
+
source: "iana",
|
|
4637
|
+
compressible: false
|
|
4101
4638
|
},
|
|
4102
4639
|
"application/vnd.fastcopy-disk-image": {
|
|
4103
4640
|
source: "iana"
|
|
@@ -4123,6 +4660,10 @@ var require$$0 = {
|
|
|
4123
4660
|
},
|
|
4124
4661
|
"application/vnd.ffsns": {
|
|
4125
4662
|
source: "iana"
|
|
4663
|
+
},
|
|
4664
|
+
"application/vnd.ficlab.flb+zip": {
|
|
4665
|
+
source: "iana",
|
|
4666
|
+
compressible: false
|
|
4126
4667
|
},
|
|
4127
4668
|
"application/vnd.filmit.zfc": {
|
|
4128
4669
|
source: "iana"
|
|
@@ -4174,6 +4715,19 @@ var require$$0 = {
|
|
|
4174
4715
|
extensions: [
|
|
4175
4716
|
"fsc"
|
|
4176
4717
|
]
|
|
4718
|
+
},
|
|
4719
|
+
"application/vnd.fujifilm.fb.docuworks": {
|
|
4720
|
+
source: "iana"
|
|
4721
|
+
},
|
|
4722
|
+
"application/vnd.fujifilm.fb.docuworks.binder": {
|
|
4723
|
+
source: "iana"
|
|
4724
|
+
},
|
|
4725
|
+
"application/vnd.fujifilm.fb.docuworks.container": {
|
|
4726
|
+
source: "iana"
|
|
4727
|
+
},
|
|
4728
|
+
"application/vnd.fujifilm.fb.jfi+xml": {
|
|
4729
|
+
source: "iana",
|
|
4730
|
+
compressible: true
|
|
4177
4731
|
},
|
|
4178
4732
|
"application/vnd.fujitsu.oasys": {
|
|
4179
4733
|
source: "iana",
|
|
@@ -4237,6 +4791,9 @@ var require$$0 = {
|
|
|
4237
4791
|
},
|
|
4238
4792
|
"application/vnd.fut-misnet": {
|
|
4239
4793
|
source: "iana"
|
|
4794
|
+
},
|
|
4795
|
+
"application/vnd.futoin+cbor": {
|
|
4796
|
+
source: "iana"
|
|
4240
4797
|
},
|
|
4241
4798
|
"application/vnd.futoin+json": {
|
|
4242
4799
|
source: "iana",
|
|
@@ -4253,6 +4810,10 @@ var require$$0 = {
|
|
|
4253
4810
|
extensions: [
|
|
4254
4811
|
"txd"
|
|
4255
4812
|
]
|
|
4813
|
+
},
|
|
4814
|
+
"application/vnd.gentics.grd+json": {
|
|
4815
|
+
source: "iana",
|
|
4816
|
+
compressible: true
|
|
4256
4817
|
},
|
|
4257
4818
|
"application/vnd.geo+json": {
|
|
4258
4819
|
source: "iana",
|
|
@@ -4267,6 +4828,9 @@ var require$$0 = {
|
|
|
4267
4828
|
extensions: [
|
|
4268
4829
|
"ggb"
|
|
4269
4830
|
]
|
|
4831
|
+
},
|
|
4832
|
+
"application/vnd.geogebra.slides": {
|
|
4833
|
+
source: "iana"
|
|
4270
4834
|
},
|
|
4271
4835
|
"application/vnd.geogebra.tool": {
|
|
4272
4836
|
source: "iana",
|
|
@@ -4453,6 +5017,16 @@ var require$$0 = {
|
|
|
4453
5017
|
extensions: [
|
|
4454
5018
|
"les"
|
|
4455
5019
|
]
|
|
5020
|
+
},
|
|
5021
|
+
"application/vnd.hl7cda+xml": {
|
|
5022
|
+
source: "iana",
|
|
5023
|
+
charset: "UTF-8",
|
|
5024
|
+
compressible: true
|
|
5025
|
+
},
|
|
5026
|
+
"application/vnd.hl7v2+xml": {
|
|
5027
|
+
source: "iana",
|
|
5028
|
+
charset: "UTF-8",
|
|
5029
|
+
compressible: true
|
|
4456
5030
|
},
|
|
4457
5031
|
"application/vnd.hp-hpgl": {
|
|
4458
5032
|
source: "iana",
|
|
@@ -4721,6 +5295,10 @@ var require$$0 = {
|
|
|
4721
5295
|
extensions: [
|
|
4722
5296
|
"fcs"
|
|
4723
5297
|
]
|
|
5298
|
+
},
|
|
5299
|
+
"application/vnd.iso11783-10+zip": {
|
|
5300
|
+
source: "iana",
|
|
5301
|
+
compressible: false
|
|
4724
5302
|
},
|
|
4725
5303
|
"application/vnd.jam": {
|
|
4726
5304
|
source: "iana",
|
|
@@ -4863,6 +5441,9 @@ var require$$0 = {
|
|
|
4863
5441
|
extensions: [
|
|
4864
5442
|
"sse"
|
|
4865
5443
|
]
|
|
5444
|
+
},
|
|
5445
|
+
"application/vnd.las": {
|
|
5446
|
+
source: "iana"
|
|
4866
5447
|
},
|
|
4867
5448
|
"application/vnd.las.las+json": {
|
|
4868
5449
|
source: "iana",
|
|
@@ -4874,6 +5455,9 @@ var require$$0 = {
|
|
|
4874
5455
|
extensions: [
|
|
4875
5456
|
"lasxml"
|
|
4876
5457
|
]
|
|
5458
|
+
},
|
|
5459
|
+
"application/vnd.laszip": {
|
|
5460
|
+
source: "iana"
|
|
4877
5461
|
},
|
|
4878
5462
|
"application/vnd.leap+json": {
|
|
4879
5463
|
source: "iana",
|
|
@@ -4895,6 +5479,13 @@ var require$$0 = {
|
|
|
4895
5479
|
extensions: [
|
|
4896
5480
|
"lbe"
|
|
4897
5481
|
]
|
|
5482
|
+
},
|
|
5483
|
+
"application/vnd.logipipe.circuit+zip": {
|
|
5484
|
+
source: "iana",
|
|
5485
|
+
compressible: false
|
|
5486
|
+
},
|
|
5487
|
+
"application/vnd.loom": {
|
|
5488
|
+
source: "iana"
|
|
4898
5489
|
},
|
|
4899
5490
|
"application/vnd.lotus-1-2-3": {
|
|
4900
5491
|
source: "iana",
|
|
@@ -4945,7 +5536,10 @@ var require$$0 = {
|
|
|
4945
5536
|
]
|
|
4946
5537
|
},
|
|
4947
5538
|
"application/vnd.mapbox-vector-tile": {
|
|
4948
|
-
source: "iana"
|
|
5539
|
+
source: "iana",
|
|
5540
|
+
extensions: [
|
|
5541
|
+
"mvt"
|
|
5542
|
+
]
|
|
4949
5543
|
},
|
|
4950
5544
|
"application/vnd.marlin.drm.actiontoken+xml": {
|
|
4951
5545
|
source: "iana",
|
|
@@ -4965,6 +5559,10 @@ var require$$0 = {
|
|
|
4965
5559
|
"application/vnd.mason+json": {
|
|
4966
5560
|
source: "iana",
|
|
4967
5561
|
compressible: true
|
|
5562
|
+
},
|
|
5563
|
+
"application/vnd.maxar.archive.3tz+zip": {
|
|
5564
|
+
source: "iana",
|
|
5565
|
+
compressible: false
|
|
4968
5566
|
},
|
|
4969
5567
|
"application/vnd.maxmind.maxmind-db": {
|
|
4970
5568
|
source: "iana"
|
|
@@ -5403,6 +6001,10 @@ var require$$0 = {
|
|
|
5403
6001
|
extensions: [
|
|
5404
6002
|
"taglet"
|
|
5405
6003
|
]
|
|
6004
|
+
},
|
|
6005
|
+
"application/vnd.nacamar.ybrid+json": {
|
|
6006
|
+
source: "iana",
|
|
6007
|
+
compressible: true
|
|
5406
6008
|
},
|
|
5407
6009
|
"application/vnd.ncd.control": {
|
|
5408
6010
|
source: "iana"
|
|
@@ -5413,6 +6015,9 @@ var require$$0 = {
|
|
|
5413
6015
|
"application/vnd.nearst.inv+json": {
|
|
5414
6016
|
source: "iana",
|
|
5415
6017
|
compressible: true
|
|
6018
|
+
},
|
|
6019
|
+
"application/vnd.nebumind.line": {
|
|
6020
|
+
source: "iana"
|
|
5416
6021
|
},
|
|
5417
6022
|
"application/vnd.nervana": {
|
|
5418
6023
|
source: "iana"
|
|
@@ -5490,7 +6095,10 @@ var require$$0 = {
|
|
|
5490
6095
|
},
|
|
5491
6096
|
"application/vnd.nokia.n-gage.ac+xml": {
|
|
5492
6097
|
source: "iana",
|
|
5493
|
-
compressible: true
|
|
6098
|
+
compressible: true,
|
|
6099
|
+
extensions: [
|
|
6100
|
+
"ac"
|
|
6101
|
+
]
|
|
5494
6102
|
},
|
|
5495
6103
|
"application/vnd.nokia.n-gage.data": {
|
|
5496
6104
|
source: "iana",
|
|
@@ -5670,6 +6278,10 @@ var require$$0 = {
|
|
|
5670
6278
|
},
|
|
5671
6279
|
"application/vnd.ocf+cbor": {
|
|
5672
6280
|
source: "iana"
|
|
6281
|
+
},
|
|
6282
|
+
"application/vnd.oci.image.manifest.v1+json": {
|
|
6283
|
+
source: "iana",
|
|
6284
|
+
compressible: true
|
|
5673
6285
|
},
|
|
5674
6286
|
"application/vnd.oftn.l10n+json": {
|
|
5675
6287
|
source: "iana",
|
|
@@ -5818,6 +6430,9 @@ var require$$0 = {
|
|
|
5818
6430
|
"application/vnd.oma.group-usage-list+xml": {
|
|
5819
6431
|
source: "iana",
|
|
5820
6432
|
compressible: true
|
|
6433
|
+
},
|
|
6434
|
+
"application/vnd.oma.lwm2m+cbor": {
|
|
6435
|
+
source: "iana"
|
|
5821
6436
|
},
|
|
5822
6437
|
"application/vnd.oma.lwm2m+json": {
|
|
5823
6438
|
source: "iana",
|
|
@@ -5863,14 +6478,17 @@ var require$$0 = {
|
|
|
5863
6478
|
},
|
|
5864
6479
|
"application/vnd.omads-email+xml": {
|
|
5865
6480
|
source: "iana",
|
|
6481
|
+
charset: "UTF-8",
|
|
5866
6482
|
compressible: true
|
|
5867
6483
|
},
|
|
5868
6484
|
"application/vnd.omads-file+xml": {
|
|
5869
6485
|
source: "iana",
|
|
6486
|
+
charset: "UTF-8",
|
|
5870
6487
|
compressible: true
|
|
5871
6488
|
},
|
|
5872
6489
|
"application/vnd.omads-folder+xml": {
|
|
5873
6490
|
source: "iana",
|
|
6491
|
+
charset: "UTF-8",
|
|
5874
6492
|
compressible: true
|
|
5875
6493
|
},
|
|
5876
6494
|
"application/vnd.omaloc-supl-init": {
|
|
@@ -5896,7 +6514,10 @@ var require$$0 = {
|
|
|
5896
6514
|
},
|
|
5897
6515
|
"application/vnd.openblox.game+xml": {
|
|
5898
6516
|
source: "iana",
|
|
5899
|
-
compressible: true
|
|
6517
|
+
compressible: true,
|
|
6518
|
+
extensions: [
|
|
6519
|
+
"obgx"
|
|
6520
|
+
]
|
|
5900
6521
|
},
|
|
5901
6522
|
"application/vnd.openblox.game-binary": {
|
|
5902
6523
|
source: "iana"
|
|
@@ -5912,7 +6533,13 @@ var require$$0 = {
|
|
|
5912
6533
|
},
|
|
5913
6534
|
"application/vnd.openstreetmap.data+xml": {
|
|
5914
6535
|
source: "iana",
|
|
5915
|
-
compressible: true
|
|
6536
|
+
compressible: true,
|
|
6537
|
+
extensions: [
|
|
6538
|
+
"osm"
|
|
6539
|
+
]
|
|
6540
|
+
},
|
|
6541
|
+
"application/vnd.opentimestamps.ots": {
|
|
6542
|
+
source: "iana"
|
|
5916
6543
|
},
|
|
5917
6544
|
"application/vnd.openxmlformats-officedocument.custom-properties+xml": {
|
|
5918
6545
|
source: "iana",
|
|
@@ -6286,6 +6913,9 @@ var require$$0 = {
|
|
|
6286
6913
|
},
|
|
6287
6914
|
"application/vnd.patentdive": {
|
|
6288
6915
|
source: "iana"
|
|
6916
|
+
},
|
|
6917
|
+
"application/vnd.patientecommsdoc": {
|
|
6918
|
+
source: "iana"
|
|
6289
6919
|
},
|
|
6290
6920
|
"application/vnd.pawaafile": {
|
|
6291
6921
|
source: "iana",
|
|
@@ -6478,7 +7108,10 @@ var require$$0 = {
|
|
|
6478
7108
|
source: "iana"
|
|
6479
7109
|
},
|
|
6480
7110
|
"application/vnd.rar": {
|
|
6481
|
-
source: "iana"
|
|
7111
|
+
source: "iana",
|
|
7112
|
+
extensions: [
|
|
7113
|
+
"rar"
|
|
7114
|
+
]
|
|
6482
7115
|
},
|
|
6483
7116
|
"application/vnd.realvnc.bed": {
|
|
6484
7117
|
source: "iana",
|
|
@@ -6501,6 +7134,9 @@ var require$$0 = {
|
|
|
6501
7134
|
},
|
|
6502
7135
|
"application/vnd.renlearn.rlprint": {
|
|
6503
7136
|
source: "iana"
|
|
7137
|
+
},
|
|
7138
|
+
"application/vnd.resilient.logic": {
|
|
7139
|
+
source: "iana"
|
|
6504
7140
|
},
|
|
6505
7141
|
"application/vnd.restful+json": {
|
|
6506
7142
|
source: "iana",
|
|
@@ -6551,6 +7187,9 @@ var require$$0 = {
|
|
|
6551
7187
|
extensions: [
|
|
6552
7188
|
"st"
|
|
6553
7189
|
]
|
|
7190
|
+
},
|
|
7191
|
+
"application/vnd.sar": {
|
|
7192
|
+
source: "iana"
|
|
6554
7193
|
},
|
|
6555
7194
|
"application/vnd.sbm.cid": {
|
|
6556
7195
|
source: "iana"
|
|
@@ -6599,6 +7238,10 @@ var require$$0 = {
|
|
|
6599
7238
|
extensions: [
|
|
6600
7239
|
"see"
|
|
6601
7240
|
]
|
|
7241
|
+
},
|
|
7242
|
+
"application/vnd.seis+json": {
|
|
7243
|
+
source: "iana",
|
|
7244
|
+
compressible: true
|
|
6602
7245
|
},
|
|
6603
7246
|
"application/vnd.sema": {
|
|
6604
7247
|
source: "iana",
|
|
@@ -6617,6 +7260,9 @@ var require$$0 = {
|
|
|
6617
7260
|
extensions: [
|
|
6618
7261
|
"semf"
|
|
6619
7262
|
]
|
|
7263
|
+
},
|
|
7264
|
+
"application/vnd.shade-save-file": {
|
|
7265
|
+
source: "iana"
|
|
6620
7266
|
},
|
|
6621
7267
|
"application/vnd.shana.informed.formdata": {
|
|
6622
7268
|
source: "iana",
|
|
@@ -6645,6 +7291,16 @@ var require$$0 = {
|
|
|
6645
7291
|
"application/vnd.shootproof+json": {
|
|
6646
7292
|
source: "iana",
|
|
6647
7293
|
compressible: true
|
|
7294
|
+
},
|
|
7295
|
+
"application/vnd.shopkick+json": {
|
|
7296
|
+
source: "iana",
|
|
7297
|
+
compressible: true
|
|
7298
|
+
},
|
|
7299
|
+
"application/vnd.shp": {
|
|
7300
|
+
source: "iana"
|
|
7301
|
+
},
|
|
7302
|
+
"application/vnd.shx": {
|
|
7303
|
+
source: "iana"
|
|
6648
7304
|
},
|
|
6649
7305
|
"application/vnd.sigrok.session": {
|
|
6650
7306
|
source: "iana"
|
|
@@ -6674,10 +7330,16 @@ var require$$0 = {
|
|
|
6674
7330
|
extensions: [
|
|
6675
7331
|
"teacher"
|
|
6676
7332
|
]
|
|
7333
|
+
},
|
|
7334
|
+
"application/vnd.snesdev-page-table": {
|
|
7335
|
+
source: "iana"
|
|
6677
7336
|
},
|
|
6678
7337
|
"application/vnd.software602.filler.form+xml": {
|
|
6679
7338
|
source: "iana",
|
|
6680
|
-
compressible: true
|
|
7339
|
+
compressible: true,
|
|
7340
|
+
extensions: [
|
|
7341
|
+
"fo"
|
|
7342
|
+
]
|
|
6681
7343
|
},
|
|
6682
7344
|
"application/vnd.software602.filler.form-xml-zip": {
|
|
6683
7345
|
source: "iana"
|
|
@@ -6848,6 +7510,14 @@ var require$$0 = {
|
|
|
6848
7510
|
},
|
|
6849
7511
|
"application/vnd.swiftview-ics": {
|
|
6850
7512
|
source: "iana"
|
|
7513
|
+
},
|
|
7514
|
+
"application/vnd.sycle+xml": {
|
|
7515
|
+
source: "iana",
|
|
7516
|
+
compressible: true
|
|
7517
|
+
},
|
|
7518
|
+
"application/vnd.syft+json": {
|
|
7519
|
+
source: "iana",
|
|
7520
|
+
compressible: true
|
|
6851
7521
|
},
|
|
6852
7522
|
"application/vnd.symbian.install": {
|
|
6853
7523
|
source: "apache",
|
|
@@ -6858,6 +7528,7 @@ var require$$0 = {
|
|
|
6858
7528
|
},
|
|
6859
7529
|
"application/vnd.syncml+xml": {
|
|
6860
7530
|
source: "iana",
|
|
7531
|
+
charset: "UTF-8",
|
|
6861
7532
|
compressible: true,
|
|
6862
7533
|
extensions: [
|
|
6863
7534
|
"xsm"
|
|
@@ -6865,12 +7536,14 @@ var require$$0 = {
|
|
|
6865
7536
|
},
|
|
6866
7537
|
"application/vnd.syncml.dm+wbxml": {
|
|
6867
7538
|
source: "iana",
|
|
7539
|
+
charset: "UTF-8",
|
|
6868
7540
|
extensions: [
|
|
6869
7541
|
"bdm"
|
|
6870
7542
|
]
|
|
6871
7543
|
},
|
|
6872
7544
|
"application/vnd.syncml.dm+xml": {
|
|
6873
7545
|
source: "iana",
|
|
7546
|
+
charset: "UTF-8",
|
|
6874
7547
|
compressible: true,
|
|
6875
7548
|
extensions: [
|
|
6876
7549
|
"xdm"
|
|
@@ -6884,13 +7557,18 @@ var require$$0 = {
|
|
|
6884
7557
|
},
|
|
6885
7558
|
"application/vnd.syncml.dmddf+xml": {
|
|
6886
7559
|
source: "iana",
|
|
6887
|
-
|
|
7560
|
+
charset: "UTF-8",
|
|
7561
|
+
compressible: true,
|
|
7562
|
+
extensions: [
|
|
7563
|
+
"ddf"
|
|
7564
|
+
]
|
|
6888
7565
|
},
|
|
6889
7566
|
"application/vnd.syncml.dmtnds+wbxml": {
|
|
6890
7567
|
source: "iana"
|
|
6891
7568
|
},
|
|
6892
7569
|
"application/vnd.syncml.dmtnds+xml": {
|
|
6893
7570
|
source: "iana",
|
|
7571
|
+
charset: "UTF-8",
|
|
6894
7572
|
compressible: true
|
|
6895
7573
|
},
|
|
6896
7574
|
"application/vnd.syncml.ds.notification": {
|
|
@@ -7053,6 +7731,16 @@ var require$$0 = {
|
|
|
7053
7731
|
},
|
|
7054
7732
|
"application/vnd.verimatrix.vcas": {
|
|
7055
7733
|
source: "iana"
|
|
7734
|
+
},
|
|
7735
|
+
"application/vnd.veritone.aion+json": {
|
|
7736
|
+
source: "iana",
|
|
7737
|
+
compressible: true
|
|
7738
|
+
},
|
|
7739
|
+
"application/vnd.veryant.thin": {
|
|
7740
|
+
source: "iana"
|
|
7741
|
+
},
|
|
7742
|
+
"application/vnd.ves.encrypted": {
|
|
7743
|
+
source: "iana"
|
|
7056
7744
|
},
|
|
7057
7745
|
"application/vnd.vidsoft.vidconference": {
|
|
7058
7746
|
source: "iana"
|
|
@@ -7089,6 +7777,7 @@ var require$$0 = {
|
|
|
7089
7777
|
},
|
|
7090
7778
|
"application/vnd.wap.wbxml": {
|
|
7091
7779
|
source: "iana",
|
|
7780
|
+
charset: "UTF-8",
|
|
7092
7781
|
extensions: [
|
|
7093
7782
|
"wbxml"
|
|
7094
7783
|
]
|
|
@@ -7110,6 +7799,9 @@ var require$$0 = {
|
|
|
7110
7799
|
extensions: [
|
|
7111
7800
|
"wtb"
|
|
7112
7801
|
]
|
|
7802
|
+
},
|
|
7803
|
+
"application/vnd.wfa.dpp": {
|
|
7804
|
+
source: "iana"
|
|
7113
7805
|
},
|
|
7114
7806
|
"application/vnd.wfa.p2p": {
|
|
7115
7807
|
source: "iana"
|
|
@@ -7301,6 +7993,7 @@ var require$$0 = {
|
|
|
7301
7993
|
source: "iana"
|
|
7302
7994
|
},
|
|
7303
7995
|
"application/wasm": {
|
|
7996
|
+
source: "iana",
|
|
7304
7997
|
compressible: true,
|
|
7305
7998
|
extensions: [
|
|
7306
7999
|
"wasm"
|
|
@@ -7308,7 +8001,10 @@ var require$$0 = {
|
|
|
7308
8001
|
},
|
|
7309
8002
|
"application/watcherinfo+xml": {
|
|
7310
8003
|
source: "iana",
|
|
7311
|
-
compressible: true
|
|
8004
|
+
compressible: true,
|
|
8005
|
+
extensions: [
|
|
8006
|
+
"wif"
|
|
8007
|
+
]
|
|
7312
8008
|
},
|
|
7313
8009
|
"application/webpush-options+json": {
|
|
7314
8010
|
source: "iana",
|
|
@@ -7714,6 +8410,21 @@ var require$$0 = {
|
|
|
7714
8410
|
extensions: [
|
|
7715
8411
|
"iso"
|
|
7716
8412
|
]
|
|
8413
|
+
},
|
|
8414
|
+
"application/x-iwork-keynote-sffkey": {
|
|
8415
|
+
extensions: [
|
|
8416
|
+
"key"
|
|
8417
|
+
]
|
|
8418
|
+
},
|
|
8419
|
+
"application/x-iwork-numbers-sffnumbers": {
|
|
8420
|
+
extensions: [
|
|
8421
|
+
"numbers"
|
|
8422
|
+
]
|
|
8423
|
+
},
|
|
8424
|
+
"application/x-iwork-pages-sffpages": {
|
|
8425
|
+
extensions: [
|
|
8426
|
+
"pages"
|
|
8427
|
+
]
|
|
7717
8428
|
},
|
|
7718
8429
|
"application/x-java-archive-diff": {
|
|
7719
8430
|
source: "nginx",
|
|
@@ -7730,6 +8441,11 @@ var require$$0 = {
|
|
|
7730
8441
|
},
|
|
7731
8442
|
"application/x-javascript": {
|
|
7732
8443
|
compressible: true
|
|
8444
|
+
},
|
|
8445
|
+
"application/x-keepass2": {
|
|
8446
|
+
extensions: [
|
|
8447
|
+
"kdbx"
|
|
8448
|
+
]
|
|
7733
8449
|
},
|
|
7734
8450
|
"application/x-latex": {
|
|
7735
8451
|
source: "apache",
|
|
@@ -7941,6 +8657,9 @@ var require$$0 = {
|
|
|
7941
8657
|
extensions: [
|
|
7942
8658
|
"p7r"
|
|
7943
8659
|
]
|
|
8660
|
+
},
|
|
8661
|
+
"application/x-pki-message": {
|
|
8662
|
+
source: "iana"
|
|
7944
8663
|
},
|
|
7945
8664
|
"application/x-rar-compressed": {
|
|
7946
8665
|
source: "apache",
|
|
@@ -8152,12 +8871,18 @@ var require$$0 = {
|
|
|
8152
8871
|
compressible: true
|
|
8153
8872
|
},
|
|
8154
8873
|
"application/x-x509-ca-cert": {
|
|
8155
|
-
source: "
|
|
8874
|
+
source: "iana",
|
|
8156
8875
|
extensions: [
|
|
8157
8876
|
"der",
|
|
8158
8877
|
"crt",
|
|
8159
8878
|
"pem"
|
|
8160
8879
|
]
|
|
8880
|
+
},
|
|
8881
|
+
"application/x-x509-ca-ra-cert": {
|
|
8882
|
+
source: "iana"
|
|
8883
|
+
},
|
|
8884
|
+
"application/x-x509-next-ca-cert": {
|
|
8885
|
+
source: "iana"
|
|
8161
8886
|
},
|
|
8162
8887
|
"application/x-xfig": {
|
|
8163
8888
|
source: "apache",
|
|
@@ -8214,11 +8939,17 @@ var require$$0 = {
|
|
|
8214
8939
|
},
|
|
8215
8940
|
"application/xcap-att+xml": {
|
|
8216
8941
|
source: "iana",
|
|
8217
|
-
compressible: true
|
|
8942
|
+
compressible: true,
|
|
8943
|
+
extensions: [
|
|
8944
|
+
"xav"
|
|
8945
|
+
]
|
|
8218
8946
|
},
|
|
8219
8947
|
"application/xcap-caps+xml": {
|
|
8220
8948
|
source: "iana",
|
|
8221
|
-
compressible: true
|
|
8949
|
+
compressible: true,
|
|
8950
|
+
extensions: [
|
|
8951
|
+
"xca"
|
|
8952
|
+
]
|
|
8222
8953
|
},
|
|
8223
8954
|
"application/xcap-diff+xml": {
|
|
8224
8955
|
source: "iana",
|
|
@@ -8229,7 +8960,10 @@ var require$$0 = {
|
|
|
8229
8960
|
},
|
|
8230
8961
|
"application/xcap-el+xml": {
|
|
8231
8962
|
source: "iana",
|
|
8232
|
-
compressible: true
|
|
8963
|
+
compressible: true,
|
|
8964
|
+
extensions: [
|
|
8965
|
+
"xel"
|
|
8966
|
+
]
|
|
8233
8967
|
},
|
|
8234
8968
|
"application/xcap-error+xml": {
|
|
8235
8969
|
source: "iana",
|
|
@@ -8237,7 +8971,10 @@ var require$$0 = {
|
|
|
8237
8971
|
},
|
|
8238
8972
|
"application/xcap-ns+xml": {
|
|
8239
8973
|
source: "iana",
|
|
8240
|
-
compressible: true
|
|
8974
|
+
compressible: true,
|
|
8975
|
+
extensions: [
|
|
8976
|
+
"xns"
|
|
8977
|
+
]
|
|
8241
8978
|
},
|
|
8242
8979
|
"application/xcon-conference-info+xml": {
|
|
8243
8980
|
source: "iana",
|
|
@@ -8268,7 +9005,10 @@ var require$$0 = {
|
|
|
8268
9005
|
},
|
|
8269
9006
|
"application/xliff+xml": {
|
|
8270
9007
|
source: "iana",
|
|
8271
|
-
compressible: true
|
|
9008
|
+
compressible: true,
|
|
9009
|
+
extensions: [
|
|
9010
|
+
"xlf"
|
|
9011
|
+
]
|
|
8272
9012
|
},
|
|
8273
9013
|
"application/xml": {
|
|
8274
9014
|
source: "iana",
|
|
@@ -8316,6 +9056,7 @@ var require$$0 = {
|
|
|
8316
9056
|
source: "iana",
|
|
8317
9057
|
compressible: true,
|
|
8318
9058
|
extensions: [
|
|
9059
|
+
"xsl",
|
|
8319
9060
|
"xslt"
|
|
8320
9061
|
]
|
|
8321
9062
|
},
|
|
@@ -8407,7 +9148,10 @@ var require$$0 = {
|
|
|
8407
9148
|
]
|
|
8408
9149
|
},
|
|
8409
9150
|
"audio/amr": {
|
|
8410
|
-
source: "iana"
|
|
9151
|
+
source: "iana",
|
|
9152
|
+
extensions: [
|
|
9153
|
+
"amr"
|
|
9154
|
+
]
|
|
8411
9155
|
},
|
|
8412
9156
|
"audio/amr-wb": {
|
|
8413
9157
|
source: "iana"
|
|
@@ -8521,6 +9265,9 @@ var require$$0 = {
|
|
|
8521
9265
|
},
|
|
8522
9266
|
"audio/evs": {
|
|
8523
9267
|
source: "iana"
|
|
9268
|
+
},
|
|
9269
|
+
"audio/flexfec": {
|
|
9270
|
+
source: "iana"
|
|
8524
9271
|
},
|
|
8525
9272
|
"audio/fwdred": {
|
|
8526
9273
|
source: "iana"
|
|
@@ -8612,6 +9359,9 @@ var require$$0 = {
|
|
|
8612
9359
|
},
|
|
8613
9360
|
"audio/melp600": {
|
|
8614
9361
|
source: "iana"
|
|
9362
|
+
},
|
|
9363
|
+
"audio/mhas": {
|
|
9364
|
+
source: "iana"
|
|
8615
9365
|
},
|
|
8616
9366
|
"audio/midi": {
|
|
8617
9367
|
source: "apache",
|
|
@@ -8623,7 +9373,10 @@ var require$$0 = {
|
|
|
8623
9373
|
]
|
|
8624
9374
|
},
|
|
8625
9375
|
"audio/mobile-xmf": {
|
|
8626
|
-
source: "iana"
|
|
9376
|
+
source: "iana",
|
|
9377
|
+
extensions: [
|
|
9378
|
+
"mxmf"
|
|
9379
|
+
]
|
|
8627
9380
|
},
|
|
8628
9381
|
"audio/mp3": {
|
|
8629
9382
|
compressible: false,
|
|
@@ -8672,7 +9425,8 @@ var require$$0 = {
|
|
|
8672
9425
|
extensions: [
|
|
8673
9426
|
"oga",
|
|
8674
9427
|
"ogg",
|
|
8675
|
-
"spx"
|
|
9428
|
+
"spx",
|
|
9429
|
+
"opus"
|
|
8676
9430
|
]
|
|
8677
9431
|
},
|
|
8678
9432
|
"audio/opus": {
|
|
@@ -8722,6 +9476,9 @@ var require$$0 = {
|
|
|
8722
9476
|
extensions: [
|
|
8723
9477
|
"s3m"
|
|
8724
9478
|
]
|
|
9479
|
+
},
|
|
9480
|
+
"audio/scip": {
|
|
9481
|
+
source: "iana"
|
|
8725
9482
|
},
|
|
8726
9483
|
"audio/silk": {
|
|
8727
9484
|
source: "apache",
|
|
@@ -8737,6 +9494,9 @@ var require$$0 = {
|
|
|
8737
9494
|
},
|
|
8738
9495
|
"audio/smv0": {
|
|
8739
9496
|
source: "iana"
|
|
9497
|
+
},
|
|
9498
|
+
"audio/sofa": {
|
|
9499
|
+
source: "iana"
|
|
8740
9500
|
},
|
|
8741
9501
|
"audio/sp-midi": {
|
|
8742
9502
|
source: "iana"
|
|
@@ -8752,9 +9512,18 @@ var require$$0 = {
|
|
|
8752
9512
|
},
|
|
8753
9513
|
"audio/telephone-event": {
|
|
8754
9514
|
source: "iana"
|
|
9515
|
+
},
|
|
9516
|
+
"audio/tetra_acelp": {
|
|
9517
|
+
source: "iana"
|
|
9518
|
+
},
|
|
9519
|
+
"audio/tetra_acelp_bb": {
|
|
9520
|
+
source: "iana"
|
|
8755
9521
|
},
|
|
8756
9522
|
"audio/tone": {
|
|
8757
9523
|
source: "iana"
|
|
9524
|
+
},
|
|
9525
|
+
"audio/tsvcis": {
|
|
9526
|
+
source: "iana"
|
|
8758
9527
|
},
|
|
8759
9528
|
"audio/uemclip": {
|
|
8760
9529
|
source: "iana"
|
|
@@ -8852,6 +9621,9 @@ var require$$0 = {
|
|
|
8852
9621
|
extensions: [
|
|
8853
9622
|
"dtshd"
|
|
8854
9623
|
]
|
|
9624
|
+
},
|
|
9625
|
+
"audio/vnd.dts.uhd": {
|
|
9626
|
+
source: "iana"
|
|
8855
9627
|
},
|
|
8856
9628
|
"audio/vnd.dvb.file": {
|
|
8857
9629
|
source: "iana"
|
|
@@ -9103,6 +9875,7 @@ var require$$0 = {
|
|
|
9103
9875
|
},
|
|
9104
9876
|
"font/ttf": {
|
|
9105
9877
|
source: "iana",
|
|
9878
|
+
compressible: true,
|
|
9106
9879
|
extensions: [
|
|
9107
9880
|
"ttf"
|
|
9108
9881
|
]
|
|
@@ -9132,10 +9905,23 @@ var require$$0 = {
|
|
|
9132
9905
|
]
|
|
9133
9906
|
},
|
|
9134
9907
|
"image/avci": {
|
|
9135
|
-
source: "iana"
|
|
9908
|
+
source: "iana",
|
|
9909
|
+
extensions: [
|
|
9910
|
+
"avci"
|
|
9911
|
+
]
|
|
9136
9912
|
},
|
|
9137
9913
|
"image/avcs": {
|
|
9138
|
-
source: "iana"
|
|
9914
|
+
source: "iana",
|
|
9915
|
+
extensions: [
|
|
9916
|
+
"avcs"
|
|
9917
|
+
]
|
|
9918
|
+
},
|
|
9919
|
+
"image/avif": {
|
|
9920
|
+
source: "iana",
|
|
9921
|
+
compressible: false,
|
|
9922
|
+
extensions: [
|
|
9923
|
+
"avif"
|
|
9924
|
+
]
|
|
9139
9925
|
},
|
|
9140
9926
|
"image/bmp": {
|
|
9141
9927
|
source: "iana",
|
|
@@ -9182,16 +9968,40 @@ var require$$0 = {
|
|
|
9182
9968
|
]
|
|
9183
9969
|
},
|
|
9184
9970
|
"image/heic": {
|
|
9185
|
-
source: "iana"
|
|
9971
|
+
source: "iana",
|
|
9972
|
+
extensions: [
|
|
9973
|
+
"heic"
|
|
9974
|
+
]
|
|
9186
9975
|
},
|
|
9187
9976
|
"image/heic-sequence": {
|
|
9188
|
-
source: "iana"
|
|
9977
|
+
source: "iana",
|
|
9978
|
+
extensions: [
|
|
9979
|
+
"heics"
|
|
9980
|
+
]
|
|
9189
9981
|
},
|
|
9190
9982
|
"image/heif": {
|
|
9191
|
-
source: "iana"
|
|
9983
|
+
source: "iana",
|
|
9984
|
+
extensions: [
|
|
9985
|
+
"heif"
|
|
9986
|
+
]
|
|
9192
9987
|
},
|
|
9193
9988
|
"image/heif-sequence": {
|
|
9194
|
-
source: "iana"
|
|
9989
|
+
source: "iana",
|
|
9990
|
+
extensions: [
|
|
9991
|
+
"heifs"
|
|
9992
|
+
]
|
|
9993
|
+
},
|
|
9994
|
+
"image/hej2k": {
|
|
9995
|
+
source: "iana",
|
|
9996
|
+
extensions: [
|
|
9997
|
+
"hej2"
|
|
9998
|
+
]
|
|
9999
|
+
},
|
|
10000
|
+
"image/hsj2": {
|
|
10001
|
+
source: "iana",
|
|
10002
|
+
extensions: [
|
|
10003
|
+
"hsj2"
|
|
10004
|
+
]
|
|
9195
10005
|
},
|
|
9196
10006
|
"image/ief": {
|
|
9197
10007
|
source: "iana",
|
|
@@ -9221,6 +10031,18 @@ var require$$0 = {
|
|
|
9221
10031
|
"jpg",
|
|
9222
10032
|
"jpe"
|
|
9223
10033
|
]
|
|
10034
|
+
},
|
|
10035
|
+
"image/jph": {
|
|
10036
|
+
source: "iana",
|
|
10037
|
+
extensions: [
|
|
10038
|
+
"jph"
|
|
10039
|
+
]
|
|
10040
|
+
},
|
|
10041
|
+
"image/jphc": {
|
|
10042
|
+
source: "iana",
|
|
10043
|
+
extensions: [
|
|
10044
|
+
"jhc"
|
|
10045
|
+
]
|
|
9224
10046
|
},
|
|
9225
10047
|
"image/jpm": {
|
|
9226
10048
|
source: "iana",
|
|
@@ -9236,12 +10058,60 @@ var require$$0 = {
|
|
|
9236
10058
|
"jpx",
|
|
9237
10059
|
"jpf"
|
|
9238
10060
|
]
|
|
10061
|
+
},
|
|
10062
|
+
"image/jxr": {
|
|
10063
|
+
source: "iana",
|
|
10064
|
+
extensions: [
|
|
10065
|
+
"jxr"
|
|
10066
|
+
]
|
|
10067
|
+
},
|
|
10068
|
+
"image/jxra": {
|
|
10069
|
+
source: "iana",
|
|
10070
|
+
extensions: [
|
|
10071
|
+
"jxra"
|
|
10072
|
+
]
|
|
10073
|
+
},
|
|
10074
|
+
"image/jxrs": {
|
|
10075
|
+
source: "iana",
|
|
10076
|
+
extensions: [
|
|
10077
|
+
"jxrs"
|
|
10078
|
+
]
|
|
10079
|
+
},
|
|
10080
|
+
"image/jxs": {
|
|
10081
|
+
source: "iana",
|
|
10082
|
+
extensions: [
|
|
10083
|
+
"jxs"
|
|
10084
|
+
]
|
|
10085
|
+
},
|
|
10086
|
+
"image/jxsc": {
|
|
10087
|
+
source: "iana",
|
|
10088
|
+
extensions: [
|
|
10089
|
+
"jxsc"
|
|
10090
|
+
]
|
|
10091
|
+
},
|
|
10092
|
+
"image/jxsi": {
|
|
10093
|
+
source: "iana",
|
|
10094
|
+
extensions: [
|
|
10095
|
+
"jxsi"
|
|
10096
|
+
]
|
|
10097
|
+
},
|
|
10098
|
+
"image/jxss": {
|
|
10099
|
+
source: "iana",
|
|
10100
|
+
extensions: [
|
|
10101
|
+
"jxss"
|
|
10102
|
+
]
|
|
9239
10103
|
},
|
|
9240
10104
|
"image/ktx": {
|
|
9241
10105
|
source: "iana",
|
|
9242
10106
|
extensions: [
|
|
9243
10107
|
"ktx"
|
|
9244
10108
|
]
|
|
10109
|
+
},
|
|
10110
|
+
"image/ktx2": {
|
|
10111
|
+
source: "iana",
|
|
10112
|
+
extensions: [
|
|
10113
|
+
"ktx2"
|
|
10114
|
+
]
|
|
9245
10115
|
},
|
|
9246
10116
|
"image/naplps": {
|
|
9247
10117
|
source: "iana"
|
|
@@ -9390,6 +10260,7 @@ var require$$0 = {
|
|
|
9390
10260
|
},
|
|
9391
10261
|
"image/vnd.microsoft.icon": {
|
|
9392
10262
|
source: "iana",
|
|
10263
|
+
compressible: true,
|
|
9393
10264
|
extensions: [
|
|
9394
10265
|
"ico"
|
|
9395
10266
|
]
|
|
@@ -9399,6 +10270,12 @@ var require$$0 = {
|
|
|
9399
10270
|
},
|
|
9400
10271
|
"image/vnd.mozilla.apng": {
|
|
9401
10272
|
source: "iana"
|
|
10273
|
+
},
|
|
10274
|
+
"image/vnd.ms-dds": {
|
|
10275
|
+
compressible: true,
|
|
10276
|
+
extensions: [
|
|
10277
|
+
"dds"
|
|
10278
|
+
]
|
|
9402
10279
|
},
|
|
9403
10280
|
"image/vnd.ms-modi": {
|
|
9404
10281
|
source: "iana",
|
|
@@ -9417,6 +10294,12 @@ var require$$0 = {
|
|
|
9417
10294
|
extensions: [
|
|
9418
10295
|
"npx"
|
|
9419
10296
|
]
|
|
10297
|
+
},
|
|
10298
|
+
"image/vnd.pco.b16": {
|
|
10299
|
+
source: "iana",
|
|
10300
|
+
extensions: [
|
|
10301
|
+
"b16"
|
|
10302
|
+
]
|
|
9420
10303
|
},
|
|
9421
10304
|
"image/vnd.radiance": {
|
|
9422
10305
|
source: "iana"
|
|
@@ -9686,6 +10569,12 @@ var require$$0 = {
|
|
|
9686
10569
|
]
|
|
9687
10570
|
},
|
|
9688
10571
|
"model/3mf": {
|
|
10572
|
+
source: "iana",
|
|
10573
|
+
extensions: [
|
|
10574
|
+
"3mf"
|
|
10575
|
+
]
|
|
10576
|
+
},
|
|
10577
|
+
"model/e57": {
|
|
9689
10578
|
source: "iana"
|
|
9690
10579
|
},
|
|
9691
10580
|
"model/gltf+json": {
|
|
@@ -9719,8 +10608,47 @@ var require$$0 = {
|
|
|
9719
10608
|
"silo"
|
|
9720
10609
|
]
|
|
9721
10610
|
},
|
|
9722
|
-
"model/
|
|
10611
|
+
"model/mtl": {
|
|
10612
|
+
source: "iana",
|
|
10613
|
+
extensions: [
|
|
10614
|
+
"mtl"
|
|
10615
|
+
]
|
|
10616
|
+
},
|
|
10617
|
+
"model/obj": {
|
|
10618
|
+
source: "iana",
|
|
10619
|
+
extensions: [
|
|
10620
|
+
"obj"
|
|
10621
|
+
]
|
|
10622
|
+
},
|
|
10623
|
+
"model/step": {
|
|
9723
10624
|
source: "iana"
|
|
10625
|
+
},
|
|
10626
|
+
"model/step+xml": {
|
|
10627
|
+
source: "iana",
|
|
10628
|
+
compressible: true,
|
|
10629
|
+
extensions: [
|
|
10630
|
+
"stpx"
|
|
10631
|
+
]
|
|
10632
|
+
},
|
|
10633
|
+
"model/step+zip": {
|
|
10634
|
+
source: "iana",
|
|
10635
|
+
compressible: false,
|
|
10636
|
+
extensions: [
|
|
10637
|
+
"stpz"
|
|
10638
|
+
]
|
|
10639
|
+
},
|
|
10640
|
+
"model/step-xml+zip": {
|
|
10641
|
+
source: "iana",
|
|
10642
|
+
compressible: false,
|
|
10643
|
+
extensions: [
|
|
10644
|
+
"stpxz"
|
|
10645
|
+
]
|
|
10646
|
+
},
|
|
10647
|
+
"model/stl": {
|
|
10648
|
+
source: "iana",
|
|
10649
|
+
extensions: [
|
|
10650
|
+
"stl"
|
|
10651
|
+
]
|
|
9724
10652
|
},
|
|
9725
10653
|
"model/vnd.collada+xml": {
|
|
9726
10654
|
source: "iana",
|
|
@@ -9767,23 +10695,47 @@ var require$$0 = {
|
|
|
9767
10695
|
]
|
|
9768
10696
|
},
|
|
9769
10697
|
"model/vnd.opengex": {
|
|
9770
|
-
source: "iana"
|
|
10698
|
+
source: "iana",
|
|
10699
|
+
extensions: [
|
|
10700
|
+
"ogex"
|
|
10701
|
+
]
|
|
9771
10702
|
},
|
|
9772
10703
|
"model/vnd.parasolid.transmit.binary": {
|
|
9773
|
-
source: "iana"
|
|
10704
|
+
source: "iana",
|
|
10705
|
+
extensions: [
|
|
10706
|
+
"x_b"
|
|
10707
|
+
]
|
|
9774
10708
|
},
|
|
9775
10709
|
"model/vnd.parasolid.transmit.text": {
|
|
10710
|
+
source: "iana",
|
|
10711
|
+
extensions: [
|
|
10712
|
+
"x_t"
|
|
10713
|
+
]
|
|
10714
|
+
},
|
|
10715
|
+
"model/vnd.pytha.pyox": {
|
|
9776
10716
|
source: "iana"
|
|
9777
10717
|
},
|
|
9778
10718
|
"model/vnd.rosette.annotated-data-model": {
|
|
9779
10719
|
source: "iana"
|
|
10720
|
+
},
|
|
10721
|
+
"model/vnd.sap.vds": {
|
|
10722
|
+
source: "iana",
|
|
10723
|
+
extensions: [
|
|
10724
|
+
"vds"
|
|
10725
|
+
]
|
|
9780
10726
|
},
|
|
9781
10727
|
"model/vnd.usdz+zip": {
|
|
9782
10728
|
source: "iana",
|
|
9783
|
-
compressible: false
|
|
10729
|
+
compressible: false,
|
|
10730
|
+
extensions: [
|
|
10731
|
+
"usdz"
|
|
10732
|
+
]
|
|
9784
10733
|
},
|
|
9785
10734
|
"model/vnd.valve.source.compiled-map": {
|
|
9786
|
-
source: "iana"
|
|
10735
|
+
source: "iana",
|
|
10736
|
+
extensions: [
|
|
10737
|
+
"bsp"
|
|
10738
|
+
]
|
|
9787
10739
|
},
|
|
9788
10740
|
"model/vnd.vtu": {
|
|
9789
10741
|
source: "iana",
|
|
@@ -9808,7 +10760,10 @@ var require$$0 = {
|
|
|
9808
10760
|
]
|
|
9809
10761
|
},
|
|
9810
10762
|
"model/x3d+fastinfoset": {
|
|
9811
|
-
source: "iana"
|
|
10763
|
+
source: "iana",
|
|
10764
|
+
extensions: [
|
|
10765
|
+
"x3db"
|
|
10766
|
+
]
|
|
9812
10767
|
},
|
|
9813
10768
|
"model/x3d+vrml": {
|
|
9814
10769
|
source: "apache",
|
|
@@ -9827,7 +10782,10 @@ var require$$0 = {
|
|
|
9827
10782
|
]
|
|
9828
10783
|
},
|
|
9829
10784
|
"model/x3d-vrml": {
|
|
9830
|
-
source: "iana"
|
|
10785
|
+
source: "iana",
|
|
10786
|
+
extensions: [
|
|
10787
|
+
"x3dv"
|
|
10788
|
+
]
|
|
9831
10789
|
},
|
|
9832
10790
|
"multipart/alternative": {
|
|
9833
10791
|
source: "iana",
|
|
@@ -9854,8 +10812,7 @@ var require$$0 = {
|
|
|
9854
10812
|
source: "iana"
|
|
9855
10813
|
},
|
|
9856
10814
|
"multipart/mixed": {
|
|
9857
|
-
source: "iana"
|
|
9858
|
-
compressible: false
|
|
10815
|
+
source: "iana"
|
|
9859
10816
|
},
|
|
9860
10817
|
"multipart/multilingual": {
|
|
9861
10818
|
source: "iana"
|
|
@@ -9912,6 +10869,15 @@ var require$$0 = {
|
|
|
9912
10869
|
"coffee",
|
|
9913
10870
|
"litcoffee"
|
|
9914
10871
|
]
|
|
10872
|
+
},
|
|
10873
|
+
"text/cql": {
|
|
10874
|
+
source: "iana"
|
|
10875
|
+
},
|
|
10876
|
+
"text/cql-expression": {
|
|
10877
|
+
source: "iana"
|
|
10878
|
+
},
|
|
10879
|
+
"text/cql-identifier": {
|
|
10880
|
+
source: "iana"
|
|
9915
10881
|
},
|
|
9916
10882
|
"text/css": {
|
|
9917
10883
|
source: "iana",
|
|
@@ -9945,9 +10911,18 @@ var require$$0 = {
|
|
|
9945
10911
|
},
|
|
9946
10912
|
"text/enriched": {
|
|
9947
10913
|
source: "iana"
|
|
10914
|
+
},
|
|
10915
|
+
"text/fhirpath": {
|
|
10916
|
+
source: "iana"
|
|
10917
|
+
},
|
|
10918
|
+
"text/flexfec": {
|
|
10919
|
+
source: "iana"
|
|
9948
10920
|
},
|
|
9949
10921
|
"text/fwdred": {
|
|
9950
10922
|
source: "iana"
|
|
10923
|
+
},
|
|
10924
|
+
"text/gff3": {
|
|
10925
|
+
source: "iana"
|
|
9951
10926
|
},
|
|
9952
10927
|
"text/grammar-ref-list": {
|
|
9953
10928
|
source: "iana"
|
|
@@ -9980,6 +10955,7 @@ var require$$0 = {
|
|
|
9980
10955
|
]
|
|
9981
10956
|
},
|
|
9982
10957
|
"text/less": {
|
|
10958
|
+
compressible: true,
|
|
9983
10959
|
extensions: [
|
|
9984
10960
|
"less"
|
|
9985
10961
|
]
|
|
@@ -9997,19 +10973,27 @@ var require$$0 = {
|
|
|
9997
10973
|
extensions: [
|
|
9998
10974
|
"mml"
|
|
9999
10975
|
]
|
|
10976
|
+
},
|
|
10977
|
+
"text/mdx": {
|
|
10978
|
+
compressible: true,
|
|
10979
|
+
extensions: [
|
|
10980
|
+
"mdx"
|
|
10981
|
+
]
|
|
10000
10982
|
},
|
|
10001
10983
|
"text/mizar": {
|
|
10002
10984
|
source: "iana"
|
|
10003
10985
|
},
|
|
10004
10986
|
"text/n3": {
|
|
10005
10987
|
source: "iana",
|
|
10988
|
+
charset: "UTF-8",
|
|
10006
10989
|
compressible: true,
|
|
10007
10990
|
extensions: [
|
|
10008
10991
|
"n3"
|
|
10009
10992
|
]
|
|
10010
10993
|
},
|
|
10011
10994
|
"text/parameters": {
|
|
10012
|
-
source: "iana"
|
|
10995
|
+
source: "iana",
|
|
10996
|
+
charset: "UTF-8"
|
|
10013
10997
|
},
|
|
10014
10998
|
"text/parityfec": {
|
|
10015
10999
|
source: "iana"
|
|
@@ -10029,7 +11013,8 @@ var require$$0 = {
|
|
|
10029
11013
|
]
|
|
10030
11014
|
},
|
|
10031
11015
|
"text/provenance-notation": {
|
|
10032
|
-
source: "iana"
|
|
11016
|
+
source: "iana",
|
|
11017
|
+
charset: "UTF-8"
|
|
10033
11018
|
},
|
|
10034
11019
|
"text/prs.fallenstein.rst": {
|
|
10035
11020
|
source: "iana"
|
|
@@ -10081,8 +11066,12 @@ var require$$0 = {
|
|
|
10081
11066
|
"sgml",
|
|
10082
11067
|
"sgm"
|
|
10083
11068
|
]
|
|
11069
|
+
},
|
|
11070
|
+
"text/shaclc": {
|
|
11071
|
+
source: "iana"
|
|
10084
11072
|
},
|
|
10085
11073
|
"text/shex": {
|
|
11074
|
+
source: "iana",
|
|
10086
11075
|
extensions: [
|
|
10087
11076
|
"shex"
|
|
10088
11077
|
]
|
|
@@ -10092,6 +11081,12 @@ var require$$0 = {
|
|
|
10092
11081
|
"slim",
|
|
10093
11082
|
"slm"
|
|
10094
11083
|
]
|
|
11084
|
+
},
|
|
11085
|
+
"text/spdx": {
|
|
11086
|
+
source: "iana",
|
|
11087
|
+
extensions: [
|
|
11088
|
+
"spdx"
|
|
11089
|
+
]
|
|
10095
11090
|
},
|
|
10096
11091
|
"text/strings": {
|
|
10097
11092
|
source: "iana"
|
|
@@ -10183,7 +11178,8 @@ var require$$0 = {
|
|
|
10183
11178
|
]
|
|
10184
11179
|
},
|
|
10185
11180
|
"text/vnd.debian.copyright": {
|
|
10186
|
-
source: "iana"
|
|
11181
|
+
source: "iana",
|
|
11182
|
+
charset: "UTF-8"
|
|
10187
11183
|
},
|
|
10188
11184
|
"text/vnd.dmclientscript": {
|
|
10189
11185
|
source: "iana"
|
|
@@ -10195,6 +11191,16 @@ var require$$0 = {
|
|
|
10195
11191
|
]
|
|
10196
11192
|
},
|
|
10197
11193
|
"text/vnd.esmertec.theme-descriptor": {
|
|
11194
|
+
source: "iana",
|
|
11195
|
+
charset: "UTF-8"
|
|
11196
|
+
},
|
|
11197
|
+
"text/vnd.familysearch.gedcom": {
|
|
11198
|
+
source: "iana",
|
|
11199
|
+
extensions: [
|
|
11200
|
+
"ged"
|
|
11201
|
+
]
|
|
11202
|
+
},
|
|
11203
|
+
"text/vnd.ficlab.flt": {
|
|
10198
11204
|
source: "iana"
|
|
10199
11205
|
},
|
|
10200
11206
|
"text/vnd.fly": {
|
|
@@ -10217,6 +11223,9 @@ var require$$0 = {
|
|
|
10217
11223
|
extensions: [
|
|
10218
11224
|
"gv"
|
|
10219
11225
|
]
|
|
11226
|
+
},
|
|
11227
|
+
"text/vnd.hans": {
|
|
11228
|
+
source: "iana"
|
|
10220
11229
|
},
|
|
10221
11230
|
"text/vnd.hgl": {
|
|
10222
11231
|
source: "iana"
|
|
@@ -10253,18 +11262,26 @@ var require$$0 = {
|
|
|
10253
11262
|
},
|
|
10254
11263
|
"text/vnd.radisys.msml-basic-layout": {
|
|
10255
11264
|
source: "iana"
|
|
11265
|
+
},
|
|
11266
|
+
"text/vnd.senx.warpscript": {
|
|
11267
|
+
source: "iana"
|
|
10256
11268
|
},
|
|
10257
11269
|
"text/vnd.si.uricatalogue": {
|
|
10258
11270
|
source: "iana"
|
|
11271
|
+
},
|
|
11272
|
+
"text/vnd.sosi": {
|
|
11273
|
+
source: "iana"
|
|
10259
11274
|
},
|
|
10260
11275
|
"text/vnd.sun.j2me.app-descriptor": {
|
|
10261
11276
|
source: "iana",
|
|
11277
|
+
charset: "UTF-8",
|
|
10262
11278
|
extensions: [
|
|
10263
11279
|
"jad"
|
|
10264
11280
|
]
|
|
10265
11281
|
},
|
|
10266
11282
|
"text/vnd.trolltech.linguist": {
|
|
10267
|
-
source: "iana"
|
|
11283
|
+
source: "iana",
|
|
11284
|
+
charset: "UTF-8"
|
|
10268
11285
|
},
|
|
10269
11286
|
"text/vnd.wap.si": {
|
|
10270
11287
|
source: "iana"
|
|
@@ -10285,6 +11302,7 @@ var require$$0 = {
|
|
|
10285
11302
|
]
|
|
10286
11303
|
},
|
|
10287
11304
|
"text/vtt": {
|
|
11305
|
+
source: "iana",
|
|
10288
11306
|
charset: "UTF-8",
|
|
10289
11307
|
compressible: true,
|
|
10290
11308
|
extensions: [
|
|
@@ -10441,6 +11459,7 @@ var require$$0 = {
|
|
|
10441
11459
|
source: "iana"
|
|
10442
11460
|
},
|
|
10443
11461
|
"text/yaml": {
|
|
11462
|
+
compressible: true,
|
|
10444
11463
|
extensions: [
|
|
10445
11464
|
"yaml",
|
|
10446
11465
|
"yml"
|
|
@@ -10464,6 +11483,9 @@ var require$$0 = {
|
|
|
10464
11483
|
extensions: [
|
|
10465
11484
|
"3g2"
|
|
10466
11485
|
]
|
|
11486
|
+
},
|
|
11487
|
+
"video/av1": {
|
|
11488
|
+
source: "iana"
|
|
10467
11489
|
},
|
|
10468
11490
|
"video/bmpeg": {
|
|
10469
11491
|
source: "iana"
|
|
@@ -10479,6 +11501,12 @@ var require$$0 = {
|
|
|
10479
11501
|
},
|
|
10480
11502
|
"video/encaprtp": {
|
|
10481
11503
|
source: "iana"
|
|
11504
|
+
},
|
|
11505
|
+
"video/ffv1": {
|
|
11506
|
+
source: "iana"
|
|
11507
|
+
},
|
|
11508
|
+
"video/flexfec": {
|
|
11509
|
+
source: "iana"
|
|
10482
11510
|
},
|
|
10483
11511
|
"video/h261": {
|
|
10484
11512
|
source: "iana",
|
|
@@ -10514,7 +11542,10 @@ var require$$0 = {
|
|
|
10514
11542
|
source: "iana"
|
|
10515
11543
|
},
|
|
10516
11544
|
"video/iso.segment": {
|
|
10517
|
-
source: "iana"
|
|
11545
|
+
source: "iana",
|
|
11546
|
+
extensions: [
|
|
11547
|
+
"m4s"
|
|
11548
|
+
]
|
|
10518
11549
|
},
|
|
10519
11550
|
"video/jpeg": {
|
|
10520
11551
|
source: "iana",
|
|
@@ -10531,6 +11562,9 @@ var require$$0 = {
|
|
|
10531
11562
|
"jpm",
|
|
10532
11563
|
"jpgm"
|
|
10533
11564
|
]
|
|
11565
|
+
},
|
|
11566
|
+
"video/jxsv": {
|
|
11567
|
+
source: "iana"
|
|
10534
11568
|
},
|
|
10535
11569
|
"video/mj2": {
|
|
10536
11570
|
source: "iana",
|
|
@@ -10618,6 +11652,9 @@ var require$$0 = {
|
|
|
10618
11652
|
},
|
|
10619
11653
|
"video/rtx": {
|
|
10620
11654
|
source: "iana"
|
|
11655
|
+
},
|
|
11656
|
+
"video/scip": {
|
|
11657
|
+
source: "iana"
|
|
10621
11658
|
},
|
|
10622
11659
|
"video/smpte291": {
|
|
10623
11660
|
source: "iana"
|
|
@@ -10630,6 +11667,9 @@ var require$$0 = {
|
|
|
10630
11667
|
},
|
|
10631
11668
|
"video/vc1": {
|
|
10632
11669
|
source: "iana"
|
|
11670
|
+
},
|
|
11671
|
+
"video/vc2": {
|
|
11672
|
+
source: "iana"
|
|
10633
11673
|
},
|
|
10634
11674
|
"video/vnd.cctv": {
|
|
10635
11675
|
source: "iana"
|
|
@@ -10775,9 +11815,15 @@ var require$$0 = {
|
|
|
10775
11815
|
extensions: [
|
|
10776
11816
|
"viv"
|
|
10777
11817
|
]
|
|
11818
|
+
},
|
|
11819
|
+
"video/vnd.youtube.yt": {
|
|
11820
|
+
source: "iana"
|
|
10778
11821
|
},
|
|
10779
11822
|
"video/vp8": {
|
|
10780
11823
|
source: "iana"
|
|
11824
|
+
},
|
|
11825
|
+
"video/vp9": {
|
|
11826
|
+
source: "iana"
|
|
10781
11827
|
},
|
|
10782
11828
|
"video/webm": {
|
|
10783
11829
|
source: "apache",
|
|
@@ -10899,6 +11945,7 @@ var require$$0 = {
|
|
|
10899
11945
|
/*!
|
|
10900
11946
|
* mime-db
|
|
10901
11947
|
* Copyright(c) 2014 Jonathan Ong
|
|
11948
|
+
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
10902
11949
|
* MIT Licensed
|
|
10903
11950
|
*/
|
|
10904
11951
|
|