run:R W Run
DIR
2026-04-08 19:37:35
R W Run
DIR
2026-04-08 19:37:40
R W Run
DIR
2026-04-08 19:37:39
R W Run
DIR
2026-04-08 19:37:42
R W Run
DIR
2026-04-08 19:37:45
R W Run
DIR
2026-04-08 19:47:26
R W Run
DIR
2026-04-08 19:47:27
R W Run
DIR
2026-04-08 19:47:25
R W Run
3.7 KB
2026-04-08 19:31:39
R W Run
418 By
2026-04-08 19:31:39
R W Run
348 By
2026-04-08 19:31:41
R W Run
9.3 KB
2026-04-08 19:31:38
R W Run
14.64 KB
2026-04-08 19:31:38
R W Run
2.47 KB
2026-04-08 19:31:40
R W Run
1.83 KB
2026-04-08 19:31:39
R W Run
1.04 KB
2026-04-08 19:31:40
R W Run
4.06 KB
2026-04-08 19:31:39
R W Run
5.35 KB
2026-04-08 19:31:38
R W Run
963 By
2026-04-08 19:31:40
R W Run
157.64 KB
2026-04-08 19:31:39
R W Run
821 By
2026-04-08 19:31:39
R W Run
464 By
2026-04-08 19:31:41
R W Run
1.72 KB
2026-04-08 19:31:39
R W Run
error_log
📄MimeTypes.php
1<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Mime;
13
14use Symfony\Component\Mime\Exception\LogicException;
15
16/**
17 * Manages MIME types and file extensions.
18 *
19 * For MIME type guessing, you can register custom guessers
20 * by calling the registerGuesser() method.
21 * Custom guessers are always called before any default ones:
22 *
23 * $guesser = new MimeTypes();
24 * $guesser->registerGuesser(new MyCustomMimeTypeGuesser());
25 *
26 * If you want to change the order of the default guessers, just re-register your
27 * preferred one as a custom one. The last registered guesser is preferred over
28 * previously registered ones.
29 *
30 * Re-registering a built-in guesser also allows you to configure it:
31 *
32 * $guesser = new MimeTypes();
33 * $guesser->registerGuesser(new FileinfoMimeTypeGuesser('/path/to/magic/file'));
34 *
35 * @author Fabien Potencier <fabien@symfony.com>
36 */
37final class MimeTypes implements MimeTypesInterface
38{
39 private $extensions = [];
40 private $mimeTypes = [];
41
42 /**
43 * @var MimeTypeGuesserInterface[]
44 */
45 private $guessers = [];
46 private static $default;
47
48 public function __construct(array $map = [])
49 {
50 foreach ($map as $mimeType => $extensions) {
51 $this->extensions[$mimeType] = $extensions;
52
53 foreach ($extensions as $extension) {
54 $this->mimeTypes[$extension][] = $mimeType;
55 }
56 }
57 $this->registerGuesser(new FileBinaryMimeTypeGuesser());
58 $this->registerGuesser(new FileinfoMimeTypeGuesser());
59 }
60
61 public static function setDefault(self $default)
62 {
63 self::$default = $default;
64 }
65
66 public static function getDefault(): self
67 {
68 return self::$default ?? self::$default = new self();
69 }
70
71 /**
72 * Registers a MIME type guesser.
73 *
74 * The last registered guesser has precedence over the other ones.
75 */
76 public function registerGuesser(MimeTypeGuesserInterface $guesser)
77 {
78 array_unshift($this->guessers, $guesser);
79 }
80
81 /**
82 * {@inheritdoc}
83 */
84 public function getExtensions(string $mimeType): array
85 {
86 if ($this->extensions) {
87 $extensions = $this->extensions[$mimeType] ?? $this->extensions[$lcMimeType = strtolower($mimeType)] ?? null;
88 }
89
90 return $extensions ?? self::$map[$mimeType] ?? self::$map[$lcMimeType ?? strtolower($mimeType)] ?? [];
91 }
92
93 /**
94 * {@inheritdoc}
95 */
96 public function getMimeTypes(string $ext): array
97 {
98 if ($this->mimeTypes) {
99 $mimeTypes = $this->mimeTypes[$ext] ?? $this->mimeTypes[$lcExt = strtolower($ext)] ?? null;
100 }
101
102 return $mimeTypes ?? self::$reverseMap[$ext] ?? self::$reverseMap[$lcExt ?? strtolower($ext)] ?? [];
103 }
104
105 /**
106 * {@inheritdoc}
107 */
108 public function isGuesserSupported(): bool
109 {
110 foreach ($this->guessers as $guesser) {
111 if ($guesser->isGuesserSupported()) {
112 return true;
113 }
114 }
115
116 return false;
117 }
118
119 /**
120 * {@inheritdoc}
121 *
122 * The file is passed to each registered MIME type guesser in reverse order
123 * of their registration (last registered is queried first). Once a guesser
124 * returns a value that is not null, this method terminates and returns the
125 * value.
126 */
127 public function guessMimeType(string $path): ?string
128 {
129 foreach ($this->guessers as $guesser) {
130 if (!$guesser->isGuesserSupported()) {
131 continue;
132 }
133
134 if (null !== $mimeType = $guesser->guessMimeType($path)) {
135 return $mimeType;
136 }
137 }
138
139 if (!$this->isGuesserSupported()) {
140 throw new LogicException('Unable to guess the MIME type as no guessers are available (have you enabled the php_fileinfo extension?).');
141 }
142
143 return null;
144 }
145
146 /**
147 * A map of MIME types and their default extensions.
148 *
149 * Updated from upstream on 2019-01-16
150 *
151 * @see Resources/bin/update_mime_types.php
152 */
153 private static $map = [
154 'application/acrobat' => ['pdf'],
155 'application/andrew-inset' => ['ez'],
156 'application/annodex' => ['anx'],
157 'application/applixware' => ['aw'],
158 'application/atom+xml' => ['atom'],
159 'application/atomcat+xml' => ['atomcat'],
160 'application/atomsvc+xml' => ['atomsvc'],
161 'application/ccxml+xml' => ['ccxml'],
162 'application/cdmi-capability' => ['cdmia'],
163 'application/cdmi-container' => ['cdmic'],
164 'application/cdmi-domain' => ['cdmid'],
165 'application/cdmi-object' => ['cdmio'],
166 'application/cdmi-queue' => ['cdmiq'],
167 'application/cdr' => ['cdr'],
168 'application/coreldraw' => ['cdr'],
169 'application/cu-seeme' => ['cu'],
170 'application/davmount+xml' => ['davmount'],
171 'application/dbase' => ['dbf'],
172 'application/dbf' => ['dbf'],
173 'application/dicom' => ['dcm'],
174 'application/docbook+xml' => ['dbk', 'docbook'],
175 'application/dssc+der' => ['dssc'],
176 'application/dssc+xml' => ['xdssc'],
177 'application/ecmascript' => ['ecma', 'es'],
178 'application/emf' => ['emf'],
179 'application/emma+xml' => ['emma'],
180 'application/epub+zip' => ['epub'],
181 'application/exi' => ['exi'],
182 'application/font-tdpfr' => ['pfr'],
183 'application/font-woff' => ['woff'],
184 'application/futuresplash' => ['swf', 'spl'],
185 'application/geo+json' => ['geojson', 'geo.json'],
186 'application/gml+xml' => ['gml'],
187 'application/gnunet-directory' => ['gnd'],
188 'application/gpx' => ['gpx'],
189 'application/gpx+xml' => ['gpx'],
190 'application/gxf' => ['gxf'],
191 'application/gzip' => ['gz'],
192 'application/hyperstudio' => ['stk'],
193 'application/ico' => ['ico'],
194 'application/ics' => ['vcs', 'ics'],
195 'application/illustrator' => ['ai'],
196 'application/inkml+xml' => ['ink', 'inkml'],
197 'application/ipfix' => ['ipfix'],
198 'application/java' => ['class'],
199 'application/java-archive' => ['jar'],
200 'application/java-byte-code' => ['class'],
201 'application/java-serialized-object' => ['ser'],
202 'application/java-vm' => ['class'],
203 'application/javascript' => ['js', 'jsm', 'mjs'],
204 'application/jrd+json' => ['jrd'],
205 'application/json' => ['json'],
206 'application/json-patch+json' => ['json-patch'],
207 'application/jsonml+json' => ['jsonml'],
208 'application/ld+json' => ['jsonld'],
209 'application/lost+xml' => ['lostxml'],
210 'application/lotus123' => ['123', 'wk1', 'wk3', 'wk4', 'wks'],
211 'application/m3u' => ['m3u', 'm3u8', 'vlc'],
212 'application/mac-binhex40' => ['hqx'],
213 'application/mac-compactpro' => ['cpt'],
214 'application/mads+xml' => ['mads'],
215 'application/marc' => ['mrc'],
216 'application/marcxml+xml' => ['mrcx'],
217 'application/mathematica' => ['ma', 'nb', 'mb'],
218 'application/mathml+xml' => ['mathml', 'mml'],
219 'application/mbox' => ['mbox'],
220 'application/mdb' => ['mdb'],
221 'application/mediaservercontrol+xml' => ['mscml'],
222 'application/metalink+xml' => ['metalink'],
223 'application/metalink4+xml' => ['meta4'],
224 'application/mets+xml' => ['mets'],
225 'application/mods+xml' => ['mods'],
226 'application/mp21' => ['m21', 'mp21'],
227 'application/mp4' => ['mp4s'],
228 'application/ms-tnef' => ['tnef', 'tnf'],
229 'application/msaccess' => ['mdb'],
230 'application/msexcel' => ['xls', 'xlc', 'xll', 'xlm', 'xlw', 'xla', 'xlt', 'xld'],
231 'application/mspowerpoint' => ['ppz', 'ppt', 'pps', 'pot'],
232 'application/msword' => ['doc', 'dot'],
233 'application/msword-template' => ['dot'],
234 'application/mxf' => ['mxf'],
235 'application/nappdf' => ['pdf'],
236 'application/octet-stream' => ['bin', 'dms', 'lrf', 'mar', 'so', 'dist', 'distz', 'pkg', 'bpk', 'dump', 'elc', 'deploy'],
237 'application/oda' => ['oda'],
238 'application/oebps-package+xml' => ['opf'],
239 'application/ogg' => ['ogx'],
240 'application/omdoc+xml' => ['omdoc'],
241 'application/onenote' => ['onetoc', 'onetoc2', 'onetmp', 'onepkg'],
242 'application/owl+xml' => ['owx'],
243 'application/oxps' => ['oxps', 'xps'],
244 'application/patch-ops-error+xml' => ['xer'],
245 'application/pcap' => ['pcap', 'cap', 'dmp'],
246 'application/pdf' => ['pdf'],
247 'application/pgp' => ['pgp', 'gpg', 'asc'],
248 'application/pgp-encrypted' => ['pgp', 'gpg', 'asc'],
249 'application/pgp-keys' => ['skr', 'pkr', 'asc', 'pgp', 'gpg'],
250 'application/pgp-signature' => ['asc', 'sig', 'pgp', 'gpg'],
251 'application/photoshop' => ['psd'],
252 'application/pics-rules' => ['prf'],
253 'application/pkcs10' => ['p10'],
254 'application/pkcs12' => ['p12', 'pfx'],
255 'application/pkcs7-mime' => ['p7m', 'p7c'],
256 'application/pkcs7-signature' => ['p7s'],
257 'application/pkcs8' => ['p8'],
258 'application/pkcs8-encrypted' => ['p8e'],
259 'application/pkix-attr-cert' => ['ac'],
260 'application/pkix-cert' => ['cer'],
261 'application/pkix-crl' => ['crl'],
262 'application/pkix-pkipath' => ['pkipath'],
263 'application/pkixcmp' => ['pki'],
264 'application/pls' => ['pls'],
265 'application/pls+xml' => ['pls'],
266 'application/postscript' => ['ai', 'eps', 'ps'],
267 'application/powerpoint' => ['ppz', 'ppt', 'pps', 'pot'],
268 'application/prs.cww' => ['cww'],
269 'application/pskc+xml' => ['pskcxml'],
270 'application/ram' => ['ram'],
271 'application/raml+yaml' => ['raml'],
272 'application/rdf+xml' => ['rdf', 'rdfs', 'owl'],
273 'application/reginfo+xml' => ['rif'],
274 'application/relax-ng-compact-syntax' => ['rnc'],
275 'application/resource-lists+xml' => ['rl'],
276 'application/resource-lists-diff+xml' => ['rld'],
277 'application/rls-services+xml' => ['rs'],
278 'application/rpki-ghostbusters' => ['gbr'],
279 'application/rpki-manifest' => ['mft'],
280 'application/rpki-roa' => ['roa'],
281 'application/rsd+xml' => ['rsd'],
282 'application/rss+xml' => ['rss'],
283 'application/rtf' => ['rtf'],
284 'application/sbml+xml' => ['sbml'],
285 'application/scvp-cv-request' => ['scq'],
286 'application/scvp-cv-response' => ['scs'],
287 'application/scvp-vp-request' => ['spq'],
288 'application/scvp-vp-response' => ['spp'],
289 'application/sdp' => ['sdp'],
290 'application/set-payment-initiation' => ['setpay'],
291 'application/set-registration-initiation' => ['setreg'],
292 'application/shf+xml' => ['shf'],
293 'application/sieve' => ['siv'],
294 'application/smil' => ['smil', 'smi', 'sml', 'kino'],
295 'application/smil+xml' => ['smi', 'smil', 'sml', 'kino'],
296 'application/sparql-query' => ['rq'],
297 'application/sparql-results+xml' => ['srx'],
298 'application/sql' => ['sql'],
299 'application/srgs' => ['gram'],
300 'application/srgs+xml' => ['grxml'],
301 'application/sru+xml' => ['sru'],
302 'application/ssdl+xml' => ['ssdl'],
303 'application/ssml+xml' => ['ssml'],
304 'application/stuffit' => ['sit'],
305 'application/tei+xml' => ['tei', 'teicorpus'],
306 'application/thraud+xml' => ['tfi'],
307 'application/timestamped-data' => ['tsd'],
308 'application/trig' => ['trig'],
309 'application/vnd.3gpp.pic-bw-large' => ['plb'],
310 'application/vnd.3gpp.pic-bw-small' => ['psb'],
311 'application/vnd.3gpp.pic-bw-var' => ['pvb'],
312 'application/vnd.3gpp2.tcap' => ['tcap'],
313 'application/vnd.3m.post-it-notes' => ['pwn'],
314 'application/vnd.accpac.simply.aso' => ['aso'],
315 'application/vnd.accpac.simply.imp' => ['imp'],
316 'application/vnd.acucobol' => ['acu'],
317 'application/vnd.acucorp' => ['atc', 'acutc'],
318 'application/vnd.adobe.air-application-installer-package+zip' => ['air'],
319 'application/vnd.adobe.flash.movie' => ['swf', 'spl'],
320 'application/vnd.adobe.formscentral.fcdt' => ['fcdt'],
321 'application/vnd.adobe.fxp' => ['fxp', 'fxpl'],
322 'application/vnd.adobe.illustrator' => ['ai'],
323 'application/vnd.adobe.xdp+xml' => ['xdp'],
324 'application/vnd.adobe.xfdf' => ['xfdf'],
325 'application/vnd.ahead.space' => ['ahead'],
326 'application/vnd.airzip.filesecure.azf' => ['azf'],
327 'application/vnd.airzip.filesecure.azs' => ['azs'],
328 'application/vnd.amazon.ebook' => ['azw'],
329 'application/vnd.americandynamics.acc' => ['acc'],
330 'application/vnd.amiga.ami' => ['ami'],
331 'application/vnd.android.package-archive' => ['apk'],
332 'application/vnd.anser-web-certificate-issue-initiation' => ['cii'],
333 'application/vnd.anser-web-funds-transfer-initiation' => ['fti'],
334 'application/vnd.antix.game-component' => ['atx'],
335 'application/vnd.appimage' => ['appimage'],
336 'application/vnd.apple.installer+xml' => ['mpkg'],
337 'application/vnd.apple.keynote' => ['key'],
338 'application/vnd.apple.mpegurl' => ['m3u8', 'm3u'],
339 'application/vnd.aristanetworks.swi' => ['swi'],
340 'application/vnd.astraea-software.iota' => ['iota'],
341 'application/vnd.audiograph' => ['aep'],
342 'application/vnd.blueice.multipass' => ['mpm'],
343 'application/vnd.bmi' => ['bmi'],
344 'application/vnd.businessobjects' => ['rep'],
345 'application/vnd.chemdraw+xml' => ['cdxml'],
346 'application/vnd.chess-pgn' => ['pgn'],
347 'application/vnd.chipnuts.karaoke-mmd' => ['mmd'],
348 'application/vnd.cinderella' => ['cdy'],
349 'application/vnd.claymore' => ['cla'],
350 'application/vnd.cloanto.rp9' => ['rp9'],
351 'application/vnd.clonk.c4group' => ['c4g', 'c4d', 'c4f', 'c4p', 'c4u'],
352 'application/vnd.cluetrust.cartomobile-config' => ['c11amc'],
353 'application/vnd.cluetrust.cartomobile-config-pkg' => ['c11amz'],
354 'application/vnd.coffeescript' => ['coffee'],
355 'application/vnd.comicbook+zip' => ['cbz'],
356 'application/vnd.comicbook-rar' => ['cbr'],
357 'application/vnd.commonspace' => ['csp'],
358 'application/vnd.contact.cmsg' => ['cdbcmsg'],
359 'application/vnd.corel-draw' => ['cdr'],
360 'application/vnd.cosmocaller' => ['cmc'],
361 'application/vnd.crick.clicker' => ['clkx'],
362 'application/vnd.crick.clicker.keyboard' => ['clkk'],
363 'application/vnd.crick.clicker.palette' => ['clkp'],
364 'application/vnd.crick.clicker.template' => ['clkt'],
365 'application/vnd.crick.clicker.wordbank' => ['clkw'],
366 'application/vnd.criticaltools.wbs+xml' => ['wbs'],
367 'application/vnd.ctc-posml' => ['pml'],
368 'application/vnd.cups-ppd' => ['ppd'],
369 'application/vnd.curl.car' => ['car'],
370 'application/vnd.curl.pcurl' => ['pcurl'],
371 'application/vnd.dart' => ['dart'],
372 'application/vnd.data-vision.rdz' => ['rdz'],
373 'application/vnd.debian.binary-package' => ['deb', 'udeb'],
374 'application/vnd.dece.data' => ['uvf', 'uvvf', 'uvd', 'uvvd'],
375 'application/vnd.dece.ttml+xml' => ['uvt', 'uvvt'],
376 'application/vnd.dece.unspecified' => ['uvx', 'uvvx'],
377 'application/vnd.dece.zip' => ['uvz', 'uvvz'],
378 'application/vnd.denovo.fcselayout-link' => ['fe_launch'],
379 'application/vnd.dna' => ['dna'],
380 'application/vnd.dolby.mlp' => ['mlp'],
381 'application/vnd.dpgraph' => ['dpg'],
382 'application/vnd.dreamfactory' => ['dfac'],
383 'application/vnd.ds-keypoint' => ['kpxx'],
384 'application/vnd.dvb.ait' => ['ait'],
385 'application/vnd.dvb.service' => ['svc'],
386 'application/vnd.dynageo' => ['geo'],
387 'application/vnd.ecowin.chart' => ['mag'],
388 'application/vnd.emusic-emusic_package' => ['emp'],
389 'application/vnd.enliven' => ['nml'],
390 'application/vnd.epson.esf' => ['esf'],
391 'application/vnd.epson.msf' => ['msf'],
392 'application/vnd.epson.quickanime' => ['qam'],
393 'application/vnd.epson.salt' => ['slt'],
394 'application/vnd.epson.ssf' => ['ssf'],
395 'application/vnd.eszigno3+xml' => ['es3', 'et3'],
396 'application/vnd.ezpix-album' => ['ez2'],
397 'application/vnd.ezpix-package' => ['ez3'],
398 'application/vnd.fdf' => ['fdf'],
399 'application/vnd.fdsn.mseed' => ['mseed'],
400 'application/vnd.fdsn.seed' => ['seed', 'dataless'],
401 'application/vnd.flatpak' => ['flatpak', 'xdgapp'],
402 'application/vnd.flatpak.ref' => ['flatpakref'],
403 'application/vnd.flatpak.repo' => ['flatpakrepo'],
404 'application/vnd.flographit' => ['gph'],
405 'application/vnd.fluxtime.clip' => ['ftc'],
406 'application/vnd.framemaker' => ['fm', 'frame', 'maker', 'book'],
407 'application/vnd.frogans.fnc' => ['fnc'],
408 'application/vnd.frogans.ltf' => ['ltf'],
409 'application/vnd.fsc.weblaunch' => ['fsc'],
410 'application/vnd.fujitsu.oasys' => ['oas'],
411 'application/vnd.fujitsu.oasys2' => ['oa2'],
412 'application/vnd.fujitsu.oasys3' => ['oa3'],
413 'application/vnd.fujitsu.oasysgp' => ['fg5'],
414 'application/vnd.fujitsu.oasysprs' => ['bh2'],
415 'application/vnd.fujixerox.ddd' => ['ddd'],
416 'application/vnd.fujixerox.docuworks' => ['xdw'],
417 'application/vnd.fujixerox.docuworks.binder' => ['xbd'],
418 'application/vnd.fuzzysheet' => ['fzs'],
419 'application/vnd.genomatix.tuxedo' => ['txd'],
420 'application/vnd.geo+json' => ['geojson', 'geo.json'],
421 'application/vnd.geogebra.file' => ['ggb'],
422 'application/vnd.geogebra.tool' => ['ggt'],
423 'application/vnd.geometry-explorer' => ['gex', 'gre'],
424 'application/vnd.geonext' => ['gxt'],
425 'application/vnd.geoplan' => ['g2w'],
426 'application/vnd.geospace' => ['g3w'],
427 'application/vnd.gmx' => ['gmx'],
428 'application/vnd.google-earth.kml+xml' => ['kml'],
429 'application/vnd.google-earth.kmz' => ['kmz'],
430 'application/vnd.grafeq' => ['gqf', 'gqs'],
431 'application/vnd.groove-account' => ['gac'],
432 'application/vnd.groove-help' => ['ghf'],
433 'application/vnd.groove-identity-message' => ['gim'],
434 'application/vnd.groove-injector' => ['grv'],
435 'application/vnd.groove-tool-message' => ['gtm'],
436 'application/vnd.groove-tool-template' => ['tpl'],
437 'application/vnd.groove-vcard' => ['vcg'],
438 'application/vnd.haansoft-hwp' => ['hwp'],
439 'application/vnd.haansoft-hwt' => ['hwt'],
440 'application/vnd.hal+xml' => ['hal'],
441 'application/vnd.handheld-entertainment+xml' => ['zmm'],
442 'application/vnd.hbci' => ['hbci'],
443 'application/vnd.hhe.lesson-player' => ['les'],
444 'application/vnd.hp-hpgl' => ['hpgl'],
445 'application/vnd.hp-hpid' => ['hpid'],
446 'application/vnd.hp-hps' => ['hps'],
447 'application/vnd.hp-jlyt' => ['jlt'],
448 'application/vnd.hp-pcl' => ['pcl'],
449 'application/vnd.hp-pclxl' => ['pclxl'],
450 'application/vnd.hydrostatix.sof-data' => ['sfd-hdstx'],
451 'application/vnd.ibm.minipay' => ['mpy'],
452 'application/vnd.ibm.modcap' => ['afp', 'listafp', 'list3820'],
453 'application/vnd.ibm.rights-management' => ['irm'],
454 'application/vnd.ibm.secure-container' => ['sc'],
455 'application/vnd.iccprofile' => ['icc', 'icm'],
456 'application/vnd.igloader' => ['igl'],
457 'application/vnd.immervision-ivp' => ['ivp'],
458 'application/vnd.immervision-ivu' => ['ivu'],
459 'application/vnd.insors.igm' => ['igm'],
460 'application/vnd.intercon.formnet' => ['xpw', 'xpx'],
461 'application/vnd.intergeo' => ['i2g'],
462 'application/vnd.intu.qbo' => ['qbo'],
463 'application/vnd.intu.qfx' => ['qfx'],
464 'application/vnd.ipunplugged.rcprofile' => ['rcprofile'],
465 'application/vnd.irepository.package+xml' => ['irp'],
466 'application/vnd.is-xpr' => ['xpr'],
467 'application/vnd.isac.fcs' => ['fcs'],
468 'application/vnd.jam' => ['jam'],
469 'application/vnd.jcp.javame.midlet-rms' => ['rms'],
470 'application/vnd.jisp' => ['jisp'],
471 'application/vnd.joost.joda-archive' => ['joda'],
472 'application/vnd.kahootz' => ['ktz', 'ktr'],
473 'application/vnd.kde.karbon' => ['karbon'],
474 'application/vnd.kde.kchart' => ['chrt'],
475 'application/vnd.kde.kformula' => ['kfo'],
476 'application/vnd.kde.kivio' => ['flw'],
477 'application/vnd.kde.kontour' => ['kon'],
478 'application/vnd.kde.kpresenter' => ['kpr', 'kpt'],
479 'application/vnd.kde.kspread' => ['ksp'],
480 'application/vnd.kde.kword' => ['kwd', 'kwt'],
481 'application/vnd.kenameaapp' => ['htke'],
482 'application/vnd.kidspiration' => ['kia'],
483 'application/vnd.kinar' => ['kne', 'knp'],
484 'application/vnd.koan' => ['skp', 'skd', 'skt', 'skm'],
485 'application/vnd.kodak-descriptor' => ['sse'],
486 'application/vnd.las.las+xml' => ['lasxml'],
487 'application/vnd.llamagraphics.life-balance.desktop' => ['lbd'],
488 'application/vnd.llamagraphics.life-balance.exchange+xml' => ['lbe'],
489 'application/vnd.lotus-1-2-3' => ['123', 'wk1', 'wk3', 'wk4', 'wks'],
490 'application/vnd.lotus-approach' => ['apr'],
491 'application/vnd.lotus-freelance' => ['pre'],
492 'application/vnd.lotus-notes' => ['nsf'],
493 'application/vnd.lotus-organizer' => ['org'],
494 'application/vnd.lotus-screencam' => ['scm'],
495 'application/vnd.lotus-wordpro' => ['lwp'],
496 'application/vnd.macports.portpkg' => ['portpkg'],
497 'application/vnd.mcd' => ['mcd'],
498 'application/vnd.medcalcdata' => ['mc1'],
499 'application/vnd.mediastation.cdkey' => ['cdkey'],
500 'application/vnd.mfer' => ['mwf'],
501 'application/vnd.mfmp' => ['mfm'],
502 'application/vnd.micrografx.flo' => ['flo'],
503 'application/vnd.micrografx.igx' => ['igx'],
504 'application/vnd.mif' => ['mif'],
505 'application/vnd.mobius.daf' => ['daf'],
506 'application/vnd.mobius.dis' => ['dis'],
507 'application/vnd.mobius.mbk' => ['mbk'],
508 'application/vnd.mobius.mqy' => ['mqy'],
509 'application/vnd.mobius.msl' => ['msl'],
510 'application/vnd.mobius.plc' => ['plc'],
511 'application/vnd.mobius.txf' => ['txf'],
512 'application/vnd.mophun.application' => ['mpn'],
513 'application/vnd.mophun.certificate' => ['mpc'],
514 'application/vnd.mozilla.xul+xml' => ['xul'],
515 'application/vnd.ms-access' => ['mdb'],
516 'application/vnd.ms-artgalry' => ['cil'],
517 'application/vnd.ms-asf' => ['asf'],
518 'application/vnd.ms-cab-compressed' => ['cab'],
519 'application/vnd.ms-excel' => ['xls', 'xlm', 'xla', 'xlc', 'xlt', 'xlw', 'xll', 'xld'],
520 'application/vnd.ms-excel.addin.macroenabled.12' => ['xlam'],
521 'application/vnd.ms-excel.sheet.binary.macroenabled.12' => ['xlsb'],
522 'application/vnd.ms-excel.sheet.macroenabled.12' => ['xlsm'],
523 'application/vnd.ms-excel.template.macroenabled.12' => ['xltm'],
524 'application/vnd.ms-fontobject' => ['eot'],
525 'application/vnd.ms-htmlhelp' => ['chm'],
526 'application/vnd.ms-ims' => ['ims'],
527 'application/vnd.ms-lrm' => ['lrm'],
528 'application/vnd.ms-officetheme' => ['thmx'],
529 'application/vnd.ms-outlook' => ['msg'],
530 'application/vnd.ms-pki.seccat' => ['cat'],
531 'application/vnd.ms-pki.stl' => ['stl'],
532 'application/vnd.ms-powerpoint' => ['ppt', 'pps', 'pot', 'ppz'],
533 'application/vnd.ms-powerpoint.addin.macroenabled.12' => ['ppam'],
534 'application/vnd.ms-powerpoint.presentation.macroenabled.12' => ['pptm'],
535 'application/vnd.ms-powerpoint.slide.macroenabled.12' => ['sldm'],
536 'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => ['ppsm'],
537 'application/vnd.ms-powerpoint.template.macroenabled.12' => ['potm'],
538 'application/vnd.ms-project' => ['mpp', 'mpt'],
539 'application/vnd.ms-publisher' => ['pub'],
540 'application/vnd.ms-tnef' => ['tnef', 'tnf'],
541 'application/vnd.ms-visio.drawing.macroenabled.main+xml' => ['vsdm'],
542 'application/vnd.ms-visio.drawing.main+xml' => ['vsdx'],
543 'application/vnd.ms-visio.stencil.macroenabled.main+xml' => ['vssm'],
544 'application/vnd.ms-visio.stencil.main+xml' => ['vssx'],
545 'application/vnd.ms-visio.template.macroenabled.main+xml' => ['vstm'],
546 'application/vnd.ms-visio.template.main+xml' => ['vstx'],
547 'application/vnd.ms-word' => ['doc'],
548 'application/vnd.ms-word.document.macroenabled.12' => ['docm'],
549 'application/vnd.ms-word.template.macroenabled.12' => ['dotm'],
550 'application/vnd.ms-works' => ['wps', 'wks', 'wcm', 'wdb', 'xlr'],
551 'application/vnd.ms-wpl' => ['wpl'],
552 'application/vnd.ms-xpsdocument' => ['xps', 'oxps'],
553 'application/vnd.msaccess' => ['mdb'],
554 'application/vnd.mseq' => ['mseq'],
555 'application/vnd.musician' => ['mus'],
556 'application/vnd.muvee.style' => ['msty'],
557 'application/vnd.mynfc' => ['taglet'],
558 'application/vnd.neurolanguage.nlu' => ['nlu'],
559 'application/vnd.nintendo.snes.rom' => ['sfc', 'smc'],
560 'application/vnd.nitf' => ['ntf', 'nitf'],
561 'application/vnd.noblenet-directory' => ['nnd'],
562 'application/vnd.noblenet-sealer' => ['nns'],
563 'application/vnd.noblenet-web' => ['nnw'],
564 'application/vnd.nokia.n-gage.data' => ['ngdat'],
565 'application/vnd.nokia.n-gage.symbian.install' => ['n-gage'],
566 'application/vnd.nokia.radio-preset' => ['rpst'],
567 'application/vnd.nokia.radio-presets' => ['rpss'],
568 'application/vnd.novadigm.edm' => ['edm'],
569 'application/vnd.novadigm.edx' => ['edx'],
570 'application/vnd.novadigm.ext' => ['ext'],
571 'application/vnd.oasis.docbook+xml' => ['dbk', 'docbook'],
572 'application/vnd.oasis.opendocument.chart' => ['odc'],
573 'application/vnd.oasis.opendocument.chart-template' => ['otc'],
574 'application/vnd.oasis.opendocument.database' => ['odb'],
575 'application/vnd.oasis.opendocument.formula' => ['odf'],
576 'application/vnd.oasis.opendocument.formula-template' => ['odft', 'otf'],
577 'application/vnd.oasis.opendocument.graphics' => ['odg'],
578 'application/vnd.oasis.opendocument.graphics-flat-xml' => ['fodg'],
579 'application/vnd.oasis.opendocument.graphics-template' => ['otg'],
580 'application/vnd.oasis.opendocument.image' => ['odi'],
581 'application/vnd.oasis.opendocument.image-template' => ['oti'],
582 'application/vnd.oasis.opendocument.presentation' => ['odp'],
583 'application/vnd.oasis.opendocument.presentation-flat-xml' => ['fodp'],
584 'application/vnd.oasis.opendocument.presentation-template' => ['otp'],
585 'application/vnd.oasis.opendocument.spreadsheet' => ['ods'],
586 'application/vnd.oasis.opendocument.spreadsheet-flat-xml' => ['fods'],
587 'application/vnd.oasis.opendocument.spreadsheet-template' => ['ots'],
588 'application/vnd.oasis.opendocument.text' => ['odt'],
589 'application/vnd.oasis.opendocument.text-flat-xml' => ['fodt'],
590 'application/vnd.oasis.opendocument.text-master' => ['odm'],
591 'application/vnd.oasis.opendocument.text-template' => ['ott'],
592 'application/vnd.oasis.opendocument.text-web' => ['oth'],
593 'application/vnd.olpc-sugar' => ['xo'],
594 'application/vnd.oma.dd2+xml' => ['dd2'],
595 'application/vnd.openofficeorg.extension' => ['oxt'],
596 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => ['pptx'],
597 'application/vnd.openxmlformats-officedocument.presentationml.slide' => ['sldx'],
598 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => ['ppsx'],
599 'application/vnd.openxmlformats-officedocument.presentationml.template' => ['potx'],
600 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => ['xlsx'],
601 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => ['xltx'],
602 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => ['docx'],
603 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => ['dotx'],
604 'application/vnd.osgeo.mapguide.package' => ['mgp'],
605 'application/vnd.osgi.dp' => ['dp'],
606 'application/vnd.osgi.subsystem' => ['esa'],
607 'application/vnd.palm' => ['pdb', 'pqa', 'oprc', 'prc'],
608 'application/vnd.pawaafile' => ['paw'],
609 'application/vnd.pg.format' => ['str'],
610 'application/vnd.pg.osasli' => ['ei6'],
611 'application/vnd.picsel' => ['efif'],
612 'application/vnd.pmi.widget' => ['wg'],
613 'application/vnd.pocketlearn' => ['plf'],
614 'application/vnd.powerbuilder6' => ['pbd'],
615 'application/vnd.previewsystems.box' => ['box'],
616 'application/vnd.proteus.magazine' => ['mgz'],
617 'application/vnd.publishare-delta-tree' => ['qps'],
618 'application/vnd.pvi.ptid1' => ['ptid'],
619 'application/vnd.quark.quarkxpress' => ['qxd', 'qxt', 'qwd', 'qwt', 'qxl', 'qxb'],
620 'application/vnd.rar' => ['rar'],
621 'application/vnd.realvnc.bed' => ['bed'],
622 'application/vnd.recordare.musicxml' => ['mxl'],
623 'application/vnd.recordare.musicxml+xml' => ['musicxml'],
624 'application/vnd.rig.cryptonote' => ['cryptonote'],
625 'application/vnd.rim.cod' => ['cod'],
626 'application/vnd.rn-realmedia' => ['rm', 'rmj', 'rmm', 'rms', 'rmx', 'rmvb'],
627 'application/vnd.rn-realmedia-vbr' => ['rmvb', 'rm', 'rmj', 'rmm', 'rms', 'rmx'],
628 'application/vnd.route66.link66+xml' => ['link66'],
629 'application/vnd.sailingtracker.track' => ['st'],
630 'application/vnd.sdp' => ['sdp'],
631 'application/vnd.seemail' => ['see'],
632 'application/vnd.sema' => ['sema'],
633 'application/vnd.semd' => ['semd'],
634 'application/vnd.semf' => ['semf'],
635 'application/vnd.shana.informed.formdata' => ['ifm'],
636 'application/vnd.shana.informed.formtemplate' => ['itp'],
637 'application/vnd.shana.informed.interchange' => ['iif'],
638 'application/vnd.shana.informed.package' => ['ipk'],
639 'application/vnd.simtech-mindmapper' => ['twd', 'twds'],
640 'application/vnd.smaf' => ['mmf', 'smaf'],
641 'application/vnd.smart.teacher' => ['teacher'],
642 'application/vnd.snap' => ['snap'],
643 'application/vnd.solent.sdkm+xml' => ['sdkm', 'sdkd'],
644 'application/vnd.spotfire.dxp' => ['dxp'],
645 'application/vnd.spotfire.sfs' => ['sfs'],
646 'application/vnd.sqlite3' => ['sqlite3'],
647 'application/vnd.squashfs' => ['sqsh'],
648 'application/vnd.stardivision.calc' => ['sdc'],
649 'application/vnd.stardivision.chart' => ['sds'],
650 'application/vnd.stardivision.draw' => ['sda'],
651 'application/vnd.stardivision.impress' => ['sdd', 'sdp'],
652 'application/vnd.stardivision.mail' => ['smd'],
653 'application/vnd.stardivision.math' => ['smf'],
654 'application/vnd.stardivision.writer' => ['sdw', 'vor', 'sgl'],
655 'application/vnd.stardivision.writer-global' => ['sgl', 'sdw', 'vor'],
656 'application/vnd.stepmania.package' => ['smzip'],
657 'application/vnd.stepmania.stepchart' => ['sm'],
658 'application/vnd.sun.xml.base' => ['odb'],
659 'application/vnd.sun.xml.calc' => ['sxc'],
660 'application/vnd.sun.xml.calc.template' => ['stc'],
661 'application/vnd.sun.xml.draw' => ['sxd'],
662 'application/vnd.sun.xml.draw.template' => ['std'],
663 'application/vnd.sun.xml.impress' => ['sxi'],
664 'application/vnd.sun.xml.impress.template' => ['sti'],
665 'application/vnd.sun.xml.math' => ['sxm'],
666 'application/vnd.sun.xml.writer' => ['sxw'],
667 'application/vnd.sun.xml.writer.global' => ['sxg'],
668 'application/vnd.sun.xml.writer.template' => ['stw'],
669 'application/vnd.sus-calendar' => ['sus', 'susp'],
670 'application/vnd.svd' => ['svd'],
671 'application/vnd.symbian.install' => ['sis', 'sisx'],
672 'application/vnd.syncml+xml' => ['xsm'],
673 'application/vnd.syncml.dm+wbxml' => ['bdm'],
674 'application/vnd.syncml.dm+xml' => ['xdm'],
675 'application/vnd.tao.intent-module-archive' => ['tao'],
676 'application/vnd.tcpdump.pcap' => ['pcap', 'cap', 'dmp'],
677 'application/vnd.tmobile-livetv' => ['tmo'],
678 'application/vnd.trid.tpt' => ['tpt'],
679 'application/vnd.triscape.mxs' => ['mxs'],
680 'application/vnd.trueapp' => ['tra'],
681 'application/vnd.ufdl' => ['ufd', 'ufdl'],
682 'application/vnd.uiq.theme' => ['utz'],
683 'application/vnd.umajin' => ['umj'],
684 'application/vnd.unity' => ['unityweb'],
685 'application/vnd.uoml+xml' => ['uoml'],
686 'application/vnd.vcx' => ['vcx'],
687 'application/vnd.visio' => ['vsd', 'vst', 'vss', 'vsw'],
688 'application/vnd.visionary' => ['vis'],
689 'application/vnd.vsf' => ['vsf'],
690 'application/vnd.wap.wbxml' => ['wbxml'],
691 'application/vnd.wap.wmlc' => ['wmlc'],
692 'application/vnd.wap.wmlscriptc' => ['wmlsc'],
693 'application/vnd.webturbo' => ['wtb'],
694 'application/vnd.wolfram.player' => ['nbp'],
695 'application/vnd.wordperfect' => ['wpd', 'wp', 'wp4', 'wp5', 'wp6', 'wpp'],
696 'application/vnd.wqd' => ['wqd'],
697 'application/vnd.wt.stf' => ['stf'],
698 'application/vnd.xara' => ['xar'],
699 'application/vnd.xdgapp' => ['flatpak', 'xdgapp'],
700 'application/vnd.xfdl' => ['xfdl'],
701 'application/vnd.yamaha.hv-dic' => ['hvd'],
702 'application/vnd.yamaha.hv-script' => ['hvs'],
703 'application/vnd.yamaha.hv-voice' => ['hvp'],
704 'application/vnd.yamaha.openscoreformat' => ['osf'],
705 'application/vnd.yamaha.openscoreformat.osfpvg+xml' => ['osfpvg'],
706 'application/vnd.yamaha.smaf-audio' => ['saf'],
707 'application/vnd.yamaha.smaf-phrase' => ['spf'],
708 'application/vnd.yellowriver-custom-menu' => ['cmp'],
709 'application/vnd.youtube.yt' => ['yt'],
710 'application/vnd.zul' => ['zir', 'zirz'],
711 'application/vnd.zzazz.deck+xml' => ['zaz'],
712 'application/voicexml+xml' => ['vxml'],
713 'application/widget' => ['wgt'],
714 'application/winhlp' => ['hlp'],
715 'application/wk1' => ['123', 'wk1', 'wk3', 'wk4', 'wks'],
716 'application/wmf' => ['wmf'],
717 'application/wordperfect' => ['wp', 'wp4', 'wp5', 'wp6', 'wpd', 'wpp'],
718 'application/wsdl+xml' => ['wsdl'],
719 'application/wspolicy+xml' => ['wspolicy'],
720 'application/wwf' => ['wwf'],
721 'application/x-123' => ['123', 'wk1', 'wk3', 'wk4', 'wks'],
722 'application/x-7z-compressed' => ['7z'],
723 'application/x-abiword' => ['abw', 'abw.CRASHED', 'abw.gz', 'zabw'],
724 'application/x-ace' => ['ace'],
725 'application/x-ace-compressed' => ['ace'],
726 'application/x-alz' => ['alz'],
727 'application/x-amiga-disk-format' => ['adf'],
728 'application/x-amipro' => ['sam'],
729 'application/x-annodex' => ['anx'],
730 'application/x-aportisdoc' => ['pdb', 'pdc'],
731 'application/x-apple-diskimage' => ['dmg'],
732 'application/x-applix-spreadsheet' => ['as'],
733 'application/x-applix-word' => ['aw'],
734 'application/x-archive' => ['a', 'ar'],
735 'application/x-arj' => ['arj'],
736 'application/x-asp' => ['asp'],
737 'application/x-atari-2600-rom' => ['a26'],
738 'application/x-atari-7800-rom' => ['a78'],
739 'application/x-atari-lynx-rom' => ['lnx'],
740 'application/x-authorware-bin' => ['aab', 'x32', 'u32', 'vox'],
741 'application/x-authorware-map' => ['aam'],
742 'application/x-authorware-seg' => ['aas'],
743 'application/x-awk' => ['awk'],
744 'application/x-bcpio' => ['bcpio'],
745 'application/x-bittorrent' => ['torrent'],
746 'application/x-blender' => ['blender', 'blend', 'BLEND'],
747 'application/x-blorb' => ['blb', 'blorb'],
748 'application/x-bsdiff' => ['bsdiff'],
749 'application/x-bzdvi' => ['dvi.bz2'],
750 'application/x-bzip' => ['bz', 'bz2'],
751 'application/x-bzip-compressed-tar' => ['tar.bz2', 'tar.bz', 'tbz2', 'tbz', 'tb2'],
752 'application/x-bzip2' => ['bz2', 'boz', 'bz'],
753 'application/x-bzpdf' => ['pdf.bz2'],
754 'application/x-bzpostscript' => ['ps.bz2'],
755 'application/x-cb7' => ['cb7'],
756 'application/x-cbr' => ['cbr', 'cba', 'cbt', 'cbz', 'cb7'],
757 'application/x-cbt' => ['cbt'],
758 'application/x-cbz' => ['cbz'],
759 'application/x-ccmx' => ['ccmx'],
760 'application/x-cd-image' => ['iso', 'iso9660'],
761 'application/x-cdlink' => ['vcd'],
762 'application/x-cdr' => ['cdr'],
763 'application/x-cdrdao-toc' => ['toc'],
764 'application/x-cfs-compressed' => ['cfs'],
765 'application/x-chat' => ['chat'],
766 'application/x-chess-pgn' => ['pgn'],
767 'application/x-chm' => ['chm'],
768 'application/x-cisco-vpn-settings' => ['pcf'],
769 'application/x-compress' => ['Z'],
770 'application/x-compressed-tar' => ['tar.gz', 'tgz'],
771 'application/x-conference' => ['nsc'],
772 'application/x-coreldraw' => ['cdr'],
773 'application/x-cpio' => ['cpio'],
774 'application/x-cpio-compressed' => ['cpio.gz'],
775 'application/x-csh' => ['csh'],
776 'application/x-cue' => ['cue'],
777 'application/x-dar' => ['dar'],
778 'application/x-dbase' => ['dbf'],
779 'application/x-dbf' => ['dbf'],
780 'application/x-dc-rom' => ['dc'],
781 'application/x-deb' => ['deb', 'udeb'],
782 'application/x-debian-package' => ['deb', 'udeb'],
783 'application/x-designer' => ['ui'],
784 'application/x-desktop' => ['desktop', 'kdelnk'],
785 'application/x-dgc-compressed' => ['dgc'],
786 'application/x-dia-diagram' => ['dia'],
787 'application/x-dia-shape' => ['shape'],
788 'application/x-director' => ['dir', 'dcr', 'dxr', 'cst', 'cct', 'cxt', 'w3d', 'fgd', 'swa'],
789 'application/x-docbook+xml' => ['dbk', 'docbook'],
790 'application/x-doom' => ['wad'],
791 'application/x-doom-wad' => ['wad'],
792 'application/x-dtbncx+xml' => ['ncx'],
793 'application/x-dtbook+xml' => ['dtb'],
794 'application/x-dtbresource+xml' => ['res'],
795 'application/x-dvi' => ['dvi'],
796 'application/x-e-theme' => ['etheme'],
797 'application/x-egon' => ['egon'],
798 'application/x-emf' => ['emf'],
799 'application/x-envoy' => ['evy'],
800 'application/x-eva' => ['eva'],
801 'application/x-fd-file' => ['fd', 'qd'],
802 'application/x-fds-disk' => ['fds'],
803 'application/x-fictionbook' => ['fb2'],
804 'application/x-fictionbook+xml' => ['fb2'],
805 'application/x-flash-video' => ['flv'],
806 'application/x-fluid' => ['fl'],
807 'application/x-font-afm' => ['afm'],
808 'application/x-font-bdf' => ['bdf'],
809 'application/x-font-ghostscript' => ['gsf'],
810 'application/x-font-linux-psf' => ['psf'],
811 'application/x-font-otf' => ['otf'],
812 'application/x-font-pcf' => ['pcf', 'pcf.Z', 'pcf.gz'],
813 'application/x-font-snf' => ['snf'],
814 'application/x-font-speedo' => ['spd'],
815 'application/x-font-ttf' => ['ttf'],
816 'application/x-font-ttx' => ['ttx'],
817 'application/x-font-type1' => ['pfa', 'pfb', 'pfm', 'afm', 'gsf'],
818 'application/x-font-woff' => ['woff'],
819 'application/x-frame' => ['fm'],
820 'application/x-freearc' => ['arc'],
821 'application/x-futuresplash' => ['spl'],
822 'application/x-gameboy-color-rom' => ['gbc', 'cgb'],
823 'application/x-gameboy-rom' => ['gb', 'sgb'],
824 'application/x-gamecube-iso-image' => ['iso'],
825 'application/x-gamecube-rom' => ['iso'],
826 'application/x-gamegear-rom' => ['gg'],
827 'application/x-gba-rom' => ['gba', 'agb'],
828 'application/x-gca-compressed' => ['gca'],
829 'application/x-gedcom' => ['ged', 'gedcom'],
830 'application/x-genesis-32x-rom' => ['32x', 'mdx'],
831 'application/x-genesis-rom' => ['gen', 'smd'],
832 'application/x-gettext' => ['po'],
833 'application/x-gettext-translation' => ['gmo', 'mo'],
834 'application/x-glade' => ['glade'],
835 'application/x-glulx' => ['ulx'],
836 'application/x-gnome-app-info' => ['desktop', 'kdelnk'],
837 'application/x-gnucash' => ['gnucash', 'gnc', 'xac'],
838 'application/x-gnumeric' => ['gnumeric'],
839 'application/x-gnuplot' => ['gp', 'gplt', 'gnuplot'],
840 'application/x-go-sgf' => ['sgf'],
841 'application/x-gpx' => ['gpx'],
842 'application/x-gpx+xml' => ['gpx'],
843 'application/x-gramps-xml' => ['gramps'],
844 'application/x-graphite' => ['gra'],
845 'application/x-gtar' => ['gtar', 'tar', 'gem'],
846 'application/x-gtk-builder' => ['ui'],
847 'application/x-gz-font-linux-psf' => ['psf.gz'],
848 'application/x-gzdvi' => ['dvi.gz'],
849 'application/x-gzip' => ['gz'],
850 'application/x-gzpdf' => ['pdf.gz'],
851 'application/x-gzpostscript' => ['ps.gz'],
852 'application/x-hdf' => ['hdf', 'hdf4', 'h4', 'hdf5', 'h5'],
853 'application/x-hfe-file' => ['hfe'],
854 'application/x-hfe-floppy-image' => ['hfe'],
855 'application/x-hwp' => ['hwp'],
856 'application/x-hwt' => ['hwt'],
857 'application/x-ica' => ['ica'],
858 'application/x-install-instructions' => ['install'],
859 'application/x-ipynb+json' => ['ipynb'],
860 'application/x-iso9660-appimage' => ['appimage'],
861 'application/x-iso9660-image' => ['iso', 'iso9660'],
862 'application/x-it87' => ['it87'],
863 'application/x-iwork-keynote-sffkey' => ['key'],
864 'application/x-jar' => ['jar'],
865 'application/x-java' => ['class'],
866 'application/x-java-archive' => ['jar'],
867 'application/x-java-class' => ['class'],
868 'application/x-java-jce-keystore' => ['jceks'],
869 'application/x-java-jnlp-file' => ['jnlp'],
870 'application/x-java-keystore' => ['jks', 'ks'],
871 'application/x-java-pack200' => ['pack'],
872 'application/x-java-vm' => ['class'],
873 'application/x-javascript' => ['js', 'jsm', 'mjs'],
874 'application/x-jbuilder-project' => ['jpr', 'jpx'],
875 'application/x-karbon' => ['karbon'],
876 'application/x-kchart' => ['chrt'],
877 'application/x-kexi-connectiondata' => ['kexic'],
878 'application/x-kexiproject-shortcut' => ['kexis'],
879 'application/x-kexiproject-sqlite' => ['kexi'],
880 'application/x-kexiproject-sqlite2' => ['kexi'],
881 'application/x-kexiproject-sqlite3' => ['kexi'],
882 'application/x-kformula' => ['kfo'],
883 'application/x-killustrator' => ['kil'],
884 'application/x-kivio' => ['flw'],
885 'application/x-kontour' => ['kon'],
886 'application/x-kpovmodeler' => ['kpm'],
887 'application/x-kpresenter' => ['kpr', 'kpt'],
888 'application/x-krita' => ['kra'],
889 'application/x-kspread' => ['ksp'],
890 'application/x-kugar' => ['kud'],
891 'application/x-kword' => ['kwd', 'kwt'],
892 'application/x-latex' => ['latex'],
893 'application/x-lha' => ['lha', 'lzh'],
894 'application/x-lhz' => ['lhz'],
895 'application/x-linguist' => ['ts'],
896 'application/x-lotus123' => ['123', 'wk1', 'wk3', 'wk4', 'wks'],
897 'application/x-lrzip' => ['lrz'],
898 'application/x-lrzip-compressed-tar' => ['tar.lrz', 'tlrz'],
899 'application/x-lyx' => ['lyx'],
900 'application/x-lz4' => ['lz4'],
901 'application/x-lz4-compressed-tar' => ['tar.lz4'],
902 'application/x-lzh-compressed' => ['lzh', 'lha'],
903 'application/x-lzip' => ['lz'],
904 'application/x-lzip-compressed-tar' => ['tar.lz'],
905 'application/x-lzma' => ['lzma'],
906 'application/x-lzma-compressed-tar' => ['tar.lzma', 'tlz'],
907 'application/x-lzop' => ['lzo'],
908 'application/x-lzpdf' => ['pdf.lz'],
909 'application/x-m4' => ['m4'],
910 'application/x-magicpoint' => ['mgp'],
911 'application/x-markaby' => ['mab'],
912 'application/x-mathematica' => ['nb'],
913 'application/x-mdb' => ['mdb'],
914 'application/x-mie' => ['mie'],
915 'application/x-mif' => ['mif'],
916 'application/x-mimearchive' => ['mhtml', 'mht'],
917 'application/x-mobipocket-ebook' => ['prc', 'mobi'],
918 'application/x-ms-application' => ['application'],
919 'application/x-ms-asx' => ['asx', 'wax', 'wvx', 'wmx'],
920 'application/x-ms-dos-executable' => ['exe'],
921 'application/x-ms-shortcut' => ['lnk'],
922 'application/x-ms-wim' => ['wim', 'swm'],
923 'application/x-ms-wmd' => ['wmd'],
924 'application/x-ms-wmz' => ['wmz'],
925 'application/x-ms-xbap' => ['xbap'],
926 'application/x-msaccess' => ['mdb'],
927 'application/x-msbinder' => ['obd'],
928 'application/x-mscardfile' => ['crd'],
929 'application/x-msclip' => ['clp'],
930 'application/x-msdownload' => ['exe', 'dll', 'com', 'bat', 'msi'],
931 'application/x-msexcel' => ['xls', 'xlc', 'xll', 'xlm', 'xlw', 'xla', 'xlt', 'xld'],
932 'application/x-msi' => ['msi'],
933 'application/x-msmediaview' => ['mvb', 'm13', 'm14'],
934 'application/x-msmetafile' => ['wmf', 'wmz', 'emf', 'emz'],
935 'application/x-msmoney' => ['mny'],
936 'application/x-mspowerpoint' => ['ppz', 'ppt', 'pps', 'pot'],
937 'application/x-mspublisher' => ['pub'],
938 'application/x-msschedule' => ['scd'],
939 'application/x-msterminal' => ['trm'],
940 'application/x-mswinurl' => ['url'],
941 'application/x-msword' => ['doc'],
942 'application/x-mswrite' => ['wri'],
943 'application/x-msx-rom' => ['msx'],
944 'application/x-n64-rom' => ['n64', 'z64', 'v64'],
945 'application/x-navi-animation' => ['ani'],
946 'application/x-neo-geo-pocket-color-rom' => ['ngc'],
947 'application/x-neo-geo-pocket-rom' => ['ngp'],
948 'application/x-nes-rom' => ['nes', 'nez', 'unf', 'unif'],
949 'application/x-netcdf' => ['nc', 'cdf'],
950 'application/x-netshow-channel' => ['nsc'],
951 'application/x-nintendo-ds-rom' => ['nds'],
952 'application/x-nzb' => ['nzb'],
953 'application/x-object' => ['o'],
954 'application/x-ogg' => ['ogx'],
955 'application/x-oleo' => ['oleo'],
956 'application/x-pagemaker' => ['p65', 'pm', 'pm6', 'pmd'],
957 'application/x-pak' => ['pak'],
958 'application/x-palm-database' => ['prc', 'pdb', 'pqa', 'oprc'],
959 'application/x-par2' => ['PAR2', 'par2'],
960 'application/x-partial-download' => ['wkdownload', 'crdownload', 'part'],
961 'application/x-pc-engine-rom' => ['pce'],
962 'application/x-pcap' => ['pcap', 'cap', 'dmp'],
963 'application/x-pdf' => ['pdf'],
964 'application/x-perl' => ['pl', 'PL', 'pm', 'al', 'perl', 'pod', 't'],
965 'application/x-photoshop' => ['psd'],
966 'application/x-php' => ['php', 'php3', 'php4', 'php5', 'phps'],
967 'application/x-pkcs12' => ['p12', 'pfx'],
968 'application/x-pkcs7-certificates' => ['p7b', 'spc'],
969 'application/x-pkcs7-certreqresp' => ['p7r'],
970 'application/x-planperfect' => ['pln'],
971 'application/x-pocket-word' => ['psw'],
972 'application/x-pw' => ['pw'],
973 'application/x-python-bytecode' => ['pyc', 'pyo'],
974 'application/x-qpress' => ['qp'],
975 'application/x-qtiplot' => ['qti', 'qti.gz'],
976 'application/x-quattropro' => ['wb1', 'wb2', 'wb3'],
977 'application/x-quicktime-media-link' => ['qtl'],
978 'application/x-quicktimeplayer' => ['qtl'],
979 'application/x-qw' => ['qif'],
980 'application/x-rar' => ['rar'],
981 'application/x-rar-compressed' => ['rar'],
982 'application/x-raw-disk-image' => ['raw-disk-image', 'img'],
983 'application/x-raw-disk-image-xz-compressed' => ['raw-disk-image.xz', 'img.xz'],
984 'application/x-raw-floppy-disk-image' => ['fd', 'qd'],
985 'application/x-redhat-package-manager' => ['rpm'],
986 'application/x-reject' => ['rej'],
987 'application/x-research-info-systems' => ['ris'],
988 'application/x-rnc' => ['rnc'],
989 'application/x-rpm' => ['rpm'],
990 'application/x-ruby' => ['rb'],
991 'application/x-sami' => ['smi', 'sami'],
992 'application/x-sap-file' => ['sap'],
993 'application/x-saturn-rom' => ['bin', 'iso'],
994 'application/x-sdp' => ['sdp'],
995 'application/x-sega-cd-rom' => ['bin', 'iso'],
996 'application/x-sg1000-rom' => ['sg'],
997 'application/x-sh' => ['sh'],
998 'application/x-shar' => ['shar'],
999 'application/x-shared-library-la' => ['la'],
1000 'application/x-sharedlib' => ['so'],
1001 'application/x-shellscript' => ['sh'],
1002 'application/x-shockwave-flash' => ['swf', 'spl'],
1003 'application/x-shorten' => ['shn'],
1004 'application/x-siag' => ['siag'],
1005 'application/x-silverlight-app' => ['xap'],
1006 'application/x-sit' => ['sit'],
1007 'application/x-smaf' => ['mmf', 'smaf'],
1008 'application/x-sms-rom' => ['sms'],
1009 'application/x-snes-rom' => ['sfc', 'smc'],
1010 'application/x-source-rpm' => ['src.rpm', 'spm'],
1011 'application/x-spss-por' => ['por'],
1012 'application/x-spss-sav' => ['sav', 'zsav'],
1013 'application/x-spss-savefile' => ['sav', 'zsav'],
1014 'application/x-sql' => ['sql'],
1015 'application/x-sqlite2' => ['sqlite2'],
1016 'application/x-sqlite3' => ['sqlite3'],
1017 'application/x-srt' => ['srt'],
1018 'application/x-stuffit' => ['sit'],
1019 'application/x-stuffitx' => ['sitx'],
1020 'application/x-subrip' => ['srt'],
1021 'application/x-sv4cpio' => ['sv4cpio'],
1022 'application/x-sv4crc' => ['sv4crc'],
1023 'application/x-t3vm-image' => ['t3'],
1024 'application/x-t602' => ['602'],
1025 'application/x-tads' => ['gam'],
1026 'application/x-tar' => ['tar', 'gtar', 'gem'],
1027 'application/x-tarz' => ['tar.Z', 'taz'],
1028 'application/x-tcl' => ['tcl'],
1029 'application/x-tex' => ['tex', 'ltx', 'sty', 'cls', 'dtx', 'ins', 'latex'],
1030 'application/x-tex-gf' => ['gf'],
1031 'application/x-tex-pk' => ['pk'],
1032 'application/x-tex-tfm' => ['tfm'],
1033 'application/x-texinfo' => ['texinfo', 'texi'],
1034 'application/x-tgif' => ['obj'],
1035 'application/x-theme' => ['theme'],
1036 'application/x-thomson-cartridge-memo7' => ['m7'],
1037 'application/x-thomson-cassette' => ['k7'],
1038 'application/x-thomson-sap-image' => ['sap'],
1039 'application/x-trash' => ['bak', 'old', 'sik'],
1040 'application/x-trig' => ['trig'],
1041 'application/x-troff' => ['tr', 'roff', 't'],
1042 'application/x-troff-man' => ['man'],
1043 'application/x-tzo' => ['tar.lzo', 'tzo'],
1044 'application/x-ufraw' => ['ufraw'],
1045 'application/x-ustar' => ['ustar'],
1046 'application/x-virtual-boy-rom' => ['vb'],
1047 'application/x-vnd.kde.kexi' => ['kexi'],
1048 'application/x-wais-source' => ['src'],
1049 'application/x-wbfs' => ['iso'],
1050 'application/x-wia' => ['iso'],
1051 'application/x-wii-iso-image' => ['iso'],
1052 'application/x-wii-rom' => ['iso'],
1053 'application/x-wii-wad' => ['wad'],
1054 'application/x-windows-themepack' => ['themepack'],
1055 'application/x-wmf' => ['wmf'],
1056 'application/x-wonderswan-color-rom' => ['wsc'],
1057 'application/x-wonderswan-rom' => ['ws'],
1058 'application/x-wordperfect' => ['wp', 'wp4', 'wp5', 'wp6', 'wpd', 'wpp'],
1059 'application/x-wpg' => ['wpg'],
1060 'application/x-wwf' => ['wwf'],
1061 'application/x-x509-ca-cert' => ['der', 'crt', 'cert', 'pem'],
1062 'application/x-xar' => ['xar', 'pkg'],
1063 'application/x-xbel' => ['xbel'],
1064 'application/x-xfig' => ['fig'],
1065 'application/x-xliff' => ['xlf', 'xliff'],
1066 'application/x-xliff+xml' => ['xlf'],
1067 'application/x-xpinstall' => ['xpi'],
1068 'application/x-xspf+xml' => ['xspf'],
1069 'application/x-xz' => ['xz'],
1070 'application/x-xz-compressed-tar' => ['tar.xz', 'txz'],
1071 'application/x-xzpdf' => ['pdf.xz'],
1072 'application/x-yaml' => ['yaml', 'yml'],
1073 'application/x-zip' => ['zip'],
1074 'application/x-zip-compressed' => ['zip'],
1075 'application/x-zip-compressed-fb2' => ['fb2.zip'],
1076 'application/x-zmachine' => ['z1', 'z2', 'z3', 'z4', 'z5', 'z6', 'z7', 'z8'],
1077 'application/x-zoo' => ['zoo'],
1078 'application/xaml+xml' => ['xaml'],
1079 'application/xcap-diff+xml' => ['xdf'],
1080 'application/xenc+xml' => ['xenc'],
1081 'application/xhtml+xml' => ['xhtml', 'xht'],
1082 'application/xliff+xml' => ['xlf', 'xliff'],
1083 'application/xml' => ['xml', 'xsl', 'xbl', 'xsd', 'rng'],
1084 'application/xml-dtd' => ['dtd'],
1085 'application/xml-external-parsed-entity' => ['ent'],
1086 'application/xop+xml' => ['xop'],
1087 'application/xproc+xml' => ['xpl'],
1088 'application/xps' => ['oxps', 'xps'],
1089 'application/xslt+xml' => ['xslt', 'xsl'],
1090 'application/xspf+xml' => ['xspf'],
1091 'application/xv+xml' => ['mxml', 'xhvml', 'xvml', 'xvm'],
1092 'application/yang' => ['yang'],
1093 'application/yin+xml' => ['yin'],
1094 'application/zip' => ['zip'],
1095 'application/zlib' => ['zz'],
1096 'audio/3gpp' => ['3gp', '3gpp', '3ga'],
1097 'audio/3gpp-encrypted' => ['3gp', '3gpp', '3ga'],
1098 'audio/3gpp2' => ['3g2', '3gp2', '3gpp2'],
1099 'audio/aac' => ['aac', 'adts', 'ass'],
1100 'audio/ac3' => ['ac3'],
1101 'audio/adpcm' => ['adp'],
1102 'audio/amr' => ['amr'],
1103 'audio/amr-encrypted' => ['amr'],
1104 'audio/amr-wb' => ['awb'],
1105 'audio/amr-wb-encrypted' => ['awb'],
1106 'audio/annodex' => ['axa'],
1107 'audio/basic' => ['au', 'snd'],
1108 'audio/flac' => ['flac'],
1109 'audio/imelody' => ['imy', 'ime'],
1110 'audio/m3u' => ['m3u', 'm3u8', 'vlc'],
1111 'audio/m4a' => ['m4a', 'f4a'],
1112 'audio/midi' => ['mid', 'midi', 'kar', 'rmi'],
1113 'audio/mobile-xmf' => ['xmf'],
1114 'audio/mp2' => ['mp2'],
1115 'audio/mp3' => ['mp3', 'mpga'],
1116 'audio/mp4' => ['m4a', 'mp4a', 'f4a'],
1117 'audio/mpeg' => ['mp3', 'mpga', 'mp2', 'mp2a', 'm2a', 'm3a'],
1118 'audio/mpegurl' => ['m3u', 'm3u8', 'vlc'],
1119 'audio/ogg' => ['oga', 'ogg', 'spx', 'opus'],
1120 'audio/prs.sid' => ['sid', 'psid'],
1121 'audio/s3m' => ['s3m'],
1122 'audio/scpls' => ['pls'],
1123 'audio/silk' => ['sil'],
1124 'audio/tta' => ['tta'],
1125 'audio/usac' => ['loas', 'xhe'],
1126 'audio/vnd.audible' => ['aa', 'aax'],
1127 'audio/vnd.audible.aax' => ['aa', 'aax'],
1128 'audio/vnd.dece.audio' => ['uva', 'uvva'],
1129 'audio/vnd.digital-winds' => ['eol'],
1130 'audio/vnd.dra' => ['dra'],
1131 'audio/vnd.dts' => ['dts'],
1132 'audio/vnd.dts.hd' => ['dtshd'],
1133 'audio/vnd.lucent.voice' => ['lvp'],
1134 'audio/vnd.m-realaudio' => ['ra', 'rax'],
1135 'audio/vnd.ms-playready.media.pya' => ['pya'],
1136 'audio/vnd.nuera.ecelp4800' => ['ecelp4800'],
1137 'audio/vnd.nuera.ecelp7470' => ['ecelp7470'],
1138 'audio/vnd.nuera.ecelp9600' => ['ecelp9600'],
1139 'audio/vnd.rip' => ['rip'],
1140 'audio/vnd.rn-realaudio' => ['ra', 'rax'],
1141 'audio/vnd.wave' => ['wav'],
1142 'audio/vorbis' => ['oga', 'ogg'],
1143 'audio/wav' => ['wav'],
1144 'audio/webm' => ['weba'],
1145 'audio/wma' => ['wma'],
1146 'audio/x-aac' => ['aac', 'adts', 'ass'],
1147 'audio/x-aifc' => ['aifc', 'aiffc'],
1148 'audio/x-aiff' => ['aif', 'aiff', 'aifc'],
1149 'audio/x-aiffc' => ['aifc', 'aiffc'],
1150 'audio/x-amzxml' => ['amz'],
1151 'audio/x-annodex' => ['axa'],
1152 'audio/x-ape' => ['ape'],
1153 'audio/x-caf' => ['caf'],
1154 'audio/x-dts' => ['dts'],
1155 'audio/x-dtshd' => ['dtshd'],
1156 'audio/x-flac' => ['flac'],
1157 'audio/x-flac+ogg' => ['oga', 'ogg'],
1158 'audio/x-gsm' => ['gsm'],
1159 'audio/x-hx-aac-adts' => ['aac', 'adts', 'ass'],
1160 'audio/x-imelody' => ['imy', 'ime'],
1161 'audio/x-iriver-pla' => ['pla'],
1162 'audio/x-it' => ['it'],
1163 'audio/x-m3u' => ['m3u', 'm3u8', 'vlc'],
1164 'audio/x-m4a' => ['m4a', 'f4a'],
1165 'audio/x-m4b' => ['m4b', 'f4b'],
1166 'audio/x-m4r' => ['m4r'],
1167 'audio/x-matroska' => ['mka'],
1168 'audio/x-midi' => ['mid', 'midi', 'kar'],
1169 'audio/x-minipsf' => ['minipsf'],
1170 'audio/x-mo3' => ['mo3'],
1171 'audio/x-mod' => ['mod', 'ult', 'uni', 'm15', 'mtm', '669', 'med'],
1172 'audio/x-mp2' => ['mp2'],
1173 'audio/x-mp3' => ['mp3', 'mpga'],
1174 'audio/x-mp3-playlist' => ['m3u', 'm3u8', 'vlc'],
1175 'audio/x-mpeg' => ['mp3', 'mpga'],
1176 'audio/x-mpegurl' => ['m3u', 'm3u8', 'vlc'],
1177 'audio/x-mpg' => ['mp3', 'mpga'],
1178 'audio/x-ms-asx' => ['asx', 'wax', 'wvx', 'wmx'],
1179 'audio/x-ms-wax' => ['wax'],
1180 'audio/x-ms-wma' => ['wma'],
1181 'audio/x-musepack' => ['mpc', 'mpp', 'mp+'],
1182 'audio/x-ogg' => ['oga', 'ogg', 'opus'],
1183 'audio/x-oggflac' => ['oga', 'ogg'],
1184 'audio/x-opus+ogg' => ['opus'],
1185 'audio/x-pn-audibleaudio' => ['aa', 'aax'],
1186 'audio/x-pn-realaudio' => ['ram', 'ra', 'rax'],
1187 'audio/x-pn-realaudio-plugin' => ['rmp'],
1188 'audio/x-psf' => ['psf'],
1189 'audio/x-psflib' => ['psflib'],
1190 'audio/x-rn-3gpp-amr' => ['3gp', '3gpp', '3ga'],
1191 'audio/x-rn-3gpp-amr-encrypted' => ['3gp', '3gpp', '3ga'],
1192 'audio/x-rn-3gpp-amr-wb' => ['3gp', '3gpp', '3ga'],
1193 'audio/x-rn-3gpp-amr-wb-encrypted' => ['3gp', '3gpp', '3ga'],
1194 'audio/x-s3m' => ['s3m'],
1195 'audio/x-scpls' => ['pls'],
1196 'audio/x-shorten' => ['shn'],
1197 'audio/x-speex' => ['spx'],
1198 'audio/x-speex+ogg' => ['oga', 'ogg'],
1199 'audio/x-stm' => ['stm'],
1200 'audio/x-tta' => ['tta'],
1201 'audio/x-voc' => ['voc'],
1202 'audio/x-vorbis' => ['oga', 'ogg'],
1203 'audio/x-vorbis+ogg' => ['oga', 'ogg'],
1204 'audio/x-wav' => ['wav'],
1205 'audio/x-wavpack' => ['wv', 'wvp'],
1206 'audio/x-wavpack-correction' => ['wvc'],
1207 'audio/x-xi' => ['xi'],
1208 'audio/x-xm' => ['xm'],
1209 'audio/x-xmf' => ['xmf'],
1210 'audio/xm' => ['xm'],
1211 'audio/xmf' => ['xmf'],
1212 'chemical/x-cdx' => ['cdx'],
1213 'chemical/x-cif' => ['cif'],
1214 'chemical/x-cmdf' => ['cmdf'],
1215 'chemical/x-cml' => ['cml'],
1216 'chemical/x-csml' => ['csml'],
1217 'chemical/x-xyz' => ['xyz'],
1218 'flv-application/octet-stream' => ['flv'],
1219 'font/collection' => ['ttc'],
1220 'font/otf' => ['otf'],
1221 'font/ttf' => ['ttf'],
1222 'font/woff' => ['woff', 'woff2'],
1223 'font/woff2' => ['woff2'],
1224 'image/bmp' => ['bmp', 'dib'],
1225 'image/cdr' => ['cdr'],
1226 'image/cgm' => ['cgm'],
1227 'image/emf' => ['emf'],
1228 'image/fax-g3' => ['g3'],
1229 'image/fits' => ['fits'],
1230 'image/g3fax' => ['g3'],
1231 'image/gif' => ['gif'],
1232 'image/heic' => ['heic', 'heif'],
1233 'image/heic-sequence' => ['heic', 'heif'],
1234 'image/heif' => ['heic', 'heif'],
1235 'image/heif-sequence' => ['heic', 'heif'],
1236 'image/ico' => ['ico'],
1237 'image/icon' => ['ico'],
1238 'image/ief' => ['ief'],
1239 'image/jp2' => ['jp2', 'jpg2'],
1240 'image/jpeg' => ['jpeg', 'jpg', 'jpe'],
1241 'image/jpeg2000' => ['jp2', 'jpg2'],
1242 'image/jpeg2000-image' => ['jp2', 'jpg2'],
1243 'image/jpm' => ['jpm', 'jpgm'],
1244 'image/jpx' => ['jpf', 'jpx'],
1245 'image/ktx' => ['ktx'],
1246 'image/openraster' => ['ora'],
1247 'image/pdf' => ['pdf'],
1248 'image/photoshop' => ['psd'],
1249 'image/pjpeg' => ['jpeg', 'jpg', 'jpe'],
1250 'image/png' => ['png'],
1251 'image/prs.btif' => ['btif'],
1252 'image/psd' => ['psd'],
1253 'image/rle' => ['rle'],
1254 'image/sgi' => ['sgi'],
1255 'image/svg' => ['svg'],
1256 'image/svg+xml' => ['svg', 'svgz'],
1257 'image/svg+xml-compressed' => ['svgz'],
1258 'image/tiff' => ['tiff', 'tif'],
1259 'image/vnd.adobe.photoshop' => ['psd'],
1260 'image/vnd.dece.graphic' => ['uvi', 'uvvi', 'uvg', 'uvvg'],
1261 'image/vnd.djvu' => ['djvu', 'djv'],
1262 'image/vnd.djvu+multipage' => ['djvu', 'djv'],
1263 'image/vnd.dvb.subtitle' => ['sub'],
1264 'image/vnd.dwg' => ['dwg'],
1265 'image/vnd.dxf' => ['dxf'],
1266 'image/vnd.fastbidsheet' => ['fbs'],
1267 'image/vnd.fpx' => ['fpx'],
1268 'image/vnd.fst' => ['fst'],
1269 'image/vnd.fujixerox.edmics-mmr' => ['mmr'],
1270 'image/vnd.fujixerox.edmics-rlc' => ['rlc'],
1271 'image/vnd.microsoft.icon' => ['ico'],
1272 'image/vnd.ms-modi' => ['mdi'],
1273 'image/vnd.ms-photo' => ['wdp'],
1274 'image/vnd.net-fpx' => ['npx'],
1275 'image/vnd.rn-realpix' => ['rp'],
1276 'image/vnd.wap.wbmp' => ['wbmp'],
1277 'image/vnd.xiff' => ['xif'],
1278 'image/vnd.zbrush.pcx' => ['pcx'],
1279 'image/webp' => ['webp'],
1280 'image/wmf' => ['wmf'],
1281 'image/x-3ds' => ['3ds'],
1282 'image/x-adobe-dng' => ['dng'],
1283 'image/x-applix-graphics' => ['ag'],
1284 'image/x-bmp' => ['bmp', 'dib'],
1285 'image/x-bzeps' => ['eps.bz2', 'epsi.bz2', 'epsf.bz2'],
1286 'image/x-canon-cr2' => ['cr2'],
1287 'image/x-canon-crw' => ['crw'],
1288 'image/x-cdr' => ['cdr'],
1289 'image/x-cmu-raster' => ['ras'],
1290 'image/x-cmx' => ['cmx'],
1291 'image/x-compressed-xcf' => ['xcf.gz', 'xcf.bz2'],
1292 'image/x-dds' => ['dds'],
1293 'image/x-djvu' => ['djvu', 'djv'],
1294 'image/x-emf' => ['emf'],
1295 'image/x-eps' => ['eps', 'epsi', 'epsf'],
1296 'image/x-exr' => ['exr'],
1297 'image/x-fits' => ['fits'],
1298 'image/x-freehand' => ['fh', 'fhc', 'fh4', 'fh5', 'fh7'],
1299 'image/x-fuji-raf' => ['raf'],
1300 'image/x-gimp-gbr' => ['gbr'],
1301 'image/x-gimp-gih' => ['gih'],
1302 'image/x-gimp-pat' => ['pat'],
1303 'image/x-gzeps' => ['eps.gz', 'epsi.gz', 'epsf.gz'],
1304 'image/x-icb' => ['tga', 'icb', 'tpic', 'vda', 'vst'],
1305 'image/x-icns' => ['icns'],
1306 'image/x-ico' => ['ico'],
1307 'image/x-icon' => ['ico'],
1308 'image/x-iff' => ['iff', 'ilbm', 'lbm'],
1309 'image/x-ilbm' => ['iff', 'ilbm', 'lbm'],
1310 'image/x-jng' => ['jng'],
1311 'image/x-jp2-codestream' => ['j2c', 'j2k', 'jpc'],
1312 'image/x-jpeg2000-image' => ['jp2', 'jpg2'],
1313 'image/x-kodak-dcr' => ['dcr'],
1314 'image/x-kodak-k25' => ['k25'],
1315 'image/x-kodak-kdc' => ['kdc'],
1316 'image/x-lwo' => ['lwo', 'lwob'],
1317 'image/x-lws' => ['lws'],
1318 'image/x-macpaint' => ['pntg'],
1319 'image/x-minolta-mrw' => ['mrw'],
1320 'image/x-mrsid-image' => ['sid'],
1321 'image/x-ms-bmp' => ['bmp', 'dib'],
1322 'image/x-msod' => ['msod'],
1323 'image/x-nikon-nef' => ['nef'],
1324 'image/x-olympus-orf' => ['orf'],
1325 'image/x-panasonic-raw' => ['raw'],
1326 'image/x-panasonic-raw2' => ['rw2'],
1327 'image/x-panasonic-rw' => ['raw'],
1328 'image/x-panasonic-rw2' => ['rw2'],
1329 'image/x-pcx' => ['pcx'],
1330 'image/x-pentax-pef' => ['pef'],
1331 'image/x-photo-cd' => ['pcd'],
1332 'image/x-photoshop' => ['psd'],
1333 'image/x-pict' => ['pic', 'pct', 'pict', 'pict1', 'pict2'],
1334 'image/x-portable-anymap' => ['pnm'],
1335 'image/x-portable-bitmap' => ['pbm'],
1336 'image/x-portable-graymap' => ['pgm'],
1337 'image/x-portable-pixmap' => ['ppm'],
1338 'image/x-psd' => ['psd'],
1339 'image/x-quicktime' => ['qtif', 'qif'],
1340 'image/x-rgb' => ['rgb'],
1341 'image/x-sgi' => ['sgi'],
1342 'image/x-sigma-x3f' => ['x3f'],
1343 'image/x-skencil' => ['sk', 'sk1'],
1344 'image/x-sony-arw' => ['arw'],
1345 'image/x-sony-sr2' => ['sr2'],
1346 'image/x-sony-srf' => ['srf'],
1347 'image/x-sun-raster' => ['sun'],
1348 'image/x-tga' => ['tga', 'icb', 'tpic', 'vda', 'vst'],
1349 'image/x-win-bitmap' => ['cur'],
1350 'image/x-win-metafile' => ['wmf'],
1351 'image/x-wmf' => ['wmf'],
1352 'image/x-xbitmap' => ['xbm'],
1353 'image/x-xcf' => ['xcf'],
1354 'image/x-xfig' => ['fig'],
1355 'image/x-xpixmap' => ['xpm'],
1356 'image/x-xpm' => ['xpm'],
1357 'image/x-xwindowdump' => ['xwd'],
1358 'image/x.djvu' => ['djvu', 'djv'],
1359 'message/rfc822' => ['eml', 'mime'],
1360 'model/iges' => ['igs', 'iges'],
1361 'model/mesh' => ['msh', 'mesh', 'silo'],
1362 'model/stl' => ['stl'],
1363 'model/vnd.collada+xml' => ['dae'],
1364 'model/vnd.dwf' => ['dwf'],
1365 'model/vnd.gdl' => ['gdl'],
1366 'model/vnd.gtw' => ['gtw'],
1367 'model/vnd.mts' => ['mts'],
1368 'model/vnd.vtu' => ['vtu'],
1369 'model/vrml' => ['wrl', 'vrml', 'vrm'],
1370 'model/x.stl-ascii' => ['stl'],
1371 'model/x.stl-binary' => ['stl'],
1372 'model/x3d+binary' => ['x3db', 'x3dbz'],
1373 'model/x3d+vrml' => ['x3dv', 'x3dvz'],
1374 'model/x3d+xml' => ['x3d', 'x3dz'],
1375 'text/cache-manifest' => ['appcache', 'manifest'],
1376 'text/calendar' => ['ics', 'ifb', 'vcs'],
1377 'text/css' => ['css'],
1378 'text/csv' => ['csv'],
1379 'text/csv-schema' => ['csvs'],
1380 'text/directory' => ['vcard', 'vcf', 'vct', 'gcrd'],
1381 'text/ecmascript' => ['es'],
1382 'text/gedcom' => ['ged', 'gedcom'],
1383 'text/google-video-pointer' => ['gvp'],
1384 'text/html' => ['html', 'htm'],
1385 'text/ico' => ['ico'],
1386 'text/javascript' => ['js', 'jsm', 'mjs'],
1387 'text/markdown' => ['md', 'mkd', 'markdown'],
1388 'text/mathml' => ['mml'],
1389 'text/n3' => ['n3'],
1390 'text/plain' => ['txt', 'text', 'conf', 'def', 'list', 'log', 'in', 'asc'],
1391 'text/prs.lines.tag' => ['dsc'],
1392 'text/rdf' => ['rdf', 'rdfs', 'owl'],
1393 'text/richtext' => ['rtx'],
1394 'text/rss' => ['rss'],
1395 'text/rtf' => ['rtf'],
1396 'text/rust' => ['rs'],
1397 'text/sgml' => ['sgml', 'sgm'],
1398 'text/spreadsheet' => ['sylk', 'slk'],
1399 'text/tab-separated-values' => ['tsv'],
1400 'text/troff' => ['t', 'tr', 'roff', 'man', 'me', 'ms'],
1401 'text/turtle' => ['ttl'],
1402 'text/uri-list' => ['uri', 'uris', 'urls'],
1403 'text/vcard' => ['vcard', 'vcf', 'vct', 'gcrd'],
1404 'text/vnd.curl' => ['curl'],
1405 'text/vnd.curl.dcurl' => ['dcurl'],
1406 'text/vnd.curl.mcurl' => ['mcurl'],
1407 'text/vnd.curl.scurl' => ['scurl'],
1408 'text/vnd.dvb.subtitle' => ['sub'],
1409 'text/vnd.fly' => ['fly'],
1410 'text/vnd.fmi.flexstor' => ['flx'],
1411 'text/vnd.graphviz' => ['gv', 'dot'],
1412 'text/vnd.in3d.3dml' => ['3dml'],
1413 'text/vnd.in3d.spot' => ['spot'],
1414 'text/vnd.qt.linguist' => ['ts'],
1415 'text/vnd.rn-realtext' => ['rt'],
1416 'text/vnd.sun.j2me.app-descriptor' => ['jad'],
1417 'text/vnd.trolltech.linguist' => ['ts'],
1418 'text/vnd.wap.wml' => ['wml'],
1419 'text/vnd.wap.wmlscript' => ['wmls'],
1420 'text/vtt' => ['vtt'],
1421 'text/x-adasrc' => ['adb', 'ads'],
1422 'text/x-asm' => ['s', 'asm'],
1423 'text/x-bibtex' => ['bib'],
1424 'text/x-c' => ['c', 'cc', 'cxx', 'cpp', 'h', 'hh', 'dic'],
1425 'text/x-c++hdr' => ['hh', 'hp', 'hpp', 'h++', 'hxx'],
1426 'text/x-c++src' => ['cpp', 'cxx', 'cc', 'C', 'c++'],
1427 'text/x-chdr' => ['h'],
1428 'text/x-cmake' => ['cmake'],
1429 'text/x-cobol' => ['cbl', 'cob'],
1430 'text/x-comma-separated-values' => ['csv'],
1431 'text/x-csharp' => ['cs'],
1432 'text/x-csrc' => ['c'],
1433 'text/x-csv' => ['csv'],
1434 'text/x-dbus-service' => ['service'],
1435 'text/x-dcl' => ['dcl'],
1436 'text/x-diff' => ['diff', 'patch'],
1437 'text/x-dsl' => ['dsl'],
1438 'text/x-dsrc' => ['d', 'di'],
1439 'text/x-dtd' => ['dtd'],
1440 'text/x-eiffel' => ['e', 'eif'],
1441 'text/x-emacs-lisp' => ['el'],
1442 'text/x-erlang' => ['erl'],
1443 'text/x-fortran' => ['f', 'for', 'f77', 'f90', 'f95'],
1444 'text/x-genie' => ['gs'],
1445 'text/x-gettext-translation' => ['po'],
1446 'text/x-gettext-translation-template' => ['pot'],
1447 'text/x-gherkin' => ['feature'],
1448 'text/x-go' => ['go'],
1449 'text/x-google-video-pointer' => ['gvp'],
1450 'text/x-haskell' => ['hs'],
1451 'text/x-idl' => ['idl'],
1452 'text/x-imelody' => ['imy', 'ime'],
1453 'text/x-iptables' => ['iptables'],
1454 'text/x-java' => ['java'],
1455 'text/x-java-source' => ['java'],
1456 'text/x-ldif' => ['ldif'],
1457 'text/x-lilypond' => ['ly'],
1458 'text/x-literate-haskell' => ['lhs'],
1459 'text/x-log' => ['log'],
1460 'text/x-lua' => ['lua'],
1461 'text/x-lyx' => ['lyx'],
1462 'text/x-makefile' => ['mk', 'mak'],
1463 'text/x-markdown' => ['md', 'mkd', 'markdown'],
1464 'text/x-matlab' => ['m'],
1465 'text/x-microdvd' => ['sub'],
1466 'text/x-moc' => ['moc'],
1467 'text/x-modelica' => ['mo'],
1468 'text/x-mof' => ['mof'],
1469 'text/x-mpsub' => ['sub'],
1470 'text/x-mrml' => ['mrml', 'mrl'],
1471 'text/x-ms-regedit' => ['reg'],
1472 'text/x-mup' => ['mup', 'not'],
1473 'text/x-nfo' => ['nfo'],
1474 'text/x-objcsrc' => ['m'],
1475 'text/x-ocaml' => ['ml', 'mli'],
1476 'text/x-ocl' => ['ocl'],
1477 'text/x-octave' => ['m'],
1478 'text/x-ooc' => ['ooc'],
1479 'text/x-opencl-src' => ['cl'],
1480 'text/x-opml' => ['opml'],
1481 'text/x-opml+xml' => ['opml'],
1482 'text/x-pascal' => ['p', 'pas'],
1483 'text/x-patch' => ['diff', 'patch'],
1484 'text/x-perl' => ['pl', 'PL', 'pm', 'al', 'perl', 'pod', 't'],
1485 'text/x-po' => ['po'],
1486 'text/x-pot' => ['pot'],
1487 'text/x-python' => ['py', 'pyx', 'wsgi'],
1488 'text/x-python3' => ['py', 'py3', 'py3x'],
1489 'text/x-qml' => ['qml', 'qmltypes', 'qmlproject'],
1490 'text/x-reject' => ['rej'],
1491 'text/x-rpm-spec' => ['spec'],
1492 'text/x-sass' => ['sass'],
1493 'text/x-scala' => ['scala'],
1494 'text/x-scheme' => ['scm', 'ss'],
1495 'text/x-scss' => ['scss'],
1496 'text/x-setext' => ['etx'],
1497 'text/x-sfv' => ['sfv'],
1498 'text/x-sh' => ['sh'],
1499 'text/x-sql' => ['sql'],
1500 'text/x-ssa' => ['ssa', 'ass'],
1501 'text/x-subviewer' => ['sub'],
1502 'text/x-svhdr' => ['svh'],
1503 'text/x-svsrc' => ['sv'],
1504 'text/x-systemd-unit' => ['automount', 'device', 'mount', 'path', 'scope', 'service', 'slice', 'socket', 'swap', 'target', 'timer'],
1505 'text/x-tcl' => ['tcl', 'tk'],
1506 'text/x-tex' => ['tex', 'ltx', 'sty', 'cls', 'dtx', 'ins', 'latex'],
1507 'text/x-texinfo' => ['texi', 'texinfo'],
1508 'text/x-troff' => ['tr', 'roff', 't'],
1509 'text/x-troff-me' => ['me'],
1510 'text/x-troff-mm' => ['mm'],
1511 'text/x-troff-ms' => ['ms'],
1512 'text/x-twig' => ['twig'],
1513 'text/x-txt2tags' => ['t2t'],
1514 'text/x-uil' => ['uil'],
1515 'text/x-uuencode' => ['uu', 'uue'],
1516 'text/x-vala' => ['vala', 'vapi'],
1517 'text/x-vcalendar' => ['vcs', 'ics'],
1518 'text/x-vcard' => ['vcf', 'vcard', 'vct', 'gcrd'],
1519 'text/x-verilog' => ['v'],
1520 'text/x-vhdl' => ['vhd', 'vhdl'],
1521 'text/x-xmi' => ['xmi'],
1522 'text/x-xslfo' => ['fo', 'xslfo'],
1523 'text/x-yaml' => ['yaml', 'yml'],
1524 'text/x.gcode' => ['gcode'],
1525 'text/xml' => ['xml', 'xbl', 'xsd', 'rng'],
1526 'text/xml-external-parsed-entity' => ['ent'],
1527 'text/yaml' => ['yaml', 'yml'],
1528 'video/3gp' => ['3gp', '3gpp', '3ga'],
1529 'video/3gpp' => ['3gp', '3gpp', '3ga'],
1530 'video/3gpp-encrypted' => ['3gp', '3gpp', '3ga'],
1531 'video/3gpp2' => ['3g2', '3gp2', '3gpp2'],
1532 'video/annodex' => ['axv'],
1533 'video/avi' => ['avi', 'avf', 'divx'],
1534 'video/divx' => ['avi', 'avf', 'divx'],
1535 'video/dv' => ['dv'],
1536 'video/fli' => ['fli', 'flc'],
1537 'video/flv' => ['flv'],
1538 'video/h261' => ['h261'],
1539 'video/h263' => ['h263'],
1540 'video/h264' => ['h264'],
1541 'video/jpeg' => ['jpgv'],
1542 'video/jpm' => ['jpm', 'jpgm'],
1543 'video/mj2' => ['mj2', 'mjp2'],
1544 'video/mp2t' => ['m2t', 'm2ts', 'ts', 'mts', 'cpi', 'clpi', 'mpl', 'mpls', 'bdm', 'bdmv'],
1545 'video/mp4' => ['mp4', 'mp4v', 'mpg4', 'm4v', 'f4v', 'lrv'],
1546 'video/mp4v-es' => ['mp4', 'm4v', 'f4v', 'lrv'],
1547 'video/mpeg' => ['mpeg', 'mpg', 'mpe', 'm1v', 'm2v', 'mp2', 'vob'],
1548 'video/mpeg-system' => ['mpeg', 'mpg', 'mp2', 'mpe', 'vob'],
1549 'video/msvideo' => ['avi', 'avf', 'divx'],
1550 'video/ogg' => ['ogv', 'ogg'],
1551 'video/quicktime' => ['qt', 'mov', 'moov', 'qtvr'],
1552 'video/vivo' => ['viv', 'vivo'],
1553 'video/vnd.dece.hd' => ['uvh', 'uvvh'],
1554 'video/vnd.dece.mobile' => ['uvm', 'uvvm'],
1555 'video/vnd.dece.pd' => ['uvp', 'uvvp'],
1556 'video/vnd.dece.sd' => ['uvs', 'uvvs'],
1557 'video/vnd.dece.video' => ['uvv', 'uvvv'],
1558 'video/vnd.divx' => ['avi', 'avf', 'divx'],
1559 'video/vnd.dvb.file' => ['dvb'],
1560 'video/vnd.fvt' => ['fvt'],
1561 'video/vnd.mpegurl' => ['mxu', 'm4u', 'm1u'],
1562 'video/vnd.ms-playready.media.pyv' => ['pyv'],
1563 'video/vnd.rn-realvideo' => ['rv', 'rvx'],
1564 'video/vnd.uvvu.mp4' => ['uvu', 'uvvu'],
1565 'video/vnd.vivo' => ['viv', 'vivo'],
1566 'video/webm' => ['webm'],
1567 'video/x-anim' => ['anim[1-9j]'],
1568 'video/x-annodex' => ['axv'],
1569 'video/x-avi' => ['avi', 'avf', 'divx'],
1570 'video/x-f4v' => ['f4v'],
1571 'video/x-fli' => ['fli', 'flc'],
1572 'video/x-flic' => ['fli', 'flc'],
1573 'video/x-flv' => ['flv'],
1574 'video/x-javafx' => ['fxm'],
1575 'video/x-m4v' => ['m4v', 'mp4', 'f4v', 'lrv'],
1576 'video/x-matroska' => ['mkv', 'mk3d', 'mks'],
1577 'video/x-matroska-3d' => ['mk3d'],
1578 'video/x-mjpeg' => ['mjpeg', 'mjpg'],
1579 'video/x-mng' => ['mng'],
1580 'video/x-mpeg' => ['mpeg', 'mpg', 'mp2', 'mpe', 'vob'],
1581 'video/x-mpeg-system' => ['mpeg', 'mpg', 'mp2', 'mpe', 'vob'],
1582 'video/x-mpeg2' => ['mpeg', 'mpg', 'mp2', 'mpe', 'vob'],
1583 'video/x-mpegurl' => ['m1u', 'm4u', 'mxu'],
1584 'video/x-ms-asf' => ['asf', 'asx'],
1585 'video/x-ms-asf-plugin' => ['asf'],
1586 'video/x-ms-vob' => ['vob'],
1587 'video/x-ms-wax' => ['asx', 'wax', 'wvx', 'wmx'],
1588 'video/x-ms-wm' => ['wm', 'asf'],
1589 'video/x-ms-wmv' => ['wmv'],
1590 'video/x-ms-wmx' => ['wmx', 'asx', 'wax', 'wvx'],
1591 'video/x-ms-wvx' => ['wvx', 'asx', 'wax', 'wmx'],
1592 'video/x-msvideo' => ['avi', 'avf', 'divx'],
1593 'video/x-nsv' => ['nsv'],
1594 'video/x-ogg' => ['ogv', 'ogg'],
1595 'video/x-ogm' => ['ogm'],
1596 'video/x-ogm+ogg' => ['ogm'],
1597 'video/x-real-video' => ['rv', 'rvx'],
1598 'video/x-sgi-movie' => ['movie'],
1599 'video/x-smv' => ['smv'],
1600 'video/x-theora' => ['ogg'],
1601 'video/x-theora+ogg' => ['ogg'],
1602 'x-conference/x-cooltalk' => ['ice'],
1603 'x-epoc/x-sisx-app' => ['sisx'],
1604 'zz-application/zz-winassoc-123' => ['123', 'wk1', 'wk3', 'wk4', 'wks'],
1605 'zz-application/zz-winassoc-cab' => ['cab'],
1606 'zz-application/zz-winassoc-cdr' => ['cdr'],
1607 'zz-application/zz-winassoc-doc' => ['doc'],
1608 'zz-application/zz-winassoc-hlp' => ['hlp'],
1609 'zz-application/zz-winassoc-mdb' => ['mdb'],
1610 'zz-application/zz-winassoc-uu' => ['uue'],
1611 'zz-application/zz-winassoc-xls' => ['xls', 'xlc', 'xll', 'xlm', 'xlw', 'xla', 'xlt', 'xld'],
1612 ];
1613
1614 private static $reverseMap = [
1615 '32x' => ['application/x-genesis-32x-rom'],
1616 '3dml' => ['text/vnd.in3d.3dml'],
1617 '3ds' => ['image/x-3ds'],
1618 '3g2' => ['audio/3gpp2', 'video/3gpp2'],
1619 '3ga' => ['audio/3gpp', 'audio/3gpp-encrypted', 'audio/x-rn-3gpp-amr', 'audio/x-rn-3gpp-amr-encrypted', 'audio/x-rn-3gpp-amr-wb', 'audio/x-rn-3gpp-amr-wb-encrypted', 'video/3gp', 'video/3gpp', 'video/3gpp-encrypted'],
1620 '3gp' => ['audio/3gpp', 'audio/3gpp-encrypted', 'audio/x-rn-3gpp-amr', 'audio/x-rn-3gpp-amr-encrypted', 'audio/x-rn-3gpp-amr-wb', 'audio/x-rn-3gpp-amr-wb-encrypted', 'video/3gp', 'video/3gpp', 'video/3gpp-encrypted'],
1621 '3gp2' => ['audio/3gpp2', 'video/3gpp2'],
1622 '3gpp' => ['audio/3gpp', 'audio/3gpp-encrypted', 'audio/x-rn-3gpp-amr', 'audio/x-rn-3gpp-amr-encrypted', 'audio/x-rn-3gpp-amr-wb', 'audio/x-rn-3gpp-amr-wb-encrypted', 'video/3gp', 'video/3gpp', 'video/3gpp-encrypted'],
1623 '3gpp2' => ['audio/3gpp2', 'video/3gpp2'],
1624 '7z' => ['application/x-7z-compressed'],
1625 'BLEND' => ['application/x-blender'],
1626 'C' => ['text/x-c++src'],
1627 'PAR2' => ['application/x-par2'],
1628 'PL' => ['application/x-perl', 'text/x-perl'],
1629 'Z' => ['application/x-compress'],
1630 'a' => ['application/x-archive'],
1631 'a26' => ['application/x-atari-2600-rom'],
1632 'a78' => ['application/x-atari-7800-rom'],
1633 'aa' => ['audio/vnd.audible', 'audio/vnd.audible.aax', 'audio/x-pn-audibleaudio'],
1634 'aab' => ['application/x-authorware-bin'],
1635 'aac' => ['audio/aac', 'audio/x-aac', 'audio/x-hx-aac-adts'],
1636 'aam' => ['application/x-authorware-map'],
1637 'aas' => ['application/x-authorware-seg'],
1638 'aax' => ['audio/vnd.audible', 'audio/vnd.audible.aax', 'audio/x-pn-audibleaudio'],
1639 'abw' => ['application/x-abiword'],
1640 'abw.CRASHED' => ['application/x-abiword'],
1641 'abw.gz' => ['application/x-abiword'],
1642 'ac' => ['application/pkix-attr-cert'],
1643 'ac3' => ['audio/ac3'],
1644 'acc' => ['application/vnd.americandynamics.acc'],
1645 'ace' => ['application/x-ace', 'application/x-ace-compressed'],
1646 'acu' => ['application/vnd.acucobol'],
1647 'acutc' => ['application/vnd.acucorp'],
1648 'adb' => ['text/x-adasrc'],
1649 'adf' => ['application/x-amiga-disk-format'],
1650 'adp' => ['audio/adpcm'],
1651 'ads' => ['text/x-adasrc'],
1652 'adts' => ['audio/aac', 'audio/x-aac', 'audio/x-hx-aac-adts'],
1653 'aep' => ['application/vnd.audiograph'],
1654 'afm' => ['application/x-font-afm', 'application/x-font-type1'],
1655 'afp' => ['application/vnd.ibm.modcap'],
1656 'ag' => ['image/x-applix-graphics'],
1657 'agb' => ['application/x-gba-rom'],
1658 'ahead' => ['application/vnd.ahead.space'],
1659 'ai' => ['application/illustrator', 'application/postscript', 'application/vnd.adobe.illustrator'],
1660 'aif' => ['audio/x-aiff'],
1661 'aifc' => ['audio/x-aifc', 'audio/x-aiff', 'audio/x-aiffc'],
1662 'aiff' => ['audio/x-aiff'],
1663 'aiffc' => ['audio/x-aifc', 'audio/x-aiffc'],
1664 'air' => ['application/vnd.adobe.air-application-installer-package+zip'],
1665 'ait' => ['application/vnd.dvb.ait'],
1666 'al' => ['application/x-perl', 'text/x-perl'],
1667 'alz' => ['application/x-alz'],
1668 'ami' => ['application/vnd.amiga.ami'],
1669 'amr' => ['audio/amr', 'audio/amr-encrypted'],
1670 'amz' => ['audio/x-amzxml'],
1671 'ani' => ['application/x-navi-animation'],
1672 'anim[1-9j]' => ['video/x-anim'],
1673 'anx' => ['application/annodex', 'application/x-annodex'],
1674 'ape' => ['audio/x-ape'],
1675 'apk' => ['application/vnd.android.package-archive'],
1676 'appcache' => ['text/cache-manifest'],
1677 'appimage' => ['application/vnd.appimage', 'application/x-iso9660-appimage'],
1678 'application' => ['application/x-ms-application'],
1679 'apr' => ['application/vnd.lotus-approach'],
1680 'aps' => ['application/postscript'],
1681 'ar' => ['application/x-archive'],
1682 'arc' => ['application/x-freearc'],
1683 'arj' => ['application/x-arj'],
1684 'arw' => ['image/x-sony-arw'],
1685 'as' => ['application/x-applix-spreadsheet'],
1686 'asc' => ['application/pgp', 'application/pgp-encrypted', 'application/pgp-keys', 'application/pgp-signature', 'text/plain'],
1687 'asf' => ['application/vnd.ms-asf', 'video/x-ms-asf', 'video/x-ms-asf-plugin', 'video/x-ms-wm'],
1688 'asm' => ['text/x-asm'],
1689 'aso' => ['application/vnd.accpac.simply.aso'],
1690 'asp' => ['application/x-asp'],
1691 'ass' => ['audio/aac', 'audio/x-aac', 'audio/x-hx-aac-adts', 'text/x-ssa'],
1692 'asx' => ['application/x-ms-asx', 'audio/x-ms-asx', 'video/x-ms-asf', 'video/x-ms-wax', 'video/x-ms-wmx', 'video/x-ms-wvx'],
1693 'atc' => ['application/vnd.acucorp'],
1694 'atom' => ['application/atom+xml'],
1695 'atomcat' => ['application/atomcat+xml'],
1696 'atomsvc' => ['application/atomsvc+xml'],
1697 'atx' => ['application/vnd.antix.game-component'],
1698 'au' => ['audio/basic'],
1699 'automount' => ['text/x-systemd-unit'],
1700 'avf' => ['video/avi', 'video/divx', 'video/msvideo', 'video/vnd.divx', 'video/x-avi', 'video/x-msvideo'],
1701 'avi' => ['video/avi', 'video/divx', 'video/msvideo', 'video/vnd.divx', 'video/x-avi', 'video/x-msvideo'],
1702 'aw' => ['application/applixware', 'application/x-applix-word'],
1703 'awb' => ['audio/amr-wb', 'audio/amr-wb-encrypted'],
1704 'awk' => ['application/x-awk'],
1705 'axa' => ['audio/annodex', 'audio/x-annodex'],
1706 'axv' => ['video/annodex', 'video/x-annodex'],
1707 'azf' => ['application/vnd.airzip.filesecure.azf'],
1708 'azs' => ['application/vnd.airzip.filesecure.azs'],
1709 'azw' => ['application/vnd.amazon.ebook'],
1710 'bak' => ['application/x-trash'],
1711 'bat' => ['application/x-msdownload'],
1712 'bcpio' => ['application/x-bcpio'],
1713 'bdf' => ['application/x-font-bdf'],
1714 'bdm' => ['application/vnd.syncml.dm+wbxml', 'video/mp2t'],
1715 'bdmv' => ['video/mp2t'],
1716 'bed' => ['application/vnd.realvnc.bed'],
1717 'bh2' => ['application/vnd.fujitsu.oasysprs'],
1718 'bib' => ['text/x-bibtex'],
1719 'bin' => ['application/octet-stream', 'application/x-saturn-rom', 'application/x-sega-cd-rom'],
1720 'blb' => ['application/x-blorb'],
1721 'blend' => ['application/x-blender'],
1722 'blender' => ['application/x-blender'],
1723 'blorb' => ['application/x-blorb'],
1724 'bmi' => ['application/vnd.bmi'],
1725 'bmp' => ['image/bmp', 'image/x-bmp', 'image/x-ms-bmp'],
1726 'book' => ['application/vnd.framemaker'],
1727 'box' => ['application/vnd.previewsystems.box'],
1728 'boz' => ['application/x-bzip2'],
1729 'bpk' => ['application/octet-stream'],
1730 'bsdiff' => ['application/x-bsdiff'],
1731 'btif' => ['image/prs.btif'],
1732 'bz' => ['application/x-bzip', 'application/x-bzip2'],
1733 'bz2' => ['application/x-bz2', 'application/x-bzip', 'application/x-bzip2'],
1734 'c' => ['text/x-c', 'text/x-csrc'],
1735 'c++' => ['text/x-c++src'],
1736 'c11amc' => ['application/vnd.cluetrust.cartomobile-config'],
1737 'c11amz' => ['application/vnd.cluetrust.cartomobile-config-pkg'],
1738 'c4d' => ['application/vnd.clonk.c4group'],
1739 'c4f' => ['application/vnd.clonk.c4group'],
1740 'c4g' => ['application/vnd.clonk.c4group'],
1741 'c4p' => ['application/vnd.clonk.c4group'],
1742 'c4u' => ['application/vnd.clonk.c4group'],
1743 'cab' => ['application/vnd.ms-cab-compressed', 'zz-application/zz-winassoc-cab'],
1744 'caf' => ['audio/x-caf'],
1745 'cap' => ['application/pcap', 'application/vnd.tcpdump.pcap', 'application/x-pcap'],
1746 'car' => ['application/vnd.curl.car'],
1747 'cat' => ['application/vnd.ms-pki.seccat'],
1748 'cb7' => ['application/x-cb7', 'application/x-cbr'],
1749 'cba' => ['application/x-cbr'],
1750 'cbl' => ['text/x-cobol'],
1751 'cbr' => ['application/vnd.comicbook-rar', 'application/x-cbr'],
1752 'cbt' => ['application/x-cbr', 'application/x-cbt'],
1753 'cbz' => ['application/vnd.comicbook+zip', 'application/x-cbr', 'application/x-cbz'],
1754 'cc' => ['text/x-c', 'text/x-c++src'],
1755 'ccmx' => ['application/x-ccmx'],
1756 'cct' => ['application/x-director'],
1757 'ccxml' => ['application/ccxml+xml'],
1758 'cdbcmsg' => ['application/vnd.contact.cmsg'],
1759 'cdf' => ['application/x-netcdf'],
1760 'cdkey' => ['application/vnd.mediastation.cdkey'],
1761 'cdmia' => ['application/cdmi-capability'],
1762 'cdmic' => ['application/cdmi-container'],
1763 'cdmid' => ['application/cdmi-domain'],
1764 'cdmio' => ['application/cdmi-object'],
1765 'cdmiq' => ['application/cdmi-queue'],
1766 'cdr' => ['application/cdr', 'application/coreldraw', 'application/vnd.corel-draw', 'application/x-cdr', 'application/x-coreldraw', 'image/cdr', 'image/x-cdr', 'zz-application/zz-winassoc-cdr'],
1767 'cdx' => ['chemical/x-cdx'],
1768 'cdxml' => ['application/vnd.chemdraw+xml'],
1769 'cdy' => ['application/vnd.cinderella'],
1770 'cer' => ['application/pkix-cert'],
1771 'cert' => ['application/x-x509-ca-cert'],
1772 'cfs' => ['application/x-cfs-compressed'],
1773 'cgb' => ['application/x-gameboy-color-rom'],
1774 'cgm' => ['image/cgm'],
1775 'chat' => ['application/x-chat'],
1776 'chm' => ['application/vnd.ms-htmlhelp', 'application/x-chm'],
1777 'chrt' => ['application/vnd.kde.kchart', 'application/x-kchart'],
1778 'cif' => ['chemical/x-cif'],
1779 'cii' => ['application/vnd.anser-web-certificate-issue-initiation'],
1780 'cil' => ['application/vnd.ms-artgalry'],
1781 'cl' => ['text/x-opencl-src'],
1782 'cla' => ['application/vnd.claymore'],
1783 'class' => ['application/java', 'application/java-byte-code', 'application/java-vm', 'application/x-java', 'application/x-java-class', 'application/x-java-vm'],
1784 'clkk' => ['application/vnd.crick.clicker.keyboard'],
1785 'clkp' => ['application/vnd.crick.clicker.palette'],
1786 'clkt' => ['application/vnd.crick.clicker.template'],
1787 'clkw' => ['application/vnd.crick.clicker.wordbank'],
1788 'clkx' => ['application/vnd.crick.clicker'],
1789 'clp' => ['application/x-msclip'],
1790 'clpi' => ['video/mp2t'],
1791 'cls' => ['application/x-tex', 'text/x-tex'],
1792 'cmake' => ['text/x-cmake'],
1793 'cmc' => ['application/vnd.cosmocaller'],
1794 'cmdf' => ['chemical/x-cmdf'],
1795 'cml' => ['chemical/x-cml'],
1796 'cmp' => ['application/vnd.yellowriver-custom-menu'],
1797 'cmx' => ['image/x-cmx'],
1798 'cob' => ['text/x-cobol'],
1799 'cod' => ['application/vnd.rim.cod'],
1800 'coffee' => ['application/vnd.coffeescript'],
1801 'com' => ['application/x-msdownload'],
1802 'conf' => ['text/plain'],
1803 'cpi' => ['video/mp2t'],
1804 'cpio' => ['application/x-cpio'],
1805 'cpio.gz' => ['application/x-cpio-compressed'],
1806 'cpp' => ['text/x-c', 'text/x-c++src'],
1807 'cpt' => ['application/mac-compactpro'],
1808 'cr2' => ['image/x-canon-cr2'],
1809 'crd' => ['application/x-mscardfile'],
1810 'crdownload' => ['application/x-partial-download'],
1811 'crl' => ['application/pkix-crl'],
1812 'crt' => ['application/x-x509-ca-cert'],
1813 'crw' => ['image/x-canon-crw'],
1814 'cryptonote' => ['application/vnd.rig.cryptonote'],
1815 'cs' => ['text/x-csharp'],
1816 'csh' => ['application/x-csh'],
1817 'csml' => ['chemical/x-csml'],
1818 'csp' => ['application/vnd.commonspace'],
1819 'css' => ['text/css'],
1820 'cst' => ['application/x-director'],
1821 'csv' => ['text/csv', 'text/x-comma-separated-values', 'text/x-csv'],
1822 'csvs' => ['text/csv-schema'],
1823 'cu' => ['application/cu-seeme'],
1824 'cue' => ['application/x-cue'],
1825 'cur' => ['image/x-win-bitmap'],
1826 'curl' => ['text/vnd.curl'],
1827 'cww' => ['application/prs.cww'],
1828 'cxt' => ['application/x-director'],
1829 'cxx' => ['text/x-c', 'text/x-c++src'],
1830 'd' => ['text/x-dsrc'],
1831 'dae' => ['model/vnd.collada+xml'],
1832 'daf' => ['application/vnd.mobius.daf'],
1833 'dar' => ['application/x-dar'],
1834 'dart' => ['application/vnd.dart'],
1835 'dataless' => ['application/vnd.fdsn.seed'],
1836 'davmount' => ['application/davmount+xml'],
1837 'dbf' => ['application/dbase', 'application/dbf', 'application/x-dbase', 'application/x-dbf'],
1838 'dbk' => ['application/docbook+xml', 'application/vnd.oasis.docbook+xml', 'application/x-docbook+xml'],
1839 'dc' => ['application/x-dc-rom'],
1840 'dcl' => ['text/x-dcl'],
1841 'dcm' => ['application/dicom'],
1842 'dcr' => ['application/x-director', 'image/x-kodak-dcr'],
1843 'dcurl' => ['text/vnd.curl.dcurl'],
1844 'dd2' => ['application/vnd.oma.dd2+xml'],
1845 'ddd' => ['application/vnd.fujixerox.ddd'],
1846 'dds' => ['image/x-dds'],
1847 'deb' => ['application/vnd.debian.binary-package', 'application/x-deb', 'application/x-debian-package'],
1848 'def' => ['text/plain'],
1849 'deploy' => ['application/octet-stream'],
1850 'der' => ['application/x-x509-ca-cert'],
1851 'desktop' => ['application/x-desktop', 'application/x-gnome-app-info'],
1852 'device' => ['text/x-systemd-unit'],
1853 'dfac' => ['application/vnd.dreamfactory'],
1854 'dgc' => ['application/x-dgc-compressed'],
1855 'di' => ['text/x-dsrc'],
1856 'dia' => ['application/x-dia-diagram'],
1857 'dib' => ['image/bmp', 'image/x-bmp', 'image/x-ms-bmp'],
1858 'dic' => ['text/x-c'],
1859 'diff' => ['text/x-diff', 'text/x-patch'],
1860 'dir' => ['application/x-director'],
1861 'dis' => ['application/vnd.mobius.dis'],
1862 'dist' => ['application/octet-stream'],
1863 'distz' => ['application/octet-stream'],
1864 'divx' => ['video/avi', 'video/divx', 'video/msvideo', 'video/vnd.divx', 'video/x-avi', 'video/x-msvideo'],
1865 'djv' => ['image/vnd.djvu', 'image/vnd.djvu+multipage', 'image/x-djvu', 'image/x.djvu'],
1866 'djvu' => ['image/vnd.djvu', 'image/vnd.djvu+multipage', 'image/x-djvu', 'image/x.djvu'],
1867 'dll' => ['application/x-msdownload'],
1868 'dmg' => ['application/x-apple-diskimage'],
1869 'dmp' => ['application/pcap', 'application/vnd.tcpdump.pcap', 'application/x-pcap'],
1870 'dms' => ['application/octet-stream'],
1871 'dna' => ['application/vnd.dna'],
1872 'dng' => ['image/x-adobe-dng'],
1873 'doc' => ['application/msword', 'application/vnd.ms-word', 'application/x-msword', 'zz-application/zz-winassoc-doc'],
1874 'docbook' => ['application/docbook+xml', 'application/vnd.oasis.docbook+xml', 'application/x-docbook+xml'],
1875 'docm' => ['application/vnd.ms-word.document.macroenabled.12'],
1876 'docx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.document'],
1877 'dot' => ['application/msword', 'application/msword-template', 'text/vnd.graphviz'],
1878 'dotm' => ['application/vnd.ms-word.template.macroenabled.12'],
1879 'dotx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.template'],
1880 'dp' => ['application/vnd.osgi.dp'],
1881 'dpg' => ['application/vnd.dpgraph'],
1882 'dra' => ['audio/vnd.dra'],
1883 'dsc' => ['text/prs.lines.tag'],
1884 'dsl' => ['text/x-dsl'],
1885 'dssc' => ['application/dssc+der'],
1886 'dtb' => ['application/x-dtbook+xml'],
1887 'dtd' => ['application/xml-dtd', 'text/x-dtd'],
1888 'dts' => ['audio/vnd.dts', 'audio/x-dts'],
1889 'dtshd' => ['audio/vnd.dts.hd', 'audio/x-dtshd'],
1890 'dtx' => ['application/x-tex', 'text/x-tex'],
1891 'dump' => ['application/octet-stream'],
1892 'dv' => ['video/dv'],
1893 'dvb' => ['video/vnd.dvb.file'],
1894 'dvi' => ['application/x-dvi'],
1895 'dvi.bz2' => ['application/x-bzdvi'],
1896 'dvi.gz' => ['application/x-gzdvi'],
1897 'dwf' => ['model/vnd.dwf'],
1898 'dwg' => ['image/vnd.dwg'],
1899 'dxf' => ['image/vnd.dxf'],
1900 'dxp' => ['application/vnd.spotfire.dxp'],
1901 'dxr' => ['application/x-director'],
1902 'e' => ['text/x-eiffel'],
1903 'ecelp4800' => ['audio/vnd.nuera.ecelp4800'],
1904 'ecelp7470' => ['audio/vnd.nuera.ecelp7470'],
1905 'ecelp9600' => ['audio/vnd.nuera.ecelp9600'],
1906 'ecma' => ['application/ecmascript'],
1907 'edm' => ['application/vnd.novadigm.edm'],
1908 'edx' => ['application/vnd.novadigm.edx'],
1909 'efif' => ['application/vnd.picsel'],
1910 'egon' => ['application/x-egon'],
1911 'ei6' => ['application/vnd.pg.osasli'],
1912 'eif' => ['text/x-eiffel'],
1913 'el' => ['text/x-emacs-lisp'],
1914 'elc' => ['application/octet-stream'],
1915 'emf' => ['application/emf', 'application/x-emf', 'application/x-msmetafile', 'image/emf', 'image/x-emf'],
1916 'eml' => ['message/rfc822'],
1917 'emma' => ['application/emma+xml'],
1918 'emp' => ['application/vnd.emusic-emusic_package'],
1919 'emz' => ['application/x-msmetafile'],
1920 'ent' => ['application/xml-external-parsed-entity', 'text/xml-external-parsed-entity'],
1921 'eol' => ['audio/vnd.digital-winds'],
1922 'eot' => ['application/vnd.ms-fontobject'],
1923 'eps' => ['application/postscript', 'image/x-eps'],
1924 'eps.bz2' => ['image/x-bzeps'],
1925 'eps.gz' => ['image/x-gzeps'],
1926 'epsf' => ['image/x-eps'],
1927 'epsf.bz2' => ['image/x-bzeps'],
1928 'epsf.gz' => ['image/x-gzeps'],
1929 'epsi' => ['image/x-eps'],
1930 'epsi.bz2' => ['image/x-bzeps'],
1931 'epsi.gz' => ['image/x-gzeps'],
1932 'epub' => ['application/epub+zip'],
1933 'erl' => ['text/x-erlang'],
1934 'es' => ['application/ecmascript', 'text/ecmascript'],
1935 'es3' => ['application/vnd.eszigno3+xml'],
1936 'esa' => ['application/vnd.osgi.subsystem'],
1937 'esf' => ['application/vnd.epson.esf'],
1938 'et3' => ['application/vnd.eszigno3+xml'],
1939 'etheme' => ['application/x-e-theme'],
1940 'etx' => ['text/x-setext'],
1941 'eva' => ['application/x-eva'],
1942 'evy' => ['application/x-envoy'],
1943 'exe' => ['application/x-ms-dos-executable', 'application/x-msdownload'],
1944 'exi' => ['application/exi'],
1945 'exr' => ['image/x-exr'],
1946 'ext' => ['application/vnd.novadigm.ext'],
1947 'ez' => ['application/andrew-inset'],
1948 'ez2' => ['application/vnd.ezpix-album'],
1949 'ez3' => ['application/vnd.ezpix-package'],
1950 'f' => ['text/x-fortran'],
1951 'f4a' => ['audio/m4a', 'audio/mp4', 'audio/x-m4a'],
1952 'f4b' => ['audio/x-m4b'],
1953 'f4v' => ['video/mp4', 'video/mp4v-es', 'video/x-f4v', 'video/x-m4v'],
1954 'f77' => ['text/x-fortran'],
1955 'f90' => ['text/x-fortran'],
1956 'f95' => ['text/x-fortran'],
1957 'fb2' => ['application/x-fictionbook', 'application/x-fictionbook+xml'],
1958 'fb2.zip' => ['application/x-zip-compressed-fb2'],
1959 'fbs' => ['image/vnd.fastbidsheet'],
1960 'fcdt' => ['application/vnd.adobe.formscentral.fcdt'],
1961 'fcs' => ['application/vnd.isac.fcs'],
1962 'fd' => ['application/x-fd-file', 'application/x-raw-floppy-disk-image'],
1963 'fdf' => ['application/vnd.fdf'],
1964 'fds' => ['application/x-fds-disk'],
1965 'fe_launch' => ['application/vnd.denovo.fcselayout-link'],
1966 'feature' => ['text/x-gherkin'],
1967 'fg5' => ['application/vnd.fujitsu.oasysgp'],
1968 'fgd' => ['application/x-director'],
1969 'fh' => ['image/x-freehand'],
1970 'fh4' => ['image/x-freehand'],
1971 'fh5' => ['image/x-freehand'],
1972 'fh7' => ['image/x-freehand'],
1973 'fhc' => ['image/x-freehand'],
1974 'fig' => ['application/x-xfig', 'image/x-xfig'],
1975 'fits' => ['image/fits', 'image/x-fits'],
1976 'fl' => ['application/x-fluid'],
1977 'flac' => ['audio/flac', 'audio/x-flac'],
1978 'flatpak' => ['application/vnd.flatpak', 'application/vnd.xdgapp'],
1979 'flatpakref' => ['application/vnd.flatpak.ref'],
1980 'flatpakrepo' => ['application/vnd.flatpak.repo'],
1981 'flc' => ['video/fli', 'video/x-fli', 'video/x-flic'],
1982 'fli' => ['video/fli', 'video/x-fli', 'video/x-flic'],
1983 'flo' => ['application/vnd.micrografx.flo'],
1984 'flv' => ['video/x-flv', 'application/x-flash-video', 'flv-application/octet-stream', 'video/flv'],
1985 'flw' => ['application/vnd.kde.kivio', 'application/x-kivio'],
1986 'flx' => ['text/vnd.fmi.flexstor'],
1987 'fly' => ['text/vnd.fly'],
1988 'fm' => ['application/vnd.framemaker', 'application/x-frame'],
1989 'fnc' => ['application/vnd.frogans.fnc'],
1990 'fo' => ['text/x-xslfo'],
1991 'fodg' => ['application/vnd.oasis.opendocument.graphics-flat-xml'],
1992 'fodp' => ['application/vnd.oasis.opendocument.presentation-flat-xml'],
1993 'fods' => ['application/vnd.oasis.opendocument.spreadsheet-flat-xml'],
1994 'fodt' => ['application/vnd.oasis.opendocument.text-flat-xml'],
1995 'for' => ['text/x-fortran'],
1996 'fpx' => ['image/vnd.fpx'],
1997 'frame' => ['application/vnd.framemaker'],
1998 'fsc' => ['application/vnd.fsc.weblaunch'],
1999 'fst' => ['image/vnd.fst'],
2000 'ftc' => ['application/vnd.fluxtime.clip'],
2001 'fti' => ['application/vnd.anser-web-funds-transfer-initiation'],
2002 'fvt' => ['video/vnd.fvt'],
2003 'fxm' => ['video/x-javafx'],
2004 'fxp' => ['application/vnd.adobe.fxp'],
2005 'fxpl' => ['application/vnd.adobe.fxp'],
2006 'fzs' => ['application/vnd.fuzzysheet'],
2007 'g2w' => ['application/vnd.geoplan'],
2008 'g3' => ['image/fax-g3', 'image/g3fax'],
2009 'g3w' => ['application/vnd.geospace'],
2010 'gac' => ['application/vnd.groove-account'],
2011 'gam' => ['application/x-tads'],
2012 'gb' => ['application/x-gameboy-rom'],
2013 'gba' => ['application/x-gba-rom'],
2014 'gbc' => ['application/x-gameboy-color-rom'],
2015 'gbr' => ['application/rpki-ghostbusters', 'image/x-gimp-gbr'],
2016 'gca' => ['application/x-gca-compressed'],
2017 'gcode' => ['text/x.gcode'],
2018 'gcrd' => ['text/directory', 'text/vcard', 'text/x-vcard'],
2019 'gdl' => ['model/vnd.gdl'],
2020 'ged' => ['application/x-gedcom', 'text/gedcom'],
2021 'gedcom' => ['application/x-gedcom', 'text/gedcom'],
2022 'gem' => ['application/x-gtar', 'application/x-tar'],
2023 'gen' => ['application/x-genesis-rom'],
2024 'geo' => ['application/vnd.dynageo'],
2025 'geo.json' => ['application/geo+json', 'application/vnd.geo+json'],
2026 'geojson' => ['application/geo+json', 'application/vnd.geo+json'],
2027 'gex' => ['application/vnd.geometry-explorer'],
2028 'gf' => ['application/x-tex-gf'],
2029 'gg' => ['application/x-gamegear-rom'],
2030 'ggb' => ['application/vnd.geogebra.file'],
2031 'ggt' => ['application/vnd.geogebra.tool'],
2032 'ghf' => ['application/vnd.groove-help'],
2033 'gif' => ['image/gif'],
2034 'gih' => ['image/x-gimp-gih'],
2035 'gim' => ['application/vnd.groove-identity-message'],
2036 'glade' => ['application/x-glade'],
2037 'gml' => ['application/gml+xml'],
2038 'gmo' => ['application/x-gettext-translation'],
2039 'gmx' => ['application/vnd.gmx'],
2040 'gnc' => ['application/x-gnucash'],
2041 'gnd' => ['application/gnunet-directory'],
2042 'gnucash' => ['application/x-gnucash'],
2043 'gnumeric' => ['application/x-gnumeric'],
2044 'gnuplot' => ['application/x-gnuplot'],
2045 'go' => ['text/x-go'],
2046 'gp' => ['application/x-gnuplot'],
2047 'gpg' => ['application/pgp', 'application/pgp-encrypted', 'application/pgp-keys', 'application/pgp-signature'],
2048 'gph' => ['application/vnd.flographit'],
2049 'gplt' => ['application/x-gnuplot'],
2050 'gpx' => ['application/gpx', 'application/gpx+xml', 'application/x-gpx', 'application/x-gpx+xml'],
2051 'gqf' => ['application/vnd.grafeq'],
2052 'gqs' => ['application/vnd.grafeq'],
2053 'gra' => ['application/x-graphite'],
2054 'gram' => ['application/srgs'],
2055 'gramps' => ['application/x-gramps-xml'],
2056 'gre' => ['application/vnd.geometry-explorer'],
2057 'grv' => ['application/vnd.groove-injector'],
2058 'grxml' => ['application/srgs+xml'],
2059 'gs' => ['text/x-genie'],
2060 'gsf' => ['application/x-font-ghostscript', 'application/x-font-type1'],
2061 'gsm' => ['audio/x-gsm'],
2062 'gtar' => ['application/x-gtar', 'application/x-tar'],
2063 'gtm' => ['application/vnd.groove-tool-message'],
2064 'gtw' => ['model/vnd.gtw'],
2065 'gv' => ['text/vnd.graphviz'],
2066 'gvp' => ['text/google-video-pointer', 'text/x-google-video-pointer'],
2067 'gxf' => ['application/gxf'],
2068 'gxt' => ['application/vnd.geonext'],
2069 'gz' => ['application/x-gzip', 'application/gzip'],
2070 'h' => ['text/x-c', 'text/x-chdr'],
2071 'h++' => ['text/x-c++hdr'],
2072 'h261' => ['video/h261'],
2073 'h263' => ['video/h263'],
2074 'h264' => ['video/h264'],
2075 'h4' => ['application/x-hdf'],
2076 'h5' => ['application/x-hdf'],
2077 'hal' => ['application/vnd.hal+xml'],
2078 'hbci' => ['application/vnd.hbci'],
2079 'hdf' => ['application/x-hdf'],
2080 'hdf4' => ['application/x-hdf'],
2081 'hdf5' => ['application/x-hdf'],
2082 'heic' => ['image/heic', 'image/heic-sequence', 'image/heif', 'image/heif-sequence'],
2083 'heif' => ['image/heic', 'image/heic-sequence', 'image/heif', 'image/heif-sequence'],
2084 'hfe' => ['application/x-hfe-file', 'application/x-hfe-floppy-image'],
2085 'hh' => ['text/x-c', 'text/x-c++hdr'],
2086 'hlp' => ['application/winhlp', 'zz-application/zz-winassoc-hlp'],
2087 'hp' => ['text/x-c++hdr'],
2088 'hpgl' => ['application/vnd.hp-hpgl'],
2089 'hpid' => ['application/vnd.hp-hpid'],
2090 'hpp' => ['text/x-c++hdr'],
2091 'hps' => ['application/vnd.hp-hps'],
2092 'hqx' => ['application/stuffit', 'application/mac-binhex40'],
2093 'hs' => ['text/x-haskell'],
2094 'htke' => ['application/vnd.kenameaapp'],
2095 'htm' => ['text/html'],
2096 'html' => ['text/html'],
2097 'hvd' => ['application/vnd.yamaha.hv-dic'],
2098 'hvp' => ['application/vnd.yamaha.hv-voice'],
2099 'hvs' => ['application/vnd.yamaha.hv-script'],
2100 'hwp' => ['application/vnd.haansoft-hwp', 'application/x-hwp'],
2101 'hwt' => ['application/vnd.haansoft-hwt', 'application/x-hwt'],
2102 'hxx' => ['text/x-c++hdr'],
2103 'i2g' => ['application/vnd.intergeo'],
2104 'ica' => ['application/x-ica'],
2105 'icb' => ['image/x-icb', 'image/x-tga'],
2106 'icc' => ['application/vnd.iccprofile'],
2107 'ice' => ['x-conference/x-cooltalk'],
2108 'icm' => ['application/vnd.iccprofile'],
2109 'icns' => ['image/x-icns'],
2110 'ico' => ['application/ico', 'image/ico', 'image/icon', 'image/vnd.microsoft.icon', 'image/x-ico', 'image/x-icon', 'text/ico'],
2111 'ics' => ['application/ics', 'text/calendar', 'text/x-vcalendar'],
2112 'idl' => ['text/x-idl'],
2113 'ief' => ['image/ief'],
2114 'ifb' => ['text/calendar'],
2115 'iff' => ['image/x-iff', 'image/x-ilbm'],
2116 'ifm' => ['application/vnd.shana.informed.formdata'],
2117 'iges' => ['model/iges'],
2118 'igl' => ['application/vnd.igloader'],
2119 'igm' => ['application/vnd.insors.igm'],
2120 'igs' => ['model/iges'],
2121 'igx' => ['application/vnd.micrografx.igx'],
2122 'iif' => ['application/vnd.shana.informed.interchange'],
2123 'ilbm' => ['image/x-iff', 'image/x-ilbm'],
2124 'ime' => ['audio/imelody', 'audio/x-imelody', 'text/x-imelody'],
2125 'img' => ['application/x-raw-disk-image'],
2126 'img.xz' => ['application/x-raw-disk-image-xz-compressed'],
2127 'imp' => ['application/vnd.accpac.simply.imp'],
2128 'ims' => ['application/vnd.ms-ims'],
2129 'imy' => ['audio/imelody', 'audio/x-imelody', 'text/x-imelody'],
2130 'in' => ['text/plain'],
2131 'ink' => ['application/inkml+xml'],
2132 'inkml' => ['application/inkml+xml'],
2133 'ins' => ['application/x-tex', 'text/x-tex'],
2134 'install' => ['application/x-install-instructions'],
2135 'iota' => ['application/vnd.astraea-software.iota'],
2136 'ipfix' => ['application/ipfix'],
2137 'ipk' => ['application/vnd.shana.informed.package'],
2138 'iptables' => ['text/x-iptables'],
2139 'ipynb' => ['application/x-ipynb+json'],
2140 'irm' => ['application/vnd.ibm.rights-management'],
2141 'irp' => ['application/vnd.irepository.package+xml'],
2142 'iso' => ['application/x-cd-image', 'application/x-gamecube-iso-image', 'application/x-gamecube-rom', 'application/x-iso9660-image', 'application/x-saturn-rom', 'application/x-sega-cd-rom', 'application/x-wbfs', 'application/x-wia', 'application/x-wii-iso-image', 'application/x-wii-rom'],
2143 'iso9660' => ['application/x-cd-image', 'application/x-iso9660-image'],
2144 'it' => ['audio/x-it'],
2145 'it87' => ['application/x-it87'],
2146 'itp' => ['application/vnd.shana.informed.formtemplate'],
2147 'ivp' => ['application/vnd.immervision-ivp'],
2148 'ivu' => ['application/vnd.immervision-ivu'],
2149 'j2c' => ['image/x-jp2-codestream'],
2150 'j2k' => ['image/x-jp2-codestream'],
2151 'jad' => ['text/vnd.sun.j2me.app-descriptor'],
2152 'jam' => ['application/vnd.jam'],
2153 'jar' => ['application/x-java-archive', 'application/java-archive', 'application/x-jar'],
2154 'java' => ['text/x-java', 'text/x-java-source'],
2155 'jceks' => ['application/x-java-jce-keystore'],
2156 'jisp' => ['application/vnd.jisp'],
2157 'jks' => ['application/x-java-keystore'],
2158 'jlt' => ['application/vnd.hp-jlyt'],
2159 'jng' => ['image/x-jng'],
2160 'jnlp' => ['application/x-java-jnlp-file'],
2161 'joda' => ['application/vnd.joost.joda-archive'],
2162 'jp2' => ['image/jp2', 'image/jpeg2000', 'image/jpeg2000-image', 'image/x-jpeg2000-image'],
2163 'jpc' => ['image/x-jp2-codestream'],
2164 'jpe' => ['image/jpeg', 'image/pjpeg'],
2165 'jpeg' => ['image/jpeg', 'image/pjpeg'],
2166 'jpf' => ['image/jpx'],
2167 'jpg' => ['image/jpeg', 'image/pjpeg'],
2168 'jpg2' => ['image/jp2', 'image/jpeg2000', 'image/jpeg2000-image', 'image/x-jpeg2000-image'],
2169 'jpgm' => ['image/jpm', 'video/jpm'],
2170 'jpgv' => ['video/jpeg'],
2171 'jpm' => ['image/jpm', 'video/jpm'],
2172 'jpr' => ['application/x-jbuilder-project'],
2173 'jpx' => ['application/x-jbuilder-project', 'image/jpx'],
2174 'jrd' => ['application/jrd+json'],
2175 'js' => ['text/javascript', 'application/javascript', 'application/x-javascript'],
2176 'jsm' => ['application/javascript', 'application/x-javascript', 'text/javascript'],
2177 'json' => ['application/json'],
2178 'json-patch' => ['application/json-patch+json'],
2179 'jsonld' => ['application/ld+json'],
2180 'jsonml' => ['application/jsonml+json'],
2181 'k25' => ['image/x-kodak-k25'],
2182 'k7' => ['application/x-thomson-cassette'],
2183 'kar' => ['audio/midi', 'audio/x-midi'],
2184 'karbon' => ['application/vnd.kde.karbon', 'application/x-karbon'],
2185 'kdc' => ['image/x-kodak-kdc'],
2186 'kdelnk' => ['application/x-desktop', 'application/x-gnome-app-info'],
2187 'kexi' => ['application/x-kexiproject-sqlite', 'application/x-kexiproject-sqlite2', 'application/x-kexiproject-sqlite3', 'application/x-vnd.kde.kexi'],
2188 'kexic' => ['application/x-kexi-connectiondata'],
2189 'kexis' => ['application/x-kexiproject-shortcut'],
2190 'key' => ['application/vnd.apple.keynote', 'application/x-iwork-keynote-sffkey'],
2191 'kfo' => ['application/vnd.kde.kformula', 'application/x-kformula'],
2192 'kia' => ['application/vnd.kidspiration'],
2193 'kil' => ['application/x-killustrator'],
2194 'kino' => ['application/smil', 'application/smil+xml'],
2195 'kml' => ['application/vnd.google-earth.kml+xml'],
2196 'kmz' => ['application/vnd.google-earth.kmz'],
2197 'kne' => ['application/vnd.kinar'],
2198 'knp' => ['application/vnd.kinar'],
2199 'kon' => ['application/vnd.kde.kontour', 'application/x-kontour'],
2200 'kpm' => ['application/x-kpovmodeler'],
2201 'kpr' => ['application/vnd.kde.kpresenter', 'application/x-kpresenter'],
2202 'kpt' => ['application/vnd.kde.kpresenter', 'application/x-kpresenter'],
2203 'kpxx' => ['application/vnd.ds-keypoint'],
2204 'kra' => ['application/x-krita'],
2205 'ks' => ['application/x-java-keystore'],
2206 'ksp' => ['application/vnd.kde.kspread', 'application/x-kspread'],
2207 'ktr' => ['application/vnd.kahootz'],
2208 'ktx' => ['image/ktx'],
2209 'ktz' => ['application/vnd.kahootz'],
2210 'kud' => ['application/x-kugar'],
2211 'kwd' => ['application/vnd.kde.kword', 'application/x-kword'],
2212 'kwt' => ['application/vnd.kde.kword', 'application/x-kword'],
2213 'la' => ['application/x-shared-library-la'],
2214 'lasxml' => ['application/vnd.las.las+xml'],
2215 'latex' => ['application/x-latex', 'application/x-tex', 'text/x-tex'],
2216 'lbd' => ['application/vnd.llamagraphics.life-balance.desktop'],
2217 'lbe' => ['application/vnd.llamagraphics.life-balance.exchange+xml'],
2218 'lbm' => ['image/x-iff', 'image/x-ilbm'],
2219 'ldif' => ['text/x-ldif'],
2220 'les' => ['application/vnd.hhe.lesson-player'],
2221 'lha' => ['application/x-lha', 'application/x-lzh-compressed'],
2222 'lhs' => ['text/x-literate-haskell'],
2223 'lhz' => ['application/x-lhz'],
2224 'link66' => ['application/vnd.route66.link66+xml'],
2225 'list' => ['text/plain'],
2226 'list3820' => ['application/vnd.ibm.modcap'],
2227 'listafp' => ['application/vnd.ibm.modcap'],
2228 'lnk' => ['application/x-ms-shortcut'],
2229 'lnx' => ['application/x-atari-lynx-rom'],
2230 'loas' => ['audio/usac'],
2231 'log' => ['text/plain', 'text/x-log'],
2232 'lostxml' => ['application/lost+xml'],
2233 'lrf' => ['application/octet-stream'],
2234 'lrm' => ['application/vnd.ms-lrm'],
2235 'lrv' => ['video/mp4', 'video/mp4v-es', 'video/x-m4v'],
2236 'lrz' => ['application/x-lrzip'],
2237 'ltf' => ['application/vnd.frogans.ltf'],
2238 'ltx' => ['application/x-tex', 'text/x-tex'],
2239 'lua' => ['text/x-lua'],
2240 'lvp' => ['audio/vnd.lucent.voice'],
2241 'lwo' => ['image/x-lwo'],
2242 'lwob' => ['image/x-lwo'],
2243 'lwp' => ['application/vnd.lotus-wordpro'],
2244 'lws' => ['image/x-lws'],
2245 'ly' => ['text/x-lilypond'],
2246 'lyx' => ['application/x-lyx', 'text/x-lyx'],
2247 'lz' => ['application/x-lzip'],
2248 'lz4' => ['application/x-lz4'],
2249 'lzh' => ['application/x-lha', 'application/x-lzh-compressed'],
2250 'lzma' => ['application/x-lzma'],
2251 'lzo' => ['application/x-lzop'],
2252 'm' => ['text/x-matlab', 'text/x-objcsrc', 'text/x-octave'],
2253 'm13' => ['application/x-msmediaview'],
2254 'm14' => ['application/x-msmediaview'],
2255 'm15' => ['audio/x-mod'],
2256 'm1u' => ['video/vnd.mpegurl', 'video/x-mpegurl'],
2257 'm1v' => ['video/mpeg'],
2258 'm21' => ['application/mp21'],
2259 'm2a' => ['audio/mpeg'],
2260 'm2t' => ['video/mp2t'],
2261 'm2ts' => ['video/mp2t'],
2262 'm2v' => ['video/mpeg'],
2263 'm3a' => ['audio/mpeg'],
2264 'm3u' => ['audio/x-mpegurl', 'application/m3u', 'application/vnd.apple.mpegurl', 'audio/m3u', 'audio/mpegurl', 'audio/x-m3u', 'audio/x-mp3-playlist'],
2265 'm3u8' => ['application/m3u', 'application/vnd.apple.mpegurl', 'audio/m3u', 'audio/mpegurl', 'audio/x-m3u', 'audio/x-mp3-playlist', 'audio/x-mpegurl'],
2266 'm4' => ['application/x-m4'],
2267 'm4a' => ['audio/mp4', 'audio/m4a', 'audio/x-m4a'],
2268 'm4b' => ['audio/x-m4b'],
2269 'm4r' => ['audio/x-m4r'],
2270 'm4u' => ['video/vnd.mpegurl', 'video/x-mpegurl'],
2271 'm4v' => ['video/mp4', 'video/mp4v-es', 'video/x-m4v'],
2272 'm7' => ['application/x-thomson-cartridge-memo7'],
2273 'ma' => ['application/mathematica'],
2274 'mab' => ['application/x-markaby'],
2275 'mads' => ['application/mads+xml'],
2276 'mag' => ['application/vnd.ecowin.chart'],
2277 'mak' => ['text/x-makefile'],
2278 'maker' => ['application/vnd.framemaker'],
2279 'man' => ['application/x-troff-man', 'text/troff'],
2280 'manifest' => ['text/cache-manifest'],
2281 'mar' => ['application/octet-stream'],
2282 'markdown' => ['text/markdown', 'text/x-markdown'],
2283 'mathml' => ['application/mathml+xml'],
2284 'mb' => ['application/mathematica'],
2285 'mbk' => ['application/vnd.mobius.mbk'],
2286 'mbox' => ['application/mbox'],
2287 'mc1' => ['application/vnd.medcalcdata'],
2288 'mcd' => ['application/vnd.mcd'],
2289 'mcurl' => ['text/vnd.curl.mcurl'],
2290 'md' => ['text/markdown', 'text/x-markdown'],
2291 'mdb' => ['application/x-msaccess', 'application/mdb', 'application/msaccess', 'application/vnd.ms-access', 'application/vnd.msaccess', 'application/x-mdb', 'zz-application/zz-winassoc-mdb'],
2292 'mdi' => ['image/vnd.ms-modi'],
2293 'mdx' => ['application/x-genesis-32x-rom'],
2294 'me' => ['text/troff', 'text/x-troff-me'],
2295 'med' => ['audio/x-mod'],
2296 'mesh' => ['model/mesh'],
2297 'meta4' => ['application/metalink4+xml'],
2298 'metalink' => ['application/metalink+xml'],
2299 'mets' => ['application/mets+xml'],
2300 'mfm' => ['application/vnd.mfmp'],
2301 'mft' => ['application/rpki-manifest'],
2302 'mgp' => ['application/vnd.osgeo.mapguide.package', 'application/x-magicpoint'],
2303 'mgz' => ['application/vnd.proteus.magazine'],
2304 'mht' => ['application/x-mimearchive'],
2305 'mhtml' => ['application/x-mimearchive'],
2306 'mid' => ['audio/midi', 'audio/x-midi'],
2307 'midi' => ['audio/midi', 'audio/x-midi'],
2308 'mie' => ['application/x-mie'],
2309 'mif' => ['application/vnd.mif', 'application/x-mif'],
2310 'mime' => ['message/rfc822'],
2311 'minipsf' => ['audio/x-minipsf'],
2312 'mj2' => ['video/mj2'],
2313 'mjp2' => ['video/mj2'],
2314 'mjpeg' => ['video/x-mjpeg'],
2315 'mjpg' => ['video/x-mjpeg'],
2316 'mjs' => ['application/javascript', 'application/x-javascript', 'text/javascript'],
2317 'mk' => ['text/x-makefile'],
2318 'mk3d' => ['video/x-matroska', 'video/x-matroska-3d'],
2319 'mka' => ['audio/x-matroska'],
2320 'mkd' => ['text/markdown', 'text/x-markdown'],
2321 'mks' => ['video/x-matroska'],
2322 'mkv' => ['video/x-matroska'],
2323 'ml' => ['text/x-ocaml'],
2324 'mli' => ['text/x-ocaml'],
2325 'mlp' => ['application/vnd.dolby.mlp'],
2326 'mm' => ['text/x-troff-mm'],
2327 'mmd' => ['application/vnd.chipnuts.karaoke-mmd'],
2328 'mmf' => ['application/vnd.smaf', 'application/x-smaf'],
2329 'mml' => ['application/mathml+xml', 'text/mathml'],
2330 'mmr' => ['image/vnd.fujixerox.edmics-mmr'],
2331 'mng' => ['video/x-mng'],
2332 'mny' => ['application/x-msmoney'],
2333 'mo' => ['application/x-gettext-translation', 'text/x-modelica'],
2334 'mo3' => ['audio/x-mo3'],
2335 'mobi' => ['application/x-mobipocket-ebook'],
2336 'moc' => ['text/x-moc'],
2337 'mod' => ['audio/x-mod'],
2338 'mods' => ['application/mods+xml'],
2339 'mof' => ['text/x-mof'],
2340 'moov' => ['video/quicktime'],
2341 'mount' => ['text/x-systemd-unit'],
2342 'mov' => ['video/quicktime'],
2343 'movie' => ['video/x-sgi-movie'],
2344 'mp+' => ['audio/x-musepack'],
2345 'mp2' => ['audio/mp2', 'audio/mpeg', 'audio/x-mp2', 'video/mpeg', 'video/mpeg-system', 'video/x-mpeg', 'video/x-mpeg-system', 'video/x-mpeg2'],
2346 'mp21' => ['application/mp21'],
2347 'mp2a' => ['audio/mpeg'],
2348 'mp3' => ['audio/mpeg', 'audio/mp3', 'audio/x-mp3', 'audio/x-mpeg', 'audio/x-mpg'],
2349 'mp4' => ['video/mp4', 'video/mp4v-es', 'video/x-m4v'],
2350 'mp4a' => ['audio/mp4'],
2351 'mp4s' => ['application/mp4'],
2352 'mp4v' => ['video/mp4'],
2353 'mpc' => ['application/vnd.mophun.certificate', 'audio/x-musepack'],
2354 'mpe' => ['video/mpeg', 'video/mpeg-system', 'video/x-mpeg', 'video/x-mpeg-system', 'video/x-mpeg2'],
2355 'mpeg' => ['video/mpeg', 'video/mpeg-system', 'video/x-mpeg', 'video/x-mpeg-system', 'video/x-mpeg2'],
2356 'mpg' => ['video/mpeg', 'video/mpeg-system', 'video/x-mpeg', 'video/x-mpeg-system', 'video/x-mpeg2'],
2357 'mpg4' => ['video/mp4'],
2358 'mpga' => ['audio/mp3', 'audio/mpeg', 'audio/x-mp3', 'audio/x-mpeg', 'audio/x-mpg'],
2359 'mpkg' => ['application/vnd.apple.installer+xml'],
2360 'mpl' => ['video/mp2t'],
2361 'mpls' => ['video/mp2t'],
2362 'mpm' => ['application/vnd.blueice.multipass'],
2363 'mpn' => ['application/vnd.mophun.application'],
2364 'mpp' => ['application/vnd.ms-project', 'audio/x-musepack'],
2365 'mpt' => ['application/vnd.ms-project'],
2366 'mpy' => ['application/vnd.ibm.minipay'],
2367 'mqy' => ['application/vnd.mobius.mqy'],
2368 'mrc' => ['application/marc'],
2369 'mrcx' => ['application/marcxml+xml'],
2370 'mrl' => ['text/x-mrml'],
2371 'mrml' => ['text/x-mrml'],
2372 'mrw' => ['image/x-minolta-mrw'],
2373 'ms' => ['text/troff', 'text/x-troff-ms'],
2374 'mscml' => ['application/mediaservercontrol+xml'],
2375 'mseed' => ['application/vnd.fdsn.mseed'],
2376 'mseq' => ['application/vnd.mseq'],
2377 'msf' => ['application/vnd.epson.msf'],
2378 'msg' => ['application/vnd.ms-outlook'],
2379 'msh' => ['model/mesh'],
2380 'msi' => ['application/x-msdownload', 'application/x-msi'],
2381 'msl' => ['application/vnd.mobius.msl'],
2382 'msod' => ['image/x-msod'],
2383 'msty' => ['application/vnd.muvee.style'],
2384 'msx' => ['application/x-msx-rom'],
2385 'mtm' => ['audio/x-mod'],
2386 'mts' => ['model/vnd.mts', 'video/mp2t'],
2387 'mup' => ['text/x-mup'],
2388 'mus' => ['application/vnd.musician'],
2389 'musicxml' => ['application/vnd.recordare.musicxml+xml'],
2390 'mvb' => ['application/x-msmediaview'],
2391 'mwf' => ['application/vnd.mfer'],
2392 'mxf' => ['application/mxf'],
2393 'mxl' => ['application/vnd.recordare.musicxml'],
2394 'mxml' => ['application/xv+xml'],
2395 'mxs' => ['application/vnd.triscape.mxs'],
2396 'mxu' => ['video/vnd.mpegurl', 'video/x-mpegurl'],
2397 'n-gage' => ['application/vnd.nokia.n-gage.symbian.install'],
2398 'n3' => ['text/n3'],
2399 'n64' => ['application/x-n64-rom'],
2400 'nb' => ['application/mathematica', 'application/x-mathematica'],
2401 'nbp' => ['application/vnd.wolfram.player'],
2402 'nc' => ['application/x-netcdf'],
2403 'ncx' => ['application/x-dtbncx+xml'],
2404 'nds' => ['application/x-nintendo-ds-rom'],
2405 'nef' => ['image/x-nikon-nef'],
2406 'nes' => ['application/x-nes-rom'],
2407 'nez' => ['application/x-nes-rom'],
2408 'nfo' => ['text/x-nfo'],
2409 'ngc' => ['application/x-neo-geo-pocket-color-rom'],
2410 'ngdat' => ['application/vnd.nokia.n-gage.data'],
2411 'ngp' => ['application/x-neo-geo-pocket-rom'],
2412 'nitf' => ['application/vnd.nitf'],
2413 'nlu' => ['application/vnd.neurolanguage.nlu'],
2414 'nml' => ['application/vnd.enliven'],
2415 'nnd' => ['application/vnd.noblenet-directory'],
2416 'nns' => ['application/vnd.noblenet-sealer'],
2417 'nnw' => ['application/vnd.noblenet-web'],
2418 'not' => ['text/x-mup'],
2419 'npx' => ['image/vnd.net-fpx'],
2420 'nsc' => ['application/x-conference', 'application/x-netshow-channel'],
2421 'nsf' => ['application/vnd.lotus-notes'],
2422 'nsv' => ['video/x-nsv'],
2423 'ntf' => ['application/vnd.nitf'],
2424 'nzb' => ['application/x-nzb'],
2425 'o' => ['application/x-object'],
2426 'oa2' => ['application/vnd.fujitsu.oasys2'],
2427 'oa3' => ['application/vnd.fujitsu.oasys3'],
2428 'oas' => ['application/vnd.fujitsu.oasys'],
2429 'obd' => ['application/x-msbinder'],
2430 'obj' => ['application/x-tgif'],
2431 'ocl' => ['text/x-ocl'],
2432 'oda' => ['application/oda'],
2433 'odb' => ['application/vnd.oasis.opendocument.database', 'application/vnd.sun.xml.base'],
2434 'odc' => ['application/vnd.oasis.opendocument.chart'],
2435 'odf' => ['application/vnd.oasis.opendocument.formula'],
2436 'odft' => ['application/vnd.oasis.opendocument.formula-template'],
2437 'odg' => ['application/vnd.oasis.opendocument.graphics'],
2438 'odi' => ['application/vnd.oasis.opendocument.image'],
2439 'odm' => ['application/vnd.oasis.opendocument.text-master'],
2440 'odp' => ['application/vnd.oasis.opendocument.presentation'],
2441 'ods' => ['application/vnd.oasis.opendocument.spreadsheet'],
2442 'odt' => ['application/vnd.oasis.opendocument.text'],
2443 'oga' => ['audio/ogg', 'audio/vorbis', 'audio/x-flac+ogg', 'audio/x-ogg', 'audio/x-oggflac', 'audio/x-speex+ogg', 'audio/x-vorbis', 'audio/x-vorbis+ogg'],
2444 'ogg' => ['audio/ogg', 'audio/vorbis', 'audio/x-flac+ogg', 'audio/x-ogg', 'audio/x-oggflac', 'audio/x-speex+ogg', 'audio/x-vorbis', 'audio/x-vorbis+ogg', 'video/ogg', 'video/x-ogg', 'video/x-theora', 'video/x-theora+ogg'],
2445 'ogm' => ['video/x-ogm', 'video/x-ogm+ogg'],
2446 'ogv' => ['video/ogg', 'video/x-ogg'],
2447 'ogx' => ['application/ogg', 'application/x-ogg'],
2448 'old' => ['application/x-trash'],
2449 'oleo' => ['application/x-oleo'],
2450 'omdoc' => ['application/omdoc+xml'],
2451 'onepkg' => ['application/onenote'],
2452 'onetmp' => ['application/onenote'],
2453 'onetoc' => ['application/onenote'],
2454 'onetoc2' => ['application/onenote'],
2455 'ooc' => ['text/x-ooc'],
2456 'opf' => ['application/oebps-package+xml'],
2457 'opml' => ['text/x-opml', 'text/x-opml+xml'],
2458 'oprc' => ['application/vnd.palm', 'application/x-palm-database'],
2459 'opus' => ['audio/ogg', 'audio/x-ogg', 'audio/x-opus+ogg'],
2460 'ora' => ['image/openraster'],
2461 'orf' => ['image/x-olympus-orf'],
2462 'org' => ['application/vnd.lotus-organizer'],
2463 'osf' => ['application/vnd.yamaha.openscoreformat'],
2464 'osfpvg' => ['application/vnd.yamaha.openscoreformat.osfpvg+xml'],
2465 'otc' => ['application/vnd.oasis.opendocument.chart-template'],
2466 'otf' => ['application/vnd.oasis.opendocument.formula-template', 'application/x-font-otf', 'font/otf'],
2467 'otg' => ['application/vnd.oasis.opendocument.graphics-template'],
2468 'oth' => ['application/vnd.oasis.opendocument.text-web'],
2469 'oti' => ['application/vnd.oasis.opendocument.image-template'],
2470 'otp' => ['application/vnd.oasis.opendocument.presentation-template'],
2471 'ots' => ['application/vnd.oasis.opendocument.spreadsheet-template'],
2472 'ott' => ['application/vnd.oasis.opendocument.text-template'],
2473 'owl' => ['application/rdf+xml', 'text/rdf'],
2474 'owx' => ['application/owl+xml'],
2475 'oxps' => ['application/oxps', 'application/vnd.ms-xpsdocument', 'application/xps'],
2476 'oxt' => ['application/vnd.openofficeorg.extension'],
2477 'p' => ['text/x-pascal'],
2478 'p10' => ['application/pkcs10'],
2479 'p12' => ['application/pkcs12', 'application/x-pkcs12'],
2480 'p65' => ['application/x-pagemaker'],
2481 'p7b' => ['application/x-pkcs7-certificates'],
2482 'p7c' => ['application/pkcs7-mime'],
2483 'p7m' => ['application/pkcs7-mime'],
2484 'p7r' => ['application/x-pkcs7-certreqresp'],
2485 'p7s' => ['application/pkcs7-signature'],
2486 'p8' => ['application/pkcs8'],
2487 'p8e' => ['application/pkcs8-encrypted'],
2488 'pack' => ['application/x-java-pack200'],
2489 'pak' => ['application/x-pak'],
2490 'par2' => ['application/x-par2'],
2491 'part' => ['application/x-partial-download'],
2492 'pas' => ['text/x-pascal'],
2493 'pat' => ['image/x-gimp-pat'],
2494 'patch' => ['text/x-diff', 'text/x-patch'],
2495 'path' => ['text/x-systemd-unit'],
2496 'paw' => ['application/vnd.pawaafile'],
2497 'pbd' => ['application/vnd.powerbuilder6'],
2498 'pbm' => ['image/x-portable-bitmap'],
2499 'pcap' => ['application/pcap', 'application/vnd.tcpdump.pcap', 'application/x-pcap'],
2500 'pcd' => ['image/x-photo-cd'],
2501 'pce' => ['application/x-pc-engine-rom'],
2502 'pcf' => ['application/x-cisco-vpn-settings', 'application/x-font-pcf'],
2503 'pcf.Z' => ['application/x-font-pcf'],
2504 'pcf.gz' => ['application/x-font-pcf'],
2505 'pcl' => ['application/vnd.hp-pcl'],
2506 'pclxl' => ['application/vnd.hp-pclxl'],
2507 'pct' => ['image/x-pict'],
2508 'pcurl' => ['application/vnd.curl.pcurl'],
2509 'pcx' => ['image/vnd.zbrush.pcx', 'image/x-pcx'],
2510 'pdb' => ['application/vnd.palm', 'application/x-aportisdoc', 'application/x-palm-database'],
2511 'pdc' => ['application/x-aportisdoc'],
2512 'pdf' => ['application/pdf', 'application/acrobat', 'application/nappdf', 'application/x-pdf', 'image/pdf'],
2513 'pdf.bz2' => ['application/x-bzpdf'],
2514 'pdf.gz' => ['application/x-gzpdf'],
2515 'pdf.lz' => ['application/x-lzpdf'],
2516 'pdf.xz' => ['application/x-xzpdf'],
2517 'pef' => ['image/x-pentax-pef'],
2518 'pem' => ['application/x-x509-ca-cert'],
2519 'perl' => ['application/x-perl', 'text/x-perl'],
2520 'pfa' => ['application/x-font-type1'],
2521 'pfb' => ['application/x-font-type1'],
2522 'pfm' => ['application/x-font-type1'],
2523 'pfr' => ['application/font-tdpfr'],
2524 'pfx' => ['application/pkcs12', 'application/x-pkcs12'],
2525 'pgm' => ['image/x-portable-graymap'],
2526 'pgn' => ['application/vnd.chess-pgn', 'application/x-chess-pgn'],
2527 'pgp' => ['application/pgp', 'application/pgp-encrypted', 'application/pgp-keys', 'application/pgp-signature'],
2528 'php' => ['application/x-php'],
2529 'php3' => ['application/x-php'],
2530 'php4' => ['application/x-php'],
2531 'php5' => ['application/x-php'],
2532 'phps' => ['application/x-php'],
2533 'pic' => ['image/x-pict'],
2534 'pict' => ['image/x-pict'],
2535 'pict1' => ['image/x-pict'],
2536 'pict2' => ['image/x-pict'],
2537 'pk' => ['application/x-tex-pk'],
2538 'pkg' => ['application/octet-stream', 'application/x-xar'],
2539 'pki' => ['application/pkixcmp'],
2540 'pkipath' => ['application/pkix-pkipath'],
2541 'pkr' => ['application/pgp-keys'],
2542 'pl' => ['application/x-perl', 'text/x-perl'],
2543 'pla' => ['audio/x-iriver-pla'],
2544 'plb' => ['application/vnd.3gpp.pic-bw-large'],
2545 'plc' => ['application/vnd.mobius.plc'],
2546 'plf' => ['application/vnd.pocketlearn'],
2547 'pln' => ['application/x-planperfect'],
2548 'pls' => ['application/pls', 'application/pls+xml', 'audio/scpls', 'audio/x-scpls'],
2549 'pm' => ['application/x-pagemaker', 'application/x-perl', 'text/x-perl'],
2550 'pm6' => ['application/x-pagemaker'],
2551 'pmd' => ['application/x-pagemaker'],
2552 'pml' => ['application/vnd.ctc-posml'],
2553 'png' => ['image/png'],
2554 'pnm' => ['image/x-portable-anymap'],
2555 'pntg' => ['image/x-macpaint'],
2556 'po' => ['application/x-gettext', 'text/x-gettext-translation', 'text/x-po'],
2557 'pod' => ['application/x-perl', 'text/x-perl'],
2558 'por' => ['application/x-spss-por'],
2559 'portpkg' => ['application/vnd.macports.portpkg'],
2560 'pot' => ['application/mspowerpoint', 'application/powerpoint', 'application/vnd.ms-powerpoint', 'application/x-mspowerpoint', 'text/x-gettext-translation-template', 'text/x-pot'],
2561 'potm' => ['application/vnd.ms-powerpoint.template.macroenabled.12'],
2562 'potx' => ['application/vnd.openxmlformats-officedocument.presentationml.template'],
2563 'ppam' => ['application/vnd.ms-powerpoint.addin.macroenabled.12'],
2564 'ppd' => ['application/vnd.cups-ppd'],
2565 'ppm' => ['image/x-portable-pixmap'],
2566 'pps' => ['application/mspowerpoint', 'application/powerpoint', 'application/vnd.ms-powerpoint', 'application/x-mspowerpoint'],
2567 'ppsm' => ['application/vnd.ms-powerpoint.slideshow.macroenabled.12'],
2568 'ppsx' => ['application/vnd.openxmlformats-officedocument.presentationml.slideshow'],
2569 'ppt' => ['application/vnd.ms-powerpoint', 'application/mspowerpoint', 'application/powerpoint', 'application/x-mspowerpoint'],
2570 'pptm' => ['application/vnd.ms-powerpoint.presentation.macroenabled.12'],
2571 'pptx' => ['application/vnd.openxmlformats-officedocument.presentationml.presentation'],
2572 'ppz' => ['application/mspowerpoint', 'application/powerpoint', 'application/vnd.ms-powerpoint', 'application/x-mspowerpoint'],
2573 'pqa' => ['application/vnd.palm', 'application/x-palm-database'],
2574 'prc' => ['application/vnd.palm', 'application/x-mobipocket-ebook', 'application/x-palm-database'],
2575 'pre' => ['application/vnd.lotus-freelance'],
2576 'prf' => ['application/pics-rules'],
2577 'ps' => ['application/postscript'],
2578 'ps.bz2' => ['application/x-bzpostscript'],
2579 'ps.gz' => ['application/x-gzpostscript'],
2580 'psb' => ['application/vnd.3gpp.pic-bw-small'],
2581 'psd' => ['application/photoshop', 'application/x-photoshop', 'image/photoshop', 'image/psd', 'image/vnd.adobe.photoshop', 'image/x-photoshop', 'image/x-psd'],
2582 'psf' => ['application/x-font-linux-psf', 'audio/x-psf'],
2583 'psf.gz' => ['application/x-gz-font-linux-psf'],
2584 'psflib' => ['audio/x-psflib'],
2585 'psid' => ['audio/prs.sid'],
2586 'pskcxml' => ['application/pskc+xml'],
2587 'psw' => ['application/x-pocket-word'],
2588 'ptid' => ['application/vnd.pvi.ptid1'],
2589 'pub' => ['application/vnd.ms-publisher', 'application/x-mspublisher'],
2590 'pvb' => ['application/vnd.3gpp.pic-bw-var'],
2591 'pw' => ['application/x-pw'],
2592 'pwn' => ['application/vnd.3m.post-it-notes'],
2593 'py' => ['text/x-python', 'text/x-python3'],
2594 'py3' => ['text/x-python3'],
2595 'py3x' => ['text/x-python3'],
2596 'pya' => ['audio/vnd.ms-playready.media.pya'],
2597 'pyc' => ['application/x-python-bytecode'],
2598 'pyo' => ['application/x-python-bytecode'],
2599 'pyv' => ['video/vnd.ms-playready.media.pyv'],
2600 'pyx' => ['text/x-python'],
2601 'qam' => ['application/vnd.epson.quickanime'],
2602 'qbo' => ['application/vnd.intu.qbo'],
2603 'qd' => ['application/x-fd-file', 'application/x-raw-floppy-disk-image'],
2604 'qfx' => ['application/vnd.intu.qfx'],
2605 'qif' => ['application/x-qw', 'image/x-quicktime'],
2606 'qml' => ['text/x-qml'],
2607 'qmlproject' => ['text/x-qml'],
2608 'qmltypes' => ['text/x-qml'],
2609 'qp' => ['application/x-qpress'],
2610 'qps' => ['application/vnd.publishare-delta-tree'],
2611 'qt' => ['video/quicktime'],
2612 'qti' => ['application/x-qtiplot'],
2613 'qti.gz' => ['application/x-qtiplot'],
2614 'qtif' => ['image/x-quicktime'],
2615 'qtl' => ['application/x-quicktime-media-link', 'application/x-quicktimeplayer'],
2616 'qtvr' => ['video/quicktime'],
2617 'qwd' => ['application/vnd.quark.quarkxpress'],
2618 'qwt' => ['application/vnd.quark.quarkxpress'],
2619 'qxb' => ['application/vnd.quark.quarkxpress'],
2620 'qxd' => ['application/vnd.quark.quarkxpress'],
2621 'qxl' => ['application/vnd.quark.quarkxpress'],
2622 'qxt' => ['application/vnd.quark.quarkxpress'],
2623 'ra' => ['audio/vnd.m-realaudio', 'audio/vnd.rn-realaudio', 'audio/x-pn-realaudio'],
2624 'raf' => ['image/x-fuji-raf'],
2625 'ram' => ['application/ram', 'audio/x-pn-realaudio'],
2626 'raml' => ['application/raml+yaml'],
2627 'rar' => ['application/x-rar-compressed', 'application/vnd.rar', 'application/x-rar'],
2628 'ras' => ['image/x-cmu-raster'],
2629 'raw' => ['image/x-panasonic-raw', 'image/x-panasonic-rw'],
2630 'raw-disk-image' => ['application/x-raw-disk-image'],
2631 'raw-disk-image.xz' => ['application/x-raw-disk-image-xz-compressed'],
2632 'rax' => ['audio/vnd.m-realaudio', 'audio/vnd.rn-realaudio', 'audio/x-pn-realaudio'],
2633 'rb' => ['application/x-ruby'],
2634 'rcprofile' => ['application/vnd.ipunplugged.rcprofile'],
2635 'rdf' => ['application/rdf+xml', 'text/rdf'],
2636 'rdfs' => ['application/rdf+xml', 'text/rdf'],
2637 'rdz' => ['application/vnd.data-vision.rdz'],
2638 'reg' => ['text/x-ms-regedit'],
2639 'rej' => ['application/x-reject', 'text/x-reject'],
2640 'rep' => ['application/vnd.businessobjects'],
2641 'res' => ['application/x-dtbresource+xml'],
2642 'rgb' => ['image/x-rgb'],
2643 'rif' => ['application/reginfo+xml'],
2644 'rip' => ['audio/vnd.rip'],
2645 'ris' => ['application/x-research-info-systems'],
2646 'rl' => ['application/resource-lists+xml'],
2647 'rlc' => ['image/vnd.fujixerox.edmics-rlc'],
2648 'rld' => ['application/resource-lists-diff+xml'],
2649 'rle' => ['image/rle'],
2650 'rm' => ['application/vnd.rn-realmedia', 'application/vnd.rn-realmedia-vbr'],
2651 'rmi' => ['audio/midi'],
2652 'rmj' => ['application/vnd.rn-realmedia', 'application/vnd.rn-realmedia-vbr'],
2653 'rmm' => ['application/vnd.rn-realmedia', 'application/vnd.rn-realmedia-vbr'],
2654 'rmp' => ['audio/x-pn-realaudio-plugin'],
2655 'rms' => ['application/vnd.jcp.javame.midlet-rms', 'application/vnd.rn-realmedia', 'application/vnd.rn-realmedia-vbr'],
2656 'rmvb' => ['application/vnd.rn-realmedia', 'application/vnd.rn-realmedia-vbr'],
2657 'rmx' => ['application/vnd.rn-realmedia', 'application/vnd.rn-realmedia-vbr'],
2658 'rnc' => ['application/relax-ng-compact-syntax', 'application/x-rnc'],
2659 'rng' => ['application/xml', 'text/xml'],
2660 'roa' => ['application/rpki-roa'],
2661 'roff' => ['application/x-troff', 'text/troff', 'text/x-troff'],
2662 'rp' => ['image/vnd.rn-realpix'],
2663 'rp9' => ['application/vnd.cloanto.rp9'],
2664 'rpm' => ['application/x-redhat-package-manager', 'application/x-rpm'],
2665 'rpss' => ['application/vnd.nokia.radio-presets'],
2666 'rpst' => ['application/vnd.nokia.radio-preset'],
2667 'rq' => ['application/sparql-query'],
2668 'rs' => ['application/rls-services+xml', 'text/rust'],
2669 'rsd' => ['application/rsd+xml'],
2670 'rss' => ['application/rss+xml', 'text/rss'],
2671 'rt' => ['text/vnd.rn-realtext'],
2672 'rtf' => ['application/rtf', 'text/rtf'],
2673 'rtx' => ['text/richtext'],
2674 'rv' => ['video/vnd.rn-realvideo', 'video/x-real-video'],
2675 'rvx' => ['video/vnd.rn-realvideo', 'video/x-real-video'],
2676 'rw2' => ['image/x-panasonic-raw2', 'image/x-panasonic-rw2'],
2677 's' => ['text/x-asm'],
2678 's3m' => ['audio/s3m', 'audio/x-s3m'],
2679 'saf' => ['application/vnd.yamaha.smaf-audio'],
2680 'sam' => ['application/x-amipro'],
2681 'sami' => ['application/x-sami'],
2682 'sap' => ['application/x-sap-file', 'application/x-thomson-sap-image'],
2683 'sass' => ['text/x-sass'],
2684 'sav' => ['application/x-spss-sav', 'application/x-spss-savefile'],
2685 'sbml' => ['application/sbml+xml'],
2686 'sc' => ['application/vnd.ibm.secure-container'],
2687 'scala' => ['text/x-scala'],
2688 'scd' => ['application/x-msschedule'],
2689 'scm' => ['application/vnd.lotus-screencam', 'text/x-scheme'],
2690 'scope' => ['text/x-systemd-unit'],
2691 'scq' => ['application/scvp-cv-request'],
2692 'scs' => ['application/scvp-cv-response'],
2693 'scss' => ['text/x-scss'],
2694 'scurl' => ['text/vnd.curl.scurl'],
2695 'sda' => ['application/vnd.stardivision.draw'],
2696 'sdc' => ['application/vnd.stardivision.calc'],
2697 'sdd' => ['application/vnd.stardivision.impress'],
2698 'sdkd' => ['application/vnd.solent.sdkm+xml'],
2699 'sdkm' => ['application/vnd.solent.sdkm+xml'],
2700 'sdp' => ['application/sdp', 'application/vnd.sdp', 'application/vnd.stardivision.impress', 'application/x-sdp'],
2701 'sds' => ['application/vnd.stardivision.chart'],
2702 'sdw' => ['application/vnd.stardivision.writer', 'application/vnd.stardivision.writer-global'],
2703 'see' => ['application/vnd.seemail'],
2704 'seed' => ['application/vnd.fdsn.seed'],
2705 'sema' => ['application/vnd.sema'],
2706 'semd' => ['application/vnd.semd'],
2707 'semf' => ['application/vnd.semf'],
2708 'ser' => ['application/java-serialized-object'],
2709 'service' => ['text/x-dbus-service', 'text/x-systemd-unit'],
2710 'setpay' => ['application/set-payment-initiation'],
2711 'setreg' => ['application/set-registration-initiation'],
2712 'sfc' => ['application/vnd.nintendo.snes.rom', 'application/x-snes-rom'],
2713 'sfd-hdstx' => ['application/vnd.hydrostatix.sof-data'],
2714 'sfs' => ['application/vnd.spotfire.sfs'],
2715 'sfv' => ['text/x-sfv'],
2716 'sg' => ['application/x-sg1000-rom'],
2717 'sgb' => ['application/x-gameboy-rom'],
2718 'sgf' => ['application/x-go-sgf'],
2719 'sgi' => ['image/sgi', 'image/x-sgi'],
2720 'sgl' => ['application/vnd.stardivision.writer', 'application/vnd.stardivision.writer-global'],
2721 'sgm' => ['text/sgml'],
2722 'sgml' => ['text/sgml'],
2723 'sh' => ['application/x-sh', 'application/x-shellscript', 'text/x-sh'],
2724 'shape' => ['application/x-dia-shape'],
2725 'shar' => ['application/x-shar'],
2726 'shf' => ['application/shf+xml'],
2727 'shn' => ['application/x-shorten', 'audio/x-shorten'],
2728 'siag' => ['application/x-siag'],
2729 'sid' => ['audio/prs.sid', 'image/x-mrsid-image'],
2730 'sig' => ['application/pgp-signature'],
2731 'sik' => ['application/x-trash'],
2732 'sil' => ['audio/silk'],
2733 'silo' => ['model/mesh'],
2734 'sis' => ['application/vnd.symbian.install'],
2735 'sisx' => ['application/vnd.symbian.install', 'x-epoc/x-sisx-app'],
2736 'sit' => ['application/x-stuffit', 'application/stuffit', 'application/x-sit'],
2737 'sitx' => ['application/x-stuffitx'],
2738 'siv' => ['application/sieve'],
2739 'sk' => ['image/x-skencil'],
2740 'sk1' => ['image/x-skencil'],
2741 'skd' => ['application/vnd.koan'],
2742 'skm' => ['application/vnd.koan'],
2743 'skp' => ['application/vnd.koan'],
2744 'skr' => ['application/pgp-keys'],
2745 'skt' => ['application/vnd.koan'],
2746 'sldm' => ['application/vnd.ms-powerpoint.slide.macroenabled.12'],
2747 'sldx' => ['application/vnd.openxmlformats-officedocument.presentationml.slide'],
2748 'slice' => ['text/x-systemd-unit'],
2749 'slk' => ['text/spreadsheet'],
2750 'slt' => ['application/vnd.epson.salt'],
2751 'sm' => ['application/vnd.stepmania.stepchart'],
2752 'smaf' => ['application/vnd.smaf', 'application/x-smaf'],
2753 'smc' => ['application/vnd.nintendo.snes.rom', 'application/x-snes-rom'],
2754 'smd' => ['application/vnd.stardivision.mail', 'application/x-genesis-rom'],
2755 'smf' => ['application/vnd.stardivision.math'],
2756 'smi' => ['application/smil', 'application/smil+xml', 'application/x-sami'],
2757 'smil' => ['application/smil', 'application/smil+xml'],
2758 'sml' => ['application/smil', 'application/smil+xml'],
2759 'sms' => ['application/x-sms-rom'],
2760 'smv' => ['video/x-smv'],
2761 'smzip' => ['application/vnd.stepmania.package'],
2762 'snap' => ['application/vnd.snap'],
2763 'snd' => ['audio/basic'],
2764 'snf' => ['application/x-font-snf'],
2765 'so' => ['application/octet-stream', 'application/x-sharedlib'],
2766 'socket' => ['text/x-systemd-unit'],
2767 'spc' => ['application/x-pkcs7-certificates'],
2768 'spd' => ['application/x-font-speedo'],
2769 'spec' => ['text/x-rpm-spec'],
2770 'spf' => ['application/vnd.yamaha.smaf-phrase'],
2771 'spl' => ['application/futuresplash', 'application/vnd.adobe.flash.movie', 'application/x-futuresplash', 'application/x-shockwave-flash'],
2772 'spm' => ['application/x-source-rpm'],
2773 'spot' => ['text/vnd.in3d.spot'],
2774 'spp' => ['application/scvp-vp-response'],
2775 'spq' => ['application/scvp-vp-request'],
2776 'spx' => ['audio/ogg', 'audio/x-speex'],
2777 'sql' => ['application/sql', 'application/x-sql', 'text/x-sql'],
2778 'sqlite2' => ['application/x-sqlite2'],
2779 'sqlite3' => ['application/vnd.sqlite3', 'application/x-sqlite3'],
2780 'sqsh' => ['application/vnd.squashfs'],
2781 'sr2' => ['image/x-sony-sr2'],
2782 'src' => ['application/x-wais-source'],
2783 'src.rpm' => ['application/x-source-rpm'],
2784 'srf' => ['image/x-sony-srf'],
2785 'srt' => ['application/x-srt', 'application/x-subrip'],
2786 'sru' => ['application/sru+xml'],
2787 'srx' => ['application/sparql-results+xml'],
2788 'ss' => ['text/x-scheme'],
2789 'ssa' => ['text/x-ssa'],
2790 'ssdl' => ['application/ssdl+xml'],
2791 'sse' => ['application/vnd.kodak-descriptor'],
2792 'ssf' => ['application/vnd.epson.ssf'],
2793 'ssml' => ['application/ssml+xml'],
2794 'st' => ['application/vnd.sailingtracker.track'],
2795 'stc' => ['application/vnd.sun.xml.calc.template'],
2796 'std' => ['application/vnd.sun.xml.draw.template'],
2797 'stf' => ['application/vnd.wt.stf'],
2798 'sti' => ['application/vnd.sun.xml.impress.template'],
2799 'stk' => ['application/hyperstudio'],
2800 'stl' => ['application/vnd.ms-pki.stl', 'model/stl', 'model/x.stl-ascii', 'model/x.stl-binary'],
2801 'stm' => ['audio/x-stm'],
2802 'str' => ['application/vnd.pg.format'],
2803 'stw' => ['application/vnd.sun.xml.writer.template'],
2804 'sty' => ['application/x-tex', 'text/x-tex'],
2805 'sub' => ['image/vnd.dvb.subtitle', 'text/vnd.dvb.subtitle', 'text/x-microdvd', 'text/x-mpsub', 'text/x-subviewer'],
2806 'sun' => ['image/x-sun-raster'],
2807 'sus' => ['application/vnd.sus-calendar'],
2808 'susp' => ['application/vnd.sus-calendar'],
2809 'sv' => ['text/x-svsrc'],
2810 'sv4cpio' => ['application/x-sv4cpio'],
2811 'sv4crc' => ['application/x-sv4crc'],
2812 'svc' => ['application/vnd.dvb.service'],
2813 'svd' => ['application/vnd.svd'],
2814 'svg' => ['image/svg+xml', 'image/svg'],
2815 'svgz' => ['image/svg+xml', 'image/svg+xml-compressed'],
2816 'svh' => ['text/x-svhdr'],
2817 'swa' => ['application/x-director'],
2818 'swap' => ['text/x-systemd-unit'],
2819 'swf' => ['application/futuresplash', 'application/vnd.adobe.flash.movie', 'application/x-shockwave-flash'],
2820 'swi' => ['application/vnd.aristanetworks.swi'],
2821 'swm' => ['application/x-ms-wim'],
2822 'sxc' => ['application/vnd.sun.xml.calc'],
2823 'sxd' => ['application/vnd.sun.xml.draw'],
2824 'sxg' => ['application/vnd.sun.xml.writer.global'],
2825 'sxi' => ['application/vnd.sun.xml.impress'],
2826 'sxm' => ['application/vnd.sun.xml.math'],
2827 'sxw' => ['application/vnd.sun.xml.writer'],
2828 'sylk' => ['text/spreadsheet'],
2829 't' => ['application/x-perl', 'application/x-troff', 'text/troff', 'text/x-perl', 'text/x-troff'],
2830 't2t' => ['text/x-txt2tags'],
2831 't3' => ['application/x-t3vm-image'],
2832 'taglet' => ['application/vnd.mynfc'],
2833 'tao' => ['application/vnd.tao.intent-module-archive'],
2834 'tar' => ['application/x-tar', 'application/x-gtar'],
2835 'tar.Z' => ['application/x-tarz'],
2836 'tar.bz' => ['application/x-bzip-compressed-tar'],
2837 'tar.bz2' => ['application/x-bzip-compressed-tar'],
2838 'tar.gz' => ['application/x-compressed-tar'],
2839 'tar.lrz' => ['application/x-lrzip-compressed-tar'],
2840 'tar.lz' => ['application/x-lzip-compressed-tar'],
2841 'tar.lz4' => ['application/x-lz4-compressed-tar'],
2842 'tar.lzma' => ['application/x-lzma-compressed-tar'],
2843 'tar.lzo' => ['application/x-tzo'],
2844 'tar.xz' => ['application/x-xz-compressed-tar'],
2845 'target' => ['text/x-systemd-unit'],
2846 'taz' => ['application/x-tarz'],
2847 'tb2' => ['application/x-bzip-compressed-tar'],
2848 'tbz' => ['application/x-bzip-compressed-tar'],
2849 'tbz2' => ['application/x-bzip-compressed-tar'],
2850 'tcap' => ['application/vnd.3gpp2.tcap'],
2851 'tcl' => ['application/x-tcl', 'text/x-tcl'],
2852 'teacher' => ['application/vnd.smart.teacher'],
2853 'tei' => ['application/tei+xml'],
2854 'teicorpus' => ['application/tei+xml'],
2855 'tex' => ['application/x-tex', 'text/x-tex'],
2856 'texi' => ['application/x-texinfo', 'text/x-texinfo'],
2857 'texinfo' => ['application/x-texinfo', 'text/x-texinfo'],
2858 'text' => ['text/plain'],
2859 'tfi' => ['application/thraud+xml'],
2860 'tfm' => ['application/x-tex-tfm'],
2861 'tga' => ['image/x-icb', 'image/x-tga'],
2862 'tgz' => ['application/x-compressed-tar'],
2863 'theme' => ['application/x-theme'],
2864 'themepack' => ['application/x-windows-themepack'],
2865 'thmx' => ['application/vnd.ms-officetheme'],
2866 'tif' => ['image/tiff'],
2867 'tiff' => ['image/tiff'],
2868 'timer' => ['text/x-systemd-unit'],
2869 'tk' => ['text/x-tcl'],
2870 'tlrz' => ['application/x-lrzip-compressed-tar'],
2871 'tlz' => ['application/x-lzma-compressed-tar'],
2872 'tmo' => ['application/vnd.tmobile-livetv'],
2873 'tnef' => ['application/ms-tnef', 'application/vnd.ms-tnef'],
2874 'tnf' => ['application/ms-tnef', 'application/vnd.ms-tnef'],
2875 'toc' => ['application/x-cdrdao-toc'],
2876 'torrent' => ['application/x-bittorrent'],
2877 'tpic' => ['image/x-icb', 'image/x-tga'],
2878 'tpl' => ['application/vnd.groove-tool-template'],
2879 'tpt' => ['application/vnd.trid.tpt'],
2880 'tr' => ['application/x-troff', 'text/troff', 'text/x-troff'],
2881 'tra' => ['application/vnd.trueapp'],
2882 'trig' => ['application/trig', 'application/x-trig'],
2883 'trm' => ['application/x-msterminal'],
2884 'ts' => ['application/x-linguist', 'text/vnd.qt.linguist', 'text/vnd.trolltech.linguist', 'video/mp2t'],
2885 'tsd' => ['application/timestamped-data'],
2886 'tsv' => ['text/tab-separated-values'],
2887 'tta' => ['audio/tta', 'audio/x-tta'],
2888 'ttc' => ['font/collection'],
2889 'ttf' => ['application/x-font-truetype', 'application/x-font-ttf', 'font/ttf'],
2890 'ttl' => ['text/turtle'],
2891 'ttx' => ['application/x-font-ttx'],
2892 'twd' => ['application/vnd.simtech-mindmapper'],
2893 'twds' => ['application/vnd.simtech-mindmapper'],
2894 'twig' => ['text/x-twig'],
2895 'txd' => ['application/vnd.genomatix.tuxedo'],
2896 'txf' => ['application/vnd.mobius.txf'],
2897 'txt' => ['text/plain'],
2898 'txz' => ['application/x-xz-compressed-tar'],
2899 'tzo' => ['application/x-tzo'],
2900 'u32' => ['application/x-authorware-bin'],
2901 'udeb' => ['application/vnd.debian.binary-package', 'application/x-deb', 'application/x-debian-package'],
2902 'ufd' => ['application/vnd.ufdl'],
2903 'ufdl' => ['application/vnd.ufdl'],
2904 'ufraw' => ['application/x-ufraw'],
2905 'ui' => ['application/x-designer', 'application/x-gtk-builder'],
2906 'uil' => ['text/x-uil'],
2907 'ult' => ['audio/x-mod'],
2908 'ulx' => ['application/x-glulx'],
2909 'umj' => ['application/vnd.umajin'],
2910 'unf' => ['application/x-nes-rom'],
2911 'uni' => ['audio/x-mod'],
2912 'unif' => ['application/x-nes-rom'],
2913 'unityweb' => ['application/vnd.unity'],
2914 'uoml' => ['application/vnd.uoml+xml'],
2915 'uri' => ['text/uri-list'],
2916 'uris' => ['text/uri-list'],
2917 'url' => ['application/x-mswinurl'],
2918 'urls' => ['text/uri-list'],
2919 'ustar' => ['application/x-ustar'],
2920 'utz' => ['application/vnd.uiq.theme'],
2921 'uu' => ['text/x-uuencode'],
2922 'uue' => ['text/x-uuencode', 'zz-application/zz-winassoc-uu'],
2923 'uva' => ['audio/vnd.dece.audio'],
2924 'uvd' => ['application/vnd.dece.data'],
2925 'uvf' => ['application/vnd.dece.data'],
2926 'uvg' => ['image/vnd.dece.graphic'],
2927 'uvh' => ['video/vnd.dece.hd'],
2928 'uvi' => ['image/vnd.dece.graphic'],
2929 'uvm' => ['video/vnd.dece.mobile'],
2930 'uvp' => ['video/vnd.dece.pd'],
2931 'uvs' => ['video/vnd.dece.sd'],
2932 'uvt' => ['application/vnd.dece.ttml+xml'],
2933 'uvu' => ['video/vnd.uvvu.mp4'],
2934 'uvv' => ['video/vnd.dece.video'],
2935 'uvva' => ['audio/vnd.dece.audio'],
2936 'uvvd' => ['application/vnd.dece.data'],
2937 'uvvf' => ['application/vnd.dece.data'],
2938 'uvvg' => ['image/vnd.dece.graphic'],
2939 'uvvh' => ['video/vnd.dece.hd'],
2940 'uvvi' => ['image/vnd.dece.graphic'],
2941 'uvvm' => ['video/vnd.dece.mobile'],
2942 'uvvp' => ['video/vnd.dece.pd'],
2943 'uvvs' => ['video/vnd.dece.sd'],
2944 'uvvt' => ['application/vnd.dece.ttml+xml'],
2945 'uvvu' => ['video/vnd.uvvu.mp4'],
2946 'uvvv' => ['video/vnd.dece.video'],
2947 'uvvx' => ['application/vnd.dece.unspecified'],
2948 'uvvz' => ['application/vnd.dece.zip'],
2949 'uvx' => ['application/vnd.dece.unspecified'],
2950 'uvz' => ['application/vnd.dece.zip'],
2951 'v' => ['text/x-verilog'],
2952 'v64' => ['application/x-n64-rom'],
2953 'vala' => ['text/x-vala'],
2954 'vapi' => ['text/x-vala'],
2955 'vb' => ['application/x-virtual-boy-rom'],
2956 'vcard' => ['text/directory', 'text/vcard', 'text/x-vcard'],
2957 'vcd' => ['application/x-cdlink'],
2958 'vcf' => ['text/x-vcard', 'text/directory', 'text/vcard'],
2959 'vcg' => ['application/vnd.groove-vcard'],
2960 'vcs' => ['application/ics', 'text/calendar', 'text/x-vcalendar'],
2961 'vct' => ['text/directory', 'text/vcard', 'text/x-vcard'],
2962 'vcx' => ['application/vnd.vcx'],
2963 'vda' => ['image/x-icb', 'image/x-tga'],
2964 'vhd' => ['text/x-vhdl'],
2965 'vhdl' => ['text/x-vhdl'],
2966 'vis' => ['application/vnd.visionary'],
2967 'viv' => ['video/vivo', 'video/vnd.vivo'],
2968 'vivo' => ['video/vivo', 'video/vnd.vivo'],
2969 'vlc' => ['application/m3u', 'audio/m3u', 'audio/mpegurl', 'audio/x-m3u', 'audio/x-mp3-playlist', 'audio/x-mpegurl'],
2970 'vob' => ['video/mpeg', 'video/mpeg-system', 'video/x-mpeg', 'video/x-mpeg-system', 'video/x-mpeg2', 'video/x-ms-vob'],
2971 'voc' => ['audio/x-voc'],
2972 'vor' => ['application/vnd.stardivision.writer', 'application/vnd.stardivision.writer-global'],
2973 'vox' => ['application/x-authorware-bin'],
2974 'vrm' => ['model/vrml'],
2975 'vrml' => ['model/vrml'],
2976 'vsd' => ['application/vnd.visio'],
2977 'vsdm' => ['application/vnd.ms-visio.drawing.macroenabled.main+xml'],
2978 'vsdx' => ['application/vnd.ms-visio.drawing.main+xml'],
2979 'vsf' => ['application/vnd.vsf'],
2980 'vss' => ['application/vnd.visio'],
2981 'vssm' => ['application/vnd.ms-visio.stencil.macroenabled.main+xml'],
2982 'vssx' => ['application/vnd.ms-visio.stencil.main+xml'],
2983 'vst' => ['application/vnd.visio', 'image/x-icb', 'image/x-tga'],
2984 'vstm' => ['application/vnd.ms-visio.template.macroenabled.main+xml'],
2985 'vstx' => ['application/vnd.ms-visio.template.main+xml'],
2986 'vsw' => ['application/vnd.visio'],
2987 'vtt' => ['text/vtt'],
2988 'vtu' => ['model/vnd.vtu'],
2989 'vxml' => ['application/voicexml+xml'],
2990 'w3d' => ['application/x-director'],
2991 'wad' => ['application/x-doom', 'application/x-doom-wad', 'application/x-wii-wad'],
2992 'wav' => ['audio/wav', 'audio/vnd.wave', 'audio/x-wav'],
2993 'wax' => ['application/x-ms-asx', 'audio/x-ms-asx', 'audio/x-ms-wax', 'video/x-ms-wax', 'video/x-ms-wmx', 'video/x-ms-wvx'],
2994 'wb1' => ['application/x-quattropro'],
2995 'wb2' => ['application/x-quattropro'],
2996 'wb3' => ['application/x-quattropro'],
2997 'wbmp' => ['image/vnd.wap.wbmp'],
2998 'wbs' => ['application/vnd.criticaltools.wbs+xml'],
2999 'wbxml' => ['application/vnd.wap.wbxml'],
3000 'wcm' => ['application/vnd.ms-works'],
3001 'wdb' => ['application/vnd.ms-works'],
3002 'wdp' => ['image/vnd.ms-photo'],
3003 'weba' => ['audio/webm'],
3004 'webm' => ['video/webm'],
3005 'webp' => ['image/webp'],
3006 'wg' => ['application/vnd.pmi.widget'],
3007 'wgt' => ['application/widget'],
3008 'wim' => ['application/x-ms-wim'],
3009 'wk1' => ['application/lotus123', 'application/vnd.lotus-1-2-3', 'application/wk1', 'application/x-123', 'application/x-lotus123', 'zz-application/zz-winassoc-123'],
3010 'wk3' => ['application/lotus123', 'application/vnd.lotus-1-2-3', 'application/wk1', 'application/x-123', 'application/x-lotus123', 'zz-application/zz-winassoc-123'],
3011 'wk4' => ['application/lotus123', 'application/vnd.lotus-1-2-3', 'application/wk1', 'application/x-123', 'application/x-lotus123', 'zz-application/zz-winassoc-123'],
3012 'wkdownload' => ['application/x-partial-download'],
3013 'wks' => ['application/lotus123', 'application/vnd.lotus-1-2-3', 'application/vnd.ms-works', 'application/wk1', 'application/x-123', 'application/x-lotus123', 'zz-application/zz-winassoc-123'],
3014 'wm' => ['video/x-ms-wm'],
3015 'wma' => ['audio/x-ms-wma', 'audio/wma'],
3016 'wmd' => ['application/x-ms-wmd'],
3017 'wmf' => ['application/wmf', 'application/x-msmetafile', 'application/x-wmf', 'image/wmf', 'image/x-win-metafile', 'image/x-wmf'],
3018 'wml' => ['text/vnd.wap.wml'],
3019 'wmlc' => ['application/vnd.wap.wmlc'],
3020 'wmls' => ['text/vnd.wap.wmlscript'],
3021 'wmlsc' => ['application/vnd.wap.wmlscriptc'],
3022 'wmv' => ['audio/x-ms-wmv', 'video/x-ms-wmv'],
3023 'wmx' => ['application/x-ms-asx', 'audio/x-ms-asx', 'video/x-ms-wax', 'video/x-ms-wmx', 'video/x-ms-wvx'],
3024 'wmz' => ['application/x-ms-wmz', 'application/x-msmetafile'],
3025 'woff' => ['application/font-woff', 'application/x-font-woff', 'font/woff'],
3026 'woff2' => ['font/woff', 'font/woff2'],
3027 'wp' => ['application/vnd.wordperfect', 'application/wordperfect', 'application/x-wordperfect'],
3028 'wp4' => ['application/vnd.wordperfect', 'application/wordperfect', 'application/x-wordperfect'],
3029 'wp5' => ['application/vnd.wordperfect', 'application/wordperfect', 'application/x-wordperfect'],
3030 'wp6' => ['application/vnd.wordperfect', 'application/wordperfect', 'application/x-wordperfect'],
3031 'wpd' => ['application/vnd.wordperfect', 'application/wordperfect', 'application/x-wordperfect'],
3032 'wpg' => ['application/x-wpg'],
3033 'wpl' => ['application/vnd.ms-wpl'],
3034 'wpp' => ['application/vnd.wordperfect', 'application/wordperfect', 'application/x-wordperfect'],
3035 'wps' => ['application/vnd.ms-works'],
3036 'wqd' => ['application/vnd.wqd'],
3037 'wri' => ['application/x-mswrite'],
3038 'wrl' => ['model/vrml'],
3039 'ws' => ['application/x-wonderswan-rom'],
3040 'wsc' => ['application/x-wonderswan-color-rom'],
3041 'wsdl' => ['application/wsdl+xml'],
3042 'wsgi' => ['text/x-python'],
3043 'wspolicy' => ['application/wspolicy+xml'],
3044 'wtb' => ['application/vnd.webturbo'],
3045 'wv' => ['audio/x-wavpack'],
3046 'wvc' => ['audio/x-wavpack-correction'],
3047 'wvp' => ['audio/x-wavpack'],
3048 'wvx' => ['application/x-ms-asx', 'audio/x-ms-asx', 'video/x-ms-wax', 'video/x-ms-wmx', 'video/x-ms-wvx'],
3049 'wwf' => ['application/wwf', 'application/x-wwf'],
3050 'x32' => ['application/x-authorware-bin'],
3051 'x3d' => ['model/x3d+xml'],
3052 'x3db' => ['model/x3d+binary'],
3053 'x3dbz' => ['model/x3d+binary'],
3054 'x3dv' => ['model/x3d+vrml'],
3055 'x3dvz' => ['model/x3d+vrml'],
3056 'x3dz' => ['model/x3d+xml'],
3057 'x3f' => ['image/x-sigma-x3f'],
3058 'xac' => ['application/x-gnucash'],
3059 'xaml' => ['application/xaml+xml'],
3060 'xap' => ['application/x-silverlight-app'],
3061 'xar' => ['application/vnd.xara', 'application/x-xar'],
3062 'xbap' => ['application/x-ms-xbap'],
3063 'xbd' => ['application/vnd.fujixerox.docuworks.binder'],
3064 'xbel' => ['application/x-xbel'],
3065 'xbl' => ['application/xml', 'text/xml'],
3066 'xbm' => ['image/x-xbitmap'],
3067 'xcf' => ['image/x-xcf'],
3068 'xcf.bz2' => ['image/x-compressed-xcf'],
3069 'xcf.gz' => ['image/x-compressed-xcf'],
3070 'xdf' => ['application/xcap-diff+xml'],
3071 'xdgapp' => ['application/vnd.flatpak', 'application/vnd.xdgapp'],
3072 'xdm' => ['application/vnd.syncml.dm+xml'],
3073 'xdp' => ['application/vnd.adobe.xdp+xml'],
3074 'xdssc' => ['application/dssc+xml'],
3075 'xdw' => ['application/vnd.fujixerox.docuworks'],
3076 'xenc' => ['application/xenc+xml'],
3077 'xer' => ['application/patch-ops-error+xml'],
3078 'xfdf' => ['application/vnd.adobe.xfdf'],
3079 'xfdl' => ['application/vnd.xfdl'],
3080 'xhe' => ['audio/usac'],
3081 'xht' => ['application/xhtml+xml'],
3082 'xhtml' => ['application/xhtml+xml'],
3083 'xhvml' => ['application/xv+xml'],
3084 'xi' => ['audio/x-xi'],
3085 'xif' => ['image/vnd.xiff'],
3086 'xla' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3087 'xlam' => ['application/vnd.ms-excel.addin.macroenabled.12'],
3088 'xlc' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3089 'xld' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3090 'xlf' => ['application/x-xliff', 'application/x-xliff+xml', 'application/xliff+xml'],
3091 'xliff' => ['application/x-xliff', 'application/xliff+xml'],
3092 'xll' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3093 'xlm' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3094 'xlr' => ['application/vnd.ms-works'],
3095 'xls' => ['application/vnd.ms-excel', 'application/msexcel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3096 'xlsb' => ['application/vnd.ms-excel.sheet.binary.macroenabled.12'],
3097 'xlsm' => ['application/vnd.ms-excel.sheet.macroenabled.12'],
3098 'xlsx' => ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],
3099 'xlt' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3100 'xltm' => ['application/vnd.ms-excel.template.macroenabled.12'],
3101 'xltx' => ['application/vnd.openxmlformats-officedocument.spreadsheetml.template'],
3102 'xlw' => ['application/msexcel', 'application/vnd.ms-excel', 'application/x-msexcel', 'zz-application/zz-winassoc-xls'],
3103 'xm' => ['audio/x-xm', 'audio/xm'],
3104 'xmf' => ['audio/mobile-xmf', 'audio/x-xmf', 'audio/xmf'],
3105 'xmi' => ['text/x-xmi'],
3106 'xml' => ['application/xml', 'text/xml'],
3107 'xo' => ['application/vnd.olpc-sugar'],
3108 'xop' => ['application/xop+xml'],
3109 'xpi' => ['application/x-xpinstall'],
3110 'xpl' => ['application/xproc+xml'],
3111 'xpm' => ['image/x-xpixmap', 'image/x-xpm'],
3112 'xpr' => ['application/vnd.is-xpr'],
3113 'xps' => ['application/oxps', 'application/vnd.ms-xpsdocument', 'application/xps'],
3114 'xpw' => ['application/vnd.intercon.formnet'],
3115 'xpx' => ['application/vnd.intercon.formnet'],
3116 'xsd' => ['application/xml', 'text/xml'],
3117 'xsl' => ['application/xml', 'application/xslt+xml'],
3118 'xslfo' => ['text/x-xslfo'],
3119 'xslt' => ['application/xslt+xml'],
3120 'xsm' => ['application/vnd.syncml+xml'],
3121 'xspf' => ['application/x-xspf+xml', 'application/xspf+xml'],
3122 'xul' => ['application/vnd.mozilla.xul+xml'],
3123 'xvm' => ['application/xv+xml'],
3124 'xvml' => ['application/xv+xml'],
3125 'xwd' => ['image/x-xwindowdump'],
3126 'xyz' => ['chemical/x-xyz'],
3127 'xz' => ['application/x-xz'],
3128 'yaml' => ['application/x-yaml', 'text/x-yaml', 'text/yaml'],
3129 'yang' => ['application/yang'],
3130 'yin' => ['application/yin+xml'],
3131 'yml' => ['application/x-yaml', 'text/x-yaml', 'text/yaml'],
3132 'yt' => ['application/vnd.youtube.yt'],
3133 'z1' => ['application/x-zmachine'],
3134 'z2' => ['application/x-zmachine'],
3135 'z3' => ['application/x-zmachine'],
3136 'z4' => ['application/x-zmachine'],
3137 'z5' => ['application/x-zmachine'],
3138 'z6' => ['application/x-zmachine'],
3139 'z64' => ['application/x-n64-rom'],
3140 'z7' => ['application/x-zmachine'],
3141 'z8' => ['application/x-zmachine'],
3142 'zabw' => ['application/x-abiword'],
3143 'zaz' => ['application/vnd.zzazz.deck+xml'],
3144 'zip' => ['application/zip', 'application/x-zip', 'application/x-zip-compressed'],
3145 'zir' => ['application/vnd.zul'],
3146 'zirz' => ['application/vnd.zul'],
3147 'zmm' => ['application/vnd.handheld-entertainment+xml'],
3148 'zoo' => ['application/x-zoo'],
3149 'zsav' => ['application/x-spss-sav', 'application/x-spss-savefile'],
3150 'zz' => ['application/zlib'],
3151 '123' => ['application/lotus123', 'application/vnd.lotus-1-2-3', 'application/wk1', 'application/x-123', 'application/x-lotus123', 'zz-application/zz-winassoc-123'],
3152 '602' => ['application/x-t602'],
3153 '669' => ['audio/x-mod'],
3154 ];
3155}
3156