summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2015-11-21 10:29:52 -0500
committerAustin Ziegler <austin@zieglers.ca>2015-11-21 10:29:52 -0500
commitb6413b2c48f4ee904dce833299639f8a3c357fd8 (patch)
treeb53b2091e5152156b85f89f5ab2b335804a2c23c
parent5c7f7debb3aec404ce7c5c376b8448bb8e76a3f2 (diff)
parent026ceeaab6cf6d4ca2e6a06a15affca86023ed4d (diff)
downloadmime-types-b6413b2c48f4ee904dce833299639f8a3c357fd8.tar.gz
Merge pull request #111 from mime-types/mime-types-3v3.0
mime-types 3.0
-rw-r--r--.gitignore2
-rw-r--r--.hoerc8
-rw-r--r--.travis.yml3
-rw-r--r--Contributing.rdoc3
-rw-r--r--Gemfile2
-rw-r--r--History-Types.rdoc370
-rw-r--r--History.rdoc82
-rw-r--r--Licence.rdoc18
-rw-r--r--Manifest.txt27
-rw-r--r--README.rdoc132
-rw-r--r--Rakefile169
-rw-r--r--data/mime-types.json1
-rw-r--r--data/mime.content_type.column1924
-rw-r--r--data/mime.docs.column1924
-rw-r--r--data/mime.encoding.column1924
-rw-r--r--data/mime.friendly.column1924
-rw-r--r--data/mime.obsolete.column1924
-rw-r--r--data/mime.references.column1924
-rw-r--r--data/mime.registered.column1924
-rw-r--r--data/mime.signature.column1924
-rw-r--r--data/mime.system.column1924
-rw-r--r--data/mime.use_instead.column1924
-rw-r--r--data/mime.xrefs.column1924
-rw-r--r--docs/COPYING.txt339
-rw-r--r--docs/artistic.txt127
-rw-r--r--lib/mime-types.rb2
-rw-r--r--lib/mime/type.rb632
-rw-r--r--lib/mime/type/columnar.rb111
-rw-r--r--lib/mime/types.rb186
-rw-r--r--lib/mime/types/cache.rb122
-rw-r--r--lib/mime/types/columnar.rb102
-rw-r--r--lib/mime/types/container.rb30
-rw-r--r--lib/mime/types/deprecations.rb23
-rw-r--r--lib/mime/types/full.rb17
-rw-r--r--lib/mime/types/loader.rb152
-rw-r--r--lib/mime/types/loader_path.rb15
-rw-r--r--lib/mime/types/logger.rb2
-rw-r--r--lib/mime/types/registry.rb81
-rw-r--r--mime-types.gemspec37
-rw-r--r--support/apache_mime_types.rb108
-rw-r--r--support/benchmarks/load.rb53
-rw-r--r--support/benchmarks/load_allocations.rb21
-rw-r--r--support/benchmarks/object_counts.rb10
-rw-r--r--support/convert.rb158
-rw-r--r--support/convert/columnar.rb90
-rw-r--r--support/iana_registry.rb170
-rw-r--r--support/profile/columnar.rb5
-rw-r--r--support/profile/columnar_full.rb5
-rw-r--r--support/profile/full.rb5
-rw-r--r--test/fixture/json.json2
-rw-r--r--test/fixture/yaml.yaml17
-rw-r--r--test/minitest_helper.rb14
-rw-r--r--test/test_mime_type.rb951
-rw-r--r--test/test_mime_types.rb212
-rw-r--r--test/test_mime_types_cache.rb100
-rw-r--r--test/test_mime_types_class.rb210
-rw-r--r--test/test_mime_types_lazy.rb42
-rw-r--r--test/test_mime_types_loader.rb38
-rw-r--r--type-lists/application.yaml18925
-rw-r--r--type-lists/audio.yaml2118
-rw-r--r--type-lists/chemical.yaml71
-rw-r--r--type-lists/conference.yaml9
-rw-r--r--type-lists/drawing.yaml15
-rw-r--r--type-lists/image.yaml1026
-rw-r--r--type-lists/message.yaml285
-rw-r--r--type-lists/model.yaml322
-rw-r--r--type-lists/multipart.yaml224
-rw-r--r--type-lists/text.yaml1257
-rw-r--r--type-lists/video.yaml1310
-rw-r--r--type-lists/world.yaml8
70 files changed, 1574 insertions, 50166 deletions
diff --git a/.gitignore b/.gitignore
index 597a659..5711f9a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,5 @@ pkg
publish
test/cache.tst
tmp/
+.rubocop.yml
+.byebug_history
diff --git a/.hoerc b/.hoerc
index 75d7e96..15b72d5 100644
--- a/.hoerc
+++ b/.hoerc
@@ -2,7 +2,7 @@
exclude: !ruby/regexp '/
\.(tmp|swp)$
|
- CVS/
+ (CVS|tmp)\/
|
(?i:TAGS)
|
@@ -10,11 +10,11 @@ exclude: !ruby/regexp '/
|
Gemfile(?:\.lock)?
|
- type-lists\/
- |
- \.(coveralls|pullreview|travis).yml$
+ \.(rubocop|coveralls|pullreview|travis).yml$
|
\.gemspec
|
+ \.byebug_history
+ |
Vagrantfile
/x'
diff --git a/.travis.yml b/.travis.yml
index 3b17236..22e21ec 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,10 +4,7 @@ rvm:
- 2.2.3
- 2.1.6
- 2.0.0
- - 1.9.3
- - jruby-1.7
- jruby-9.0.0.0.pre2
- - jruby-19mode
- jruby-head
- ruby-head
- ruby-head-clang
diff --git a/Contributing.rdoc b/Contributing.rdoc
index c88632c..efcc91c 100644
--- a/Contributing.rdoc
+++ b/Contributing.rdoc
@@ -33,9 +33,6 @@ in +type-lists/application.yml+.
extensions:
- xml
- xsl
- references:
- - IANA
- - RFC3023
xrefs: !ruby/hash:MIME::Types::Container
rfc:
- rfc3023
diff --git a/Gemfile b/Gemfile
index 3659356..ac48174 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,7 +3,7 @@
# NOTE: This file is present to keep Travis CI happy. Edits to it will not
# be accepted.
-source "https://rubygems.org/"
+source 'https://rubygems.org/'
gemspec
# vim: syntax=ruby
diff --git a/History-Types.rdoc b/History-Types.rdoc
deleted file mode 100644
index 8d4a8a6..0000000
--- a/History-Types.rdoc
+++ /dev/null
@@ -1,370 +0,0 @@
-= MIME Types Changes by Version
-
-== 2.6.2 / 2015-09-13
-
-* Updated the IANA media registry entries as of release date:
- * Updated metadata for application/cals-1840, application/index.obj,
- application/ocsp-response, application/vnd.dtg.local.html,
- application/vnd.pwg-multiplexed, audio/G7221, audio/opus,
- * Added application/pkcs12, application/scim\+json, multipart/form-data.
- application/vnd.3gpp-prose\+xml, application/vnd.3gpp-prose-pc3ch\+xml,
- application/vnd.3gpp.mid-call\+xml,
- application/vnd.3gpp-state-and-event-info\+xml, application.3gpp.ussd\+xml,
- application/vnd.anki, application/vnd.biopax.rdf\+xml,
- application/vnd.drive\+json, application/vnd.firemonkeys.cloudcell,
- application/vnd.hyperdrive\+json, application/vnd.openblox.game\+xml,
- application/vnd.openblox.game-binary, application/vnd.uri-map,
- audio/G711-0, image/vnd.mozilla.apng.
-
-== 2.6 / 2015-05-25
-
-* Steven Michael Thomas (@stevenmichaelthomas) added +woff2+ as an extension to
- application/font-woff,
- {#99}[https://github.com/mime-types/ruby-mime-types/pull/99].
-* Updated the IANA media registry entries as of release date:
- * Updated metadata for application/jose, application/jose\+json,
- application/jwk\+json, application/jwk-set\+json, application/jwt to
- reflect the adoption of RFC7519.
- * Added application/vnd.balsamiq.bmpr.
-
-== 2.5 / 2015-04-25
-
-* Updated the IANA media registry entries as of release date:
- * Added MIME types: application/A2L, application/AML, application/ATFX,
- application/ATXML, application/CDFX\+XML, application/CEA, application/DII,
- application/DIT, application/jose, application/jose\+json,
- application/json-seq, application/jwk\+json, application/jwk-set\+json,
- application/jwt, application/LXF, application/MF4, application/rdap\+json,
- application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
- application/vnd.citationstyles.style\+xml, application/vnd.coffeescript,
- application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
- application/vnd.gerber, application/vnd.gov.sk.e-form\+xml,
- application/vnd.gov.sk.e-form\+zip,
- application/vnd.gov.sk.xmldatacontainer\+xml,
- application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
- application/vnd.ims.imsccv1p3, application/vnd.micro\+json,
- application/vnd.microsoft.portable-executable,
- application/vnd.msa-disk-image, application/vnd.oracle.resource\+json,
- application/vnd.tmd.mediaflex.api\+xml, audio/opus, image/vnd.zbrush.pcx,
- text/csv-schema, text/markdown (marked as TEMPORARY).
- * Updated metadata for application/coap-group\+json (RFC7390),
- application/epub\+zip (now registered), application/merge-patch\+json
- (RFC7396), application/smil, application/vnd.arastra.swi,
- application/vnd.geocube\+xml, application/vnd.gmx, application/xhtml\+xml,
- text/directory.
-* Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
- text/tab-separated-values,
- {#89}[https://github.com/mime-types/ruby-mime-types/pull/89].
-* Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
- image/x-ms-bmp with the extension +bmp+,
- {#90}[https://github.com/mime-types/ruby-mime-types/pull/90].
-
-== 2.4.2 / 2014-10-15
-
-* Added application/vnd.ms-outlook as an unregistered MIME type with the
- extension +msg+. Provided by @keerthisiv in
- {#72}[https://github.com/mime-types/ruby-mime-types/pull/72].
-
-== 2.4.1 / 2014-10-07
-
-* Changed the sort order of many of the extensions to restore behaviour
- from mime-types 1.25.1.
-* Added +friendly+ MIME::Type descriptions where known.
-* Added +reg+, +ps1+, and +vbs+ extensions to application/x-msdos-program and
- application/x-msdownload.
-* Updated the IANA media registry entries as of release date.
- * Several MIME types had updated metadata (application/alto-*, RFC7285;
- application/calendar\+json, RFC7265; application/http, RFC7230;
- application/xml, RFC7303; application/xml-dtd, RFC7303;
- application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
- audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges, RFC7233;
- text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
- * MIME::Type application/EDI-Consent was renamed to application/EDI-consent.
- * Obsoleted application/vnd.informix-visionary in favour of
- application/vnd.visionary. Obsoleted
- application/vnd.nokia.n-gage.symbian.install with no replacement.
- * Added MIME types: application/ATF, application/coap-group\+json,
- application/DCD, application/merge-patch\+json, application/scaip\+xml,
- application/vnd.apache.thrift.binary, application/vnd.artsquare,
- application/vnd.doremir.scorecloud-binary-document, application/vnd.dzr,
- application/vnd.maxmind.maxmind-db,
- application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
- image/vnd.tencent.tap.
-
-== 2.3 / 2014-05-23
-
-* Updated the IANA media registry entries as of release date.
- * Several MIME types had additional metadata added on the most recent import.
- * MIME::Type application/pidfxml was renamed to application/pidf\+xml.
- * Added MIME types: application/3gpdash-qoe-report\+xml,
- application/alto-costmap\+json, application/alto-costmapfilter\+json,
- application/alto-directory\+json, application/alto-endpointcost\+json,
- application/alto-endpointcostparams\+json,
- application/alto-endpointprop\+json,
- application/alto-endpointpropparams\+json, application/alto-error\+json,
- application/alto-networkmap\+json, application/alto-networkmapfilter\+json,
- application/calendar\+json, application/vnd.debian.binary-package,
- application/vnd.geo\+json,
- application/vnd.ims.lis.v2.result\+json,
- application/vnd.ims.lti.v2.toolconsumerprofile\+json,
- application/vnd.ims.lti.v2.toolproxy\+json,
- application/vnd.ims.lti.v2.toolproxy.id\+json,
- application/vnd.ims.lti.v2.toolsettings\+json,
- application/vnd.ims.lti.v2.toolsettings.simple\+json,
- application/vnd.mason\+json, application/vnd.miele\+json,
- application/vnd.ms-3mfdocument, application/vnd.panoply,
- application/vnd.valve.source.material, application/vnd.yaoweme, audio/aptx,
- image/vnd.valve.source.texture, model/vnd.opengex,
- model/vnd.valve.source.compiled-map, model/x3d\+fastinfoset,
- text/cache-manifest
-
-== 2.2 / 2014-03-14
-* Added <tt>.sj</tt> to +application/javascript+ as provided by Brandon
- Galbraith (@brandongalbraith) in
- {#58}[https://github.com/mime-types/ruby-mime-types/pull/58].
-* Marked application/excel and application/x-excel as obsolete in favour of
- application/vnd.ms-excel per
- {#60}[https://github.com/mime-types/ruby-mime-types/pull/60].
-* Merged duplicate MIME types into the registered MIME type. The only
- difference between the MIME types was capitalization; the MIME type registry
- is case-preserving.
- * Affected MIME types: application/vnd.3M.Post-it-Notes,
- application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment\+xml,
- application/vnd.hp-HPGL, application/vnd.hp-PCL, application/vnd.hp-PCLXL,
- application/vnd.ibm.MiniPay, application/vnd.Kinar, application/vnd.MFER,
- application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
- application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
- application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
- application/vnd.Mobius.TXF, application/vnd.ms-excel.addin.macroEnabled.12,
- application/vnd.ms-excel.sheet.binary.macroEnabled.12,
- application/vnd.ms-excel.sheet.macroEnabled.12,
- application/vnd.ms-excel.template.macroEnabled.12,
- application/vnd.ms-powerpoint.addin.macroEnabled.12,
- application/vnd.ms-powerpoint.presentation.macroEnabled.12,
- application/vnd.ms-powerpoint.slide.macroEnabled.12,
- application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
- application/vnd.ms-powerpoint.template.macroEnabled.12,
- application/vnd.ms-word.document.macroEnabled.12,
- application/vnd.ms-word.template.macroEnabled.12,
- application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
- application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
- application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261, video/H263,
- video/H264, video/JPEG, video/MJ2.
-
-* Updated the IANA media registry entries as of release date.
- * Registered type person names have been updated from surname only to full
- name.
- * Several types had updated RFC or draft RFC references.
- * Added application/bacnet-xdd\+zip, application/cms,
- application/load-control\+xml, application/PDX, application/ttml\+xml,
- application/vnd.collection.doc\+json,
- application/vnd.iptc.g2.catalogitem\+xml, application/vnd.pcos,
- text/parameters, text/vnd.a, video/iso.segment
-
-== 2.1 / 2014-01-25
-
-* The IANA media type registry format changed, resulting in updates to most of
- the 1,427 registered MIME types.
- * Many registered MIME types have had some metadata updates due to the change
- in the IANA registry format.
- * MIME types having a publicly available registry application now include a
- link to that file in references.
- * Added +xrefs+ data as discovered (see the API changes noted above).
-* The Apache mime types configuration has been added to track additional common
- but unregistered MIME types and known extensions for those MIME types. This
- has affected many of the available MIME types.
-* Added newly registered MIME types:
- * application/emotionml\+xml
- * application/ODX
- * application/prs.hpub\+zip
- * application/vcard\+json
- * application/vnd.bekitzur-stech\+json
- * application/vnd.etsi.timestamp-token
- * application/vnd.oma.cab-feature-handler\+xml
- * application/vnd.openeye.oeb
- * application/vnd.tcpdump.pcap
- * audio/amr-wb
- * model/x3d\+xml
- * model/x3d-vrml
-* Added 180 unregistered MIME types from the Apache list:
- * application/applixware
- * application/cu-seeme
- * application/docbook\+xml
- * application/gml\+xml
- * application/gpx\+xml
- * application/gxf
- * application/java-archive
- * application/java-serialized-object
- * application/java-vm
- * application/jsonml\+json
- * application/metalink\+xml
- * application/omdoc\+xml
- * application/onenote
- * application/pics-rules
- * application/rsd\+xml
- * application/ssdl\+xml
- * application/vnd.3m.post-it-notes
- * application/vnd.amazon.ebook
- * application/vnd.anser-web-funds-transfer-initiation
- * application/vnd.curl.car
- * application/vnd.curl.pcurl
- * application/vnd.dolby.mlp
- * application/vnd.ds-keypoint
- * application/vnd.flographit
- * application/vnd.handheld-entertainment\+xml
- * application/vnd.hp-hpgl
- * application/vnd.hp-pcl
- * application/vnd.hp-pclxl
- * application/vnd.ibm.minipay
- * application/vnd.kinar
- * application/vnd.mfer
- * application/vnd.mobius.daf
- * application/vnd.mobius.dis
- * application/vnd.mobius.mbk
- * application/vnd.mobius.mqy
- * application/vnd.mobius.msl
- * application/vnd.mobius.plc
- * application/vnd.mobius.txf
- * application/vnd.ms-excel.addin.macroenabled.12
- * application/vnd.ms-excel.sheet.binary.macroenabled.12
- * application/vnd.ms-excel.sheet.macroenabled.12
- * application/vnd.ms-excel.template.macroenabled.12
- * application/vnd.ms-pki.seccat
- * application/vnd.ms-pki.stl
- * application/vnd.ms-powerpoint.addin.macroenabled.12
- * application/vnd.ms-powerpoint.presentation.macroenabled.12
- * application/vnd.ms-powerpoint.slide.macroenabled.12
- * application/vnd.ms-powerpoint.slideshow.macroenabled.12
- * application/vnd.ms-powerpoint.template.macroenabled.12
- * application/vnd.ms-word.document.macroenabled.12
- * application/vnd.ms-word.template.macroenabled.12
- * application/vnd.novadigm.edm
- * application/vnd.novadigm.edx
- * application/vnd.novadigm.ext
- * application/vnd.quark.quarkxpress
- * application/vnd.rim.cod
- * application/vnd.rn-realmedia-vbr
- * application/vnd.simtech-mindmapper
- * application/vnd.symbian.install
- * application/winhlp
- * application/x-abiword
- * application/x-ace-compressed
- * application/x-authorware-bin
- * application/x-authorware-map
- * application/x-authorware-seg
- * application/x-bittorrent
- * application/x-blorb
- * application/x-bzip
- * application/x-cbr
- * application/x-cfs-compressed
- * application/x-chat
- * application/x-conference
- * application/x-dgc-compressed
- * application/x-doom
- * application/x-dtbncx\+xml
- * application/x-dtbook\+xml
- * application/x-dtbresource\+xml
- * application/x-envoy
- * application/x-eva
- * application/x-font-bdf
- * application/x-font-ghostscript
- * application/x-font-linux-psf
- * application/x-font-otf
- * application/x-font-pcf
- * application/x-font-snf
- * application/x-font-ttf
- * application/x-font-type1
- * application/x-freearc
- * application/x-gca-compressed
- * application/x-glulx
- * application/x-gnumeric
- * application/x-gramps-xml
- * application/x-install-instructions
- * application/x-iso9660-image
- * application/x-lzh-compressed
- * application/x-mie
- * application/x-ms-application
- * application/x-ms-shortcut
- * application/x-ms-xbap
- * application/x-msbinder
- * application/x-mscardfile
- * application/x-msclip
- * application/x-msmediaview
- * application/x-msmetafile
- * application/x-msmoney
- * application/x-mspublisher
- * application/x-msschedule
- * application/x-msterminal
- * application/x-mswrite
- * application/x-nzb
- * application/x-pkcs12
- * application/x-pkcs7-certificates
- * application/x-pkcs7-certreqresp
- * application/x-research-info-systems
- * application/x-silverlight-app
- * application/x-sql
- * application/x-stuffitx
- * application/x-subrip
- * application/x-t3vm-image
- * application/x-tads
- * application/x-tex-tfm
- * application/x-tgif
- * application/x-xfig
- * application/x-xliff\+xml
- * application/x-xz
- * application/x-zmachine
- * application/xaml\+xml
- * application/xproc\+xml
- * application/xspf\+xml
- * audio/adpcm
- * audio/amr-wb
- * audio/AMR-WB
- * audio/midi
- * audio/s3m
- * audio/silk
- * audio/x-caf
- * audio/x-flac
- * audio/x-matroska
- * audio/x-mpegurl
- * audio/xm
- * chemical/x-cdx
- * chemical/x-cif
- * chemical/x-cmdf
- * chemical/x-cml
- * chemical/x-csml
- * image/sgi
- * image/vnd.ms-photo
- * image/x-3ds
- * image/x-cmx
- * image/x-freehand
- * image/x-icon
- * image/x-mrsid-image
- * image/x-pcx
- * image/x-tga
- * model/x3d\+binary
- * model/x3d\+vrml
- * text/plain
- * text/vnd.curl.dcurl
- * text/vnd.curl.mcurl
- * text/vnd.curl.scurl
- * text/x-asm
- * text/x-c
- * text/x-fortran
- * text/x-java-source
- * text/x-nfo
- * text/x-opml
- * text/x-pascal
- * text/x-sfv
- * text/x-uuencode
- * video/h261
- * video/h263
- * video/h264
- * video/jpeg
- * video/jpm
- * video/mj2
- * video/x-f4v
- * video/x-m4v
- * video/x-mng
- * video/x-ms-vob
- * video/x-smv
-* Merged the non-standard VMS platform text/plain with the standard text/plain.
diff --git a/History.rdoc b/History.rdoc
index 8c152ec..376705f 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,10 +1,78 @@
-== NEXT / YYYY-MM-DD
-
-* 1 governance change
-
- * This project now has a {Code of Conduct}[Code-of-Conduct_rdoc.html]
-
-
+== 3.0 / 2015-11-21
+
+* 2 governance changes
+
+ * This project and the related mime-types-data project are now exclusively
+ MIT licensed. Resolves
+ {#95}[https://github.com/mime-types/ruby-mime-types/issues/95].
+
+ * All projects under the mime-types organization now have a standard code of
+ conduct adapted from the {Contributor
+ Covenant}[http://contributor-covenant.org]. This text can be found in the
+ {Code-of-Conduct.rdoc}[Code-of-Conduct_rdoc.html] file.
+
+* 3 major changes
+
+ * All methods deprecated in mime-types 2.x have been removed.
+ * mime-types now requires Ruby 2.0 compatibility or later. Resolves
+ {#97}[https://github.com/mime-types/ruby-mime-types/issues/97].
+ * The registry data has been removed from mime-types and put into
+ mime-types-data, maintained and released separately. It can be found at
+ {mime-types-data}[https://github.com/mime-types/mime-types-data].
+
+* 17 minor changes:
+
+ * MIME::Type changes:
+
+ * Changed the way that simplified types representations are creatd to
+ reflect the fact that +x-+ prefixes are no longer considered special
+ according to IANA. A simplified MIME type is case-folded to lowercase. A
+ new keyword parameter, +remove_x_prefix+, can be provided to remove +x-+
+ prefixes.
+ * Improved initialization with an Array works so that extensions do not
+ need to be wrapped in another array. This means that <tt>%w(text/yaml
+ yaml yml)</tt> works in the same way that <tt>['text/yaml', %w(yaml
+ yml)]</tt> did (and still does).
+ * Changed +priority_compare+ to conform with attributes that no longer
+ exist.
+ * Changed the internal implementation of extensions to use a frozen Set.
+ * When extensions are set or modified with +add_extensions+, the primary
+ registry will be informed of a need to reindex extensions. Resolves
+ {#84}[https://github.com/mime-types/ruby-mime-types/issues/84].
+ * The preferred extension can be set explicitly. If not set, it will be the
+ first extension. If the preferred extension is not in the extension list,
+ it will be added.
+ * Improved how xref URLs are generated.
+ * Converted +obsolete+, +registered+ and +signature+ to attr_accessors.
+
+ * MIME::Types changes:
+
+ * Modified MIME::Types.new to track instances of MIME::Types so that they
+ can be told to reindex the extensions as necessary.
+ * Removed +data_version+ attribute.
+ * Changed #[] so that the +complete+ and +registered+ flags are keywords
+ instead of a generic options parameter.
+ * Extracted the class methods to a separate file.
+ * Changed the container implementation to use a Set instead of an Array to
+ prevent data duplication. Resolves
+ {#79}[https://github.com/mime-types/ruby-mime-types/issues/79].
+
+ * MIME::Types::Cache changes:
+
+ * Caching is now based on the data gem version instead of the mime-types
+ version.
+ * Caching is compatible with columnar registry stores.
+
+ * MIME::Types::Loader changes:
+
+ * MIME::Types::Loader::PATH has been removed and replaced with
+ MIME::Types::Data::PATH from the mime-types-data gem. The environment
+ variable RUBY_MIME_TYPES_DATA is still used.
+ * Support for the long-deprecated mime-types v1 format has been removed.
+ * The registry is default loaded from the columnar store by default. The
+ internal format of the columnar store has changed; many of the boolean
+ flags are now loaded from a single file. Resolves
+ {#85}[https://github.com/mime-types/ruby-mime-types/85].
== 2.6.2 / 2015-09-13
diff --git a/Licence.rdoc b/Licence.rdoc
index 10a7327..df6d2e2 100644
--- a/Licence.rdoc
+++ b/Licence.rdoc
@@ -1,16 +1,8 @@
== Licence
-This software is available under three licences: the GNU GPL version 2 (or at
-your option, a later version), the Perl Artistic License, or the MIT License.
-The licence preferred by me is the MIT licence.
+* Copyright 2003–2015 Austin Ziegler.
-The original Perl MIME::Types was dually originally licensed with the Perl
-Artistic Licence and the GNU GPL ("the same terms as Perl itself") and given
-that the Ruby implementation originally hewed pretty closely to the Perl
-version, I chose to maintain the additional licensing terms.
-
-* Copyright 2003–2015 Austin Ziegler.
-* Adapted from MIME::Types (Perl) by Mark Overmeer.
+The software in this repository is made available under the MIT license.
=== MIT License
@@ -31,9 +23,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-
-=== Perl Artistic License (version 2)
-See the file docs/artistic.txt in the main distribution.
-
-=== GNU GPL version 2
-See the file docs/COPYING.txt in the main distribution.
diff --git a/Manifest.txt b/Manifest.txt
index d9a0ab8..3ac143e 100644
--- a/Manifest.txt
+++ b/Manifest.txt
@@ -2,44 +2,31 @@
.gemtest
.gitignore
.hoerc
+Code-of-Conduct.rdoc
Contributing.rdoc
-History-Types.rdoc
History.rdoc
Licence.rdoc
Manifest.txt
README.rdoc
Rakefile
-data/mime-types.json
-data/mime.content_type.column
-data/mime.docs.column
-data/mime.encoding.column
-data/mime.friendly.column
-data/mime.obsolete.column
-data/mime.references.column
-data/mime.registered.column
-data/mime.signature.column
-data/mime.system.column
-data/mime.use_instead.column
-data/mime.xrefs.column
-docs/COPYING.txt
-docs/artistic.txt
lib/mime-types.rb
lib/mime/type.rb
lib/mime/type/columnar.rb
lib/mime/types.rb
lib/mime/types/cache.rb
lib/mime/types/columnar.rb
+lib/mime/types/container.rb
lib/mime/types/deprecations.rb
+lib/mime/types/full.rb
lib/mime/types/loader.rb
-lib/mime/types/loader_path.rb
lib/mime/types/logger.rb
-support/apache_mime_types.rb
+lib/mime/types/registry.rb
support/benchmarks/load.rb
support/benchmarks/load_allocations.rb
support/benchmarks/object_counts.rb
-support/convert.rb
-support/convert/columnar.rb
-support/iana_registry.rb
+support/profile/columnar.rb
+support/profile/columnar_full.rb
+support/profile/full.rb
test/bad-fixtures/malformed
test/fixture/json.json
test/fixture/old-data
diff --git a/README.rdoc b/README.rdoc
index 7d0d431..abf2514 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,4 +1,4 @@
-= mime-types
+= mime-types for Ruby
home :: https://github.com/mime-types/ruby-mime-types/
code :: https://github.com/mime-types/ruby-mime-types/
@@ -14,6 +14,16 @@ MIME content type definitions. It can be used to determine defined filename
extensions for MIME types, or to use filename extensions to look up the likely
MIME type definitions.
+Version 3.0 is a major release that requires Ruby 2.0 compatibility and removes
+deprecated functions. The columnar registry format introduced in 2.6 has been
+made the primary format; the registry data has been extracted from this library
+and put into {mime-types-data}[https://github.com/mime-types/mime-types-data].
+Additionally, mime-types is now licensed exclusively under the MIT licence and
+there is a code of conduct in effect. There are a number of other smaller
+changes described in the History file.
+
+=== About MIME Media Types
+
MIME content types are used in MIME-compliant communications, as in e-mail or
HTTP traffic, to indicate the type of content which is transmitted. The
mime-types library provides the ability for detailed information about MIME
@@ -25,51 +35,20 @@ recommendations, the {IANA Media Types
registry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and
user contributions. It conforms to RFCs 2045 and 2231.
-This is release 2.6 with two new experimental features. The first new feature
-is a new default registry storage format that greatly reduces the initial
-memory use of the mime-types library. This feature is enabled by requiring
-+mime/types/columnar+ instead of +mime/types+ with a small performance cost and
-no change in *total* memory use if certain methods are called (see {Columnar
-Store}[#label-Columnar+Store]). The second new feature is a logger interface
-that conforms to the expectations of an ActiveSupport::Logger so that warnings
-can be written to an application's log rather than the default location for
-+warn+. This interface may be used for other logging purposes in the future.
-
-mime-types 2.6 is the last planned version of mime-types 2.x, so deprecation
-warnings are no longer cached but provided every time the method is called.
-mime-types 2.6 supports Ruby 1.9.2 or later.
-
=== mime-types 1.x End of Life
-mime-types 2.0 was released in late 2013, and as of early 2015 there have been
-no reported security issues for mime-types 1.x. With the release of mime-types
-2.5, I set the formal End of Life for mime-types 1.x for 2015-10-27 (the second
-anniversary of the release of mime-types 2.0). After this date, absolutely no
-pull requests for mime-types 1.x will be accepted.
-
-=== mime-types Future
-
-There are a number of issues open that make clear to me that there are some
-fundamental changes that need to happen to both the data representation and the
-API provided by mime-types. This cannot happen under the current release, so
-all new development is focussing on an upcoming 3.0 release. The target for the
-release is on or before the beginning of RubyConf 2015 (2015-11-15).
+mime-types 1.x is no longer supported as of 2015-10-27.
-When 3.0 is released, mime-types 2.x will receive regular updates of the IANA
-registry for two years following the release. It will also receive security
-updates, if needed, for the same period. There will be no further feature
-development on mime-types 2.x following the 3.0 release.
+=== mime-types 2.x End of Life
-Coincident with the 3.0 release, I will release mime-types 2.99.0 that no
-longer imports the data to fields that have been deprecated, or exports it if
-it is present. If they work because they derive data from the data that is
-still present, the will continue to work. The quarterly updates will be against
-2.99.x.
+mime-types 2.x is supported as 2.99.x receiving quarterly updates of the IANA
+registry and security updates for two years. It will reach full end of life on
+2017-11-21.
-If the possible loss of this deprecated data matters, be sure to set your
-dependency appropriately:
+=== mime-types 3.x
- gem 'mime-types', '~> 2.6, < 2.99'
+Users are encouraged to upgrade to mime-types 3.x as soon as is practical.
+mime-types 3.x requires Ruby 2.0 compatibility and a simpler licensing scheme.
== Synopsis
@@ -111,9 +90,9 @@ files). A MIME::Type stores the known information about one MIME type.
puts text.like?(MIME::Type.new('x-text/x-plain')) # => true
puts text.xrefs.inspect # => { "rfc" => [ "rfc2046", "rfc3676", "rfc5147" ] }
- puts text.urls # => [ "http://www.iana.org/go/rfc2046",
- # "http://www.iana.org/go/rfc3676",
- # "http://www.iana.org/go/rfc5147" ]
+ puts text.xref_urls # => [ "http://www.iana.org/go/rfc2046",
+ # "http://www.iana.org/go/rfc3676",
+ # "http://www.iana.org/go/rfc5147" ]
xtext = MIME::Type.new('x-text/x-plain')
puts xtext.media_type # => 'text'
@@ -136,50 +115,57 @@ files). A MIME::Type stores the known information about one MIME type.
=== Columnar Store
-mime-types 2.6 has an experimental columnar storage format that reduces the
-default memory footprint. It does this by selectively loading data. When a
-registry is first loaded from a columnar store, only the canonical MIME type
-and registered extensions will be loaded and the MIME type will be connected to
-its registry. When extended data is required (including #registered, #obsolete,
-#use_instead), that data is loaded from its own column file for all types in
-the registry. This load is done with a Mutex to ensure that the types are
-updated safely in a multithreaded environment.
+mime-types uses as its primary registry storage format a columnar storage
+format reducing the default memory footprint. This is done by selectively
+loading the data on a per-attribute basis. When the registry is first loaded
+from the columnar store, only the canonical MIME content type and known
+extensions and the MIME type will be connected to its loading registry. When
+other data about the type is required (including +preferred_extension+,
+<tt>obsolete?</tt>, and <tt>registered?</tt>) that data is loaded from its own
+column file for all types in the registry.
-Columnar storage is slated to become the default storage format for mime-types
-3.0, but until that is released, the default is still to use the JSON storage
-format. As such, columnar storage can only currently be loaded at an
-application level with the following specification in the application Gemfile:
+The load of any column data is performed with a Mutex to ensure that types are
+updated safely in a multithreaded environment. Benchmarks show that while
+columnar data loading is slower than the JSON store, it cuts the memory use by
+a third over the JSON store.
- gem 'mime-types', require: 'mime/types/columnar'
+If you prefer to load all the data at once, this can be specified in your
+application Gemfile as:
-Projects that do not use Bundler, and libraries that wish to suggest this
-behaviour to applications are encouraged to require this directly, but only if
-you specify a dependency on mime-types 2.6.
+ gem 'mime-types', require: 'mime/types/full'
- require 'mime/types/columnar'
+Projects that do not use Bundler should +require+ the same:
+
+ require 'mime/types/full'
+
+Libraries that use mime-types are discouraged from choosing the JSON store.
-Although this require will not be necessary after mime-types 3, it will work
-through at least {version
+For applications and clients that used mime-types 2.6 when the columnar store
+was introduced, the require used previously will still work through at least
+{version
4}[https://github.com/mime-types/ruby-mime-types/pull/96#issuecomment-100725400]
-and possibly beyond.
+and possibly beyond; it is effectively an empty operation. You are recommended
+to change your Gemfile as soon as is practical.
+
+ require 'mime/types/columnar'
-Note that the new Columnar class (MIME::Type::Columnar) and module
-(MIME::Types::Columnar) are considered private variant implementations of
-MIME::Type and MIME::Types and the specific implementation should not be relied
-upon by consumers of the mime-types library. Instead, depend on the public
-implementations only.
+Note that MIME::Type::Columnar and MIME::Types::Columnar are considered private
+variant implementations of MIME::Type and MIME::Types and the specific
+implementation should not be relied upon by consumers of the mime-types
+library. Instead, depend on the public implementations (MIME::Type and
+MIME::Types) only.
=== Cached Storage
-Since version 2.0, mime-types has supported a cache of MIME types based on
-<tt>Marshal.dump</tt>. The cache is invalidated for each released version of
-mime-types so that version 2.5 is not reused for version 2.6. If the
+mime-types supports a cache of MIME types using <tt>Marshal.dump</tt>. The
+cache is invalidated for each version of the mime-types-data gem so that data
+version 3.2015.1201 will not be reused with data version 3.2016.0101. If the
environment variable +RUBY_MIME_TYPES_CACHE+ is set to a cache file, mime-types
will attempt to load the MIME type registry from the cache file. If it cannot,
it will load the types normally and then saves the registry to the cache file.
-The current mime-types cache is not compatible with the columnar storage
-format. This will be resolved for mime-types 3.
+The caching works with both full stores and columnar stores. Only the data that
+has been loaded prior to saving the cache will be stored.
== mime-types Modified Semantic Versioning
diff --git a/Rakefile b/Rakefile
index 01d7e71..e3d27bc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,13 +15,14 @@ spec = Hoe.spec 'mime-types' do
developer('Austin Ziegler', 'halostatue@gmail.com')
self.need_tar = true
- require_ruby_version '>= 1.9.2'
+ require_ruby_version '>= 2.0'
self.history_file = 'History.rdoc'
self.readme_file = 'README.rdoc'
- self.extra_rdoc_files = FileList['*.rdoc'].to_a
- self.licenses = ['MIT', 'Artistic 2.0', 'GPL-2']
+ license 'MIT'
+
+ extra_deps << ['mime-types-data', '~> 3.2015']
extra_dev_deps << ['hoe-doofus', '~> 1.0']
extra_dev_deps << ['hoe-gemspec2', '~> 1.1']
@@ -31,33 +32,28 @@ spec = Hoe.spec 'mime-types' do
extra_dev_deps << ['minitest', '~> 5.4']
extra_dev_deps << ['minitest-autotest', '~> 1.0']
extra_dev_deps << ['minitest-focus', '~> 1.0']
+ extra_dev_deps << ['minitest-bonus-assertions', '~> 2.0']
extra_dev_deps << ['rake', '~> 10.0']
extra_dev_deps << ['fivemat', '~> 1.3' ]
extra_dev_deps << ['minitest-rg', '~> 5.2']
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
extra_dev_deps << ['simplecov', '~> 0.7']
- extra_dev_deps << ['coveralls', '~> 0.8']
+ # if ENV['CI'] or ENV['TRAVIS']
+ # extra_dev_deps << ['coveralls', '~> 0.8']
+ # end
end
end
-task :support do
- %w(lib support).each { |path|
- $LOAD_PATH.unshift(File.join(Rake.application.original_dir, path))
- }
-end
-
-task 'support:nokogiri' => :support do
- begin
- gem 'nokogiri'
- rescue Gem::LoadError
- raise 'Nokogiri is not installed. Please install it.'
+namespace :benchmark do
+ task :support do
+ %w(lib support).each { |path|
+ $LOAD_PATH.unshift(File.join(Rake.application.original_dir, path))
+ }
end
-end
-namespace :benchmark do
desc 'Benchmark Load Times'
- task :load, [ :repeats ] => :support do |_, args|
+ task :load, [ :repeats ] => 'benchmark:support' do |_, args|
require 'benchmarks/load'
Benchmarks::Load.report(
File.join(Rake.application.original_dir, 'lib'),
@@ -66,7 +62,7 @@ namespace :benchmark do
end
desc 'Allocation counts'
- task :allocations, [ :top_x, :mime_types_only ] => :support do |_, args|
+ task :allocations, [ :top_x, :mime_types_only ] => 'benchmark:support' do |_, args|
require 'benchmarks/load_allocations'
Benchmarks::LoadAllocations.report(
top_x: args.top_x,
@@ -75,7 +71,7 @@ namespace :benchmark do
end
desc 'Columnar allocation counts'
- task 'allocations:columnar', [ :top_x, :mime_types_only ] => :support do |_, args|
+ task 'allocations:columnar', [ :top_x, :mime_types_only ] => 'benchmark:support' do |_, args|
require 'benchmarks/load_allocations'
Benchmarks::LoadAllocations.report(
columnar: true,
@@ -84,32 +80,92 @@ namespace :benchmark do
)
end
+ desc 'Columnar allocation counts (full load)'
+ task 'allocations:columnar:full', [ :top_x, :mime_types_only ] => 'benchmark:support' do |_, args|
+ require 'benchmarks/load_allocations'
+ Benchmarks::LoadAllocations.report(
+ columnar: true,
+ top_x: args.top_x,
+ mime_types_only: args.mime_types_only,
+ full: true
+ )
+ end
+
desc 'Object counts'
- task objects: :support do
+ task objects: 'benchmark:support' do
require 'benchmarks/object_counts'
Benchmarks::ObjectCounts.report
end
desc 'Columnar object counts'
- task 'objects:columnar' => :support do
+ task 'objects:columnar' => 'benchmark:support' do
require 'benchmarks/object_counts'
Benchmarks::ObjectCounts.report(columnar: true)
end
+
+ desc 'Columnar object counts (full load)'
+ task 'objects:columnar:full' => 'benchmark:support' do
+ require 'benchmarks/object_counts'
+ Benchmarks::ObjectCounts.report(columnar: true, full: true)
+ end
+end
+
+namespace :profile do
+ directory 'tmp/profile'
+
+ CLEAN.add 'tmp'
+
+ def ruby_prof(script)
+ require 'pathname'
+ output = Pathname('tmp/profile').join(script)
+ output.mkpath
+ script = Pathname('support/profile').join("#{script}.rb")
+
+ args = [
+ '-W0',
+ '-Ilib',
+ '-S', 'ruby-prof',
+ '-R', 'mime/types',
+ '-s', 'self',
+ '-p', 'multi',
+ '-f', "#{output}",
+ script.to_s
+ ]
+ ruby args.join(' ')
+ end
+
+ task full: 'tmp/profile' do
+ ruby_prof 'full'
+ end
+
+ task columnar: :support do
+ ruby_prof 'columnar'
+ end
+
+ task 'columnar:full' => :support do
+ ruby_prof 'columnar_full'
+ end
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
namespace :test do
- task :coveralls do
- spec.test_prelude = [
- 'require "psych"',
- 'require "simplecov"',
- 'require "coveralls"',
- 'SimpleCov.formatter = Coveralls::SimpleCov::Formatter',
- 'SimpleCov.start("test_frameworks") { command_name "Minitest" }',
- 'gem "minitest"'
- ].join('; ')
- Rake::Task['test'].execute
- end
+ # Coveralls needs to be disabled for now because it transitively depends on
+ # an earlier version of mime-types.
+ # if ENV['CI'] or ENV['TRAVIS']
+ # task :coveralls do
+ # spec.test_prelude = [
+ # 'require "psych"',
+ # 'require "simplecov"',
+ # 'require "coveralls"',
+ # 'SimpleCov.formatter = Coveralls::SimpleCov::Formatter',
+ # 'SimpleCov.start("test_frameworks") { command_name "Minitest" }',
+ # 'gem "minitest"'
+ # ].join('; ')
+ # Rake::Task['test'].execute
+ # end
+
+ # Rake::Task['travis'].prerequisites.replace(%w(test:coveralls))
+ # end
desc 'Run test coverage'
task :coverage do
@@ -123,20 +179,6 @@ if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
end
end
-namespace :mime do
- desc 'Download the current MIME type registrations from IANA.'
- task :iana, [ :destination ] => 'support:nokogiri' do |_, args|
- require 'iana_registry'
- IANARegistry.download(to: args.destination)
- end
-
- desc 'Download the current MIME type configuration from Apache.'
- task :apache, [ :destination ] => 'support:nokogiri' do |_, args|
- require 'apache_mime_types'
- ApacheMIMETypes.download(to: args.destination)
- end
-end
-
namespace :convert do
namespace :docs do
task :setup do
@@ -145,7 +187,7 @@ namespace :convert do
@doc_converter ||= RDoc::Markup::ToMarkdown.new
end
- %w(README History History-Types).each do |name|
+ FileList['*.rdoc'].each do |name|
rdoc = "#{name}.rdoc"
mark = "#{name}.md"
@@ -164,31 +206,16 @@ namespace :convert do
desc 'Convert documentation from RDoc to Markdown'
task docs: 'convert:docs:run'
+end
- namespace :yaml do
- desc 'Convert from YAML to JSON'
- task :json, [ :source, :destination, :multiple_files ] => :support do |_, args|
- require 'convert'
- Convert.from_yaml_to_json(args)
- end
-
- desc 'Convert from YAML to Columnar'
- task :columnar, [ :source, :destination ] => :support do |_, args|
- require 'convert/columnar'
- Convert::Columnar.from_yaml_to_columnar(args)
- end
- end
-
- namespace :json do
- desc 'Convert from JSON to YAML'
- task :yaml, [ :source, :destination, :multiple_files ] => :support do |_, args|
- require 'convert'
- Convert.from_json_to_yaml(args)
- end
+task :console do
+ arguments = %w(pry)
+ arguments.push(*spec.spec.require_paths.map { |dir| "-I#{dir}" })
+ arguments.push("-r#{spec.spec.name.gsub('-', File::SEPARATOR)}")
+ unless system(*arguments)
+ error "Command failed: #{show_command}"
+ abort
end
end
-Rake::Task['travis'].prerequisites.replace(%w(test:coveralls))
-Rake::Task['gem'].prerequisites.unshift('convert:yaml:json')
-
# vim: syntax=ruby
diff --git a/data/mime-types.json b/data/mime-types.json
deleted file mode 100644
index d7bf136..0000000
--- a/data/mime-types.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{application/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/application/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["application/1d-interleaved-parityfec"]},"registered":true},{"content-type":"application/3gpdash-qoe-report+xml","encoding":"base64","references":["IANA","[Ozgur_Oyman]","[ThreeGPP]","{application/3gpdash-qoe-report+xml=http://www.iana.org/assignments/media-types/application/3gpdash-qoe-report+xml}"],"xrefs":{"person":["Ozgur_Oyman","ThreeGPP"],"template":["application/3gpdash-qoe-report+xml"]},"registered":true},{"content-type":"application/3gpp-ims+xml","encoding":"base64","references":["IANA","[John_M_Meredith]","{application/3gpp-ims+xml=http://www.iana.org/assignments/media-types/application/3gpp-ims+xml}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/3gpp-ims+xml"]},"registered":true},{"content-type":"application/A2L","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/A2L=http://www.iana.org/assignments/media-types/application/A2L}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/A2L"]},"registered":true},{"content-type":"application/acad","encoding":"base64","registered":false},{"content-type":"application/access","encoding":"base64","extensions":["mdf","mda","mdb","mde"],"obsolete":true,"use-instead":"application/x-msaccess","registered":false},{"content-type":"application/activemessage","encoding":"base64","references":["IANA","[Ehud_Shapiro]","{application/activemessage=http://www.iana.org/assignments/media-types/application/activemessage}"],"xrefs":{"person":["Ehud_Shapiro"],"template":["application/activemessage"]},"registered":true},{"content-type":"application/alto-costmap+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-costmap+json=http://www.iana.org/assignments/media-types/application/alto-costmap+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-costmap+json"]},"registered":true},{"content-type":"application/alto-costmapfilter+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-costmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-costmapfilter+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-costmapfilter+json"]},"registered":true},{"content-type":"application/alto-directory+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-directory+json=http://www.iana.org/assignments/media-types/application/alto-directory+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-directory+json"]},"registered":true},{"content-type":"application/alto-endpointcost+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointcost+json=http://www.iana.org/assignments/media-types/application/alto-endpointcost+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointcost+json"]},"registered":true},{"content-type":"application/alto-endpointcostparams+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointcostparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointcostparams+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointcostparams+json"]},"registered":true},{"content-type":"application/alto-endpointprop+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointprop+json=http://www.iana.org/assignments/media-types/application/alto-endpointprop+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointprop+json"]},"registered":true},{"content-type":"application/alto-endpointpropparams+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointpropparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointpropparams+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointpropparams+json"]},"registered":true},{"content-type":"application/alto-error+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-error+json=http://www.iana.org/assignments/media-types/application/alto-error+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-error+json"]},"registered":true},{"content-type":"application/alto-networkmap+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-networkmap+json=http://www.iana.org/assignments/media-types/application/alto-networkmap+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-networkmap+json"]},"registered":true},{"content-type":"application/alto-networkmapfilter+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-networkmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-networkmapfilter+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-networkmapfilter+json"]},"registered":true},{"content-type":"application/AML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/AML=http://www.iana.org/assignments/media-types/application/AML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/AML"]},"registered":true},{"content-type":"application/andrew-inset","friendly":{"en":"Andrew Toolkit"},"encoding":"base64","extensions":["ez"],"references":["IANA","[Nathaniel_Borenstein]","{application/andrew-inset=http://www.iana.org/assignments/media-types/application/andrew-inset}"],"xrefs":{"person":["Nathaniel_Borenstein"],"template":["application/andrew-inset"]},"registered":true},{"content-type":"application/appledouble","encoding":"base64","registered":false},{"content-type":"application/applefile","encoding":"base64","references":["IANA","[Patrik_Faltstrom]","{application/applefile=http://www.iana.org/assignments/media-types/application/applefile}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["application/applefile"]},"registered":true},{"content-type":"application/applixware","friendly":{"en":"Applixware"},"encoding":"base64","extensions":["aw"],"registered":false},{"content-type":"application/ATF","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATF=http://www.iana.org/assignments/media-types/application/ATF}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATF"]},"registered":true},{"content-type":"application/ATFX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATFX=http://www.iana.org/assignments/media-types/application/ATFX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATFX"]},"registered":true},{"content-type":"application/atom+xml","friendly":{"en":"Atom Syndication Format"},"encoding":"8bit","extensions":["atom"],"references":["IANA","RFC4287","RFC5023","{application/atom+xml=http://www.iana.org/assignments/media-types/application/atom+xml}"],"xrefs":{"rfc":["rfc4287","rfc5023"],"template":["application/atom+xml"]},"registered":true},{"content-type":"application/atomcat+xml","friendly":{"en":"Atom Publishing Protocol"},"encoding":"8bit","extensions":["atomcat"],"references":["IANA","RFC5023","{application/atomcat+xml=http://www.iana.org/assignments/media-types/application/atomcat+xml}"],"xrefs":{"rfc":["rfc5023"],"template":["application/atomcat+xml"]},"registered":true},{"content-type":"application/atomdeleted+xml","encoding":"8bit","references":["IANA","RFC6721","{application/atomdeleted+xml=http://www.iana.org/assignments/media-types/application/atomdeleted+xml}"],"xrefs":{"rfc":["rfc6721"],"template":["application/atomdeleted+xml"]},"registered":true},{"content-type":"application/atomicmail","encoding":"base64","references":["IANA","[Nathaniel_Borenstein]","{application/atomicmail=http://www.iana.org/assignments/media-types/application/atomicmail}"],"xrefs":{"person":["Nathaniel_Borenstein"],"template":["application/atomicmail"]},"registered":true},{"content-type":"application/atomsvc+xml","friendly":{"en":"Atom Publishing Protocol Service Document"},"encoding":"8bit","extensions":["atomsvc"],"references":["IANA","RFC5023","{application/atomsvc+xml=http://www.iana.org/assignments/media-types/application/atomsvc+xml}"],"xrefs":{"rfc":["rfc5023"],"template":["application/atomsvc+xml"]},"registered":true},{"content-type":"application/ATXML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATXML=http://www.iana.org/assignments/media-types/application/ATXML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATXML"]},"registered":true},{"content-type":"application/auth-policy+xml","encoding":"8bit","references":["IANA","RFC4745","{application/auth-policy+xml=http://www.iana.org/assignments/media-types/application/auth-policy+xml}"],"xrefs":{"rfc":["rfc4745"],"template":["application/auth-policy+xml"]},"registered":true},{"content-type":"application/bacnet-xdd+zip","encoding":"base64","references":["IANA","[ASHRAE]","[Dave_Robin]","{application/bacnet-xdd+zip=http://www.iana.org/assignments/media-types/application/bacnet-xdd+zip}"],"xrefs":{"person":["ASHRAE","Dave_Robin"],"template":["application/bacnet-xdd+zip"]},"registered":true},{"content-type":"application/batch-SMTP","encoding":"base64","references":["IANA","RFC2442","{application/batch-SMTP=http://www.iana.org/assignments/media-types/application/batch-SMTP}"],"xrefs":{"rfc":["rfc2442"],"template":["application/batch-SMTP"]},"registered":true},{"content-type":"application/beep+xml","encoding":"base64","references":["IANA","RFC3080","{application/beep+xml=http://www.iana.org/assignments/media-types/application/beep+xml}"],"xrefs":{"rfc":["rfc3080"],"template":["application/beep+xml"]},"registered":true},{"content-type":"application/bleeper","encoding":"base64","extensions":["bleep"],"obsolete":true,"use-instead":"application/x-bleeper","registered":false},{"content-type":"application/calendar+json","encoding":"base64","references":["IANA","RFC7265","{application/calendar+json=http://www.iana.org/assignments/media-types/application/calendar+json}"],"xrefs":{"rfc":["rfc7265"],"template":["application/calendar+json"]},"registered":true},{"content-type":"application/calendar+xml","encoding":"base64","references":["IANA","RFC6321","{application/calendar+xml=http://www.iana.org/assignments/media-types/application/calendar+xml}"],"xrefs":{"rfc":["rfc6321"],"template":["application/calendar+xml"]},"registered":true},{"content-type":"application/call-completion","encoding":"base64","references":["IANA","RFC6910","{application/call-completion=http://www.iana.org/assignments/media-types/application/call-completion}"],"xrefs":{"rfc":["rfc6910"],"template":["application/call-completion"]},"registered":true},{"content-type":"application/cals-1840","encoding":"base64","references":["IANA","RFC1895","{application/CALS-1840=http://www.iana.org/assignments/media-types/application/CALS-1840}"],"xrefs":{"rfc":["rfc1895"],"template":["application/CALS-1840"]},"registered":true},{"content-type":"application/cals1840","encoding":"base64","obsolete":true,"use-instead":"application/cals-1840","registered":false},{"content-type":"application/cbor","encoding":"base64","references":["IANA","RFC7049","{application/cbor=http://www.iana.org/assignments/media-types/application/cbor}"],"xrefs":{"rfc":["rfc7049"],"template":["application/cbor"]},"registered":true},{"content-type":"application/ccmp+xml","encoding":"base64","references":["IANA","RFC6503","{application/ccmp+xml=http://www.iana.org/assignments/media-types/application/ccmp+xml}"],"xrefs":{"rfc":["rfc6503"],"template":["application/ccmp+xml"]},"registered":true},{"content-type":"application/ccxml+xml","friendly":{"en":"Voice Browser Call Control"},"encoding":"base64","extensions":["ccxml"],"references":["IANA","RFC4267","{application/ccxml+xml=http://www.iana.org/assignments/media-types/application/ccxml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/ccxml+xml"]},"registered":true},{"content-type":"application/CDFX+XML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/CDFX+XML=http://www.iana.org/assignments/media-types/application/CDFX+XML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/CDFX+XML"]},"registered":true},{"content-type":"application/cdmi-capability","friendly":{"en":"Cloud Data Management Interface (CDMI) - Capability"},"encoding":"base64","extensions":["cdmia"],"references":["IANA","RFC6208","{application/cdmi-capability=http://www.iana.org/assignments/media-types/application/cdmi-capability}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-capability"]},"registered":true},{"content-type":"application/cdmi-container","friendly":{"en":"Cloud Data Management Interface (CDMI) - Contaimer"},"encoding":"base64","extensions":["cdmic"],"references":["IANA","RFC6208","{application/cdmi-container=http://www.iana.org/assignments/media-types/application/cdmi-container}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-container"]},"registered":true},{"content-type":"application/cdmi-domain","friendly":{"en":"Cloud Data Management Interface (CDMI) - Domain"},"encoding":"base64","extensions":["cdmid"],"references":["IANA","RFC6208","{application/cdmi-domain=http://www.iana.org/assignments/media-types/application/cdmi-domain}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-domain"]},"registered":true},{"content-type":"application/cdmi-object","friendly":{"en":"Cloud Data Management Interface (CDMI) - Object"},"encoding":"base64","extensions":["cdmio"],"references":["IANA","RFC6208","{application/cdmi-object=http://www.iana.org/assignments/media-types/application/cdmi-object}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-object"]},"registered":true},{"content-type":"application/cdmi-queue","friendly":{"en":"Cloud Data Management Interface (CDMI) - Queue"},"encoding":"base64","extensions":["cdmiq"],"references":["IANA","RFC6208","{application/cdmi-queue=http://www.iana.org/assignments/media-types/application/cdmi-queue}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-queue"]},"registered":true},{"content-type":"application/CEA","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/CEA=http://www.iana.org/assignments/media-types/application/CEA}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/CEA"]},"registered":true},{"content-type":"application/cea-2018+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/cea-2018+xml=http://www.iana.org/assignments/media-types/application/cea-2018+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/cea-2018+xml"]},"registered":true},{"content-type":"application/cellml+xml","encoding":"base64","references":["IANA","RFC4708","{application/cellml+xml=http://www.iana.org/assignments/media-types/application/cellml+xml}"],"xrefs":{"rfc":["rfc4708"],"template":["application/cellml+xml"]},"registered":true},{"content-type":"application/cfw","encoding":"base64","references":["IANA","RFC6230","{application/cfw=http://www.iana.org/assignments/media-types/application/cfw}"],"xrefs":{"rfc":["rfc6230"],"template":["application/cfw"]},"registered":true},{"content-type":"application/clariscad","encoding":"base64","registered":false},{"content-type":"application/cms","encoding":"base64","references":["IANA","RFC7193","{application/cms=http://www.iana.org/assignments/media-types/application/cms}"],"xrefs":{"rfc":["rfc7193"],"template":["application/cms"]},"registered":true},{"content-type":"application/cnrp+xml","encoding":"base64","references":["IANA","RFC3367","{application/cnrp+xml=http://www.iana.org/assignments/media-types/application/cnrp+xml}"],"xrefs":{"rfc":["rfc3367"],"template":["application/cnrp+xml"]},"registered":true},{"content-type":"application/coap-group+json","encoding":"base64","references":["IANA","RFC7390","{application/coap-group+json=http://www.iana.org/assignments/media-types/application/coap-group+json}"],"xrefs":{"rfc":["rfc7390"],"template":["application/coap-group+json"]},"registered":true},{"content-type":"application/commonground","encoding":"base64","references":["IANA","[David_Glazer]","{application/commonground=http://www.iana.org/assignments/media-types/application/commonground}"],"xrefs":{"person":["David_Glazer"],"template":["application/commonground"]},"registered":true},{"content-type":"application/conference-info+xml","encoding":"base64","references":["IANA","RFC4575","{application/conference-info+xml=http://www.iana.org/assignments/media-types/application/conference-info+xml}"],"xrefs":{"rfc":["rfc4575"],"template":["application/conference-info+xml"]},"registered":true},{"content-type":"application/cpl+xml","encoding":"base64","references":["IANA","RFC3880","{application/cpl+xml=http://www.iana.org/assignments/media-types/application/cpl+xml}"],"xrefs":{"rfc":["rfc3880"],"template":["application/cpl+xml"]},"registered":true},{"content-type":"application/csrattrs","encoding":"base64","references":["IANA","RFC7030","{application/csrattrs=http://www.iana.org/assignments/media-types/application/csrattrs}"],"xrefs":{"rfc":["rfc7030"],"template":["application/csrattrs"]},"registered":true},{"content-type":"application/csta+xml","encoding":"base64","references":["IANA","[Ecma_International_Helpdesk]","{application/csta+xml=http://www.iana.org/assignments/media-types/application/csta+xml}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/csta+xml"]},"registered":true},{"content-type":"application/CSTAdata+xml","encoding":"base64","references":["IANA","[Ecma_International_Helpdesk]","{application/CSTAdata+xml=http://www.iana.org/assignments/media-types/application/CSTAdata+xml}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/CSTAdata+xml"]},"registered":true},{"content-type":"application/cu-seeme","friendly":{"en":"CU-SeeMe"},"encoding":"base64","extensions":["cu"],"registered":false},{"content-type":"application/cybercash","encoding":"base64","references":["IANA","[Donald_E._Eastlake_3rd]","{application/cybercash=http://www.iana.org/assignments/media-types/application/cybercash}"],"xrefs":{"person":["Donald_E._Eastlake_3rd"],"template":["application/cybercash"]},"registered":true},{"content-type":"application/dash+xml","encoding":"base64","references":["IANA","[Thomas_Stockhammer]","[ISO-IEC_JTC1]","{application/dash+xml=http://www.iana.org/assignments/media-types/application/dash+xml}"],"xrefs":{"person":["ISO-IEC_JTC1","Thomas_Stockhammer"],"template":["application/dash+xml"]},"registered":true},{"content-type":"application/dashdelta","encoding":"base64","references":["IANA","[David_Furbeck]","{application/dashdelta=http://www.iana.org/assignments/media-types/application/dashdelta}"],"xrefs":{"person":["David_Furbeck"],"template":["application/dashdelta"]},"registered":true},{"content-type":"application/davmount+xml","friendly":{"en":"Web Distributed Authoring and Versioning"},"encoding":"base64","extensions":["davmount"],"references":["IANA","RFC4709","{application/davmount+xml=http://www.iana.org/assignments/media-types/application/davmount+xml}"],"xrefs":{"rfc":["rfc4709"],"template":["application/davmount+xml"]},"registered":true},{"content-type":"application/dca-rft","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/dca-rft=http://www.iana.org/assignments/media-types/application/dca-rft}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/dca-rft"]},"registered":true},{"content-type":"application/DCD","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DCD=http://www.iana.org/assignments/media-types/application/DCD}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DCD"]},"registered":true},{"content-type":"application/dec-dx","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/dec-dx=http://www.iana.org/assignments/media-types/application/dec-dx}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/dec-dx"]},"registered":true},{"content-type":"application/dialog-info+xml","encoding":"base64","references":["IANA","RFC4235","{application/dialog-info+xml=http://www.iana.org/assignments/media-types/application/dialog-info+xml}"],"xrefs":{"rfc":["rfc4235"],"template":["application/dialog-info+xml"]},"registered":true},{"content-type":"application/dicom","encoding":"base64","extensions":["dcm"],"references":["IANA","RFC3240","{application/dicom=http://www.iana.org/assignments/media-types/application/dicom}"],"xrefs":{"rfc":["rfc3240"],"template":["application/dicom"]},"registered":true},{"content-type":"application/DII","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DII=http://www.iana.org/assignments/media-types/application/DII}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DII"]},"registered":true},{"content-type":"application/DIT","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DIT=http://www.iana.org/assignments/media-types/application/DIT}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DIT"]},"registered":true},{"content-type":"application/dns","encoding":"base64","references":["IANA","RFC4027","{application/dns=http://www.iana.org/assignments/media-types/application/dns}"],"xrefs":{"rfc":["rfc4027"],"template":["application/dns"]},"registered":true},{"content-type":"application/docbook+xml","encoding":"base64","extensions":["dbk"],"registered":false},{"content-type":"application/drafting","encoding":"base64","registered":false},{"content-type":"application/dskpp+xml","encoding":"base64","references":["IANA","RFC6063","{application/dskpp+xml=http://www.iana.org/assignments/media-types/application/dskpp+xml}"],"xrefs":{"rfc":["rfc6063"],"template":["application/dskpp+xml"]},"registered":true},{"content-type":"application/dssc+der","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["dssc"],"references":["IANA","RFC5698","{application/dssc+der=http://www.iana.org/assignments/media-types/application/dssc+der}"],"xrefs":{"rfc":["rfc5698"],"template":["application/dssc+der"]},"registered":true},{"content-type":"application/dssc+xml","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["xdssc"],"references":["IANA","RFC5698","{application/dssc+xml=http://www.iana.org/assignments/media-types/application/dssc+xml}"],"xrefs":{"rfc":["rfc5698"],"template":["application/dssc+xml"]},"registered":true},{"content-type":"application/dvcs","encoding":"base64","references":["IANA","RFC3029","{application/dvcs=http://www.iana.org/assignments/media-types/application/dvcs}"],"xrefs":{"rfc":["rfc3029"],"template":["application/dvcs"]},"registered":true},{"content-type":"application/dxf","encoding":"base64","registered":false},{"content-type":"application/ecmascript","friendly":{"en":"ECMAScript"},"encoding":"base64","extensions":["ecma"],"references":["IANA","RFC4329","{application/ecmascript=http://www.iana.org/assignments/media-types/application/ecmascript}"],"xrefs":{"rfc":["rfc4329"],"template":["application/ecmascript"]},"registered":true},{"content-type":"application/EDI-consent","encoding":"base64","references":["IANA","RFC1767","{application/EDI-consent=http://www.iana.org/assignments/media-types/application/EDI-consent}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDI-consent"]},"registered":true},{"content-type":"application/EDI-X12","encoding":"base64","references":["IANA","RFC1767","{application/EDI-X12=http://www.iana.org/assignments/media-types/application/EDI-X12}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDI-X12"]},"registered":true},{"content-type":"application/EDIFACT","encoding":"base64","references":["IANA","RFC1767","{application/EDIFACT=http://www.iana.org/assignments/media-types/application/EDIFACT}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDIFACT"]},"registered":true},{"content-type":"application/emma+xml","friendly":{"en":"Extensible MultiModal Annotation"},"encoding":"base64","extensions":["emma"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration"]},"registered":true},{"content-type":"application/emotionml+xml","encoding":"base64","references":["IANA","[W3C]","[Kazuyuki_Ashimura]","{application/emotionml+xml=http://www.iana.org/assignments/media-types/application/emotionml+xml}"],"xrefs":{"person":["Kazuyuki_Ashimura","W3C"],"template":["application/emotionml+xml"]},"registered":true},{"content-type":"application/encaprtp","encoding":"base64","references":["IANA","RFC6849","{application/encaprtp=http://www.iana.org/assignments/media-types/application/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["application/encaprtp"]},"registered":true},{"content-type":"application/epp+xml","encoding":"base64","references":["IANA","RFC5730","{application/epp+xml=http://www.iana.org/assignments/media-types/application/epp+xml}"],"xrefs":{"rfc":["rfc5730"],"template":["application/epp+xml"]},"registered":true},{"content-type":"application/epub+zip","friendly":{"en":"Electronic Publication"},"encoding":"base64","extensions":["epub"],"references":["IANA","[International_Digital_Publishing_Forum]","[William_McCoy]","{application/epub+zip=http://www.iana.org/assignments/media-types/application/epub+zip}"],"xrefs":{"person":["International_Digital_Publishing_Forum","William_McCoy"],"template":["application/epub+zip"]},"registered":true},{"content-type":"application/eshop","encoding":"base64","references":["IANA","[Steve_Katz]","{application/eshop=http://www.iana.org/assignments/media-types/application/eshop}"],"xrefs":{"person":["Steve_Katz"],"template":["application/eshop"]},"registered":true},{"content-type":"application/example","encoding":"base64","references":["IANA","RFC4735","{application/example=http://www.iana.org/assignments/media-types/application/example}"],"xrefs":{"rfc":["rfc4735"],"template":["application/example"]},"registered":true},{"content-type":"application/excel","encoding":"base64","extensions":["xls","xlt"],"obsolete":true,"use-instead":"application/vnd.ms-excel","registered":false},{"content-type":"application/exi","friendly":{"en":"Efficient XML Interchange"},"encoding":"base64","extensions":["exi"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration"]},"registered":true},{"content-type":"application/fastinfoset","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/fastinfoset=http://www.iana.org/assignments/media-types/application/fastinfoset}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/fastinfoset"]},"registered":true},{"content-type":"application/fastsoap","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/fastsoap=http://www.iana.org/assignments/media-types/application/fastsoap}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/fastsoap"]},"registered":true},{"content-type":"application/fdt+xml","encoding":"base64","references":["IANA","RFC6726","{application/fdt+xml=http://www.iana.org/assignments/media-types/application/fdt+xml}"],"xrefs":{"rfc":["rfc6726"],"template":["application/fdt+xml"]},"registered":true},{"content-type":"application/fits","encoding":"base64","references":["IANA","RFC4047","{application/fits=http://www.iana.org/assignments/media-types/application/fits}"],"xrefs":{"rfc":["rfc4047"],"template":["application/fits"]},"registered":true},{"content-type":"application/font-sfnt","encoding":"base64","extensions":["otf","ttf"],"references":["IANA","[Levantovsky]","{application/font-sfnt=http://www.iana.org/assignments/media-types/application/font-sfnt}"],"xrefs":{"person":["Levantovsky"],"template":["application/font-sfnt"]},"registered":true},{"content-type":"application/font-tdpfr","friendly":{"en":"Portable Font Resource"},"encoding":"base64","extensions":["pfr"],"references":["IANA","RFC3073","{application/font-tdpfr=http://www.iana.org/assignments/media-types/application/font-tdpfr}"],"xrefs":{"rfc":["rfc3073"],"template":["application/font-tdpfr"]},"registered":true},{"content-type":"application/font-woff","friendly":{"en":"Web Open Font Format"},"encoding":"base64","extensions":["woff","woff2"],"references":["IANA","[W3C]","{application/font-woff=http://www.iana.org/assignments/media-types/application/font-woff}"],"xrefs":{"person":["W3C"],"template":["application/font-woff"]},"registered":true},{"content-type":"application/fractals","encoding":"base64","registered":false},{"content-type":"application/framework-attributes+xml","encoding":"base64","references":["IANA","RFC6230","{application/framework-attributes+xml=http://www.iana.org/assignments/media-types/application/framework-attributes+xml}"],"xrefs":{"rfc":["rfc6230"],"template":["application/framework-attributes+xml"]},"registered":true},{"content-type":"application/futuresplash","encoding":"base64","extensions":["spl"],"obsolete":true,"use-instead":"application/x-futuresplash","registered":false},{"content-type":"application/ghostview","encoding":"base64","obsolete":true,"use-instead":"application/x-ghostview","registered":false},{"content-type":"application/gml+xml","encoding":"base64","extensions":["gml"],"registered":false},{"content-type":"application/gpx+xml","encoding":"base64","extensions":["gpx"],"registered":false},{"content-type":"application/gxf","encoding":"base64","extensions":["gxf"],"registered":false},{"content-type":"application/gzip","encoding":"base64","extensions":["gz"],"references":["IANA","RFC6713","{application/gzip=http://www.iana.org/assignments/media-types/application/gzip}"],"xrefs":{"rfc":["rfc6713"],"template":["application/gzip"]},"registered":true},{"content-type":"application/H224","encoding":"base64","references":["IANA","RFC4573","{application/H224=http://www.iana.org/assignments/media-types/application/H224}"],"xrefs":{"rfc":["rfc4573"],"template":["application/H224"]},"registered":true},{"content-type":"application/held+xml","encoding":"base64","references":["IANA","RFC5985","{application/held+xml=http://www.iana.org/assignments/media-types/application/held+xml}"],"xrefs":{"rfc":["rfc5985"],"template":["application/held+xml"]},"registered":true},{"content-type":"application/hep","encoding":"base64","extensions":["hep"],"obsolete":true,"use-instead":"application/x-hep","registered":false},{"content-type":"application/http","encoding":"base64","references":["IANA","RFC7230","{application/http=http://www.iana.org/assignments/media-types/application/http}"],"xrefs":{"rfc":["rfc7230"],"template":["application/http"]},"registered":true},{"content-type":"application/hyperstudio","friendly":{"en":"Hyperstudio"},"encoding":"base64","extensions":["stk"],"references":["IANA","[Michael_Domino]","{application/hyperstudio=http://www.iana.org/assignments/media-types/application/hyperstudio}"],"xrefs":{"person":["Michael_Domino"],"template":["application/hyperstudio"]},"registered":true},{"content-type":"application/i-deas","encoding":"base64","registered":false},{"content-type":"application/ibe-key-request+xml","encoding":"base64","references":["IANA","RFC5408","{application/ibe-key-request+xml=http://www.iana.org/assignments/media-types/application/ibe-key-request+xml}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-key-request+xml"]},"registered":true},{"content-type":"application/ibe-pkg-reply+xml","encoding":"base64","references":["IANA","RFC5408","{application/ibe-pkg-reply+xml=http://www.iana.org/assignments/media-types/application/ibe-pkg-reply+xml}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-pkg-reply+xml"]},"registered":true},{"content-type":"application/ibe-pp-data","encoding":"base64","references":["IANA","RFC5408","{application/ibe-pp-data=http://www.iana.org/assignments/media-types/application/ibe-pp-data}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-pp-data"]},"registered":true},{"content-type":"application/iges","encoding":"base64","references":["IANA","[Curtis_Parks]","{application/iges=http://www.iana.org/assignments/media-types/application/iges}"],"xrefs":{"person":["Curtis_Parks"],"template":["application/iges"]},"registered":true},{"content-type":"application/im-iscomposing+xml","encoding":"base64","references":["IANA","RFC3994","{application/im-iscomposing+xml=http://www.iana.org/assignments/media-types/application/im-iscomposing+xml}"],"xrefs":{"rfc":["rfc3994"],"template":["application/im-iscomposing+xml"]},"registered":true},{"content-type":"application/imagemap","encoding":"8bit","extensions":["imagemap","imap"],"obsolete":true,"use-instead":"application/x-imagemap","registered":false},{"content-type":"application/index","encoding":"base64","references":["IANA","RFC2652","{application/index=http://www.iana.org/assignments/media-types/application/index}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index"]},"registered":true},{"content-type":"application/index.cmd","encoding":"base64","references":["IANA","RFC2652","{application/index.cmd=http://www.iana.org/assignments/media-types/application/index.cmd}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.cmd"]},"registered":true},{"content-type":"application/index.obj","encoding":"base64","references":["IANA","RFC2652","{application/index-obj=http://www.iana.org/assignments/media-types/application/index-obj}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index-obj"]},"registered":true},{"content-type":"application/index.response","encoding":"base64","references":["IANA","RFC2652","{application/index.response=http://www.iana.org/assignments/media-types/application/index.response}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.response"]},"registered":true},{"content-type":"application/index.vnd","encoding":"base64","references":["IANA","RFC2652","{application/index.vnd=http://www.iana.org/assignments/media-types/application/index.vnd}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.vnd"]},"registered":true},{"content-type":"application/inkml+xml","encoding":"base64","extensions":["ink","inkml"],"references":["IANA","[Kazuyuki_Ashimura]","{application/inkml+xml=http://www.iana.org/assignments/media-types/application/inkml+xml}"],"xrefs":{"person":["Kazuyuki_Ashimura"],"template":["application/inkml+xml"]},"registered":true},{"content-type":"application/iotp","encoding":"base64","references":["IANA","RFC2935","{application/IOTP=http://www.iana.org/assignments/media-types/application/IOTP}"],"xrefs":{"rfc":["rfc2935"],"template":["application/IOTP"]},"registered":true},{"content-type":"application/ipfix","friendly":{"en":"Internet Protocol Flow Information Export"},"encoding":"base64","extensions":["ipfix"],"references":["IANA","RFC5655","{application/ipfix=http://www.iana.org/assignments/media-types/application/ipfix}"],"xrefs":{"rfc":["rfc5655"],"template":["application/ipfix"]},"registered":true},{"content-type":"application/ipp","encoding":"base64","references":["IANA","RFC2910","{application/ipp=http://www.iana.org/assignments/media-types/application/ipp}"],"xrefs":{"rfc":["rfc2910"],"template":["application/ipp"]},"registered":true},{"content-type":"application/isup","encoding":"base64","references":["IANA","RFC3204","{application/ISUP=http://www.iana.org/assignments/media-types/application/ISUP}"],"xrefs":{"rfc":["rfc3204"],"template":["application/ISUP"]},"registered":true},{"content-type":"application/its+xml","encoding":"base64","references":["IANA","[W3C]","[ITS-IG-W3C]","{application/its+xml=http://www.iana.org/assignments/media-types/application/its+xml}"],"xrefs":{"person":["ITS-IG-W3C","W3C"],"template":["application/its+xml"]},"registered":true},{"content-type":"application/java-archive","friendly":{"en":"Java Archive"},"encoding":"base64","extensions":["jar"],"registered":false},{"content-type":"application/java-serialized-object","friendly":{"en":"Java Serialized Object"},"encoding":"base64","extensions":["ser"],"registered":false},{"content-type":"application/java-vm","friendly":{"en":"Java Bytecode File"},"encoding":"base64","extensions":["class"],"registered":false},{"content-type":"application/javascript","friendly":{"en":"JavaScript"},"encoding":"8bit","extensions":["js","sj"],"references":["IANA","RFC4329","{application/javascript=http://www.iana.org/assignments/media-types/application/javascript}"],"xrefs":{"rfc":["rfc4329"],"template":["application/javascript"]},"registered":true},{"content-type":"application/jose","encoding":"base64","references":["IANA","RFC7515","{application/jose=http://www.iana.org/assignments/media-types/application/jose}"],"xrefs":{"rfc":["rfc7515"],"template":["application/jose"]},"registered":true},{"content-type":"application/jose+json","encoding":"base64","references":["IANA","RFC7515","{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}"],"xrefs":{"rfc":["rfc7515"],"template":["application/jose+json"]},"registered":true},{"content-type":"application/jrd+json","encoding":"base64","references":["IANA","RFC7033","{application/jrd+json=http://www.iana.org/assignments/media-types/application/jrd+json}"],"xrefs":{"rfc":["rfc7033"],"template":["application/jrd+json"]},"registered":true},{"content-type":"application/json","friendly":{"en":"JavaScript Object Notation (JSON)"},"encoding":"8bit","extensions":["json"],"references":["IANA","RFC7158","{application/json=http://www.iana.org/assignments/media-types/application/json}"],"xrefs":{"rfc":["rfc7158"],"template":["application/json"]},"registered":true},{"content-type":"application/json-patch+json","encoding":"base64","references":["IANA","RFC6902","{application/json-patch+json=http://www.iana.org/assignments/media-types/application/json-patch+json}"],"xrefs":{"rfc":["rfc6902"],"template":["application/json-patch+json"]},"registered":true},{"content-type":"application/json-seq","encoding":"base64","references":["IANA","RFC7464","{application/json-seq=http://www.iana.org/assignments/media-types/application/json-seq}"],"xrefs":{"rfc":["rfc7464"],"template":["application/json-seq"]},"registered":true},{"content-type":"application/jsonml+json","encoding":"base64","extensions":["jsonml"],"registered":false},{"content-type":"application/jwk+json","encoding":"base64","references":["IANA","RFC7517","{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}"],"xrefs":{"rfc":["rfc7517"],"template":["application/jwk+json"]},"registered":true},{"content-type":"application/jwk-set+json","encoding":"base64","references":["IANA","RFC7517","{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}"],"xrefs":{"rfc":["rfc7517"],"template":["application/jwk-set+json"]},"registered":true},{"content-type":"application/jwt","encoding":"base64","references":["IANA","RFC7519","{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}"],"xrefs":{"rfc":["rfc7519"],"template":["application/jwt"]},"registered":true},{"content-type":"application/kpml-request+xml","encoding":"base64","references":["IANA","RFC4730","{application/kpml-request+xml=http://www.iana.org/assignments/media-types/application/kpml-request+xml}"],"xrefs":{"rfc":["rfc4730"],"template":["application/kpml-request+xml"]},"registered":true},{"content-type":"application/kpml-response+xml","encoding":"base64","references":["IANA","RFC4730","{application/kpml-response+xml=http://www.iana.org/assignments/media-types/application/kpml-response+xml}"],"xrefs":{"rfc":["rfc4730"],"template":["application/kpml-response+xml"]},"registered":true},{"content-type":"application/ld+json","encoding":"base64","references":["IANA","[W3C]","[Ivan_Herman]","{application/ld+json=http://www.iana.org/assignments/media-types/application/ld+json}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["application/ld+json"]},"registered":true},{"content-type":"application/link-format","encoding":"base64","references":["IANA","RFC6690","{application/link-format=http://www.iana.org/assignments/media-types/application/link-format}"],"xrefs":{"rfc":["rfc6690"],"template":["application/link-format"]},"registered":true},{"content-type":"application/load-control+xml","encoding":"base64","references":["IANA","RFC7200","{application/load-control+xml=http://www.iana.org/assignments/media-types/application/load-control+xml}"],"xrefs":{"rfc":["rfc7200"],"template":["application/load-control+xml"]},"registered":true},{"content-type":"application/lost+xml","encoding":"base64","extensions":["lostxml"],"references":["IANA","RFC5222","{application/lost+xml=http://www.iana.org/assignments/media-types/application/lost+xml}"],"xrefs":{"rfc":["rfc5222"],"template":["application/lost+xml"]},"registered":true},{"content-type":"application/lostsync+xml","encoding":"base64","references":["IANA","RFC6739","{application/lostsync+xml=http://www.iana.org/assignments/media-types/application/lostsync+xml}"],"xrefs":{"rfc":["rfc6739"],"template":["application/lostsync+xml"]},"registered":true},{"content-type":"application/lotus-123","encoding":"base64","extensions":["wks"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/LXF","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/LXF=http://www.iana.org/assignments/media-types/application/LXF}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/LXF"]},"registered":true},{"content-type":"application/mac-binhex40","friendly":{"en":"Macintosh BinHex 4.0"},"encoding":"8bit","extensions":["hqx"],"references":["IANA","[Patrik_Faltstrom]","{application/mac-binhex40=http://www.iana.org/assignments/media-types/application/mac-binhex40}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["application/mac-binhex40"]},"registered":true},{"content-type":"application/mac-compactpro","friendly":{"en":"Compact Pro"},"encoding":"base64","extensions":["cpt"],"obsolete":true,"use-instead":"application/x-mac-compactpro","registered":false},{"content-type":"application/macbinary","encoding":"base64","registered":false},{"content-type":"application/macwriteii","encoding":"base64","references":["IANA","[Paul_Lindner]","{application/macwriteii=http://www.iana.org/assignments/media-types/application/macwriteii}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/macwriteii"]},"registered":true},{"content-type":"application/mads+xml","friendly":{"en":"Metadata Authority Description Schema"},"encoding":"base64","extensions":["mads"],"references":["IANA","RFC6207","{application/mads+xml=http://www.iana.org/assignments/media-types/application/mads+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mads+xml"]},"registered":true},{"content-type":"application/marc","friendly":{"en":"MARC Formats"},"encoding":"base64","extensions":["mrc"],"references":["IANA","RFC2220","{application/marc=http://www.iana.org/assignments/media-types/application/marc}"],"xrefs":{"rfc":["rfc2220"],"template":["application/marc"]},"registered":true},{"content-type":"application/marcxml+xml","friendly":{"en":"MARC21 XML Schema"},"encoding":"base64","extensions":["mrcx"],"references":["IANA","RFC6207","{application/marcxml+xml=http://www.iana.org/assignments/media-types/application/marcxml+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/marcxml+xml"]},"registered":true},{"content-type":"application/mathcad","encoding":"base64","extensions":["mcd"],"obsolete":true,"use-instead":"application/vnd.mcd","registered":false},{"content-type":"application/mathematica","friendly":{"en":"Mathematica Notebooks"},"encoding":"base64","extensions":["ma","mb","nb"],"references":["IANA","[Wolfram]","{application/mathematica=http://www.iana.org/assignments/media-types/application/mathematica}"],"xrefs":{"person":["Wolfram"],"template":["application/mathematica"]},"registered":true},{"content-type":"application/mathematica-old","encoding":"base64","obsolete":true,"use-instead":"application/x-mathematica-old","registered":false},{"content-type":"application/mathml+xml","friendly":{"en":"Mathematical Markup Language"},"encoding":"base64","extensions":["mathml"],"references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mathml-content+xml","encoding":"base64","references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mathml-presentation+xml","encoding":"base64","references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mbms-associated-procedure-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-associated-procedure-description+xml=http://www.iana.org/assignments/media-types/application/mbms-associated-procedure-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-associated-procedure-description+xml"]},"registered":true},{"content-type":"application/mbms-deregister+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-deregister+xml=http://www.iana.org/assignments/media-types/application/mbms-deregister+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-deregister+xml"]},"registered":true},{"content-type":"application/mbms-envelope+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-envelope+xml=http://www.iana.org/assignments/media-types/application/mbms-envelope+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-envelope+xml"]},"registered":true},{"content-type":"application/mbms-msk+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-msk+xml=http://www.iana.org/assignments/media-types/application/mbms-msk+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-msk+xml"]},"registered":true},{"content-type":"application/mbms-msk-response+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-msk-response+xml=http://www.iana.org/assignments/media-types/application/mbms-msk-response+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-msk-response+xml"]},"registered":true},{"content-type":"application/mbms-protection-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-protection-description+xml=http://www.iana.org/assignments/media-types/application/mbms-protection-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-protection-description+xml"]},"registered":true},{"content-type":"application/mbms-reception-report+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-reception-report+xml=http://www.iana.org/assignments/media-types/application/mbms-reception-report+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-reception-report+xml"]},"registered":true},{"content-type":"application/mbms-register+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-register+xml=http://www.iana.org/assignments/media-types/application/mbms-register+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-register+xml"]},"registered":true},{"content-type":"application/mbms-register-response+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-register-response+xml=http://www.iana.org/assignments/media-types/application/mbms-register-response+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-register-response+xml"]},"registered":true},{"content-type":"application/mbms-schedule+xml","encoding":"base64","references":["IANA","[ThreeGPP]","[Eric_Turcotte]","{application/mbms-schedule+xml=http://www.iana.org/assignments/media-types/application/mbms-schedule+xml}"],"xrefs":{"person":["Eric_Turcotte","ThreeGPP"],"template":["application/mbms-schedule+xml"]},"registered":true},{"content-type":"application/mbms-user-service-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-user-service-description+xml=http://www.iana.org/assignments/media-types/application/mbms-user-service-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-user-service-description+xml"]},"registered":true},{"content-type":"application/mbox","friendly":{"en":"Mbox database files"},"encoding":"base64","extensions":["mbox"],"references":["IANA","RFC4155","{application/mbox=http://www.iana.org/assignments/media-types/application/mbox}"],"xrefs":{"rfc":["rfc4155"],"template":["application/mbox"]},"registered":true},{"content-type":"application/media-policy-dataset+xml","encoding":"base64","references":["IANA","RFC6796","{application/media-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/media-policy-dataset+xml}"],"xrefs":{"rfc":["rfc6796"],"template":["application/media-policy-dataset+xml"]},"registered":true},{"content-type":"application/media_control+xml","encoding":"base64","references":["IANA","RFC5168","{application/media_control+xml=http://www.iana.org/assignments/media-types/application/media_control+xml}"],"xrefs":{"rfc":["rfc5168"],"template":["application/media_control+xml"]},"registered":true},{"content-type":"application/mediaservercontrol+xml","friendly":{"en":"Media Server Control Markup Language"},"encoding":"base64","extensions":["mscml"],"references":["IANA","RFC5022","{application/mediaservercontrol+xml=http://www.iana.org/assignments/media-types/application/mediaservercontrol+xml}"],"xrefs":{"rfc":["rfc5022"],"template":["application/mediaservercontrol+xml"]},"registered":true},{"content-type":"application/merge-patch+json","encoding":"base64","references":["IANA","RFC7396","{application/merge-patch+json=http://www.iana.org/assignments/media-types/application/merge-patch+json}"],"xrefs":{"rfc":["rfc7396"],"template":["application/merge-patch+json"]},"registered":true},{"content-type":"application/metalink+xml","encoding":"base64","extensions":["metalink"],"registered":false},{"content-type":"application/metalink4+xml","friendly":{"en":"Metalink"},"encoding":"base64","extensions":["meta4"],"references":["IANA","RFC5854","{application/metalink4+xml=http://www.iana.org/assignments/media-types/application/metalink4+xml}"],"xrefs":{"rfc":["rfc5854"],"template":["application/metalink4+xml"]},"registered":true},{"content-type":"application/mets+xml","friendly":{"en":"Metadata Encoding and Transmission Standard"},"encoding":"base64","extensions":["mets"],"references":["IANA","RFC6207","{application/mets+xml=http://www.iana.org/assignments/media-types/application/mets+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mets+xml"]},"registered":true},{"content-type":"application/MF4","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/MF4=http://www.iana.org/assignments/media-types/application/MF4}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/MF4"]},"registered":true},{"content-type":"application/mikey","encoding":"base64","references":["IANA","RFC3830","{application/mikey=http://www.iana.org/assignments/media-types/application/mikey}"],"xrefs":{"rfc":["rfc3830"],"template":["application/mikey"]},"registered":true},{"content-type":"application/mods+xml","friendly":{"en":"Metadata Object Description Schema"},"encoding":"base64","extensions":["mods"],"references":["IANA","RFC6207","{application/mods+xml=http://www.iana.org/assignments/media-types/application/mods+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mods+xml"]},"registered":true},{"content-type":"application/moss-keys","encoding":"base64","references":["IANA","RFC1848","{application/moss-keys=http://www.iana.org/assignments/media-types/application/moss-keys}"],"xrefs":{"rfc":["rfc1848"],"template":["application/moss-keys"]},"registered":true},{"content-type":"application/moss-signature","encoding":"base64","references":["IANA","RFC1848","{application/moss-signature=http://www.iana.org/assignments/media-types/application/moss-signature}"],"xrefs":{"rfc":["rfc1848"],"template":["application/moss-signature"]},"registered":true},{"content-type":"application/mosskey-data","encoding":"base64","references":["IANA","RFC1848","{application/mosskey-data=http://www.iana.org/assignments/media-types/application/mosskey-data}"],"xrefs":{"rfc":["rfc1848"],"template":["application/mosskey-data"]},"registered":true},{"content-type":"application/mosskey-request","encoding":"base64","references":["IANA","RFC1848","{application/mosskey-request=http://www.iana.org/assignments/media-types/application/mosskey-request}"],"xrefs":{"rfc":["rfc1848"],"template":["application/mosskey-request"]},"registered":true},{"content-type":"application/mp21","friendly":{"en":"MPEG-21"},"encoding":"base64","extensions":["m21","mp21"],"references":["IANA","RFC6381","[David_Singer]","{application/mp21=http://www.iana.org/assignments/media-types/application/mp21}"],"xrefs":{"rfc":["rfc6381"],"person":["David_Singer"],"template":["application/mp21"]},"registered":true},{"content-type":"application/mp4","friendly":{"en":"MPEG4"},"encoding":"base64","extensions":["mp4","mpg4","mp4s"],"references":["IANA","RFC4337","RFC6381","{application/mp4=http://www.iana.org/assignments/media-types/application/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["application/mp4"]},"registered":true},{"content-type":"application/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","{application/mpeg4-generic=http://www.iana.org/assignments/media-types/application/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640"],"template":["application/mpeg4-generic"]},"registered":true},{"content-type":"application/mpeg4-iod","encoding":"base64","references":["IANA","RFC4337","{application/mpeg4-iod=http://www.iana.org/assignments/media-types/application/mpeg4-iod}"],"xrefs":{"rfc":["rfc4337"],"template":["application/mpeg4-iod"]},"registered":true},{"content-type":"application/mpeg4-iod-xmt","encoding":"base64","references":["IANA","RFC4337","{application/mpeg4-iod-xmt=http://www.iana.org/assignments/media-types/application/mpeg4-iod-xmt}"],"xrefs":{"rfc":["rfc4337"],"template":["application/mpeg4-iod-xmt"]},"registered":true},{"content-type":"application/mrb-consumer+xml","encoding":"base64","references":["IANA","RFC6917","{application/mrb-consumer+xml=http://www.iana.org/assignments/media-types/application/mrb-consumer+xml}"],"xrefs":{"rfc":["rfc6917"],"template":["application/mrb-consumer+xml"]},"registered":true},{"content-type":"application/mrb-publish+xml","encoding":"base64","references":["IANA","RFC6917","{application/mrb-publish+xml=http://www.iana.org/assignments/media-types/application/mrb-publish+xml}"],"xrefs":{"rfc":["rfc6917"],"template":["application/mrb-publish+xml"]},"registered":true},{"content-type":"application/msc-ivr+xml","encoding":"base64","references":["IANA","RFC6231","{application/msc-ivr+xml=http://www.iana.org/assignments/media-types/application/msc-ivr+xml}"],"xrefs":{"rfc":["rfc6231"],"template":["application/msc-ivr+xml"]},"registered":true},{"content-type":"application/msc-mixer+xml","encoding":"base64","references":["IANA","RFC6505","{application/msc-mixer+xml=http://www.iana.org/assignments/media-types/application/msc-mixer+xml}"],"xrefs":{"rfc":["rfc6505"],"template":["application/msc-mixer+xml"]},"registered":true},{"content-type":"application/msword","friendly":{"en":"Microsoft Word"},"encoding":"base64","extensions":["doc","dot","wrd"],"references":["IANA","[Paul_Lindner]","{application/msword=http://www.iana.org/assignments/media-types/application/msword}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/msword"]},"registered":true},{"content-type":"application/mxf","friendly":{"en":"Material Exchange Format"},"encoding":"base64","extensions":["mxf"],"references":["IANA","RFC4539","{application/mxf=http://www.iana.org/assignments/media-types/application/mxf}"],"xrefs":{"rfc":["rfc4539"],"template":["application/mxf"]},"registered":true},{"content-type":"application/nasdata","encoding":"base64","references":["IANA","RFC4707","{application/nasdata=http://www.iana.org/assignments/media-types/application/nasdata}"],"xrefs":{"rfc":["rfc4707"],"template":["application/nasdata"]},"registered":true},{"content-type":"application/netcdf","encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/news-checkgroups","encoding":"base64","references":["IANA","RFC5537","{application/news-checkgroups=http://www.iana.org/assignments/media-types/application/news-checkgroups}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-checkgroups"]},"registered":true},{"content-type":"application/news-groupinfo","encoding":"base64","references":["IANA","RFC5537","{application/news-groupinfo=http://www.iana.org/assignments/media-types/application/news-groupinfo}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-groupinfo"]},"registered":true},{"content-type":"application/news-message-id","encoding":"base64","obsolete":true,"references":["IANA","RFC1036","[Spencer]"],"registered":false},{"content-type":"application/news-transmission","encoding":"base64","references":["IANA","RFC5537","{application/news-transmission=http://www.iana.org/assignments/media-types/application/news-transmission}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-transmission"]},"registered":true},{"content-type":"application/nlsml+xml","encoding":"base64","references":["IANA","RFC6787","{application/nlsml+xml=http://www.iana.org/assignments/media-types/application/nlsml+xml}"],"xrefs":{"rfc":["rfc6787"],"template":["application/nlsml+xml"]},"registered":true},{"content-type":"application/nss","encoding":"base64","references":["IANA","[Michael_Hammer]","{application/nss=http://www.iana.org/assignments/media-types/application/nss}"],"xrefs":{"person":["Michael_Hammer"],"template":["application/nss"]},"registered":true},{"content-type":"application/ocsp-request","encoding":"base64","references":["IANA","RFC6960","{application/ocsp-request=http://www.iana.org/assignments/media-types/application/ocsp-request}"],"xrefs":{"rfc":["rfc6960"],"template":["application/ocsp-request"]},"registered":true},{"content-type":"application/ocsp-response","encoding":"base64","references":["IANA","RFC6960","{application/ocsp-response=http://www.iana.org/assignments/media-types/application/ocsp-response}"],"xrefs":{"rfc":["rfc6960"],"template":["application/ocsp-response"]},"registered":true},{"content-type":"application/octet-stream","friendly":{"en":"Binary Data"},"encoding":"base64","extensions":["bin","dms","lha","lzh","exe","class","ani","pgp","so","dll","dylib","bpk","deploy","dist","distz","dump","elc","lrf","mar","pkg"],"references":["IANA","RFC2045","RFC2046","{application/octet-stream=http://www.iana.org/assignments/media-types/application/octet-stream}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/octet-stream"]},"registered":true},{"content-type":"application/oda","friendly":{"en":"Office Document Architecture"},"encoding":"base64","extensions":["oda"],"references":["IANA","RFC2045","RFC2046","{application/ODA=http://www.iana.org/assignments/media-types/application/ODA}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/ODA"]},"registered":true},{"content-type":"application/ODX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ODX=http://www.iana.org/assignments/media-types/application/ODX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ODX"]},"registered":true},{"content-type":"application/oebps-package+xml","friendly":{"en":"Open eBook Publication Structure"},"encoding":"base64","extensions":["opf"],"references":["IANA","RFC4839","{application/oebps-package+xml=http://www.iana.org/assignments/media-types/application/oebps-package+xml}"],"xrefs":{"rfc":["rfc4839"],"template":["application/oebps-package+xml"]},"registered":true},{"content-type":"application/ogg","friendly":{"en":"Ogg"},"encoding":"base64","extensions":["ogx"],"references":["IANA","RFC5334","{application/ogg=http://www.iana.org/assignments/media-types/application/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["application/ogg"]},"registered":true},{"content-type":"application/omdoc+xml","encoding":"base64","extensions":["omdoc"],"registered":false},{"content-type":"application/onenote","friendly":{"en":"Microsoft OneNote"},"encoding":"base64","extensions":["onepkg","onetmp","onetoc","onetoc2"],"registered":false},{"content-type":"application/oxps","encoding":"base64","extensions":["oxps"],"references":["IANA","[Ecma_International_Helpdesk]","{application/oxps=http://www.iana.org/assignments/media-types/application/oxps}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/oxps"]},"registered":true},{"content-type":"application/p2p-overlay+xml","encoding":"base64","references":["IANA","RFC6940","{application/p2p-overlay+xml=http://www.iana.org/assignments/media-types/application/p2p-overlay+xml}"],"xrefs":{"rfc":["rfc6940"],"template":["application/p2p-overlay+xml"]},"registered":true},{"content-type":"application/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"application/patch-ops-error+xml","friendly":{"en":"XML Patch Framework"},"encoding":"base64","extensions":["xer"],"references":["IANA","RFC5261","{application/patch-ops-error+xml=http://www.iana.org/assignments/media-types/application/patch-ops-error+xml}"],"xrefs":{"rfc":["rfc5261"],"template":["application/patch-ops-error+xml"]},"registered":true},{"content-type":"application/pdf","friendly":{"en":"Adobe Portable Document Format"},"encoding":"base64","extensions":["pdf"],"references":["IANA","RFC3778","{application/pdf=http://www.iana.org/assignments/media-types/application/pdf}"],"xrefs":{"rfc":["rfc3778"],"template":["application/pdf"]},"registered":true},{"content-type":"application/PDX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/PDX=http://www.iana.org/assignments/media-types/application/PDX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/PDX"]},"registered":true},{"content-type":"application/pgp-encrypted","friendly":{"en":"Pretty Good Privacy"},"encoding":"7bit","extensions":["pgp"],"references":["IANA","RFC3156","{application/pgp-encrypted=http://www.iana.org/assignments/media-types/application/pgp-encrypted}"],"xrefs":{"rfc":["rfc3156"],"template":["application/pgp-encrypted"]},"registered":true},{"content-type":"application/pgp-keys","encoding":"7bit","references":["IANA","RFC3156"],"xrefs":{"rfc":["rfc3156"]},"registered":true,"signature":true},{"content-type":"application/pgp-signature","friendly":{"en":"Pretty Good Privacy - Signature"},"encoding":"base64","extensions":["asc","sig"],"references":["IANA","RFC3156","{application/pgp-signature=http://www.iana.org/assignments/media-types/application/pgp-signature}"],"xrefs":{"rfc":["rfc3156"],"template":["application/pgp-signature"]},"registered":true,"signature":true},{"content-type":"application/pics-rules","friendly":{"en":"PICSRules"},"encoding":"base64","extensions":["prf"],"registered":false},{"content-type":"application/pidf+xml","encoding":"base64","references":["IANA","RFC3863","{application/pidf+xml=http://www.iana.org/assignments/media-types/application/pidf+xml}"],"xrefs":{"rfc":["rfc3863"],"template":["application/pidf+xml"]},"registered":true},{"content-type":"application/pidf-diff+xml","encoding":"base64","references":["IANA","RFC5262","{application/pidf-diff+xml=http://www.iana.org/assignments/media-types/application/pidf-diff+xml}"],"xrefs":{"rfc":["rfc5262"],"template":["application/pidf-diff+xml"]},"registered":true},{"content-type":"application/pkcs10","friendly":{"en":"PKCS #10 - Certification Request Standard"},"encoding":"base64","extensions":["p10"],"references":["IANA","RFC5967","{application/pkcs10=http://www.iana.org/assignments/media-types/application/pkcs10}"],"xrefs":{"rfc":["rfc5967"],"template":["application/pkcs10"]},"registered":true,"signature":true},{"content-type":"application/pkcs12","encoding":"base64","references":["IANA","[IETF]","{application/pkcs12=http://www.iana.org/assignments/media-types/application/pkcs12}"],"xrefs":{"person":["IETF"],"template":["application/pkcs12"]},"registered":true},{"content-type":"application/pkcs7-mime","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7m","p7c"],"references":["IANA","RFC5751","RFC7114","{application/pkcs7-mime=http://www.iana.org/assignments/media-types/application/pkcs7-mime}"],"xrefs":{"rfc":["rfc5751","rfc7114"],"template":["application/pkcs7-mime"]},"registered":true,"signature":true},{"content-type":"application/pkcs7-signature","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7s"],"references":["IANA","RFC5751","{application/pkcs7-signature=http://www.iana.org/assignments/media-types/application/pkcs7-signature}"],"xrefs":{"rfc":["rfc5751"],"template":["application/pkcs7-signature"]},"registered":true,"signature":true},{"content-type":"application/pkcs8","friendly":{"en":"PKCS #8 - Private-Key Information Syntax Standard"},"encoding":"base64","extensions":["p8"],"references":["IANA","RFC5958","{application/pkcs8=http://www.iana.org/assignments/media-types/application/pkcs8}"],"xrefs":{"rfc":["rfc5958"],"template":["application/pkcs8"]},"registered":true},{"content-type":"application/pkix-attr-cert","friendly":{"en":"Attribute Certificate"},"encoding":"base64","extensions":["ac"],"references":["IANA","RFC5877","{application/pkix-attr-cert=http://www.iana.org/assignments/media-types/application/pkix-attr-cert}"],"xrefs":{"rfc":["rfc5877"],"template":["application/pkix-attr-cert"]},"registered":true},{"content-type":"application/pkix-cert","friendly":{"en":"Internet Public Key Infrastructure - Certificate"},"encoding":"base64","extensions":["cer"],"references":["IANA","RFC2585","{application/pkix-cert=http://www.iana.org/assignments/media-types/application/pkix-cert}"],"xrefs":{"rfc":["rfc2585"],"template":["application/pkix-cert"]},"registered":true},{"content-type":"application/pkix-crl","friendly":{"en":"Internet Public Key Infrastructure - Certificate Revocation Lists"},"encoding":"base64","extensions":["crl"],"references":["IANA","RFC2585","{application/pkix-crl=http://www.iana.org/assignments/media-types/application/pkix-crl}"],"xrefs":{"rfc":["rfc2585"],"template":["application/pkix-crl"]},"registered":true},{"content-type":"application/pkix-pkipath","friendly":{"en":"Internet Public Key Infrastructure - Certification Path"},"encoding":"base64","extensions":["pkipath"],"references":["IANA","RFC6066","{application/pkix-pkipath=http://www.iana.org/assignments/media-types/application/pkix-pkipath}"],"xrefs":{"rfc":["rfc6066"],"template":["application/pkix-pkipath"]},"registered":true},{"content-type":"application/pkixcmp","friendly":{"en":"Internet Public Key Infrastructure - Certificate Management Protocole"},"encoding":"base64","extensions":["pki"],"references":["IANA","RFC2510","{application/pkixcmp=http://www.iana.org/assignments/media-types/application/pkixcmp}"],"xrefs":{"rfc":["rfc2510"],"template":["application/pkixcmp"]},"registered":true},{"content-type":"application/pls+xml","friendly":{"en":"Pronunciation Lexicon Specification"},"encoding":"base64","extensions":["pls"],"references":["IANA","RFC4267","{application/pls+xml=http://www.iana.org/assignments/media-types/application/pls+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/pls+xml"]},"registered":true},{"content-type":"application/poc-settings+xml","encoding":"base64","references":["IANA","RFC4354","{application/poc-settings+xml=http://www.iana.org/assignments/media-types/application/poc-settings+xml}"],"xrefs":{"rfc":["rfc4354"],"template":["application/poc-settings+xml"]},"registered":true},{"content-type":"application/postscript","friendly":{"en":"PostScript"},"encoding":"8bit","extensions":["ai","eps","ps"],"references":["IANA","RFC2045","RFC2046","{application/postscript=http://www.iana.org/assignments/media-types/application/postscript}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/postscript"]},"registered":true},{"content-type":"application/powerpoint","encoding":"base64","extensions":["ppt","pps","pot"],"registered":false},{"content-type":"application/pro_eng","encoding":"base64","registered":false},{"content-type":"application/provenance+xml","encoding":"base64","references":["IANA","[W3C]","[Ivan_Herman]","{application/provenance+xml=http://www.iana.org/assignments/media-types/application/provenance+xml}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["application/provenance+xml"]},"registered":true},{"content-type":"application/prs.alvestrand.titrax-sheet","encoding":"base64","references":["IANA","[Harald_T._Alvestrand]","{application/prs.alvestrand.titrax-sheet=http://www.iana.org/assignments/media-types/application/prs.alvestrand.titrax-sheet}"],"xrefs":{"person":["Harald_T._Alvestrand"],"template":["application/prs.alvestrand.titrax-sheet"]},"registered":true},{"content-type":"application/prs.cww","friendly":{"en":"CU-Writer"},"encoding":"base64","extensions":["cw","cww"],"references":["IANA","[Khemchart_Rungchavalnont]","{application/prs.cww=http://www.iana.org/assignments/media-types/application/prs.cww}"],"xrefs":{"person":["Khemchart_Rungchavalnont"],"template":["application/prs.cww"]},"registered":true},{"content-type":"application/prs.hpub+zip","encoding":"base64","references":["IANA","[Giulio_Zambon]","{application/prs.hpub+zip=http://www.iana.org/assignments/media-types/application/prs.hpub+zip}"],"xrefs":{"person":["Giulio_Zambon"],"template":["application/prs.hpub+zip"]},"registered":true},{"content-type":"application/prs.nprend","encoding":"base64","extensions":["rnd","rct"],"references":["IANA","[Jay_Doggett]","{application/prs.nprend=http://www.iana.org/assignments/media-types/application/prs.nprend}"],"xrefs":{"person":["Jay_Doggett"],"template":["application/prs.nprend"]},"registered":true},{"content-type":"application/prs.plucker","encoding":"base64","references":["IANA","[Bill_Janssen]","{application/prs.plucker=http://www.iana.org/assignments/media-types/application/prs.plucker}"],"xrefs":{"person":["Bill_Janssen"],"template":["application/prs.plucker"]},"registered":true},{"content-type":"application/prs.rdf-xml-crypt","encoding":"base64","references":["IANA","[Toby_Inkster]","{application/prs.rdf-xml-crypt=http://www.iana.org/assignments/media-types/application/prs.rdf-xml-crypt}"],"xrefs":{"person":["Toby_Inkster"],"template":["application/prs.rdf-xml-crypt"]},"registered":true},{"content-type":"application/prs.xsf+xml","encoding":"base64","references":["IANA","[Maik_Stührenberg]","{application/prs.xsf+xml=http://www.iana.org/assignments/media-types/application/prs.xsf+xml}"],"xrefs":{"person":["Maik_Stührenberg"],"template":["application/prs.xsf+xml"]},"registered":true},{"content-type":"application/pskc+xml","friendly":{"en":"Portable Symmetric Key Container"},"encoding":"base64","extensions":["pskcxml"],"references":["IANA","RFC6030","{application/pskc+xml=http://www.iana.org/assignments/media-types/application/pskc+xml}"],"xrefs":{"rfc":["rfc6030"],"template":["application/pskc+xml"]},"registered":true},{"content-type":"application/qsig","encoding":"base64","references":["IANA","RFC3204","{application/QSIG=http://www.iana.org/assignments/media-types/application/QSIG}"],"xrefs":{"rfc":["rfc3204"],"template":["application/QSIG"]},"registered":true},{"content-type":"application/quicktimeplayer","encoding":"base64","extensions":["qtl"],"obsolete":true,"use-instead":"application/x-quicktimeplayer","registered":false},{"content-type":"application/raptorfec","encoding":"base64","references":["IANA","RFC6682","{application/raptorfec=http://www.iana.org/assignments/media-types/application/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["application/raptorfec"]},"registered":true},{"content-type":"application/rdap+json","encoding":"base64","references":["IANA","RFC7483","{application/rdap+json=http://www.iana.org/assignments/media-types/application/rdap+json}"],"xrefs":{"rfc":["rfc7483"],"template":["application/rdap+json"]},"registered":true},{"content-type":"application/rdf+xml","friendly":{"en":"Resource Description Framework"},"encoding":"8bit","extensions":["rdf"],"references":["IANA","RFC3870","{application/rdf+xml=http://www.iana.org/assignments/media-types/application/rdf+xml}"],"xrefs":{"rfc":["rfc3870"],"template":["application/rdf+xml"]},"registered":true},{"content-type":"application/reginfo+xml","friendly":{"en":"IMS Networks"},"encoding":"base64","extensions":["rif"],"references":["IANA","RFC3680","{application/reginfo+xml=http://www.iana.org/assignments/media-types/application/reginfo+xml}"],"xrefs":{"rfc":["rfc3680"],"template":["application/reginfo+xml"]},"registered":true},{"content-type":"application/relax-ng-compact-syntax","friendly":{"en":"Relax NG Compact Syntax"},"encoding":"base64","extensions":["rnc"],"references":["IANA","{http://www.jtc1sc34.org/repository/0661.pdf}","{application/relax-ng-compact-syntax=http://www.iana.org/assignments/media-types/application/relax-ng-compact-syntax}"],"xrefs":{"uri":["http://www.jtc1sc34.org/repository/0661.pdf"],"template":["application/relax-ng-compact-syntax"]},"registered":true},{"content-type":"application/remote-printing","encoding":"base64","references":["IANA","RFC1486","[Marshall_Rose]","{application/remote-printing=http://www.iana.org/assignments/media-types/application/remote-printing}"],"xrefs":{"rfc":["rfc1486"],"person":["Marshall_Rose"],"template":["application/remote-printing"]},"registered":true},{"content-type":"application/remote_printing","encoding":"base64","obsolete":true,"use-instead":"application/remote-printing","registered":false},{"content-type":"application/reputon+json","encoding":"base64","references":["IANA","RFC7071","{application/reputon+json=http://www.iana.org/assignments/media-types/application/reputon+json}"],"xrefs":{"rfc":["rfc7071"],"template":["application/reputon+json"]},"registered":true},{"content-type":"application/resource-lists+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rl"],"references":["IANA","RFC4826","{application/resource-lists+xml=http://www.iana.org/assignments/media-types/application/resource-lists+xml}"],"xrefs":{"rfc":["rfc4826"],"template":["application/resource-lists+xml"]},"registered":true},{"content-type":"application/resource-lists-diff+xml","friendly":{"en":"XML Resource Lists Diff"},"encoding":"base64","extensions":["rld"],"references":["IANA","RFC5362","{application/resource-lists-diff+xml=http://www.iana.org/assignments/media-types/application/resource-lists-diff+xml}"],"xrefs":{"rfc":["rfc5362"],"template":["application/resource-lists-diff+xml"]},"registered":true},{"content-type":"application/riscos","encoding":"base64","references":["IANA","[Nick_Smith]","{application/riscos=http://www.iana.org/assignments/media-types/application/riscos}"],"xrefs":{"person":["Nick_Smith"],"template":["application/riscos"]},"registered":true},{"content-type":"application/rlmi+xml","encoding":"base64","references":["IANA","RFC4662","{application/rlmi+xml=http://www.iana.org/assignments/media-types/application/rlmi+xml}"],"xrefs":{"rfc":["rfc4662"],"template":["application/rlmi+xml"]},"registered":true},{"content-type":"application/rls-services+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rs"],"references":["IANA","RFC4826","{application/rls-services+xml=http://www.iana.org/assignments/media-types/application/rls-services+xml}"],"xrefs":{"rfc":["rfc4826"],"template":["application/rls-services+xml"]},"registered":true},{"content-type":"application/rpki-ghostbusters","encoding":"base64","extensions":["gbr"],"references":["IANA","RFC6493","{application/rpki-ghostbusters=http://www.iana.org/assignments/media-types/application/rpki-ghostbusters}"],"xrefs":{"rfc":["rfc6493"],"template":["application/rpki-ghostbusters"]},"registered":true},{"content-type":"application/rpki-manifest","encoding":"base64","extensions":["mft"],"references":["IANA","RFC6481","{application/rpki-manifest=http://www.iana.org/assignments/media-types/application/rpki-manifest}"],"xrefs":{"rfc":["rfc6481"],"template":["application/rpki-manifest"]},"registered":true},{"content-type":"application/rpki-roa","encoding":"base64","extensions":["roa"],"references":["IANA","RFC6481","{application/rpki-roa=http://www.iana.org/assignments/media-types/application/rpki-roa}"],"xrefs":{"rfc":["rfc6481"],"template":["application/rpki-roa"]},"registered":true},{"content-type":"application/rpki-updown","encoding":"base64","references":["IANA","RFC6492","{application/rpki-updown=http://www.iana.org/assignments/media-types/application/rpki-updown}"],"xrefs":{"rfc":["rfc6492"],"template":["application/rpki-updown"]},"registered":true},{"content-type":"application/rsd+xml","friendly":{"en":"Really Simple Discovery"},"encoding":"base64","extensions":["rsd"],"registered":false},{"content-type":"application/rss+xml","friendly":{"en":"RSS - Really Simple Syndication"},"encoding":"base64","extensions":["rss"],"registered":false},{"content-type":"application/rtf","friendly":{"en":"Rich Text Format"},"encoding":"base64","extensions":["rtf"],"references":["IANA","[Paul_Lindner]","{application/rtf=http://www.iana.org/assignments/media-types/application/rtf}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/rtf"]},"registered":true},{"content-type":"application/rtploopback","encoding":"base64","references":["IANA","RFC6849","{application/rtploopback=http://www.iana.org/assignments/media-types/application/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["application/rtploopback"]},"registered":true},{"content-type":"application/rtx","encoding":"base64","references":["IANA","RFC4588","{application/rtx=http://www.iana.org/assignments/media-types/application/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["application/rtx"]},"registered":true},{"content-type":"application/samlassertion+xml","encoding":"base64","references":["IANA","[OASIS_Security_Services_Technical_Committee_SSTC]","{application/samlassertion+xml=http://www.iana.org/assignments/media-types/application/samlassertion+xml}"],"xrefs":{"person":["OASIS_Security_Services_Technical_Committee_SSTC"],"template":["application/samlassertion+xml"]},"registered":true},{"content-type":"application/samlmetadata+xml","encoding":"base64","references":["IANA","[OASIS_Security_Services_Technical_Committee_SSTC]","{application/samlmetadata+xml=http://www.iana.org/assignments/media-types/application/samlmetadata+xml}"],"xrefs":{"person":["OASIS_Security_Services_Technical_Committee_SSTC"],"template":["application/samlmetadata+xml"]},"registered":true},{"content-type":"application/sbml+xml","friendly":{"en":"Systems Biology Markup Language"},"encoding":"base64","extensions":["sbml"],"references":["IANA","RFC3823","{application/sbml+xml=http://www.iana.org/assignments/media-types/application/sbml+xml}"],"xrefs":{"rfc":["rfc3823"],"template":["application/sbml+xml"]},"registered":true},{"content-type":"application/scaip+xml","encoding":"base64","references":["IANA","[SIS]","[Oskar_Jonsson]","{application/scaip+xml=http://www.iana.org/assignments/media-types/application/scaip+xml}"],"xrefs":{"person":["Oskar_Jonsson","SIS"],"template":["application/scaip+xml"]},"registered":true},{"content-type":"application/scim+json","encoding":"base64","references":["IANA","DRAFT:draft-ietf-scim-api-19","{application/scim+json=http://www.iana.org/assignments/media-types/application/scim+json}"],"xrefs":{"draft":["RFC-ietf-scim-api-19"],"template":["application/scim+json"]},"registered":true},{"content-type":"application/scvp-cv-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Request"},"encoding":"base64","extensions":["scq"],"references":["IANA","RFC5055","{application/scvp-cv-request=http://www.iana.org/assignments/media-types/application/scvp-cv-request}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-cv-request"]},"registered":true},{"content-type":"application/scvp-cv-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Response"},"encoding":"base64","extensions":["scs"],"references":["IANA","RFC5055","{application/scvp-cv-response=http://www.iana.org/assignments/media-types/application/scvp-cv-response}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-cv-response"]},"registered":true},{"content-type":"application/scvp-vp-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Request"},"encoding":"base64","extensions":["spq"],"references":["IANA","RFC5055","{application/scvp-vp-request=http://www.iana.org/assignments/media-types/application/scvp-vp-request}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-vp-request"]},"registered":true},{"content-type":"application/scvp-vp-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Response"},"encoding":"base64","extensions":["spp"],"references":["IANA","RFC5055","{application/scvp-vp-response=http://www.iana.org/assignments/media-types/application/scvp-vp-response}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-vp-response"]},"registered":true},{"content-type":"application/sdp","friendly":{"en":"Session Description Protocol"},"encoding":"base64","extensions":["sdp"],"references":["IANA","RFC4566","{application/sdp=http://www.iana.org/assignments/media-types/application/sdp}"],"xrefs":{"rfc":["rfc4566"],"template":["application/sdp"]},"registered":true},{"content-type":"application/sep+xml","encoding":"base64","references":["IANA","[Robby_Simpson]","[ZigBee]","{application/sep+xml=http://www.iana.org/assignments/media-types/application/sep+xml}"],"xrefs":{"person":["Robby_Simpson","ZigBee"],"template":["application/sep+xml"]},"registered":true},{"content-type":"application/sep-exi","encoding":"base64","references":["IANA","[Robby_Simpson]","[ZigBee]","{application/sep-exi=http://www.iana.org/assignments/media-types/application/sep-exi}"],"xrefs":{"person":["Robby_Simpson","ZigBee"],"template":["application/sep-exi"]},"registered":true},{"content-type":"application/session-info","encoding":"base64","references":["IANA","[ThreeGPP]","[Frederic_Firmin]","{application/session-info=http://www.iana.org/assignments/media-types/application/session-info}"],"xrefs":{"person":["Frederic_Firmin","ThreeGPP"],"template":["application/session-info"]},"registered":true},{"content-type":"application/set","encoding":"base64","registered":false},{"content-type":"application/set-payment","encoding":"base64","references":["IANA","[Brian_Korver]","{application/set-payment=http://www.iana.org/assignments/media-types/application/set-payment}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-payment"]},"registered":true},{"content-type":"application/set-payment-initiation","friendly":{"en":"Secure Electronic Transaction - Payment"},"encoding":"base64","extensions":["setpay"],"references":["IANA","[Brian_Korver]","{application/set-payment-initiation=http://www.iana.org/assignments/media-types/application/set-payment-initiation}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-payment-initiation"]},"registered":true},{"content-type":"application/set-registration","encoding":"base64","references":["IANA","[Brian_Korver]","{application/set-registration=http://www.iana.org/assignments/media-types/application/set-registration}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-registration"]},"registered":true},{"content-type":"application/set-registration-initiation","friendly":{"en":"Secure Electronic Transaction - Registration"},"encoding":"base64","extensions":["setreg"],"references":["IANA","[Brian_Korver]","{application/set-registration-initiation=http://www.iana.org/assignments/media-types/application/set-registration-initiation}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-registration-initiation"]},"registered":true},{"content-type":"application/sgml","encoding":"base64","extensions":["sgml"],"references":["IANA","RFC1874","{application/SGML=http://www.iana.org/assignments/media-types/application/SGML}"],"xrefs":{"rfc":["rfc1874"],"template":["application/SGML"]},"registered":true},{"content-type":"application/sgml-open-catalog","encoding":"base64","extensions":["soc"],"references":["IANA","[Paul_Grosso]","{application/sgml-open-catalog=http://www.iana.org/assignments/media-types/application/sgml-open-catalog}"],"xrefs":{"person":["Paul_Grosso"],"template":["application/sgml-open-catalog"]},"registered":true},{"content-type":"application/shf+xml","friendly":{"en":"S Hexdump Format"},"encoding":"base64","extensions":["shf"],"references":["IANA","RFC4194","{application/shf+xml=http://www.iana.org/assignments/media-types/application/shf+xml}"],"xrefs":{"rfc":["rfc4194"],"template":["application/shf+xml"]},"registered":true},{"content-type":"application/sieve","encoding":"base64","extensions":["siv"],"references":["IANA","RFC5228","{application/sieve=http://www.iana.org/assignments/media-types/application/sieve}"],"xrefs":{"rfc":["rfc5228"],"template":["application/sieve"]},"registered":true},{"content-type":"application/simple-filter+xml","encoding":"base64","references":["IANA","RFC4661","{application/simple-filter+xml=http://www.iana.org/assignments/media-types/application/simple-filter+xml}"],"xrefs":{"rfc":["rfc4661"],"template":["application/simple-filter+xml"]},"registered":true},{"content-type":"application/simple-message-summary","encoding":"base64","references":["IANA","RFC3842","{application/simple-message-summary=http://www.iana.org/assignments/media-types/application/simple-message-summary}"],"xrefs":{"rfc":["rfc3842"],"template":["application/simple-message-summary"]},"registered":true},{"content-type":"application/simpleSymbolContainer","encoding":"base64","references":["IANA","[ThreeGPP]","{application/simpleSymbolContainer=http://www.iana.org/assignments/media-types/application/simpleSymbolContainer}"],"xrefs":{"person":["ThreeGPP"],"template":["application/simpleSymbolContainer"]},"registered":true},{"content-type":"application/SLA","encoding":"base64","registered":false},{"content-type":"application/slate","encoding":"base64","references":["IANA","[Terry_Crowley]","{application/slate=http://www.iana.org/assignments/media-types/application/slate}"],"xrefs":{"person":["Terry_Crowley"],"template":["application/slate"]},"registered":true},{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","references":["IANA","RFC4536","{application/smil=http://www.iana.org/assignments/media-types/application/smil}"],"xrefs":{"rfc":["rfc4536"],"template":["application/smil"],"notes":["- OBSOLETED in favor of application/smil+xml"]},"registered":true},{"content-type":"application/smil+xml","friendly":{"en":"Synchronized Multimedia Integration Language"},"encoding":"8bit","extensions":["smi","smil"],"references":["IANA","RFC4536","{application/smil+xml=http://www.iana.org/assignments/media-types/application/smil+xml}"],"xrefs":{"rfc":["rfc4536"],"template":["application/smil+xml"]},"registered":true},{"content-type":"application/smpte336m","encoding":"base64","references":["IANA","RFC6597","{application/smpte336m=http://www.iana.org/assignments/media-types/application/smpte336m}"],"xrefs":{"rfc":["rfc6597"],"template":["application/smpte336m"]},"registered":true},{"content-type":"application/soap+fastinfoset","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/soap+fastinfoset=http://www.iana.org/assignments/media-types/application/soap+fastinfoset}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/soap+fastinfoset"]},"registered":true},{"content-type":"application/soap+xml","encoding":"base64","references":["IANA","RFC3902","{application/soap+xml=http://www.iana.org/assignments/media-types/application/soap+xml}"],"xrefs":{"rfc":["rfc3902"],"template":["application/soap+xml"]},"registered":true},{"content-type":"application/solids","encoding":"base64","registered":false},{"content-type":"application/sparql-query","friendly":{"en":"SPARQL - Query"},"encoding":"base64","extensions":["rq"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType"]},"registered":true},{"content-type":"application/sparql-results+xml","friendly":{"en":"SPARQL - Results"},"encoding":"base64","extensions":["srx"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime"]},"registered":true},{"content-type":"application/spirits-event+xml","encoding":"base64","references":["IANA","RFC3910","{application/spirits-event+xml=http://www.iana.org/assignments/media-types/application/spirits-event+xml}"],"xrefs":{"rfc":["rfc3910"],"template":["application/spirits-event+xml"]},"registered":true},{"content-type":"application/sql","encoding":"base64","references":["IANA","RFC6922","{application/sql=http://www.iana.org/assignments/media-types/application/sql}"],"xrefs":{"rfc":["rfc6922"],"template":["application/sql"]},"registered":true},{"content-type":"application/srgs","friendly":{"en":"Speech Recognition Grammar Specification"},"encoding":"base64","extensions":["gram"],"references":["IANA","RFC4267","{application/srgs=http://www.iana.org/assignments/media-types/application/srgs}"],"xrefs":{"rfc":["rfc4267"],"template":["application/srgs"]},"registered":true},{"content-type":"application/srgs+xml","friendly":{"en":"Speech Recognition Grammar Specification - XML"},"encoding":"base64","extensions":["grxml"],"references":["IANA","RFC4267","{application/srgs+xml=http://www.iana.org/assignments/media-types/application/srgs+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/srgs+xml"]},"registered":true},{"content-type":"application/sru+xml","friendly":{"en":"Search/Retrieve via URL Response Format"},"encoding":"base64","extensions":["sru"],"references":["IANA","RFC6207","{application/sru+xml=http://www.iana.org/assignments/media-types/application/sru+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/sru+xml"]},"registered":true},{"content-type":"application/ssdl+xml","encoding":"base64","extensions":["ssdl"],"registered":false},{"content-type":"application/ssml+xml","friendly":{"en":"Speech Synthesis Markup Language"},"encoding":"base64","extensions":["ssml"],"references":["IANA","RFC4267","{application/ssml+xml=http://www.iana.org/assignments/media-types/application/ssml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/ssml+xml"]},"registered":true},{"content-type":"application/STEP","encoding":"base64","registered":false},{"content-type":"application/tamp-apex-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-apex-update=http://www.iana.org/assignments/media-types/application/tamp-apex-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-apex-update"]},"registered":true},{"content-type":"application/tamp-apex-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-apex-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-apex-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-apex-update-confirm"]},"registered":true},{"content-type":"application/tamp-community-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-community-update=http://www.iana.org/assignments/media-types/application/tamp-community-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-community-update"]},"registered":true},{"content-type":"application/tamp-community-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-community-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-community-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-community-update-confirm"]},"registered":true},{"content-type":"application/tamp-error","encoding":"base64","references":["IANA","RFC5934","{application/tamp-error=http://www.iana.org/assignments/media-types/application/tamp-error}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-error"]},"registered":true},{"content-type":"application/tamp-sequence-adjust","encoding":"base64","references":["IANA","RFC5934","{application/tamp-sequence-adjust=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-sequence-adjust"]},"registered":true},{"content-type":"application/tamp-sequence-adjust-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-sequence-adjust-confirm=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-sequence-adjust-confirm"]},"registered":true},{"content-type":"application/tamp-status-query","encoding":"base64","references":["IANA","RFC5934","{application/tamp-status-query=http://www.iana.org/assignments/media-types/application/tamp-status-query}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-status-query"]},"registered":true},{"content-type":"application/tamp-status-response","encoding":"base64","references":["IANA","RFC5934","{application/tamp-status-response=http://www.iana.org/assignments/media-types/application/tamp-status-response}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-status-response"]},"registered":true},{"content-type":"application/tamp-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-update=http://www.iana.org/assignments/media-types/application/tamp-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-update"]},"registered":true},{"content-type":"application/tamp-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-update-confirm"]},"registered":true},{"content-type":"application/tei+xml","friendly":{"en":"Text Encoding and Interchange"},"encoding":"base64","extensions":["tei","teicorpus"],"references":["IANA","RFC6129","{application/tei+xml=http://www.iana.org/assignments/media-types/application/tei+xml}"],"xrefs":{"rfc":["rfc6129"],"template":["application/tei+xml"]},"registered":true},{"content-type":"application/thraud+xml","friendly":{"en":"Sharing Transaction Fraud Data"},"encoding":"base64","extensions":["tfi"],"references":["IANA","RFC5941","{application/thraud+xml=http://www.iana.org/assignments/media-types/application/thraud+xml}"],"xrefs":{"rfc":["rfc5941"],"template":["application/thraud+xml"]},"registered":true},{"content-type":"application/timestamp-query","encoding":"base64","references":["IANA","RFC3161","{application/timestamp-query=http://www.iana.org/assignments/media-types/application/timestamp-query}"],"xrefs":{"rfc":["rfc3161"],"template":["application/timestamp-query"]},"registered":true},{"content-type":"application/timestamp-reply","encoding":"base64","references":["IANA","RFC3161","{application/timestamp-reply=http://www.iana.org/assignments/media-types/application/timestamp-reply}"],"xrefs":{"rfc":["rfc3161"],"template":["application/timestamp-reply"]},"registered":true},{"content-type":"application/timestamped-data","friendly":{"en":"Time Stamped Data Envelope"},"encoding":"base64","extensions":["tsd"],"references":["IANA","RFC5955","{application/timestamped-data=http://www.iana.org/assignments/media-types/application/timestamped-data}"],"xrefs":{"rfc":["rfc5955"],"template":["application/timestamped-data"]},"registered":true},{"content-type":"application/toolbook","encoding":"base64","extensions":["tbk"],"obsolete":true,"use-instead":"application/x-toolbook","registered":false},{"content-type":"application/ttml+xml","encoding":"base64","references":["IANA","[W3C]","[W3C_Timed_Text_Working_Group]","{application/ttml+xml=http://www.iana.org/assignments/media-types/application/ttml+xml}"],"xrefs":{"person":["W3C","W3C_Timed_Text_Working_Group"],"template":["application/ttml+xml"]},"registered":true},{"content-type":"application/tve-trigger","encoding":"base64","references":["IANA","[Linda_Welsh]","{application/tve-trigger=http://www.iana.org/assignments/media-types/application/tve-trigger}"],"xrefs":{"person":["Linda_Welsh"],"template":["application/tve-trigger"]},"registered":true},{"content-type":"application/ulpfec","encoding":"base64","references":["IANA","RFC5109","{application/ulpfec=http://www.iana.org/assignments/media-types/application/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["application/ulpfec"]},"registered":true},{"content-type":"application/urc-grpsheet+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-grpsheet+xml=http://www.iana.org/assignments/media-types/application/urc-grpsheet+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-grpsheet+xml"]},"registered":true},{"content-type":"application/urc-ressheet+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-ressheet+xml=http://www.iana.org/assignments/media-types/application/urc-ressheet+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-ressheet+xml"]},"registered":true},{"content-type":"application/urc-targetdesc+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-targetdesc+xml=http://www.iana.org/assignments/media-types/application/urc-targetdesc+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-targetdesc+xml"]},"registered":true},{"content-type":"application/urc-uisocketdesc+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-uisocketdesc+xml=http://www.iana.org/assignments/media-types/application/urc-uisocketdesc+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-uisocketdesc+xml"]},"registered":true},{"content-type":"application/vcard+json","encoding":"base64","references":["IANA","RFC7095","{application/vcard+json=http://www.iana.org/assignments/media-types/application/vcard+json}"],"xrefs":{"rfc":["rfc7095"],"template":["application/vcard+json"]},"registered":true},{"content-type":"application/vcard+xml","encoding":"base64","references":["IANA","RFC6351","{application/vcard+xml=http://www.iana.org/assignments/media-types/application/vcard+xml}"],"xrefs":{"rfc":["rfc6351"],"template":["application/vcard+xml"]},"registered":true},{"content-type":"application/vda","encoding":"base64","registered":false},{"content-type":"application/vemmi","encoding":"base64","references":["IANA","RFC2122","{application/vemmi=http://www.iana.org/assignments/media-types/application/vemmi}"],"xrefs":{"rfc":["rfc2122"],"template":["application/vemmi"]},"registered":true},{"content-type":"application/VMSBACKUP","encoding":"base64","extensions":["bck"],"obsolete":true,"use-instead":"application/x-VMSBACKUP","registered":false},{"content-type":"application/vnd.3gpp-prose+xml","encoding":"base64","references":["IANA","[Frederic_Firmin]","{application/vnd.3gpp-prose+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp-prose+xml}"],"xrefs":{"person":["Frederic_Firmin"],"template":["application/vnd.3gpp-prose+xml"]},"registered":true},{"content-type":"application/vnd.3gpp-prose-pc3ch+xml","encoding":"base64","references":["IANA","[Frederic_Firmin]","{application/vnd.3gpp-prose-pc3ch+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp-prose-pc3ch+xml}"],"xrefs":{"person":["Frederic_Firmin"],"template":["application/vnd.3gpp-prose-pc3ch+xml"]},"registered":true},{"content-type":"application/vnd.3gpp.bsf+xml","encoding":"base64","references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.bsf+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.bsf+xml}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.bsf+xml"]},"registered":true},{"content-type":"application/vnd.3gpp.mid-call+xml","encoding":"base64","references":["IANA","[Frederic_Firmin]","{application/vnd.3gpp.mid-call+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.mid-call+xml}"],"xrefs":{"person":["Frederic_Firmin"],"template":["application/vnd.3gpp.mid-call+xml"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-large","friendly":{"en":"3rd Generation Partnership Project - Pic Large"},"encoding":"base64","extensions":["plb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-large=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-large}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-large"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-small","friendly":{"en":"3rd Generation Partnership Project - Pic Small"},"encoding":"base64","extensions":["psb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-small=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-small}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-small"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-var","friendly":{"en":"3rd Generation Partnership Project - Pic Var"},"encoding":"base64","extensions":["pvb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-var=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-var}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-var"]},"registered":true},{"content-type":"application/vnd.3gpp.sms","encoding":"base64","extensions":["sms"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp.sms}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.sms"]},"registered":true},{"content-type":"application/vnd.3gpp.state-and-event-info+xml","encoding":"base64","references":["IANA","[Frederic_Firmin]","{application/vnd.3gpp.state-and-event-info+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.state-and-event-info+xml}"],"xrefs":{"person":["Frederic_Firmin"],"template":["application/vnd.3gpp.state-and-event-info+xml"]},"registered":true},{"content-type":"application/vnd.3gpp.ussd+xml","encoding":"base64","references":["IANA","[Frederic_Firmin]","{application/vnd.3gpp.ussd+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.ussd+xml}"],"xrefs":{"person":["Frederic_Firmin"],"template":["application/vnd.3gpp.ussd+xml"]},"registered":true},{"content-type":"application/vnd.3gpp2.bcmcsinfo+xml","encoding":"base64","references":["IANA","[Andy_Dryden]","{application/vnd.3gpp2.bcmcsinfo+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.bcmcsinfo+xml}"],"xrefs":{"person":["Andy_Dryden"],"template":["application/vnd.3gpp2.bcmcsinfo+xml"]},"registered":true},{"content-type":"application/vnd.3gpp2.sms","encoding":"base64","references":["IANA","[AC_Mahendran]","{application/vnd.3gpp2.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.sms}"],"xrefs":{"person":["AC_Mahendran"],"template":["application/vnd.3gpp2.sms"]},"registered":true},{"content-type":"application/vnd.3gpp2.tcap","friendly":{"en":"3rd Generation Partnership Project - Transaction Capabilities Application Part"},"encoding":"base64","extensions":["tcap"],"references":["IANA","[AC_Mahendran]","{application/vnd.3gpp2.tcap=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.tcap}"],"xrefs":{"person":["AC_Mahendran"],"template":["application/vnd.3gpp2.tcap"]},"registered":true},{"content-type":"application/vnd.3M.Post-it-Notes","friendly":{"en":"3M Post It Notes"},"encoding":"base64","extensions":["pwn"],"references":["IANA","[Michael_OBrien]","{application/vnd.3M.Post-it-Notes=http://www.iana.org/assignments/media-types/application/vnd.3M.Post-it-Notes}"],"xrefs":{"person":["Michael_OBrien"],"template":["application/vnd.3M.Post-it-Notes"]},"registered":true},{"content-type":"application/vnd.accpac.simply.aso","friendly":{"en":"Simply Accounting"},"encoding":"base64","extensions":["aso"],"references":["IANA","[Steve_Leow]","{application/vnd.accpac.simply.aso=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.aso}"],"xrefs":{"person":["Steve_Leow"],"template":["application/vnd.accpac.simply.aso"]},"registered":true},{"content-type":"application/vnd.accpac.simply.imp","friendly":{"en":"Simply Accounting - Data Import"},"encoding":"base64","extensions":["imp"],"references":["IANA","[Steve_Leow]","{application/vnd.accpac.simply.imp=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.imp}"],"xrefs":{"person":["Steve_Leow"],"template":["application/vnd.accpac.simply.imp"]},"registered":true},{"content-type":"application/vnd.acucobol","friendly":{"en":"ACU Cobol"},"encoding":"base64","extensions":["acu"],"references":["IANA","[Dovid_Lubin]","{application/vnd-acucobol=http://www.iana.org/assignments/media-types/application/vnd-acucobol}"],"xrefs":{"person":["Dovid_Lubin"],"template":["application/vnd-acucobol"]},"registered":true},{"content-type":"application/vnd.acucorp","friendly":{"en":"ACU Cobol"},"encoding":"7bit","extensions":["atc","acutc"],"references":["IANA","[Dovid_Lubin]","{application/vnd.acucorp=http://www.iana.org/assignments/media-types/application/vnd.acucorp}"],"xrefs":{"person":["Dovid_Lubin"],"template":["application/vnd.acucorp"]},"registered":true},{"content-type":"application/vnd.adobe.air-application-installer-package+zip","friendly":{"en":"Adobe AIR Application"},"encoding":"base64","extensions":["air"],"registered":false},{"content-type":"application/vnd.adobe.flash.movie","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.adobe.flash-movie=http://www.iana.org/assignments/media-types/application/vnd.adobe.flash-movie}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.adobe.flash-movie"]},"registered":true},{"content-type":"application/vnd.adobe.formscentral.fcdt","encoding":"base64","extensions":["fcdt"],"references":["IANA","[Chris_Solc]","{application/vnd.adobe.formscentral.fcdt=http://www.iana.org/assignments/media-types/application/vnd.adobe.formscentral.fcdt}"],"xrefs":{"person":["Chris_Solc"],"template":["application/vnd.adobe.formscentral.fcdt"]},"registered":true},{"content-type":"application/vnd.adobe.fxp","friendly":{"en":"Adobe Flex Project"},"encoding":"base64","extensions":["fxp","fxpl"],"references":["IANA","[Robert_Brambley]","[Steven_Heintz]","{application/vnd.adobe.fxp=http://www.iana.org/assignments/media-types/application/vnd.adobe.fxp}"],"xrefs":{"person":["Robert_Brambley","Steven_Heintz"],"template":["application/vnd.adobe.fxp"]},"registered":true},{"content-type":"application/vnd.adobe.partial-upload","encoding":"base64","references":["IANA","[Tapani_Otala]","{application/vnd.adobe.partial-upload=http://www.iana.org/assignments/media-types/application/vnd.adobe.partial-upload}"],"xrefs":{"person":["Tapani_Otala"],"template":["application/vnd.adobe.partial-upload"]},"registered":true},{"content-type":"application/vnd.adobe.xdp+xml","friendly":{"en":"Adobe XML Data Package"},"encoding":"base64","extensions":["xdp"],"references":["IANA","[John_Brinkman]","{application/vnd.adobe.xdp+xml=http://www.iana.org/assignments/media-types/application/vnd.adobe.xdp+xml}"],"xrefs":{"person":["John_Brinkman"],"template":["application/vnd.adobe.xdp+xml"]},"registered":true},{"content-type":"application/vnd.adobe.xfdf","friendly":{"en":"Adobe XML Forms Data Format"},"encoding":"base64","extensions":["xfdf"],"references":["IANA","[Roberto_Perelman]","{application/vnd.adobe.xfdf=http://www.iana.org/assignments/media-types/application/vnd.adobe.xfdf}"],"xrefs":{"person":["Roberto_Perelman"],"template":["application/vnd.adobe.xfdf"]},"registered":true},{"content-type":"application/vnd.aether.imp","encoding":"base64","references":["IANA","[Jay_Moskowitz]","{application/vnd.aether.imp=http://www.iana.org/assignments/media-types/application/vnd.aether.imp}"],"xrefs":{"person":["Jay_Moskowitz"],"template":["application/vnd.aether.imp"]},"registered":true},{"content-type":"application/vnd.ah-barcode","encoding":"base64","references":["IANA","[Katsuhiko_Ichinose]","{application/vnd.ah-barcode=http://www.iana.org/assignments/media-types/application/vnd.ah-barcode}"],"xrefs":{"person":["Katsuhiko_Ichinose"],"template":["application/vnd.ah-barcode"]},"registered":true},{"content-type":"application/vnd.ahead.space","friendly":{"en":"Ahead AIR Application"},"encoding":"base64","extensions":["ahead"],"references":["IANA","[Tor_Kristensen]","{application/vnd.ahead.space=http://www.iana.org/assignments/media-types/application/vnd.ahead.space}"],"xrefs":{"person":["Tor_Kristensen"],"template":["application/vnd.ahead.space"]},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azf","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azf"],"references":["IANA","[Daniel_Mould]","[Gary_Clueit]","{application/vnd.airzip.filesecure.azf=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azf}"],"xrefs":{"person":["Daniel_Mould","Gary_Clueit"],"template":["application/vnd.airzip.filesecure.azf"]},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azs","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azs"],"references":["IANA","[Daniel_Mould]","[Gary_Clueit]","{application/vnd.airzip.filesecure.azs=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azs}"],"xrefs":{"person":["Daniel_Mould","Gary_Clueit"],"template":["application/vnd.airzip.filesecure.azs"]},"registered":true},{"content-type":"application/vnd.amazon.ebook","friendly":{"en":"Amazon Kindle eBook format"},"encoding":"base64","extensions":["azw"],"registered":false},{"content-type":"application/vnd.americandynamics.acc","friendly":{"en":"Active Content Compression"},"encoding":"base64","extensions":["acc"],"references":["IANA","[Gary_Sands]","{application/vnd.americandynamics.acc=http://www.iana.org/assignments/media-types/application/vnd.americandynamics.acc}"],"xrefs":{"person":["Gary_Sands"],"template":["application/vnd.americandynamics.acc"]},"registered":true},{"content-type":"application/vnd.amiga.ami","friendly":{"en":"AmigaDE"},"encoding":"base64","extensions":["ami"],"references":["IANA","[Kevin_Blumberg]","{application/vnd.amiga.ami=http://www.iana.org/assignments/media-types/application/vnd.amiga.ami}"],"xrefs":{"person":["Kevin_Blumberg"],"template":["application/vnd.amiga.ami"]},"registered":true},{"content-type":"application/vnd.amundsen.maze+xml","encoding":"base64","references":["IANA","[Mike_Amundsen]","{application/vnd.amundsen.maze+xml=http://www.iana.org/assignments/media-types/application/vnd.amundsen.maze+xml}"],"xrefs":{"person":["Mike_Amundsen"],"template":["application/vnd.amundsen.maze+xml"]},"registered":true},{"content-type":"application/vnd.android.package-archive","friendly":{"en":"Android Package Archive"},"encoding":"base64","extensions":["apk"],"registered":false},{"content-type":"application/vnd.anki","encoding":"base64","references":["IANA","[Kerrick_Staley]","{application/vnd.anki=http://www.iana.org/assignments/media-types/application/vnd.anki}"],"xrefs":{"person":["Kerrick_Staley"],"template":["application/vnd.anki"]},"registered":true},{"content-type":"application/vnd.anser-web-certificate-issue-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Certificate Issue"},"encoding":"base64","extensions":["cii"],"references":["IANA","[Hiroyoshi_Mori]","{application/vnd.anser-web-certificate-issue-initiation=http://www.iana.org/assignments/media-types/application/vnd.anser-web-certificate-issue-initiation}"],"xrefs":{"person":["Hiroyoshi_Mori"],"template":["application/vnd.anser-web-certificate-issue-initiation"]},"registered":true},{"content-type":"application/vnd.anser-web-funds-transfer-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Web Funds Transfer"},"encoding":"base64","extensions":["fti"],"registered":false},{"content-type":"application/vnd.antix.game-component","friendly":{"en":"Antix Game Player"},"encoding":"base64","extensions":["atx"],"references":["IANA","[Daniel_Shelton]","{application/vnd.antix.game-component=http://www.iana.org/assignments/media-types/application/vnd.antix.game-component}"],"xrefs":{"person":["Daniel_Shelton"],"template":["application/vnd.antix.game-component"]},"registered":true},{"content-type":"application/vnd.apache.thrift.binary","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.binary=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.binary}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.binary"]},"registered":true},{"content-type":"application/vnd.apache.thrift.compact","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.compact=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.compact}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.compact"]},"registered":true},{"content-type":"application/vnd.apache.thrift.json","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.json=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.json}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.json"]},"registered":true},{"content-type":"application/vnd.api+json","encoding":"base64","references":["IANA","[Steve_Klabnik]","{application/vnd.api+json=http://www.iana.org/assignments/media-types/application/vnd.api+json}"],"xrefs":{"person":["Steve_Klabnik"],"template":["application/vnd.api+json"]},"registered":true},{"content-type":"application/vnd.apple.installer+xml","friendly":{"en":"Apple Installer Package"},"encoding":"base64","extensions":["mpkg"],"references":["IANA","[Peter_Bierman]","{application/vnd.apple.installer+xml=http://www.iana.org/assignments/media-types/application/vnd.apple.installer+xml}"],"xrefs":{"person":["Peter_Bierman"],"template":["application/vnd.apple.installer+xml"]},"registered":true},{"content-type":"application/vnd.apple.mpegurl","friendly":{"en":"Multimedia Playlist Unicode"},"encoding":"base64","extensions":["m3u8"],"references":["IANA","[David_Singer]","[Roger_Pantos]","{application/vnd.apple.mpegurl=http://www.iana.org/assignments/media-types/application/vnd.apple.mpegurl}"],"xrefs":{"person":["David_Singer","Roger_Pantos"],"template":["application/vnd.apple.mpegurl"]},"registered":true},{"content-type":"application/vnd.apple.pkpass","encoding":"base64","extensions":["pkpass"],"references":["{Passbook Programming Guide=https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/PassKit_PG/Chapters/Introduction.html}"],"registered":false},{"content-type":"application/vnd.arastra.swi","encoding":"base64","obsolete":true,"use-instead":"application/vnd.aristanetworks.swi","references":["IANA","[Bill_Fenner]","{application/vnd.arastra.swi=http://www.iana.org/assignments/media-types/application/vnd.arastra.swi}"],"xrefs":{"person":["Bill_Fenner"],"template":["application/vnd.arastra.swi"],"notes":["- OBSOLETED in favor of application/vnd.aristanetworks.swi"]},"registered":true},{"content-type":"application/vnd.aristanetworks.swi","friendly":{"en":"Arista Networks Software Image"},"encoding":"base64","extensions":["swi"],"references":["IANA","[Bill_Fenner]","{application/vnd.aristanetworks.swi=http://www.iana.org/assignments/media-types/application/vnd.aristanetworks.swi}"],"xrefs":{"person":["Bill_Fenner"],"template":["application/vnd.aristanetworks.swi"]},"registered":true},{"content-type":"application/vnd.artsquare","encoding":"base64","references":["IANA","[Christopher_Smith]","{application/vnd.artsquare=http://www.iana.org/assignments/media-types/application/vnd.artsquare}"],"xrefs":{"person":["Christopher_Smith"],"template":["application/vnd.artsquare"]},"registered":true},{"content-type":"application/vnd.astraea-software.iota","encoding":"base64","extensions":["iota"],"references":["IANA","[Christopher_Snazell]","{application/vnd.astraea-software.iota=http://www.iana.org/assignments/media-types/application/vnd.astraea-software.iota}"],"xrefs":{"person":["Christopher_Snazell"],"template":["application/vnd.astraea-software.iota"]},"registered":true},{"content-type":"application/vnd.audiograph","friendly":{"en":"Audiograph"},"encoding":"base64","extensions":["aep"],"references":["IANA","[Horia_Cristian_Slusanschi]","{application/vnd.audiograph=http://www.iana.org/assignments/media-types/application/vnd.audiograph}"],"xrefs":{"person":["Horia_Cristian_Slusanschi"],"template":["application/vnd.audiograph"]},"registered":true},{"content-type":"application/vnd.autopackage","encoding":"base64","references":["IANA","[Mike_Hearn]","{application/vnd.autopackage=http://www.iana.org/assignments/media-types/application/vnd.autopackage}"],"xrefs":{"person":["Mike_Hearn"],"template":["application/vnd.autopackage"]},"registered":true},{"content-type":"application/vnd.avistar+xml","encoding":"base64","references":["IANA","[Vladimir_Vysotsky]","{application/vnd.avistar+xml=http://www.iana.org/assignments/media-types/application/vnd.avistar+xml}"],"xrefs":{"person":["Vladimir_Vysotsky"],"template":["application/vnd.avistar+xml"]},"registered":true},{"content-type":"application/vnd.balsamiq.bmml+xml","encoding":"base64","references":["IANA","[Giacomo_Guilizzoni]","{application/vnd.balsamiq.bmml+xml=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmml+xml}"],"xrefs":{"person":["Giacomo_Guilizzoni"],"template":["application/vnd.balsamiq.bmml+xml"]},"registered":true},{"content-type":"application/vnd.balsamiq.bmpr","encoding":"base64","references":["IANA","[Giacomo_Guilizzoni]","{application/vnd.balsamiq.bmpr=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmpr}"],"xrefs":{"person":["Giacomo_Guilizzoni"],"template":["application/vnd.balsamiq.bmpr"]},"registered":true},{"content-type":"application/vnd.bekitzur-stech+json","encoding":"base64","references":["IANA","[Jegulsky]","{application/vnd.bekitzur-stech+json=http://www.iana.org/assignments/media-types/application/vnd.bekitzur-stech+json}"],"xrefs":{"person":["Jegulsky"],"template":["application/vnd.bekitzur-stech+json"]},"registered":true},{"content-type":"application/vnd.biopax.rdf+xml","encoding":"base64","references":["IANA","[Pathway_Commons]","{application/vnd.biopax.rdf+xml=http://www.iana.org/assignments/media-types/application/vnd.biopax.rdf+xml}"],"xrefs":{"person":["Pathway_Commons"],"template":["application/vnd.biopax.rdf+xml"]},"registered":true},{"content-type":"application/vnd.blueice.multipass","friendly":{"en":"Blueice Research Multipass"},"encoding":"base64","extensions":["mpm"],"references":["IANA","[Thomas_Holmstrom]","{application/vnd.blueice.multipass=http://www.iana.org/assignments/media-types/application/vnd.blueice.multipass}"],"xrefs":{"person":["Thomas_Holmstrom"],"template":["application/vnd.blueice.multipass"]},"registered":true},{"content-type":"application/vnd.bluetooth.ep.oob","encoding":"base64","references":["IANA","[Mike_Foley]","{application/vnd.bluetooth.ep.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.ep.oob}"],"xrefs":{"person":["Mike_Foley"],"template":["application/vnd.bluetooth.ep.oob"]},"registered":true},{"content-type":"application/vnd.bluetooth.le.oob","encoding":"base64","references":["IANA","[Mark_Powell]","{application/vnd.bluetooth.le.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.le.oob}"],"xrefs":{"person":["Mark_Powell"],"template":["application/vnd.bluetooth.le.oob"]},"registered":true},{"content-type":"application/vnd.bmi","friendly":{"en":"BMI Drawing Data Interchange"},"encoding":"base64","extensions":["bmi"],"references":["IANA","[Tadashi_Gotoh]","{application/vnd.bmi=http://www.iana.org/assignments/media-types/application/vnd.bmi}"],"xrefs":{"person":["Tadashi_Gotoh"],"template":["application/vnd.bmi"]},"registered":true},{"content-type":"application/vnd.businessobjects","friendly":{"en":"BusinessObjects"},"encoding":"base64","extensions":["rep"],"references":["IANA","[Philippe_Imoucha]","{application/vnd.businessobjects=http://www.iana.org/assignments/media-types/application/vnd.businessobjects}"],"xrefs":{"person":["Philippe_Imoucha"],"template":["application/vnd.businessobjects"]},"registered":true},{"content-type":"application/vnd.cab-jscript","encoding":"base64","references":["IANA","[Joerg_Falkenberg]","{application/vnd.cab-jscript=http://www.iana.org/assignments/media-types/application/vnd.cab-jscript}"],"xrefs":{"person":["Joerg_Falkenberg"],"template":["application/vnd.cab-jscript"]},"registered":true},{"content-type":"application/vnd.canon-cpdl","encoding":"base64","references":["IANA","[Shin_Muto]","{application/vnd.canon-cpdl=http://www.iana.org/assignments/media-types/application/vnd.canon-cpdl}"],"xrefs":{"person":["Shin_Muto"],"template":["application/vnd.canon-cpdl"]},"registered":true},{"content-type":"application/vnd.canon-lips","encoding":"base64","references":["IANA","[Shin_Muto]","{application/vnd.canon-lips=http://www.iana.org/assignments/media-types/application/vnd.canon-lips}"],"xrefs":{"person":["Shin_Muto"],"template":["application/vnd.canon-lips"]},"registered":true},{"content-type":"application/vnd.cendio.thinlinc.clientconf","encoding":"base64","references":["IANA","[Peter_Astrand]","{application/vnd.cendio.thinlinc.clientconf=http://www.iana.org/assignments/media-types/application/vnd.cendio.thinlinc.clientconf}"],"xrefs":{"person":["Peter_Astrand"],"template":["application/vnd.cendio.thinlinc.clientconf"]},"registered":true},{"content-type":"application/vnd.century-systems.tcp_stream","encoding":"base64","references":["IANA","[Shuji_Fujii]","{application/vnd.century-systems.tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.century-systems.tcp_stream}"],"xrefs":{"person":["Shuji_Fujii"],"template":["application/vnd.century-systems.tcp_stream"]},"registered":true},{"content-type":"application/vnd.chemdraw+xml","friendly":{"en":"CambridgeSoft Chem Draw"},"encoding":"base64","extensions":["cdxml"],"references":["IANA","[Glenn_Howes]","{application/vnd.chemdraw+xml=http://www.iana.org/assignments/media-types/application/vnd.chemdraw+xml}"],"xrefs":{"person":["Glenn_Howes"],"template":["application/vnd.chemdraw+xml"]},"registered":true},{"content-type":"application/vnd.chipnuts.karaoke-mmd","friendly":{"en":"Karaoke on Chipnuts Chipsets"},"encoding":"base64","extensions":["mmd"],"references":["IANA","[Chunyun_Xiong]","{application/vnd.chipnuts.karaoke-mmd=http://www.iana.org/assignments/media-types/application/vnd.chipnuts.karaoke-mmd}"],"xrefs":{"person":["Chunyun_Xiong"],"template":["application/vnd.chipnuts.karaoke-mmd"]},"registered":true},{"content-type":"application/vnd.cinderella","friendly":{"en":"Interactive Geometry Software Cinderella"},"encoding":"base64","extensions":["cdy"],"references":["IANA","[Ulrich_Kortenkamp]","{application/vnd.cinderella=http://www.iana.org/assignments/media-types/application/vnd.cinderella}"],"xrefs":{"person":["Ulrich_Kortenkamp"],"template":["application/vnd.cinderella"]},"registered":true},{"content-type":"application/vnd.cirpack.isdn-ext","encoding":"base64","references":["IANA","[Pascal_Mayeux]","{application/vnd.cirpack.isdn-ext=http://www.iana.org/assignments/media-types/application/vnd.cirpack.isdn-ext}"],"xrefs":{"person":["Pascal_Mayeux"],"template":["application/vnd.cirpack.isdn-ext"]},"registered":true},{"content-type":"application/vnd.citationstyles.style+xml","encoding":"base64","references":["IANA","[Rintze_M._Zelle]","{application/vnd.citationstyles.style+xml=http://www.iana.org/assignments/media-types/application/vnd.citationstyles.style+xml}"],"xrefs":{"person":["Rintze_M._Zelle"],"template":["application/vnd.citationstyles.style+xml"]},"registered":true},{"content-type":"application/vnd.claymore","friendly":{"en":"Claymore Data Files"},"encoding":"base64","extensions":["cla"],"references":["IANA","[Ray_Simpson]","{application/vnd.claymore=http://www.iana.org/assignments/media-types/application/vnd.claymore}"],"xrefs":{"person":["Ray_Simpson"],"template":["application/vnd.claymore"]},"registered":true},{"content-type":"application/vnd.cloanto.rp9","friendly":{"en":"RetroPlatform Player"},"encoding":"base64","extensions":["rp9"],"references":["IANA","[Mike_Labatt]","{application/vnd.cloanto.rp9=http://www.iana.org/assignments/media-types/application/vnd.cloanto.rp9}"],"xrefs":{"person":["Mike_Labatt"],"template":["application/vnd.cloanto.rp9"]},"registered":true},{"content-type":"application/vnd.clonk.c4group","friendly":{"en":"Clonk Game"},"encoding":"base64","extensions":["c4d","c4f","c4g","c4p","c4u"],"references":["IANA","[Guenther_Brammer]","{application/vnd.clonk.c4group=http://www.iana.org/assignments/media-types/application/vnd.clonk.c4group}"],"xrefs":{"person":["Guenther_Brammer"],"template":["application/vnd.clonk.c4group"]},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config","friendly":{"en":"ClueTrust CartoMobile - Config"},"encoding":"base64","extensions":["c11amc"],"references":["IANA","[Gaige_Paulsen]","{application/vnd.cluetrust.cartomobile-config=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config}"],"xrefs":{"person":["Gaige_Paulsen"],"template":["application/vnd.cluetrust.cartomobile-config"]},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config-pkg","friendly":{"en":"ClueTrust CartoMobile - Config Package"},"encoding":"base64","extensions":["c11amz"],"references":["IANA","[Gaige_Paulsen]","{application/vnd.cluetrust.cartomobile-config-pkg=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config-pkg}"],"xrefs":{"person":["Gaige_Paulsen"],"template":["application/vnd.cluetrust.cartomobile-config-pkg"]},"registered":true},{"content-type":"application/vnd.coffeescript","encoding":"base64","references":["IANA","[Devyn_Collier_Johnson]","{application/vnd.coffeescript=http://www.iana.org/assignments/media-types/application/vnd.coffeescript}"],"xrefs":{"person":["Devyn_Collier_Johnson"],"template":["application/vnd.coffeescript"]},"registered":true},{"content-type":"application/vnd.collection+json","encoding":"base64","references":["IANA","[Mike_Amundsen]","{application/vnd.collection+json=http://www.iana.org/assignments/media-types/application/vnd.collection+json}"],"xrefs":{"person":["Mike_Amundsen"],"template":["application/vnd.collection+json"]},"registered":true},{"content-type":"application/vnd.collection.doc+json","encoding":"base64","references":["IANA","[Irakli_Nadareishvili]","{application/vnd.collection.doc+json=http://www.iana.org/assignments/media-types/application/vnd.collection.doc+json}"],"xrefs":{"person":["Irakli_Nadareishvili"],"template":["application/vnd.collection.doc+json"]},"registered":true},{"content-type":"application/vnd.collection.next+json","encoding":"base64","references":["IANA","[Ioseb_Dzmanashvili]","{application/vnd.collection.next+json=http://www.iana.org/assignments/media-types/application/vnd.collection.next+json}"],"xrefs":{"person":["Ioseb_Dzmanashvili"],"template":["application/vnd.collection.next+json"]},"registered":true},{"content-type":"application/vnd.commerce-battelle","encoding":"base64","references":["IANA","[David_Applebaum]","{application/vnd.commerce-battelle=http://www.iana.org/assignments/media-types/application/vnd.commerce-battelle}"],"xrefs":{"person":["David_Applebaum"],"template":["application/vnd.commerce-battelle"]},"registered":true},{"content-type":"application/vnd.commonspace","friendly":{"en":"Sixth Floor Media - CommonSpace"},"encoding":"base64","extensions":["csp"],"references":["IANA","[Ravinder_Chandhok]","{application/vnd.commonspace=http://www.iana.org/assignments/media-types/application/vnd.commonspace}"],"xrefs":{"person":["Ravinder_Chandhok"],"template":["application/vnd.commonspace"]},"registered":true},{"content-type":"application/vnd.contact.cmsg","friendly":{"en":"CIM Database"},"encoding":"base64","extensions":["cdbcmsg"],"references":["IANA","[Frank_Patz]","{application/vnd.contact.cmsg=http://www.iana.org/assignments/media-types/application/vnd.contact.cmsg}"],"xrefs":{"person":["Frank_Patz"],"template":["application/vnd.contact.cmsg"]},"registered":true},{"content-type":"application/vnd.cosmocaller","friendly":{"en":"CosmoCaller"},"encoding":"base64","extensions":["cmc"],"references":["IANA","[Steve_Dellutri]","{application/vnd.cosmocaller=http://www.iana.org/assignments/media-types/application/vnd.cosmocaller}"],"xrefs":{"person":["Steve_Dellutri"],"template":["application/vnd.cosmocaller"]},"registered":true},{"content-type":"application/vnd.crick.clicker","friendly":{"en":"CrickSoftware - Clicker"},"encoding":"base64","extensions":["clkx"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker"]},"registered":true},{"content-type":"application/vnd.crick.clicker.keyboard","friendly":{"en":"CrickSoftware - Clicker - Keyboard"},"encoding":"base64","extensions":["clkk"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.keyboard=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.keyboard}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.keyboard"]},"registered":true},{"content-type":"application/vnd.crick.clicker.palette","friendly":{"en":"CrickSoftware - Clicker - Palette"},"encoding":"base64","extensions":["clkp"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.palette=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.palette}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.palette"]},"registered":true},{"content-type":"application/vnd.crick.clicker.template","friendly":{"en":"CrickSoftware - Clicker - Template"},"encoding":"base64","extensions":["clkt"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.template=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.template}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.template"]},"registered":true},{"content-type":"application/vnd.crick.clicker.wordbank","friendly":{"en":"CrickSoftware - Clicker - Wordbank"},"encoding":"base64","extensions":["clkw"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.wordbank=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.wordbank}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.wordbank"]},"registered":true},{"content-type":"application/vnd.criticaltools.wbs+xml","friendly":{"en":"Critical Tools - PERT Chart EXPERT"},"encoding":"base64","extensions":["wbs"],"references":["IANA","[Jim_Spiller]","{application/vnd.criticaltools.wbs+xml=http://www.iana.org/assignments/media-types/application/vnd.criticaltools.wbs+xml}"],"xrefs":{"person":["Jim_Spiller"],"template":["application/vnd.criticaltools.wbs+xml"]},"registered":true},{"content-type":"application/vnd.ctc-posml","friendly":{"en":"PosML"},"encoding":"base64","extensions":["pml"],"references":["IANA","[Bayard_Kohlhepp]","{application/vnd.ctc-posml=http://www.iana.org/assignments/media-types/application/vnd.ctc-posml}"],"xrefs":{"person":["Bayard_Kohlhepp"],"template":["application/vnd.ctc-posml"]},"registered":true},{"content-type":"application/vnd.ctct.ws+xml","encoding":"base64","references":["IANA","[Jim_Ancona]","{application/vnd.ctct.ws+xml=http://www.iana.org/assignments/media-types/application/vnd.ctct.ws+xml}"],"xrefs":{"person":["Jim_Ancona"],"template":["application/vnd.ctct.ws+xml"]},"registered":true},{"content-type":"application/vnd.cups-pdf","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-pdf=http://www.iana.org/assignments/media-types/application/vnd.cups-pdf}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-pdf"]},"registered":true},{"content-type":"application/vnd.cups-postscript","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-postscript=http://www.iana.org/assignments/media-types/application/vnd.cups-postscript}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-postscript"]},"registered":true},{"content-type":"application/vnd.cups-ppd","friendly":{"en":"Adobe PostScript Printer Description File Format"},"encoding":"base64","extensions":["ppd"],"references":["IANA","[Michael_Sweet]","{application/vnd.cups-ppd=http://www.iana.org/assignments/media-types/application/vnd.cups-ppd}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-ppd"]},"registered":true},{"content-type":"application/vnd.cups-raster","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-raster=http://www.iana.org/assignments/media-types/application/vnd.cups-raster}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-raster"]},"registered":true},{"content-type":"application/vnd.cups-raw","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-raw=http://www.iana.org/assignments/media-types/application/vnd.cups-raw}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-raw"]},"registered":true},{"content-type":"application/vnd.curl","encoding":"base64","extensions":["curl"],"references":["IANA","[Robert_Byrnes]","{application/vnd-curl=http://www.iana.org/assignments/media-types/application/vnd-curl}"],"xrefs":{"person":["Robert_Byrnes"],"template":["application/vnd-curl"]},"registered":true},{"content-type":"application/vnd.curl.car","friendly":{"en":"CURL Applet"},"encoding":"base64","extensions":["car"],"registered":false},{"content-type":"application/vnd.curl.pcurl","friendly":{"en":"CURL Applet"},"encoding":"base64","extensions":["pcurl"],"registered":false},{"content-type":"application/vnd.cyan.dean.root+xml","encoding":"base64","references":["IANA","[Matt_Kern]","{application/vnd.cyan.dean.root+xml=http://www.iana.org/assignments/media-types/application/vnd.cyan.dean.root+xml}"],"xrefs":{"person":["Matt_Kern"],"template":["application/vnd.cyan.dean.root+xml"]},"registered":true},{"content-type":"application/vnd.cybank","encoding":"base64","references":["IANA","[Nor_Helmee]","{application/vnd.cybank=http://www.iana.org/assignments/media-types/application/vnd.cybank}"],"xrefs":{"person":["Nor_Helmee"],"template":["application/vnd.cybank"]},"registered":true},{"content-type":"application/vnd.dart","encoding":"base64","extensions":["dart"],"references":["IANA","[Anders_Sandholm]","{application/vnd-dart=http://www.iana.org/assignments/media-types/application/vnd-dart}"],"xrefs":{"person":["Anders_Sandholm"],"template":["application/vnd-dart"]},"registered":true},{"content-type":"application/vnd.data-vision.rdz","friendly":{"en":"RemoteDocs R-Viewer"},"encoding":"base64","extensions":["rdz"],"references":["IANA","[James_Fields]","{application/vnd.data-vision.rdz=http://www.iana.org/assignments/media-types/application/vnd.data-vision.rdz}"],"xrefs":{"person":["James_Fields"],"template":["application/vnd.data-vision.rdz"]},"registered":true},{"content-type":"application/vnd.debian.binary-package","encoding":"base64","references":["IANA","[Charles_Plessy]","{application/vnd.debian.binary-package=http://www.iana.org/assignments/media-types/application/vnd.debian.binary-package}"],"xrefs":{"person":["Charles_Plessy"],"template":["application/vnd.debian.binary-package"]},"registered":true},{"content-type":"application/vnd.dece.data","encoding":"base64","extensions":["uvd","uvf","uvvd","uvvf"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.data=http://www.iana.org/assignments/media-types/application/vnd.dece.data}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.data"]},"registered":true},{"content-type":"application/vnd.dece.ttml+xml","encoding":"base64","extensions":["uvt","uvvt"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.ttml+xml=http://www.iana.org/assignments/media-types/application/vnd.dece.ttml+xml}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.ttml+xml"]},"registered":true},{"content-type":"application/vnd.dece.unspecified","encoding":"base64","extensions":["uvvx","uvx"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.unspecified=http://www.iana.org/assignments/media-types/application/vnd.dece.unspecified}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.unspecified"]},"registered":true},{"content-type":"application/vnd.dece.zip","encoding":"base64","extensions":["uvvz","uvz"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece-zip=http://www.iana.org/assignments/media-types/application/vnd.dece-zip}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece-zip"]},"registered":true},{"content-type":"application/vnd.denovo.fcselayout-link","friendly":{"en":"FCS Express Layout Link"},"encoding":"base64","extensions":["fe_launch"],"references":["IANA","[Michael_Dixon]","{application/vnd.denovo.fcselayout-link=http://www.iana.org/assignments/media-types/application/vnd.denovo.fcselayout-link}"],"xrefs":{"person":["Michael_Dixon"],"template":["application/vnd.denovo.fcselayout-link"]},"registered":true},{"content-type":"application/vnd.desmume.movie","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.desmume-movie=http://www.iana.org/assignments/media-types/application/vnd.desmume-movie}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.desmume-movie"]},"registered":true},{"content-type":"application/vnd.dir-bi.plate-dl-nosuffix","encoding":"base64","references":["IANA","[Yamanaka]","{application/vnd.dir-bi.plate-dl-nosuffix=http://www.iana.org/assignments/media-types/application/vnd.dir-bi.plate-dl-nosuffix}"],"xrefs":{"person":["Yamanaka"],"template":["application/vnd.dir-bi.plate-dl-nosuffix"]},"registered":true},{"content-type":"application/vnd.dm.delegation+xml","encoding":"base64","references":["IANA","[Axel_Ferrazzini]","{application/vnd.dm.delegation+xml=http://www.iana.org/assignments/media-types/application/vnd.dm.delegation+xml}"],"xrefs":{"person":["Axel_Ferrazzini"],"template":["application/vnd.dm.delegation+xml"]},"registered":true},{"content-type":"application/vnd.dna","friendly":{"en":"New Moon Liftoff/DNA"},"encoding":"base64","extensions":["dna"],"references":["IANA","[Meredith_Searcy]","{application/vnd.dna=http://www.iana.org/assignments/media-types/application/vnd.dna}"],"xrefs":{"person":["Meredith_Searcy"],"template":["application/vnd.dna"]},"registered":true},{"content-type":"application/vnd.document+json","encoding":"base64","references":["IANA","[Tom_Christie]","{application/vnd.document+json=http://www.iana.org/assignments/media-types/application/vnd.document+json}"],"xrefs":{"person":["Tom_Christie"],"template":["application/vnd.document+json"]},"registered":true},{"content-type":"application/vnd.dolby.mlp","friendly":{"en":"Dolby Meridian Lossless Packing"},"encoding":"base64","extensions":["mlp"],"registered":false},{"content-type":"application/vnd.dolby.mobile.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{application/vnd.dolby.mobile.1=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["application/vnd.dolby.mobile.1"]},"registered":true},{"content-type":"application/vnd.dolby.mobile.2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{application/vnd.dolby.mobile.2=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["application/vnd.dolby.mobile.2"]},"registered":true},{"content-type":"application/vnd.doremir.scorecloud-binary-document","encoding":"base64","references":["IANA","[Erik_Ronström]","{application/vnd.doremir.scorecloud-binary-document=http://www.iana.org/assignments/media-types/application/vnd.doremir.scorecloud-binary-document}"],"xrefs":{"person":["Erik_Ronström"],"template":["application/vnd.doremir.scorecloud-binary-document"]},"registered":true},{"content-type":"application/vnd.dpgraph","friendly":{"en":"DPGraph"},"encoding":"base64","extensions":["dpg"],"references":["IANA","[David_Parker]","{application/vnd.dpgraph=http://www.iana.org/assignments/media-types/application/vnd.dpgraph}"],"xrefs":{"person":["David_Parker"],"template":["application/vnd.dpgraph"]},"registered":true},{"content-type":"application/vnd.dreamfactory","friendly":{"en":"DreamFactory"},"encoding":"base64","extensions":["dfac"],"references":["IANA","[William_C._Appleton]","{application/vnd.dreamfactory=http://www.iana.org/assignments/media-types/application/vnd.dreamfactory}"],"xrefs":{"person":["William_C._Appleton"],"template":["application/vnd.dreamfactory"]},"registered":true},{"content-type":"application/vnd.drive+json","encoding":"base64","references":["IANA","[Keith_Kester]","{application/vnd.drive+json=http://www.iana.org/assignments/media-types/application/vnd.drive+json}"],"xrefs":{"person":["Keith_Kester"],"template":["application/vnd.drive+json"]},"registered":true},{"content-type":"application/vnd.ds-keypoint","encoding":"base64","extensions":["kpxx"],"registered":false},{"content-type":"application/vnd.dtg.local","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local=http://www.iana.org/assignments/media-types/application/vnd.dtg.local}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local"]},"registered":true},{"content-type":"application/vnd.dtg.local.flash","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local.flash=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.flash}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local.flash"]},"registered":true},{"content-type":"application/vnd.dtg.local.html","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local-html=http://www.iana.org/assignments/media-types/application/vnd.dtg.local-html}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local-html"]},"registered":true},{"content-type":"application/vnd.dvb.ait","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["ait"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.ait=http://www.iana.org/assignments/media-types/application/vnd.dvb.ait}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.ait"]},"registered":true},{"content-type":"application/vnd.dvb.dvbj","encoding":"base64","references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.dvbj=http://www.iana.org/assignments/media-types/application/vnd.dvb.dvbj}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.dvbj"]},"registered":true},{"content-type":"application/vnd.dvb.esgcontainer","encoding":"base64","references":["IANA","[Joerg_Heuer]","{application/vnd.dvb.esgcontainer=http://www.iana.org/assignments/media-types/application/vnd.dvb.esgcontainer}"],"xrefs":{"person":["Joerg_Heuer"],"template":["application/vnd.dvb.esgcontainer"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcdftnotifaccess","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.ipdcdftnotifaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcdftnotifaccess}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.ipdcdftnotifaccess"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess","encoding":"base64","references":["IANA","[Joerg_Heuer]","{application/vnd.dvb.ipdcesgaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess}"],"xrefs":{"person":["Joerg_Heuer"],"template":["application/vnd.dvb.ipdcesgaccess"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess2","encoding":"base64","references":["IANA","[Jerome_Marcon]","{application/vnd.dvb.ipdcesgaccess2=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess2}"],"xrefs":{"person":["Jerome_Marcon"],"template":["application/vnd.dvb.ipdcesgaccess2"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgpdd","encoding":"base64","references":["IANA","[Jerome_Marcon]","{application/vnd.dvb.ipdcesgpdd=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgpdd}"],"xrefs":{"person":["Jerome_Marcon"],"template":["application/vnd.dvb.ipdcesgpdd"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcroaming","encoding":"base64","references":["IANA","[Yiling_Xu]","{application/vnd.dvb.ipdcroaming=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcroaming}"],"xrefs":{"person":["Yiling_Xu"],"template":["application/vnd.dvb.ipdcroaming"]},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-base","encoding":"base64","references":["IANA","[Jean-Baptiste_Henry]","{application/vnd.dvb.iptv.alfec-base=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-base}"],"xrefs":{"person":["Jean-Baptiste_Henry"],"template":["application/vnd.dvb.iptv.alfec-base"]},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-enhancement","encoding":"base64","references":["IANA","[Jean-Baptiste_Henry]","{application/vnd.dvb.iptv.alfec-enhancement=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-enhancement}"],"xrefs":{"person":["Jean-Baptiste_Henry"],"template":["application/vnd.dvb.iptv.alfec-enhancement"]},"registered":true},{"content-type":"application/vnd.dvb.notif-aggregate-root+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-aggregate-root+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-aggregate-root+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-aggregate-root+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-container+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-container+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-container+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-container+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-generic+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-generic+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-generic+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-generic+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-msglist+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-msglist+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-msglist+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-msglist+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-request+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-registration-request+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-request+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-registration-request+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-response+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-registration-response+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-response+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-registration-response+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-init+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-init+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-init+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-init+xml"]},"registered":true},{"content-type":"application/vnd.dvb.pfr","encoding":"base64","references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.pfr=http://www.iana.org/assignments/media-types/application/vnd.dvb.pfr}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.pfr"]},"registered":true},{"content-type":"application/vnd.dvb.service","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["svc"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb_service=http://www.iana.org/assignments/media-types/application/vnd.dvb_service}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb_service"]},"registered":true},{"content-type":"application/vnd.dxr","encoding":"base64","references":["IANA","[Michael_Duffy]","{application/vnd-dxr=http://www.iana.org/assignments/media-types/application/vnd-dxr}"],"xrefs":{"person":["Michael_Duffy"],"template":["application/vnd-dxr"]},"registered":true},{"content-type":"application/vnd.dynageo","friendly":{"en":"DynaGeo"},"encoding":"base64","extensions":["geo"],"references":["IANA","[Roland_Mechling]","{application/vnd.dynageo=http://www.iana.org/assignments/media-types/application/vnd.dynageo}"],"xrefs":{"person":["Roland_Mechling"],"template":["application/vnd.dynageo"]},"registered":true},{"content-type":"application/vnd.dzr","encoding":"base64","references":["IANA","[Carl_Anderson]","{application/vnd.dzr=http://www.iana.org/assignments/media-types/application/vnd.dzr}"],"xrefs":{"person":["Carl_Anderson"],"template":["application/vnd.dzr"]},"registered":true},{"content-type":"application/vnd.easykaraoke.cdgdownload","encoding":"base64","references":["IANA","[Iain_Downs]","{application/vnd.easykaraoke.cdgdownload=http://www.iana.org/assignments/media-types/application/vnd.easykaraoke.cdgdownload}"],"xrefs":{"person":["Iain_Downs"],"template":["application/vnd.easykaraoke.cdgdownload"]},"registered":true},{"content-type":"application/vnd.ecdis-update","encoding":"base64","references":["IANA","[Gert_Buettgenbach]","{application/vnd.ecdis-update=http://www.iana.org/assignments/media-types/application/vnd.ecdis-update}"],"xrefs":{"person":["Gert_Buettgenbach"],"template":["application/vnd.ecdis-update"]},"registered":true},{"content-type":"application/vnd.ecowin.chart","friendly":{"en":"EcoWin Chart"},"encoding":"base64","extensions":["mag"],"references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.chart=http://www.iana.org/assignments/media-types/application/vnd.ecowin.chart}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.chart"]},"registered":true},{"content-type":"application/vnd.ecowin.filerequest","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.filerequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.filerequest}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.filerequest"]},"registered":true},{"content-type":"application/vnd.ecowin.fileupdate","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.fileupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.fileupdate}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.fileupdate"]},"registered":true},{"content-type":"application/vnd.ecowin.series","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.series=http://www.iana.org/assignments/media-types/application/vnd.ecowin.series}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.series"]},"registered":true},{"content-type":"application/vnd.ecowin.seriesrequest","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.seriesrequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesrequest}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.seriesrequest"]},"registered":true},{"content-type":"application/vnd.ecowin.seriesupdate","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.seriesupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesupdate}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.seriesupdate"]},"registered":true},{"content-type":"application/vnd.emclient.accessrequest+xml","encoding":"base64","references":["IANA","[Filip_Navara]","{application/vnd.emclient.accessrequest+xml=http://www.iana.org/assignments/media-types/application/vnd.emclient.accessrequest+xml}"],"xrefs":{"person":["Filip_Navara"],"template":["application/vnd.emclient.accessrequest+xml"]},"registered":true},{"content-type":"application/vnd.enliven","friendly":{"en":"Enliven Viewer"},"encoding":"base64","extensions":["nml"],"references":["IANA","[Paul_Santinelli_Jr.]","{application/vnd.enliven=http://www.iana.org/assignments/media-types/application/vnd.enliven}"],"xrefs":{"person":["Paul_Santinelli_Jr."],"template":["application/vnd.enliven"]},"registered":true},{"content-type":"application/vnd.enphase.envoy","encoding":"base64","references":["IANA","[Chris_Eich]","{application/vnd.enphase.envoy=http://www.iana.org/assignments/media-types/application/vnd.enphase.envoy}"],"xrefs":{"person":["Chris_Eich"],"template":["application/vnd.enphase.envoy"]},"registered":true},{"content-type":"application/vnd.eprints.data+xml","encoding":"base64","references":["IANA","[Tim_Brody]","{application/vnd.eprints.data+xml=http://www.iana.org/assignments/media-types/application/vnd.eprints.data+xml}"],"xrefs":{"person":["Tim_Brody"],"template":["application/vnd.eprints.data+xml"]},"registered":true},{"content-type":"application/vnd.epson.esf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["esf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.esf=http://www.iana.org/assignments/media-types/application/vnd.epson.esf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.esf"]},"registered":true},{"content-type":"application/vnd.epson.msf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["msf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.msf=http://www.iana.org/assignments/media-types/application/vnd.epson.msf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.msf"]},"registered":true},{"content-type":"application/vnd.epson.quickanime","friendly":{"en":"QuickAnime Player"},"encoding":"base64","extensions":["qam"],"references":["IANA","[Yu_Gu]","{application/vnd.epson.quickanime=http://www.iana.org/assignments/media-types/application/vnd.epson.quickanime}"],"xrefs":{"person":["Yu_Gu"],"template":["application/vnd.epson.quickanime"]},"registered":true},{"content-type":"application/vnd.epson.salt","friendly":{"en":"SimpleAnimeLite Player"},"encoding":"base64","extensions":["slt"],"references":["IANA","[Yasuhito_Nagatomo]","{application/vnd.epson.salt=http://www.iana.org/assignments/media-types/application/vnd.epson.salt}"],"xrefs":{"person":["Yasuhito_Nagatomo"],"template":["application/vnd.epson.salt"]},"registered":true},{"content-type":"application/vnd.epson.ssf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["ssf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.ssf=http://www.iana.org/assignments/media-types/application/vnd.epson.ssf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.ssf"]},"registered":true},{"content-type":"application/vnd.ericsson.quickcall","encoding":"base64","references":["IANA","[Paul_Tidwell]","{application/vnd.ericsson.quickcall=http://www.iana.org/assignments/media-types/application/vnd.ericsson.quickcall}"],"xrefs":{"person":["Paul_Tidwell"],"template":["application/vnd.ericsson.quickcall"]},"registered":true},{"content-type":"application/vnd.eszigno3+xml","friendly":{"en":"MICROSEC e-Szign¢"},"encoding":"base64","extensions":["es3","et3"],"references":["IANA","[Szilveszter_Tóth]","{application/vnd.eszigno3+xml=http://www.iana.org/assignments/media-types/application/vnd.eszigno3+xml}"],"xrefs":{"person":["Szilveszter_Tóth"],"template":["application/vnd.eszigno3+xml"]},"registered":true},{"content-type":"application/vnd.etsi.aoc+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.aoc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.aoc+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.aoc+xml"]},"registered":true},{"content-type":"application/vnd.etsi.asic-e+zip","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.asic-e+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-e+zip}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.asic-e+zip"]},"registered":true},{"content-type":"application/vnd.etsi.asic-s+zip","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.asic-s+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-s+zip}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.asic-s+zip"]},"registered":true},{"content-type":"application/vnd.etsi.cug+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.cug+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.cug+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.cug+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvcommand+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvcommand+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvcommand+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvcommand+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvdiscovery+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvdiscovery+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvdiscovery+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvprofile+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvprofile+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvprofile+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-bc+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-bc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-bc+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-bc+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-cod+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-cod+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-cod+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-cod+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-npvr+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-npvr+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-npvr+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-npvr+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvservice+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.iptvservice+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvservice+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.iptvservice+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsync+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.iptvsync+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsync+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.iptvsync+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvueprofile+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvueprofile+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvueprofile+xml"]},"registered":true},{"content-type":"application/vnd.etsi.mcid+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.mcid+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.mcid+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.mcid+xml"]},"registered":true},{"content-type":"application/vnd.etsi.mheg5","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","[Ian_Medland]","{application/vnd.etsi.mheg5=http://www.iana.org/assignments/media-types/application/vnd.etsi.mheg5}"],"xrefs":{"person":["Ian_Medland","Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.mheg5"]},"registered":true},{"content-type":"application/vnd.etsi.overload-control-policy-dataset+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.overload-control-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.overload-control-policy-dataset+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.overload-control-policy-dataset+xml"]},"registered":true},{"content-type":"application/vnd.etsi.pstn+xml","encoding":"base64","references":["IANA","[Jiwan_Han]","[Thomas_Belling]","{application/vnd.etsi.pstn+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.pstn+xml}"],"xrefs":{"person":["Jiwan_Han","Thomas_Belling"],"template":["application/vnd.etsi.pstn+xml"]},"registered":true},{"content-type":"application/vnd.etsi.sci+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.sci+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.sci+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.sci+xml"]},"registered":true},{"content-type":"application/vnd.etsi.simservs+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.simservs+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.simservs+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.simservs+xml"]},"registered":true},{"content-type":"application/vnd.etsi.timestamp-token","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.timestamp-token=http://www.iana.org/assignments/media-types/application/vnd.etsi.timestamp-token}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.timestamp-token"]},"registered":true},{"content-type":"application/vnd.etsi.tsl+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.tsl+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.tsl+xml"]},"registered":true},{"content-type":"application/vnd.etsi.tsl.der","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.tsl.der=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl.der}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.tsl.der"]},"registered":true},{"content-type":"application/vnd.eudora.data","encoding":"base64","references":["IANA","[Pete_Resnick]","{application/vnd.eudora.data=http://www.iana.org/assignments/media-types/application/vnd.eudora.data}"],"xrefs":{"person":["Pete_Resnick"],"template":["application/vnd.eudora.data"]},"registered":true},{"content-type":"application/vnd.ezpix-album","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez2"],"references":["IANA","[ElectronicZombieCorp]","{application/vnd.ezpix-album=http://www.iana.org/assignments/media-types/application/vnd.ezpix-album}"],"xrefs":{"person":["ElectronicZombieCorp"],"template":["application/vnd.ezpix-album"]},"registered":true},{"content-type":"application/vnd.ezpix-package","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez3"],"references":["IANA","[ElectronicZombieCorp]","{application/vnd.ezpix-package=http://www.iana.org/assignments/media-types/application/vnd.ezpix-package}"],"xrefs":{"person":["ElectronicZombieCorp"],"template":["application/vnd.ezpix-package"]},"registered":true},{"content-type":"application/vnd.f-secure.mobile","encoding":"base64","references":["IANA","[Samu_Sarivaara]","{application/vnd.f-secure.mobile=http://www.iana.org/assignments/media-types/application/vnd.f-secure.mobile}"],"xrefs":{"person":["Samu_Sarivaara"],"template":["application/vnd.f-secure.mobile"]},"registered":true},{"content-type":"application/vnd.fastcopy-disk-image","encoding":"base64","references":["IANA","[Thomas_Huth]","{application/vnd.fastcopy-disk-image=http://www.iana.org/assignments/media-types/application/vnd.fastcopy-disk-image}"],"xrefs":{"person":["Thomas_Huth"],"template":["application/vnd.fastcopy-disk-image"]},"registered":true},{"content-type":"application/vnd.fdf","friendly":{"en":"Forms Data Format"},"encoding":"base64","extensions":["fdf"],"references":["IANA","[Steve_Zilles]","{application/vnd-fdf=http://www.iana.org/assignments/media-types/application/vnd-fdf}"],"xrefs":{"person":["Steve_Zilles"],"template":["application/vnd-fdf"]},"registered":true},{"content-type":"application/vnd.fdsn.mseed","encoding":"base64","extensions":["mseed"],"references":["IANA","[Chad_Trabant]","{application/vnd.fdsn.mseed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.mseed}"],"xrefs":{"person":["Chad_Trabant"],"template":["application/vnd.fdsn.mseed"]},"registered":true},{"content-type":"application/vnd.fdsn.seed","friendly":{"en":"Digital Siesmograph Networks - SEED Datafiles"},"encoding":"base64","extensions":["dataless","seed"],"references":["IANA","[Chad_Trabant]","{application/vnd.fdsn.seed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.seed}"],"xrefs":{"person":["Chad_Trabant"],"template":["application/vnd.fdsn.seed"]},"registered":true},{"content-type":"application/vnd.ffsns","encoding":"base64","references":["IANA","[Holstage]","{application/vnd.ffsns=http://www.iana.org/assignments/media-types/application/vnd.ffsns}"],"xrefs":{"person":["Holstage"],"template":["application/vnd.ffsns"]},"registered":true},{"content-type":"application/vnd.fints","encoding":"base64","references":["IANA","[Ingo_Hammann]","{application/vnd.fints=http://www.iana.org/assignments/media-types/application/vnd.fints}"],"xrefs":{"person":["Ingo_Hammann"],"template":["application/vnd.fints"]},"registered":true},{"content-type":"application/vnd.firemonkeys.cloudcell","encoding":"base64","references":["IANA","[Alex_Dubov]","{application/vnd.firemonkeys.cloudcell=http://www.iana.org/assignments/media-types/application/vnd.firemonkeys.cloudcell}"],"xrefs":{"person":["Alex_Dubov"],"template":["application/vnd.firemonkeys.cloudcell"]},"registered":true},{"content-type":"application/vnd.FloGraphIt","friendly":{"en":"NpGraphIt"},"encoding":"base64","extensions":["gph"],"references":["IANA","[Dick_Floersch]","{application/vnd.FloGraphIt=http://www.iana.org/assignments/media-types/application/vnd.FloGraphIt}"],"xrefs":{"person":["Dick_Floersch"],"template":["application/vnd.FloGraphIt"]},"registered":true},{"content-type":"application/vnd.fluxtime.clip","friendly":{"en":"FluxTime Clip"},"encoding":"base64","extensions":["ftc"],"references":["IANA","[Marc_Winter]","{application/vnd.fluxtime.clip=http://www.iana.org/assignments/media-types/application/vnd.fluxtime.clip}"],"xrefs":{"person":["Marc_Winter"],"template":["application/vnd.fluxtime.clip"]},"registered":true},{"content-type":"application/vnd.font-fontforge-sfd","encoding":"base64","references":["IANA","[George_Williams]","{application/vnd.font-fontforge-sfd=http://www.iana.org/assignments/media-types/application/vnd.font-fontforge-sfd}"],"xrefs":{"person":["George_Williams"],"template":["application/vnd.font-fontforge-sfd"]},"registered":true},{"content-type":"application/vnd.framemaker","friendly":{"en":"FrameMaker Normal Format"},"encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"references":["IANA","[Mike_Wexler]","{application/vnd.framemaker=http://www.iana.org/assignments/media-types/application/vnd.framemaker}"],"xrefs":{"person":["Mike_Wexler"],"template":["application/vnd.framemaker"]},"registered":true},{"content-type":"application/vnd.frogans.fnc","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["fnc"],"references":["IANA","[Alexis_Tamas]","{application/vnd.frogans.fnc=http://www.iana.org/assignments/media-types/application/vnd.frogans.fnc}"],"xrefs":{"person":["Alexis_Tamas"],"template":["application/vnd.frogans.fnc"]},"registered":true},{"content-type":"application/vnd.frogans.ltf","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["ltf"],"references":["IANA","[Alexis_Tamas]","{application/vnd.frogans.ltf=http://www.iana.org/assignments/media-types/application/vnd.frogans.ltf}"],"xrefs":{"person":["Alexis_Tamas"],"template":["application/vnd.frogans.ltf"]},"registered":true},{"content-type":"application/vnd.fsc.weblaunch","friendly":{"en":"Friendly Software Corporation"},"encoding":"7bit","extensions":["fsc"],"references":["IANA","[Derek_Smith]","{application/vnd.fsc.weblaunch=http://www.iana.org/assignments/media-types/application/vnd.fsc.weblaunch}"],"xrefs":{"person":["Derek_Smith"],"template":["application/vnd.fsc.weblaunch"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oas"],"references":["IANA","[Nobukazu_Togashi]","{application/vnd.fujitsu.oasys=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys}"],"xrefs":{"person":["Nobukazu_Togashi"],"template":["application/vnd.fujitsu.oasys"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys2","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa2"],"references":["IANA","[Nobukazu_Togashi]","{application/vnd.fujitsu.oasys2=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys2}"],"xrefs":{"person":["Nobukazu_Togashi"],"template":["application/vnd.fujitsu.oasys2"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys3","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa3"],"references":["IANA","[Seiji_Okudaira]","{application/vnd.fujitsu.oasys3=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys3}"],"xrefs":{"person":["Seiji_Okudaira"],"template":["application/vnd.fujitsu.oasys3"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasysgp","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["fg5"],"references":["IANA","[Masahiko_Sugimoto]","{application/vnd.fujitsu.oasysgp=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysgp}"],"xrefs":{"person":["Masahiko_Sugimoto"],"template":["application/vnd.fujitsu.oasysgp"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasysprs","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["bh2"],"references":["IANA","[Masumi_Ogita]","{application/vnd.fujitsu.oasysprs=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysprs}"],"xrefs":{"person":["Masumi_Ogita"],"template":["application/vnd.fujitsu.oasysprs"]},"registered":true},{"content-type":"application/vnd.fujixerox.ART-EX","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.ART-EX=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART-EX}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.ART-EX"]},"registered":true},{"content-type":"application/vnd.fujixerox.ART4","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.ART4=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART4}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.ART4"]},"registered":true},{"content-type":"application/vnd.fujixerox.ddd","friendly":{"en":"Fujitsu - Xerox 2D CAD Data"},"encoding":"base64","extensions":["ddd"],"references":["IANA","[Masanori_Onda]","{application/vnd.fujixerox.ddd=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ddd}"],"xrefs":{"person":["Masanori_Onda"],"template":["application/vnd.fujixerox.ddd"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks","friendly":{"en":"Fujitsu - Xerox DocuWorks"},"encoding":"base64","extensions":["xdw"],"references":["IANA","[Yasuo_Taguchi]","{application/vnd.fujixerox.docuworks=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks}"],"xrefs":{"person":["Yasuo_Taguchi"],"template":["application/vnd.fujixerox.docuworks"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.binder","friendly":{"en":"Fujitsu - Xerox DocuWorks Binder"},"encoding":"base64","extensions":["xbd"],"references":["IANA","[Takashi_Matsumoto]","{application/vnd.fujixerox.docuworks.binder=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.binder}"],"xrefs":{"person":["Takashi_Matsumoto"],"template":["application/vnd.fujixerox.docuworks.binder"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.container","encoding":"base64","references":["IANA","[Kiyoshi_Tashiro]","{application/vnd.fujixerox.docuworks.container=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.container}"],"xrefs":{"person":["Kiyoshi_Tashiro"],"template":["application/vnd.fujixerox.docuworks.container"]},"registered":true},{"content-type":"application/vnd.fujixerox.HBPL","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.HBPL=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.HBPL}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.HBPL"]},"registered":true},{"content-type":"application/vnd.fut-misnet","encoding":"base64","references":["IANA","[Jann_Pruulman]","{application/vnd.fut-misnet=http://www.iana.org/assignments/media-types/application/vnd.fut-misnet}"],"xrefs":{"person":["Jann_Pruulman"],"template":["application/vnd.fut-misnet"]},"registered":true},{"content-type":"application/vnd.fuzzysheet","friendly":{"en":"FuzzySheet"},"encoding":"base64","extensions":["fzs"],"references":["IANA","[Simon_Birtwistle]","{application/vnd.fuzzysheet=http://www.iana.org/assignments/media-types/application/vnd.fuzzysheet}"],"xrefs":{"person":["Simon_Birtwistle"],"template":["application/vnd.fuzzysheet"]},"registered":true},{"content-type":"application/vnd.genomatix.tuxedo","friendly":{"en":"Genomatix Tuxedo Framework"},"encoding":"base64","extensions":["txd"],"references":["IANA","[Torben_Frey]","{application/vnd.genomatix.tuxedo=http://www.iana.org/assignments/media-types/application/vnd.genomatix.tuxedo}"],"xrefs":{"person":["Torben_Frey"],"template":["application/vnd.genomatix.tuxedo"]},"registered":true},{"content-type":"application/vnd.geo+json","encoding":"base64","references":["IANA","[Sean_Gillies]","{application/vnd.geo+json=http://www.iana.org/assignments/media-types/application/vnd.geo+json}"],"xrefs":{"person":["Sean_Gillies"],"template":["application/vnd.geo+json"]},"registered":true},{"content-type":"application/vnd.geocube+xml","encoding":"8bit","obsolete":true,"references":["IANA","[Francois_Pirsch]","{application/vnd.geocube+xml=http://www.iana.org/assignments/media-types/application/vnd.geocube+xml}"],"xrefs":{"person":["Francois_Pirsch"],"template":["application/vnd.geocube+xml"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"application/vnd.geogebra.file","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggb"],"references":["IANA","[GeoGebra]","[Yves_Kreis]","{application/vnd.geogebra.file=http://www.iana.org/assignments/media-types/application/vnd.geogebra.file}"],"xrefs":{"person":["GeoGebra","Yves_Kreis"],"template":["application/vnd.geogebra.file"]},"registered":true},{"content-type":"application/vnd.geogebra.tool","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggt"],"references":["IANA","[GeoGebra]","[Yves_Kreis]","{application/vnd.geogebra.tool=http://www.iana.org/assignments/media-types/application/vnd.geogebra.tool}"],"xrefs":{"person":["GeoGebra","Yves_Kreis"],"template":["application/vnd.geogebra.tool"]},"registered":true},{"content-type":"application/vnd.geometry-explorer","friendly":{"en":"GeoMetry Explorer"},"encoding":"base64","extensions":["gex","gre"],"references":["IANA","[Michael_Hvidsten]","{application/vnd.geometry-explorer=http://www.iana.org/assignments/media-types/application/vnd.geometry-explorer}"],"xrefs":{"person":["Michael_Hvidsten"],"template":["application/vnd.geometry-explorer"]},"registered":true},{"content-type":"application/vnd.geonext","friendly":{"en":"GEONExT and JSXGraph"},"encoding":"base64","extensions":["gxt"],"references":["IANA","[Matthias_Ehmann]","{application/vnd.geonext=http://www.iana.org/assignments/media-types/application/vnd.geonext}"],"xrefs":{"person":["Matthias_Ehmann"],"template":["application/vnd.geonext"]},"registered":true},{"content-type":"application/vnd.geoplan","friendly":{"en":"GeoplanW"},"encoding":"base64","extensions":["g2w"],"references":["IANA","[Christian_Mercat]","{application/vnd.geoplan=http://www.iana.org/assignments/media-types/application/vnd.geoplan}"],"xrefs":{"person":["Christian_Mercat"],"template":["application/vnd.geoplan"]},"registered":true},{"content-type":"application/vnd.geospace","friendly":{"en":"GeospacW"},"encoding":"base64","extensions":["g3w"],"references":["IANA","[Christian_Mercat]","{application/vnd.geospace=http://www.iana.org/assignments/media-types/application/vnd.geospace}"],"xrefs":{"person":["Christian_Mercat"],"template":["application/vnd.geospace"]},"registered":true},{"content-type":"application/vnd.gerber","encoding":"base64","references":["IANA","[Thomas_Weyn]","{application/vnd.gerber=http://www.iana.org/assignments/media-types/application/vnd.gerber}"],"xrefs":{"person":["Thomas_Weyn"],"template":["application/vnd.gerber"]},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt","encoding":"base64","references":["IANA","[Gil_Bernabeu]","{application/vnd.globalplatform.card-content-mgt=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt}"],"xrefs":{"person":["Gil_Bernabeu"],"template":["application/vnd.globalplatform.card-content-mgt"]},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt-response","encoding":"base64","references":["IANA","[Gil_Bernabeu]","{application/vnd.globalplatform.card-content-mgt-response=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt-response}"],"xrefs":{"person":["Gil_Bernabeu"],"template":["application/vnd.globalplatform.card-content-mgt-response"]},"registered":true},{"content-type":"application/vnd.gmx","friendly":{"en":"GameMaker ActiveX"},"encoding":"base64","extensions":["gmx"],"obsolete":true,"references":["IANA","[Christian_V._Sciberras]","{application/vnd.gmx=http://www.iana.org/assignments/media-types/application/vnd.gmx}"],"xrefs":{"person":["Christian_V._Sciberras"],"template":["application/vnd.gmx"],"notes":["- DEPRECATED"]},"registered":true},{"content-type":"application/vnd.google-earth.kml+xml","friendly":{"en":"Google Earth - KML"},"encoding":"8bit","extensions":["kml"],"references":["IANA","[Michael_Ashbridge]","{application/vnd.google-earth.kml+xml=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kml+xml}"],"xrefs":{"person":["Michael_Ashbridge"],"template":["application/vnd.google-earth.kml+xml"]},"registered":true},{"content-type":"application/vnd.google-earth.kmz","friendly":{"en":"Google Earth - Zipped KML"},"encoding":"8bit","extensions":["kmz"],"references":["IANA","[Michael_Ashbridge]","{application/vnd.google-earth.kmz=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kmz}"],"xrefs":{"person":["Michael_Ashbridge"],"template":["application/vnd.google-earth.kmz"]},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+xml","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.e-form+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+xml}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.e-form+xml"]},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+zip","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.e-form+zip=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+zip}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.e-form+zip"]},"registered":true},{"content-type":"application/vnd.gov.sk.xmldatacontainer+xml","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.xmldatacontainer+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.xmldatacontainer+xml}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.xmldatacontainer+xml"]},"registered":true},{"content-type":"application/vnd.grafeq","friendly":{"en":"GrafEq"},"encoding":"base64","extensions":["gqf","gqs"],"references":["IANA","[Jeff_Tupper]","{application/vnd.grafeq=http://www.iana.org/assignments/media-types/application/vnd.grafeq}"],"xrefs":{"person":["Jeff_Tupper"],"template":["application/vnd.grafeq"]},"registered":true},{"content-type":"application/vnd.gridmp","encoding":"base64","references":["IANA","[Jeff_Lawson]","{application/vnd.gridmp=http://www.iana.org/assignments/media-types/application/vnd.gridmp}"],"xrefs":{"person":["Jeff_Lawson"],"template":["application/vnd.gridmp"]},"registered":true},{"content-type":"application/vnd.groove-account","friendly":{"en":"Groove - Account"},"encoding":"base64","extensions":["gac"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-account=http://www.iana.org/assignments/media-types/application/vnd.groove-account}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-account"]},"registered":true},{"content-type":"application/vnd.groove-help","friendly":{"en":"Groove - Help"},"encoding":"base64","extensions":["ghf"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-help=http://www.iana.org/assignments/media-types/application/vnd.groove-help}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-help"]},"registered":true},{"content-type":"application/vnd.groove-identity-message","friendly":{"en":"Groove - Identity Message"},"encoding":"base64","extensions":["gim"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-identity-message=http://www.iana.org/assignments/media-types/application/vnd.groove-identity-message}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-identity-message"]},"registered":true},{"content-type":"application/vnd.groove-injector","friendly":{"en":"Groove - Injector"},"encoding":"base64","extensions":["grv"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-injector=http://www.iana.org/assignments/media-types/application/vnd.groove-injector}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-injector"]},"registered":true},{"content-type":"application/vnd.groove-tool-message","friendly":{"en":"Groove - Tool Message"},"encoding":"base64","extensions":["gtm"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-tool-message=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-message}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-tool-message"]},"registered":true},{"content-type":"application/vnd.groove-tool-template","friendly":{"en":"Groove - Tool Template"},"encoding":"base64","extensions":["tpl"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-tool-template=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-template}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-tool-template"]},"registered":true},{"content-type":"application/vnd.groove-vcard","friendly":{"en":"Groove - Vcard"},"encoding":"base64","extensions":["vcg"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-vcard=http://www.iana.org/assignments/media-types/application/vnd.groove-vcard}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-vcard"]},"registered":true},{"content-type":"application/vnd.hal+json","encoding":"base64","references":["IANA","[Mike_Kelly]","{application/vnd.hal+json=http://www.iana.org/assignments/media-types/application/vnd.hal+json}"],"xrefs":{"person":["Mike_Kelly"],"template":["application/vnd.hal+json"]},"registered":true},{"content-type":"application/vnd.hal+xml","friendly":{"en":"Hypertext Application Language"},"encoding":"base64","extensions":["hal"],"references":["IANA","[Mike_Kelly]","{application/vnd.hal+xml=http://www.iana.org/assignments/media-types/application/vnd.hal+xml}"],"xrefs":{"person":["Mike_Kelly"],"template":["application/vnd.hal+xml"]},"registered":true},{"content-type":"application/vnd.HandHeld-Entertainment+xml","friendly":{"en":"ZVUE Media Manager"},"encoding":"base64","extensions":["zmm"],"references":["IANA","[Eric_Hamilton]","{application/vnd.HandHeld-Entertainment+xml=http://www.iana.org/assignments/media-types/application/vnd.HandHeld-Entertainment+xml}"],"xrefs":{"person":["Eric_Hamilton"],"template":["application/vnd.HandHeld-Entertainment+xml"]},"registered":true},{"content-type":"application/vnd.hbci","friendly":{"en":"Homebanking Computer Interface (HBCI)"},"encoding":"base64","extensions":["hbci","hbc","kom","upa","pkd","bpd"],"references":["IANA","[Ingo_Hammann]","{application/vnd.hbci=http://www.iana.org/assignments/media-types/application/vnd.hbci}"],"xrefs":{"person":["Ingo_Hammann"],"template":["application/vnd.hbci"]},"registered":true},{"content-type":"application/vnd.hcl-bireports","encoding":"base64","references":["IANA","[Doug_R._Serres]","{application/vnd.hcl-bireports=http://www.iana.org/assignments/media-types/application/vnd.hcl-bireports}"],"xrefs":{"person":["Doug_R._Serres"],"template":["application/vnd.hcl-bireports"]},"registered":true},{"content-type":"application/vnd.heroku+json","encoding":"base64","references":["IANA","[Wesley_Beary]","{application/vnd.heroku+json=http://www.iana.org/assignments/media-types/application/vnd.heroku+json}"],"xrefs":{"person":["Wesley_Beary"],"template":["application/vnd.heroku+json"]},"registered":true},{"content-type":"application/vnd.hhe.lesson-player","friendly":{"en":"Archipelago Lesson Player"},"encoding":"base64","extensions":["les"],"references":["IANA","[Randy_Jones]","{application/vnd.hhe.lesson-player=http://www.iana.org/assignments/media-types/application/vnd.hhe.lesson-player}"],"xrefs":{"person":["Randy_Jones"],"template":["application/vnd.hhe.lesson-player"]},"registered":true},{"content-type":"application/vnd.hp-HPGL","friendly":{"en":"HP-GL/2 and HP RTL"},"encoding":"base64","extensions":["plt","hpgl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-HPGL=http://www.iana.org/assignments/media-types/application/vnd.hp-HPGL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-HPGL"]},"registered":true},{"content-type":"application/vnd.hp-hpid","friendly":{"en":"Hewlett Packard Instant Delivery"},"encoding":"base64","extensions":["hpid"],"references":["IANA","[Aloke_Gupta]","{application/vnd.hp-hpid=http://www.iana.org/assignments/media-types/application/vnd.hp-hpid}"],"xrefs":{"person":["Aloke_Gupta"],"template":["application/vnd.hp-hpid"]},"registered":true},{"content-type":"application/vnd.hp-hps","friendly":{"en":"Hewlett-Packard's WebPrintSmart"},"encoding":"base64","extensions":["hps"],"references":["IANA","[Steve_Aubrey]","{application/vnd.hp-hps=http://www.iana.org/assignments/media-types/application/vnd.hp-hps}"],"xrefs":{"person":["Steve_Aubrey"],"template":["application/vnd.hp-hps"]},"registered":true},{"content-type":"application/vnd.hp-jlyt","friendly":{"en":"HP Indigo Digital Press - Job Layout Languate"},"encoding":"base64","extensions":["jlt"],"references":["IANA","[Amir_Gaash]","{application/vnd.hp-jlyt=http://www.iana.org/assignments/media-types/application/vnd.hp-jlyt}"],"xrefs":{"person":["Amir_Gaash"],"template":["application/vnd.hp-jlyt"]},"registered":true},{"content-type":"application/vnd.hp-PCL","friendly":{"en":"HP Printer Command Language"},"encoding":"base64","extensions":["pcl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-PCL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-PCL"]},"registered":true},{"content-type":"application/vnd.hp-PCLXL","friendly":{"en":"PCL 6 Enhanced (Formely PCL XL)"},"encoding":"base64","extensions":["pclxl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-PCLXL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCLXL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-PCLXL"]},"registered":true},{"content-type":"application/vnd.httphone","encoding":"base64","references":["IANA","[Franck_Lefevre]","{application/vnd.httphone=http://www.iana.org/assignments/media-types/application/vnd.httphone}"],"xrefs":{"person":["Franck_Lefevre"],"template":["application/vnd.httphone"]},"registered":true},{"content-type":"application/vnd.hydrostatix.sof-data","friendly":{"en":"Hydrostatix Master Suite"},"encoding":"base64","extensions":["sfd-hdstx"],"references":["IANA","[Allen_Gillam]","{application/vnd.hydrostatix.sof-data=http://www.iana.org/assignments/media-types/application/vnd.hydrostatix.sof-data}"],"xrefs":{"person":["Allen_Gillam"],"template":["application/vnd.hydrostatix.sof-data"]},"registered":true},{"content-type":"application/vnd.hyperdrive+json","encoding":"base64","references":["IANA","[Daniel_Sims]","{application/vnd.hyperdrive+json=http://www.iana.org/assignments/media-types/application/vnd.hyperdrive+json}"],"xrefs":{"person":["Daniel_Sims"],"template":["application/vnd.hyperdrive+json"]},"registered":true},{"content-type":"application/vnd.hzn-3d-crossword","friendly":{"en":"3D Crossword Plugin"},"encoding":"base64","references":["IANA","[James_Minnis]","{application/vnd.hzn-3d-crossword=http://www.iana.org/assignments/media-types/application/vnd.hzn-3d-crossword}"],"xrefs":{"person":["James_Minnis"],"template":["application/vnd.hzn-3d-crossword"]},"registered":true},{"content-type":"application/vnd.ibm.afplinedata","encoding":"base64","references":["IANA","[Roger_Buis]","{application/vnd.ibm.afplinedata=http://www.iana.org/assignments/media-types/application/vnd.ibm.afplinedata}"],"xrefs":{"person":["Roger_Buis"],"template":["application/vnd.ibm.afplinedata"]},"registered":true},{"content-type":"application/vnd.ibm.electronic-media","encoding":"base64","extensions":["emm"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.electronic-media=http://www.iana.org/assignments/media-types/application/vnd.ibm.electronic-media}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.electronic-media"]},"registered":true},{"content-type":"application/vnd.ibm.MiniPay","friendly":{"en":"MiniPay"},"encoding":"base64","extensions":["mpy"],"references":["IANA","[Amir_Herzberg]","{application/vnd.ibm.MiniPay=http://www.iana.org/assignments/media-types/application/vnd.ibm.MiniPay}"],"xrefs":{"person":["Amir_Herzberg"],"template":["application/vnd.ibm.MiniPay"]},"registered":true},{"content-type":"application/vnd.ibm.modcap","friendly":{"en":"MO:DCA-P"},"encoding":"base64","extensions":["afp","list3820","listafp"],"references":["IANA","[Reinhard_Hohensee]","{application/vnd.ibm.modcap=http://www.iana.org/assignments/media-types/application/vnd.ibm.modcap}"],"xrefs":{"person":["Reinhard_Hohensee"],"template":["application/vnd.ibm.modcap"]},"registered":true},{"content-type":"application/vnd.ibm.rights-management","friendly":{"en":"IBM DB2 Rights Manager"},"encoding":"base64","extensions":["irm"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.rights-management=http://www.iana.org/assignments/media-types/application/vnd.ibm.rights-management}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.rights-management"]},"registered":true},{"content-type":"application/vnd.ibm.secure-container","friendly":{"en":"IBM Electronic Media Management System - Secure Container"},"encoding":"base64","extensions":["sc"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.secure-container=http://www.iana.org/assignments/media-types/application/vnd.ibm.secure-container}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.secure-container"]},"registered":true},{"content-type":"application/vnd.iccprofile","friendly":{"en":"ICC profile"},"encoding":"base64","extensions":["icc","icm"],"references":["IANA","[Phil_Green]","{application/vnd.iccprofile=http://www.iana.org/assignments/media-types/application/vnd.iccprofile}"],"xrefs":{"person":["Phil_Green"],"template":["application/vnd.iccprofile"]},"registered":true},{"content-type":"application/vnd.ieee.1905","encoding":"base64","references":["IANA","[Purva_R_Rajkotia]","{application/vnd.ieee.1905=http://www.iana.org/assignments/media-types/application/vnd.ieee.1905}"],"xrefs":{"person":["Purva_R_Rajkotia"],"template":["application/vnd.ieee.1905"]},"registered":true},{"content-type":"application/vnd.igloader","friendly":{"en":"igLoader"},"encoding":"base64","extensions":["igl"],"references":["IANA","[Tim_Fisher]","{application/vnd.igloader=http://www.iana.org/assignments/media-types/application/vnd.igloader}"],"xrefs":{"person":["Tim_Fisher"],"template":["application/vnd.igloader"]},"registered":true},{"content-type":"application/vnd.immervision-ivp","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivp"],"references":["IANA","[Mathieu_Villegas]","{application/vnd.immervision-ivp=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivp}"],"xrefs":{"person":["Mathieu_Villegas"],"template":["application/vnd.immervision-ivp"]},"registered":true},{"content-type":"application/vnd.immervision-ivu","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivu"],"references":["IANA","[Mathieu_Villegas]","{application/vnd.immervision-ivu=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivu}"],"xrefs":{"person":["Mathieu_Villegas"],"template":["application/vnd.immervision-ivu"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p1","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p1=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p1}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p1"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p2","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p2=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p2}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p2"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p3","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p3=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p3}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p3"]},"registered":true},{"content-type":"application/vnd.ims.lis.v2.result+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lis.v2.result+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lis.v2.result+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lis.v2.result+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolconsumerprofile+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolconsumerprofile+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolconsumerprofile+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolconsumerprofile+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolproxy+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolproxy+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy.id+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolproxy.id+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy.id+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolproxy.id+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolsettings+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolsettings+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings.simple+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolsettings.simple+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings.simple+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolsettings.simple+json"]},"registered":true},{"content-type":"application/vnd.informedcontrol.rms+xml","encoding":"base64","references":["IANA","[Mark_Wahl]","{application/vnd.informedcontrol.rms+xml=http://www.iana.org/assignments/media-types/application/vnd.informedcontrol.rms+xml}"],"xrefs":{"person":["Mark_Wahl"],"template":["application/vnd.informedcontrol.rms+xml"]},"registered":true},{"content-type":"application/vnd.informix-visionary","encoding":"base64","obsolete":true,"use-instead":"application/vnd.visionary","references":["IANA","[Christopher_Gales]","{application/vnd.informix-visionary=http://www.iana.org/assignments/media-types/application/vnd.informix-visionary}"],"xrefs":{"person":["Christopher_Gales"],"template":["application/vnd.informix-visionary"],"notes":["- OBSOLETED in favor of application/vnd.visionary"]},"registered":true},{"content-type":"application/vnd.infotech.project","encoding":"base64","references":["IANA","[Charles_Engelke]","{application/vnd.infotech.project=http://www.iana.org/assignments/media-types/application/vnd.infotech.project}"],"xrefs":{"person":["Charles_Engelke"],"template":["application/vnd.infotech.project"]},"registered":true},{"content-type":"application/vnd.infotech.project+xml","encoding":"base64","references":["IANA","[Charles_Engelke]","{application/vnd.infotech.project+xml=http://www.iana.org/assignments/media-types/application/vnd.infotech.project+xml}"],"xrefs":{"person":["Charles_Engelke"],"template":["application/vnd.infotech.project+xml"]},"registered":true},{"content-type":"application/vnd.innopath.wamp.notification","encoding":"base64","references":["IANA","[Takanori_Sudo]","{application/vnd.innopath.wamp.notification=http://www.iana.org/assignments/media-types/application/vnd.innopath.wamp.notification}"],"xrefs":{"person":["Takanori_Sudo"],"template":["application/vnd.innopath.wamp.notification"]},"registered":true},{"content-type":"application/vnd.insors.igm","friendly":{"en":"IOCOM Visimeet"},"encoding":"base64","extensions":["igm"],"references":["IANA","[Jon_Swanson]","{application/vnd.insors.igm=http://www.iana.org/assignments/media-types/application/vnd.insors.igm}"],"xrefs":{"person":["Jon_Swanson"],"template":["application/vnd.insors.igm"]},"registered":true},{"content-type":"application/vnd.intercon.formnet","friendly":{"en":"Intercon FormNet"},"encoding":"base64","extensions":["xpw","xpx"],"references":["IANA","[Tom_Gurak]","{application/vnd.intercon.formnet=http://www.iana.org/assignments/media-types/application/vnd.intercon.formnet}"],"xrefs":{"person":["Tom_Gurak"],"template":["application/vnd.intercon.formnet"]},"registered":true},{"content-type":"application/vnd.intergeo","friendly":{"en":"Interactive Geometry Software"},"encoding":"base64","extensions":["i2g"],"references":["IANA","[Yves_Kreis_2]","{application/vnd.intergeo=http://www.iana.org/assignments/media-types/application/vnd.intergeo}"],"xrefs":{"person":["Yves_Kreis_2"],"template":["application/vnd.intergeo"]},"registered":true},{"content-type":"application/vnd.intertrust.digibox","encoding":"base64","references":["IANA","[Luke_Tomasello]","{application/vnd.intertrust.digibox=http://www.iana.org/assignments/media-types/application/vnd.intertrust.digibox}"],"xrefs":{"person":["Luke_Tomasello"],"template":["application/vnd.intertrust.digibox"]},"registered":true},{"content-type":"application/vnd.intertrust.nncp","encoding":"base64","references":["IANA","[Luke_Tomasello]","{application/vnd.intertrust.nncp=http://www.iana.org/assignments/media-types/application/vnd.intertrust.nncp}"],"xrefs":{"person":["Luke_Tomasello"],"template":["application/vnd.intertrust.nncp"]},"registered":true},{"content-type":"application/vnd.intu.qbo","friendly":{"en":"Open Financial Exchange"},"encoding":"base64","extensions":["qbo"],"references":["IANA","[Greg_Scratchley]","{application/vnd.intu.qbo=http://www.iana.org/assignments/media-types/application/vnd.intu.qbo}"],"xrefs":{"person":["Greg_Scratchley"],"template":["application/vnd.intu.qbo"]},"registered":true},{"content-type":"application/vnd.intu.qfx","friendly":{"en":"Quicken"},"encoding":"base64","extensions":["qfx"],"references":["IANA","[Greg_Scratchley]","{application/vnd.intu.qfx=http://www.iana.org/assignments/media-types/application/vnd.intu.qfx}"],"xrefs":{"person":["Greg_Scratchley"],"template":["application/vnd.intu.qfx"]},"registered":true},{"content-type":"application/vnd.iptc.g2.catalogitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.catalogitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.catalogitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.catalogitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.conceptitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.conceptitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.conceptitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.conceptitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.knowledgeitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.knowledgeitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.knowledgeitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.knowledgeitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.newsitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.newsitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.newsitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.newsmessage+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.newsmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsmessage+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.newsmessage+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.packageitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.packageitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.packageitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.packageitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.planningitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.planningitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.planningitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.planningitem+xml"]},"registered":true},{"content-type":"application/vnd.ipunplugged.rcprofile","friendly":{"en":"IP Unplugged Roaming Client"},"encoding":"base64","extensions":["rcprofile"],"references":["IANA","[Per_Ersson]","{application/vnd.ipunplugged.rcprofile=http://www.iana.org/assignments/media-types/application/vnd.ipunplugged.rcprofile}"],"xrefs":{"person":["Per_Ersson"],"template":["application/vnd.ipunplugged.rcprofile"]},"registered":true},{"content-type":"application/vnd.irepository.package+xml","friendly":{"en":"iRepository / Lucidoc Editor"},"encoding":"base64","extensions":["irp"],"references":["IANA","[Martin_Knowles]","{application/vnd.irepository.package+xml=http://www.iana.org/assignments/media-types/application/vnd.irepository.package+xml}"],"xrefs":{"person":["Martin_Knowles"],"template":["application/vnd.irepository.package+xml"]},"registered":true},{"content-type":"application/vnd.is-xpr","friendly":{"en":"Express by Infoseek"},"encoding":"base64","extensions":["xpr"],"references":["IANA","[Satish_Navarajan]","{application/vnd.is-xpr=http://www.iana.org/assignments/media-types/application/vnd.is-xpr}"],"xrefs":{"person":["Satish_Navarajan"],"template":["application/vnd.is-xpr"]},"registered":true},{"content-type":"application/vnd.isac.fcs","friendly":{"en":"International Society for Advancement of Cytometry"},"encoding":"base64","extensions":["fcs"],"references":["IANA","[Ryan_Brinkman]","{application/vnd.isac.fcs=http://www.iana.org/assignments/media-types/application/vnd.isac.fcs}"],"xrefs":{"person":["Ryan_Brinkman"],"template":["application/vnd.isac.fcs"]},"registered":true},{"content-type":"application/vnd.jam","friendly":{"en":"Lightspeed Audio Lab"},"encoding":"base64","extensions":["jam"],"references":["IANA","[Brijesh_Kumar]","{application/vnd.jam=http://www.iana.org/assignments/media-types/application/vnd.jam}"],"xrefs":{"person":["Brijesh_Kumar"],"template":["application/vnd.jam"]},"registered":true},{"content-type":"application/vnd.japannet-directory-service","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-directory-service=http://www.iana.org/assignments/media-types/application/vnd.japannet-directory-service}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-directory-service"]},"registered":true},{"content-type":"application/vnd.japannet-jpnstore-wakeup","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-jpnstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-jpnstore-wakeup}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-jpnstore-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-payment-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-payment-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-payment-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-payment-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-registration","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-registration=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-registration"]},"registered":true},{"content-type":"application/vnd.japannet-registration-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-registration-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-registration-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-setstore-wakeup","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-setstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-setstore-wakeup}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-setstore-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-verification","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-verification=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-verification"]},"registered":true},{"content-type":"application/vnd.japannet-verification-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-verification-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-verification-wakeup"]},"registered":true},{"content-type":"application/vnd.jcp.javame.midlet-rms","friendly":{"en":"Mobile Information Device Profile"},"encoding":"base64","extensions":["rms"],"references":["IANA","[Mikhail_Gorshenev]","{application/vnd.jcp.javame.midlet-rms=http://www.iana.org/assignments/media-types/application/vnd.jcp.javame.midlet-rms}"],"xrefs":{"person":["Mikhail_Gorshenev"],"template":["application/vnd.jcp.javame.midlet-rms"]},"registered":true},{"content-type":"application/vnd.jisp","friendly":{"en":"RhymBox"},"encoding":"base64","extensions":["jisp"],"references":["IANA","[Sebastiaan_Deckers]","{application/vnd.jisp=http://www.iana.org/assignments/media-types/application/vnd.jisp}"],"xrefs":{"person":["Sebastiaan_Deckers"],"template":["application/vnd.jisp"]},"registered":true},{"content-type":"application/vnd.joost.joda-archive","friendly":{"en":"Joda Archive"},"encoding":"base64","extensions":["joda"],"references":["IANA","[Joost]","{application/vnd.joost.joda-archive=http://www.iana.org/assignments/media-types/application/vnd.joost.joda-archive}"],"xrefs":{"person":["Joost"],"template":["application/vnd.joost.joda-archive"]},"registered":true},{"content-type":"application/vnd.jsk.isdn-ngn","encoding":"base64","references":["IANA","[Yokoyama_Kiyonobu]","{application/vnd.jsk.isdn-ngn=http://www.iana.org/assignments/media-types/application/vnd.jsk.isdn-ngn}"],"xrefs":{"person":["Yokoyama_Kiyonobu"],"template":["application/vnd.jsk.isdn-ngn"]},"registered":true},{"content-type":"application/vnd.kahootz","friendly":{"en":"Kahootz"},"encoding":"base64","extensions":["ktr","ktz"],"references":["IANA","[Tim_Macdonald]","{application/vnd.kahootz=http://www.iana.org/assignments/media-types/application/vnd.kahootz}"],"xrefs":{"person":["Tim_Macdonald"],"template":["application/vnd.kahootz"]},"registered":true},{"content-type":"application/vnd.kde.karbon","friendly":{"en":"KDE KOffice Office Suite - Karbon"},"encoding":"base64","extensions":["karbon"],"references":["IANA","[David_Faure]","{application/vnd.kde.karbon=http://www.iana.org/assignments/media-types/application/vnd.kde.karbon}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.karbon"]},"registered":true},{"content-type":"application/vnd.kde.kchart","friendly":{"en":"KDE KOffice Office Suite - KChart"},"encoding":"base64","extensions":["chrt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kchart=http://www.iana.org/assignments/media-types/application/vnd.kde.kchart}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kchart"]},"registered":true},{"content-type":"application/vnd.kde.kformula","friendly":{"en":"KDE KOffice Office Suite - Kformula"},"encoding":"base64","extensions":["kfo"],"references":["IANA","[David_Faure]","{application/vnd.kde.kformula=http://www.iana.org/assignments/media-types/application/vnd.kde.kformula}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kformula"]},"registered":true},{"content-type":"application/vnd.kde.kivio","friendly":{"en":"KDE KOffice Office Suite - Kivio"},"encoding":"base64","extensions":["flw"],"references":["IANA","[David_Faure]","{application/vnd.kde.kivio=http://www.iana.org/assignments/media-types/application/vnd.kde.kivio}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kivio"]},"registered":true},{"content-type":"application/vnd.kde.kontour","friendly":{"en":"KDE KOffice Office Suite - Kontour"},"encoding":"base64","extensions":["kon"],"references":["IANA","[David_Faure]","{application/vnd.kde.kontour=http://www.iana.org/assignments/media-types/application/vnd.kde.kontour}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kontour"]},"registered":true},{"content-type":"application/vnd.kde.kpresenter","friendly":{"en":"KDE KOffice Office Suite - Kpresenter"},"encoding":"base64","extensions":["kpr","kpt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kpresenter=http://www.iana.org/assignments/media-types/application/vnd.kde.kpresenter}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kpresenter"]},"registered":true},{"content-type":"application/vnd.kde.kspread","friendly":{"en":"KDE KOffice Office Suite - Kspread"},"encoding":"base64","extensions":["ksp"],"references":["IANA","[David_Faure]","{application/vnd.kde.kspread=http://www.iana.org/assignments/media-types/application/vnd.kde.kspread}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kspread"]},"registered":true},{"content-type":"application/vnd.kde.kword","friendly":{"en":"KDE KOffice Office Suite - Kword"},"encoding":"base64","extensions":["kwd","kwt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kword=http://www.iana.org/assignments/media-types/application/vnd.kde.kword}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kword"]},"registered":true},{"content-type":"application/vnd.kenameaapp","friendly":{"en":"Kenamea App"},"encoding":"base64","extensions":["htke"],"references":["IANA","[Dirk_DiGiorgio-Haag]","{application/vnd.kenameaapp=http://www.iana.org/assignments/media-types/application/vnd.kenameaapp}"],"xrefs":{"person":["Dirk_DiGiorgio-Haag"],"template":["application/vnd.kenameaapp"]},"registered":true},{"content-type":"application/vnd.kidspiration","friendly":{"en":"Kidspiration"},"encoding":"base64","extensions":["kia"],"references":["IANA","[Jack_Bennett]","{application/vnd.kidspiration=http://www.iana.org/assignments/media-types/application/vnd.kidspiration}"],"xrefs":{"person":["Jack_Bennett"],"template":["application/vnd.kidspiration"]},"registered":true},{"content-type":"application/vnd.Kinar","friendly":{"en":"Kinar Applications"},"encoding":"base64","extensions":["kne","knp","sdf"],"references":["IANA","[Hemant_Thakkar]","{application/vnd.Kinar=http://www.iana.org/assignments/media-types/application/vnd.Kinar}"],"xrefs":{"person":["Hemant_Thakkar"],"template":["application/vnd.Kinar"]},"registered":true},{"content-type":"application/vnd.koan","friendly":{"en":"SSEYO Koan Play File"},"encoding":"base64","extensions":["skd","skm","skp","skt"],"references":["IANA","[Pete_Cole]","{application/vnd.koan=http://www.iana.org/assignments/media-types/application/vnd.koan}"],"xrefs":{"person":["Pete_Cole"],"template":["application/vnd.koan"]},"registered":true},{"content-type":"application/vnd.kodak-descriptor","friendly":{"en":"Kodak Storyshare"},"encoding":"base64","extensions":["sse"],"references":["IANA","[Michael_J._Donahue]","{application/vnd.kodak-descriptor=http://www.iana.org/assignments/media-types/application/vnd.kodak-descriptor}"],"xrefs":{"person":["Michael_J._Donahue"],"template":["application/vnd.kodak-descriptor"]},"registered":true},{"content-type":"application/vnd.las.las+xml","friendly":{"en":"Laser App Enterprise"},"encoding":"base64","extensions":["lasxml"],"references":["IANA","[Rob_Bailey]","{application/vnd.las.las+xml=http://www.iana.org/assignments/media-types/application/vnd.las.las+xml}"],"xrefs":{"person":["Rob_Bailey"],"template":["application/vnd.las.las+xml"]},"registered":true},{"content-type":"application/vnd.liberty-request+xml","encoding":"base64","references":["IANA","[Brett_McDowell]","{application/vnd.liberty-request+xml=http://www.iana.org/assignments/media-types/application/vnd.liberty-request+xml}"],"xrefs":{"person":["Brett_McDowell"],"template":["application/vnd.liberty-request+xml"]},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.desktop","friendly":{"en":"Life Balance - Desktop Edition"},"encoding":"base64","extensions":["lbd"],"references":["IANA","[Catherine_E._White]","{application/vnd.llamagraphics.life-balance.desktop=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.desktop}"],"xrefs":{"person":["Catherine_E._White"],"template":["application/vnd.llamagraphics.life-balance.desktop"]},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.exchange+xml","friendly":{"en":"Life Balance - Exchange Format"},"encoding":"base64","extensions":["lbe"],"references":["IANA","[Catherine_E._White]","{application/vnd.llamagraphics.life-balance.exchange+xml=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.exchange+xml}"],"xrefs":{"person":["Catherine_E._White"],"template":["application/vnd.llamagraphics.life-balance.exchange+xml"]},"registered":true},{"content-type":"application/vnd.lotus-1-2-3","friendly":{"en":"Lotus 1-2-3"},"encoding":"base64","extensions":["wks","123"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-1-2-3=http://www.iana.org/assignments/media-types/application/vnd.lotus-1-2-3}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-1-2-3"]},"registered":true},{"content-type":"application/vnd.lotus-approach","friendly":{"en":"Lotus Approach"},"encoding":"base64","extensions":["apr"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-approach=http://www.iana.org/assignments/media-types/application/vnd.lotus-approach}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-approach"]},"registered":true},{"content-type":"application/vnd.lotus-freelance","friendly":{"en":"Lotus Freelance"},"encoding":"base64","extensions":["pre"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-freelance=http://www.iana.org/assignments/media-types/application/vnd.lotus-freelance}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-freelance"]},"registered":true},{"content-type":"application/vnd.lotus-notes","friendly":{"en":"Lotus Notes"},"encoding":"base64","extensions":["nsf"],"references":["IANA","[Michael_Laramie]","{application/vnd.lotus-notes=http://www.iana.org/assignments/media-types/application/vnd.lotus-notes}"],"xrefs":{"person":["Michael_Laramie"],"template":["application/vnd.lotus-notes"]},"registered":true},{"content-type":"application/vnd.lotus-organizer","friendly":{"en":"Lotus Organizer"},"encoding":"base64","extensions":["org"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-organizer=http://www.iana.org/assignments/media-types/application/vnd.lotus-organizer}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-organizer"]},"registered":true},{"content-type":"application/vnd.lotus-screencam","friendly":{"en":"Lotus Screencam"},"encoding":"base64","extensions":["scm"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-screencam=http://www.iana.org/assignments/media-types/application/vnd.lotus-screencam}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-screencam"]},"registered":true},{"content-type":"application/vnd.lotus-wordpro","friendly":{"en":"Lotus Wordpro"},"encoding":"base64","extensions":["lwp"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-wordpro=http://www.iana.org/assignments/media-types/application/vnd.lotus-wordpro}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-wordpro"]},"registered":true},{"content-type":"application/vnd.macports.portpkg","friendly":{"en":"MacPorts Port System"},"encoding":"base64","extensions":["portpkg"],"references":["IANA","[James_Berry]","{application/vnd.macports.portpkg=http://www.iana.org/assignments/media-types/application/vnd.macports.portpkg}"],"xrefs":{"person":["James_Berry"],"template":["application/vnd.macports.portpkg"]},"registered":true},{"content-type":"application/vnd.marlin.drm.actiontoken+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.actiontoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.actiontoken+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.actiontoken+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.conftoken+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.conftoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.conftoken+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.conftoken+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.license+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.license+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.license+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.license+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.mdcf","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.mdcf=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.mdcf}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.mdcf"]},"registered":true},{"content-type":"application/vnd.mason+json","encoding":"base64","references":["IANA","[Jorn_Wildt]","{application/vnd.mason+json=http://www.iana.org/assignments/media-types/application/vnd.mason+json}"],"xrefs":{"person":["Jorn_Wildt"],"template":["application/vnd.mason+json"]},"registered":true},{"content-type":"application/vnd.maxmind.maxmind-db","encoding":"base64","references":["IANA","[William_Stevenson]","{application/vnd.maxmind.maxmind-db=http://www.iana.org/assignments/media-types/application/vnd.maxmind.maxmind-db}"],"xrefs":{"person":["William_Stevenson"],"template":["application/vnd.maxmind.maxmind-db"]},"registered":true},{"content-type":"application/vnd.mcd","friendly":{"en":"Micro CADAM Helix D&D"},"encoding":"base64","extensions":["mcd"],"references":["IANA","[Tadashi_Gotoh]","{application/vnd.mcd=http://www.iana.org/assignments/media-types/application/vnd.mcd}"],"xrefs":{"person":["Tadashi_Gotoh"],"template":["application/vnd.mcd"]},"registered":true},{"content-type":"application/vnd.medcalcdata","friendly":{"en":"MedCalc"},"encoding":"base64","extensions":["mc1"],"references":["IANA","[Frank_Schoonjans]","{application/vnd.medcalcdata=http://www.iana.org/assignments/media-types/application/vnd.medcalcdata}"],"xrefs":{"person":["Frank_Schoonjans"],"template":["application/vnd.medcalcdata"]},"registered":true},{"content-type":"application/vnd.mediastation.cdkey","friendly":{"en":"MediaRemote"},"encoding":"base64","extensions":["cdkey"],"references":["IANA","[Henry_Flurry]","{application/vnd.mediastation.cdkey=http://www.iana.org/assignments/media-types/application/vnd.mediastation.cdkey}"],"xrefs":{"person":["Henry_Flurry"],"template":["application/vnd.mediastation.cdkey"]},"registered":true},{"content-type":"application/vnd.meridian-slingshot","encoding":"base64","references":["IANA","[Eric_Wedel]","{application/vnd.meridian-slingshot=http://www.iana.org/assignments/media-types/application/vnd.meridian-slingshot}"],"xrefs":{"person":["Eric_Wedel"],"template":["application/vnd.meridian-slingshot"]},"registered":true},{"content-type":"application/vnd.MFER","friendly":{"en":"Medical Waveform Encoding Format"},"encoding":"base64","extensions":["mwf"],"references":["IANA","[Masaaki_Hirai]","{application/vnd.MFER=http://www.iana.org/assignments/media-types/application/vnd.MFER}"],"xrefs":{"person":["Masaaki_Hirai"],"template":["application/vnd.MFER"]},"registered":true},{"content-type":"application/vnd.mfmp","friendly":{"en":"Melody Format for Mobile Platform"},"encoding":"base64","extensions":["mfm"],"references":["IANA","[Yukari_Ikeda]","{application/vnd.mfmp=http://www.iana.org/assignments/media-types/application/vnd.mfmp}"],"xrefs":{"person":["Yukari_Ikeda"],"template":["application/vnd.mfmp"]},"registered":true},{"content-type":"application/vnd.micro+json","encoding":"base64","references":["IANA","[Dali_Zheng]","{application/vnd.micro+json=http://www.iana.org/assignments/media-types/application/vnd.micro+json}"],"xrefs":{"person":["Dali_Zheng"],"template":["application/vnd.micro+json"]},"registered":true},{"content-type":"application/vnd.micrografx.flo","friendly":{"en":"Micrografx"},"encoding":"base64","extensions":["flo"],"references":["IANA","[Joe_Prevo]","{application/vnd.micrografx.flo=http://www.iana.org/assignments/media-types/application/vnd.micrografx.flo}"],"xrefs":{"person":["Joe_Prevo"],"template":["application/vnd.micrografx.flo"]},"registered":true},{"content-type":"application/vnd.micrografx.igx","friendly":{"en":"Micrografx iGrafx Professional"},"encoding":"base64","extensions":["igx"],"references":["IANA","[Joe_Prevo]","{application/vnd.micrografx-igx=http://www.iana.org/assignments/media-types/application/vnd.micrografx-igx}"],"xrefs":{"person":["Joe_Prevo"],"template":["application/vnd.micrografx-igx"]},"registered":true},{"content-type":"application/vnd.microsoft.portable-executable","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.microsoft.portable-executable=http://www.iana.org/assignments/media-types/application/vnd.microsoft.portable-executable}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.microsoft.portable-executable"]},"registered":true},{"content-type":"application/vnd.miele+json","encoding":"base64","references":["IANA","[Nils_Langhammer]","{application/vnd.miele+json=http://www.iana.org/assignments/media-types/application/vnd.miele+json}"],"xrefs":{"person":["Nils_Langhammer"],"template":["application/vnd.miele+json"]},"registered":true},{"content-type":"application/vnd.mif","friendly":{"en":"FrameMaker Interchange Format"},"encoding":"base64","extensions":["mif"],"references":["IANA","[Mike_Wexler]","{application/vnd-mif=http://www.iana.org/assignments/media-types/application/vnd-mif}"],"xrefs":{"person":["Mike_Wexler"],"template":["application/vnd-mif"]},"registered":true},{"content-type":"application/vnd.minisoft-hp3000-save","encoding":"base64","references":["IANA","[Chris_Bartram]","{application/vnd.minisoft-hp3000-save=http://www.iana.org/assignments/media-types/application/vnd.minisoft-hp3000-save}"],"xrefs":{"person":["Chris_Bartram"],"template":["application/vnd.minisoft-hp3000-save"]},"registered":true},{"content-type":"application/vnd.mitsubishi.misty-guard.trustweb","encoding":"base64","references":["IANA","[Tanaka]","{application/vnd.mitsubishi.misty-guard.trustweb=http://www.iana.org/assignments/media-types/application/vnd.mitsubishi.misty-guard.trustweb}"],"xrefs":{"person":["Tanaka"],"template":["application/vnd.mitsubishi.misty-guard.trustweb"]},"registered":true},{"content-type":"application/vnd.Mobius.DAF","friendly":{"en":"Mobius Management Systems - UniversalArchive"},"encoding":"base64","extensions":["daf"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.DAF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DAF}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.DAF"]},"registered":true},{"content-type":"application/vnd.Mobius.DIS","friendly":{"en":"Mobius Management Systems - Distribution Database"},"encoding":"base64","extensions":["dis"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.DIS=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DIS}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.DIS"]},"registered":true},{"content-type":"application/vnd.Mobius.MBK","friendly":{"en":"Mobius Management Systems - Basket file"},"encoding":"base64","extensions":["mbk"],"references":["IANA","[Alex_Devasia]","{application/vnd.Mobius.MBK=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MBK}"],"xrefs":{"person":["Alex_Devasia"],"template":["application/vnd.Mobius.MBK"]},"registered":true},{"content-type":"application/vnd.Mobius.MQY","friendly":{"en":"Mobius Management Systems - Query File"},"encoding":"base64","extensions":["mqy"],"references":["IANA","[Alex_Devasia]","{application/vnd.Mobius.MQY=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MQY}"],"xrefs":{"person":["Alex_Devasia"],"template":["application/vnd.Mobius.MQY"]},"registered":true},{"content-type":"application/vnd.Mobius.MSL","friendly":{"en":"Mobius Management Systems - Script Language"},"encoding":"base64","extensions":["msl"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.MSL=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MSL}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.MSL"]},"registered":true},{"content-type":"application/vnd.Mobius.PLC","friendly":{"en":"Mobius Management Systems - Policy Definition Language File"},"encoding":"base64","extensions":["plc"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.PLC=http://www.iana.org/assignments/media-types/application/vnd.Mobius.PLC}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.PLC"]},"registered":true},{"content-type":"application/vnd.Mobius.TXF","friendly":{"en":"Mobius Management Systems - Topic Index File"},"encoding":"base64","extensions":["txf"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.TXF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.TXF}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.TXF"]},"registered":true},{"content-type":"application/vnd.mophun.application","friendly":{"en":"Mophun VM"},"encoding":"base64","extensions":["mpn"],"references":["IANA","[Bjorn_Wennerstrom]","{application/vnd.mophun.application=http://www.iana.org/assignments/media-types/application/vnd.mophun.application}"],"xrefs":{"person":["Bjorn_Wennerstrom"],"template":["application/vnd.mophun.application"]},"registered":true},{"content-type":"application/vnd.mophun.certificate","friendly":{"en":"Mophun Certificate"},"encoding":"base64","extensions":["mpc"],"references":["IANA","[Bjorn_Wennerstrom]","{application/vnd.mophun.certificate=http://www.iana.org/assignments/media-types/application/vnd.mophun.certificate}"],"xrefs":{"person":["Bjorn_Wennerstrom"],"template":["application/vnd.mophun.certificate"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.adsi","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.adsi=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.adsi}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.adsi"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.fis","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.fis=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.fis}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.fis"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.gotap","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.gotap=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.gotap}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.gotap"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.kmr","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.kmr=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.kmr}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.kmr"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.ttc","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.ttc=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.ttc}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.ttc"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.wem","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.wem=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.wem}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.wem"]},"registered":true},{"content-type":"application/vnd.motorola.iprm","encoding":"base64","references":["IANA","[Rafie_Shamsaasef]","{application/vnd.motorola.iprm=http://www.iana.org/assignments/media-types/application/vnd.motorola.iprm}"],"xrefs":{"person":["Rafie_Shamsaasef"],"template":["application/vnd.motorola.iprm"]},"registered":true},{"content-type":"application/vnd.mozilla.xul+xml","friendly":{"en":"XUL - XML User Interface Language"},"encoding":"base64","extensions":["xul"],"references":["IANA","[Braden_N_McDaniel]","{application/vnd.mozilla.xul+xml=http://www.iana.org/assignments/media-types/application/vnd.mozilla.xul+xml}"],"xrefs":{"person":["Braden_N_McDaniel"],"template":["application/vnd.mozilla.xul+xml"]},"registered":true},{"content-type":"application/vnd.ms-3mfdocument","encoding":"base64","references":["IANA","[Shawn_Maloney]","{application/vnd.ms-3mfdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-3mfdocument}"],"xrefs":{"person":["Shawn_Maloney"],"template":["application/vnd.ms-3mfdocument"]},"registered":true},{"content-type":"application/vnd.ms-artgalry","friendly":{"en":"Microsoft Artgalry"},"encoding":"base64","extensions":["cil"],"references":["IANA","[Dean_Slawson]","{application/vnd.ms-artgalry=http://www.iana.org/assignments/media-types/application/vnd.ms-artgalry}"],"xrefs":{"person":["Dean_Slawson"],"template":["application/vnd.ms-artgalry"]},"registered":true},{"content-type":"application/vnd.ms-asf","encoding":"base64","extensions":["asf"],"references":["IANA","[Eric_Fleischman]","{application/vnd.ms-asf=http://www.iana.org/assignments/media-types/application/vnd.ms-asf}"],"xrefs":{"person":["Eric_Fleischman"],"template":["application/vnd.ms-asf"]},"registered":true},{"content-type":"application/vnd.ms-cab-compressed","friendly":{"en":"Microsoft Cabinet File"},"encoding":"base64","extensions":["cab"],"references":["IANA","[Kim_Scarborough]","{application/vnd.ms-cab-compressed=http://www.iana.org/assignments/media-types/application/vnd.ms-cab-compressed}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.ms-cab-compressed"]},"registered":true},{"content-type":"application/vnd.ms-excel","friendly":{"en":"Microsoft Excel"},"encoding":"base64","extensions":["xls","xlt","xla","xlc","xlm","xlw"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-excel=http://www.iana.org/assignments/media-types/application/vnd.ms-excel}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-excel"]},"registered":true},{"content-type":"application/vnd.ms-excel.addin.macroEnabled.12","friendly":{"en":"Microsoft Excel - Add-In File"},"encoding":"base64","extensions":["xlam"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.addin.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.addin.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.binary.macroEnabled.12","friendly":{"en":"Microsoft Excel - Binary Workbook"},"encoding":"base64","extensions":["xlsb"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.sheet.binary.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.binary.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.sheet.binary.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Workbook"},"encoding":"base64","extensions":["xlsm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.sheet.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.sheet.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.template.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Template File"},"encoding":"base64","extensions":["xltm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-fontobject","friendly":{"en":"Microsoft Embedded OpenType"},"encoding":"base64","extensions":["eot"],"references":["IANA","[Kim_Scarborough]","{application/vnd.ms-fontobject=http://www.iana.org/assignments/media-types/application/vnd.ms-fontobject}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.ms-fontobject"]},"registered":true},{"content-type":"application/vnd.ms-htmlhelp","friendly":{"en":"Microsoft Html Help File"},"encoding":"base64","extensions":["chm"],"references":["IANA","[Anatoly_Techtonik]","{application/vnd.ms-htmlhelp=http://www.iana.org/assignments/media-types/application/vnd.ms-htmlhelp}"],"xrefs":{"person":["Anatoly_Techtonik"],"template":["application/vnd.ms-htmlhelp"]},"registered":true},{"content-type":"application/vnd.ms-ims","friendly":{"en":"Microsoft Class Server"},"encoding":"base64","extensions":["ims"],"references":["IANA","[Eric_Ledoux]","{application/vnd.ms-ims=http://www.iana.org/assignments/media-types/application/vnd.ms-ims}"],"xrefs":{"person":["Eric_Ledoux"],"template":["application/vnd.ms-ims"]},"registered":true},{"content-type":"application/vnd.ms-lrm","friendly":{"en":"Microsoft Learning Resource Module"},"encoding":"base64","extensions":["lrm"],"references":["IANA","[Eric_Ledoux]","{application/vnd.ms-lrm=http://www.iana.org/assignments/media-types/application/vnd.ms-lrm}"],"xrefs":{"person":["Eric_Ledoux"],"template":["application/vnd.ms-lrm"]},"registered":true},{"content-type":"application/vnd.ms-office.activeX+xml","encoding":"base64","references":["IANA","[Chris_Rae]","{application/vnd.ms-office.activeX+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-office.activeX+xml}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-office.activeX+xml"]},"registered":true},{"content-type":"application/vnd.ms-officetheme","friendly":{"en":"Microsoft Office System Release Theme"},"encoding":"base64","extensions":["thmx"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-officetheme=http://www.iana.org/assignments/media-types/application/vnd.ms-officetheme}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-officetheme"]},"registered":true},{"content-type":"application/vnd.ms-outlook","encoding":"base64","extensions":["msg"],"registered":false},{"content-type":"application/vnd.ms-pki.seccat","friendly":{"en":"Microsoft Trust UI Provider - Security Catalog"},"encoding":"base64","extensions":["cat"],"registered":false},{"content-type":"application/vnd.ms-pki.stl","friendly":{"en":"Microsoft Trust UI Provider - Certificate Trust Link"},"encoding":"base64","extensions":["stl"],"registered":false},{"content-type":"application/vnd.ms-playready.initiator+xml","encoding":"base64","references":["IANA","[Daniel_Schneider]","{application/vnd.ms-playready.initiator+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-playready.initiator+xml}"],"xrefs":{"person":["Daniel_Schneider"],"template":["application/vnd.ms-playready.initiator+xml"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint","friendly":{"en":"Microsoft PowerPoint"},"encoding":"base64","extensions":["ppt","pps","pot"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-powerpoint=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-powerpoint"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.addin.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Add-in file"},"encoding":"base64","extensions":["ppam"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.addin.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.addin.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.presentation.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Presentation File"},"encoding":"base64","extensions":["pptm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.presentation.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.presentation.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.presentation.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slide.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Open XML Slide"},"encoding":"base64","extensions":["sldm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.slide.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slide.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.slide.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slideshow.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Slide Show File"},"encoding":"base64","extensions":["ppsm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.slideshow.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slideshow.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.slideshow.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.template.macroEnabled.12","friendly":{"en":"Micosoft PowerPoint - Macro-Enabled Template File"},"encoding":"base64","extensions":["potm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-project","friendly":{"en":"Microsoft Project"},"encoding":"base64","extensions":["mpp","mpt"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-project=http://www.iana.org/assignments/media-types/application/vnd.ms-project}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-project"]},"registered":true},{"content-type":"application/vnd.ms-tnef","encoding":"base64","references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-tnef=http://www.iana.org/assignments/media-types/application/vnd.ms-tnef}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-tnef"]},"registered":true},{"content-type":"application/vnd.ms-windows.printerpairing","encoding":"base64","references":["IANA","[Justin_Hutchings]","{application/vnd.ms-windows.printerpairing=http://www.iana.org/assignments/media-types/application/vnd.ms-windows.printerpairing}"],"xrefs":{"person":["Justin_Hutchings"],"template":["application/vnd.ms-windows.printerpairing"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-chlg-req","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.lic-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-chlg-req}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.lic-chlg-req"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-resp","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.lic-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-resp}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.lic-resp"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-chlg-req","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.meter-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-chlg-req}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.meter-chlg-req"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-resp","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.meter-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-resp}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.meter-resp"]},"registered":true},{"content-type":"application/vnd.ms-word.document.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Document"},"encoding":"base64","extensions":["docm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-word.document.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.document.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-word.document.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-word.template.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Template"},"encoding":"base64","extensions":["dotm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-word.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-word.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-works","friendly":{"en":"Microsoft Works"},"encoding":"base64","extensions":["wcm","wdb","wks","wps"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-works=http://www.iana.org/assignments/media-types/application/vnd.ms-works}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-works"]},"registered":true},{"content-type":"application/vnd.ms-wpl","friendly":{"en":"Microsoft Windows Media Player Playlist"},"encoding":"base64","extensions":["wpl"],"references":["IANA","[Dan_Plastina]","{application/vnd.ms-wpl=http://www.iana.org/assignments/media-types/application/vnd.ms-wpl}"],"xrefs":{"person":["Dan_Plastina"],"template":["application/vnd.ms-wpl"]},"registered":true},{"content-type":"application/vnd.ms-xpsdocument","friendly":{"en":"Microsoft XML Paper Specification"},"encoding":"8bit","extensions":["xps"],"references":["IANA","[Jesse_McGatha]","{application/vnd.ms-xpsdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-xpsdocument}"],"xrefs":{"person":["Jesse_McGatha"],"template":["application/vnd.ms-xpsdocument"]},"registered":true},{"content-type":"application/vnd.msa-disk-image","encoding":"base64","references":["IANA","[Thomas_Huth]","{application/vnd.msa-disk-image=http://www.iana.org/assignments/media-types/application/vnd.msa-disk-image}"],"xrefs":{"person":["Thomas_Huth"],"template":["application/vnd.msa-disk-image"]},"registered":true},{"content-type":"application/vnd.mseq","friendly":{"en":"3GPP MSEQ File"},"encoding":"base64","extensions":["mseq"],"references":["IANA","[Gwenael_Le_Bodic]","{application/vnd.mseq=http://www.iana.org/assignments/media-types/application/vnd.mseq}"],"xrefs":{"person":["Gwenael_Le_Bodic"],"template":["application/vnd.mseq"]},"registered":true},{"content-type":"application/vnd.msign","encoding":"base64","references":["IANA","[Malte_Borcherding]","{application/vnd.msign=http://www.iana.org/assignments/media-types/application/vnd.msign}"],"xrefs":{"person":["Malte_Borcherding"],"template":["application/vnd.msign"]},"registered":true},{"content-type":"application/vnd.multiad.creator","encoding":"base64","references":["IANA","[Steve_Mills]","{application/vnd.multiad.creator=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator}"],"xrefs":{"person":["Steve_Mills"],"template":["application/vnd.multiad.creator"]},"registered":true},{"content-type":"application/vnd.multiad.creator.cif","encoding":"base64","references":["IANA","[Steve_Mills]","{application/vnd.multiad.creator.cif=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator.cif}"],"xrefs":{"person":["Steve_Mills"],"template":["application/vnd.multiad.creator.cif"]},"registered":true},{"content-type":"application/vnd.music-niff","encoding":"base64","references":["IANA","[Tim_Butler]","{application/vnd.music-niff=http://www.iana.org/assignments/media-types/application/vnd.music-niff}"],"xrefs":{"person":["Tim_Butler"],"template":["application/vnd.music-niff"]},"registered":true},{"content-type":"application/vnd.musician","friendly":{"en":"MUsical Score Interpreted Code Invented for the ASCII designation of Notation"},"encoding":"base64","extensions":["mus"],"references":["IANA","[Greg_Adams]","{application/vnd.musician=http://www.iana.org/assignments/media-types/application/vnd.musician}"],"xrefs":{"person":["Greg_Adams"],"template":["application/vnd.musician"]},"registered":true},{"content-type":"application/vnd.muvee.style","friendly":{"en":"Muvee Automatic Video Editing"},"encoding":"base64","extensions":["msty"],"references":["IANA","[Chandrashekhara_Anantharamu]","{application/vnd.muvee.style=http://www.iana.org/assignments/media-types/application/vnd.muvee.style}"],"xrefs":{"person":["Chandrashekhara_Anantharamu"],"template":["application/vnd.muvee.style"]},"registered":true},{"content-type":"application/vnd.mynfc","encoding":"base64","extensions":["taglet"],"references":["IANA","[Franck_Lefevre]","{application/vnd.mynfc=http://www.iana.org/assignments/media-types/application/vnd.mynfc}"],"xrefs":{"person":["Franck_Lefevre"],"template":["application/vnd.mynfc"]},"registered":true},{"content-type":"application/vnd.ncd.control","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.ncd.control=http://www.iana.org/assignments/media-types/application/vnd.ncd.control}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.ncd.control"]},"registered":true},{"content-type":"application/vnd.ncd.reference","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.ncd.reference=http://www.iana.org/assignments/media-types/application/vnd.ncd.reference}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.ncd.reference"]},"registered":true},{"content-type":"application/vnd.nervana","encoding":"base64","extensions":["ent","entity","req","request","bkm","kcm"],"references":["IANA","[Steve_Judkins]","{application/vnd.nervana=http://www.iana.org/assignments/media-types/application/vnd.nervana}"],"xrefs":{"person":["Steve_Judkins"],"template":["application/vnd.nervana"]},"registered":true},{"content-type":"application/vnd.netfpx","encoding":"base64","references":["IANA","[Andy_Mutz]","{application/vnd.netfpx=http://www.iana.org/assignments/media-types/application/vnd.netfpx}"],"xrefs":{"person":["Andy_Mutz"],"template":["application/vnd.netfpx"]},"registered":true},{"content-type":"application/vnd.neurolanguage.nlu","friendly":{"en":"neuroLanguage"},"encoding":"base64","extensions":["nlu"],"references":["IANA","[Dan_DuFeu]","{application/vnd.neurolanguage.nlu=http://www.iana.org/assignments/media-types/application/vnd.neurolanguage.nlu}"],"xrefs":{"person":["Dan_DuFeu"],"template":["application/vnd.neurolanguage.nlu"]},"registered":true},{"content-type":"application/vnd.nintendo.nitro.rom","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.nintendo.nitro.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.nitro.rom}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.nintendo.nitro.rom"]},"registered":true},{"content-type":"application/vnd.nintendo.snes.rom","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.nintendo.snes.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.snes.rom}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.nintendo.snes.rom"]},"registered":true},{"content-type":"application/vnd.nitf","encoding":"base64","extensions":["nitf","ntf"],"references":["IANA","[Steve_Rogan]","{application/vnd.nitf=http://www.iana.org/assignments/media-types/application/vnd.nitf}"],"xrefs":{"person":["Steve_Rogan"],"template":["application/vnd.nitf"]},"registered":true},{"content-type":"application/vnd.noblenet-directory","friendly":{"en":"NobleNet Directory"},"encoding":"base64","extensions":["nnd"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-directory=http://www.iana.org/assignments/media-types/application/vnd.noblenet-directory}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-directory"]},"registered":true},{"content-type":"application/vnd.noblenet-sealer","friendly":{"en":"NobleNet Sealer"},"encoding":"base64","extensions":["nns"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-sealer=http://www.iana.org/assignments/media-types/application/vnd.noblenet-sealer}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-sealer"]},"registered":true},{"content-type":"application/vnd.noblenet-web","friendly":{"en":"NobleNet Web"},"encoding":"base64","extensions":["nnw"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-web=http://www.iana.org/assignments/media-types/application/vnd.noblenet-web}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-web"]},"registered":true},{"content-type":"application/vnd.nokia.catalogs","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.catalogs=http://www.iana.org/assignments/media-types/application/vnd.nokia.catalogs}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.catalogs"]},"registered":true},{"content-type":"application/vnd.nokia.conml+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.conml+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.conml+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.conml+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.conml+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.conml+xml"]},"registered":true},{"content-type":"application/vnd.nokia.iptv.config+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.iptv.config+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.iptv.config+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.iptv.config+xml"]},"registered":true},{"content-type":"application/vnd.nokia.iSDS-radio-presets","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.iSDS-radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.iSDS-radio-presets}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.iSDS-radio-presets"]},"registered":true},{"content-type":"application/vnd.nokia.landmark+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmark+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmark+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.landmark+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmark+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmark+xml"]},"registered":true},{"content-type":"application/vnd.nokia.landmarkcollection+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmarkcollection+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmarkcollection+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmarkcollection+xml"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.ac+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.ac+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.ac+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.ac+xml"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.data","friendly":{"en":"N-Gage Game Data"},"encoding":"base64","extensions":["ngdat"],"references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.data=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.data}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.data"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.symbian.install","friendly":{"en":"N-Gage Game Installer"},"encoding":"base64","extensions":["n-gage"],"obsolete":true,"references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.symbian.install=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.symbian.install}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.symbian.install"],"notes":["- OBSOLETE; no replacement given"]},"registered":true},{"content-type":"application/vnd.nokia.ncd","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.ncd=http://www.iana.org/assignments/media-types/application/vnd.nokia.ncd}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.ncd"]},"registered":true},{"content-type":"application/vnd.nokia.ncd+xml","encoding":"base64","obsolete":true,"use-instead":"application/vnd.nokia.ncd","references":["IANA","[Nokia]"],"registered":true},{"content-type":"application/vnd.nokia.pcd+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.pcd+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.pcd+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.pcd+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.pcd+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.pcd+xml"]},"registered":true},{"content-type":"application/vnd.nokia.radio-preset","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpst"],"references":["IANA","[Nokia]","{application/vnd.nokia.radio-preset=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-preset}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.radio-preset"]},"registered":true},{"content-type":"application/vnd.nokia.radio-presets","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpss"],"references":["IANA","[Nokia]","{application/vnd.nokia.radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-presets}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.radio-presets"]},"registered":true},{"content-type":"application/vnd.novadigm.EDM","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edm"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EDM=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDM}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EDM"]},"registered":true},{"content-type":"application/vnd.novadigm.EDX","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edx"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EDX=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDX}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EDX"]},"registered":true},{"content-type":"application/vnd.novadigm.EXT","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["ext"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EXT=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EXT}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EXT"]},"registered":true},{"content-type":"application/vnd.ntt-local.content-share","encoding":"base64","references":["IANA","[Akinori_Taya]","{application/vnd.ntt-local.content-share=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.content-share}"],"xrefs":{"person":["Akinori_Taya"],"template":["application/vnd.ntt-local.content-share"]},"registered":true},{"content-type":"application/vnd.ntt-local.file-transfer","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.file-transfer=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.file-transfer}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.file-transfer"]},"registered":true},{"content-type":"application/vnd.ntt-local.ogw_remote-access","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.ogw_remote-access=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.ogw_remote-access}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.ogw_remote-access"]},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_remote","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.sip-ta_remote=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_remote}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.sip-ta_remote"]},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_tcp_stream","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.sip-ta_tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_tcp_stream}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.sip-ta_tcp_stream"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart","friendly":{"en":"OpenDocument Chart"},"encoding":"base64","extensions":["odc"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.chart=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.chart"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart-template","friendly":{"en":"OpenDocument Chart Template"},"encoding":"base64","extensions":["odc","otc"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.chart-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.chart-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.database","friendly":{"en":"OpenDocument Database"},"encoding":"base64","extensions":["odb"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.database=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.database}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.database"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula","friendly":{"en":"OpenDocument Formula"},"encoding":"base64","extensions":["odf"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.formula=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.formula"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula-template","friendly":{"en":"OpenDocument Formula Template"},"encoding":"base64","extensions":["odf","odft"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.formula-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.formula-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics","friendly":{"en":"OpenDocument Graphics"},"encoding":"base64","extensions":["odg"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.graphics=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.graphics"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics-template","friendly":{"en":"OpenDocument Graphics Template"},"encoding":"base64","extensions":["otg"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.graphics-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.graphics-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image","friendly":{"en":"OpenDocument Image"},"encoding":"base64","extensions":["odi"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.image=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.image"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image-template","friendly":{"en":"OpenDocument Image Template"},"encoding":"base64","extensions":["odi","oti"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.image-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.image-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation","friendly":{"en":"OpenDocument Presentation"},"encoding":"base64","extensions":["odp"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.presentation=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.presentation"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation-template","friendly":{"en":"OpenDocument Presentation Template"},"encoding":"base64","extensions":["otp"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.presentation-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.presentation-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet","friendly":{"en":"OpenDocument Spreadsheet"},"encoding":"base64","extensions":["ods"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.spreadsheet=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.spreadsheet"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet-template","friendly":{"en":"OpenDocument Spreadsheet Template"},"encoding":"base64","extensions":["ots"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.spreadsheet-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.spreadsheet-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text","friendly":{"en":"OpenDocument Text"},"encoding":"base64","extensions":["odt"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-master","friendly":{"en":"OpenDocument Text Master"},"encoding":"base64","extensions":["odm"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-master=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-master}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-master"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-template","friendly":{"en":"OpenDocument Text Template"},"encoding":"base64","extensions":["ott"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-web","friendly":{"en":"Open Document Text Web"},"encoding":"base64","extensions":["oth"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-web=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-web}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-web"]},"registered":true},{"content-type":"application/vnd.obn","encoding":"base64","references":["IANA","[Matthias_Hessling]","{application/vnd.obn=http://www.iana.org/assignments/media-types/application/vnd.obn}"],"xrefs":{"person":["Matthias_Hessling"],"template":["application/vnd.obn"]},"registered":true},{"content-type":"application/vnd.oftn.l10n+json","encoding":"base64","references":["IANA","[Eli_Grey]","{application/vnd.oftn.l10n+json=http://www.iana.org/assignments/media-types/application/vnd.oftn.l10n+json}"],"xrefs":{"person":["Eli_Grey"],"template":["application/vnd.oftn.l10n+json"]},"registered":true},{"content-type":"application/vnd.oipf.contentaccessdownload+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.contentaccessdownload+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessdownload+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.contentaccessdownload+xml"]},"registered":true},{"content-type":"application/vnd.oipf.contentaccessstreaming+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.contentaccessstreaming+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessstreaming+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.contentaccessstreaming+xml"]},"registered":true},{"content-type":"application/vnd.oipf.cspg-hexbinary","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.cspg-hexbinary=http://www.iana.org/assignments/media-types/application/vnd.oipf.cspg-hexbinary}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.cspg-hexbinary"]},"registered":true},{"content-type":"application/vnd.oipf.dae.svg+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.dae.svg+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.svg+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.dae.svg+xml"]},"registered":true},{"content-type":"application/vnd.oipf.dae.xhtml+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.dae.xhtml+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.xhtml+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.dae.xhtml+xml"]},"registered":true},{"content-type":"application/vnd.oipf.mippvcontrolmessage+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.mippvcontrolmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.mippvcontrolmessage+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.mippvcontrolmessage+xml"]},"registered":true},{"content-type":"application/vnd.oipf.pae.gem","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.pae.gem=http://www.iana.org/assignments/media-types/application/vnd.oipf.pae.gem}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.pae.gem"]},"registered":true},{"content-type":"application/vnd.oipf.spdiscovery+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.spdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdiscovery+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.spdiscovery+xml"]},"registered":true},{"content-type":"application/vnd.oipf.spdlist+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.spdlist+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdlist+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.spdlist+xml"]},"registered":true},{"content-type":"application/vnd.oipf.ueprofile+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.ueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.ueprofile+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.ueprofile+xml"]},"registered":true},{"content-type":"application/vnd.oipf.userprofile+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.userprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.userprofile+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.userprofile+xml"]},"registered":true},{"content-type":"application/vnd.olpc-sugar","friendly":{"en":"Sugar Linux Application Bundle"},"encoding":"base64","extensions":["xo"],"references":["IANA","[John_Palmieri]","{application/vnd.olpc-sugar=http://www.iana.org/assignments/media-types/application/vnd.olpc-sugar}"],"xrefs":{"person":["John_Palmieri"],"template":["application/vnd.olpc-sugar"]},"registered":true},{"content-type":"application/vnd.oma-scws-config","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-config=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-config}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-config"]},"registered":true},{"content-type":"application/vnd.oma-scws-http-request","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-http-request=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-request}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-http-request"]},"registered":true},{"content-type":"application/vnd.oma-scws-http-response","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-http-response=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-response}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-http-response"]},"registered":true},{"content-type":"application/vnd.oma.bcast.associated-procedure-parameter+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.associated-procedure-parameter+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.associated-procedure-parameter+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.associated-procedure-parameter+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.drm-trigger+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.drm-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.drm-trigger+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.drm-trigger+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.imd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.imd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.imd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.imd+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.ltkm","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.ltkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.ltkm}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.ltkm"]},"registered":true},{"content-type":"application/vnd.oma.bcast.notification+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.notification+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.notification+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.notification+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.provisioningtrigger","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.provisioningtrigger=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.provisioningtrigger}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.provisioningtrigger"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgboot","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgboot=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgboot}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgboot"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgdd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgdd+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdu","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgdu=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdu}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgdu"]},"registered":true},{"content-type":"application/vnd.oma.bcast.simple-symbol-container","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.simple-symbol-container=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.simple-symbol-container}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.simple-symbol-container"]},"registered":true},{"content-type":"application/vnd.oma.bcast.smartcard-trigger+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.smartcard-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.smartcard-trigger+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.smartcard-trigger+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sprov+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sprov+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sprov+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sprov+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.stkm","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.stkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.stkm}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.stkm"]},"registered":true},{"content-type":"application/vnd.oma.cab-address-book+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-address-book+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-address-book+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-address-book+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-feature-handler+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-feature-handler+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-feature-handler+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-feature-handler+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-pcc+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-pcc+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-pcc+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-pcc+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-subs-invite+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-subs-invite+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-subs-invite+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-subs-invite+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-user-prefs+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-user-prefs+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-user-prefs+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-user-prefs+xml"]},"registered":true},{"content-type":"application/vnd.oma.dcd","encoding":"base64","references":["IANA","[Avi_Primo]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.dcd=http://www.iana.org/assignments/media-types/application/vnd.oma.dcd}"],"xrefs":{"person":["Avi_Primo","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.dcd"]},"registered":true},{"content-type":"application/vnd.oma.dcdc","encoding":"base64","references":["IANA","[Avi_Primo]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.dcdc=http://www.iana.org/assignments/media-types/application/vnd.oma.dcdc}"],"xrefs":{"person":["Avi_Primo","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.dcdc"]},"registered":true},{"content-type":"application/vnd.oma.dd2+xml","friendly":{"en":"OMA Download Agents"},"encoding":"base64","extensions":["dd2"],"references":["IANA","[Jun_Sato]","[Open_Mobile_Alliance_BAC_DLDRM_Working_Group]","{application/vnd.oma.dd2+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.dd2+xml}"],"xrefs":{"person":["Jun_Sato","Open_Mobile_Alliance_BAC_DLDRM_Working_Group"],"template":["application/vnd.oma.dd2+xml"]},"registered":true},{"content-type":"application/vnd.oma.drm.risd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.drm.risd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.drm.risd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.drm.risd+xml"]},"registered":true},{"content-type":"application/vnd.oma.group-usage-list+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Presence_and_Availability_PAG_Working_Group]","{application/vnd.oma.group-usage-list+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.group-usage-list+xml}"],"xrefs":{"person":["OMA_Presence_and_Availability_PAG_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.group-usage-list+xml"]},"registered":true},{"content-type":"application/vnd.oma.pal+xml","encoding":"base64","references":["IANA","[Brian_McColgan]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.pal+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.pal+xml}"],"xrefs":{"person":["Brian_McColgan","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.pal+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.detailed-progress-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.detailed-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.detailed-progress-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.detailed-progress-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.final-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.final-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.final-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.final-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.groups+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.groups+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.groups+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.poc.groups+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.invocation-descriptor+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.invocation-descriptor+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.invocation-descriptor+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.invocation-descriptor+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.optimized-progress-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.optimized-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.optimized-progress-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.optimized-progress-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.push","encoding":"base64","references":["IANA","[Bryan_Sullivan]","[OMA]","{application/vnd.oma.push=http://www.iana.org/assignments/media-types/application/vnd.oma.push}"],"xrefs":{"person":["Bryan_Sullivan","OMA"],"template":["application/vnd.oma.push"]},"registered":true},{"content-type":"application/vnd.oma.scidm.messages+xml","encoding":"base64","references":["IANA","[Wenjun_Zeng]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.scidm.messages+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.scidm.messages+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Wenjun_Zeng"],"template":["application/vnd.oma.scidm.messages+xml"]},"registered":true},{"content-type":"application/vnd.oma.xcap-directory+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Presence_and_Availability_PAG_Working_Group]","{application/vnd.oma.xcap-directory+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.xcap-directory+xml}"],"xrefs":{"person":["OMA_Presence_and_Availability_PAG_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.xcap-directory+xml"]},"registered":true},{"content-type":"application/vnd.omads-email+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-email+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-email+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-email+xml"]},"registered":true},{"content-type":"application/vnd.omads-file+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-file+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-file+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-file+xml"]},"registered":true},{"content-type":"application/vnd.omads-folder+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-folder+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-folder+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-folder+xml"]},"registered":true},{"content-type":"application/vnd.omaloc-supl-init","encoding":"base64","references":["IANA","[Julien_Grange]","{application/vnd.omaloc-supl-init=http://www.iana.org/assignments/media-types/application/vnd.omaloc-supl-init}"],"xrefs":{"person":["Julien_Grange"],"template":["application/vnd.omaloc-supl-init"]},"registered":true},{"content-type":"application/vnd.openblox.game+xml","encoding":"base64","references":["IANA","[Mark_Otaris]","{application/vnd.openblox.game+xml=http://www.iana.org/assignments/media-types/application/vnd.openblox.game+xml}"],"xrefs":{"person":["Mark_Otaris"],"template":["application/vnd.openblox.game+xml"]},"registered":true},{"content-type":"application/vnd.openblox.game-binary","encoding":"base64","references":["IANA","[Mark_Otaris]","{application/vnd.openblox.game-binary=http://www.iana.org/assignments/media-types/application/vnd.openblox.game-binary}"],"xrefs":{"person":["Mark_Otaris"],"template":["application/vnd.openblox.game-binary"]},"registered":true},{"content-type":"application/vnd.openeye.oeb","encoding":"base64","references":["IANA","[Craig_Bruce]","{application/vnd.openeye.oeb=http://www.iana.org/assignments/media-types/application/vnd.openeye.oeb}"],"xrefs":{"person":["Craig_Bruce"],"template":["application/vnd.openeye.oeb"]},"registered":true},{"content-type":"application/vnd.openofficeorg.extension","friendly":{"en":"Open Office Extension"},"encoding":"base64","extensions":["oxt"],"references":["IANA","[Lingner]"],"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.custom-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.custom-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.custom-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.custom-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.customXmlProperties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.customXmlProperties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.customXmlProperties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.customXmlProperties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawing+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawing+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawing+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawing+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chart+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.chart+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chart+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.chart+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.extended-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.extended-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.extended-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.extended-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation","friendly":{"en":"Microsoft Office - OOXML - Presentation"},"encoding":"base64","extensions":["pptx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presentation=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presentation"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presProps+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presProps+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presProps+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slide)"},"encoding":"base64","extensions":["sldx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slide=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slide"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slide+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slideshow)"},"encoding":"base64","extensions":["ppsx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideshow=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideshow"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tags+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.tags+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tags+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.tags+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template","friendly":{"en":"Microsoft Office - OOXML - Presentation Template"},"encoding":"base64","extensions":["potx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet"},"encoding":"base64","extensions":["xlsx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet Teplate"},"encoding":"base64","extensions":["xltx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.theme+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.theme+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.theme+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.theme+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.themeOverride+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.themeOverride+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.themeOverride+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.themeOverride+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.vmlDrawing","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.vmlDrawing=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.vmlDrawing}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.vmlDrawing"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document","friendly":{"en":"Microsoft Office - OOXML - Word Document"},"encoding":"base64","extensions":["docx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template","friendly":{"en":"Microsoft Office - OOXML - Word Document Template"},"encoding":"base64","extensions":["dotx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.core-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.core-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.core-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.core-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.relationships+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.relationships+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.relationships+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.relationships+xml"]},"registered":true},{"content-type":"application/vnd.oracle.resource+json","encoding":"base64","references":["IANA","[Ning_Dong]","{application/vnd.oracle.resource+json=http://www.iana.org/assignments/media-types/application/vnd.oracle.resource+json}"],"xrefs":{"person":["Ning_Dong"],"template":["application/vnd.oracle.resource+json"]},"registered":true},{"content-type":"application/vnd.orange.indata","encoding":"base64","references":["IANA","[CHATRAS_Bruno]","{application/vnd.orange.indata=http://www.iana.org/assignments/media-types/application/vnd.orange.indata}"],"xrefs":{"person":["CHATRAS_Bruno"],"template":["application/vnd.orange.indata"]},"registered":true},{"content-type":"application/vnd.osa.netdeploy","encoding":"base64","references":["IANA","[Steven_Klos]","{application/vnd.osa.netdeploy=http://www.iana.org/assignments/media-types/application/vnd.osa.netdeploy}"],"xrefs":{"person":["Steven_Klos"],"template":["application/vnd.osa.netdeploy"]},"registered":true},{"content-type":"application/vnd.osgeo.mapguide.package","friendly":{"en":"MapGuide DBXML"},"encoding":"base64","extensions":["mgp"],"references":["IANA","[Jason_Birch]","{application/vnd.osgeo.mapguide.package=http://www.iana.org/assignments/media-types/application/vnd.osgeo.mapguide.package}"],"xrefs":{"person":["Jason_Birch"],"template":["application/vnd.osgeo.mapguide.package"]},"registered":true},{"content-type":"application/vnd.osgi.bundle","encoding":"base64","references":["IANA","[Peter_Kriens]","{application/vnd.osgi.bundle=http://www.iana.org/assignments/media-types/application/vnd.osgi.bundle}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.bundle"]},"registered":true},{"content-type":"application/vnd.osgi.dp","friendly":{"en":"OSGi Deployment Package"},"encoding":"base64","extensions":["dp"],"references":["IANA","[Peter_Kriens]","{application/vnd.osgi.dp=http://www.iana.org/assignments/media-types/application/vnd.osgi.dp}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.dp"]},"registered":true},{"content-type":"application/vnd.osgi.subsystem","encoding":"base64","extensions":["esa"],"references":["IANA","[Peter_Kriens]","{application/vnd.osgi.subsystem=http://www.iana.org/assignments/media-types/application/vnd.osgi.subsystem}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.subsystem"]},"registered":true},{"content-type":"application/vnd.otps.ct-kip+xml","encoding":"base64","references":["IANA","[Magnus_Nystrom]","{application/vnd.otps.ct-kip+xml=http://www.iana.org/assignments/media-types/application/vnd.otps.ct-kip+xml}"],"xrefs":{"person":["Magnus_Nystrom"],"template":["application/vnd.otps.ct-kip+xml"]},"registered":true},{"content-type":"application/vnd.palm","friendly":{"en":"PalmOS Data"},"encoding":"base64","extensions":["prc","pdb","pqa","oprc"],"references":["IANA","[Gavin_Peacock]","{application/vnd.palm=http://www.iana.org/assignments/media-types/application/vnd.palm}"],"xrefs":{"person":["Gavin_Peacock"],"template":["application/vnd.palm"]},"registered":true},{"content-type":"application/vnd.panoply","encoding":"base64","references":["IANA","[Natarajan_Balasundara]","{application/vnd.panoply=http://www.iana.org/assignments/media-types/application/vnd.panoply}"],"xrefs":{"person":["Natarajan_Balasundara"],"template":["application/vnd.panoply"]},"registered":true},{"content-type":"application/vnd.paos.xml","encoding":"base64","references":["IANA","[John_Kemp]","{application/vnd.paos+xml=http://www.iana.org/assignments/media-types/application/vnd.paos+xml}"],"xrefs":{"person":["John_Kemp"],"template":["application/vnd.paos+xml"]},"registered":true},{"content-type":"application/vnd.pawaafile","friendly":{"en":"PawaaFILE"},"encoding":"base64","extensions":["paw"],"references":["IANA","[Prakash_Baskaran]","{application/vnd.pawaafile=http://www.iana.org/assignments/media-types/application/vnd.pawaafile}"],"xrefs":{"person":["Prakash_Baskaran"],"template":["application/vnd.pawaafile"]},"registered":true},{"content-type":"application/vnd.pcos","encoding":"base64","references":["IANA","[Slawomir_Lisznianski]","{application/vnd.pcos=http://www.iana.org/assignments/media-types/application/vnd.pcos}"],"xrefs":{"person":["Slawomir_Lisznianski"],"template":["application/vnd.pcos"]},"registered":true},{"content-type":"application/vnd.pg.format","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["str"],"references":["IANA","[April_Gandert]","{application/vnd.pg.format=http://www.iana.org/assignments/media-types/application/vnd.pg.format}"],"xrefs":{"person":["April_Gandert"],"template":["application/vnd.pg.format"]},"registered":true},{"content-type":"application/vnd.pg.osasli","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["ei6"],"references":["IANA","[April_Gandert]","{application/vnd.pg.osasli=http://www.iana.org/assignments/media-types/application/vnd.pg.osasli}"],"xrefs":{"person":["April_Gandert"],"template":["application/vnd.pg.osasli"]},"registered":true},{"content-type":"application/vnd.piaccess.application-licence","encoding":"base64","references":["IANA","[Lucas_Maneos]","{application/vnd.piaccess.application-licence=http://www.iana.org/assignments/media-types/application/vnd.piaccess.application-licence}"],"xrefs":{"person":["Lucas_Maneos"],"template":["application/vnd.piaccess.application-licence"]},"registered":true},{"content-type":"application/vnd.picsel","friendly":{"en":"Pcsel eFIF File"},"encoding":"base64","extensions":["efif"],"references":["IANA","[Giuseppe_Naccarato]","{application/vnd.picsel=http://www.iana.org/assignments/media-types/application/vnd.picsel}"],"xrefs":{"person":["Giuseppe_Naccarato"],"template":["application/vnd.picsel"]},"registered":true},{"content-type":"application/vnd.pmi.widget","friendly":{"en":"Qualcomm's Plaza Mobile Internet"},"encoding":"base64","extensions":["wg"],"references":["IANA","[Rhys_Lewis]","{application/vnd.pmi.widget=http://www.iana.org/assignments/media-types/application/vnd.pmi.widget}"],"xrefs":{"person":["Rhys_Lewis"],"template":["application/vnd.pmi.widget"]},"registered":true},{"content-type":"application/vnd.poc.group-advertisement+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.poc.group-advertisement+xml=http://www.iana.org/assignments/media-types/application/vnd.poc.group-advertisement+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group","Sean_Kelley"],"template":["application/vnd.poc.group-advertisement+xml"]},"registered":true},{"content-type":"application/vnd.pocketlearn","friendly":{"en":"PocketLearn Viewers"},"encoding":"base64","extensions":["plf"],"references":["IANA","[Jorge_Pando]","{application/vnd.pocketlearn=http://www.iana.org/assignments/media-types/application/vnd.pocketlearn}"],"xrefs":{"person":["Jorge_Pando"],"template":["application/vnd.pocketlearn"]},"registered":true},{"content-type":"application/vnd.powerbuilder6","friendly":{"en":"PowerBuilder"},"encoding":"base64","extensions":["pbd"],"references":["IANA","[David_Guy]","{application/vnd.powerbuilder6=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6}"],"xrefs":{"person":["David_Guy"],"template":["application/vnd.powerbuilder6"]},"registered":true},{"content-type":"application/vnd.powerbuilder6-s","encoding":"base64","references":["IANA","[David_Guy]","{application/vnd.powerbuilder6-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6-s}"],"xrefs":{"person":["David_Guy"],"template":["application/vnd.powerbuilder6-s"]},"registered":true},{"content-type":"application/vnd.powerbuilder7","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder7=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder7"]},"registered":true},{"content-type":"application/vnd.powerbuilder7-s","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder7-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7-s}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder7-s"]},"registered":true},{"content-type":"application/vnd.powerbuilder75","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder75=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder75"]},"registered":true},{"content-type":"application/vnd.powerbuilder75-s","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder75-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75-s}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder75-s"]},"registered":true},{"content-type":"application/vnd.preminet","encoding":"base64","references":["IANA","[Juoko_Tenhunen]","{application/vnd.preminet=http://www.iana.org/assignments/media-types/application/vnd.preminet}"],"xrefs":{"person":["Juoko_Tenhunen"],"template":["application/vnd.preminet"]},"registered":true},{"content-type":"application/vnd.previewsystems.box","friendly":{"en":"Preview Systems ZipLock/VBox"},"encoding":"base64","extensions":["box"],"references":["IANA","[Roman_Smolgovsky]","{application/vnd.previewsystems.box=http://www.iana.org/assignments/media-types/application/vnd.previewsystems.box}"],"xrefs":{"person":["Roman_Smolgovsky"],"template":["application/vnd.previewsystems.box"]},"registered":true},{"content-type":"application/vnd.proteus.magazine","friendly":{"en":"EFI Proteus"},"encoding":"base64","extensions":["mgz"],"references":["IANA","[Pete_Hoch]","{application/vnd.proteus.magazine=http://www.iana.org/assignments/media-types/application/vnd.proteus.magazine}"],"xrefs":{"person":["Pete_Hoch"],"template":["application/vnd.proteus.magazine"]},"registered":true},{"content-type":"application/vnd.publishare-delta-tree","friendly":{"en":"PubliShare Objects"},"encoding":"base64","extensions":["qps"],"references":["IANA","[Oren_Ben-Kiki]","{application/vnd.publishare-delta-tree=http://www.iana.org/assignments/media-types/application/vnd.publishare-delta-tree}"],"xrefs":{"person":["Oren_Ben-Kiki"],"template":["application/vnd.publishare-delta-tree"]},"registered":true},{"content-type":"application/vnd.pvi.ptid1","friendly":{"en":"Princeton Video Image"},"encoding":"base64","extensions":["pti","ptid"],"references":["IANA","[Charles_P._Lamb]","{application/vnd.pvi.ptid1=http://www.iana.org/assignments/media-types/application/vnd.pvi.ptid1}"],"xrefs":{"person":["Charles_P._Lamb"],"template":["application/vnd.pvi.ptid1"]},"registered":true},{"content-type":"application/vnd.pwg-multiplexed","encoding":"base64","references":["IANA","RFC3391","{application/vnd.pwg-multiplexed=http://www.iana.org/assignments/media-types/application/vnd.pwg-multiplexed}"],"xrefs":{"rfc":["rfc3391"],"template":["application/vnd.pwg-multiplexed"]},"registered":true},{"content-type":"application/vnd.pwg-xhtml-print+xml","encoding":"base64","references":["IANA","[Don_Wright]","{application/vnd.pwg-xhtml-print+xml=http://www.iana.org/assignments/media-types/application/vnd.pwg-xhtml-print+xml}"],"xrefs":{"person":["Don_Wright"],"template":["application/vnd.pwg-xhtml-print+xml"]},"registered":true},{"content-type":"application/vnd.qualcomm.brew-app-res","encoding":"base64","references":["IANA","[Glenn_Forrester]","{application/vnd.qualcomm.brew-app-res=http://www.iana.org/assignments/media-types/application/vnd.qualcomm.brew-app-res}"],"xrefs":{"person":["Glenn_Forrester"],"template":["application/vnd.qualcomm.brew-app-res"]},"registered":true},{"content-type":"application/vnd.Quark.QuarkXPress","friendly":{"en":"QuarkXPress"},"encoding":"8bit","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"],"references":["IANA","[Hannes_Scheidler]","{application/vnd.Quark.QuarkXPress=http://www.iana.org/assignments/media-types/application/vnd.Quark.QuarkXPress}"],"xrefs":{"person":["Hannes_Scheidler"],"template":["application/vnd.Quark.QuarkXPress"]},"registered":true},{"content-type":"application/vnd.quobject-quoxdocument","encoding":"base64","references":["IANA","[Matthias_Ludwig]","{application/vnd.quobject-quoxdocument=http://www.iana.org/assignments/media-types/application/vnd.quobject-quoxdocument}"],"xrefs":{"person":["Matthias_Ludwig"],"template":["application/vnd.quobject-quoxdocument"]},"registered":true},{"content-type":"application/vnd.radisys.moml+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.moml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.moml+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.moml+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conf+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conf+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-conf+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conn+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-conn+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conn+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-conn+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-dialog+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-dialog+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-dialog+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-stream+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-stream+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-stream+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-stream+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-conf+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-conf+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-conf+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-base+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-base+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-base+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-base+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-detect+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-fax-detect+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-detect+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-fax-detect+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-sendrecv+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-fax-sendrecv+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-sendrecv+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-fax-sendrecv+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-group+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-group+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-group+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-group+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-speech+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-speech+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-speech+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-speech+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-transform+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-transform+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-transform+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-transform+xml"]},"registered":true},{"content-type":"application/vnd.rainstor.data","encoding":"base64","references":["IANA","[Kevin_Crook]","{application/vnd.rainstor.data=http://www.iana.org/assignments/media-types/application/vnd.rainstor.data}"],"xrefs":{"person":["Kevin_Crook"],"template":["application/vnd.rainstor.data"]},"registered":true},{"content-type":"application/vnd.rapid","encoding":"base64","references":["IANA","[Etay_Szekely]","{application/vnd.rapid=http://www.iana.org/assignments/media-types/application/vnd.rapid}"],"xrefs":{"person":["Etay_Szekely"],"template":["application/vnd.rapid"]},"registered":true},{"content-type":"application/vnd.realvnc.bed","friendly":{"en":"RealVNC"},"encoding":"base64","extensions":["bed"],"references":["IANA","[Nick_Reeves]","{application/vnd.realvnc.bed=http://www.iana.org/assignments/media-types/application/vnd.realvnc.bed}"],"xrefs":{"person":["Nick_Reeves"],"template":["application/vnd.realvnc.bed"]},"registered":true},{"content-type":"application/vnd.recordare.musicxml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["mxl"],"references":["IANA","[Michael_Good]","{application/vnd.recordare.musicxml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml}"],"xrefs":{"person":["Michael_Good"],"template":["application/vnd.recordare.musicxml"]},"registered":true},{"content-type":"application/vnd.recordare.musicxml+xml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["musicxml"],"references":["IANA","[Michael_Good]","{application/vnd.recordare.musicxml+xml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml+xml}"],"xrefs":{"person":["Michael_Good"],"template":["application/vnd.recordare.musicxml+xml"]},"registered":true},{"content-type":"application/vnd.RenLearn.rlprint","encoding":"base64","references":["IANA","[James_Wick]","{application/vnd.renlearn.rlprint=http://www.iana.org/assignments/media-types/application/vnd.renlearn.rlprint}"],"xrefs":{"person":["James_Wick"],"template":["application/vnd.renlearn.rlprint"]},"registered":true},{"content-type":"application/vnd.rig.cryptonote","friendly":{"en":"CryptoNote"},"encoding":"base64","extensions":["cryptonote"],"references":["IANA","[Ken_Jibiki]","{application/vnd.rig.cryptonote=http://www.iana.org/assignments/media-types/application/vnd.rig.cryptonote}"],"xrefs":{"person":["Ken_Jibiki"],"template":["application/vnd.rig.cryptonote"]},"registered":true},{"content-type":"application/vnd.rim.cod","friendly":{"en":"Blackberry COD File"},"encoding":"base64","extensions":["cod"],"registered":false},{"content-type":"application/vnd.rn-realmedia","friendly":{"en":"RealMedia"},"encoding":"base64","extensions":["rm"],"registered":false},{"content-type":"application/vnd.rn-realmedia-vbr","encoding":"base64","extensions":["rmvb"],"registered":false},{"content-type":"application/vnd.route66.link66+xml","friendly":{"en":"ROUTE 66 Location Based Services"},"encoding":"base64","extensions":["link66"],"references":["IANA","[Sybren_Kikstra]","{application/vnd.route66.link66+xml=http://www.iana.org/assignments/media-types/application/vnd.route66.link66+xml}"],"xrefs":{"person":["Sybren_Kikstra"],"template":["application/vnd.route66.link66+xml"]},"registered":true},{"content-type":"application/vnd.rs-274x","encoding":"base64","references":["IANA","[Lee_Harding]","{application/vnd.rs-274x=http://www.iana.org/assignments/media-types/application/vnd.rs-274x}"],"xrefs":{"person":["Lee_Harding"],"template":["application/vnd.rs-274x"]},"registered":true},{"content-type":"application/vnd.ruckus.download","encoding":"base64","references":["IANA","[Jerry_Harris]","{application/vnd.ruckus.download=http://www.iana.org/assignments/media-types/application/vnd.ruckus.download}"],"xrefs":{"person":["Jerry_Harris"],"template":["application/vnd.ruckus.download"]},"registered":true},{"content-type":"application/vnd.s3sms","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.s3sms=http://www.iana.org/assignments/media-types/application/vnd.s3sms}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.s3sms"]},"registered":true},{"content-type":"application/vnd.sailingtracker.track","friendly":{"en":"SailingTracker"},"encoding":"base64","extensions":["st"],"references":["IANA","[Heikki_Vesalainen]","{application/vnd.sailingtracker.track=http://www.iana.org/assignments/media-types/application/vnd.sailingtracker.track}"],"xrefs":{"person":["Heikki_Vesalainen"],"template":["application/vnd.sailingtracker.track"]},"registered":true},{"content-type":"application/vnd.sbm.cid","encoding":"base64","references":["IANA","[Shinji_Kusakari]","{application/vnd.sbm.cid=http://www.iana.org/assignments/media-types/application/vnd.sbm.cid}"],"xrefs":{"person":["Shinji_Kusakari"],"template":["application/vnd.sbm.cid"]},"registered":true},{"content-type":"application/vnd.sbm.mid2","encoding":"base64","references":["IANA","[Masanori_Murai]","{application/vnd.sbm.mid2=http://www.iana.org/assignments/media-types/application/vnd.sbm.mid2}"],"xrefs":{"person":["Masanori_Murai"],"template":["application/vnd.sbm.mid2"]},"registered":true},{"content-type":"application/vnd.scribus","encoding":"base64","references":["IANA","[Craig_Bradney]","{application/vnd.scribus=http://www.iana.org/assignments/media-types/application/vnd.scribus}"],"xrefs":{"person":["Craig_Bradney"],"template":["application/vnd.scribus"]},"registered":true},{"content-type":"application/vnd.sealed.3df","encoding":"base64","references":["IANA","[John_Kwan]","{application/vnd.sealed.3df=http://www.iana.org/assignments/media-types/application/vnd.sealed.3df}"],"xrefs":{"person":["John_Kwan"],"template":["application/vnd.sealed.3df"]},"registered":true},{"content-type":"application/vnd.sealed.csf","encoding":"base64","references":["IANA","[John_Kwan]","{application/vnd.sealed.csf=http://www.iana.org/assignments/media-types/application/vnd.sealed.csf}"],"xrefs":{"person":["John_Kwan"],"template":["application/vnd.sealed.csf"]},"registered":true},{"content-type":"application/vnd.sealed.doc","encoding":"base64","extensions":["sdoc","sdo","s1w"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-doc=http://www.iana.org/assignments/media-types/application/vnd.sealed-doc}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-doc"]},"registered":true},{"content-type":"application/vnd.sealed.eml","encoding":"base64","extensions":["seml","sem"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-eml=http://www.iana.org/assignments/media-types/application/vnd.sealed-eml}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-eml"]},"registered":true},{"content-type":"application/vnd.sealed.mht","encoding":"base64","extensions":["smht","smh"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-mht=http://www.iana.org/assignments/media-types/application/vnd.sealed-mht}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-mht"]},"registered":true},{"content-type":"application/vnd.sealed.net","encoding":"base64","references":["IANA","[Martin_Lambert]","{application/vnd.sealed.net=http://www.iana.org/assignments/media-types/application/vnd.sealed.net}"],"xrefs":{"person":["Martin_Lambert"],"template":["application/vnd.sealed.net"]},"registered":true},{"content-type":"application/vnd.sealed.ppt","encoding":"base64","extensions":["sppt","spp","s1p"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-ppt=http://www.iana.org/assignments/media-types/application/vnd.sealed-ppt}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-ppt"]},"registered":true},{"content-type":"application/vnd.sealed.tiff","encoding":"base64","references":["IANA","[John_Kwan]","[Martin_Lambert]","{application/vnd.sealed-tiff=http://www.iana.org/assignments/media-types/application/vnd.sealed-tiff}"],"xrefs":{"person":["John_Kwan","Martin_Lambert"],"template":["application/vnd.sealed-tiff"]},"registered":true},{"content-type":"application/vnd.sealed.xls","encoding":"base64","extensions":["sxls","sxl","s1e"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-xls=http://www.iana.org/assignments/media-types/application/vnd.sealed-xls}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-xls"]},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.html","encoding":"base64","extensions":["stml","stm","s1h"],"references":["IANA","[David_Petersen]","{application/vnd.sealedmedia.softseal-html=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-html}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealedmedia.softseal-html"]},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.pdf","encoding":"base64","extensions":["spdf","spd","s1a"],"references":["IANA","[David_Petersen]","{application/vnd.sealedmedia.softseal-pdf=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-pdf}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealedmedia.softseal-pdf"]},"registered":true},{"content-type":"application/vnd.seemail","friendly":{"en":"SeeMail"},"encoding":"base64","extensions":["see"],"references":["IANA","[Steve_Webb]","{application/vnd.seemail=http://www.iana.org/assignments/media-types/application/vnd.seemail}"],"xrefs":{"person":["Steve_Webb"],"template":["application/vnd.seemail"]},"registered":true},{"content-type":"application/vnd.sema","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["sema"],"references":["IANA","[Anders_Hansson]","{application/vnd-sema=http://www.iana.org/assignments/media-types/application/vnd-sema}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd-sema"]},"registered":true},{"content-type":"application/vnd.semd","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semd"],"references":["IANA","[Anders_Hansson]","{application/vnd.semd=http://www.iana.org/assignments/media-types/application/vnd.semd}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd.semd"]},"registered":true},{"content-type":"application/vnd.semf","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semf"],"references":["IANA","[Anders_Hansson]","{application/vnd.semf=http://www.iana.org/assignments/media-types/application/vnd.semf}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd.semf"]},"registered":true},{"content-type":"application/vnd.shana.informed.formdata","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ifm"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.formdata=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formdata}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.formdata"]},"registered":true},{"content-type":"application/vnd.shana.informed.formtemplate","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["itp"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.formtemplate=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formtemplate}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.formtemplate"]},"registered":true},{"content-type":"application/vnd.shana.informed.interchange","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["iif"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.interchange=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.interchange}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.interchange"]},"registered":true},{"content-type":"application/vnd.shana.informed.package","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ipk"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.package=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.package}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.package"]},"registered":true},{"content-type":"application/vnd.SimTech-MindMapper","friendly":{"en":"SimTech MindMapper"},"encoding":"base64","extensions":["twd","twds"],"references":["IANA","[Patrick_Koh]","{application/vnd.SimTech-MindMapper=http://www.iana.org/assignments/media-types/application/vnd.SimTech-MindMapper}"],"xrefs":{"person":["Patrick_Koh"],"template":["application/vnd.SimTech-MindMapper"]},"registered":true},{"content-type":"application/vnd.siren+json","encoding":"base64","references":["IANA","[Kevin_Swiber]","{application/vnd.siren+json=http://www.iana.org/assignments/media-types/application/vnd.siren+json}"],"xrefs":{"person":["Kevin_Swiber"],"template":["application/vnd.siren+json"]},"registered":true},{"content-type":"application/vnd.smaf","friendly":{"en":"SMAF File"},"encoding":"base64","extensions":["mmf"],"references":["IANA","[Hiroaki_Takahashi]","{application/vnd.smaf=http://www.iana.org/assignments/media-types/application/vnd.smaf}"],"xrefs":{"person":["Hiroaki_Takahashi"],"template":["application/vnd.smaf"]},"registered":true},{"content-type":"application/vnd.smart.notebook","encoding":"base64","references":["IANA","[Jonathan_Neitz]","{application/vnd.smart.notebook=http://www.iana.org/assignments/media-types/application/vnd.smart.notebook}"],"xrefs":{"person":["Jonathan_Neitz"],"template":["application/vnd.smart.notebook"]},"registered":true},{"content-type":"application/vnd.smart.teacher","friendly":{"en":"SMART Technologies Apps"},"encoding":"base64","extensions":["teacher"],"references":["IANA","[Michael_Boyle]","{application/vnd.smart.teacher=http://www.iana.org/assignments/media-types/application/vnd.smart.teacher}"],"xrefs":{"person":["Michael_Boyle"],"template":["application/vnd.smart.teacher"]},"registered":true},{"content-type":"application/vnd.software602.filler.form+xml","encoding":"base64","references":["IANA","[Jakub_Hytka]","[Martin_Vondrous]","{application/vnd.software602.filler.form+xml=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form+xml}"],"xrefs":{"person":["Jakub_Hytka","Martin_Vondrous"],"template":["application/vnd.software602.filler.form+xml"]},"registered":true},{"content-type":"application/vnd.software602.filler.form-xml-zip","encoding":"base64","references":["IANA","[Jakub_Hytka]","[Martin_Vondrous]","{application/vnd.software602.filler.form-xml-zip=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form-xml-zip}"],"xrefs":{"person":["Jakub_Hytka","Martin_Vondrous"],"template":["application/vnd.software602.filler.form-xml-zip"]},"registered":true},{"content-type":"application/vnd.solent.sdkm+xml","friendly":{"en":"SudokuMagic"},"encoding":"base64","extensions":["sdkd","sdkm"],"references":["IANA","[Cliff_Gauntlett]","{application/vnd.solent.sdkm+xml=http://www.iana.org/assignments/media-types/application/vnd.solent.sdkm+xml}"],"xrefs":{"person":["Cliff_Gauntlett"],"template":["application/vnd.solent.sdkm+xml"]},"registered":true},{"content-type":"application/vnd.spotfire.dxp","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["dxp"],"references":["IANA","[Stefan_Jernberg]","{application/vnd.spotfire.dxp=http://www.iana.org/assignments/media-types/application/vnd.spotfire.dxp}"],"xrefs":{"person":["Stefan_Jernberg"],"template":["application/vnd.spotfire.dxp"]},"registered":true},{"content-type":"application/vnd.spotfire.sfs","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["sfs"],"references":["IANA","[Stefan_Jernberg]","{application/vnd.spotfire.sfs=http://www.iana.org/assignments/media-types/application/vnd.spotfire.sfs}"],"xrefs":{"person":["Stefan_Jernberg"],"template":["application/vnd.spotfire.sfs"]},"registered":true},{"content-type":"application/vnd.sss-cod","encoding":"base64","references":["IANA","[Asang_Dani]","{application/vnd.sss-cod=http://www.iana.org/assignments/media-types/application/vnd.sss-cod}"],"xrefs":{"person":["Asang_Dani"],"template":["application/vnd.sss-cod"]},"registered":true},{"content-type":"application/vnd.sss-dtf","encoding":"base64","references":["IANA","[Eric_Bruno]","{application/vnd.sss-dtf=http://www.iana.org/assignments/media-types/application/vnd.sss-dtf}"],"xrefs":{"person":["Eric_Bruno"],"template":["application/vnd.sss-dtf"]},"registered":true},{"content-type":"application/vnd.sss-ntf","encoding":"base64","references":["IANA","[Eric_Bruno]","{application/vnd.sss-ntf=http://www.iana.org/assignments/media-types/application/vnd.sss-ntf}"],"xrefs":{"person":["Eric_Bruno"],"template":["application/vnd.sss-ntf"]},"registered":true},{"content-type":"application/vnd.stardivision.calc","friendly":{"en":"StarOffice - Calc"},"encoding":"base64","extensions":["sdc"],"registered":false},{"content-type":"application/vnd.stardivision.chart","encoding":"base64","extensions":["sds"],"registered":false},{"content-type":"application/vnd.stardivision.draw","friendly":{"en":"StarOffice - Draw"},"encoding":"base64","extensions":["sda"],"registered":false},{"content-type":"application/vnd.stardivision.impress","friendly":{"en":"StarOffice - Impress"},"encoding":"base64","extensions":["sdd"],"registered":false},{"content-type":"application/vnd.stardivision.math","friendly":{"en":"StarOffice - Math"},"encoding":"base64","extensions":["sdf","smf"],"registered":false},{"content-type":"application/vnd.stardivision.writer","friendly":{"en":"StarOffice - Writer"},"encoding":"base64","extensions":["sdw","vor"],"registered":false},{"content-type":"application/vnd.stardivision.writer-global","friendly":{"en":"StarOffice - Writer (Global)"},"encoding":"base64","extensions":["sgl"],"registered":false},{"content-type":"application/vnd.stepmania.package","encoding":"base64","extensions":["smzip"],"references":["IANA","[Henrik_Andersson]","{application/vnd.stepmania.package=http://www.iana.org/assignments/media-types/application/vnd.stepmania.package}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.stepmania.package"]},"registered":true},{"content-type":"application/vnd.stepmania.stepchart","friendly":{"en":"StepMania"},"encoding":"base64","extensions":["sm"],"references":["IANA","[Henrik_Andersson]","{application/vnd.stepmania.stepchart=http://www.iana.org/assignments/media-types/application/vnd.stepmania.stepchart}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.stepmania.stepchart"]},"registered":true},{"content-type":"application/vnd.street-stream","encoding":"base64","references":["IANA","[Glenn_Levitt]","{application/vnd.street-stream=http://www.iana.org/assignments/media-types/application/vnd.street-stream}"],"xrefs":{"person":["Glenn_Levitt"],"template":["application/vnd.street-stream"]},"registered":true},{"content-type":"application/vnd.sun.wadl+xml","encoding":"base64","references":["IANA","[Marc_Hadley]","{application/vnd.sun.wadl+xml=http://www.iana.org/assignments/media-types/application/vnd.sun.wadl+xml}"],"xrefs":{"person":["Marc_Hadley"],"template":["application/vnd.sun.wadl+xml"]},"registered":true},{"content-type":"application/vnd.sun.xml.calc","friendly":{"en":"OpenOffice - Calc (Spreadsheet)"},"encoding":"base64","extensions":["sxc"],"registered":false},{"content-type":"application/vnd.sun.xml.calc.template","friendly":{"en":"OpenOffice - Calc Template (Spreadsheet)"},"encoding":"base64","extensions":["stc"],"registered":false},{"content-type":"application/vnd.sun.xml.draw","friendly":{"en":"OpenOffice - Draw (Graphics)"},"encoding":"base64","extensions":["sxd"],"registered":false},{"content-type":"application/vnd.sun.xml.draw.template","friendly":{"en":"OpenOffice - Draw Template (Graphics)"},"encoding":"base64","extensions":["std"],"registered":false},{"content-type":"application/vnd.sun.xml.impress","friendly":{"en":"OpenOffice - Impress (Presentation)"},"encoding":"base64","extensions":["sxi"],"registered":false},{"content-type":"application/vnd.sun.xml.impress.template","friendly":{"en":"OpenOffice - Impress Template (Presentation)"},"encoding":"base64","extensions":["sti"],"registered":false},{"content-type":"application/vnd.sun.xml.math","friendly":{"en":"OpenOffice - Math (Formula)"},"encoding":"base64","extensions":["sxm"],"registered":false},{"content-type":"application/vnd.sun.xml.writer","friendly":{"en":"OpenOffice - Writer (Text - HTML)"},"encoding":"base64","extensions":["sxw"],"registered":false},{"content-type":"application/vnd.sun.xml.writer.global","friendly":{"en":"OpenOffice - Writer (Text - HTML)"},"encoding":"base64","extensions":["sxg"],"registered":false},{"content-type":"application/vnd.sun.xml.writer.template","friendly":{"en":"OpenOffice - Writer Template (Text - HTML)"},"encoding":"base64","extensions":["stw"],"registered":false},{"content-type":"application/vnd.sus-calendar","friendly":{"en":"ScheduleUs"},"encoding":"base64","extensions":["sus","susp"],"references":["IANA","[Jonathan_Niedfeldt]","{application/vnd.sus-calendar=http://www.iana.org/assignments/media-types/application/vnd.sus-calendar}"],"xrefs":{"person":["Jonathan_Niedfeldt"],"template":["application/vnd.sus-calendar"]},"registered":true},{"content-type":"application/vnd.svd","friendly":{"en":"SourceView Document"},"encoding":"base64","extensions":["svd"],"references":["IANA","[Scott_Becker]","{application/vnd.svd=http://www.iana.org/assignments/media-types/application/vnd.svd}"],"xrefs":{"person":["Scott_Becker"],"template":["application/vnd.svd"]},"registered":true},{"content-type":"application/vnd.swiftview-ics","encoding":"base64","references":["IANA","[Glenn_Widener]","{application/vnd.swiftview-ics=http://www.iana.org/assignments/media-types/application/vnd.swiftview-ics}"],"xrefs":{"person":["Glenn_Widener"],"template":["application/vnd.swiftview-ics"]},"registered":true},{"content-type":"application/vnd.symbian.install","friendly":{"en":"Symbian Install Package"},"encoding":"base64","extensions":["sis","sisx"],"registered":false},{"content-type":"application/vnd.syncml+xml","friendly":{"en":"SyncML"},"encoding":"base64","extensions":["xsm"],"references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.syncml+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.syncml+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dm+wbxml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["bdm"],"references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dm+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dm+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dm+xml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["xdm"],"references":["IANA","[Bindu_Rama_Rao]","[OMA-DM_Work_Group]","{application/vnd.syncml.dm+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+xml}"],"xrefs":{"person":["Bindu_Rama_Rao","OMA-DM_Work_Group"],"template":["application/vnd.syncml.dm+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dm.notification","encoding":"base64","references":["IANA","[Peter_Thompson]","[OMA-DM_Work_Group]","{application/vnd.syncml.dm.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm.notification}"],"xrefs":{"person":["OMA-DM_Work_Group","Peter_Thompson"],"template":["application/vnd.syncml.dm.notification"]},"registered":true},{"content-type":"application/vnd.syncml.dmddf+wbxml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmddf+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmddf+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dmddf+xml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmddf+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+xml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmddf+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+wbxml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmtnds+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmtnds+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+xml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmtnds+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+xml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmtnds+xml"]},"registered":true},{"content-type":"application/vnd.syncml.ds.notification","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.syncml.ds.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.ds.notification}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.syncml.ds.notification"]},"registered":true},{"content-type":"application/vnd.tao.intent-module-archive","friendly":{"en":"Tao Intent"},"encoding":"base64","extensions":["tao"],"references":["IANA","[Daniel_Shelton]","{application/vnd.tao.intent-module-archive=http://www.iana.org/assignments/media-types/application/vnd.tao.intent-module-archive}"],"xrefs":{"person":["Daniel_Shelton"],"template":["application/vnd.tao.intent-module-archive"]},"registered":true},{"content-type":"application/vnd.tcpdump.pcap","encoding":"base64","extensions":["cap","dmp","pcap"],"references":["IANA","[Guy_Harris]","[Glen_Turner]","{application/vnd.tcpdump.pcap=http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap}"],"xrefs":{"person":["Glen_Turner","Guy_Harris"],"template":["application/vnd.tcpdump.pcap"]},"registered":true},{"content-type":"application/vnd.tmd.mediaflex.api+xml","encoding":"base64","references":["IANA","[Alex_Sibilev]","{application/vnd.tmd.mediaflex.api+xml=http://www.iana.org/assignments/media-types/application/vnd.tmd.mediaflex.api+xml}"],"xrefs":{"person":["Alex_Sibilev"],"template":["application/vnd.tmd.mediaflex.api+xml"]},"registered":true},{"content-type":"application/vnd.tmobile-livetv","friendly":{"en":"MobileTV"},"encoding":"base64","extensions":["tmo"],"references":["IANA","[Nicolas_Helin]","{application/vnd.tmobile-livetv=http://www.iana.org/assignments/media-types/application/vnd.tmobile-livetv}"],"xrefs":{"person":["Nicolas_Helin"],"template":["application/vnd.tmobile-livetv"]},"registered":true},{"content-type":"application/vnd.trid.tpt","friendly":{"en":"TRI Systems Config"},"encoding":"base64","extensions":["tpt"],"references":["IANA","[Frank_Cusack]","{application/vnd.trid.tpt=http://www.iana.org/assignments/media-types/application/vnd.trid.tpt}"],"xrefs":{"person":["Frank_Cusack"],"template":["application/vnd.trid.tpt"]},"registered":true},{"content-type":"application/vnd.triscape.mxs","friendly":{"en":"Triscape Map Explorer"},"encoding":"base64","extensions":["mxs"],"references":["IANA","[Steven_Simonoff]","{application/vnd.triscape.mxs=http://www.iana.org/assignments/media-types/application/vnd.triscape.mxs}"],"xrefs":{"person":["Steven_Simonoff"],"template":["application/vnd.triscape.mxs"]},"registered":true},{"content-type":"application/vnd.trueapp","friendly":{"en":"True BASIC"},"encoding":"base64","extensions":["tra"],"references":["IANA","[J._Scott_Hepler]","{application/vnd.trueapp=http://www.iana.org/assignments/media-types/application/vnd.trueapp}"],"xrefs":{"person":["J._Scott_Hepler"],"template":["application/vnd.trueapp"]},"registered":true},{"content-type":"application/vnd.truedoc","encoding":"base64","references":["IANA","[Brad_Chase]","{application/vnd.truedoc=http://www.iana.org/assignments/media-types/application/vnd.truedoc}"],"xrefs":{"person":["Brad_Chase"],"template":["application/vnd.truedoc"]},"registered":true},{"content-type":"application/vnd.ubisoft.webplayer","encoding":"base64","references":["IANA","[Martin_Talbot]","{application/vnd.ubisoft.webplayer=http://www.iana.org/assignments/media-types/application/vnd.ubisoft.webplayer}"],"xrefs":{"person":["Martin_Talbot"],"template":["application/vnd.ubisoft.webplayer"]},"registered":true},{"content-type":"application/vnd.ufdl","friendly":{"en":"Universal Forms Description Language"},"encoding":"base64","extensions":["ufd","ufdl"],"references":["IANA","[Dave_Manning]","{application/vnd.ufdl=http://www.iana.org/assignments/media-types/application/vnd.ufdl}"],"xrefs":{"person":["Dave_Manning"],"template":["application/vnd.ufdl"]},"registered":true},{"content-type":"application/vnd.uiq.theme","friendly":{"en":"User Interface Quartz - Theme (Symbian)"},"encoding":"base64","extensions":["utz"],"references":["IANA","[Tim_Ocock]","{application/vnd.uiq.theme=http://www.iana.org/assignments/media-types/application/vnd.uiq.theme}"],"xrefs":{"person":["Tim_Ocock"],"template":["application/vnd.uiq.theme"]},"registered":true},{"content-type":"application/vnd.umajin","friendly":{"en":"UMAJIN"},"encoding":"base64","extensions":["umj"],"references":["IANA","[Jamie_Riden]","{application/vnd.umajin=http://www.iana.org/assignments/media-types/application/vnd.umajin}"],"xrefs":{"person":["Jamie_Riden"],"template":["application/vnd.umajin"]},"registered":true},{"content-type":"application/vnd.unity","friendly":{"en":"Unity 3d"},"encoding":"base64","extensions":["unityweb"],"references":["IANA","[Unity3d]","{application/vnd.unity=http://www.iana.org/assignments/media-types/application/vnd.unity}"],"xrefs":{"person":["Unity3d"],"template":["application/vnd.unity"]},"registered":true},{"content-type":"application/vnd.uoml+xml","friendly":{"en":"Unique Object Markup Language"},"encoding":"base64","extensions":["uoml"],"references":["IANA","[Arne_Gerdes]","{application/vnd.uoml+xml=http://www.iana.org/assignments/media-types/application/vnd.uoml+xml}"],"xrefs":{"person":["Arne_Gerdes"],"template":["application/vnd.uoml+xml"]},"registered":true},{"content-type":"application/vnd.uplanet.alert","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.alert=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.alert"]},"registered":true},{"content-type":"application/vnd.uplanet.alert-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.alert-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.alert-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.bearer-choice=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.bearer-choice"]},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.bearer-choice-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.bearer-choice-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.cacheop","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.cacheop=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.cacheop"]},"registered":true},{"content-type":"application/vnd.uplanet.cacheop-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.cacheop-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.cacheop-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.channel","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.channel=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.channel"]},"registered":true},{"content-type":"application/vnd.uplanet.channel-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.channel-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.channel-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.list","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.list=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.list"]},"registered":true},{"content-type":"application/vnd.uplanet.list-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.list-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.list-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.listcmd","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.listcmd=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.listcmd"]},"registered":true},{"content-type":"application/vnd.uplanet.listcmd-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.listcmd-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.listcmd-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.signal","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.signal=http://www.iana.org/assignments/media-types/application/vnd.uplanet.signal}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.signal"]},"registered":true},{"content-type":"application/vnd.uri-map","encoding":"base64","references":["IANA","[Sebastian_Baer]","{application/vnd.uri-map=http://www.iana.org/assignments/media-types/application/vnd.uri-map}"],"xrefs":{"person":["Sebastian_Baer"],"template":["application/vnd.uri-map"]},"registered":true},{"content-type":"application/vnd.valve.source.material","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.valve.source.material=http://www.iana.org/assignments/media-types/application/vnd.valve.source.material}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.valve.source.material"]},"registered":true},{"content-type":"application/vnd.vcx","friendly":{"en":"VirtualCatalog"},"encoding":"base64","extensions":["vcx"],"references":["IANA","[Taisuke_Sugimoto]","{application/vnd.vcx=http://www.iana.org/assignments/media-types/application/vnd.vcx}"],"xrefs":{"person":["Taisuke_Sugimoto"],"template":["application/vnd.vcx"]},"registered":true},{"content-type":"application/vnd.vd-study","encoding":"base64","references":["IANA","[Luc_Rogge]","{application/vnd.vd-study=http://www.iana.org/assignments/media-types/application/vnd.vd-study}"],"xrefs":{"person":["Luc_Rogge"],"template":["application/vnd.vd-study"]},"registered":true},{"content-type":"application/vnd.vectorworks","encoding":"base64","references":["IANA","[Lyndsey_Ferguson]","[Biplab_Sarkar]","{application/vnd.vectorworks=http://www.iana.org/assignments/media-types/application/vnd.vectorworks}"],"xrefs":{"person":["Biplab_Sarkar","Lyndsey_Ferguson"],"template":["application/vnd.vectorworks"]},"registered":true},{"content-type":"application/vnd.verimatrix.vcas","encoding":"base64","references":["IANA","[Petr_Peterka]","{application/vnd.verimatrix.vcas=http://www.iana.org/assignments/media-types/application/vnd.verimatrix.vcas}"],"xrefs":{"person":["Petr_Peterka"],"template":["application/vnd.verimatrix.vcas"]},"registered":true},{"content-type":"application/vnd.vidsoft.vidconference","encoding":"8bit","extensions":["vsc"],"references":["IANA","[Robert_Hess]","{application/vnd.vidsoft.vidconference=http://www.iana.org/assignments/media-types/application/vnd.vidsoft.vidconference}"],"xrefs":{"person":["Robert_Hess"],"template":["application/vnd.vidsoft.vidconference"]},"registered":true},{"content-type":"application/vnd.visio","friendly":{"en":"Microsoft Visio"},"encoding":"base64","extensions":["vsd","vst","vsw","vss"],"references":["IANA","[Troy_Sandal]","{application/vnd.visio=http://www.iana.org/assignments/media-types/application/vnd.visio}"],"xrefs":{"person":["Troy_Sandal"],"template":["application/vnd.visio"]},"registered":true},{"content-type":"application/vnd.visionary","friendly":{"en":"Visionary"},"encoding":"base64","extensions":["vis"],"references":["IANA","[Gayatri_Aravindakumar]","{application/vnd.visionary=http://www.iana.org/assignments/media-types/application/vnd.visionary}"],"xrefs":{"person":["Gayatri_Aravindakumar"],"template":["application/vnd.visionary"]},"registered":true},{"content-type":"application/vnd.vividence.scriptfile","encoding":"base64","references":["IANA","[Mark_Risher]","{application/vnd.vividence.scriptfile=http://www.iana.org/assignments/media-types/application/vnd.vividence.scriptfile}"],"xrefs":{"person":["Mark_Risher"],"template":["application/vnd.vividence.scriptfile"]},"registered":true},{"content-type":"application/vnd.vsf","friendly":{"en":"Viewport+"},"encoding":"base64","extensions":["vsf"],"references":["IANA","[Delton_Rowe]","{application/vnd.vsf=http://www.iana.org/assignments/media-types/application/vnd.vsf}"],"xrefs":{"person":["Delton_Rowe"],"template":["application/vnd.vsf"]},"registered":true},{"content-type":"application/vnd.wap.sic","encoding":"base64","extensions":["sic"],"references":["IANA","[WAP-Forum]","{application/vnd.wap.sic=http://www.iana.org/assignments/media-types/application/vnd.wap.sic}"],"xrefs":{"person":["WAP-Forum"],"template":["application/vnd.wap.sic"]},"registered":true},{"content-type":"application/vnd.wap.slc","encoding":"base64","extensions":["slc"],"references":["IANA","[WAP-Forum]","{application/vnd.wap-slc=http://www.iana.org/assignments/media-types/application/vnd.wap-slc}"],"xrefs":{"person":["WAP-Forum"],"template":["application/vnd.wap-slc"]},"registered":true},{"content-type":"application/vnd.wap.wbxml","friendly":{"en":"WAP Binary XML (WBXML)"},"encoding":"base64","extensions":["wbxml"],"references":["IANA","[Peter_Stark]","{application/vnd.wap-wbxml=http://www.iana.org/assignments/media-types/application/vnd.wap-wbxml}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd.wap-wbxml"]},"registered":true},{"content-type":"application/vnd.wap.wmlc","friendly":{"en":"Compiled Wireless Markup Language (WMLC)"},"encoding":"base64","extensions":["wmlc"],"references":["IANA","[Peter_Stark]","{application/vnd-wap-wmlc=http://www.iana.org/assignments/media-types/application/vnd-wap-wmlc}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd-wap-wmlc"]},"registered":true},{"content-type":"application/vnd.wap.wmlscriptc","friendly":{"en":"WMLScript"},"encoding":"base64","extensions":["wmlsc"],"references":["IANA","[Peter_Stark]","{application/vnd.wap.wmlscriptc=http://www.iana.org/assignments/media-types/application/vnd.wap.wmlscriptc}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd.wap.wmlscriptc"]},"registered":true},{"content-type":"application/vnd.webturbo","friendly":{"en":"WebTurbo"},"encoding":"base64","extensions":["wtb"],"references":["IANA","[Yaser_Rehem]","{application/vnd.webturbo=http://www.iana.org/assignments/media-types/application/vnd.webturbo}"],"xrefs":{"person":["Yaser_Rehem"],"template":["application/vnd.webturbo"]},"registered":true},{"content-type":"application/vnd.wfa.p2p","encoding":"base64","references":["IANA","[Mick_Conley]","{application/vnd.wfa.p2p=http://www.iana.org/assignments/media-types/application/vnd.wfa.p2p}"],"xrefs":{"person":["Mick_Conley"],"template":["application/vnd.wfa.p2p"]},"registered":true},{"content-type":"application/vnd.wfa.wsc","encoding":"base64","references":["IANA","[Wi-Fi_Alliance]","{application/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/application/vnd.wfa.wsc}"],"xrefs":{"person":["Wi-Fi_Alliance"],"template":["application/vnd.wfa.wsc"]},"registered":true},{"content-type":"application/vnd.windows.devicepairing","encoding":"base64","references":["IANA","[Priya_Dandawate]","{application/vnd.windows.devicepairing=http://www.iana.org/assignments/media-types/application/vnd.windows.devicepairing}"],"xrefs":{"person":["Priya_Dandawate"],"template":["application/vnd.windows.devicepairing"]},"registered":true},{"content-type":"application/vnd.wmc","encoding":"base64","references":["IANA","[Thomas_Kjornes]","{application/vnd.wmc=http://www.iana.org/assignments/media-types/application/vnd.wmc}"],"xrefs":{"person":["Thomas_Kjornes"],"template":["application/vnd.wmc"]},"registered":true},{"content-type":"application/vnd.wmf.bootstrap","encoding":"base64","references":["IANA","[Thinh_Nguyenphu]","[Prakash_Iyer]","{application/vnd.wmf.bootstrap=http://www.iana.org/assignments/media-types/application/vnd.wmf.bootstrap}"],"xrefs":{"person":["Prakash_Iyer","Thinh_Nguyenphu"],"template":["application/vnd.wmf.bootstrap"]},"registered":true},{"content-type":"application/vnd.wolfram.mathematica","encoding":"base64","references":["IANA","[Wolfram]","{application/vnd.wolfram.mathematica=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.mathematica"]},"registered":true},{"content-type":"application/vnd.wolfram.mathematica.package","encoding":"base64","references":["IANA","[Wolfram]","{application/vnd.wolfram.mathematica.package=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica.package}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.mathematica.package"]},"registered":true},{"content-type":"application/vnd.wolfram.player","friendly":{"en":"Mathematica Notebook Player"},"encoding":"base64","extensions":["nbp"],"references":["IANA","[Wolfram]","{application/vnd.wolfram.player=http://www.iana.org/assignments/media-types/application/vnd.wolfram.player}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.player"]},"registered":true},{"content-type":"application/vnd.wordperfect","friendly":{"en":"Wordperfect"},"encoding":"base64","extensions":["wpd"],"references":["IANA","[Kim_Scarborough]","{application/vnd.wordperfect=http://www.iana.org/assignments/media-types/application/vnd.wordperfect}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.wordperfect"]},"registered":true},{"content-type":"application/vnd.wqd","friendly":{"en":"SundaHus WQ"},"encoding":"base64","extensions":["wqd"],"references":["IANA","[Jan_Bostrom]","{application/vnd.wqd=http://www.iana.org/assignments/media-types/application/vnd.wqd}"],"xrefs":{"person":["Jan_Bostrom"],"template":["application/vnd.wqd"]},"registered":true},{"content-type":"application/vnd.wrq-hp3000-labelled","encoding":"base64","references":["IANA","[Chris_Bartram]","{application/vnd.wrq-hp3000-labelled=http://www.iana.org/assignments/media-types/application/vnd.wrq-hp3000-labelled}"],"xrefs":{"person":["Chris_Bartram"],"template":["application/vnd.wrq-hp3000-labelled"]},"registered":true},{"content-type":"application/vnd.wt.stf","friendly":{"en":"Worldtalk"},"encoding":"base64","extensions":["stf"],"references":["IANA","[Bill_Wohler]","{application/vnd.wt.stf=http://www.iana.org/assignments/media-types/application/vnd.wt.stf}"],"xrefs":{"person":["Bill_Wohler"],"template":["application/vnd.wt.stf"]},"registered":true},{"content-type":"application/vnd.wv.csp+wbxml","encoding":"base64","extensions":["wv"],"references":["IANA","[Matti_Salmi]","{application/vnd.wv.csp+wbxml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+wbxml}"],"xrefs":{"person":["Matti_Salmi"],"template":["application/vnd.wv.csp+wbxml"]},"registered":true},{"content-type":"application/vnd.wv.csp+xml","encoding":"8bit","references":["IANA","[John_Ingi_Ingimundarson]","{application/vnd.wv.csp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+xml}"],"xrefs":{"person":["John_Ingi_Ingimundarson"],"template":["application/vnd.wv.csp+xml"]},"registered":true},{"content-type":"application/vnd.wv.ssp+xml","encoding":"8bit","references":["IANA","[John_Ingi_Ingimundarson]","{application/vnd.wv.ssp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.ssp+xml}"],"xrefs":{"person":["John_Ingi_Ingimundarson"],"template":["application/vnd.wv.ssp+xml"]},"registered":true},{"content-type":"application/vnd.xacml+json","encoding":"base64","references":["IANA","[David_Brossard]","{application/vnd.xacml+json=http://www.iana.org/assignments/media-types/application/vnd.xacml+json}"],"xrefs":{"person":["David_Brossard"],"template":["application/vnd.xacml+json"]},"registered":true},{"content-type":"application/vnd.xara","friendly":{"en":"CorelXARA"},"encoding":"base64","extensions":["xar"],"references":["IANA","[David_Matthewman]","{application/vnd.xara=http://www.iana.org/assignments/media-types/application/vnd.xara}"],"xrefs":{"person":["David_Matthewman"],"template":["application/vnd.xara"]},"registered":true},{"content-type":"application/vnd.xfdl","friendly":{"en":"Extensible Forms Description Language"},"encoding":"base64","extensions":["xfdl"],"references":["IANA","[Dave_Manning]","{application/vnd.xfdl=http://www.iana.org/assignments/media-types/application/vnd.xfdl}"],"xrefs":{"person":["Dave_Manning"],"template":["application/vnd.xfdl"]},"registered":true},{"content-type":"application/vnd.xfdl.webform","encoding":"base64","references":["IANA","[Michael_Mansell]","{application/vnd.xfdl.webform=http://www.iana.org/assignments/media-types/application/vnd.xfdl.webform}"],"xrefs":{"person":["Michael_Mansell"],"template":["application/vnd.xfdl.webform"]},"registered":true},{"content-type":"application/vnd.xmi+xml","encoding":"base64","references":["IANA","[Fred_Waskiewicz]","{application/vnd.xmi+xml=http://www.iana.org/assignments/media-types/application/vnd.xmi+xml}"],"xrefs":{"person":["Fred_Waskiewicz"],"template":["application/vnd.xmi+xml"]},"registered":true},{"content-type":"application/vnd.xmpie.cpkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.cpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.cpkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.cpkg"]},"registered":true},{"content-type":"application/vnd.xmpie.dpkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.dpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.dpkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.dpkg"]},"registered":true},{"content-type":"application/vnd.xmpie.plan","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.plan=http://www.iana.org/assignments/media-types/application/vnd.xmpie.plan}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.plan"]},"registered":true},{"content-type":"application/vnd.xmpie.ppkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.ppkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.ppkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.ppkg"]},"registered":true},{"content-type":"application/vnd.xmpie.xlim","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.xlim=http://www.iana.org/assignments/media-types/application/vnd.xmpie.xlim}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.xlim"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-dic","friendly":{"en":"HV Voice Dictionary"},"encoding":"base64","extensions":["hvd"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-dic=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-dic}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-dic"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-script","friendly":{"en":"HV Script"},"encoding":"base64","extensions":["hvs"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-script=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-script}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-script"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-voice","friendly":{"en":"HV Voice Parameter"},"encoding":"base64","extensions":["hvp"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-voice=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-voice}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-voice"]},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat","friendly":{"en":"Open Score Format"},"encoding":"base64","extensions":["osf"],"references":["IANA","[Mark_Olleson]","{application/vnd.yamaha.openscoreformat=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat}"],"xrefs":{"person":["Mark_Olleson"],"template":["application/vnd.yamaha.openscoreformat"]},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat.osfpvg+xml","friendly":{"en":"OSFPVG"},"encoding":"base64","extensions":["osfpvg"],"references":["IANA","[Mark_Olleson]","{application/vnd.yamaha.openscoreformat.osfpvg+xml=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat.osfpvg+xml}"],"xrefs":{"person":["Mark_Olleson"],"template":["application/vnd.yamaha.openscoreformat.osfpvg+xml"]},"registered":true},{"content-type":"application/vnd.yamaha.remote-setup","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.remote-setup=http://www.iana.org/assignments/media-types/application/vnd.yamaha.remote-setup}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.remote-setup"]},"registered":true},{"content-type":"application/vnd.yamaha.smaf-audio","friendly":{"en":"SMAF Audio"},"encoding":"base64","extensions":["saf"],"references":["IANA","[Keiichi_Shinoda]","{application/vnd.yamaha.smaf-audio=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-audio}"],"xrefs":{"person":["Keiichi_Shinoda"],"template":["application/vnd.yamaha.smaf-audio"]},"registered":true},{"content-type":"application/vnd.yamaha.smaf-phrase","friendly":{"en":"SMAF Phrase"},"encoding":"base64","extensions":["spf"],"references":["IANA","[Keiichi_Shinoda]","{application/vnd.yamaha.smaf-phrase=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-phrase}"],"xrefs":{"person":["Keiichi_Shinoda"],"template":["application/vnd.yamaha.smaf-phrase"]},"registered":true},{"content-type":"application/vnd.yamaha.through-ngn","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.through-ngn=http://www.iana.org/assignments/media-types/application/vnd.yamaha.through-ngn}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.through-ngn"]},"registered":true},{"content-type":"application/vnd.yamaha.tunnel-udpencap","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.tunnel-udpencap=http://www.iana.org/assignments/media-types/application/vnd.yamaha.tunnel-udpencap}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.tunnel-udpencap"]},"registered":true},{"content-type":"application/vnd.yaoweme","encoding":"base64","references":["IANA","[Jens_Jorgensen]","{application/vnd.yaoweme=http://www.iana.org/assignments/media-types/application/vnd.yaoweme}"],"xrefs":{"person":["Jens_Jorgensen"],"template":["application/vnd.yaoweme"]},"registered":true},{"content-type":"application/vnd.yellowriver-custom-menu","friendly":{"en":"CustomMenu"},"encoding":"base64","extensions":["cmp"],"references":["IANA","[Mr._Yellow]","{application/vnd.yellowriver-custom-menu=http://www.iana.org/assignments/media-types/application/vnd.yellowriver-custom-menu}"],"xrefs":{"person":["Mr._Yellow"],"template":["application/vnd.yellowriver-custom-menu"]},"registered":true},{"content-type":"application/vnd.zul","friendly":{"en":"Z.U.L. Geometry"},"encoding":"base64","extensions":["zir","zirz"],"references":["IANA","[Rene_Grothmann]","{application/vnd.zul=http://www.iana.org/assignments/media-types/application/vnd.zul}"],"xrefs":{"person":["Rene_Grothmann"],"template":["application/vnd.zul"]},"registered":true},{"content-type":"application/vnd.zzazz.deck+xml","friendly":{"en":"Zzazz Deck"},"encoding":"base64","extensions":["zaz"],"references":["IANA","[Micheal_Hewett]","{application/vnd.zzazz.deck+xml=http://www.iana.org/assignments/media-types/application/vnd.zzazz.deck+xml}"],"xrefs":{"person":["Micheal_Hewett"],"template":["application/vnd.zzazz.deck+xml"]},"registered":true},{"content-type":"application/voicexml+xml","friendly":{"en":"VoiceXML"},"encoding":"base64","extensions":["vxml"],"references":["IANA","RFC4267","{application/voicexml+xml=http://www.iana.org/assignments/media-types/application/voicexml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/voicexml+xml"]},"registered":true},{"content-type":"application/vq-rtcpxr","encoding":"base64","references":["IANA","RFC6035","{application/vq-rtcpxr=http://www.iana.org/assignments/media-types/application/vq-rtcpxr}"],"xrefs":{"rfc":["rfc6035"],"template":["application/vq-rtcpxr"]},"registered":true},{"content-type":"application/watcherinfo+xml","encoding":"base64","extensions":["wif"],"references":["IANA","RFC3858","{application/watcherinfo+xml=http://www.iana.org/assignments/media-types/application/watcherinfo+xml}"],"xrefs":{"rfc":["rfc3858"],"template":["application/watcherinfo+xml"]},"registered":true},{"content-type":"application/whoispp-query","encoding":"base64","references":["IANA","RFC2957","{application/whoispp-query=http://www.iana.org/assignments/media-types/application/whoispp-query}"],"xrefs":{"rfc":["rfc2957"],"template":["application/whoispp-query"]},"registered":true},{"content-type":"application/whoispp-response","encoding":"base64","references":["IANA","RFC2958","{application/whoispp-response=http://www.iana.org/assignments/media-types/application/whoispp-response}"],"xrefs":{"rfc":["rfc2958"],"template":["application/whoispp-response"]},"registered":true},{"content-type":"application/widget","friendly":{"en":"Widget Packaging and XML Configuration"},"encoding":"base64","extensions":["wgt"],"references":["IANA","[W3C]","[Steven_Pemberton]","{http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw}"],"xrefs":{"person":["Steven_Pemberton","W3C"],"uri":["http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw"]},"registered":true},{"content-type":"application/winhlp","friendly":{"en":"WinHelp"},"encoding":"base64","extensions":["hlp"],"registered":false},{"content-type":"application/wita","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/wita=http://www.iana.org/assignments/media-types/application/wita}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/wita"]},"registered":true},{"content-type":"application/word","encoding":"base64","extensions":["doc","dot"],"registered":false},{"content-type":"application/wordperfect","encoding":"base64","extensions":["wp"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/wordperfect5.1","encoding":"base64","extensions":["wp5","wp"],"references":["IANA","[Paul_Lindner]","{application/wordperfect5.1=http://www.iana.org/assignments/media-types/application/wordperfect5.1}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/wordperfect5.1"]},"registered":true},{"content-type":"application/wordperfect6.1","encoding":"base64","extensions":["wp6"],"obsolete":true,"use-instead":"application/x-wordperfect6.1","registered":false},{"content-type":"application/wordperfectd","encoding":"base64","extensions":["wpd"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/wsdl+xml","friendly":{"en":"WSDL - Web Services Description Language"},"encoding":"base64","extensions":["wsdl"],"references":["IANA","[W3C]","{application/wsdl+xml=http://www.iana.org/assignments/media-types/application/wsdl+xml}"],"xrefs":{"person":["W3C"],"template":["application/wsdl+xml"]},"registered":true},{"content-type":"application/wspolicy+xml","friendly":{"en":"Web Services Policy"},"encoding":"base64","extensions":["wspolicy"],"references":["IANA","[W3C]","{application/wspolicy+xml=http://www.iana.org/assignments/media-types/application/wspolicy+xml}"],"xrefs":{"person":["W3C"],"template":["application/wspolicy+xml"]},"registered":true},{"content-type":"application/x-123","encoding":"base64","extensions":["wk"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/x-7z-compressed","friendly":{"en":"7-Zip"},"encoding":"base64","extensions":["7z"],"references":["{7zip=http://www.7-zip.org/7z.html}"],"registered":false},{"content-type":"application/x-abiword","friendly":{"en":"AbiWord"},"encoding":"base64","extensions":["abw"],"registered":false},{"content-type":"application/x-access","encoding":"base64","extensions":["mdf","mda","mdb","mde"],"obsolete":true,"use-instead":"application/x-msaccess","registered":false},{"content-type":"application/x-ace-compressed","friendly":{"en":"Ace Archive"},"encoding":"base64","extensions":["ace"],"registered":false},{"content-type":"application/x-apple-diskimage","encoding":"base64","extensions":["dmg"],"registered":false,"system":"(?-mix:mac)"},{"content-type":"application/x-authorware-bin","friendly":{"en":"Adobe (Macropedia) Authorware - Binary File"},"encoding":"base64","extensions":["aab","u32","vox","x32"],"registered":false},{"content-type":"application/x-authorware-map","friendly":{"en":"Adobe (Macropedia) Authorware - Map"},"encoding":"base64","extensions":["aam"],"registered":false},{"content-type":"application/x-authorware-seg","friendly":{"en":"Adobe (Macropedia) Authorware - Segment File"},"encoding":"base64","extensions":["aas"],"registered":false},{"content-type":"application/x-bcpio","friendly":{"en":"Binary CPIO Archive"},"encoding":"base64","extensions":["bcpio"],"registered":false},{"content-type":"application/x-bittorrent","friendly":{"en":"BitTorrent"},"encoding":"base64","extensions":["torrent"],"registered":false},{"content-type":"application/x-bleeper","encoding":"base64","extensions":["bleep"],"registered":false},{"content-type":"application/x-blorb","encoding":"base64","extensions":["blb","blorb"],"registered":false},{"content-type":"application/x-bzip","friendly":{"en":"Bzip Archive"},"encoding":"base64","extensions":["bz"],"registered":false},{"content-type":"application/x-bzip2","friendly":{"en":"Bzip2 Archive"},"encoding":"base64","extensions":["boz","bz2"],"registered":false},{"content-type":"application/x-cbr","encoding":"base64","extensions":["cb7","cba","cbr","cbt","cbz"],"registered":false},{"content-type":"application/x-cdlink","friendly":{"en":"Video CD"},"encoding":"base64","extensions":["vcd"],"registered":false},{"content-type":"application/x-cfs-compressed","encoding":"base64","extensions":["cfs"],"registered":false},{"content-type":"application/x-chat","friendly":{"en":"pIRCh"},"encoding":"base64","extensions":["chat"],"registered":false},{"content-type":"application/x-chess-pgn","friendly":{"en":"Portable Game Notation (Chess Games)"},"encoding":"base64","extensions":["pgn"],"registered":false},{"content-type":"application/x-chrome-extension","encoding":"base64","extensions":["crx"],"registered":false},{"content-type":"application/x-clariscad","encoding":"base64","registered":false},{"content-type":"application/x-compress","encoding":"base64","extensions":["z","Z"],"obsolete":true,"use-instead":"application/x-compressed","registered":false},{"content-type":"application/x-compressed","encoding":"base64","extensions":["z","Z"],"registered":false},{"content-type":"application/x-conference","encoding":"base64","extensions":["nsc"],"registered":false},{"content-type":"application/x-cpio","friendly":{"en":"CPIO Archive"},"encoding":"base64","extensions":["cpio"],"registered":false},{"content-type":"application/x-csh","friendly":{"en":"C Shell Script"},"encoding":"8bit","extensions":["csh"],"registered":false},{"content-type":"application/x-cu-seeme","encoding":"base64","extensions":["csm","cu"],"registered":false},{"content-type":"application/x-debian-package","friendly":{"en":"Debian Package"},"encoding":"base64","extensions":["deb","udeb"],"registered":false},{"content-type":"application/x-dgc-compressed","encoding":"base64","extensions":["dgc"],"registered":false},{"content-type":"application/x-director","friendly":{"en":"Adobe Shockwave Player"},"encoding":"base64","extensions":["dcr","@dir","@dxr","cct","cst","cxt","dir","dxr","fgd","swa","w3d"],"registered":false},{"content-type":"application/x-doom","friendly":{"en":"Doom Video Game"},"encoding":"base64","extensions":["wad"],"registered":false},{"content-type":"application/x-drafting","encoding":"base64","registered":false},{"content-type":"application/x-dtbncx+xml","friendly":{"en":"Navigation Control file for XML (for ePub)"},"encoding":"base64","extensions":["ncx"],"registered":false},{"content-type":"application/x-dtbook+xml","friendly":{"en":"Digital Talking Book"},"encoding":"base64","extensions":["dtb"],"registered":false},{"content-type":"application/x-dtbresource+xml","friendly":{"en":"Digital Talking Book - Resource File"},"encoding":"base64","extensions":["res"],"registered":false},{"content-type":"application/x-dvi","friendly":{"en":"Device Independent File Format (DVI)"},"encoding":"base64","extensions":["dvi"],"registered":false},{"content-type":"application/x-dxf","encoding":"base64","registered":false},{"content-type":"application/x-envoy","encoding":"base64","extensions":["evy"],"registered":false},{"content-type":"application/x-eva","encoding":"base64","extensions":["eva"],"registered":false},{"content-type":"application/x-excel","encoding":"base64","obsolete":true,"use-instead":"application/vnd.ms-excel","registered":false},{"content-type":"application/x-font-bdf","friendly":{"en":"Glyph Bitmap Distribution Format"},"encoding":"base64","extensions":["bdf"],"registered":false},{"content-type":"application/x-font-ghostscript","friendly":{"en":"Ghostscript Font"},"encoding":"base64","extensions":["gsf"],"registered":false},{"content-type":"application/x-font-linux-psf","friendly":{"en":"PSF Fonts"},"encoding":"base64","extensions":["psf"],"registered":false},{"content-type":"application/x-font-opentype","encoding":"base64","extensions":["otf"],"registered":false},{"content-type":"application/x-font-otf","friendly":{"en":"OpenType Font File"},"encoding":"base64","extensions":["otf"],"registered":false},{"content-type":"application/x-font-pcf","friendly":{"en":"Portable Compiled Format"},"encoding":"base64","extensions":["pcf"],"registered":false},{"content-type":"application/x-font-snf","friendly":{"en":"Server Normal Format"},"encoding":"base64","extensions":["snf"],"registered":false},{"content-type":"application/x-font-truetype","encoding":"base64","extensions":["ttf"],"registered":false},{"content-type":"application/x-font-ttf","friendly":{"en":"TrueType Font"},"encoding":"base64","extensions":["ttc","ttf"],"registered":false},{"content-type":"application/x-font-type1","friendly":{"en":"PostScript Fonts"},"encoding":"base64","extensions":["afm","pfa","pfb","pfm"],"registered":false},{"content-type":"application/x-fractals","encoding":"base64","registered":false},{"content-type":"application/x-freearc","encoding":"base64","extensions":["arc"],"registered":false},{"content-type":"application/x-futuresplash","friendly":{"en":"FutureSplash Animator"},"encoding":"base64","extensions":["spl"],"registered":false},{"content-type":"application/x-gca-compressed","encoding":"base64","extensions":["gca"],"registered":false},{"content-type":"application/x-ghostview","encoding":"base64","registered":false},{"content-type":"application/x-glulx","encoding":"base64","extensions":["ulx"],"registered":false},{"content-type":"application/x-gnumeric","friendly":{"en":"Gnumeric"},"encoding":"base64","extensions":["gnumeric"],"registered":false},{"content-type":"application/x-gramps-xml","encoding":"base64","extensions":["gramps"],"registered":false},{"content-type":"application/x-gtar","friendly":{"en":"GNU Tar Files"},"encoding":"base64","extensions":["gtar","tgz","tbz2","tbz"],"registered":false},{"content-type":"application/x-gzip","encoding":"base64","extensions":["gz"],"obsolete":true,"use-instead":"application/gzip","registered":false},{"content-type":"application/x-hdf","friendly":{"en":"Hierarchical Data Format"},"encoding":"base64","extensions":["hdf"],"registered":false},{"content-type":"application/x-hep","encoding":"base64","extensions":["hep"],"registered":false},{"content-type":"application/x-html+ruby","encoding":"8bit","extensions":["rhtml"],"registered":false},{"content-type":"application/x-httpd-php","encoding":"8bit","extensions":["phtml","pht","php"],"registered":false},{"content-type":"application/x-ibooks+zip","encoding":"base64","extensions":["ibooks"],"registered":false},{"content-type":"application/x-ica","encoding":"base64","extensions":["ica"],"registered":false},{"content-type":"application/x-ideas","encoding":"base64","registered":false},{"content-type":"application/x-imagemap","encoding":"8bit","extensions":["imagemap","imap"],"registered":false},{"content-type":"application/x-install-instructions","encoding":"base64","extensions":["install"],"registered":false},{"content-type":"application/x-iso9660-image","encoding":"base64","extensions":["iso"],"registered":false},{"content-type":"application/x-iwork-keynote-sffkey","encoding":"base64","extensions":["key"],"registered":false},{"content-type":"application/x-iwork-numbers-sffnumbers","encoding":"base64","extensions":["numbers"],"registered":false},{"content-type":"application/x-iwork-pages-sffpages","encoding":"base64","extensions":["pages"],"registered":false},{"content-type":"application/x-java-archive","encoding":"base64","extensions":["jar"],"registered":false},{"content-type":"application/x-java-jnlp-file","friendly":{"en":"Java Network Launching Protocol"},"encoding":"base64","extensions":["jnlp"],"registered":false},{"content-type":"application/x-java-serialized-object","encoding":"base64","extensions":["ser"],"registered":false},{"content-type":"application/x-java-vm","encoding":"base64","extensions":["class"],"registered":false},{"content-type":"application/x-javascript","encoding":"8bit","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","registered":false},{"content-type":"application/x-koan","encoding":"base64","extensions":["skp","skd","skt","skm"],"registered":false},{"content-type":"application/x-latex","friendly":{"en":"LaTeX"},"encoding":"8bit","extensions":["ltx","latex"],"registered":false},{"content-type":"application/x-lotus-123","encoding":"base64","extensions":["wks"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/x-lzh-compressed","encoding":"base64","extensions":["lha","lzh"],"registered":false},{"content-type":"application/x-mac","encoding":"base64","extensions":["bin"],"registered":false,"system":"(?-mix:mac)"},{"content-type":"application/x-mac-compactpro","encoding":"base64","extensions":["cpt"],"registered":false},{"content-type":"application/x-macbase64","encoding":"base64","extensions":["bin"],"registered":false,"system":"(?-mix:mac)"},{"content-type":"application/x-macbinary","encoding":"base64","registered":false},{"content-type":"application/x-maker","encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"obsolete":true,"use-instead":"application/vnd.framemaker","registered":false},{"content-type":"application/x-mathcad","encoding":"base64","extensions":["mcd"],"obsolete":true,"use-instead":"application/vnd.mcd","registered":false},{"content-type":"application/x-mathematica-old","encoding":"base64","registered":false},{"content-type":"application/x-mie","encoding":"base64","extensions":["mie"],"registered":false},{"content-type":"application/x-mif","encoding":"base64","extensions":["mif"],"registered":false},{"content-type":"application/x-mobipocket-ebook","friendly":{"en":"Mobipocket"},"encoding":"base64","extensions":["mobi","prc"],"registered":false},{"content-type":"application/x-ms-application","friendly":{"en":"Microsoft ClickOnce"},"encoding":"base64","extensions":["application"],"registered":false},{"content-type":"application/x-ms-shortcut","encoding":"base64","extensions":["lnk"],"registered":false},{"content-type":"application/x-ms-wmd","friendly":{"en":"Microsoft Windows Media Player Download Package"},"encoding":"base64","extensions":["wmd"],"registered":false},{"content-type":"application/x-ms-wmz","friendly":{"en":"Microsoft Windows Media Player Skin Package"},"encoding":"base64","extensions":["wmz"],"registered":false},{"content-type":"application/x-ms-xbap","friendly":{"en":"Microsoft XAML Browser Application"},"encoding":"base64","extensions":["xbap"],"registered":false},{"content-type":"application/x-msaccess","friendly":{"en":"Microsoft Access"},"encoding":"base64","extensions":["mda","mdb","mde","mdf"],"registered":false},{"content-type":"application/x-msbinder","friendly":{"en":"Microsoft Office Binder"},"encoding":"base64","extensions":["obd"],"registered":false},{"content-type":"application/x-mscardfile","friendly":{"en":"Microsoft Information Card"},"encoding":"base64","extensions":["crd"],"registered":false},{"content-type":"application/x-msclip","friendly":{"en":"Microsoft Clipboard Clip"},"encoding":"base64","extensions":["clp"],"registered":false},{"content-type":"application/x-msdos-program","encoding":"base64","extensions":["cmd","bat","com","exe","reg","ps1","vbs"],"registered":false},{"content-type":"application/x-msdownload","friendly":{"en":"Microsoft Application"},"encoding":"base64","extensions":["exe","com","cmd","bat","dll","msi","reg","ps1","vbs"],"registered":false},{"content-type":"application/x-msmediaview","friendly":{"en":"Microsoft MediaView"},"encoding":"base64","extensions":["m13","m14","mvb"],"registered":false},{"content-type":"application/x-msmetafile","friendly":{"en":"Microsoft Windows Metafile"},"encoding":"base64","extensions":["emf","emz","wmf","wmz"],"registered":false},{"content-type":"application/x-msmoney","friendly":{"en":"Microsoft Money"},"encoding":"base64","extensions":["mny"],"registered":false},{"content-type":"application/x-mspublisher","friendly":{"en":"Microsoft Publisher"},"encoding":"base64","extensions":["pub"],"registered":false},{"content-type":"application/x-msschedule","friendly":{"en":"Microsoft Schedule+"},"encoding":"base64","extensions":["scd"],"registered":false},{"content-type":"application/x-msterminal","friendly":{"en":"Microsoft Windows Terminal Services"},"encoding":"base64","extensions":["trm"],"registered":false},{"content-type":"application/x-msword","encoding":"base64","extensions":["doc","dot","wrd"],"obsolete":true,"use-instead":"application/msword","registered":false},{"content-type":"application/x-mswrite","friendly":{"en":"Microsoft Wordpad"},"encoding":"base64","extensions":["wri"],"registered":false},{"content-type":"application/x-netcdf","friendly":{"en":"Network Common Data Form (NetCDF)"},"encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/x-ns-proxy-autoconfig","encoding":"base64","extensions":["pac"],"registered":false},{"content-type":"application/x-nzb","encoding":"base64","extensions":["nzb"],"registered":false},{"content-type":"application/x-opera-extension","encoding":"base64","extensions":["oex"],"registered":false},{"content-type":"application/x-pagemaker","encoding":"base64","extensions":["pm","pm5","pt5"],"registered":false},{"content-type":"application/x-perl","encoding":"8bit","extensions":["pl","pm"],"registered":false},{"content-type":"application/x-pgp","encoding":"base64","registered":false,"signature":true},{"content-type":"application/x-pkcs12","friendly":{"en":"PKCS #12 - Personal Information Exchange Syntax Standard"},"encoding":"base64","extensions":["p12","pfx"],"registered":false},{"content-type":"application/x-pkcs7-certificates","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard (Certificates)"},"encoding":"base64","extensions":["p7b","spc"],"registered":false},{"content-type":"application/x-pkcs7-certreqresp","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)"},"encoding":"base64","extensions":["p7r"],"registered":false},{"content-type":"application/x-python","encoding":"8bit","extensions":["py"],"registered":false},{"content-type":"application/x-quicktimeplayer","encoding":"base64","extensions":["qtl"],"registered":false},{"content-type":"application/x-rar-compressed","friendly":{"en":"RAR Archive"},"encoding":"base64","extensions":["rar"],"registered":false},{"content-type":"application/x-remote_printing","encoding":"base64","registered":false},{"content-type":"application/x-research-info-systems","encoding":"base64","extensions":["ris"],"registered":false},{"content-type":"application/x-rtf","encoding":"base64","extensions":["rtf"],"obsolete":true,"use-instead":"application/rtf","registered":false},{"content-type":"application/x-ruby","encoding":"8bit","extensions":["rb","rbw"],"registered":false},{"content-type":"application/x-set","encoding":"base64","registered":false},{"content-type":"application/x-sh","friendly":{"en":"Bourne Shell Script"},"encoding":"8bit","extensions":["sh"],"registered":false},{"content-type":"application/x-shar","friendly":{"en":"Shell Archive"},"encoding":"8bit","extensions":["shar"],"registered":false},{"content-type":"application/x-shockwave-flash","friendly":{"en":"Adobe Flash"},"encoding":"base64","extensions":["swf"],"registered":false},{"content-type":"application/x-silverlight-app","friendly":{"en":"Microsoft Silverlight"},"encoding":"base64","extensions":["xap"],"registered":false},{"content-type":"application/x-SLA","encoding":"base64","registered":false},{"content-type":"application/x-solids","encoding":"base64","registered":false},{"content-type":"application/x-spss","encoding":"base64","extensions":["sav","sbs","sps","spo","spp"],"registered":false},{"content-type":"application/x-sql","encoding":"base64","extensions":["sql"],"registered":false},{"content-type":"application/x-STEP","encoding":"base64","registered":false},{"content-type":"application/x-stuffit","friendly":{"en":"Stuffit Archive"},"encoding":"base64","extensions":["sit"],"registered":false},{"content-type":"application/x-stuffitx","friendly":{"en":"Stuffit Archive"},"encoding":"base64","extensions":["sitx"],"registered":false},{"content-type":"application/x-subrip","encoding":"base64","extensions":["srt"],"registered":false},{"content-type":"application/x-sv4cpio","friendly":{"en":"System V Release 4 CPIO Archive"},"encoding":"base64","extensions":["sv4cpio"],"registered":false},{"content-type":"application/x-sv4crc","friendly":{"en":"System V Release 4 CPIO Checksum Data"},"encoding":"base64","extensions":["sv4crc"],"registered":false},{"content-type":"application/x-t3vm-image","encoding":"base64","extensions":["t3"],"registered":false},{"content-type":"application/x-tads","encoding":"base64","extensions":["gam"],"registered":false},{"content-type":"application/x-tar","friendly":{"en":"Tar File (Tape Archive)"},"encoding":"base64","extensions":["tar"],"registered":false},{"content-type":"application/x-tcl","friendly":{"en":"Tcl Script"},"encoding":"8bit","extensions":["tcl"],"registered":false},{"content-type":"application/x-tex","friendly":{"en":"TeX"},"encoding":"8bit","extensions":["tex"],"registered":false},{"content-type":"application/x-tex-tfm","friendly":{"en":"TeX Font Metric"},"encoding":"base64","extensions":["tfm"],"registered":false},{"content-type":"application/x-texinfo","friendly":{"en":"GNU Texinfo Document"},"encoding":"8bit","extensions":["texinfo","texi"],"registered":false},{"content-type":"application/x-tgif","encoding":"base64","extensions":["obj"],"registered":false},{"content-type":"application/x-toolbook","encoding":"base64","extensions":["tbk"],"registered":false},{"content-type":"application/x-troff","encoding":"base64","extensions":["t","tr","roff"],"obsolete":true,"use-instead":"text/troff","registered":false},{"content-type":"application/x-troff-man","encoding":"8bit","extensions":["man"],"registered":false},{"content-type":"application/x-troff-me","encoding":"base64","extensions":["me"],"registered":false},{"content-type":"application/x-troff-ms","encoding":"base64","extensions":["ms"],"registered":false},{"content-type":"application/x-u-star","encoding":"base64","obsolete":true,"use-instead":"application/x-ustar","registered":false},{"content-type":"application/x-ustar","friendly":{"en":"Ustar (Uniform Standard Tape Archive)"},"encoding":"base64","extensions":["ustar"],"registered":false},{"content-type":"application/x-VMSBACKUP","encoding":"base64","extensions":["bck"],"registered":false},{"content-type":"application/x-wais-source","friendly":{"en":"WAIS Source"},"encoding":"base64","extensions":["src"],"registered":false},{"content-type":"application/x-web-app-manifest+json","encoding":"base64","extensions":["webapp"],"registered":false},{"content-type":"application/x-Wingz","encoding":"base64","extensions":["wz","wkz"],"registered":false},{"content-type":"application/x-word","encoding":"base64","extensions":["doc","dot"],"obsolete":true,"use-instead":"application/msword","registered":false},{"content-type":"application/x-wordperfect","encoding":"base64","extensions":["wp"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/x-wordperfect6.1","encoding":"base64","extensions":["wp6"],"registered":false},{"content-type":"application/x-wordperfectd","encoding":"base64","extensions":["wpd"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/x-www-form-urlencoded","encoding":"7bit","references":["IANA","[W3C]","[Robin_Berjon]","{application/x-www-form-urlencoded=http://www.iana.org/assignments/media-types/application/x-www-form-urlencoded}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["application/x-www-form-urlencoded"]},"registered":true},{"content-type":"application/x-x509-ca-cert","friendly":{"en":"X.509 Certificate"},"encoding":"base64","extensions":["crt","der"],"registered":false},{"content-type":"application/x-xfig","friendly":{"en":"Xfig"},"encoding":"base64","extensions":["fig"],"registered":false},{"content-type":"application/x-xliff+xml","encoding":"base64","extensions":["xlf"],"registered":false},{"content-type":"application/x-xpinstall","friendly":{"en":"XPInstall - Mozilla"},"encoding":"base64","extensions":["xpi"],"registered":false},{"content-type":"application/x-xz","encoding":"base64","extensions":["xz"],"registered":false},{"content-type":"application/x-zmachine","encoding":"base64","extensions":["z1","z2","z3","z4","z5","z6","z7","z8"],"registered":false},{"content-type":"application/x400-bp","encoding":"base64","references":["IANA","RFC1494","{application/x400-bp=http://www.iana.org/assignments/media-types/application/x400-bp}"],"xrefs":{"rfc":["rfc1494"],"template":["application/x400-bp"]},"registered":true},{"content-type":"application/x400.bp","encoding":"base64","obsolete":true,"use-instead":"application/x400-bp","registered":false},{"content-type":"application/xacml+xml","encoding":"base64","references":["IANA","RFC7061","{application/xacml+xml=http://www.iana.org/assignments/media-types/application/xacml+xml}"],"xrefs":{"rfc":["rfc7061"],"template":["application/xacml+xml"]},"registered":true},{"content-type":"application/xaml+xml","encoding":"base64","extensions":["xaml"],"registered":false},{"content-type":"application/xcap-att+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-att+xml=http://www.iana.org/assignments/media-types/application/xcap-att+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-att+xml"]},"registered":true},{"content-type":"application/xcap-caps+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-caps+xml=http://www.iana.org/assignments/media-types/application/xcap-caps+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-caps+xml"]},"registered":true},{"content-type":"application/xcap-diff+xml","friendly":{"en":"XML Configuration Access Protocol - XCAP Diff"},"encoding":"base64","extensions":["xdf"],"references":["IANA","RFC5874","{application/xcap-diff+xml=http://www.iana.org/assignments/media-types/application/xcap-diff+xml}"],"xrefs":{"rfc":["rfc5874"],"template":["application/xcap-diff+xml"]},"registered":true},{"content-type":"application/xcap-el+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-el+xml=http://www.iana.org/assignments/media-types/application/xcap-el+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-el+xml"]},"registered":true},{"content-type":"application/xcap-error+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-error+xml=http://www.iana.org/assignments/media-types/application/xcap-error+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-error+xml"]},"registered":true},{"content-type":"application/xcap-ns+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-ns+xml=http://www.iana.org/assignments/media-types/application/xcap-ns+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-ns+xml"]},"registered":true},{"content-type":"application/xcon-conference-info+xml","encoding":"base64","references":["IANA","RFC6502","{application/xcon-conference-info+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info+xml}"],"xrefs":{"rfc":["rfc6502"],"template":["application/xcon-conference-info+xml"]},"registered":true},{"content-type":"application/xcon-conference-info-diff+xml","encoding":"base64","references":["IANA","RFC6502","{application/xcon-conference-info-diff+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info-diff+xml}"],"xrefs":{"rfc":["rfc6502"],"template":["application/xcon-conference-info-diff+xml"]},"registered":true},{"content-type":"application/xenc+xml","friendly":{"en":"XML Encryption Syntax and Processing"},"encoding":"base64","extensions":["xenc"],"references":["IANA","[Joseph_Reagle]","[XENC_Working_Group]","{application/xenc+xml=http://www.iana.org/assignments/media-types/application/xenc+xml}"],"xrefs":{"person":["Joseph_Reagle","XENC_Working_Group"],"template":["application/xenc+xml"]},"registered":true},{"content-type":"application/xhtml+xml","friendly":{"en":"XHTML - The Extensible HyperText Markup Language"},"encoding":"8bit","extensions":["xht","xhtml"],"references":["IANA","[W3C]","[Robin_Berjon]","{application/xhtml+xml=http://www.iana.org/assignments/media-types/application/xhtml+xml}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["application/xhtml+xml"]},"registered":true},{"content-type":"application/xhtml-voice+xml","encoding":"base64","obsolete":true,"references":["IANA","DRAFT:draft-mccobb-xplusv-media-type","{application/xhtml-voice+xml=http://www.iana.org/assignments/media-types/application/xhtml-voice+xml}"],"xrefs":{"draft":["draft-mccobb-xplusv-media-type"],"template":["application/xhtml-voice+xml"],"notes":["- OBSOLETE; no replacement given"]},"registered":true},{"content-type":"application/xml","friendly":{"en":"XML - Extensible Markup Language"},"encoding":"8bit","extensions":["xml","xsl"],"references":["IANA","RFC7303","{application/xml=http://www.iana.org/assignments/media-types/application/xml}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml"]},"registered":true},{"content-type":"application/xml-dtd","friendly":{"en":"Document Type Definition"},"encoding":"8bit","extensions":["dtd"],"references":["IANA","RFC7303","{application/xml-dtd=http://www.iana.org/assignments/media-types/application/xml-dtd}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml-dtd"]},"registered":true},{"content-type":"application/xml-external-parsed-entity","encoding":"base64","references":["IANA","RFC7303","{application/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/application/xml-external-parsed-entity}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml-external-parsed-entity"]},"registered":true},{"content-type":"application/xml-patch+xml","encoding":"base64","references":["IANA","RFC7351","{application/xml-patch+xml=http://www.iana.org/assignments/media-types/application/xml-patch+xml}"],"xrefs":{"rfc":["rfc7351"],"template":["application/xml-patch+xml"]},"registered":true},{"content-type":"application/xmpp+xml","encoding":"base64","references":["IANA","RFC3923","{application/xmpp+xml=http://www.iana.org/assignments/media-types/application/xmpp+xml}"],"xrefs":{"rfc":["rfc3923"],"template":["application/xmpp+xml"]},"registered":true},{"content-type":"application/xop+xml","friendly":{"en":"XML-Binary Optimized Packaging"},"encoding":"base64","extensions":["xop"],"references":["IANA","[Mark_Nottingham]","{application/xop+xml=http://www.iana.org/assignments/media-types/application/xop+xml}"],"xrefs":{"person":["Mark_Nottingham"],"template":["application/xop+xml"]},"registered":true},{"content-type":"application/xproc+xml","encoding":"base64","extensions":["xpl"],"registered":false},{"content-type":"application/xslt+xml","friendly":{"en":"XML Transformations"},"encoding":"base64","extensions":["xslt"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration"]},"registered":true},{"content-type":"application/xspf+xml","friendly":{"en":"XSPF - XML Shareable Playlist Format"},"encoding":"base64","extensions":["xspf"],"registered":false},{"content-type":"application/xv+xml","friendly":{"en":"MXML"},"encoding":"base64","extensions":["mxml","xhvml","xvm","xvml"],"references":["IANA","RFC4374","{application/xv+xml=http://www.iana.org/assignments/media-types/application/xv+xml}"],"xrefs":{"rfc":["rfc4374"],"template":["application/xv+xml"]},"registered":true},{"content-type":"application/yang","friendly":{"en":"YANG Data Modeling Language"},"encoding":"base64","extensions":["yang"],"references":["IANA","RFC6020","{application/yang=http://www.iana.org/assignments/media-types/application/yang}"],"xrefs":{"rfc":["rfc6020"],"template":["application/yang"]},"registered":true},{"content-type":"application/yin+xml","friendly":{"en":"YIN (YANG - XML)"},"encoding":"base64","extensions":["yin"],"references":["IANA","RFC6020","{application/yin+xml=http://www.iana.org/assignments/media-types/application/yin+xml}"],"xrefs":{"rfc":["rfc6020"],"template":["application/yin+xml"]},"registered":true},{"content-type":"application/zip","friendly":{"en":"Zip Archive"},"encoding":"base64","extensions":["zip"],"references":["IANA","[Paul_Lindner]","{application/zip=http://www.iana.org/assignments/media-types/application/zip}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/zip"]},"registered":true},{"content-type":"application/zlib","encoding":"base64","references":["IANA","RFC6713","{application/zlib=http://www.iana.org/assignments/media-types/application/zlib}"],"xrefs":{"rfc":["rfc6713"],"template":["application/zlib"]},"registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{audio/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/audio/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["audio/1d-interleaved-parityfec"]},"registered":true},{"content-type":"audio/32kadpcm","encoding":"base64","references":["IANA","RFC3802","RFC2421","{audio/32kadpcm=http://www.iana.org/assignments/media-types/audio/32kadpcm}"],"xrefs":{"rfc":["rfc2421","rfc3802"],"template":["audio/32kadpcm"]},"registered":true},{"content-type":"audio/3gpp","encoding":"base64","references":["IANA","RFC3839","RFC6381","{audio/3gpp=http://www.iana.org/assignments/media-types/audio/3gpp}"],"xrefs":{"rfc":["rfc3839","rfc6381"],"template":["audio/3gpp"]},"registered":true},{"content-type":"audio/3gpp2","encoding":"base64","references":["IANA","RFC4393","RFC6381","{audio/3gpp2=http://www.iana.org/assignments/media-types/audio/3gpp2}"],"xrefs":{"rfc":["rfc4393","rfc6381"],"template":["audio/3gpp2"]},"registered":true},{"content-type":"audio/ac3","encoding":"base64","references":["IANA","RFC4184","{audio/ac3=http://www.iana.org/assignments/media-types/audio/ac3}"],"xrefs":{"rfc":["rfc4184"],"template":["audio/ac3"]},"registered":true},{"content-type":"audio/adpcm","friendly":{"en":"Adaptive differential pulse-code modulation"},"encoding":"base64","extensions":["adp"],"registered":false},{"content-type":"audio/AMR","encoding":"base64","extensions":["amr"],"references":["IANA","RFC4867","{audio/AMR=http://www.iana.org/assignments/media-types/audio/AMR}"],"xrefs":{"rfc":["rfc4867"],"template":["audio/AMR"]},"registered":true},{"content-type":"audio/AMR-WB","encoding":"base64","extensions":["awb"],"references":["IANA","RFC4867","{audio/AMR-WB=http://www.iana.org/assignments/media-types/audio/AMR-WB}"],"xrefs":{"rfc":["rfc4867"],"template":["audio/AMR-WB"]},"registered":true},{"content-type":"audio/amr-wb+","encoding":"base64","references":["IANA","RFC4352","{audio/amr-wb+=http://www.iana.org/assignments/media-types/audio/amr-wb+}"],"xrefs":{"rfc":["rfc4352"],"template":["audio/amr-wb+"]},"registered":true},{"content-type":"audio/aptx","encoding":"base64","references":["IANA","RFC7310","{audio/aptx=http://www.iana.org/assignments/media-types/audio/aptx}"],"xrefs":{"rfc":["rfc7310"],"template":["audio/aptx"]},"registered":true},{"content-type":"audio/asc","encoding":"base64","references":["IANA","RFC6295","{audio/asc=http://www.iana.org/assignments/media-types/audio/asc}"],"xrefs":{"rfc":["rfc6295"],"template":["audio/asc"]},"registered":true},{"content-type":"audio/ATRAC-ADVANCED-LOSSLESS","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC-ADVANCED-LOSSLESS=http://www.iana.org/assignments/media-types/audio/ATRAC-ADVANCED-LOSSLESS}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC-ADVANCED-LOSSLESS"]},"registered":true},{"content-type":"audio/ATRAC-X","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC-X=http://www.iana.org/assignments/media-types/audio/ATRAC-X}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC-X"]},"registered":true},{"content-type":"audio/ATRAC3","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC3=http://www.iana.org/assignments/media-types/audio/ATRAC3}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC3"]},"registered":true},{"content-type":"audio/basic","friendly":{"en":"Sun Audio - Au file format"},"encoding":"base64","extensions":["au","snd"],"references":["IANA","RFC2045","RFC2046","{audio/basic=http://www.iana.org/assignments/media-types/audio/basic}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["audio/basic"]},"registered":true},{"content-type":"audio/BV16","encoding":"base64","references":["IANA","RFC4298","{audio/BV16=http://www.iana.org/assignments/media-types/audio/BV16}"],"xrefs":{"rfc":["rfc4298"],"template":["audio/BV16"]},"registered":true},{"content-type":"audio/BV32","encoding":"base64","references":["IANA","RFC4298","{audio/BV32=http://www.iana.org/assignments/media-types/audio/BV32}"],"xrefs":{"rfc":["rfc4298"],"template":["audio/BV32"]},"registered":true},{"content-type":"audio/clearmode","encoding":"base64","references":["IANA","RFC4040","{audio/clearmode=http://www.iana.org/assignments/media-types/audio/clearmode}"],"xrefs":{"rfc":["rfc4040"],"template":["audio/clearmode"]},"registered":true},{"content-type":"audio/CN","encoding":"base64","references":["IANA","RFC3389","{audio/CN=http://www.iana.org/assignments/media-types/audio/CN}"],"xrefs":{"rfc":["rfc3389"],"template":["audio/CN"]},"registered":true},{"content-type":"audio/DAT12","encoding":"base64","references":["IANA","RFC3190","{audio/DAT12=http://www.iana.org/assignments/media-types/audio/DAT12}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/DAT12"]},"registered":true},{"content-type":"audio/dls","encoding":"base64","references":["IANA","RFC4613","{audio/dls=http://www.iana.org/assignments/media-types/audio/dls}"],"xrefs":{"rfc":["rfc4613"],"template":["audio/dls"]},"registered":true},{"content-type":"audio/dsr-es201108","encoding":"base64","references":["IANA","RFC3557","{audio/dsr-es201108=http://www.iana.org/assignments/media-types/audio/dsr-es201108}"],"xrefs":{"rfc":["rfc3557"],"template":["audio/dsr-es201108"]},"registered":true},{"content-type":"audio/dsr-es202050","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202050=http://www.iana.org/assignments/media-types/audio/dsr-es202050}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202050"]},"registered":true},{"content-type":"audio/dsr-es202211","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202211=http://www.iana.org/assignments/media-types/audio/dsr-es202211}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202211"]},"registered":true},{"content-type":"audio/dsr-es202212","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202212=http://www.iana.org/assignments/media-types/audio/dsr-es202212}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202212"]},"registered":true},{"content-type":"audio/DV","encoding":"base64","references":["IANA","RFC6469","{audio/DV=http://www.iana.org/assignments/media-types/audio/DV}"],"xrefs":{"rfc":["rfc6469"],"template":["audio/DV"]},"registered":true},{"content-type":"audio/DVI4","encoding":"base64","references":["IANA","RFC4856","{audio/DVI4=http://www.iana.org/assignments/media-types/audio/DVI4}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/DVI4"]},"registered":true},{"content-type":"audio/eac3","encoding":"base64","references":["IANA","RFC4598","{audio/eac3=http://www.iana.org/assignments/media-types/audio/eac3}"],"xrefs":{"rfc":["rfc4598"],"template":["audio/eac3"]},"registered":true},{"content-type":"audio/encaprtp","encoding":"base64","references":["IANA","RFC6849","{audio/encaprtp=http://www.iana.org/assignments/media-types/audio/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["audio/encaprtp"]},"registered":true},{"content-type":"audio/EVRC","encoding":"base64","extensions":["evc"],"references":["IANA","RFC4788","{audio/EVRC=http://www.iana.org/assignments/media-types/audio/EVRC}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC"]},"registered":true},{"content-type":"audio/EVRC-QCP","encoding":"base64","references":["IANA","RFC3625","{audio/EVRC-QCP=http://www.iana.org/assignments/media-types/audio/EVRC-QCP}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/EVRC-QCP"]},"registered":true},{"content-type":"audio/EVRC0","encoding":"base64","references":["IANA","RFC4788","{audio/EVRC0=http://www.iana.org/assignments/media-types/audio/EVRC0}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC0"]},"registered":true},{"content-type":"audio/EVRC1","encoding":"base64","references":["IANA","RFC4788","{audio/EVRC1=http://www.iana.org/assignments/media-types/audio/EVRC1}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC1"]},"registered":true},{"content-type":"audio/EVRCB","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCB=http://www.iana.org/assignments/media-types/audio/EVRCB}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCB"]},"registered":true},{"content-type":"audio/EVRCB0","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCB0=http://www.iana.org/assignments/media-types/audio/EVRCB0}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCB0"]},"registered":true},{"content-type":"audio/EVRCB1","encoding":"base64","references":["IANA","RFC4788","{audio/EVRCB1=http://www.iana.org/assignments/media-types/audio/EVRCB1}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRCB1"]},"registered":true},{"content-type":"audio/EVRCNW","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW=http://www.iana.org/assignments/media-types/audio/EVRCNW}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW"]},"registered":true},{"content-type":"audio/EVRCNW0","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW0=http://www.iana.org/assignments/media-types/audio/EVRCNW0}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW0"]},"registered":true},{"content-type":"audio/EVRCNW1","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW1=http://www.iana.org/assignments/media-types/audio/EVRCNW1}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW1"]},"registered":true},{"content-type":"audio/EVRCWB","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB=http://www.iana.org/assignments/media-types/audio/EVRCWB}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB"]},"registered":true},{"content-type":"audio/EVRCWB0","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB0=http://www.iana.org/assignments/media-types/audio/EVRCWB0}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB0"]},"registered":true},{"content-type":"audio/EVRCWB1","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB1=http://www.iana.org/assignments/media-types/audio/EVRCWB1}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB1"]},"registered":true},{"content-type":"audio/example","encoding":"base64","references":["IANA","RFC4735","{audio/example=http://www.iana.org/assignments/media-types/audio/example}"],"xrefs":{"rfc":["rfc4735"],"template":["audio/example"]},"registered":true},{"content-type":"audio/fwdred","encoding":"base64","references":["IANA","RFC6354","{audio/fwdred=http://www.iana.org/assignments/media-types/audio/fwdred}"],"xrefs":{"rfc":["rfc6354"],"template":["audio/fwdred"]},"registered":true},{"content-type":"audio/G711-0","encoding":"base64","references":["IANA","DRAFT:draft-ietf-payload-g7110-06","{audio/G711-0=http://www.iana.org/assignments/media-types/audio/G711-0}"],"xrefs":{"draft":["RFC-ietf-payload-g7110-06"],"template":["audio/G711-0"]},"registered":true},{"content-type":"audio/G719","encoding":"base64","references":["IANA","RFC5404","{RFC Errata 3245=http://www.rfc-editor.org/errata_search.php?eid=3245}","{audio/G719=http://www.iana.org/assignments/media-types/audio/G719}"],"xrefs":{"rfc":["rfc5404"],"rfc-errata":["3245"],"template":["audio/G719"]},"registered":true},{"content-type":"audio/G722","encoding":"base64","references":["IANA","RFC4856","{audio/G722=http://www.iana.org/assignments/media-types/audio/G722}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G722"]},"registered":true},{"content-type":"audio/G7221","encoding":"base64","references":["IANA","RFC5577","{audio/G7221=http://www.iana.org/assignments/media-types/audio/G7221}"],"xrefs":{"rfc":["rfc5577"],"template":["audio/G7221"]},"registered":true},{"content-type":"audio/G723","encoding":"base64","references":["IANA","RFC4856","{audio/G723=http://www.iana.org/assignments/media-types/audio/G723}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G723"]},"registered":true},{"content-type":"audio/G726-16","encoding":"base64","references":["IANA","RFC4856","{audio/G726-16=http://www.iana.org/assignments/media-types/audio/G726-16}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-16"]},"registered":true},{"content-type":"audio/G726-24","encoding":"base64","references":["IANA","RFC4856","{audio/G726-24=http://www.iana.org/assignments/media-types/audio/G726-24}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-24"]},"registered":true},{"content-type":"audio/G726-32","encoding":"base64","references":["IANA","RFC4856","{audio/G726-32=http://www.iana.org/assignments/media-types/audio/G726-32}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-32"]},"registered":true},{"content-type":"audio/G726-40","encoding":"base64","references":["IANA","RFC4856","{audio/G726-40=http://www.iana.org/assignments/media-types/audio/G726-40}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-40"]},"registered":true},{"content-type":"audio/G728","encoding":"base64","references":["IANA","RFC4856","{audio/G728=http://www.iana.org/assignments/media-types/audio/G728}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G728"]},"registered":true},{"content-type":"audio/G729","encoding":"base64","references":["IANA","RFC4856","{audio/G729=http://www.iana.org/assignments/media-types/audio/G729}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729"]},"registered":true},{"content-type":"audio/G7291","encoding":"base64","references":["IANA","RFC4749","RFC5459"],"xrefs":{"rfc":["rfc4749","rfc5459"]},"registered":true},{"content-type":"audio/G729D","encoding":"base64","references":["IANA","RFC4856","{audio/G729D=http://www.iana.org/assignments/media-types/audio/G729D}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729D"]},"registered":true},{"content-type":"audio/G729E","encoding":"base64","references":["IANA","RFC4856","{audio/G729E=http://www.iana.org/assignments/media-types/audio/G729E}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729E"]},"registered":true},{"content-type":"audio/GSM","encoding":"base64","references":["IANA","RFC4856","{audio/GSM=http://www.iana.org/assignments/media-types/audio/GSM}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/GSM"]},"registered":true},{"content-type":"audio/GSM-EFR","encoding":"base64","references":["IANA","RFC4856","{audio/GSM-EFR=http://www.iana.org/assignments/media-types/audio/GSM-EFR}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/GSM-EFR"]},"registered":true},{"content-type":"audio/GSM-HR-08","encoding":"base64","references":["IANA","RFC5993","{audio/GSM-HR-08=http://www.iana.org/assignments/media-types/audio/GSM-HR-08}"],"xrefs":{"rfc":["rfc5993"],"template":["audio/GSM-HR-08"]},"registered":true},{"content-type":"audio/iLBC","encoding":"base64","references":["IANA","RFC3952","{audio/iLBC=http://www.iana.org/assignments/media-types/audio/iLBC}"],"xrefs":{"rfc":["rfc3952"],"template":["audio/iLBC"]},"registered":true},{"content-type":"audio/ip-mr_v2.5","encoding":"base64","references":["IANA","RFC6262","{audio/ip-mr_v2.5=http://www.iana.org/assignments/media-types/audio/ip-mr_v2.5}"],"xrefs":{"rfc":["rfc6262"],"template":["audio/ip-mr_v2.5"]},"registered":true},{"content-type":"audio/L16","encoding":"base64","extensions":["l16"],"references":["IANA","RFC4856","{audio/L16=http://www.iana.org/assignments/media-types/audio/L16}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/L16"]},"registered":true},{"content-type":"audio/L20","encoding":"base64","references":["IANA","RFC3190","{audio/L20=http://www.iana.org/assignments/media-types/audio/L20}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/L20"]},"registered":true},{"content-type":"audio/L24","encoding":"base64","references":["IANA","RFC3190","{audio/L24=http://www.iana.org/assignments/media-types/audio/L24}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/L24"]},"registered":true},{"content-type":"audio/L8","encoding":"base64","references":["IANA","RFC4856","{audio/L8=http://www.iana.org/assignments/media-types/audio/L8}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/L8"]},"registered":true},{"content-type":"audio/LPC","encoding":"base64","references":["IANA","RFC4856","{audio/LPC=http://www.iana.org/assignments/media-types/audio/LPC}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/LPC"]},"registered":true},{"content-type":"audio/midi","friendly":{"en":"MIDI - Musical Instrument Digital Interface"},"encoding":"base64","extensions":["kar","mid","midi","rmi"],"registered":false},{"content-type":"audio/mobile-xmf","encoding":"base64","references":["IANA","RFC4723","{audio/mobile-xmf=http://www.iana.org/assignments/media-types/audio/mobile-xmf}"],"xrefs":{"rfc":["rfc4723"],"template":["audio/mobile-xmf"]},"registered":true},{"content-type":"audio/mp4","friendly":{"en":"MPEG-4 Audio"},"encoding":"base64","extensions":["mp4","mpg4","f4a","f4b","mp4a"],"references":["IANA","RFC4337","RFC6381","{audio/mp4=http://www.iana.org/assignments/media-types/audio/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["audio/mp4"]},"registered":true},{"content-type":"audio/MP4A-LATM","encoding":"base64","extensions":["m4a"],"references":["IANA","RFC6416","{audio/MP4A-LATM=http://www.iana.org/assignments/media-types/audio/MP4A-LATM}"],"xrefs":{"rfc":["rfc6416"],"template":["audio/MP4A-LATM"]},"registered":true},{"content-type":"audio/MPA","encoding":"base64","references":["IANA","RFC3555","{audio/MPA=http://www.iana.org/assignments/media-types/audio/MPA}"],"xrefs":{"rfc":["rfc3555"],"template":["audio/MPA"]},"registered":true},{"content-type":"audio/mpa-robust","encoding":"base64","references":["IANA","RFC5219","{audio/mpa-robust=http://www.iana.org/assignments/media-types/audio/mpa-robust}"],"xrefs":{"rfc":["rfc5219"],"template":["audio/mpa-robust"]},"registered":true},{"content-type":"audio/mpeg","friendly":{"en":"MPEG Audio"},"encoding":"base64","extensions":["mpga","mp2","mp3","m2a","m3a","mp2a"],"references":["IANA","RFC3003","{audio/mpeg=http://www.iana.org/assignments/media-types/audio/mpeg}"],"xrefs":{"rfc":["rfc3003"],"template":["audio/mpeg"]},"registered":true},{"content-type":"audio/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","RFC5691","RFC6295","{audio/mpeg4-generic=http://www.iana.org/assignments/media-types/audio/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640","rfc5691","rfc6295"],"template":["audio/mpeg4-generic"]},"registered":true},{"content-type":"audio/ogg","friendly":{"en":"Ogg Audio"},"encoding":"base64","extensions":["oga","ogg","spx"],"references":["IANA","RFC5334","{audio/ogg=http://www.iana.org/assignments/media-types/audio/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["audio/ogg"]},"registered":true},{"content-type":"audio/opus","encoding":"base64","references":["IANA","RFC7587","{audio/opus=http://www.iana.org/assignments/media-types/audio/opus}"],"xrefs":{"rfc":["rfc7587"],"template":["audio/opus"]},"registered":true},{"content-type":"audio/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"audio/PCMA","encoding":"base64","references":["IANA","RFC4856","{audio/PCMA=http://www.iana.org/assignments/media-types/audio/PCMA}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/PCMA"]},"registered":true},{"content-type":"audio/PCMA-WB","encoding":"base64","references":["IANA","RFC5391","{audio/PCMA-WB=http://www.iana.org/assignments/media-types/audio/PCMA-WB}"],"xrefs":{"rfc":["rfc5391"],"template":["audio/PCMA-WB"]},"registered":true},{"content-type":"audio/PCMU","encoding":"base64","references":["IANA","RFC4856","{audio/PCMU=http://www.iana.org/assignments/media-types/audio/PCMU}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/PCMU"]},"registered":true},{"content-type":"audio/PCMU-WB","encoding":"base64","references":["IANA","RFC5391","{audio/PCMU-WB=http://www.iana.org/assignments/media-types/audio/PCMU-WB}"],"xrefs":{"rfc":["rfc5391"],"template":["audio/PCMU-WB"]},"registered":true},{"content-type":"audio/prs.sid","encoding":"base64","references":["IANA","[Linus_Walleij]","{audio/prs.sid=http://www.iana.org/assignments/media-types/audio/prs.sid}"],"xrefs":{"person":["Linus_Walleij"],"template":["audio/prs.sid"]},"registered":true},{"content-type":"audio/QCELP","encoding":"base64","references":["IANA","RFC3555","RFC3625"],"xrefs":{"rfc":["rfc3555","rfc3625"]},"registered":true},{"content-type":"audio/raptorfec","encoding":"base64","references":["IANA","RFC6682","{audio/raptorfec=http://www.iana.org/assignments/media-types/audio/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["audio/raptorfec"]},"registered":true},{"content-type":"audio/RED","encoding":"base64","references":["IANA","RFC3555","{audio/RED=http://www.iana.org/assignments/media-types/audio/RED}"],"xrefs":{"rfc":["rfc3555"],"template":["audio/RED"]},"registered":true},{"content-type":"audio/rtp-enc-aescm128","encoding":"base64","references":["IANA","[ThreeGPP]","{audio/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/audio/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["audio/rtp-enc-aescm128"]},"registered":true},{"content-type":"audio/rtp-midi","encoding":"base64","references":["IANA","RFC6295","{audio/rtp-midi=http://www.iana.org/assignments/media-types/audio/rtp-midi}"],"xrefs":{"rfc":["rfc6295"],"template":["audio/rtp-midi"]},"registered":true},{"content-type":"audio/rtploopback","encoding":"base64","references":["IANA","RFC6849","{audio/rtploopback=http://www.iana.org/assignments/media-types/audio/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["audio/rtploopback"]},"registered":true},{"content-type":"audio/rtx","encoding":"base64","references":["IANA","RFC4588","{audio/rtx=http://www.iana.org/assignments/media-types/audio/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["audio/rtx"]},"registered":true},{"content-type":"audio/s3m","encoding":"base64","extensions":["s3m"],"registered":false},{"content-type":"audio/silk","encoding":"base64","extensions":["sil"],"registered":false},{"content-type":"audio/SMV","encoding":"base64","extensions":["smv"],"references":["IANA","RFC3558","{audio/SMV=http://www.iana.org/assignments/media-types/audio/SMV}"],"xrefs":{"rfc":["rfc3558"],"template":["audio/SMV"]},"registered":true},{"content-type":"audio/SMV-QCP","encoding":"base64","references":["IANA","RFC3625","{audio/SMV-QCP=http://www.iana.org/assignments/media-types/audio/SMV-QCP}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/SMV-QCP"]},"registered":true},{"content-type":"audio/SMV0","encoding":"base64","references":["IANA","RFC3558","{audio/SMV0=http://www.iana.org/assignments/media-types/audio/SMV0}"],"xrefs":{"rfc":["rfc3558"],"template":["audio/SMV0"]},"registered":true},{"content-type":"audio/sp-midi","encoding":"base64","references":["IANA","[Timo_Kosonen]","[Tom_White]","{audio/sp-midi=http://www.iana.org/assignments/media-types/audio/sp-midi}"],"xrefs":{"person":["Timo_Kosonen","Tom_White"],"template":["audio/sp-midi"]},"registered":true},{"content-type":"audio/speex","encoding":"base64","references":["IANA","RFC5574","{audio/speex=http://www.iana.org/assignments/media-types/audio/speex}"],"xrefs":{"rfc":["rfc5574"],"template":["audio/speex"]},"registered":true},{"content-type":"audio/t140c","encoding":"base64","references":["IANA","RFC4351","{audio/t140c=http://www.iana.org/assignments/media-types/audio/t140c}"],"xrefs":{"rfc":["rfc4351"],"template":["audio/t140c"]},"registered":true},{"content-type":"audio/t38","encoding":"base64","references":["IANA","RFC4612","{audio/t38=http://www.iana.org/assignments/media-types/audio/t38}"],"xrefs":{"rfc":["rfc4612"],"template":["audio/t38"]},"registered":true},{"content-type":"audio/telephone-event","encoding":"base64","references":["IANA","RFC4733","{audio/telephone-event=http://www.iana.org/assignments/media-types/audio/telephone-event}"],"xrefs":{"rfc":["rfc4733"],"template":["audio/telephone-event"]},"registered":true},{"content-type":"audio/tone","encoding":"base64","references":["IANA","RFC4733","{audio/tone=http://www.iana.org/assignments/media-types/audio/tone}"],"xrefs":{"rfc":["rfc4733"],"template":["audio/tone"]},"registered":true},{"content-type":"audio/UEMCLIP","encoding":"base64","references":["IANA","RFC5686","{audio/UEMCLIP=http://www.iana.org/assignments/media-types/audio/UEMCLIP}"],"xrefs":{"rfc":["rfc5686"],"template":["audio/UEMCLIP"]},"registered":true},{"content-type":"audio/ulpfec","encoding":"base64","references":["IANA","RFC5109","{audio/ulpfec=http://www.iana.org/assignments/media-types/audio/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["audio/ulpfec"]},"registered":true},{"content-type":"audio/VDVI","encoding":"base64","references":["IANA","RFC4856","{audio/VDVI=http://www.iana.org/assignments/media-types/audio/VDVI}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/VDVI"]},"registered":true},{"content-type":"audio/VMR-WB","encoding":"base64","references":["IANA","RFC4348","RFC4424","{audio/VMR-WB=http://www.iana.org/assignments/media-types/audio/VMR-WB}"],"xrefs":{"rfc":["rfc4348","rfc4424"],"template":["audio/VMR-WB"]},"registered":true},{"content-type":"audio/vnd.3gpp.iufp","encoding":"base64","references":["IANA","[Thomas_Belling]","{audio/vnd.3gpp.iufp=http://www.iana.org/assignments/media-types/audio/vnd.3gpp.iufp}"],"xrefs":{"person":["Thomas_Belling"],"template":["audio/vnd.3gpp.iufp"]},"registered":true},{"content-type":"audio/vnd.4SB","encoding":"base64","references":["IANA","[Serge_De_Jaham]","{audio/vnd.4SB=http://www.iana.org/assignments/media-types/audio/vnd.4SB}"],"xrefs":{"person":["Serge_De_Jaham"],"template":["audio/vnd.4SB"]},"registered":true},{"content-type":"audio/vnd.audiokoz","encoding":"base64","references":["IANA","[Vicki_DeBarros]","{audio/vnd.audiokoz=http://www.iana.org/assignments/media-types/audio/vnd.audiokoz}"],"xrefs":{"person":["Vicki_DeBarros"],"template":["audio/vnd.audiokoz"]},"registered":true},{"content-type":"audio/vnd.CELP","encoding":"base64","references":["IANA","[Serge_De_Jaham]","{audio/vnd.CELP=http://www.iana.org/assignments/media-types/audio/vnd.CELP}"],"xrefs":{"person":["Serge_De_Jaham"],"template":["audio/vnd.CELP"]},"registered":true},{"content-type":"audio/vnd.cisco.nse","encoding":"base64","references":["IANA","[Rajesh_Kumar]","{audio/vnd.cisco.nse=http://www.iana.org/assignments/media-types/audio/vnd.cisco.nse}"],"xrefs":{"person":["Rajesh_Kumar"],"template":["audio/vnd.cisco.nse"]},"registered":true},{"content-type":"audio/vnd.cmles.radio-events","encoding":"base64","references":["IANA","[Jean-Philippe_Goulet]","{audio/vnd.cmles.radio-events=http://www.iana.org/assignments/media-types/audio/vnd.cmles.radio-events}"],"xrefs":{"person":["Jean-Philippe_Goulet"],"template":["audio/vnd.cmles.radio-events"]},"registered":true},{"content-type":"audio/vnd.cns.anp1","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{audio/vnd.cns.anp1=http://www.iana.org/assignments/media-types/audio/vnd.cns.anp1}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["audio/vnd.cns.anp1"]},"registered":true},{"content-type":"audio/vnd.cns.inf1","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{audio/vnd.cns.inf1=http://www.iana.org/assignments/media-types/audio/vnd.cns.inf1}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["audio/vnd.cns.inf1"]},"registered":true},{"content-type":"audio/vnd.dece.audio","friendly":{"en":"DECE Audio"},"encoding":"base64","extensions":["uva","uvva"],"references":["IANA","[Michael_A_Dolan]","{audio/vnd.dece.audio=http://www.iana.org/assignments/media-types/audio/vnd.dece.audio}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["audio/vnd.dece.audio"]},"registered":true},{"content-type":"audio/vnd.digital-winds","friendly":{"en":"Digital Winds Music"},"encoding":"7bit","extensions":["eol"],"references":["IANA","[Armands_Strazds]","{audio/vnd.digital-winds=http://www.iana.org/assignments/media-types/audio/vnd.digital-winds}"],"xrefs":{"person":["Armands_Strazds"],"template":["audio/vnd.digital-winds"]},"registered":true},{"content-type":"audio/vnd.dlna.adts","encoding":"base64","references":["IANA","[Edwin_Heredia]","{audio/vnd.dlna.adts=http://www.iana.org/assignments/media-types/audio/vnd.dlna.adts}"],"xrefs":{"person":["Edwin_Heredia"],"template":["audio/vnd.dlna.adts"]},"registered":true},{"content-type":"audio/vnd.dolby.heaac.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.heaac.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.heaac.1"]},"registered":true},{"content-type":"audio/vnd.dolby.heaac.2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.heaac.2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.heaac.2"]},"registered":true},{"content-type":"audio/vnd.dolby.mlp","encoding":"base64","references":["IANA","[Mike_Ward]","{audio/vnd.dolby.mlp=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mlp}"],"xrefs":{"person":["Mike_Ward"],"template":["audio/vnd.dolby.mlp"]},"registered":true},{"content-type":"audio/vnd.dolby.mps","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.mps=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mps}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.mps"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2x","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2x=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2x}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2x"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2z","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2z=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2z}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2z"]},"registered":true},{"content-type":"audio/vnd.dolby.pulse.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pulse.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pulse.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pulse.1"]},"registered":true},{"content-type":"audio/vnd.dra","friendly":{"en":"DRA Audio"},"encoding":"base64","extensions":["dra"],"references":["IANA","[Jiang_Tian]","{audio/vnd.dra=http://www.iana.org/assignments/media-types/audio/vnd.dra}"],"xrefs":{"person":["Jiang_Tian"],"template":["audio/vnd.dra"]},"registered":true},{"content-type":"audio/vnd.dts","friendly":{"en":"DTS Audio"},"encoding":"base64","extensions":["dts"],"references":["IANA","[William_Zou]","{audio/vnd.dts=http://www.iana.org/assignments/media-types/audio/vnd.dts}"],"xrefs":{"person":["William_Zou"],"template":["audio/vnd.dts"]},"registered":true},{"content-type":"audio/vnd.dts.hd","friendly":{"en":"DTS High Definition Audio"},"encoding":"base64","extensions":["dtshd"],"references":["IANA","[William_Zou]","{audio/vnd.dts.hd=http://www.iana.org/assignments/media-types/audio/vnd.dts.hd}"],"xrefs":{"person":["William_Zou"],"template":["audio/vnd.dts.hd"]},"registered":true},{"content-type":"audio/vnd.dvb.file","encoding":"base64","references":["IANA","[Peter_Siebert]","{audio/vnd.dvb.file=http://www.iana.org/assignments/media-types/audio/vnd.dvb.file}"],"xrefs":{"person":["Peter_Siebert"],"template":["audio/vnd.dvb.file"]},"registered":true},{"content-type":"audio/vnd.everad.plj","encoding":"base64","extensions":["plj"],"references":["IANA","[Shay_Cicelsky]","{audio/vnd.everad.plj=http://www.iana.org/assignments/media-types/audio/vnd.everad.plj}"],"xrefs":{"person":["Shay_Cicelsky"],"template":["audio/vnd.everad.plj"]},"registered":true},{"content-type":"audio/vnd.hns.audio","encoding":"base64","references":["IANA","[Swaminathan]","{audio/vnd.hns.audio=http://www.iana.org/assignments/media-types/audio/vnd.hns.audio}"],"xrefs":{"person":["Swaminathan"],"template":["audio/vnd.hns.audio"]},"registered":true},{"content-type":"audio/vnd.lucent.voice","friendly":{"en":"Lucent Voice"},"encoding":"base64","extensions":["lvp"],"references":["IANA","[Greg_Vaudreuil]","{audio/vnd.lucent.voice=http://www.iana.org/assignments/media-types/audio/vnd.lucent.voice}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.lucent.voice"]},"registered":true},{"content-type":"audio/vnd.ms-playready.media.pya","friendly":{"en":"Microsoft PlayReady Ecosystem"},"encoding":"base64","extensions":["pya"],"references":["IANA","[Steve_DiAcetis]","{audio/vnd.ms-playready.media.pya=http://www.iana.org/assignments/media-types/audio/vnd.ms-playready.media.pya}"],"xrefs":{"person":["Steve_DiAcetis"],"template":["audio/vnd.ms-playready.media.pya"]},"registered":true},{"content-type":"audio/vnd.nokia.mobile-xmf","encoding":"base64","extensions":["mxmf"],"references":["IANA","[Nokia]","{audio/vnd.nokia.mobile-xmf=http://www.iana.org/assignments/media-types/audio/vnd.nokia.mobile-xmf}"],"xrefs":{"person":["Nokia"],"template":["audio/vnd.nokia.mobile-xmf"]},"registered":true},{"content-type":"audio/vnd.nortel.vbk","encoding":"base64","extensions":["vbk"],"references":["IANA","[Glenn_Parsons]","{audio/vnd.nortel.vbk=http://www.iana.org/assignments/media-types/audio/vnd.nortel.vbk}"],"xrefs":{"person":["Glenn_Parsons"],"template":["audio/vnd.nortel.vbk"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp4800","friendly":{"en":"Nuera ECELP 4800"},"encoding":"base64","extensions":["ecelp4800"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp4800=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp4800}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp4800"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp7470","friendly":{"en":"Nuera ECELP 7470"},"encoding":"base64","extensions":["ecelp7470"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp7470=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp7470}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp7470"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp9600","friendly":{"en":"Nuera ECELP 9600"},"encoding":"base64","extensions":["ecelp9600"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp9600=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp9600}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp9600"]},"registered":true},{"content-type":"audio/vnd.octel.sbc","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.octel.sbc=http://www.iana.org/assignments/media-types/audio/vnd.octel.sbc}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.octel.sbc"]},"registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/qcelp","references":["IANA","RFC3625","{audio/vnd.qcelp=http://www.iana.org/assignments/media-types/audio/vnd.qcelp}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/vnd.qcelp"],"notes":["- DEPRECATED in favor of audio/qcelp"]},"registered":true},{"content-type":"audio/vnd.rhetorex.32kadpcm","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.rhetorex.32kadpcm=http://www.iana.org/assignments/media-types/audio/vnd.rhetorex.32kadpcm}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.rhetorex.32kadpcm"]},"registered":true},{"content-type":"audio/vnd.rip","friendly":{"en":"Hit'n'Mix"},"encoding":"base64","extensions":["rip"],"references":["IANA","[Martin_Dawe]","{audio/vnd.rip=http://www.iana.org/assignments/media-types/audio/vnd.rip}"],"xrefs":{"person":["Martin_Dawe"],"template":["audio/vnd.rip"]},"registered":true},{"content-type":"audio/vnd.sealedmedia.softseal.mpeg","encoding":"base64","extensions":["smp3","smp","s1m"],"references":["IANA","[David_Petersen]","{audio/vnd.sealedmedia.softseal-mpeg=http://www.iana.org/assignments/media-types/audio/vnd.sealedmedia.softseal-mpeg}"],"xrefs":{"person":["David_Petersen"],"template":["audio/vnd.sealedmedia.softseal-mpeg"]},"registered":true},{"content-type":"audio/vnd.vmx.cvsd","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.vmx.cvsd=http://www.iana.org/assignments/media-types/audio/vnd.vmx.cvsd}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.vmx.cvsd"]},"registered":true},{"content-type":"audio/vorbis","encoding":"base64","references":["IANA","RFC5215","{audio/vorbis=http://www.iana.org/assignments/media-types/audio/vorbis}"],"xrefs":{"rfc":["rfc5215"],"template":["audio/vorbis"]},"registered":true},{"content-type":"audio/vorbis-config","encoding":"base64","references":["IANA","RFC5215","{audio/vorbis-config=http://www.iana.org/assignments/media-types/audio/vorbis-config}"],"xrefs":{"rfc":["rfc5215"],"template":["audio/vorbis-config"]},"registered":true},{"content-type":"audio/webm","friendly":{"en":"Open Web Media Project - Audio"},"encoding":"base64","extensions":["weba","webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"registered":false},{"content-type":"audio/x-aac","friendly":{"en":"Advanced Audio Coding (AAC)"},"encoding":"base64","extensions":["aac"],"registered":false},{"content-type":"audio/x-aiff","friendly":{"en":"Audio Interchange File Format"},"encoding":"base64","extensions":["aif","aifc","aiff"],"registered":false},{"content-type":"audio/x-caf","encoding":"base64","extensions":["caf"],"registered":false},{"content-type":"audio/x-flac","encoding":"base64","extensions":["flac"],"registered":false},{"content-type":"audio/x-matroska","encoding":"base64","extensions":["mka"],"registered":false},{"content-type":"audio/x-midi","encoding":"base64","extensions":["mid","midi","kar"],"registered":false},{"content-type":"audio/x-mpegurl","friendly":{"en":"M3U (Multimedia Playlist)"},"encoding":"base64","extensions":["m3u"],"registered":false},{"content-type":"audio/x-ms-wax","friendly":{"en":"Microsoft Windows Media Audio Redirector"},"encoding":"base64","extensions":["wax"],"registered":false},{"content-type":"audio/x-ms-wma","friendly":{"en":"Microsoft Windows Media Audio"},"encoding":"base64","extensions":["wma"],"registered":false},{"content-type":"audio/x-ms-wmv","encoding":"base64","extensions":["wmv"],"registered":false},{"content-type":"audio/x-pn-realaudio","friendly":{"en":"Real Audio Sound"},"encoding":"base64","extensions":["ra","ram"],"registered":false},{"content-type":"audio/x-pn-realaudio-plugin","friendly":{"en":"Real Audio Sound"},"encoding":"base64","extensions":["rmp","rpm"],"registered":false},{"content-type":"audio/x-realaudio","encoding":"base64","extensions":["ra"],"registered":false},{"content-type":"audio/x-wav","friendly":{"en":"Waveform Audio File Format (WAV)"},"encoding":"base64","extensions":["wav"],"registered":false},{"content-type":"audio/xm","encoding":"base64","extensions":["xm"],"registered":false},{"content-type":"chemical/x-cdx","friendly":{"en":"ChemDraw eXchange file"},"encoding":"base64","extensions":["cdx"],"registered":false},{"content-type":"chemical/x-cif","friendly":{"en":"Crystallographic Interchange Format"},"encoding":"base64","extensions":["cif"],"registered":false},{"content-type":"chemical/x-cmdf","friendly":{"en":"CrystalMaker Data Format"},"encoding":"base64","extensions":["cmdf"],"registered":false},{"content-type":"chemical/x-cml","friendly":{"en":"Chemical Markup Language"},"encoding":"base64","extensions":["cml"],"registered":false},{"content-type":"chemical/x-csml","friendly":{"en":"Chemical Style Markup Language"},"encoding":"base64","extensions":["csml"],"registered":false},{"content-type":"chemical/x-pdb","encoding":"base64","extensions":["pdb"],"obsolete":true,"use-instead":"x-chemical/x-pdb","registered":false},{"content-type":"chemical/x-xyz","friendly":{"en":"XYZ File Format"},"encoding":"base64","extensions":["xyz"],"obsolete":true,"use-instead":"x-chemical/x-xyz","registered":false},{"content-type":"drawing/dwf","encoding":"base64","extensions":["dwf"],"obsolete":true,"use-instead":"x-drawing/dwf","registered":false},{"content-type":"image/bmp","friendly":{"en":"Bitmap Image File"},"encoding":"base64","extensions":["bmp"],"obsolete":true,"use-instead":"image/x-bmp","registered":false},{"content-type":"image/cgm","friendly":{"en":"Computer Graphics Metafile"},"encoding":"base64","extensions":["cgm"],"references":["IANA","[Alan_Francis]","{image/cgm=http://www.iana.org/assignments/media-types/image/cgm}"],"xrefs":{"person":["Alan_Francis"],"template":["image/cgm"]},"registered":true},{"content-type":"image/cmu-raster","encoding":"base64","obsolete":true,"use-instead":"image/x-cmu-raster","registered":false},{"content-type":"image/example","encoding":"base64","references":["IANA","RFC4735","{image/example=http://www.iana.org/assignments/media-types/image/example}"],"xrefs":{"rfc":["rfc4735"],"template":["image/example"]},"registered":true},{"content-type":"image/fits","encoding":"base64","references":["IANA","RFC4047","{image/fits=http://www.iana.org/assignments/media-types/image/fits}"],"xrefs":{"rfc":["rfc4047"],"template":["image/fits"]},"registered":true},{"content-type":"image/g3fax","friendly":{"en":"G3 Fax Image"},"encoding":"base64","extensions":["g3"],"references":["IANA","RFC1494","{image/g3fax=http://www.iana.org/assignments/media-types/image/g3fax}"],"xrefs":{"rfc":["rfc1494"],"template":["image/g3fax"]},"registered":true},{"content-type":"image/gif","friendly":{"en":"Graphics Interchange Format"},"encoding":"base64","extensions":["gif"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"image/ief","friendly":{"en":"Image Exchange Format"},"encoding":"base64","extensions":["ief"],"references":["IANA","RFC1314"],"xrefs":{"rfc":["rfc1314"]},"registered":true},{"content-type":"image/jp2","encoding":"base64","extensions":["jp2","jpg2"],"references":["IANA","RFC3745","{image/jp2=http://www.iana.org/assignments/media-types/image/jp2}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jp2"]},"registered":true},{"content-type":"image/jpeg","friendly":{"en":"JPEG Image"},"encoding":"base64","extensions":["jpeg","jpg","jpe"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"image/jpm","encoding":"base64","extensions":["jpm","jpgm"],"references":["IANA","RFC3745","{image/jpm=http://www.iana.org/assignments/media-types/image/jpm}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jpm"]},"registered":true},{"content-type":"image/jpx","encoding":"base64","extensions":["jpx","jpf"],"references":["IANA","RFC3745","{image/jpx=http://www.iana.org/assignments/media-types/image/jpx}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jpx"]},"registered":true},{"content-type":"image/ktx","friendly":{"en":"OpenGL Textures (KTX)"},"encoding":"base64","extensions":["ktx"],"references":["IANA","[Mark_Callow]","[Khronos]","{http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration}"],"xrefs":{"person":["Khronos","Mark_Callow"],"uri":["http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration"]},"registered":true},{"content-type":"image/naplps","encoding":"base64","references":["IANA","[Ilya_Ferber]","{image/naplps=http://www.iana.org/assignments/media-types/image/naplps}"],"xrefs":{"person":["Ilya_Ferber"],"template":["image/naplps"]},"registered":true},{"content-type":"image/pjpeg","docs":"Fixes a bug with IE6 and progressive JPEGs","encoding":"base64","registered":false},{"content-type":"image/png","friendly":{"en":"Portable Network Graphics (PNG)"},"encoding":"base64","extensions":["png"],"references":["IANA","[Glenn_Randers-Pehrson]","{image/png=http://www.iana.org/assignments/media-types/image/png}"],"xrefs":{"person":["Glenn_Randers-Pehrson"],"template":["image/png"]},"registered":true},{"content-type":"image/prs.btif","friendly":{"en":"BTIF"},"encoding":"base64","extensions":["btif"],"references":["IANA","[Ben_Simon]","{image/prs.btif=http://www.iana.org/assignments/media-types/image/prs.btif}"],"xrefs":{"person":["Ben_Simon"],"template":["image/prs.btif"]},"registered":true},{"content-type":"image/prs.pti","encoding":"base64","references":["IANA","[Juern_Laun]","{image/prs.pti=http://www.iana.org/assignments/media-types/image/prs.pti}"],"xrefs":{"person":["Juern_Laun"],"template":["image/prs.pti"]},"registered":true},{"content-type":"image/pwg-raster","encoding":"base64","references":["IANA","[Michael_Sweet]","{image/pwg-raster=http://www.iana.org/assignments/media-types/image/pwg-raster}"],"xrefs":{"person":["Michael_Sweet"],"template":["image/pwg-raster"]},"registered":true},{"content-type":"image/sgi","encoding":"base64","extensions":["sgi"],"registered":false},{"content-type":"image/svg+xml","friendly":{"en":"Scalable Vector Graphics (SVG)"},"encoding":"8bit","extensions":["svg","svgz"],"references":["IANA","[W3C]","{http://www.w3.org/TR/SVG/mimereg.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/SVG/mimereg.html"]},"registered":true},{"content-type":"image/t38","encoding":"base64","references":["IANA","RFC3362","{image/t38=http://www.iana.org/assignments/media-types/image/t38}"],"xrefs":{"rfc":["rfc3362"],"template":["image/t38"]},"registered":true},{"content-type":"image/targa","encoding":"base64","extensions":["tga"],"obsolete":true,"use-instead":"image/x-targa","registered":false},{"content-type":"image/tiff","friendly":{"en":"Tagged Image File Format"},"encoding":"base64","extensions":["tiff","tif"],"references":["IANA","RFC3302","{image/tiff=http://www.iana.org/assignments/media-types/image/tiff}"],"xrefs":{"rfc":["rfc3302"],"template":["image/tiff"]},"registered":true},{"content-type":"image/tiff-fx","encoding":"base64","references":["IANA","RFC3950","{image/tiff-fx=http://www.iana.org/assignments/media-types/image/tiff-fx}"],"xrefs":{"rfc":["rfc3950"],"template":["image/tiff-fx"]},"registered":true},{"content-type":"image/vnd.adobe.photoshop","friendly":{"en":"Photoshop Document"},"encoding":"base64","extensions":["psd"],"references":["IANA","[Kim_Scarborough]","{image/vnd.adobe.photoshop=http://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop}"],"xrefs":{"person":["Kim_Scarborough"],"template":["image/vnd.adobe.photoshop"]},"registered":true},{"content-type":"image/vnd.airzip.accelerator.azv","encoding":"base64","references":["IANA","[Gary_Clueit]","{image/vnd.airzip.accelerator.azv=http://www.iana.org/assignments/media-types/image/vnd.airzip.accelerator.azv}"],"xrefs":{"person":["Gary_Clueit"],"template":["image/vnd.airzip.accelerator.azv"]},"registered":true},{"content-type":"image/vnd.cns.inf2","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{image/vnd.cns.inf2=http://www.iana.org/assignments/media-types/image/vnd.cns.inf2}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["image/vnd.cns.inf2"]},"registered":true},{"content-type":"image/vnd.dece.graphic","friendly":{"en":"DECE Graphic"},"encoding":"base64","extensions":["uvg","uvi","uvvg","uvvi"],"references":["IANA","[Michael_A_Dolan]","{image/vnd.dece.graphic=http://www.iana.org/assignments/media-types/image/vnd.dece.graphic}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["image/vnd.dece.graphic"]},"registered":true},{"content-type":"image/vnd.dgn","encoding":"base64","extensions":["dgn"],"obsolete":true,"use-instead":"image/x-vnd.dgn","registered":false},{"content-type":"image/vnd.djvu","friendly":{"en":"DjVu"},"encoding":"base64","extensions":["djvu","djv"],"references":["IANA","[Leon_Bottou]","{image/vnd-djvu=http://www.iana.org/assignments/media-types/image/vnd-djvu}"],"xrefs":{"person":["Leon_Bottou"],"template":["image/vnd-djvu"]},"registered":true},{"content-type":"image/vnd.dvb.subtitle","friendly":{"en":"Close Captioning - Subtitle"},"encoding":"base64","extensions":["sub"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{image/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/image/vnd.dvb.subtitle}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["image/vnd.dvb.subtitle"]},"registered":true},{"content-type":"image/vnd.dwg","friendly":{"en":"DWG Drawing"},"encoding":"base64","extensions":["dwg"],"references":["IANA","[Jodi_Moline]","{image/vnd.dwg=http://www.iana.org/assignments/media-types/image/vnd.dwg}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd.dwg"]},"registered":true},{"content-type":"image/vnd.dxf","friendly":{"en":"AutoCAD DXF"},"encoding":"base64","extensions":["dxf"],"references":["IANA","[Jodi_Moline]","{image/vnd.dxf=http://www.iana.org/assignments/media-types/image/vnd.dxf}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd.dxf"]},"registered":true},{"content-type":"image/vnd.fastbidsheet","friendly":{"en":"FastBid Sheet"},"encoding":"base64","extensions":["fbs"],"references":["IANA","[Scott_Becker]","{image/vnd.fastbidsheet=http://www.iana.org/assignments/media-types/image/vnd.fastbidsheet}"],"xrefs":{"person":["Scott_Becker"],"template":["image/vnd.fastbidsheet"]},"registered":true},{"content-type":"image/vnd.fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["fpx"],"references":["IANA","[Marc_Douglas_Spencer]","{image/vnd.fpx=http://www.iana.org/assignments/media-types/image/vnd.fpx}"],"xrefs":{"person":["Marc_Douglas_Spencer"],"template":["image/vnd.fpx"]},"registered":true},{"content-type":"image/vnd.fst","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fst"],"references":["IANA","[Arild_Fuldseth]","{image/vnd.fst=http://www.iana.org/assignments/media-types/image/vnd.fst}"],"xrefs":{"person":["Arild_Fuldseth"],"template":["image/vnd.fst"]},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-mmr","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["mmr"],"references":["IANA","[Masanori_Onda]","{image/vnd.fujixerox.edmics-mmr=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-mmr}"],"xrefs":{"person":["Masanori_Onda"],"template":["image/vnd.fujixerox.edmics-mmr"]},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-rlc","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["rlc"],"references":["IANA","[Masanori_Onda]","{image/vnd.fujixerox.edmics-rlc=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-rlc}"],"xrefs":{"person":["Masanori_Onda"],"template":["image/vnd.fujixerox.edmics-rlc"]},"registered":true},{"content-type":"image/vnd.globalgraphics.pgb","encoding":"base64","extensions":["pgb"],"references":["IANA","[Martin_Bailey]","{image/vnd.globalgraphics.pgb=http://www.iana.org/assignments/media-types/image/vnd.globalgraphics.pgb}"],"xrefs":{"person":["Martin_Bailey"],"template":["image/vnd.globalgraphics.pgb"]},"registered":true},{"content-type":"image/vnd.microsoft.icon","encoding":"base64","extensions":["ico"],"references":["IANA","[Simon_Butcher]","{image/vnd.microsoft.icon=http://www.iana.org/assignments/media-types/image/vnd.microsoft.icon}"],"xrefs":{"person":["Simon_Butcher"],"template":["image/vnd.microsoft.icon"]},"registered":true},{"content-type":"image/vnd.mix","encoding":"base64","references":["IANA","[Saveen_Reddy]","{image/vnd.mix=http://www.iana.org/assignments/media-types/image/vnd.mix}"],"xrefs":{"person":["Saveen_Reddy"],"template":["image/vnd.mix"]},"registered":true},{"content-type":"image/vnd.mozilla.apng","encoding":"base64","references":["IANA","[Stuart_Parmenter]","{image/vnd.mozilla.apng=http://www.iana.org/assignments/media-types/image/vnd.mozilla.apng}"],"xrefs":{"person":["Stuart_Parmenter"],"template":["image/vnd.mozilla.apng"]},"registered":true},{"content-type":"image/vnd.ms-modi","friendly":{"en":"Microsoft Document Imaging Format"},"encoding":"base64","extensions":["mdi"],"references":["IANA","[Gregory_Vaughan]","{image/vnd.ms-modi=http://www.iana.org/assignments/media-types/image/vnd.ms-modi}"],"xrefs":{"person":["Gregory_Vaughan"],"template":["image/vnd.ms-modi"]},"registered":true},{"content-type":"image/vnd.ms-photo","encoding":"base64","extensions":["wdp"],"registered":false},{"content-type":"image/vnd.net-fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["npx"],"references":["IANA","[Marc_Douglas_Spencer]","{image/vnd.net-fpx=http://www.iana.org/assignments/media-types/image/vnd.net-fpx}"],"xrefs":{"person":["Marc_Douglas_Spencer"],"template":["image/vnd.net-fpx"]},"registered":true},{"content-type":"image/vnd.net.fpx","encoding":"base64","obsolete":true,"use-instead":"image/vnd.net-fpx","registered":false},{"content-type":"image/vnd.radiance","encoding":"base64","references":["IANA","[Randolph_Fritz]","[Greg_Ward]","{image/vnd.radiance=http://www.iana.org/assignments/media-types/image/vnd.radiance}"],"xrefs":{"person":["Greg_Ward","Randolph_Fritz"],"template":["image/vnd.radiance"]},"registered":true},{"content-type":"image/vnd.sealed.png","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealed-png=http://www.iana.org/assignments/media-types/image/vnd.sealed-png}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealed-png"]},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.gif","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealedmedia.softseal-gif=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-gif}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealedmedia.softseal-gif"]},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.jpg","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealedmedia.softseal-jpg=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-jpg}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealedmedia.softseal-jpg"]},"registered":true},{"content-type":"image/vnd.svf","encoding":"base64","references":["IANA","[Jodi_Moline]","{image/vnd-svf=http://www.iana.org/assignments/media-types/image/vnd-svf}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd-svf"]},"registered":true},{"content-type":"image/vnd.tencent.tap","encoding":"base64","references":["IANA","[Ni_Hui]","{image/vnd.tencent.tap=http://www.iana.org/assignments/media-types/image/vnd.tencent.tap}"],"xrefs":{"person":["Ni_Hui"],"template":["image/vnd.tencent.tap"]},"registered":true},{"content-type":"image/vnd.valve.source.texture","encoding":"base64","references":["IANA","[Henrik_Andersson]","{image/vnd.valve.source.texture=http://www.iana.org/assignments/media-types/image/vnd.valve.source.texture}"],"xrefs":{"person":["Henrik_Andersson"],"template":["image/vnd.valve.source.texture"]},"registered":true},{"content-type":"image/vnd.wap.wbmp","friendly":{"en":"WAP Bitamp (WBMP)"},"encoding":"base64","extensions":["wbmp"],"references":["IANA","[Peter_Stark]","{image/vnd-wap-wbmp=http://www.iana.org/assignments/media-types/image/vnd-wap-wbmp}"],"xrefs":{"person":["Peter_Stark"],"template":["image/vnd-wap-wbmp"]},"registered":true},{"content-type":"image/vnd.xiff","friendly":{"en":"eXtended Image File Format (XIFF)"},"encoding":"base64","extensions":["xif"],"references":["IANA","[Steven_Martin]","{image/vnd.xiff=http://www.iana.org/assignments/media-types/image/vnd.xiff}"],"xrefs":{"person":["Steven_Martin"],"template":["image/vnd.xiff"]},"registered":true},{"content-type":"image/vnd.zbrush.pcx","encoding":"base64","references":["IANA","[Chris_Charabaruk]","{image/vnd.zbrush.pcx=http://www.iana.org/assignments/media-types/image/vnd.zbrush.pcx}"],"xrefs":{"person":["Chris_Charabaruk"],"template":["image/vnd.zbrush.pcx"]},"registered":true},{"content-type":"image/webp","friendly":{"en":"WebP Image"},"encoding":"base64","extensions":["webp"],"references":["{WebP=https://developers.google.com/speed/webp/}"],"registered":false},{"content-type":"image/x-3ds","encoding":"base64","extensions":["3ds"],"registered":false},{"content-type":"image/x-bmp","encoding":"base64","extensions":["bmp"],"registered":false},{"content-type":"image/x-cmu-raster","friendly":{"en":"CMU Image"},"encoding":"base64","extensions":["ras"],"registered":false},{"content-type":"image/x-cmx","friendly":{"en":"Corel Metafile Exchange (CMX)"},"encoding":"base64","extensions":["cmx"],"registered":false},{"content-type":"image/x-compressed-xcf","docs":"see-also:image/x-xcf","encoding":"base64","extensions":["xcfbz2","xcfgz"],"registered":false},{"content-type":"image/x-freehand","friendly":{"en":"FreeHand MX"},"encoding":"base64","extensions":["fh","fh4","fh5","fh7","fhc"],"registered":false},{"content-type":"image/x-hasselblad-3fr","encoding":"base64","extensions":["3fr"],"registered":false},{"content-type":"image/x-icon","friendly":{"en":"Icon Image"},"encoding":"base64","extensions":["ico"],"registered":false},{"content-type":"image/x-mrsid-image","encoding":"base64","extensions":["sid"],"registered":false},{"content-type":"image/x-ms-bmp","friendly":{"en":"Bitmap Image File"},"encoding":"base64","extensions":["bmp"],"obsolete":true,"registered":false},{"content-type":"image/x-paintshoppro","encoding":"base64","extensions":["psp","pspimage"],"registered":false},{"content-type":"image/x-pcx","friendly":{"en":"PCX Image"},"encoding":"base64","extensions":["pcx"],"registered":false},{"content-type":"image/x-pict","friendly":{"en":"PICT Image"},"encoding":"base64","extensions":["pct","pic"],"registered":false},{"content-type":"image/x-portable-anymap","friendly":{"en":"Portable Anymap Image"},"encoding":"base64","extensions":["pnm"],"registered":false},{"content-type":"image/x-portable-bitmap","friendly":{"en":"Portable Bitmap Format"},"encoding":"base64","extensions":["pbm"],"registered":false},{"content-type":"image/x-portable-graymap","friendly":{"en":"Portable Graymap Format"},"encoding":"base64","extensions":["pgm"],"registered":false},{"content-type":"image/x-portable-pixmap","friendly":{"en":"Portable Pixmap Format"},"encoding":"base64","extensions":["ppm"],"registered":false},{"content-type":"image/x-rgb","friendly":{"en":"Silicon Graphics RGB Bitmap"},"encoding":"base64","extensions":["rgb"],"registered":false},{"content-type":"image/x-targa","encoding":"base64","extensions":["tga"],"registered":false},{"content-type":"image/x-tga","encoding":"base64","extensions":["tga"],"registered":false},{"content-type":"image/x-vnd.dgn","encoding":"base64","extensions":["dgn"],"registered":false},{"content-type":"image/x-win-bmp","encoding":"base64","registered":false},{"content-type":"image/x-xbitmap","friendly":{"en":"X BitMap"},"encoding":"7bit","extensions":["xbm"],"registered":false},{"content-type":"image/x-xbm","encoding":"7bit","extensions":["xbm"],"registered":false},{"content-type":"image/x-xcf","encoding":"base64","extensions":["xcf"],"references":["{XCF=http://git.gnome.org/browse/gimp/tree/devel-docs/xcf.txt}"],"registered":false},{"content-type":"image/x-xpixmap","friendly":{"en":"X PixMap"},"encoding":"8bit","extensions":["xpm"],"registered":false},{"content-type":"image/x-xwindowdump","friendly":{"en":"X Window Dump"},"encoding":"base64","extensions":["xwd"],"registered":false},{"content-type":"message/CPIM","encoding":"base64","references":["IANA","RFC3862","{message/CPIM=http://www.iana.org/assignments/media-types/message/CPIM}"],"xrefs":{"rfc":["rfc3862"],"template":["message/CPIM"]},"registered":true},{"content-type":"message/delivery-status","encoding":"base64","references":["IANA","RFC1894","{message/delivery-status=http://www.iana.org/assignments/media-types/message/delivery-status}"],"xrefs":{"rfc":["rfc1894"],"template":["message/delivery-status"]},"registered":true},{"content-type":"message/disposition-notification","encoding":"base64","references":["IANA","RFC3798","{message/disposition-notification=http://www.iana.org/assignments/media-types/message/disposition-notification}"],"xrefs":{"rfc":["rfc3798"],"template":["message/disposition-notification"]},"registered":true},{"content-type":"message/example","encoding":"base64","references":["IANA","RFC4735","{message/example=http://www.iana.org/assignments/media-types/message/example}"],"xrefs":{"rfc":["rfc4735"],"template":["message/example"]},"registered":true},{"content-type":"message/external-body","encoding":"8bit","references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/feedback-report","encoding":"base64","references":["IANA","RFC5965","{message/feedback-report=http://www.iana.org/assignments/media-types/message/feedback-report}"],"xrefs":{"rfc":["rfc5965"],"template":["message/feedback-report"]},"registered":true},{"content-type":"message/global","encoding":"base64","references":["IANA","RFC6532","{message/global=http://www.iana.org/assignments/media-types/message/global}"],"xrefs":{"rfc":["rfc6532"],"template":["message/global"]},"registered":true},{"content-type":"message/global-delivery-status","encoding":"base64","references":["IANA","RFC6533","{message/global-delivery-status=http://www.iana.org/assignments/media-types/message/global-delivery-status}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-delivery-status"]},"registered":true},{"content-type":"message/global-disposition-notification","encoding":"base64","references":["IANA","RFC6533","{message/global-disposition-notification=http://www.iana.org/assignments/media-types/message/global-disposition-notification}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-disposition-notification"]},"registered":true},{"content-type":"message/global-headers","encoding":"base64","references":["IANA","RFC6533","{message/global-headers=http://www.iana.org/assignments/media-types/message/global-headers}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-headers"]},"registered":true},{"content-type":"message/http","encoding":"base64","references":["IANA","RFC7230","{message/http=http://www.iana.org/assignments/media-types/message/http}"],"xrefs":{"rfc":["rfc7230"],"template":["message/http"]},"registered":true},{"content-type":"message/imdn+xml","encoding":"base64","references":["IANA","RFC5438","{message/imdn+xml=http://www.iana.org/assignments/media-types/message/imdn+xml}"],"xrefs":{"rfc":["rfc5438"],"template":["message/imdn+xml"]},"registered":true},{"content-type":"message/news","encoding":"8bit","obsolete":true,"references":["IANA","RFC5537","[Henry_Spencer]","{message/news=http://www.iana.org/assignments/media-types/message/news}"],"xrefs":{"rfc":["rfc5537"],"person":["Henry_Spencer"],"template":["message/news"],"notes":["- OBSOLETED by RFC5537"]},"registered":true},{"content-type":"message/partial","encoding":"8bit","references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/rfc822","friendly":{"en":"Email Message"},"encoding":"8bit","extensions":["eml","mime"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/s-http","encoding":"base64","references":["IANA","RFC2660","{message/s-http=http://www.iana.org/assignments/media-types/message/s-http}"],"xrefs":{"rfc":["rfc2660"],"template":["message/s-http"]},"registered":true},{"content-type":"message/sip","encoding":"base64","references":["IANA","RFC3261","{message/sip=http://www.iana.org/assignments/media-types/message/sip}"],"xrefs":{"rfc":["rfc3261"],"template":["message/sip"]},"registered":true},{"content-type":"message/sipfrag","encoding":"base64","references":["IANA","RFC3420","{message/sipfrag=http://www.iana.org/assignments/media-types/message/sipfrag}"],"xrefs":{"rfc":["rfc3420"],"template":["message/sipfrag"]},"registered":true},{"content-type":"message/tracking-status","encoding":"base64","references":["IANA","RFC3886","{message/tracking-status=http://www.iana.org/assignments/media-types/message/tracking-status}"],"xrefs":{"rfc":["rfc3886"],"template":["message/tracking-status"]},"registered":true},{"content-type":"message/vnd.si.simp","encoding":"base64","obsolete":true,"references":["IANA","[Nicholas_Parks_Young]","{message/vnd.si.simp=http://www.iana.org/assignments/media-types/message/vnd.si.simp}"],"xrefs":{"person":["Nicholas_Parks_Young"],"template":["message/vnd.si.simp"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"message/vnd.wfa.wsc","encoding":"base64","references":["IANA","[Mick_Conley]","{message/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/message/vnd.wfa.wsc}"],"xrefs":{"person":["Mick_Conley"],"template":["message/vnd.wfa.wsc"]},"registered":true},{"content-type":"model/example","encoding":"base64","references":["IANA","RFC4735","{model/example=http://www.iana.org/assignments/media-types/model/example}"],"xrefs":{"rfc":["rfc4735"],"template":["model/example"]},"registered":true},{"content-type":"model/iges","friendly":{"en":"Initial Graphics Exchange Specification (IGES)"},"encoding":"base64","extensions":["igs","iges"],"references":["IANA","[Curtis_Parks]","{model/iges=http://www.iana.org/assignments/media-types/model/iges}"],"xrefs":{"person":["Curtis_Parks"],"template":["model/iges"]},"registered":true},{"content-type":"model/mesh","friendly":{"en":"Mesh Data Type"},"encoding":"base64","extensions":["msh","mesh","silo"],"references":["IANA","RFC2077"],"xrefs":{"rfc":["rfc2077"]},"registered":true},{"content-type":"model/vnd.collada+xml","friendly":{"en":"COLLADA"},"encoding":"base64","extensions":["dae"],"references":["IANA","[James_Riordon]","{model/vnd.collada+xml=http://www.iana.org/assignments/media-types/model/vnd.collada+xml}"],"xrefs":{"person":["James_Riordon"],"template":["model/vnd.collada+xml"]},"registered":true},{"content-type":"model/vnd.dwf","friendly":{"en":"Autodesk Design Web Format (DWF)"},"encoding":"base64","extensions":["dwf"],"references":["IANA","[Jason_Pratt]","{model/vnd-dwf=http://www.iana.org/assignments/media-types/model/vnd-dwf}"],"xrefs":{"person":["Jason_Pratt"],"template":["model/vnd-dwf"]},"registered":true},{"content-type":"model/vnd.flatland.3dml","encoding":"base64","references":["IANA","[Michael_Powers]","{model/vnd.flatland.3dml=http://www.iana.org/assignments/media-types/model/vnd.flatland.3dml}"],"xrefs":{"person":["Michael_Powers"],"template":["model/vnd.flatland.3dml"]},"registered":true},{"content-type":"model/vnd.gdl","friendly":{"en":"Geometric Description Language (GDL)"},"encoding":"base64","extensions":["gdl"],"references":["IANA","[Attila_Babits]","{model/vnd.gdl=http://www.iana.org/assignments/media-types/model/vnd.gdl}"],"xrefs":{"person":["Attila_Babits"],"template":["model/vnd.gdl"]},"registered":true},{"content-type":"model/vnd.gs-gdl","encoding":"base64","references":["IANA","[Attila_Babits]","{model/vnd.gs-gdl=http://www.iana.org/assignments/media-types/model/vnd.gs-gdl}"],"xrefs":{"person":["Attila_Babits"],"template":["model/vnd.gs-gdl"]},"registered":true},{"content-type":"model/vnd.gtw","friendly":{"en":"Gen-Trix Studio"},"encoding":"base64","extensions":["gtw"],"references":["IANA","[Yutaka_Ozaki]","{model/vnd.gtw=http://www.iana.org/assignments/media-types/model/vnd.gtw}"],"xrefs":{"person":["Yutaka_Ozaki"],"template":["model/vnd.gtw"]},"registered":true},{"content-type":"model/vnd.moml+xml","encoding":"base64","references":["IANA","[Christopher_Brooks]","{model/vnd.moml+xml=http://www.iana.org/assignments/media-types/model/vnd.moml+xml}"],"xrefs":{"person":["Christopher_Brooks"],"template":["model/vnd.moml+xml"]},"registered":true},{"content-type":"model/vnd.mts","friendly":{"en":"Virtue MTS"},"encoding":"base64","extensions":["mts"],"references":["IANA","[Boris_Rabinovitch]","{model/vnd.mts=http://www.iana.org/assignments/media-types/model/vnd.mts}"],"xrefs":{"person":["Boris_Rabinovitch"],"template":["model/vnd.mts"]},"registered":true},{"content-type":"model/vnd.opengex","encoding":"base64","references":["IANA","[Eric_Lengyel]","{model/vnd.opengex=http://www.iana.org/assignments/media-types/model/vnd.opengex}"],"xrefs":{"person":["Eric_Lengyel"],"template":["model/vnd.opengex"]},"registered":true},{"content-type":"model/vnd.parasolid.transmit.binary","encoding":"base64","extensions":["x_b","xmt_bin"],"references":["IANA","[Parasolid]","{model/vnd.parasolid.transmit-binary=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-binary}"],"xrefs":{"person":["Parasolid"],"template":["model/vnd.parasolid.transmit-binary"]},"registered":true},{"content-type":"model/vnd.parasolid.transmit.text","encoding":"quoted-printable","extensions":["x_t","xmt_txt"],"references":["IANA","[Parasolid]","{model/vnd.parasolid.transmit-text=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-text}"],"xrefs":{"person":["Parasolid"],"template":["model/vnd.parasolid.transmit-text"]},"registered":true},{"content-type":"model/vnd.valve.source.compiled-map","encoding":"base64","references":["IANA","[Henrik_Andersson]","{model/vnd.valve.source.compiled-map=http://www.iana.org/assignments/media-types/model/vnd.valve.source.compiled-map}"],"xrefs":{"person":["Henrik_Andersson"],"template":["model/vnd.valve.source.compiled-map"]},"registered":true},{"content-type":"model/vnd.vtu","friendly":{"en":"Virtue VTU"},"encoding":"base64","extensions":["vtu"],"references":["IANA","[Boris_Rabinovitch]","{model/vnd.vtu=http://www.iana.org/assignments/media-types/model/vnd.vtu}"],"xrefs":{"person":["Boris_Rabinovitch"],"template":["model/vnd.vtu"]},"registered":true},{"content-type":"model/vrml","friendly":{"en":"Virtual Reality Modeling Language"},"encoding":"base64","extensions":["wrl","vrml"],"references":["IANA","RFC2077"],"xrefs":{"rfc":["rfc2077"]},"registered":true},{"content-type":"model/x3d+binary","encoding":"base64","extensions":["x3db","x3dbz"],"registered":false},{"content-type":"model/x3d+fastinfoset","encoding":"base64","references":["IANA","[Web3D_X3D]","{model/x3d+fastinfoset=http://www.iana.org/assignments/media-types/model/x3d+fastinfoset}"],"xrefs":{"person":["Web3D_X3D"],"template":["model/x3d+fastinfoset"]},"registered":true},{"content-type":"model/x3d+vrml","encoding":"base64","extensions":["x3dv","x3dvz"],"registered":false},{"content-type":"model/x3d+xml","encoding":"base64","extensions":["x3d","x3dz"],"references":["IANA","[Web3D]","[Web3D_X3D]","{model/x3d+xml=http://www.iana.org/assignments/media-types/model/x3d+xml}"],"xrefs":{"person":["Web3D","Web3D_X3D"],"template":["model/x3d+xml"]},"registered":true},{"content-type":"model/x3d-vrml","encoding":"base64","references":["IANA","[Web3D]","[Web3D_X3D]","{model/x3d-vrml=http://www.iana.org/assignments/media-types/model/x3d-vrml}"],"xrefs":{"person":["Web3D","Web3D_X3D"],"template":["model/x3d-vrml"]},"registered":true},{"content-type":"multipart/alternative","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/appledouble","encoding":"8bit","references":["IANA","[Patrik_Faltstrom]","{multipart/appledouble=http://www.iana.org/assignments/media-types/multipart/appledouble}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["multipart/appledouble"]},"registered":true},{"content-type":"multipart/byteranges","encoding":"base64","references":["IANA","RFC7233","{multipart/byteranges=http://www.iana.org/assignments/media-types/multipart/byteranges}"],"xrefs":{"rfc":["rfc7233"],"template":["multipart/byteranges"]},"registered":true},{"content-type":"multipart/digest","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/encrypted","encoding":"base64","references":["IANA","RFC1847","{multipart/encrypted=http://www.iana.org/assignments/media-types/multipart/encrypted}"],"xrefs":{"rfc":["rfc1847"],"template":["multipart/encrypted"]},"registered":true},{"content-type":"multipart/example","encoding":"base64","references":["IANA","RFC4735","{multipart/example=http://www.iana.org/assignments/media-types/multipart/example}"],"xrefs":{"rfc":["rfc4735"],"template":["multipart/example"]},"registered":true},{"content-type":"multipart/form-data","encoding":"base64","references":["IANA","RFC7578","{multipart/form-data=http://www.iana.org/assignments/media-types/multipart/form-data}"],"xrefs":{"rfc":["rfc7578"],"template":["multipart/form-data"]},"registered":true},{"content-type":"multipart/header-set","encoding":"base64","references":["IANA","[Dave_Crocker]","{multipart/header-set=http://www.iana.org/assignments/media-types/multipart/header-set}"],"xrefs":{"person":["Dave_Crocker"],"template":["multipart/header-set"]},"registered":true},{"content-type":"multipart/mixed","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/parallel","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/related","encoding":"base64","references":["IANA","RFC2387","{multipart/related=http://www.iana.org/assignments/media-types/multipart/related}"],"xrefs":{"rfc":["rfc2387"],"template":["multipart/related"]},"registered":true},{"content-type":"multipart/report","encoding":"base64","references":["IANA","RFC6522","{multipart/report=http://www.iana.org/assignments/media-types/multipart/report}"],"xrefs":{"rfc":["rfc6522"],"template":["multipart/report"]},"registered":true},{"content-type":"multipart/signed","encoding":"base64","references":["IANA","RFC1847","{multipart/signed=http://www.iana.org/assignments/media-types/multipart/signed}"],"xrefs":{"rfc":["rfc1847"],"template":["multipart/signed"]},"registered":true},{"content-type":"multipart/voice-message","encoding":"base64","references":["IANA","RFC2421","RFC2423","{multipart/voice-message=http://www.iana.org/assignments/media-types/multipart/voice-message}"],"xrefs":{"rfc":["rfc2421","rfc2423"],"template":["multipart/voice-message"]},"registered":true},{"content-type":"multipart/x-gzip","encoding":"base64","registered":false},{"content-type":"multipart/x-mixed-replace","encoding":"base64","references":["IANA","[W3C]","[Robin_Berjon]","{multipart/x-mixed-replace=http://www.iana.org/assignments/media-types/multipart/x-mixed-replace}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["multipart/x-mixed-replace"]},"registered":true},{"content-type":"multipart/x-parallel","encoding":"base64","obsolete":true,"use-instead":"multipart/parallel","registered":false},{"content-type":"multipart/x-tar","encoding":"base64","registered":false},{"content-type":"multipart/x-ustar","encoding":"base64","registered":false},{"content-type":"multipart/x-www-form-urlencoded","encoding":"base64","obsolete":true,"use-instead":"application/x-www-form-urlencoded","registered":false},{"content-type":"multipart/x-zip","encoding":"base64","registered":false},{"content-type":"text/1d-interleaved-parityfec","encoding":"quoted-printable","references":["IANA","RFC6015","{text/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/text/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["text/1d-interleaved-parityfec"]},"registered":true},{"content-type":"text/cache-manifest","encoding":"quoted-printable","extensions":["appcache","manifest"],"references":["IANA","[W3C]","[Robin_Berjon]","{text/cache-manifest=http://www.iana.org/assignments/media-types/text/cache-manifest}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["text/cache-manifest"]},"registered":true},{"content-type":"text/calendar","friendly":{"en":"iCalendar"},"encoding":"quoted-printable","extensions":["ics","ifb"],"references":["IANA","RFC5545","{text/calendar=http://www.iana.org/assignments/media-types/text/calendar}"],"xrefs":{"rfc":["rfc5545"],"template":["text/calendar"]},"registered":true},{"content-type":"text/comma-separated-values","encoding":"8bit","extensions":["csv"],"obsolete":true,"use-instead":"text/csv","registered":false},{"content-type":"text/css","friendly":{"en":"Cascading Style Sheets (CSS)"},"encoding":"8bit","extensions":["css"],"references":["IANA","RFC2318","{text/css=http://www.iana.org/assignments/media-types/text/css}"],"xrefs":{"rfc":["rfc2318"],"template":["text/css"]},"registered":true},{"content-type":"text/csv","friendly":{"en":"Comma-Separated Values"},"encoding":"8bit","extensions":["csv"],"references":["IANA","RFC4180","RFC7111","{text/csv=http://www.iana.org/assignments/media-types/text/csv}"],"xrefs":{"rfc":["rfc4180","rfc7111"],"template":["text/csv"]},"registered":true},{"content-type":"text/csv-schema","encoding":"quoted-printable","references":["IANA","[National_Archives_UK]","[David_Underdown]","{text/csv-schema=http://www.iana.org/assignments/media-types/text/csv-schema}"],"xrefs":{"person":["David_Underdown","National_Archives_UK"],"template":["text/csv-schema"]},"registered":true},{"content-type":"text/directory","encoding":"quoted-printable","obsolete":true,"references":["IANA","RFC2425","RFC6350","{text/directory=http://www.iana.org/assignments/media-types/text/directory}"],"xrefs":{"rfc":["rfc2425","rfc6350"],"template":["text/directory"],"notes":["- DEPRECATED by RFC6350"]},"registered":true},{"content-type":"text/dns","encoding":"quoted-printable","references":["IANA","RFC4027","{text/dns=http://www.iana.org/assignments/media-types/text/dns}"],"xrefs":{"rfc":["rfc4027"],"template":["text/dns"]},"registered":true},{"content-type":"text/ecmascript","encoding":"quoted-printable","obsolete":true,"use-instead":"application/ecmascript","references":["IANA","RFC4329","{text/ecmascript=http://www.iana.org/assignments/media-types/text/ecmascript}"],"xrefs":{"rfc":["rfc4329"],"template":["text/ecmascript"],"notes":["- OBSOLETED in favor of application/ecmascript"]},"registered":true},{"content-type":"text/encaprtp","encoding":"quoted-printable","references":["IANA","RFC6849","{text/encaprtp=http://www.iana.org/assignments/media-types/text/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["text/encaprtp"]},"registered":true},{"content-type":"text/enriched","encoding":"quoted-printable","references":["IANA","RFC1896"],"xrefs":{"rfc":["rfc1896"]},"registered":true},{"content-type":"text/example","encoding":"quoted-printable","references":["IANA","RFC4735","{text/example=http://www.iana.org/assignments/media-types/text/example}"],"xrefs":{"rfc":["rfc4735"],"template":["text/example"]},"registered":true},{"content-type":"text/fwdred","encoding":"quoted-printable","references":["IANA","RFC6354","{text/fwdred=http://www.iana.org/assignments/media-types/text/fwdred}"],"xrefs":{"rfc":["rfc6354"],"template":["text/fwdred"]},"registered":true},{"content-type":"text/grammar-ref-list","encoding":"quoted-printable","references":["IANA","RFC6787","{text/grammar-ref-list=http://www.iana.org/assignments/media-types/text/grammar-ref-list}"],"xrefs":{"rfc":["rfc6787"],"template":["text/grammar-ref-list"]},"registered":true},{"content-type":"text/html","friendly":{"en":"HyperText Markup Language (HTML)"},"encoding":"8bit","extensions":["html","htm","htmlx","shtml","htx"],"references":["IANA","[W3C]","[Robin_Berjon]","{text/html=http://www.iana.org/assignments/media-types/text/html}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["text/html"]},"registered":true},{"content-type":"text/javascript","encoding":"quoted-printable","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","references":["IANA","RFC4329","{text/javascript=http://www.iana.org/assignments/media-types/text/javascript}"],"xrefs":{"rfc":["rfc4329"],"template":["text/javascript"],"notes":["- OBSOLETED in favor of application/javascript"]},"registered":true},{"content-type":"text/jcr-cnd","encoding":"quoted-printable","references":["IANA","[Peeter_Piegaze]","{text/jcr-cnd=http://www.iana.org/assignments/media-types/text/jcr-cnd}"],"xrefs":{"person":["Peeter_Piegaze"],"template":["text/jcr-cnd"]},"registered":true},{"content-type":"text/markdown","encoding":"quoted-printable","references":["IANA","DRAFT:draft-ietf-appsawg-text-markdown","{text/markdown=http://www.iana.org/assignments/media-types/text/markdown}"],"xrefs":{"draft":["draft-ietf-appsawg-text-markdown"],"template":["text/markdown"],"notes":["(TEMPORARY - registered 2014-11-11, expires 2015-11-11)"]},"registered":true},{"content-type":"text/mizar","encoding":"quoted-printable","references":["IANA","[Jesse_Alama]","{text/mizar=http://www.iana.org/assignments/media-types/text/mizar}"],"xrefs":{"person":["Jesse_Alama"],"template":["text/mizar"]},"registered":true},{"content-type":"text/n3","friendly":{"en":"Notation3"},"encoding":"quoted-printable","extensions":["n3"],"references":["IANA","[W3C]","[Eric_Prudhommeaux]","{text/n3=http://www.iana.org/assignments/media-types/text/n3}"],"xrefs":{"person":["Eric_Prudhommeaux","W3C"],"template":["text/n3"]},"registered":true},{"content-type":"text/parameters","encoding":"quoted-printable","references":["IANA","DRAFT:draft-ietf-mmusic-rfc2326bis-40","{text/parameters=http://www.iana.org/assignments/media-types/text/parameters}"],"xrefs":{"draft":["RFC-ietf-mmusic-rfc2326bis-40"],"template":["text/parameters"]},"registered":true},{"content-type":"text/parityfec","encoding":"quoted-printable","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"text/plain","friendly":{"en":"Text File"},"encoding":"quoted-printable","extensions":["txt","asc","c","cc","h","hh","cpp","hpp","dat","hlp","conf","def","doc","in","list","log","markdown","md","rst","text","textile"],"references":["IANA","RFC2046","RFC3676","RFC5147"],"xrefs":{"rfc":["rfc2046","rfc3676","rfc5147"]},"registered":true},{"content-type":"text/provenance-notation","encoding":"quoted-printable","references":["IANA","[W3C]","[Ivan_Herman]","{text/provenance-notation=http://www.iana.org/assignments/media-types/text/provenance-notation}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["text/provenance-notation"]},"registered":true},{"content-type":"text/prs.fallenstein.rst","encoding":"quoted-printable","extensions":["rst"],"references":["IANA","[Benja_Fallenstein]","{text/prs.fallenstein.rst=http://www.iana.org/assignments/media-types/text/prs.fallenstein.rst}"],"xrefs":{"person":["Benja_Fallenstein"],"template":["text/prs.fallenstein.rst"]},"registered":true},{"content-type":"text/prs.lines.tag","friendly":{"en":"PRS Lines Tag"},"encoding":"quoted-printable","extensions":["dsc"],"references":["IANA","[John_Lines]","{text/prs.lines.tag=http://www.iana.org/assignments/media-types/text/prs.lines.tag}"],"xrefs":{"person":["John_Lines"],"template":["text/prs.lines.tag"]},"registered":true},{"content-type":"text/raptorfec","encoding":"quoted-printable","references":["IANA","RFC6682","{text/raptorfec=http://www.iana.org/assignments/media-types/text/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["text/raptorfec"]},"registered":true},{"content-type":"text/RED","encoding":"quoted-printable","references":["IANA","RFC4102","{text/RED=http://www.iana.org/assignments/media-types/text/RED}"],"xrefs":{"rfc":["rfc4102"],"template":["text/RED"]},"registered":true},{"content-type":"text/rfc822-headers","encoding":"quoted-printable","references":["IANA","RFC6522","{text/rfc822-headers=http://www.iana.org/assignments/media-types/text/rfc822-headers}"],"xrefs":{"rfc":["rfc6522"],"template":["text/rfc822-headers"]},"registered":true},{"content-type":"text/richtext","friendly":{"en":"Rich Text Format (RTF)"},"encoding":"8bit","extensions":["rtx"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"text/rtf","encoding":"8bit","extensions":["rtf"],"references":["IANA","[Paul_Lindner]","{text/rtf=http://www.iana.org/assignments/media-types/text/rtf}"],"xrefs":{"person":["Paul_Lindner"],"template":["text/rtf"]},"registered":true},{"content-type":"text/rtp-enc-aescm128","encoding":"quoted-printable","references":["IANA","[ThreeGPP]","{text/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/text/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["text/rtp-enc-aescm128"]},"registered":true},{"content-type":"text/rtploopback","encoding":"quoted-printable","references":["IANA","RFC6849","{text/rtploopback=http://www.iana.org/assignments/media-types/text/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["text/rtploopback"]},"registered":true},{"content-type":"text/rtx","encoding":"quoted-printable","references":["IANA","RFC4588","{text/rtx=http://www.iana.org/assignments/media-types/text/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["text/rtx"]},"registered":true},{"content-type":"text/sgml","friendly":{"en":"Standard Generalized Markup Language (SGML)"},"encoding":"quoted-printable","extensions":["sgml","sgm"],"references":["IANA","RFC1874","{text/SGML=http://www.iana.org/assignments/media-types/text/SGML}"],"xrefs":{"rfc":["rfc1874"],"template":["text/SGML"]},"registered":true},{"content-type":"text/t140","encoding":"quoted-printable","references":["IANA","RFC4103","{text/t140=http://www.iana.org/assignments/media-types/text/t140}"],"xrefs":{"rfc":["rfc4103"],"template":["text/t140"]},"registered":true},{"content-type":"text/tab-separated-values","friendly":{"en":"Tab Separated Values"},"encoding":"quoted-printable","extensions":["tsv"],"references":["IANA","[Paul_Lindner]","{text/tab-separated-values=http://www.iana.org/assignments/media-types/text/tab-separated-values}"],"xrefs":{"person":["Paul_Lindner"],"template":["text/tab-separated-values"]},"registered":true},{"content-type":"text/troff","friendly":{"en":"troff"},"encoding":"8bit","extensions":["t","tr","roff","troff","man","me","ms"],"references":["IANA","RFC4263","{text/troff=http://www.iana.org/assignments/media-types/text/troff}"],"xrefs":{"rfc":["rfc4263"],"template":["text/troff"]},"registered":true},{"content-type":"text/turtle","friendly":{"en":"Turtle (Terse RDF Triple Language)"},"encoding":"quoted-printable","extensions":["ttl"],"references":["IANA","[W3C]","[Eric_Prudhommeaux]","{text/turtle=http://www.iana.org/assignments/media-types/text/turtle}"],"xrefs":{"person":["Eric_Prudhommeaux","W3C"],"template":["text/turtle"]},"registered":true},{"content-type":"text/ulpfec","encoding":"quoted-printable","references":["IANA","RFC5109","{text/ulpfec=http://www.iana.org/assignments/media-types/text/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["text/ulpfec"]},"registered":true},{"content-type":"text/uri-list","friendly":{"en":"URI Resolution Services"},"encoding":"quoted-printable","extensions":["uri","uris","urls"],"references":["IANA","RFC2483","{text/uri-list=http://www.iana.org/assignments/media-types/text/uri-list}"],"xrefs":{"rfc":["rfc2483"],"template":["text/uri-list"]},"registered":true},{"content-type":"text/vcard","encoding":"quoted-printable","extensions":["vcard"],"references":["IANA","RFC6350","{text/vcard=http://www.iana.org/assignments/media-types/text/vcard}"],"xrefs":{"rfc":["rfc6350"],"template":["text/vcard"]},"registered":true,"signature":true},{"content-type":"text/vnd.a","encoding":"quoted-printable","references":["IANA","[Regis_Dehoux]","{text/vnd-a=http://www.iana.org/assignments/media-types/text/vnd-a}"],"xrefs":{"person":["Regis_Dehoux"],"template":["text/vnd-a"]},"registered":true},{"content-type":"text/vnd.abc","encoding":"quoted-printable","references":["IANA","[Steve_Allen]","{text/vnd.abc=http://www.iana.org/assignments/media-types/text/vnd.abc}"],"xrefs":{"person":["Steve_Allen"],"template":["text/vnd.abc"]},"registered":true},{"content-type":"text/vnd.curl","friendly":{"en":"Curl - Applet"},"encoding":"quoted-printable","extensions":["curl"],"references":["IANA","[Robert_Byrnes]","{text/vnd-curl=http://www.iana.org/assignments/media-types/text/vnd-curl}"],"xrefs":{"person":["Robert_Byrnes"],"template":["text/vnd-curl"]},"registered":true},{"content-type":"text/vnd.curl.dcurl","friendly":{"en":"Curl - Detached Applet"},"encoding":"quoted-printable","extensions":["dcurl"],"registered":false},{"content-type":"text/vnd.curl.mcurl","friendly":{"en":"Curl - Manifest File"},"encoding":"quoted-printable","extensions":["mcurl"],"registered":false},{"content-type":"text/vnd.curl.scurl","friendly":{"en":"Curl - Source Code"},"encoding":"quoted-printable","extensions":["scurl"],"registered":false},{"content-type":"text/vnd.debian.copyright","encoding":"quoted-printable","references":["IANA","[Charles_Plessy]","{text/vnd.debian.copyright=http://www.iana.org/assignments/media-types/text/vnd.debian.copyright}"],"xrefs":{"person":["Charles_Plessy"],"template":["text/vnd.debian.copyright"]},"registered":true},{"content-type":"text/vnd.DMClientScript","encoding":"quoted-printable","references":["IANA","[Dan_Bradley]","{text/vnd.DMClientScript=http://www.iana.org/assignments/media-types/text/vnd.DMClientScript}"],"xrefs":{"person":["Dan_Bradley"],"template":["text/vnd.DMClientScript"]},"registered":true},{"content-type":"text/vnd.dvb.subtitle","encoding":"quoted-printable","extensions":["sub"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{text/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/text/vnd.dvb.subtitle}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["text/vnd.dvb.subtitle"]},"registered":true},{"content-type":"text/vnd.esmertec.theme-descriptor","encoding":"quoted-printable","references":["IANA","[Stefan_Eilemann]","{text/vnd.esmertec.theme-descriptor=http://www.iana.org/assignments/media-types/text/vnd.esmertec.theme-descriptor}"],"xrefs":{"person":["Stefan_Eilemann"],"template":["text/vnd.esmertec.theme-descriptor"]},"registered":true},{"content-type":"text/vnd.flatland.3dml","encoding":"quoted-printable","obsolete":true,"use-instead":"model/vnd.flatland.3dml","registered":false},{"content-type":"text/vnd.fly","friendly":{"en":"mod_fly / fly.cgi"},"encoding":"quoted-printable","extensions":["fly"],"references":["IANA","[John-Mark_Gurney]","{text/vnd.fly=http://www.iana.org/assignments/media-types/text/vnd.fly}"],"xrefs":{"person":["John-Mark_Gurney"],"template":["text/vnd.fly"]},"registered":true},{"content-type":"text/vnd.fmi.flexstor","friendly":{"en":"FLEXSTOR"},"encoding":"quoted-printable","extensions":["flx"],"references":["IANA","[Kari_E._Hurtta]","{text/vnd.fmi.flexstor=http://www.iana.org/assignments/media-types/text/vnd.fmi.flexstor}"],"xrefs":{"person":["Kari_E._Hurtta"],"template":["text/vnd.fmi.flexstor"]},"registered":true},{"content-type":"text/vnd.graphviz","friendly":{"en":"Graphviz"},"encoding":"quoted-printable","extensions":["gv"],"references":["IANA","[John_Ellson]","{text/vnd.graphviz=http://www.iana.org/assignments/media-types/text/vnd.graphviz}"],"xrefs":{"person":["John_Ellson"],"template":["text/vnd.graphviz"]},"registered":true},{"content-type":"text/vnd.in3d.3dml","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["3dml"],"references":["IANA","[Michael_Powers]","{text/vnd.in3d.3dml=http://www.iana.org/assignments/media-types/text/vnd.in3d.3dml}"],"xrefs":{"person":["Michael_Powers"],"template":["text/vnd.in3d.3dml"]},"registered":true},{"content-type":"text/vnd.in3d.spot","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["spot"],"references":["IANA","[Michael_Powers]","{text/vnd.in3d.spot=http://www.iana.org/assignments/media-types/text/vnd.in3d.spot}"],"xrefs":{"person":["Michael_Powers"],"template":["text/vnd.in3d.spot"]},"registered":true},{"content-type":"text/vnd.IPTC.NewsML","encoding":"quoted-printable","references":["IANA","[IPTC]","{text/vnd.IPTC.NewsML=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NewsML}"],"xrefs":{"person":["IPTC"],"template":["text/vnd.IPTC.NewsML"]},"registered":true},{"content-type":"text/vnd.IPTC.NITF","encoding":"quoted-printable","references":["IANA","[IPTC]","{text/vnd.IPTC.NITF=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NITF}"],"xrefs":{"person":["IPTC"],"template":["text/vnd.IPTC.NITF"]},"registered":true},{"content-type":"text/vnd.latex-z","encoding":"quoted-printable","references":["IANA","[Mikusiak_Lubos]","{text/vnd.latex-z=http://www.iana.org/assignments/media-types/text/vnd.latex-z}"],"xrefs":{"person":["Mikusiak_Lubos"],"template":["text/vnd.latex-z"]},"registered":true},{"content-type":"text/vnd.motorola.reflex","encoding":"quoted-printable","references":["IANA","[Mark_Patton]","{text/vnd.motorola.reflex=http://www.iana.org/assignments/media-types/text/vnd.motorola.reflex}"],"xrefs":{"person":["Mark_Patton"],"template":["text/vnd.motorola.reflex"]},"registered":true},{"content-type":"text/vnd.ms-mediapackage","encoding":"quoted-printable","references":["IANA","[Jan_Nelson]","{text/vnd.ms-mediapackage=http://www.iana.org/assignments/media-types/text/vnd.ms-mediapackage}"],"xrefs":{"person":["Jan_Nelson"],"template":["text/vnd.ms-mediapackage"]},"registered":true},{"content-type":"text/vnd.net2phone.commcenter.command","encoding":"quoted-printable","extensions":["ccc"],"references":["IANA","[Feiyu_Xie]","{text/vnd.net2phone.commcenter.command=http://www.iana.org/assignments/media-types/text/vnd.net2phone.commcenter.command}"],"xrefs":{"person":["Feiyu_Xie"],"template":["text/vnd.net2phone.commcenter.command"]},"registered":true},{"content-type":"text/vnd.radisys.msml-basic-layout","encoding":"quoted-printable","references":["IANA","RFC5707","{text/vnd.radisys.msml-basic-layout=http://www.iana.org/assignments/media-types/text/vnd.radisys.msml-basic-layout}"],"xrefs":{"rfc":["rfc5707"],"template":["text/vnd.radisys.msml-basic-layout"]},"registered":true},{"content-type":"text/vnd.si.uricatalogue","encoding":"quoted-printable","obsolete":true,"references":["IANA","[Nicholas_Parks_Young]","{text/vnd.si.uricatalogue=http://www.iana.org/assignments/media-types/text/vnd.si.uricatalogue}"],"xrefs":{"person":["Nicholas_Parks_Young"],"template":["text/vnd.si.uricatalogue"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"text/vnd.sun.j2me.app-descriptor","friendly":{"en":"J2ME App Descriptor"},"encoding":"8bit","extensions":["jad"],"references":["IANA","[Gary_Adams]","{text/vnd.sun.j2me.app-descriptor=http://www.iana.org/assignments/media-types/text/vnd.sun.j2me.app-descriptor}"],"xrefs":{"person":["Gary_Adams"],"template":["text/vnd.sun.j2me.app-descriptor"]},"registered":true},{"content-type":"text/vnd.trolltech.linguist","encoding":"quoted-printable","references":["IANA","[David_Lee_Lambert]","{text/vnd.trolltech.linguist=http://www.iana.org/assignments/media-types/text/vnd.trolltech.linguist}"],"xrefs":{"person":["David_Lee_Lambert"],"template":["text/vnd.trolltech.linguist"]},"registered":true},{"content-type":"text/vnd.wap.si","encoding":"quoted-printable","extensions":["si"],"references":["IANA","[WAP-Forum]","{text/vnd.wap.si=http://www.iana.org/assignments/media-types/text/vnd.wap.si}"],"xrefs":{"person":["WAP-Forum"],"template":["text/vnd.wap.si"]},"registered":true},{"content-type":"text/vnd.wap.sl","encoding":"quoted-printable","extensions":["sl"],"references":["IANA","[WAP-Forum]","{text/vnd.wap.sl=http://www.iana.org/assignments/media-types/text/vnd.wap.sl}"],"xrefs":{"person":["WAP-Forum"],"template":["text/vnd.wap.sl"]},"registered":true},{"content-type":"text/vnd.wap.wml","friendly":{"en":"Wireless Markup Language (WML)"},"encoding":"quoted-printable","extensions":["wml"],"references":["IANA","[Peter_Stark]","{text/vnd.wap-wml=http://www.iana.org/assignments/media-types/text/vnd.wap-wml}"],"xrefs":{"person":["Peter_Stark"],"template":["text/vnd.wap-wml"]},"registered":true},{"content-type":"text/vnd.wap.wmlscript","friendly":{"en":"Wireless Markup Language Script (WMLScript)"},"encoding":"quoted-printable","extensions":["wmls"],"references":["IANA","[Peter_Stark]","{text/vnd.wap.wmlscript=http://www.iana.org/assignments/media-types/text/vnd.wap.wmlscript}"],"xrefs":{"person":["Peter_Stark"],"template":["text/vnd.wap.wmlscript"]},"registered":true},{"content-type":"text/x-asm","friendly":{"en":"Assembler Source File"},"encoding":"quoted-printable","extensions":["asm","s"],"registered":false},{"content-type":"text/x-c","friendly":{"en":"C Source File"},"encoding":"quoted-printable","extensions":["c","cc","cpp","cxx","dic","h","hh"],"registered":false},{"content-type":"text/x-coffescript","encoding":"8bit","extensions":["coffee"],"registered":false},{"content-type":"text/x-component","encoding":"8bit","extensions":["htc"],"registered":false},{"content-type":"text/x-fortran","friendly":{"en":"Fortran Source File"},"encoding":"quoted-printable","extensions":["f","f77","f90","for"],"registered":false},{"content-type":"text/x-java-source","friendly":{"en":"Java Source File"},"encoding":"quoted-printable","extensions":["java"],"registered":false},{"content-type":"text/x-nfo","encoding":"quoted-printable","extensions":["nfo"],"registered":false},{"content-type":"text/x-opml","encoding":"quoted-printable","extensions":["opml"],"registered":false},{"content-type":"text/x-pascal","friendly":{"en":"Pascal Source File"},"encoding":"quoted-printable","extensions":["p","pas"],"registered":false},{"content-type":"text/x-rtf","encoding":"8bit","extensions":["rtf"],"obsolete":true,"use-instead":"text/rtf","registered":false},{"content-type":"text/x-setext","friendly":{"en":"Setext"},"encoding":"quoted-printable","extensions":["etx"],"registered":false},{"content-type":"text/x-sfv","encoding":"quoted-printable","extensions":["sfv"],"registered":false},{"content-type":"text/x-uuencode","friendly":{"en":"UUEncode"},"encoding":"quoted-printable","extensions":["uu"],"registered":false},{"content-type":"text/x-vcalendar","friendly":{"en":"vCalendar"},"encoding":"8bit","extensions":["vcs"],"registered":false},{"content-type":"text/x-vcard","friendly":{"en":"vCard"},"encoding":"8bit","extensions":["vcf"],"registered":false,"signature":true},{"content-type":"text/x-vnd.flatland.3dml","encoding":"quoted-printable","obsolete":true,"use-instead":"model/vnd.flatland.3dml","registered":false},{"content-type":"text/x-yaml","encoding":"8bit","extensions":["yaml","yml"],"registered":false},{"content-type":"text/xml","encoding":"8bit","extensions":["xml","dtd"],"references":["IANA","RFC7303","{text/xml=http://www.iana.org/assignments/media-types/text/xml}"],"xrefs":{"rfc":["rfc7303"],"template":["text/xml"]},"registered":true},{"content-type":"text/xml-external-parsed-entity","encoding":"quoted-printable","references":["IANA","RFC7303","{text/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/text/xml-external-parsed-entity}"],"xrefs":{"rfc":["rfc7303"],"template":["text/xml-external-parsed-entity"]},"registered":true},{"content-type":"video/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{video/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/video/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["video/1d-interleaved-parityfec"]},"registered":true},{"content-type":"video/3gpp","friendly":{"en":"3GP"},"encoding":"base64","extensions":["3gp","3gpp"],"references":["IANA","RFC3839","RFC6381","{video/3gpp=http://www.iana.org/assignments/media-types/video/3gpp}"],"xrefs":{"rfc":["rfc3839","rfc6381"],"template":["video/3gpp"]},"registered":true},{"content-type":"video/3gpp-tt","encoding":"base64","references":["IANA","RFC4396","{video/3gpp-tt=http://www.iana.org/assignments/media-types/video/3gpp-tt}"],"xrefs":{"rfc":["rfc4396"],"template":["video/3gpp-tt"]},"registered":true},{"content-type":"video/3gpp2","friendly":{"en":"3GP2"},"encoding":"base64","extensions":["3g2","3gpp2"],"references":["IANA","RFC4393","RFC6381","{video/3gpp2=http://www.iana.org/assignments/media-types/video/3gpp2}"],"xrefs":{"rfc":["rfc4393","rfc6381"],"template":["video/3gpp2"]},"registered":true},{"content-type":"video/BMPEG","encoding":"base64","references":["IANA","RFC3555","{video/BMPEG=http://www.iana.org/assignments/media-types/video/BMPEG}"],"xrefs":{"rfc":["rfc3555"],"template":["video/BMPEG"]},"registered":true},{"content-type":"video/BT656","encoding":"base64","references":["IANA","RFC3555","{video/BT656=http://www.iana.org/assignments/media-types/video/BT656}"],"xrefs":{"rfc":["rfc3555"],"template":["video/BT656"]},"registered":true},{"content-type":"video/CelB","encoding":"base64","references":["IANA","RFC3555","{video/CelB=http://www.iana.org/assignments/media-types/video/CelB}"],"xrefs":{"rfc":["rfc3555"],"template":["video/CelB"]},"registered":true},{"content-type":"video/dl","encoding":"base64","extensions":["dl"],"obsolete":true,"use-instead":"video/x-dl","registered":false},{"content-type":"video/DV","encoding":"base64","extensions":["dv"],"references":["IANA","RFC6469","{video/DV=http://www.iana.org/assignments/media-types/video/DV}"],"xrefs":{"rfc":["rfc6469"],"template":["video/DV"]},"registered":true},{"content-type":"video/encaprtp","encoding":"base64","references":["IANA","RFC6849","{video/encaprtp=http://www.iana.org/assignments/media-types/video/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["video/encaprtp"]},"registered":true},{"content-type":"video/example","encoding":"base64","references":["IANA","RFC4735","{video/example=http://www.iana.org/assignments/media-types/video/example}"],"xrefs":{"rfc":["rfc4735"],"template":["video/example"]},"registered":true},{"content-type":"video/gl","encoding":"base64","extensions":["gl"],"obsolete":true,"use-instead":"video/x-gl","registered":false},{"content-type":"video/H261","friendly":{"en":"H.261"},"encoding":"base64","extensions":["h261"],"references":["IANA","RFC4587","{video/H261=http://www.iana.org/assignments/media-types/video/H261}"],"xrefs":{"rfc":["rfc4587"],"template":["video/H261"]},"registered":true},{"content-type":"video/H263","friendly":{"en":"H.263"},"encoding":"base64","extensions":["h263"],"references":["IANA","RFC3555","{video/H263=http://www.iana.org/assignments/media-types/video/H263}"],"xrefs":{"rfc":["rfc3555"],"template":["video/H263"]},"registered":true},{"content-type":"video/H263-1998","encoding":"base64","references":["IANA","RFC4629","{video/H263-1998=http://www.iana.org/assignments/media-types/video/H263-1998}"],"xrefs":{"rfc":["rfc4629"],"template":["video/H263-1998"]},"registered":true},{"content-type":"video/H263-2000","encoding":"base64","references":["IANA","RFC4629","{video/H263-2000=http://www.iana.org/assignments/media-types/video/H263-2000}"],"xrefs":{"rfc":["rfc4629"],"template":["video/H263-2000"]},"registered":true},{"content-type":"video/H264","friendly":{"en":"H.264"},"encoding":"base64","extensions":["h264"],"references":["IANA","RFC6184","{video/H264=http://www.iana.org/assignments/media-types/video/H264}"],"xrefs":{"rfc":["rfc6184"],"template":["video/H264"]},"registered":true},{"content-type":"video/H264-RCDO","encoding":"base64","references":["IANA","RFC6185","{video/H264-RCDO=http://www.iana.org/assignments/media-types/video/H264-RCDO}"],"xrefs":{"rfc":["rfc6185"],"template":["video/H264-RCDO"]},"registered":true},{"content-type":"video/H264-SVC","encoding":"base64","references":["IANA","RFC6190","{video/H264-SVC=http://www.iana.org/assignments/media-types/video/H264-SVC}"],"xrefs":{"rfc":["rfc6190"],"template":["video/H264-SVC"]},"registered":true},{"content-type":"video/iso.segment","encoding":"base64","references":["IANA","[David_Singer]","[ISO-IEC_JTC1]","{video/iso.segment=http://www.iana.org/assignments/media-types/video/iso.segment}"],"xrefs":{"person":["David_Singer","ISO-IEC_JTC1"],"template":["video/iso.segment"]},"registered":true},{"content-type":"video/JPEG","friendly":{"en":"JPGVideo"},"encoding":"base64","extensions":["jpgv"],"references":["IANA","RFC3555","{video/JPEG=http://www.iana.org/assignments/media-types/video/JPEG}"],"xrefs":{"rfc":["rfc3555"],"template":["video/JPEG"]},"registered":true},{"content-type":"video/jpeg2000","encoding":"base64","references":["IANA","RFC5371","RFC5372","{video/jpeg2000=http://www.iana.org/assignments/media-types/video/jpeg2000}"],"xrefs":{"rfc":["rfc5371","rfc5372"],"template":["video/jpeg2000"]},"registered":true},{"content-type":"video/jpm","friendly":{"en":"JPEG 2000 Compound Image File Format"},"encoding":"base64","extensions":["jpgm","jpm"],"registered":false},{"content-type":"video/MJ2","friendly":{"en":"Motion JPEG 2000"},"encoding":"base64","extensions":["mj2","mjp2"],"references":["IANA","RFC3745","{video/mj2=http://www.iana.org/assignments/media-types/video/mj2}"],"xrefs":{"rfc":["rfc3745"],"template":["video/mj2"]},"registered":true},{"content-type":"video/MP1S","encoding":"base64","references":["IANA","RFC3555","{video/MP1S=http://www.iana.org/assignments/media-types/video/MP1S}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP1S"]},"registered":true},{"content-type":"video/MP2P","encoding":"base64","references":["IANA","RFC3555","{video/MP2P=http://www.iana.org/assignments/media-types/video/MP2P}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP2P"]},"registered":true},{"content-type":"video/MP2T","encoding":"base64","extensions":["ts"],"references":["IANA","RFC3555","{video/MP2T=http://www.iana.org/assignments/media-types/video/MP2T}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP2T"]},"registered":true},{"content-type":"video/mp4","friendly":{"en":"MPEG-4 Video"},"encoding":"base64","extensions":["mp4","mpg4","f4v","f4p","mp4v"],"references":["IANA","RFC4337","RFC6381","{video/mp4=http://www.iana.org/assignments/media-types/video/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["video/mp4"]},"registered":true},{"content-type":"video/MP4V-ES","encoding":"base64","references":["IANA","RFC6416","{video/MP4V-ES=http://www.iana.org/assignments/media-types/video/MP4V-ES}"],"xrefs":{"rfc":["rfc6416"],"template":["video/MP4V-ES"]},"registered":true},{"content-type":"video/mpeg","friendly":{"en":"MPEG Video"},"encoding":"base64","extensions":["mp2","mp3g","mpe","mpeg","mpg","m1v","m2v"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"video/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","{video/mpeg4-generic=http://www.iana.org/assignments/media-types/video/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640"],"template":["video/mpeg4-generic"]},"registered":true},{"content-type":"video/MPV","encoding":"base64","references":["IANA","RFC3555","{video/MPV=http://www.iana.org/assignments/media-types/video/MPV}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MPV"]},"registered":true},{"content-type":"video/nv","encoding":"base64","references":["IANA","RFC4856","{video/nv=http://www.iana.org/assignments/media-types/video/nv}"],"xrefs":{"rfc":["rfc4856"],"template":["video/nv"]},"registered":true},{"content-type":"video/ogg","friendly":{"en":"Ogg Video"},"encoding":"base64","extensions":["ogg","ogv"],"references":["IANA","RFC5334","{video/ogg=http://www.iana.org/assignments/media-types/video/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["video/ogg"]},"registered":true},{"content-type":"video/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"video/pointer","encoding":"base64","references":["IANA","RFC2862","{video/pointer=http://www.iana.org/assignments/media-types/video/pointer}"],"xrefs":{"rfc":["rfc2862"],"template":["video/pointer"]},"registered":true},{"content-type":"video/quicktime","friendly":{"en":"Quicktime Video"},"encoding":"base64","extensions":["qt","mov"],"references":["IANA","RFC6381","[Paul_Lindner]","{video/quicktime=http://www.iana.org/assignments/media-types/video/quicktime}"],"xrefs":{"rfc":["rfc6381"],"person":["Paul_Lindner"],"template":["video/quicktime"]},"registered":true},{"content-type":"video/raptorfec","encoding":"base64","references":["IANA","RFC6682","{video/raptorfec=http://www.iana.org/assignments/media-types/video/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["video/raptorfec"]},"registered":true},{"content-type":"video/raw","encoding":"base64","references":["IANA","RFC4175"],"xrefs":{"rfc":["rfc4175"]},"registered":true},{"content-type":"video/rtp-enc-aescm128","encoding":"base64","references":["IANA","[ThreeGPP]","{video/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/video/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["video/rtp-enc-aescm128"]},"registered":true},{"content-type":"video/rtploopback","encoding":"base64","references":["IANA","RFC6849","{video/rtploopback=http://www.iana.org/assignments/media-types/video/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["video/rtploopback"]},"registered":true},{"content-type":"video/rtx","encoding":"base64","references":["IANA","RFC4588","{video/rtx=http://www.iana.org/assignments/media-types/video/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["video/rtx"]},"registered":true},{"content-type":"video/SMPTE292M","encoding":"base64","references":["IANA","RFC3497","{video/SMPTE292M=http://www.iana.org/assignments/media-types/video/SMPTE292M}"],"xrefs":{"rfc":["rfc3497"],"template":["video/SMPTE292M"]},"registered":true},{"content-type":"video/ulpfec","encoding":"base64","references":["IANA","RFC5109","{video/ulpfec=http://www.iana.org/assignments/media-types/video/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["video/ulpfec"]},"registered":true},{"content-type":"video/vc1","encoding":"base64","references":["IANA","RFC4425","{video/vc1=http://www.iana.org/assignments/media-types/video/vc1}"],"xrefs":{"rfc":["rfc4425"],"template":["video/vc1"]},"registered":true},{"content-type":"video/vnd.CCTV","encoding":"base64","references":["IANA","[Frank_Rottmann]","{video/vnd.CCTV=http://www.iana.org/assignments/media-types/video/vnd.CCTV}"],"xrefs":{"person":["Frank_Rottmann"],"template":["video/vnd.CCTV"]},"registered":true},{"content-type":"video/vnd.dece.hd","friendly":{"en":"DECE High Definition Video"},"encoding":"base64","extensions":["uvh","uvvh"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.hd=http://www.iana.org/assignments/media-types/video/vnd.dece.hd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.hd"]},"registered":true},{"content-type":"video/vnd.dece.mobile","friendly":{"en":"DECE Mobile Video"},"encoding":"base64","extensions":["uvm","uvvm"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.mobile=http://www.iana.org/assignments/media-types/video/vnd.dece.mobile}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.mobile"]},"registered":true},{"content-type":"video/vnd.dece.mp4","encoding":"base64","references":["IANA","[Michael_A_Dolan]","{video/vnd.dece-mp4=http://www.iana.org/assignments/media-types/video/vnd.dece-mp4}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece-mp4"]},"registered":true},{"content-type":"video/vnd.dece.pd","friendly":{"en":"DECE PD Video"},"encoding":"base64","extensions":["uvp","uvvp"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.pd=http://www.iana.org/assignments/media-types/video/vnd.dece.pd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.pd"]},"registered":true},{"content-type":"video/vnd.dece.sd","friendly":{"en":"DECE SD Video"},"encoding":"base64","extensions":["uvs","uvvs"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.sd=http://www.iana.org/assignments/media-types/video/vnd.dece.sd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.sd"]},"registered":true},{"content-type":"video/vnd.dece.video","friendly":{"en":"DECE Video"},"encoding":"base64","extensions":["uvv","uvvv"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.video=http://www.iana.org/assignments/media-types/video/vnd.dece.video}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.video"]},"registered":true},{"content-type":"video/vnd.directv.mpeg","encoding":"base64","references":["IANA","[Nathan_Zerbe]","{video/vnd.directv-mpeg=http://www.iana.org/assignments/media-types/video/vnd.directv-mpeg}"],"xrefs":{"person":["Nathan_Zerbe"],"template":["video/vnd.directv-mpeg"]},"registered":true},{"content-type":"video/vnd.directv.mpeg-tts","encoding":"base64","references":["IANA","[Nathan_Zerbe]","{video/vnd.directv.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.directv.mpeg-tts}"],"xrefs":{"person":["Nathan_Zerbe"],"template":["video/vnd.directv.mpeg-tts"]},"registered":true},{"content-type":"video/vnd.dlna.mpeg-tts","encoding":"base64","references":["IANA","[Edwin_Heredia]","{video/vnd.dlna.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.dlna.mpeg-tts}"],"xrefs":{"person":["Edwin_Heredia"],"template":["video/vnd.dlna.mpeg-tts"]},"registered":true},{"content-type":"video/vnd.dvb.file","encoding":"base64","extensions":["dvb"],"references":["IANA","[Peter_Siebert]","[Kevin_Murray]","{video/vnd.dvb.file=http://www.iana.org/assignments/media-types/video/vnd.dvb.file}"],"xrefs":{"person":["Kevin_Murray","Peter_Siebert"],"template":["video/vnd.dvb.file"]},"registered":true},{"content-type":"video/vnd.fvt","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fvt"],"references":["IANA","[Arild_Fuldseth]","{video/vnd.fvt=http://www.iana.org/assignments/media-types/video/vnd.fvt}"],"xrefs":{"person":["Arild_Fuldseth"],"template":["video/vnd.fvt"]},"registered":true},{"content-type":"video/vnd.hns.video","encoding":"base64","references":["IANA","[Swaminathan]","{video/vnd.hns.video=http://www.iana.org/assignments/media-types/video/vnd.hns.video}"],"xrefs":{"person":["Swaminathan"],"template":["video/vnd.hns.video"]},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-1010","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.1dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-1010}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.1dparityfec-1010"]},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-2005","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.1dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-2005}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.1dparityfec-2005"]},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-1010","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.2dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-1010}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.2dparityfec-1010"]},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-2005","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.2dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-2005}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.2dparityfec-2005"]},"registered":true},{"content-type":"video/vnd.iptvforum.ttsavc","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.ttsavc=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsavc}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.ttsavc"]},"registered":true},{"content-type":"video/vnd.iptvforum.ttsmpeg2","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.ttsmpeg2=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsmpeg2}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.ttsmpeg2"]},"registered":true},{"content-type":"video/vnd.motorola.video","encoding":"base64","references":["IANA","[Tom_McGinty]","{video/vnd.motorola.video=http://www.iana.org/assignments/media-types/video/vnd.motorola.video}"],"xrefs":{"person":["Tom_McGinty"],"template":["video/vnd.motorola.video"]},"registered":true},{"content-type":"video/vnd.motorola.videop","encoding":"base64","references":["IANA","[Tom_McGinty]","{video/vnd.motorola.videop=http://www.iana.org/assignments/media-types/video/vnd.motorola.videop}"],"xrefs":{"person":["Tom_McGinty"],"template":["video/vnd.motorola.videop"]},"registered":true},{"content-type":"video/vnd.mpegurl","friendly":{"en":"MPEG Url"},"encoding":"8bit","extensions":["mxu","m4u"],"references":["IANA","[Heiko_Recktenwald]","{video/vnd-mpegurl=http://www.iana.org/assignments/media-types/video/vnd-mpegurl}"],"xrefs":{"person":["Heiko_Recktenwald"],"template":["video/vnd-mpegurl"]},"registered":true},{"content-type":"video/vnd.ms-playready.media.pyv","friendly":{"en":"Microsoft PlayReady Ecosystem Video"},"encoding":"base64","extensions":["pyv"],"references":["IANA","[Steve_DiAcetis]","{video/vnd.ms-playready.media.pyv=http://www.iana.org/assignments/media-types/video/vnd.ms-playready.media.pyv}"],"xrefs":{"person":["Steve_DiAcetis"],"template":["video/vnd.ms-playready.media.pyv"]},"registered":true},{"content-type":"video/vnd.nokia.interleaved-multimedia","encoding":"base64","extensions":["nim"],"references":["IANA","[Petteri_Kangaslampi]","{video/vnd.nokia.interleaved-multimedia=http://www.iana.org/assignments/media-types/video/vnd.nokia.interleaved-multimedia}"],"xrefs":{"person":["Petteri_Kangaslampi"],"template":["video/vnd.nokia.interleaved-multimedia"]},"registered":true},{"content-type":"video/vnd.nokia.videovoip","encoding":"base64","references":["IANA","[Nokia]","{video/vnd.nokia.videovoip=http://www.iana.org/assignments/media-types/video/vnd.nokia.videovoip}"],"xrefs":{"person":["Nokia"],"template":["video/vnd.nokia.videovoip"]},"registered":true},{"content-type":"video/vnd.objectvideo","encoding":"base64","extensions":["mp4","m4v"],"references":["IANA","[John_Clark]","{video/vnd.objectvideo=http://www.iana.org/assignments/media-types/video/vnd.objectvideo}"],"xrefs":{"person":["John_Clark"],"template":["video/vnd.objectvideo"]},"registered":true},{"content-type":"video/vnd.radgamettools.bink","encoding":"base64","references":["IANA","[Henrik_Andersson]","{video/vnd.radgamettools.bink=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.bink}"],"xrefs":{"person":["Henrik_Andersson"],"template":["video/vnd.radgamettools.bink"]},"registered":true},{"content-type":"video/vnd.radgamettools.smacker","encoding":"base64","references":["IANA","[Henrik_Andersson]","{video/vnd.radgamettools.smacker=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.smacker}"],"xrefs":{"person":["Henrik_Andersson"],"template":["video/vnd.radgamettools.smacker"]},"registered":true},{"content-type":"video/vnd.sealed.mpeg1","encoding":"base64","extensions":["s11"],"references":["IANA","[David_Petersen]","{video/vnd.sealed.mpeg1=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg1}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed.mpeg1"]},"registered":true},{"content-type":"video/vnd.sealed.mpeg4","encoding":"base64","extensions":["smpg","s14"],"references":["IANA","[David_Petersen]","{video/vnd.sealed.mpeg4=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg4}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed.mpeg4"]},"registered":true},{"content-type":"video/vnd.sealed.swf","encoding":"base64","extensions":["sswf","ssw"],"references":["IANA","[David_Petersen]","{video/vnd.sealed-swf=http://www.iana.org/assignments/media-types/video/vnd.sealed-swf}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed-swf"]},"registered":true},{"content-type":"video/vnd.sealedmedia.softseal.mov","encoding":"base64","extensions":["smov","smo","s1q"],"references":["IANA","[David_Petersen]","{video/vnd.sealedmedia.softseal-mov=http://www.iana.org/assignments/media-types/video/vnd.sealedmedia.softseal-mov}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealedmedia.softseal-mov"]},"registered":true},{"content-type":"video/vnd.uvvu.mp4","friendly":{"en":"DECE MP4"},"encoding":"base64","extensions":["uvu","uvvu"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.uvvu-mp4=http://www.iana.org/assignments/media-types/video/vnd.uvvu-mp4}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.uvvu-mp4"]},"registered":true},{"content-type":"video/vnd.vivo","friendly":{"en":"Vivo"},"encoding":"base64","extensions":["viv","vivo"],"references":["IANA","[John_Wolfe]","{video/vnd-vivo=http://www.iana.org/assignments/media-types/video/vnd-vivo}"],"xrefs":{"person":["John_Wolfe"],"template":["video/vnd-vivo"]},"registered":true},{"content-type":"video/webm","friendly":{"en":"Open Web Media Project - Video"},"encoding":"base64","extensions":["webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"registered":false},{"content-type":"video/x-dl","encoding":"base64","extensions":["dl"],"registered":false},{"content-type":"video/x-dv","encoding":"base64","extensions":["dv"],"obsolete":true,"use-instead":"video/DV","registered":false},{"content-type":"video/x-f4v","friendly":{"en":"Flash Video"},"encoding":"base64","extensions":["f4v"],"registered":false},{"content-type":"video/x-fli","friendly":{"en":"FLI/FLC Animation Format"},"encoding":"base64","extensions":["fli"],"registered":false},{"content-type":"video/x-flv","friendly":{"en":"Flash Video"},"encoding":"base64","extensions":["flv"],"registered":false},{"content-type":"video/x-gl","encoding":"base64","extensions":["gl"],"registered":false},{"content-type":"video/x-ivf","encoding":"base64","extensions":["ivf"],"registered":false},{"content-type":"video/x-m4v","friendly":{"en":"M4v"},"encoding":"base64","extensions":["m4v"],"registered":false},{"content-type":"video/x-matroska","encoding":"base64","extensions":["mk3d","mks","mkv"],"registered":false},{"content-type":"video/x-mng","encoding":"base64","extensions":["mng"],"registered":false},{"content-type":"video/x-motion-jpeg","encoding":"base64","extensions":["mjpg","mjpeg"],"registered":false},{"content-type":"video/x-ms-asf","friendly":{"en":"Microsoft Advanced Systems Format (ASF)"},"encoding":"base64","extensions":["asf","asx"],"registered":false},{"content-type":"video/x-ms-vob","encoding":"base64","extensions":["vob"],"registered":false},{"content-type":"video/x-ms-wm","friendly":{"en":"Microsoft Windows Media"},"encoding":"base64","extensions":["wm"],"registered":false},{"content-type":"video/x-ms-wmv","friendly":{"en":"Microsoft Windows Media Video"},"encoding":"base64","extensions":["wmv"],"registered":false},{"content-type":"video/x-ms-wmx","friendly":{"en":"Microsoft Windows Media Audio/Video Playlist"},"encoding":"base64","extensions":["wmx"],"registered":false},{"content-type":"video/x-ms-wvx","friendly":{"en":"Microsoft Windows Media Video Playlist"},"encoding":"base64","extensions":["wvx"],"registered":false},{"content-type":"video/x-msvideo","friendly":{"en":"Audio Video Interleave (AVI)"},"encoding":"base64","extensions":["avi"],"registered":false},{"content-type":"video/x-sgi-movie","friendly":{"en":"SGI Movie"},"encoding":"base64","extensions":["movie"],"registered":false},{"content-type":"video/x-smv","encoding":"base64","extensions":["smv"],"registered":false},{"content-type":"x-chemical/x-pdb","encoding":"base64","extensions":["pdb"],"registered":false},{"content-type":"x-chemical/x-xyz","encoding":"base64","extensions":["xyz"],"registered":false},{"content-type":"x-conference/x-cooltalk","friendly":{"en":"CoolTalk"},"encoding":"base64","extensions":["ice"],"registered":false},{"content-type":"x-drawing/dwf","encoding":"base64","extensions":["dwf"],"registered":false},{"content-type":"x-world/x-vrml","encoding":"base64","extensions":["wrl","vrml"],"registered":false}]
diff --git a/data/mime.content_type.column b/data/mime.content_type.column
deleted file mode 100644
index a943776..0000000
--- a/data/mime.content_type.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-application/1d-interleaved-parityfec
-application/3gpdash-qoe-report+xml
-application/3gpp-ims+xml
-application/A2L
-application/acad
-application/access mdf mda mdb mde
-application/activemessage
-application/alto-costmap+json
-application/alto-costmapfilter+json
-application/alto-directory+json
-application/alto-endpointcost+json
-application/alto-endpointcostparams+json
-application/alto-endpointprop+json
-application/alto-endpointpropparams+json
-application/alto-error+json
-application/alto-networkmap+json
-application/alto-networkmapfilter+json
-application/AML
-application/andrew-inset ez
-application/appledouble
-application/applefile
-application/applixware aw
-application/ATF
-application/ATFX
-application/atom+xml atom
-application/atomcat+xml atomcat
-application/atomdeleted+xml
-application/atomicmail
-application/atomsvc+xml atomsvc
-application/ATXML
-application/auth-policy+xml
-application/bacnet-xdd+zip
-application/batch-SMTP
-application/beep+xml
-application/bleeper bleep
-application/calendar+json
-application/calendar+xml
-application/call-completion
-application/cals-1840
-application/cals1840
-application/cbor
-application/ccmp+xml
-application/ccxml+xml ccxml
-application/CDFX+XML
-application/cdmi-capability cdmia
-application/cdmi-container cdmic
-application/cdmi-domain cdmid
-application/cdmi-object cdmio
-application/cdmi-queue cdmiq
-application/CEA
-application/cea-2018+xml
-application/cellml+xml
-application/cfw
-application/clariscad
-application/cms
-application/cnrp+xml
-application/coap-group+json
-application/commonground
-application/conference-info+xml
-application/cpl+xml
-application/csrattrs
-application/csta+xml
-application/CSTAdata+xml
-application/cu-seeme cu
-application/cybercash
-application/dash+xml
-application/dashdelta
-application/davmount+xml davmount
-application/dca-rft
-application/DCD
-application/dec-dx
-application/dialog-info+xml
-application/dicom dcm
-application/DII
-application/DIT
-application/dns
-application/docbook+xml dbk
-application/drafting
-application/dskpp+xml
-application/dssc+der dssc
-application/dssc+xml xdssc
-application/dvcs
-application/dxf
-application/ecmascript ecma
-application/EDI-consent
-application/EDI-X12
-application/EDIFACT
-application/emma+xml emma
-application/emotionml+xml
-application/encaprtp
-application/epp+xml
-application/epub+zip epub
-application/eshop
-application/example
-application/excel xls xlt
-application/exi exi
-application/fastinfoset
-application/fastsoap
-application/fdt+xml
-application/fits
-application/font-sfnt otf ttf
-application/font-tdpfr pfr
-application/font-woff woff woff2
-application/fractals
-application/framework-attributes+xml
-application/futuresplash spl
-application/ghostview
-application/gml+xml gml
-application/gpx+xml gpx
-application/gxf gxf
-application/gzip gz
-application/H224
-application/held+xml
-application/hep hep
-application/http
-application/hyperstudio stk
-application/i-deas
-application/ibe-key-request+xml
-application/ibe-pkg-reply+xml
-application/ibe-pp-data
-application/iges
-application/im-iscomposing+xml
-application/imagemap imagemap imap
-application/index
-application/index.cmd
-application/index.obj
-application/index.response
-application/index.vnd
-application/inkml+xml ink inkml
-application/iotp
-application/ipfix ipfix
-application/ipp
-application/isup
-application/its+xml
-application/java-archive jar
-application/java-serialized-object ser
-application/java-vm class
-application/javascript js sj
-application/jose
-application/jose+json
-application/jrd+json
-application/json json
-application/json-patch+json
-application/json-seq
-application/jsonml+json jsonml
-application/jwk+json
-application/jwk-set+json
-application/jwt
-application/kpml-request+xml
-application/kpml-response+xml
-application/ld+json
-application/link-format
-application/load-control+xml
-application/lost+xml lostxml
-application/lostsync+xml
-application/lotus-123 wks
-application/LXF
-application/mac-binhex40 hqx
-application/mac-compactpro cpt
-application/macbinary
-application/macwriteii
-application/mads+xml mads
-application/marc mrc
-application/marcxml+xml mrcx
-application/mathcad mcd
-application/mathematica ma mb nb
-application/mathematica-old
-application/mathml+xml mathml
-application/mathml-content+xml
-application/mathml-presentation+xml
-application/mbms-associated-procedure-description+xml
-application/mbms-deregister+xml
-application/mbms-envelope+xml
-application/mbms-msk+xml
-application/mbms-msk-response+xml
-application/mbms-protection-description+xml
-application/mbms-reception-report+xml
-application/mbms-register+xml
-application/mbms-register-response+xml
-application/mbms-schedule+xml
-application/mbms-user-service-description+xml
-application/mbox mbox
-application/media-policy-dataset+xml
-application/media_control+xml
-application/mediaservercontrol+xml mscml
-application/merge-patch+json
-application/metalink+xml metalink
-application/metalink4+xml meta4
-application/mets+xml mets
-application/MF4
-application/mikey
-application/mods+xml mods
-application/moss-keys
-application/moss-signature
-application/mosskey-data
-application/mosskey-request
-application/mp21 m21 mp21
-application/mp4 mp4 mpg4 mp4s
-application/mpeg4-generic
-application/mpeg4-iod
-application/mpeg4-iod-xmt
-application/mrb-consumer+xml
-application/mrb-publish+xml
-application/msc-ivr+xml
-application/msc-mixer+xml
-application/msword doc dot wrd
-application/mxf mxf
-application/nasdata
-application/netcdf nc cdf
-application/news-checkgroups
-application/news-groupinfo
-application/news-message-id
-application/news-transmission
-application/nlsml+xml
-application/nss
-application/ocsp-request
-application/ocsp-response
-application/octet-stream bin dms lha lzh exe class ani pgp so dll dylib bpk deploy dist distz dump elc lrf mar pkg
-application/oda oda
-application/ODX
-application/oebps-package+xml opf
-application/ogg ogx
-application/omdoc+xml omdoc
-application/onenote onepkg onetmp onetoc onetoc2
-application/oxps oxps
-application/p2p-overlay+xml
-application/parityfec
-application/patch-ops-error+xml xer
-application/pdf pdf
-application/PDX
-application/pgp-encrypted pgp
-application/pgp-keys
-application/pgp-signature asc sig
-application/pics-rules prf
-application/pidf+xml
-application/pidf-diff+xml
-application/pkcs10 p10
-application/pkcs12
-application/pkcs7-mime p7m p7c
-application/pkcs7-signature p7s
-application/pkcs8 p8
-application/pkix-attr-cert ac
-application/pkix-cert cer
-application/pkix-crl crl
-application/pkix-pkipath pkipath
-application/pkixcmp pki
-application/pls+xml pls
-application/poc-settings+xml
-application/postscript ai eps ps
-application/powerpoint ppt pps pot
-application/pro_eng
-application/provenance+xml
-application/prs.alvestrand.titrax-sheet
-application/prs.cww cw cww
-application/prs.hpub+zip
-application/prs.nprend rnd rct
-application/prs.plucker
-application/prs.rdf-xml-crypt
-application/prs.xsf+xml
-application/pskc+xml pskcxml
-application/qsig
-application/quicktimeplayer qtl
-application/raptorfec
-application/rdap+json
-application/rdf+xml rdf
-application/reginfo+xml rif
-application/relax-ng-compact-syntax rnc
-application/remote-printing
-application/remote_printing
-application/reputon+json
-application/resource-lists+xml rl
-application/resource-lists-diff+xml rld
-application/riscos
-application/rlmi+xml
-application/rls-services+xml rs
-application/rpki-ghostbusters gbr
-application/rpki-manifest mft
-application/rpki-roa roa
-application/rpki-updown
-application/rsd+xml rsd
-application/rss+xml rss
-application/rtf rtf
-application/rtploopback
-application/rtx
-application/samlassertion+xml
-application/samlmetadata+xml
-application/sbml+xml sbml
-application/scaip+xml
-application/scim+json
-application/scvp-cv-request scq
-application/scvp-cv-response scs
-application/scvp-vp-request spq
-application/scvp-vp-response spp
-application/sdp sdp
-application/sep+xml
-application/sep-exi
-application/session-info
-application/set
-application/set-payment
-application/set-payment-initiation setpay
-application/set-registration
-application/set-registration-initiation setreg
-application/sgml sgml
-application/sgml-open-catalog soc
-application/shf+xml shf
-application/sieve siv
-application/simple-filter+xml
-application/simple-message-summary
-application/simpleSymbolContainer
-application/SLA
-application/slate
-application/smil smi smil
-application/smil+xml smi smil
-application/smpte336m
-application/soap+fastinfoset
-application/soap+xml
-application/solids
-application/sparql-query rq
-application/sparql-results+xml srx
-application/spirits-event+xml
-application/sql
-application/srgs gram
-application/srgs+xml grxml
-application/sru+xml sru
-application/ssdl+xml ssdl
-application/ssml+xml ssml
-application/STEP
-application/tamp-apex-update
-application/tamp-apex-update-confirm
-application/tamp-community-update
-application/tamp-community-update-confirm
-application/tamp-error
-application/tamp-sequence-adjust
-application/tamp-sequence-adjust-confirm
-application/tamp-status-query
-application/tamp-status-response
-application/tamp-update
-application/tamp-update-confirm
-application/tei+xml tei teicorpus
-application/thraud+xml tfi
-application/timestamp-query
-application/timestamp-reply
-application/timestamped-data tsd
-application/toolbook tbk
-application/ttml+xml
-application/tve-trigger
-application/ulpfec
-application/urc-grpsheet+xml
-application/urc-ressheet+xml
-application/urc-targetdesc+xml
-application/urc-uisocketdesc+xml
-application/vcard+json
-application/vcard+xml
-application/vda
-application/vemmi
-application/VMSBACKUP bck
-application/vnd.3gpp-prose+xml
-application/vnd.3gpp-prose-pc3ch+xml
-application/vnd.3gpp.bsf+xml
-application/vnd.3gpp.mid-call+xml
-application/vnd.3gpp.pic-bw-large plb
-application/vnd.3gpp.pic-bw-small psb
-application/vnd.3gpp.pic-bw-var pvb
-application/vnd.3gpp.sms sms
-application/vnd.3gpp.state-and-event-info+xml
-application/vnd.3gpp.ussd+xml
-application/vnd.3gpp2.bcmcsinfo+xml
-application/vnd.3gpp2.sms
-application/vnd.3gpp2.tcap tcap
-application/vnd.3M.Post-it-Notes pwn
-application/vnd.accpac.simply.aso aso
-application/vnd.accpac.simply.imp imp
-application/vnd.acucobol acu
-application/vnd.acucorp atc acutc
-application/vnd.adobe.air-application-installer-package+zip air
-application/vnd.adobe.flash.movie
-application/vnd.adobe.formscentral.fcdt fcdt
-application/vnd.adobe.fxp fxp fxpl
-application/vnd.adobe.partial-upload
-application/vnd.adobe.xdp+xml xdp
-application/vnd.adobe.xfdf xfdf
-application/vnd.aether.imp
-application/vnd.ah-barcode
-application/vnd.ahead.space ahead
-application/vnd.airzip.filesecure.azf azf
-application/vnd.airzip.filesecure.azs azs
-application/vnd.amazon.ebook azw
-application/vnd.americandynamics.acc acc
-application/vnd.amiga.ami ami
-application/vnd.amundsen.maze+xml
-application/vnd.android.package-archive apk
-application/vnd.anki
-application/vnd.anser-web-certificate-issue-initiation cii
-application/vnd.anser-web-funds-transfer-initiation fti
-application/vnd.antix.game-component atx
-application/vnd.apache.thrift.binary
-application/vnd.apache.thrift.compact
-application/vnd.apache.thrift.json
-application/vnd.api+json
-application/vnd.apple.installer+xml mpkg
-application/vnd.apple.mpegurl m3u8
-application/vnd.apple.pkpass pkpass
-application/vnd.arastra.swi
-application/vnd.aristanetworks.swi swi
-application/vnd.artsquare
-application/vnd.astraea-software.iota iota
-application/vnd.audiograph aep
-application/vnd.autopackage
-application/vnd.avistar+xml
-application/vnd.balsamiq.bmml+xml
-application/vnd.balsamiq.bmpr
-application/vnd.bekitzur-stech+json
-application/vnd.biopax.rdf+xml
-application/vnd.blueice.multipass mpm
-application/vnd.bluetooth.ep.oob
-application/vnd.bluetooth.le.oob
-application/vnd.bmi bmi
-application/vnd.businessobjects rep
-application/vnd.cab-jscript
-application/vnd.canon-cpdl
-application/vnd.canon-lips
-application/vnd.cendio.thinlinc.clientconf
-application/vnd.century-systems.tcp_stream
-application/vnd.chemdraw+xml cdxml
-application/vnd.chipnuts.karaoke-mmd mmd
-application/vnd.cinderella cdy
-application/vnd.cirpack.isdn-ext
-application/vnd.citationstyles.style+xml
-application/vnd.claymore cla
-application/vnd.cloanto.rp9 rp9
-application/vnd.clonk.c4group c4d c4f c4g c4p c4u
-application/vnd.cluetrust.cartomobile-config c11amc
-application/vnd.cluetrust.cartomobile-config-pkg c11amz
-application/vnd.coffeescript
-application/vnd.collection+json
-application/vnd.collection.doc+json
-application/vnd.collection.next+json
-application/vnd.commerce-battelle
-application/vnd.commonspace csp
-application/vnd.contact.cmsg cdbcmsg
-application/vnd.cosmocaller cmc
-application/vnd.crick.clicker clkx
-application/vnd.crick.clicker.keyboard clkk
-application/vnd.crick.clicker.palette clkp
-application/vnd.crick.clicker.template clkt
-application/vnd.crick.clicker.wordbank clkw
-application/vnd.criticaltools.wbs+xml wbs
-application/vnd.ctc-posml pml
-application/vnd.ctct.ws+xml
-application/vnd.cups-pdf
-application/vnd.cups-postscript
-application/vnd.cups-ppd ppd
-application/vnd.cups-raster
-application/vnd.cups-raw
-application/vnd.curl curl
-application/vnd.curl.car car
-application/vnd.curl.pcurl pcurl
-application/vnd.cyan.dean.root+xml
-application/vnd.cybank
-application/vnd.dart dart
-application/vnd.data-vision.rdz rdz
-application/vnd.debian.binary-package
-application/vnd.dece.data uvd uvf uvvd uvvf
-application/vnd.dece.ttml+xml uvt uvvt
-application/vnd.dece.unspecified uvvx uvx
-application/vnd.dece.zip uvvz uvz
-application/vnd.denovo.fcselayout-link fe_launch
-application/vnd.desmume.movie
-application/vnd.dir-bi.plate-dl-nosuffix
-application/vnd.dm.delegation+xml
-application/vnd.dna dna
-application/vnd.document+json
-application/vnd.dolby.mlp mlp
-application/vnd.dolby.mobile.1
-application/vnd.dolby.mobile.2
-application/vnd.doremir.scorecloud-binary-document
-application/vnd.dpgraph dpg
-application/vnd.dreamfactory dfac
-application/vnd.drive+json
-application/vnd.ds-keypoint kpxx
-application/vnd.dtg.local
-application/vnd.dtg.local.flash
-application/vnd.dtg.local.html
-application/vnd.dvb.ait ait
-application/vnd.dvb.dvbj
-application/vnd.dvb.esgcontainer
-application/vnd.dvb.ipdcdftnotifaccess
-application/vnd.dvb.ipdcesgaccess
-application/vnd.dvb.ipdcesgaccess2
-application/vnd.dvb.ipdcesgpdd
-application/vnd.dvb.ipdcroaming
-application/vnd.dvb.iptv.alfec-base
-application/vnd.dvb.iptv.alfec-enhancement
-application/vnd.dvb.notif-aggregate-root+xml
-application/vnd.dvb.notif-container+xml
-application/vnd.dvb.notif-generic+xml
-application/vnd.dvb.notif-ia-msglist+xml
-application/vnd.dvb.notif-ia-registration-request+xml
-application/vnd.dvb.notif-ia-registration-response+xml
-application/vnd.dvb.notif-init+xml
-application/vnd.dvb.pfr
-application/vnd.dvb.service svc
-application/vnd.dxr
-application/vnd.dynageo geo
-application/vnd.dzr
-application/vnd.easykaraoke.cdgdownload
-application/vnd.ecdis-update
-application/vnd.ecowin.chart mag
-application/vnd.ecowin.filerequest
-application/vnd.ecowin.fileupdate
-application/vnd.ecowin.series
-application/vnd.ecowin.seriesrequest
-application/vnd.ecowin.seriesupdate
-application/vnd.emclient.accessrequest+xml
-application/vnd.enliven nml
-application/vnd.enphase.envoy
-application/vnd.eprints.data+xml
-application/vnd.epson.esf esf
-application/vnd.epson.msf msf
-application/vnd.epson.quickanime qam
-application/vnd.epson.salt slt
-application/vnd.epson.ssf ssf
-application/vnd.ericsson.quickcall
-application/vnd.eszigno3+xml es3 et3
-application/vnd.etsi.aoc+xml
-application/vnd.etsi.asic-e+zip
-application/vnd.etsi.asic-s+zip
-application/vnd.etsi.cug+xml
-application/vnd.etsi.iptvcommand+xml
-application/vnd.etsi.iptvdiscovery+xml
-application/vnd.etsi.iptvprofile+xml
-application/vnd.etsi.iptvsad-bc+xml
-application/vnd.etsi.iptvsad-cod+xml
-application/vnd.etsi.iptvsad-npvr+xml
-application/vnd.etsi.iptvservice+xml
-application/vnd.etsi.iptvsync+xml
-application/vnd.etsi.iptvueprofile+xml
-application/vnd.etsi.mcid+xml
-application/vnd.etsi.mheg5
-application/vnd.etsi.overload-control-policy-dataset+xml
-application/vnd.etsi.pstn+xml
-application/vnd.etsi.sci+xml
-application/vnd.etsi.simservs+xml
-application/vnd.etsi.timestamp-token
-application/vnd.etsi.tsl+xml
-application/vnd.etsi.tsl.der
-application/vnd.eudora.data
-application/vnd.ezpix-album ez2
-application/vnd.ezpix-package ez3
-application/vnd.f-secure.mobile
-application/vnd.fastcopy-disk-image
-application/vnd.fdf fdf
-application/vnd.fdsn.mseed mseed
-application/vnd.fdsn.seed dataless seed
-application/vnd.ffsns
-application/vnd.fints
-application/vnd.firemonkeys.cloudcell
-application/vnd.FloGraphIt gph
-application/vnd.fluxtime.clip ftc
-application/vnd.font-fontforge-sfd
-application/vnd.framemaker frm maker frame fm fb book fbdoc
-application/vnd.frogans.fnc fnc
-application/vnd.frogans.ltf ltf
-application/vnd.fsc.weblaunch fsc
-application/vnd.fujitsu.oasys oas
-application/vnd.fujitsu.oasys2 oa2
-application/vnd.fujitsu.oasys3 oa3
-application/vnd.fujitsu.oasysgp fg5
-application/vnd.fujitsu.oasysprs bh2
-application/vnd.fujixerox.ART-EX
-application/vnd.fujixerox.ART4
-application/vnd.fujixerox.ddd ddd
-application/vnd.fujixerox.docuworks xdw
-application/vnd.fujixerox.docuworks.binder xbd
-application/vnd.fujixerox.docuworks.container
-application/vnd.fujixerox.HBPL
-application/vnd.fut-misnet
-application/vnd.fuzzysheet fzs
-application/vnd.genomatix.tuxedo txd
-application/vnd.geo+json
-application/vnd.geocube+xml
-application/vnd.geogebra.file ggb
-application/vnd.geogebra.tool ggt
-application/vnd.geometry-explorer gex gre
-application/vnd.geonext gxt
-application/vnd.geoplan g2w
-application/vnd.geospace g3w
-application/vnd.gerber
-application/vnd.globalplatform.card-content-mgt
-application/vnd.globalplatform.card-content-mgt-response
-application/vnd.gmx gmx
-application/vnd.google-earth.kml+xml kml
-application/vnd.google-earth.kmz kmz
-application/vnd.gov.sk.e-form+xml
-application/vnd.gov.sk.e-form+zip
-application/vnd.gov.sk.xmldatacontainer+xml
-application/vnd.grafeq gqf gqs
-application/vnd.gridmp
-application/vnd.groove-account gac
-application/vnd.groove-help ghf
-application/vnd.groove-identity-message gim
-application/vnd.groove-injector grv
-application/vnd.groove-tool-message gtm
-application/vnd.groove-tool-template tpl
-application/vnd.groove-vcard vcg
-application/vnd.hal+json
-application/vnd.hal+xml hal
-application/vnd.HandHeld-Entertainment+xml zmm
-application/vnd.hbci hbci hbc kom upa pkd bpd
-application/vnd.hcl-bireports
-application/vnd.heroku+json
-application/vnd.hhe.lesson-player les
-application/vnd.hp-HPGL plt hpgl
-application/vnd.hp-hpid hpid
-application/vnd.hp-hps hps
-application/vnd.hp-jlyt jlt
-application/vnd.hp-PCL pcl
-application/vnd.hp-PCLXL pclxl
-application/vnd.httphone
-application/vnd.hydrostatix.sof-data sfd-hdstx
-application/vnd.hyperdrive+json
-application/vnd.hzn-3d-crossword
-application/vnd.ibm.afplinedata
-application/vnd.ibm.electronic-media emm
-application/vnd.ibm.MiniPay mpy
-application/vnd.ibm.modcap afp list3820 listafp
-application/vnd.ibm.rights-management irm
-application/vnd.ibm.secure-container sc
-application/vnd.iccprofile icc icm
-application/vnd.ieee.1905
-application/vnd.igloader igl
-application/vnd.immervision-ivp ivp
-application/vnd.immervision-ivu ivu
-application/vnd.ims.imsccv1p1
-application/vnd.ims.imsccv1p2
-application/vnd.ims.imsccv1p3
-application/vnd.ims.lis.v2.result+json
-application/vnd.ims.lti.v2.toolconsumerprofile+json
-application/vnd.ims.lti.v2.toolproxy+json
-application/vnd.ims.lti.v2.toolproxy.id+json
-application/vnd.ims.lti.v2.toolsettings+json
-application/vnd.ims.lti.v2.toolsettings.simple+json
-application/vnd.informedcontrol.rms+xml
-application/vnd.informix-visionary
-application/vnd.infotech.project
-application/vnd.infotech.project+xml
-application/vnd.innopath.wamp.notification
-application/vnd.insors.igm igm
-application/vnd.intercon.formnet xpw xpx
-application/vnd.intergeo i2g
-application/vnd.intertrust.digibox
-application/vnd.intertrust.nncp
-application/vnd.intu.qbo qbo
-application/vnd.intu.qfx qfx
-application/vnd.iptc.g2.catalogitem+xml
-application/vnd.iptc.g2.conceptitem+xml
-application/vnd.iptc.g2.knowledgeitem+xml
-application/vnd.iptc.g2.newsitem+xml
-application/vnd.iptc.g2.newsmessage+xml
-application/vnd.iptc.g2.packageitem+xml
-application/vnd.iptc.g2.planningitem+xml
-application/vnd.ipunplugged.rcprofile rcprofile
-application/vnd.irepository.package+xml irp
-application/vnd.is-xpr xpr
-application/vnd.isac.fcs fcs
-application/vnd.jam jam
-application/vnd.japannet-directory-service
-application/vnd.japannet-jpnstore-wakeup
-application/vnd.japannet-payment-wakeup
-application/vnd.japannet-registration
-application/vnd.japannet-registration-wakeup
-application/vnd.japannet-setstore-wakeup
-application/vnd.japannet-verification
-application/vnd.japannet-verification-wakeup
-application/vnd.jcp.javame.midlet-rms rms
-application/vnd.jisp jisp
-application/vnd.joost.joda-archive joda
-application/vnd.jsk.isdn-ngn
-application/vnd.kahootz ktr ktz
-application/vnd.kde.karbon karbon
-application/vnd.kde.kchart chrt
-application/vnd.kde.kformula kfo
-application/vnd.kde.kivio flw
-application/vnd.kde.kontour kon
-application/vnd.kde.kpresenter kpr kpt
-application/vnd.kde.kspread ksp
-application/vnd.kde.kword kwd kwt
-application/vnd.kenameaapp htke
-application/vnd.kidspiration kia
-application/vnd.Kinar kne knp sdf
-application/vnd.koan skd skm skp skt
-application/vnd.kodak-descriptor sse
-application/vnd.las.las+xml lasxml
-application/vnd.liberty-request+xml
-application/vnd.llamagraphics.life-balance.desktop lbd
-application/vnd.llamagraphics.life-balance.exchange+xml lbe
-application/vnd.lotus-1-2-3 wks 123
-application/vnd.lotus-approach apr
-application/vnd.lotus-freelance pre
-application/vnd.lotus-notes nsf
-application/vnd.lotus-organizer org
-application/vnd.lotus-screencam scm
-application/vnd.lotus-wordpro lwp
-application/vnd.macports.portpkg portpkg
-application/vnd.marlin.drm.actiontoken+xml
-application/vnd.marlin.drm.conftoken+xml
-application/vnd.marlin.drm.license+xml
-application/vnd.marlin.drm.mdcf
-application/vnd.mason+json
-application/vnd.maxmind.maxmind-db
-application/vnd.mcd mcd
-application/vnd.medcalcdata mc1
-application/vnd.mediastation.cdkey cdkey
-application/vnd.meridian-slingshot
-application/vnd.MFER mwf
-application/vnd.mfmp mfm
-application/vnd.micro+json
-application/vnd.micrografx.flo flo
-application/vnd.micrografx.igx igx
-application/vnd.microsoft.portable-executable
-application/vnd.miele+json
-application/vnd.mif mif
-application/vnd.minisoft-hp3000-save
-application/vnd.mitsubishi.misty-guard.trustweb
-application/vnd.Mobius.DAF daf
-application/vnd.Mobius.DIS dis
-application/vnd.Mobius.MBK mbk
-application/vnd.Mobius.MQY mqy
-application/vnd.Mobius.MSL msl
-application/vnd.Mobius.PLC plc
-application/vnd.Mobius.TXF txf
-application/vnd.mophun.application mpn
-application/vnd.mophun.certificate mpc
-application/vnd.motorola.flexsuite
-application/vnd.motorola.flexsuite.adsi
-application/vnd.motorola.flexsuite.fis
-application/vnd.motorola.flexsuite.gotap
-application/vnd.motorola.flexsuite.kmr
-application/vnd.motorola.flexsuite.ttc
-application/vnd.motorola.flexsuite.wem
-application/vnd.motorola.iprm
-application/vnd.mozilla.xul+xml xul
-application/vnd.ms-3mfdocument
-application/vnd.ms-artgalry cil
-application/vnd.ms-asf asf
-application/vnd.ms-cab-compressed cab
-application/vnd.ms-excel xls xlt xla xlc xlm xlw
-application/vnd.ms-excel.addin.macroEnabled.12 xlam
-application/vnd.ms-excel.sheet.binary.macroEnabled.12 xlsb
-application/vnd.ms-excel.sheet.macroEnabled.12 xlsm
-application/vnd.ms-excel.template.macroEnabled.12 xltm
-application/vnd.ms-fontobject eot
-application/vnd.ms-htmlhelp chm
-application/vnd.ms-ims ims
-application/vnd.ms-lrm lrm
-application/vnd.ms-office.activeX+xml
-application/vnd.ms-officetheme thmx
-application/vnd.ms-outlook msg
-application/vnd.ms-pki.seccat cat
-application/vnd.ms-pki.stl stl
-application/vnd.ms-playready.initiator+xml
-application/vnd.ms-powerpoint ppt pps pot
-application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam
-application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm
-application/vnd.ms-powerpoint.slide.macroEnabled.12 sldm
-application/vnd.ms-powerpoint.slideshow.macroEnabled.12 ppsm
-application/vnd.ms-powerpoint.template.macroEnabled.12 potm
-application/vnd.ms-project mpp mpt
-application/vnd.ms-tnef
-application/vnd.ms-windows.printerpairing
-application/vnd.ms-wmdrm.lic-chlg-req
-application/vnd.ms-wmdrm.lic-resp
-application/vnd.ms-wmdrm.meter-chlg-req
-application/vnd.ms-wmdrm.meter-resp
-application/vnd.ms-word.document.macroEnabled.12 docm
-application/vnd.ms-word.template.macroEnabled.12 dotm
-application/vnd.ms-works wcm wdb wks wps
-application/vnd.ms-wpl wpl
-application/vnd.ms-xpsdocument xps
-application/vnd.msa-disk-image
-application/vnd.mseq mseq
-application/vnd.msign
-application/vnd.multiad.creator
-application/vnd.multiad.creator.cif
-application/vnd.music-niff
-application/vnd.musician mus
-application/vnd.muvee.style msty
-application/vnd.mynfc taglet
-application/vnd.ncd.control
-application/vnd.ncd.reference
-application/vnd.nervana ent entity req request bkm kcm
-application/vnd.netfpx
-application/vnd.neurolanguage.nlu nlu
-application/vnd.nintendo.nitro.rom
-application/vnd.nintendo.snes.rom
-application/vnd.nitf nitf ntf
-application/vnd.noblenet-directory nnd
-application/vnd.noblenet-sealer nns
-application/vnd.noblenet-web nnw
-application/vnd.nokia.catalogs
-application/vnd.nokia.conml+wbxml
-application/vnd.nokia.conml+xml
-application/vnd.nokia.iptv.config+xml
-application/vnd.nokia.iSDS-radio-presets
-application/vnd.nokia.landmark+wbxml
-application/vnd.nokia.landmark+xml
-application/vnd.nokia.landmarkcollection+xml
-application/vnd.nokia.n-gage.ac+xml
-application/vnd.nokia.n-gage.data ngdat
-application/vnd.nokia.n-gage.symbian.install n-gage
-application/vnd.nokia.ncd
-application/vnd.nokia.ncd+xml
-application/vnd.nokia.pcd+wbxml
-application/vnd.nokia.pcd+xml
-application/vnd.nokia.radio-preset rpst
-application/vnd.nokia.radio-presets rpss
-application/vnd.novadigm.EDM edm
-application/vnd.novadigm.EDX edx
-application/vnd.novadigm.EXT ext
-application/vnd.ntt-local.content-share
-application/vnd.ntt-local.file-transfer
-application/vnd.ntt-local.ogw_remote-access
-application/vnd.ntt-local.sip-ta_remote
-application/vnd.ntt-local.sip-ta_tcp_stream
-application/vnd.oasis.opendocument.chart odc
-application/vnd.oasis.opendocument.chart-template odc otc
-application/vnd.oasis.opendocument.database odb
-application/vnd.oasis.opendocument.formula odf
-application/vnd.oasis.opendocument.formula-template odf odft
-application/vnd.oasis.opendocument.graphics odg
-application/vnd.oasis.opendocument.graphics-template otg
-application/vnd.oasis.opendocument.image odi
-application/vnd.oasis.opendocument.image-template odi oti
-application/vnd.oasis.opendocument.presentation odp
-application/vnd.oasis.opendocument.presentation-template otp
-application/vnd.oasis.opendocument.spreadsheet ods
-application/vnd.oasis.opendocument.spreadsheet-template ots
-application/vnd.oasis.opendocument.text odt
-application/vnd.oasis.opendocument.text-master odm
-application/vnd.oasis.opendocument.text-template ott
-application/vnd.oasis.opendocument.text-web oth
-application/vnd.obn
-application/vnd.oftn.l10n+json
-application/vnd.oipf.contentaccessdownload+xml
-application/vnd.oipf.contentaccessstreaming+xml
-application/vnd.oipf.cspg-hexbinary
-application/vnd.oipf.dae.svg+xml
-application/vnd.oipf.dae.xhtml+xml
-application/vnd.oipf.mippvcontrolmessage+xml
-application/vnd.oipf.pae.gem
-application/vnd.oipf.spdiscovery+xml
-application/vnd.oipf.spdlist+xml
-application/vnd.oipf.ueprofile+xml
-application/vnd.oipf.userprofile+xml
-application/vnd.olpc-sugar xo
-application/vnd.oma-scws-config
-application/vnd.oma-scws-http-request
-application/vnd.oma-scws-http-response
-application/vnd.oma.bcast.associated-procedure-parameter+xml
-application/vnd.oma.bcast.drm-trigger+xml
-application/vnd.oma.bcast.imd+xml
-application/vnd.oma.bcast.ltkm
-application/vnd.oma.bcast.notification+xml
-application/vnd.oma.bcast.provisioningtrigger
-application/vnd.oma.bcast.sgboot
-application/vnd.oma.bcast.sgdd+xml
-application/vnd.oma.bcast.sgdu
-application/vnd.oma.bcast.simple-symbol-container
-application/vnd.oma.bcast.smartcard-trigger+xml
-application/vnd.oma.bcast.sprov+xml
-application/vnd.oma.bcast.stkm
-application/vnd.oma.cab-address-book+xml
-application/vnd.oma.cab-feature-handler+xml
-application/vnd.oma.cab-pcc+xml
-application/vnd.oma.cab-subs-invite+xml
-application/vnd.oma.cab-user-prefs+xml
-application/vnd.oma.dcd
-application/vnd.oma.dcdc
-application/vnd.oma.dd2+xml dd2
-application/vnd.oma.drm.risd+xml
-application/vnd.oma.group-usage-list+xml
-application/vnd.oma.pal+xml
-application/vnd.oma.poc.detailed-progress-report+xml
-application/vnd.oma.poc.final-report+xml
-application/vnd.oma.poc.groups+xml
-application/vnd.oma.poc.invocation-descriptor+xml
-application/vnd.oma.poc.optimized-progress-report+xml
-application/vnd.oma.push
-application/vnd.oma.scidm.messages+xml
-application/vnd.oma.xcap-directory+xml
-application/vnd.omads-email+xml
-application/vnd.omads-file+xml
-application/vnd.omads-folder+xml
-application/vnd.omaloc-supl-init
-application/vnd.openblox.game+xml
-application/vnd.openblox.game-binary
-application/vnd.openeye.oeb
-application/vnd.openofficeorg.extension oxt
-application/vnd.openxmlformats-officedocument.custom-properties+xml
-application/vnd.openxmlformats-officedocument.customXmlProperties+xml
-application/vnd.openxmlformats-officedocument.drawing+xml
-application/vnd.openxmlformats-officedocument.drawingml.chart+xml
-application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
-application/vnd.openxmlformats-officedocument.extended-properties+xml
-application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
-application/vnd.openxmlformats-officedocument.presentationml.comments+xml
-application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
-application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
-application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
-application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
-application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
-application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
-application/vnd.openxmlformats-officedocument.presentationml.slide sldx
-application/vnd.openxmlformats-officedocument.presentationml.slide+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
-application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
-application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
-application/vnd.openxmlformats-officedocument.presentationml.tags+xml
-application/vnd.openxmlformats-officedocument.presentationml.template potx
-application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
-application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
-application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
-application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
-application/vnd.openxmlformats-officedocument.theme+xml
-application/vnd.openxmlformats-officedocument.themeOverride+xml
-application/vnd.openxmlformats-officedocument.vmlDrawing
-application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
-application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
-application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
-application/vnd.openxmlformats-package.core-properties+xml
-application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
-application/vnd.openxmlformats-package.relationships+xml
-application/vnd.oracle.resource+json
-application/vnd.orange.indata
-application/vnd.osa.netdeploy
-application/vnd.osgeo.mapguide.package mgp
-application/vnd.osgi.bundle
-application/vnd.osgi.dp dp
-application/vnd.osgi.subsystem esa
-application/vnd.otps.ct-kip+xml
-application/vnd.palm prc pdb pqa oprc
-application/vnd.panoply
-application/vnd.paos.xml
-application/vnd.pawaafile paw
-application/vnd.pcos
-application/vnd.pg.format str
-application/vnd.pg.osasli ei6
-application/vnd.piaccess.application-licence
-application/vnd.picsel efif
-application/vnd.pmi.widget wg
-application/vnd.poc.group-advertisement+xml
-application/vnd.pocketlearn plf
-application/vnd.powerbuilder6 pbd
-application/vnd.powerbuilder6-s
-application/vnd.powerbuilder7
-application/vnd.powerbuilder7-s
-application/vnd.powerbuilder75
-application/vnd.powerbuilder75-s
-application/vnd.preminet
-application/vnd.previewsystems.box box
-application/vnd.proteus.magazine mgz
-application/vnd.publishare-delta-tree qps
-application/vnd.pvi.ptid1 pti ptid
-application/vnd.pwg-multiplexed
-application/vnd.pwg-xhtml-print+xml
-application/vnd.qualcomm.brew-app-res
-application/vnd.Quark.QuarkXPress qxd qxt qwd qwt qxl qxb
-application/vnd.quobject-quoxdocument
-application/vnd.radisys.moml+xml
-application/vnd.radisys.msml+xml
-application/vnd.radisys.msml-audit+xml
-application/vnd.radisys.msml-audit-conf+xml
-application/vnd.radisys.msml-audit-conn+xml
-application/vnd.radisys.msml-audit-dialog+xml
-application/vnd.radisys.msml-audit-stream+xml
-application/vnd.radisys.msml-conf+xml
-application/vnd.radisys.msml-dialog+xml
-application/vnd.radisys.msml-dialog-base+xml
-application/vnd.radisys.msml-dialog-fax-detect+xml
-application/vnd.radisys.msml-dialog-fax-sendrecv+xml
-application/vnd.radisys.msml-dialog-group+xml
-application/vnd.radisys.msml-dialog-speech+xml
-application/vnd.radisys.msml-dialog-transform+xml
-application/vnd.rainstor.data
-application/vnd.rapid
-application/vnd.realvnc.bed bed
-application/vnd.recordare.musicxml mxl
-application/vnd.recordare.musicxml+xml musicxml
-application/vnd.RenLearn.rlprint
-application/vnd.rig.cryptonote cryptonote
-application/vnd.rim.cod cod
-application/vnd.rn-realmedia rm
-application/vnd.rn-realmedia-vbr rmvb
-application/vnd.route66.link66+xml link66
-application/vnd.rs-274x
-application/vnd.ruckus.download
-application/vnd.s3sms
-application/vnd.sailingtracker.track st
-application/vnd.sbm.cid
-application/vnd.sbm.mid2
-application/vnd.scribus
-application/vnd.sealed.3df
-application/vnd.sealed.csf
-application/vnd.sealed.doc sdoc sdo s1w
-application/vnd.sealed.eml seml sem
-application/vnd.sealed.mht smht smh
-application/vnd.sealed.net
-application/vnd.sealed.ppt sppt spp s1p
-application/vnd.sealed.tiff
-application/vnd.sealed.xls sxls sxl s1e
-application/vnd.sealedmedia.softseal.html stml stm s1h
-application/vnd.sealedmedia.softseal.pdf spdf spd s1a
-application/vnd.seemail see
-application/vnd.sema sema
-application/vnd.semd semd
-application/vnd.semf semf
-application/vnd.shana.informed.formdata ifm
-application/vnd.shana.informed.formtemplate itp
-application/vnd.shana.informed.interchange iif
-application/vnd.shana.informed.package ipk
-application/vnd.SimTech-MindMapper twd twds
-application/vnd.siren+json
-application/vnd.smaf mmf
-application/vnd.smart.notebook
-application/vnd.smart.teacher teacher
-application/vnd.software602.filler.form+xml
-application/vnd.software602.filler.form-xml-zip
-application/vnd.solent.sdkm+xml sdkd sdkm
-application/vnd.spotfire.dxp dxp
-application/vnd.spotfire.sfs sfs
-application/vnd.sss-cod
-application/vnd.sss-dtf
-application/vnd.sss-ntf
-application/vnd.stardivision.calc sdc
-application/vnd.stardivision.chart sds
-application/vnd.stardivision.draw sda
-application/vnd.stardivision.impress sdd
-application/vnd.stardivision.math sdf smf
-application/vnd.stardivision.writer sdw vor
-application/vnd.stardivision.writer-global sgl
-application/vnd.stepmania.package smzip
-application/vnd.stepmania.stepchart sm
-application/vnd.street-stream
-application/vnd.sun.wadl+xml
-application/vnd.sun.xml.calc sxc
-application/vnd.sun.xml.calc.template stc
-application/vnd.sun.xml.draw sxd
-application/vnd.sun.xml.draw.template std
-application/vnd.sun.xml.impress sxi
-application/vnd.sun.xml.impress.template sti
-application/vnd.sun.xml.math sxm
-application/vnd.sun.xml.writer sxw
-application/vnd.sun.xml.writer.global sxg
-application/vnd.sun.xml.writer.template stw
-application/vnd.sus-calendar sus susp
-application/vnd.svd svd
-application/vnd.swiftview-ics
-application/vnd.symbian.install sis sisx
-application/vnd.syncml+xml xsm
-application/vnd.syncml.dm+wbxml bdm
-application/vnd.syncml.dm+xml xdm
-application/vnd.syncml.dm.notification
-application/vnd.syncml.dmddf+wbxml
-application/vnd.syncml.dmddf+xml
-application/vnd.syncml.dmtnds+wbxml
-application/vnd.syncml.dmtnds+xml
-application/vnd.syncml.ds.notification
-application/vnd.tao.intent-module-archive tao
-application/vnd.tcpdump.pcap cap dmp pcap
-application/vnd.tmd.mediaflex.api+xml
-application/vnd.tmobile-livetv tmo
-application/vnd.trid.tpt tpt
-application/vnd.triscape.mxs mxs
-application/vnd.trueapp tra
-application/vnd.truedoc
-application/vnd.ubisoft.webplayer
-application/vnd.ufdl ufd ufdl
-application/vnd.uiq.theme utz
-application/vnd.umajin umj
-application/vnd.unity unityweb
-application/vnd.uoml+xml uoml
-application/vnd.uplanet.alert
-application/vnd.uplanet.alert-wbxml
-application/vnd.uplanet.bearer-choice
-application/vnd.uplanet.bearer-choice-wbxml
-application/vnd.uplanet.cacheop
-application/vnd.uplanet.cacheop-wbxml
-application/vnd.uplanet.channel
-application/vnd.uplanet.channel-wbxml
-application/vnd.uplanet.list
-application/vnd.uplanet.list-wbxml
-application/vnd.uplanet.listcmd
-application/vnd.uplanet.listcmd-wbxml
-application/vnd.uplanet.signal
-application/vnd.uri-map
-application/vnd.valve.source.material
-application/vnd.vcx vcx
-application/vnd.vd-study
-application/vnd.vectorworks
-application/vnd.verimatrix.vcas
-application/vnd.vidsoft.vidconference vsc
-application/vnd.visio vsd vst vsw vss
-application/vnd.visionary vis
-application/vnd.vividence.scriptfile
-application/vnd.vsf vsf
-application/vnd.wap.sic sic
-application/vnd.wap.slc slc
-application/vnd.wap.wbxml wbxml
-application/vnd.wap.wmlc wmlc
-application/vnd.wap.wmlscriptc wmlsc
-application/vnd.webturbo wtb
-application/vnd.wfa.p2p
-application/vnd.wfa.wsc
-application/vnd.windows.devicepairing
-application/vnd.wmc
-application/vnd.wmf.bootstrap
-application/vnd.wolfram.mathematica
-application/vnd.wolfram.mathematica.package
-application/vnd.wolfram.player nbp
-application/vnd.wordperfect wpd
-application/vnd.wqd wqd
-application/vnd.wrq-hp3000-labelled
-application/vnd.wt.stf stf
-application/vnd.wv.csp+wbxml wv
-application/vnd.wv.csp+xml
-application/vnd.wv.ssp+xml
-application/vnd.xacml+json
-application/vnd.xara xar
-application/vnd.xfdl xfdl
-application/vnd.xfdl.webform
-application/vnd.xmi+xml
-application/vnd.xmpie.cpkg
-application/vnd.xmpie.dpkg
-application/vnd.xmpie.plan
-application/vnd.xmpie.ppkg
-application/vnd.xmpie.xlim
-application/vnd.yamaha.hv-dic hvd
-application/vnd.yamaha.hv-script hvs
-application/vnd.yamaha.hv-voice hvp
-application/vnd.yamaha.openscoreformat osf
-application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
-application/vnd.yamaha.remote-setup
-application/vnd.yamaha.smaf-audio saf
-application/vnd.yamaha.smaf-phrase spf
-application/vnd.yamaha.through-ngn
-application/vnd.yamaha.tunnel-udpencap
-application/vnd.yaoweme
-application/vnd.yellowriver-custom-menu cmp
-application/vnd.zul zir zirz
-application/vnd.zzazz.deck+xml zaz
-application/voicexml+xml vxml
-application/vq-rtcpxr
-application/watcherinfo+xml wif
-application/whoispp-query
-application/whoispp-response
-application/widget wgt
-application/winhlp hlp
-application/wita
-application/word doc dot
-application/wordperfect wp
-application/wordperfect5.1 wp5 wp
-application/wordperfect6.1 wp6
-application/wordperfectd wpd
-application/wsdl+xml wsdl
-application/wspolicy+xml wspolicy
-application/x-123 wk
-application/x-7z-compressed 7z
-application/x-abiword abw
-application/x-access mdf mda mdb mde
-application/x-ace-compressed ace
-application/x-apple-diskimage dmg
-application/x-authorware-bin aab u32 vox x32
-application/x-authorware-map aam
-application/x-authorware-seg aas
-application/x-bcpio bcpio
-application/x-bittorrent torrent
-application/x-bleeper bleep
-application/x-blorb blb blorb
-application/x-bzip bz
-application/x-bzip2 boz bz2
-application/x-cbr cb7 cba cbr cbt cbz
-application/x-cdlink vcd
-application/x-cfs-compressed cfs
-application/x-chat chat
-application/x-chess-pgn pgn
-application/x-chrome-extension crx
-application/x-clariscad
-application/x-compress z Z
-application/x-compressed z Z
-application/x-conference nsc
-application/x-cpio cpio
-application/x-csh csh
-application/x-cu-seeme csm cu
-application/x-debian-package deb udeb
-application/x-dgc-compressed dgc
-application/x-director dcr @dir @dxr cct cst cxt dir dxr fgd swa w3d
-application/x-doom wad
-application/x-drafting
-application/x-dtbncx+xml ncx
-application/x-dtbook+xml dtb
-application/x-dtbresource+xml res
-application/x-dvi dvi
-application/x-dxf
-application/x-envoy evy
-application/x-eva eva
-application/x-excel
-application/x-font-bdf bdf
-application/x-font-ghostscript gsf
-application/x-font-linux-psf psf
-application/x-font-opentype otf
-application/x-font-otf otf
-application/x-font-pcf pcf
-application/x-font-snf snf
-application/x-font-truetype ttf
-application/x-font-ttf ttc ttf
-application/x-font-type1 afm pfa pfb pfm
-application/x-fractals
-application/x-freearc arc
-application/x-futuresplash spl
-application/x-gca-compressed gca
-application/x-ghostview
-application/x-glulx ulx
-application/x-gnumeric gnumeric
-application/x-gramps-xml gramps
-application/x-gtar gtar tgz tbz2 tbz
-application/x-gzip gz
-application/x-hdf hdf
-application/x-hep hep
-application/x-html+ruby rhtml
-application/x-httpd-php phtml pht php
-application/x-ibooks+zip ibooks
-application/x-ica ica
-application/x-ideas
-application/x-imagemap imagemap imap
-application/x-install-instructions install
-application/x-iso9660-image iso
-application/x-iwork-keynote-sffkey key
-application/x-iwork-numbers-sffnumbers numbers
-application/x-iwork-pages-sffpages pages
-application/x-java-archive jar
-application/x-java-jnlp-file jnlp
-application/x-java-serialized-object ser
-application/x-java-vm class
-application/x-javascript js
-application/x-koan skp skd skt skm
-application/x-latex ltx latex
-application/x-lotus-123 wks
-application/x-lzh-compressed lha lzh
-application/x-mac bin
-application/x-mac-compactpro cpt
-application/x-macbase64 bin
-application/x-macbinary
-application/x-maker frm maker frame fm fb book fbdoc
-application/x-mathcad mcd
-application/x-mathematica-old
-application/x-mie mie
-application/x-mif mif
-application/x-mobipocket-ebook mobi prc
-application/x-ms-application application
-application/x-ms-shortcut lnk
-application/x-ms-wmd wmd
-application/x-ms-wmz wmz
-application/x-ms-xbap xbap
-application/x-msaccess mda mdb mde mdf
-application/x-msbinder obd
-application/x-mscardfile crd
-application/x-msclip clp
-application/x-msdos-program cmd bat com exe reg ps1 vbs
-application/x-msdownload exe com cmd bat dll msi reg ps1 vbs
-application/x-msmediaview m13 m14 mvb
-application/x-msmetafile emf emz wmf wmz
-application/x-msmoney mny
-application/x-mspublisher pub
-application/x-msschedule scd
-application/x-msterminal trm
-application/x-msword doc dot wrd
-application/x-mswrite wri
-application/x-netcdf nc cdf
-application/x-ns-proxy-autoconfig pac
-application/x-nzb nzb
-application/x-opera-extension oex
-application/x-pagemaker pm pm5 pt5
-application/x-perl pl pm
-application/x-pgp
-application/x-pkcs12 p12 pfx
-application/x-pkcs7-certificates p7b spc
-application/x-pkcs7-certreqresp p7r
-application/x-python py
-application/x-quicktimeplayer qtl
-application/x-rar-compressed rar
-application/x-remote_printing
-application/x-research-info-systems ris
-application/x-rtf rtf
-application/x-ruby rb rbw
-application/x-set
-application/x-sh sh
-application/x-shar shar
-application/x-shockwave-flash swf
-application/x-silverlight-app xap
-application/x-SLA
-application/x-solids
-application/x-spss sav sbs sps spo spp
-application/x-sql sql
-application/x-STEP
-application/x-stuffit sit
-application/x-stuffitx sitx
-application/x-subrip srt
-application/x-sv4cpio sv4cpio
-application/x-sv4crc sv4crc
-application/x-t3vm-image t3
-application/x-tads gam
-application/x-tar tar
-application/x-tcl tcl
-application/x-tex tex
-application/x-tex-tfm tfm
-application/x-texinfo texinfo texi
-application/x-tgif obj
-application/x-toolbook tbk
-application/x-troff t tr roff
-application/x-troff-man man
-application/x-troff-me me
-application/x-troff-ms ms
-application/x-u-star
-application/x-ustar ustar
-application/x-VMSBACKUP bck
-application/x-wais-source src
-application/x-web-app-manifest+json webapp
-application/x-Wingz wz wkz
-application/x-word doc dot
-application/x-wordperfect wp
-application/x-wordperfect6.1 wp6
-application/x-wordperfectd wpd
-application/x-www-form-urlencoded
-application/x-x509-ca-cert crt der
-application/x-xfig fig
-application/x-xliff+xml xlf
-application/x-xpinstall xpi
-application/x-xz xz
-application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
-application/x400-bp
-application/x400.bp
-application/xacml+xml
-application/xaml+xml xaml
-application/xcap-att+xml
-application/xcap-caps+xml
-application/xcap-diff+xml xdf
-application/xcap-el+xml
-application/xcap-error+xml
-application/xcap-ns+xml
-application/xcon-conference-info+xml
-application/xcon-conference-info-diff+xml
-application/xenc+xml xenc
-application/xhtml+xml xht xhtml
-application/xhtml-voice+xml
-application/xml xml xsl
-application/xml-dtd dtd
-application/xml-external-parsed-entity
-application/xml-patch+xml
-application/xmpp+xml
-application/xop+xml xop
-application/xproc+xml xpl
-application/xslt+xml xslt
-application/xspf+xml xspf
-application/xv+xml mxml xhvml xvm xvml
-application/yang yang
-application/yin+xml yin
-application/zip zip
-application/zlib
-audio/1d-interleaved-parityfec
-audio/32kadpcm
-audio/3gpp
-audio/3gpp2
-audio/ac3
-audio/adpcm adp
-audio/AMR amr
-audio/AMR-WB awb
-audio/amr-wb+
-audio/aptx
-audio/asc
-audio/ATRAC-ADVANCED-LOSSLESS
-audio/ATRAC-X
-audio/ATRAC3
-audio/basic au snd
-audio/BV16
-audio/BV32
-audio/clearmode
-audio/CN
-audio/DAT12
-audio/dls
-audio/dsr-es201108
-audio/dsr-es202050
-audio/dsr-es202211
-audio/dsr-es202212
-audio/DV
-audio/DVI4
-audio/eac3
-audio/encaprtp
-audio/EVRC evc
-audio/EVRC-QCP
-audio/EVRC0
-audio/EVRC1
-audio/EVRCB
-audio/EVRCB0
-audio/EVRCB1
-audio/EVRCNW
-audio/EVRCNW0
-audio/EVRCNW1
-audio/EVRCWB
-audio/EVRCWB0
-audio/EVRCWB1
-audio/example
-audio/fwdred
-audio/G711-0
-audio/G719
-audio/G722
-audio/G7221
-audio/G723
-audio/G726-16
-audio/G726-24
-audio/G726-32
-audio/G726-40
-audio/G728
-audio/G729
-audio/G7291
-audio/G729D
-audio/G729E
-audio/GSM
-audio/GSM-EFR
-audio/GSM-HR-08
-audio/iLBC
-audio/ip-mr_v2.5
-audio/L16 l16
-audio/L20
-audio/L24
-audio/L8
-audio/LPC
-audio/midi kar mid midi rmi
-audio/mobile-xmf
-audio/mp4 mp4 mpg4 f4a f4b mp4a
-audio/MP4A-LATM m4a
-audio/MPA
-audio/mpa-robust
-audio/mpeg mpga mp2 mp3 m2a m3a mp2a
-audio/mpeg4-generic
-audio/ogg oga ogg spx
-audio/opus
-audio/parityfec
-audio/PCMA
-audio/PCMA-WB
-audio/PCMU
-audio/PCMU-WB
-audio/prs.sid
-audio/QCELP
-audio/raptorfec
-audio/RED
-audio/rtp-enc-aescm128
-audio/rtp-midi
-audio/rtploopback
-audio/rtx
-audio/s3m s3m
-audio/silk sil
-audio/SMV smv
-audio/SMV-QCP
-audio/SMV0
-audio/sp-midi
-audio/speex
-audio/t140c
-audio/t38
-audio/telephone-event
-audio/tone
-audio/UEMCLIP
-audio/ulpfec
-audio/VDVI
-audio/VMR-WB
-audio/vnd.3gpp.iufp
-audio/vnd.4SB
-audio/vnd.audiokoz
-audio/vnd.CELP
-audio/vnd.cisco.nse
-audio/vnd.cmles.radio-events
-audio/vnd.cns.anp1
-audio/vnd.cns.inf1
-audio/vnd.dece.audio uva uvva
-audio/vnd.digital-winds eol
-audio/vnd.dlna.adts
-audio/vnd.dolby.heaac.1
-audio/vnd.dolby.heaac.2
-audio/vnd.dolby.mlp
-audio/vnd.dolby.mps
-audio/vnd.dolby.pl2
-audio/vnd.dolby.pl2x
-audio/vnd.dolby.pl2z
-audio/vnd.dolby.pulse.1
-audio/vnd.dra dra
-audio/vnd.dts dts
-audio/vnd.dts.hd dtshd
-audio/vnd.dvb.file
-audio/vnd.everad.plj plj
-audio/vnd.hns.audio
-audio/vnd.lucent.voice lvp
-audio/vnd.ms-playready.media.pya pya
-audio/vnd.nokia.mobile-xmf mxmf
-audio/vnd.nortel.vbk vbk
-audio/vnd.nuera.ecelp4800 ecelp4800
-audio/vnd.nuera.ecelp7470 ecelp7470
-audio/vnd.nuera.ecelp9600 ecelp9600
-audio/vnd.octel.sbc
-audio/vnd.qcelp qcp
-audio/vnd.rhetorex.32kadpcm
-audio/vnd.rip rip
-audio/vnd.sealedmedia.softseal.mpeg smp3 smp s1m
-audio/vnd.vmx.cvsd
-audio/vorbis
-audio/vorbis-config
-audio/webm weba webm
-audio/x-aac aac
-audio/x-aiff aif aifc aiff
-audio/x-caf caf
-audio/x-flac flac
-audio/x-matroska mka
-audio/x-midi mid midi kar
-audio/x-mpegurl m3u
-audio/x-ms-wax wax
-audio/x-ms-wma wma
-audio/x-ms-wmv wmv
-audio/x-pn-realaudio ra ram
-audio/x-pn-realaudio-plugin rmp rpm
-audio/x-realaudio ra
-audio/x-wav wav
-audio/xm xm
-chemical/x-cdx cdx
-chemical/x-cif cif
-chemical/x-cmdf cmdf
-chemical/x-cml cml
-chemical/x-csml csml
-chemical/x-pdb pdb
-chemical/x-xyz xyz
-drawing/dwf dwf
-image/bmp bmp
-image/cgm cgm
-image/cmu-raster
-image/example
-image/fits
-image/g3fax g3
-image/gif gif
-image/ief ief
-image/jp2 jp2 jpg2
-image/jpeg jpeg jpg jpe
-image/jpm jpm jpgm
-image/jpx jpx jpf
-image/ktx ktx
-image/naplps
-image/pjpeg
-image/png png
-image/prs.btif btif
-image/prs.pti
-image/pwg-raster
-image/sgi sgi
-image/svg+xml svg svgz
-image/t38
-image/targa tga
-image/tiff tiff tif
-image/tiff-fx
-image/vnd.adobe.photoshop psd
-image/vnd.airzip.accelerator.azv
-image/vnd.cns.inf2
-image/vnd.dece.graphic uvg uvi uvvg uvvi
-image/vnd.dgn dgn
-image/vnd.djvu djvu djv
-image/vnd.dvb.subtitle sub
-image/vnd.dwg dwg
-image/vnd.dxf dxf
-image/vnd.fastbidsheet fbs
-image/vnd.fpx fpx
-image/vnd.fst fst
-image/vnd.fujixerox.edmics-mmr mmr
-image/vnd.fujixerox.edmics-rlc rlc
-image/vnd.globalgraphics.pgb pgb
-image/vnd.microsoft.icon ico
-image/vnd.mix
-image/vnd.mozilla.apng
-image/vnd.ms-modi mdi
-image/vnd.ms-photo wdp
-image/vnd.net-fpx npx
-image/vnd.net.fpx
-image/vnd.radiance
-image/vnd.sealed.png
-image/vnd.sealedmedia.softseal.gif
-image/vnd.sealedmedia.softseal.jpg
-image/vnd.svf
-image/vnd.tencent.tap
-image/vnd.valve.source.texture
-image/vnd.wap.wbmp wbmp
-image/vnd.xiff xif
-image/vnd.zbrush.pcx
-image/webp webp
-image/x-3ds 3ds
-image/x-bmp bmp
-image/x-cmu-raster ras
-image/x-cmx cmx
-image/x-compressed-xcf xcfbz2 xcfgz
-image/x-freehand fh fh4 fh5 fh7 fhc
-image/x-hasselblad-3fr 3fr
-image/x-icon ico
-image/x-mrsid-image sid
-image/x-ms-bmp bmp
-image/x-paintshoppro psp pspimage
-image/x-pcx pcx
-image/x-pict pct pic
-image/x-portable-anymap pnm
-image/x-portable-bitmap pbm
-image/x-portable-graymap pgm
-image/x-portable-pixmap ppm
-image/x-rgb rgb
-image/x-targa tga
-image/x-tga tga
-image/x-vnd.dgn dgn
-image/x-win-bmp
-image/x-xbitmap xbm
-image/x-xbm xbm
-image/x-xcf xcf
-image/x-xpixmap xpm
-image/x-xwindowdump xwd
-message/CPIM
-message/delivery-status
-message/disposition-notification
-message/example
-message/external-body
-message/feedback-report
-message/global
-message/global-delivery-status
-message/global-disposition-notification
-message/global-headers
-message/http
-message/imdn+xml
-message/news
-message/partial
-message/rfc822 eml mime
-message/s-http
-message/sip
-message/sipfrag
-message/tracking-status
-message/vnd.si.simp
-message/vnd.wfa.wsc
-model/example
-model/iges igs iges
-model/mesh msh mesh silo
-model/vnd.collada+xml dae
-model/vnd.dwf dwf
-model/vnd.flatland.3dml
-model/vnd.gdl gdl
-model/vnd.gs-gdl
-model/vnd.gtw gtw
-model/vnd.moml+xml
-model/vnd.mts mts
-model/vnd.opengex
-model/vnd.parasolid.transmit.binary x_b xmt_bin
-model/vnd.parasolid.transmit.text x_t xmt_txt
-model/vnd.valve.source.compiled-map
-model/vnd.vtu vtu
-model/vrml wrl vrml
-model/x3d+binary x3db x3dbz
-model/x3d+fastinfoset
-model/x3d+vrml x3dv x3dvz
-model/x3d+xml x3d x3dz
-model/x3d-vrml
-multipart/alternative
-multipart/appledouble
-multipart/byteranges
-multipart/digest
-multipart/encrypted
-multipart/example
-multipart/form-data
-multipart/header-set
-multipart/mixed
-multipart/parallel
-multipart/related
-multipart/report
-multipart/signed
-multipart/voice-message
-multipart/x-gzip
-multipart/x-mixed-replace
-multipart/x-parallel
-multipart/x-tar
-multipart/x-ustar
-multipart/x-www-form-urlencoded
-multipart/x-zip
-text/1d-interleaved-parityfec
-text/cache-manifest appcache manifest
-text/calendar ics ifb
-text/comma-separated-values csv
-text/css css
-text/csv csv
-text/csv-schema
-text/directory
-text/dns
-text/ecmascript
-text/encaprtp
-text/enriched
-text/example
-text/fwdred
-text/grammar-ref-list
-text/html html htm htmlx shtml htx
-text/javascript js
-text/jcr-cnd
-text/markdown
-text/mizar
-text/n3 n3
-text/parameters
-text/parityfec
-text/plain txt asc c cc h hh cpp hpp dat hlp conf def doc in list log markdown md rst text textile
-text/provenance-notation
-text/prs.fallenstein.rst rst
-text/prs.lines.tag dsc
-text/raptorfec
-text/RED
-text/rfc822-headers
-text/richtext rtx
-text/rtf rtf
-text/rtp-enc-aescm128
-text/rtploopback
-text/rtx
-text/sgml sgml sgm
-text/t140
-text/tab-separated-values tsv
-text/troff t tr roff troff man me ms
-text/turtle ttl
-text/ulpfec
-text/uri-list uri uris urls
-text/vcard vcard
-text/vnd.a
-text/vnd.abc
-text/vnd.curl curl
-text/vnd.curl.dcurl dcurl
-text/vnd.curl.mcurl mcurl
-text/vnd.curl.scurl scurl
-text/vnd.debian.copyright
-text/vnd.DMClientScript
-text/vnd.dvb.subtitle sub
-text/vnd.esmertec.theme-descriptor
-text/vnd.flatland.3dml
-text/vnd.fly fly
-text/vnd.fmi.flexstor flx
-text/vnd.graphviz gv
-text/vnd.in3d.3dml 3dml
-text/vnd.in3d.spot spot
-text/vnd.IPTC.NewsML
-text/vnd.IPTC.NITF
-text/vnd.latex-z
-text/vnd.motorola.reflex
-text/vnd.ms-mediapackage
-text/vnd.net2phone.commcenter.command ccc
-text/vnd.radisys.msml-basic-layout
-text/vnd.si.uricatalogue
-text/vnd.sun.j2me.app-descriptor jad
-text/vnd.trolltech.linguist
-text/vnd.wap.si si
-text/vnd.wap.sl sl
-text/vnd.wap.wml wml
-text/vnd.wap.wmlscript wmls
-text/x-asm asm s
-text/x-c c cc cpp cxx dic h hh
-text/x-coffescript coffee
-text/x-component htc
-text/x-fortran f f77 f90 for
-text/x-java-source java
-text/x-nfo nfo
-text/x-opml opml
-text/x-pascal p pas
-text/x-rtf rtf
-text/x-setext etx
-text/x-sfv sfv
-text/x-uuencode uu
-text/x-vcalendar vcs
-text/x-vcard vcf
-text/x-vnd.flatland.3dml
-text/x-yaml yaml yml
-text/xml xml dtd
-text/xml-external-parsed-entity
-video/1d-interleaved-parityfec
-video/3gpp 3gp 3gpp
-video/3gpp-tt
-video/3gpp2 3g2 3gpp2
-video/BMPEG
-video/BT656
-video/CelB
-video/dl dl
-video/DV dv
-video/encaprtp
-video/example
-video/gl gl
-video/H261 h261
-video/H263 h263
-video/H263-1998
-video/H263-2000
-video/H264 h264
-video/H264-RCDO
-video/H264-SVC
-video/iso.segment
-video/JPEG jpgv
-video/jpeg2000
-video/jpm jpgm jpm
-video/MJ2 mj2 mjp2
-video/MP1S
-video/MP2P
-video/MP2T ts
-video/mp4 mp4 mpg4 f4v f4p mp4v
-video/MP4V-ES
-video/mpeg mp2 mp3g mpe mpeg mpg m1v m2v
-video/mpeg4-generic
-video/MPV
-video/nv
-video/ogg ogg ogv
-video/parityfec
-video/pointer
-video/quicktime qt mov
-video/raptorfec
-video/raw
-video/rtp-enc-aescm128
-video/rtploopback
-video/rtx
-video/SMPTE292M
-video/ulpfec
-video/vc1
-video/vnd.CCTV
-video/vnd.dece.hd uvh uvvh
-video/vnd.dece.mobile uvm uvvm
-video/vnd.dece.mp4
-video/vnd.dece.pd uvp uvvp
-video/vnd.dece.sd uvs uvvs
-video/vnd.dece.video uvv uvvv
-video/vnd.directv.mpeg
-video/vnd.directv.mpeg-tts
-video/vnd.dlna.mpeg-tts
-video/vnd.dvb.file dvb
-video/vnd.fvt fvt
-video/vnd.hns.video
-video/vnd.iptvforum.1dparityfec-1010
-video/vnd.iptvforum.1dparityfec-2005
-video/vnd.iptvforum.2dparityfec-1010
-video/vnd.iptvforum.2dparityfec-2005
-video/vnd.iptvforum.ttsavc
-video/vnd.iptvforum.ttsmpeg2
-video/vnd.motorola.video
-video/vnd.motorola.videop
-video/vnd.mpegurl mxu m4u
-video/vnd.ms-playready.media.pyv pyv
-video/vnd.nokia.interleaved-multimedia nim
-video/vnd.nokia.videovoip
-video/vnd.objectvideo mp4 m4v
-video/vnd.radgamettools.bink
-video/vnd.radgamettools.smacker
-video/vnd.sealed.mpeg1 s11
-video/vnd.sealed.mpeg4 smpg s14
-video/vnd.sealed.swf sswf ssw
-video/vnd.sealedmedia.softseal.mov smov smo s1q
-video/vnd.uvvu.mp4 uvu uvvu
-video/vnd.vivo viv vivo
-video/webm webm
-video/x-dl dl
-video/x-dv dv
-video/x-f4v f4v
-video/x-fli fli
-video/x-flv flv
-video/x-gl gl
-video/x-ivf ivf
-video/x-m4v m4v
-video/x-matroska mk3d mks mkv
-video/x-mng mng
-video/x-motion-jpeg mjpg mjpeg
-video/x-ms-asf asf asx
-video/x-ms-vob vob
-video/x-ms-wm wm
-video/x-ms-wmv wmv
-video/x-ms-wmx wmx
-video/x-ms-wvx wvx
-video/x-msvideo avi
-video/x-sgi-movie movie
-video/x-smv smv
-x-chemical/x-pdb pdb
-x-chemical/x-xyz xyz
-x-conference/x-cooltalk ice
-x-drawing/dwf dwf
-x-world/x-vrml wrl vrml
diff --git a/data/mime.docs.column b/data/mime.docs.column
deleted file mode 100644
index ef6ade9..0000000
--- a/data/mime.docs.column
+++ /dev/null
@@ -1,1924 +0,0 @@
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-Fixes a bug with IE6 and progressive JPEGs
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-see-also:image/x-xcf
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
diff --git a/data/mime.encoding.column b/data/mime.encoding.column
deleted file mode 100644
index 4f06999..0000000
--- a/data/mime.encoding.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-8bit
-base64
-8bit
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-7bit
-7bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-7bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-7bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-8bit
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-7bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-7bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-7bit
-7bit
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-quoted-printable
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-8bit
-base64
-base64
-base64
-base64
-8bit
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-8bit
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-quoted-printable
-quoted-printable
-quoted-printable
-8bit
-8bit
-quoted-printable
-8bit
-8bit
-quoted-printable
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-8bit
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
-base64
diff --git a/data/mime.friendly.column b/data/mime.friendly.column
deleted file mode 100644
index 02464e1..0000000
--- a/data/mime.friendly.column
+++ /dev/null
@@ -1,1924 +0,0 @@
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Andrew Toolkit
--
--
-en^Applixware
--
--
-en^Atom Syndication Format
-en^Atom Publishing Protocol
--
--
-en^Atom Publishing Protocol Service Document
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Voice Browser Call Control
--
-en^Cloud Data Management Interface (CDMI) - Capability
-en^Cloud Data Management Interface (CDMI) - Contaimer
-en^Cloud Data Management Interface (CDMI) - Domain
-en^Cloud Data Management Interface (CDMI) - Object
-en^Cloud Data Management Interface (CDMI) - Queue
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^CU-SeeMe
--
--
--
-en^Web Distributed Authoring and Versioning
--
--
--
--
--
--
--
--
--
--
--
-en^Data Structure for the Security Suitability of Cryptographic Algorithms
-en^Data Structure for the Security Suitability of Cryptographic Algorithms
--
--
-en^ECMAScript
--
--
--
-en^Extensible MultiModal Annotation
--
--
--
-en^Electronic Publication
--
--
--
-en^Efficient XML Interchange
--
--
--
--
--
-en^Portable Font Resource
-en^Web Open Font Format
--
--
--
--
--
--
--
--
--
--
--
--
-en^Hyperstudio
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Internet Protocol Flow Information Export
--
--
--
-en^Java Archive
-en^Java Serialized Object
-en^Java Bytecode File
-en^JavaScript
--
--
--
-en^JavaScript Object Notation (JSON)
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Macintosh BinHex 4.0
-en^Compact Pro
--
--
-en^Metadata Authority Description Schema
-en^MARC Formats
-en^MARC21 XML Schema
--
-en^Mathematica Notebooks
--
-en^Mathematical Markup Language
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Mbox database files
--
--
-en^Media Server Control Markup Language
--
--
-en^Metalink
-en^Metadata Encoding and Transmission Standard
--
--
-en^Metadata Object Description Schema
--
--
--
--
-en^MPEG-21
-en^MPEG4
--
--
--
--
--
--
--
-en^Microsoft Word
-en^Material Exchange Format
--
--
--
--
--
--
--
--
--
--
-en^Binary Data
-en^Office Document Architecture
--
-en^Open eBook Publication Structure
-en^Ogg
--
-en^Microsoft OneNote
--
--
--
-en^XML Patch Framework
-en^Adobe Portable Document Format
--
-en^Pretty Good Privacy
--
-en^Pretty Good Privacy - Signature
-en^PICSRules
--
--
-en^PKCS #10 - Certification Request Standard
--
-en^PKCS #7 - Cryptographic Message Syntax Standard
-en^PKCS #7 - Cryptographic Message Syntax Standard
-en^PKCS #8 - Private-Key Information Syntax Standard
-en^Attribute Certificate
-en^Internet Public Key Infrastructure - Certificate
-en^Internet Public Key Infrastructure - Certificate Revocation Lists
-en^Internet Public Key Infrastructure - Certification Path
-en^Internet Public Key Infrastructure - Certificate Management Protocole
-en^Pronunciation Lexicon Specification
--
-en^PostScript
--
--
--
--
-en^CU-Writer
--
--
--
--
--
-en^Portable Symmetric Key Container
--
--
--
--
-en^Resource Description Framework
-en^IMS Networks
-en^Relax NG Compact Syntax
--
--
--
-en^XML Resource Lists
-en^XML Resource Lists Diff
--
--
-en^XML Resource Lists
--
--
--
--
-en^Really Simple Discovery
-en^RSS - Really Simple Syndication
-en^Rich Text Format
--
--
--
--
-en^Systems Biology Markup Language
--
--
-en^Server-Based Certificate Validation Protocol - Validation Request
-en^Server-Based Certificate Validation Protocol - Validation Response
-en^Server-Based Certificate Validation Protocol - Validation Policies - Request
-en^Server-Based Certificate Validation Protocol - Validation Policies - Response
-en^Session Description Protocol
--
--
--
--
--
-en^Secure Electronic Transaction - Payment
--
-en^Secure Electronic Transaction - Registration
--
--
-en^S Hexdump Format
--
--
--
--
--
--
--
-en^Synchronized Multimedia Integration Language
--
--
--
--
-en^SPARQL - Query
-en^SPARQL - Results
--
--
-en^Speech Recognition Grammar Specification
-en^Speech Recognition Grammar Specification - XML
-en^Search/Retrieve via URL Response Format
--
-en^Speech Synthesis Markup Language
--
--
--
--
--
--
--
--
--
--
--
--
-en^Text Encoding and Interchange
-en^Sharing Transaction Fraud Data
--
--
-en^Time Stamped Data Envelope
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^3rd Generation Partnership Project - Pic Large
-en^3rd Generation Partnership Project - Pic Small
-en^3rd Generation Partnership Project - Pic Var
--
--
--
--
--
-en^3rd Generation Partnership Project - Transaction Capabilities Application Part
-en^3M Post It Notes
-en^Simply Accounting
-en^Simply Accounting - Data Import
-en^ACU Cobol
-en^ACU Cobol
-en^Adobe AIR Application
--
--
-en^Adobe Flex Project
--
-en^Adobe XML Data Package
-en^Adobe XML Forms Data Format
--
--
-en^Ahead AIR Application
-en^AirZip FileSECURE
-en^AirZip FileSECURE
-en^Amazon Kindle eBook format
-en^Active Content Compression
-en^AmigaDE
--
-en^Android Package Archive
--
-en^ANSER-WEB Terminal Client - Certificate Issue
-en^ANSER-WEB Terminal Client - Web Funds Transfer
-en^Antix Game Player
--
--
--
--
-en^Apple Installer Package
-en^Multimedia Playlist Unicode
--
--
-en^Arista Networks Software Image
--
--
-en^Audiograph
--
--
--
--
--
--
-en^Blueice Research Multipass
--
--
-en^BMI Drawing Data Interchange
-en^BusinessObjects
--
--
--
--
--
-en^CambridgeSoft Chem Draw
-en^Karaoke on Chipnuts Chipsets
-en^Interactive Geometry Software Cinderella
--
--
-en^Claymore Data Files
-en^RetroPlatform Player
-en^Clonk Game
-en^ClueTrust CartoMobile - Config
-en^ClueTrust CartoMobile - Config Package
--
--
--
--
--
-en^Sixth Floor Media - CommonSpace
-en^CIM Database
-en^CosmoCaller
-en^CrickSoftware - Clicker
-en^CrickSoftware - Clicker - Keyboard
-en^CrickSoftware - Clicker - Palette
-en^CrickSoftware - Clicker - Template
-en^CrickSoftware - Clicker - Wordbank
-en^Critical Tools - PERT Chart EXPERT
-en^PosML
--
--
--
-en^Adobe PostScript Printer Description File Format
--
--
--
-en^CURL Applet
-en^CURL Applet
--
--
--
-en^RemoteDocs R-Viewer
--
--
--
--
--
-en^FCS Express Layout Link
--
--
--
-en^New Moon Liftoff/DNA
--
-en^Dolby Meridian Lossless Packing
--
--
--
-en^DPGraph
-en^DreamFactory
--
--
--
--
--
-en^Digital Video Broadcasting
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Digital Video Broadcasting
--
-en^DynaGeo
--
--
--
-en^EcoWin Chart
--
--
--
--
--
--
-en^Enliven Viewer
--
--
-en^QUASS Stream Player
-en^QUASS Stream Player
-en^QuickAnime Player
-en^SimpleAnimeLite Player
-en^QUASS Stream Player
--
-en^MICROSEC e-Szign¢
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^EZPix Secure Photo Album
-en^EZPix Secure Photo Album
--
--
-en^Forms Data Format
--
-en^Digital Siesmograph Networks - SEED Datafiles
--
--
--
-en^NpGraphIt
-en^FluxTime Clip
--
-en^FrameMaker Normal Format
-en^Frogans Player
-en^Frogans Player
-en^Friendly Software Corporation
-en^Fujitsu Oasys
-en^Fujitsu Oasys
-en^Fujitsu Oasys
-en^Fujitsu Oasys
-en^Fujitsu Oasys
--
--
-en^Fujitsu - Xerox 2D CAD Data
-en^Fujitsu - Xerox DocuWorks
-en^Fujitsu - Xerox DocuWorks Binder
--
--
--
-en^FuzzySheet
-en^Genomatix Tuxedo Framework
--
--
-en^GeoGebra
-en^GeoGebra
-en^GeoMetry Explorer
-en^GEONExT and JSXGraph
-en^GeoplanW
-en^GeospacW
--
--
--
-en^GameMaker ActiveX
-en^Google Earth - KML
-en^Google Earth - Zipped KML
--
--
--
-en^GrafEq
--
-en^Groove - Account
-en^Groove - Help
-en^Groove - Identity Message
-en^Groove - Injector
-en^Groove - Tool Message
-en^Groove - Tool Template
-en^Groove - Vcard
--
-en^Hypertext Application Language
-en^ZVUE Media Manager
-en^Homebanking Computer Interface (HBCI)
--
--
-en^Archipelago Lesson Player
-en^HP-GL/2 and HP RTL
-en^Hewlett Packard Instant Delivery
-en^Hewlett-Packard's WebPrintSmart
-en^HP Indigo Digital Press - Job Layout Languate
-en^HP Printer Command Language
-en^PCL 6 Enhanced (Formely PCL XL)
--
-en^Hydrostatix Master Suite
--
-en^3D Crossword Plugin
--
--
-en^MiniPay
-en^MO:DCA-P
-en^IBM DB2 Rights Manager
-en^IBM Electronic Media Management System - Secure Container
-en^ICC profile
--
-en^igLoader
-en^ImmerVision PURE Players
-en^ImmerVision PURE Players
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^IOCOM Visimeet
-en^Intercon FormNet
-en^Interactive Geometry Software
--
--
-en^Open Financial Exchange
-en^Quicken
--
--
--
--
--
--
--
-en^IP Unplugged Roaming Client
-en^iRepository / Lucidoc Editor
-en^Express by Infoseek
-en^International Society for Advancement of Cytometry
-en^Lightspeed Audio Lab
--
--
--
--
--
--
--
--
-en^Mobile Information Device Profile
-en^RhymBox
-en^Joda Archive
--
-en^Kahootz
-en^KDE KOffice Office Suite - Karbon
-en^KDE KOffice Office Suite - KChart
-en^KDE KOffice Office Suite - Kformula
-en^KDE KOffice Office Suite - Kivio
-en^KDE KOffice Office Suite - Kontour
-en^KDE KOffice Office Suite - Kpresenter
-en^KDE KOffice Office Suite - Kspread
-en^KDE KOffice Office Suite - Kword
-en^Kenamea App
-en^Kidspiration
-en^Kinar Applications
-en^SSEYO Koan Play File
-en^Kodak Storyshare
-en^Laser App Enterprise
--
-en^Life Balance - Desktop Edition
-en^Life Balance - Exchange Format
-en^Lotus 1-2-3
-en^Lotus Approach
-en^Lotus Freelance
-en^Lotus Notes
-en^Lotus Organizer
-en^Lotus Screencam
-en^Lotus Wordpro
-en^MacPorts Port System
--
--
--
--
--
--
-en^Micro CADAM Helix D&D
-en^MedCalc
-en^MediaRemote
--
-en^Medical Waveform Encoding Format
-en^Melody Format for Mobile Platform
--
-en^Micrografx
-en^Micrografx iGrafx Professional
--
--
-en^FrameMaker Interchange Format
--
--
-en^Mobius Management Systems - UniversalArchive
-en^Mobius Management Systems - Distribution Database
-en^Mobius Management Systems - Basket file
-en^Mobius Management Systems - Query File
-en^Mobius Management Systems - Script Language
-en^Mobius Management Systems - Policy Definition Language File
-en^Mobius Management Systems - Topic Index File
-en^Mophun VM
-en^Mophun Certificate
--
--
--
--
--
--
--
--
-en^XUL - XML User Interface Language
--
-en^Microsoft Artgalry
--
-en^Microsoft Cabinet File
-en^Microsoft Excel
-en^Microsoft Excel - Add-In File
-en^Microsoft Excel - Binary Workbook
-en^Microsoft Excel - Macro-Enabled Workbook
-en^Microsoft Excel - Macro-Enabled Template File
-en^Microsoft Embedded OpenType
-en^Microsoft Html Help File
-en^Microsoft Class Server
-en^Microsoft Learning Resource Module
--
-en^Microsoft Office System Release Theme
--
-en^Microsoft Trust UI Provider - Security Catalog
-en^Microsoft Trust UI Provider - Certificate Trust Link
--
-en^Microsoft PowerPoint
-en^Microsoft PowerPoint - Add-in file
-en^Microsoft PowerPoint - Macro-Enabled Presentation File
-en^Microsoft PowerPoint - Macro-Enabled Open XML Slide
-en^Microsoft PowerPoint - Macro-Enabled Slide Show File
-en^Micosoft PowerPoint - Macro-Enabled Template File
-en^Microsoft Project
--
--
--
--
--
--
-en^Micosoft Word - Macro-Enabled Document
-en^Micosoft Word - Macro-Enabled Template
-en^Microsoft Works
-en^Microsoft Windows Media Player Playlist
-en^Microsoft XML Paper Specification
--
-en^3GPP MSEQ File
--
--
--
--
-en^MUsical Score Interpreted Code Invented for the ASCII designation of Notation
-en^Muvee Automatic Video Editing
--
--
--
--
--
-en^neuroLanguage
--
--
--
-en^NobleNet Directory
-en^NobleNet Sealer
-en^NobleNet Web
--
--
--
--
--
--
--
--
--
-en^N-Gage Game Data
-en^N-Gage Game Installer
--
--
--
--
-en^Nokia Radio Application - Preset
-en^Nokia Radio Application - Preset
-en^Novadigm's RADIA and EDM products
-en^Novadigm's RADIA and EDM products
-en^Novadigm's RADIA and EDM products
--
--
--
--
--
-en^OpenDocument Chart
-en^OpenDocument Chart Template
-en^OpenDocument Database
-en^OpenDocument Formula
-en^OpenDocument Formula Template
-en^OpenDocument Graphics
-en^OpenDocument Graphics Template
-en^OpenDocument Image
-en^OpenDocument Image Template
-en^OpenDocument Presentation
-en^OpenDocument Presentation Template
-en^OpenDocument Spreadsheet
-en^OpenDocument Spreadsheet Template
-en^OpenDocument Text
-en^OpenDocument Text Master
-en^OpenDocument Text Template
-en^Open Document Text Web
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Sugar Linux Application Bundle
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^OMA Download Agents
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Open Office Extension
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Microsoft Office - OOXML - Presentation
--
--
-en^Microsoft Office - OOXML - Presentation (Slide)
--
--
--
-en^Microsoft Office - OOXML - Presentation (Slideshow)
--
--
--
--
-en^Microsoft Office - OOXML - Presentation Template
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Microsoft Office - OOXML - Spreadsheet
--
--
--
--
--
-en^Microsoft Office - OOXML - Spreadsheet Teplate
--
--
--
--
--
--
--
--
-en^Microsoft Office - OOXML - Word Document
--
--
--
--
--
--
--
--
--
-en^Microsoft Office - OOXML - Word Document Template
--
--
--
--
--
--
--
--
-en^MapGuide DBXML
--
-en^OSGi Deployment Package
--
--
-en^PalmOS Data
--
--
-en^PawaaFILE
--
-en^Proprietary P&G Standard Reporting System
-en^Proprietary P&G Standard Reporting System
--
-en^Pcsel eFIF File
-en^Qualcomm's Plaza Mobile Internet
--
-en^PocketLearn Viewers
-en^PowerBuilder
--
--
--
--
--
--
-en^Preview Systems ZipLock/VBox
-en^EFI Proteus
-en^PubliShare Objects
-en^Princeton Video Image
--
--
--
-en^QuarkXPress
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^RealVNC
-en^Recordare Applications
-en^Recordare Applications
--
-en^CryptoNote
-en^Blackberry COD File
-en^RealMedia
--
-en^ROUTE 66 Location Based Services
--
--
--
-en^SailingTracker
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^SeeMail
-en^Secured eMail
-en^Secured eMail
-en^Secured eMail
-en^Shana Informed Filler
-en^Shana Informed Filler
-en^Shana Informed Filler
-en^Shana Informed Filler
-en^SimTech MindMapper
--
-en^SMAF File
--
-en^SMART Technologies Apps
--
--
-en^SudokuMagic
-en^TIBCO Spotfire
-en^TIBCO Spotfire
--
--
--
-en^StarOffice - Calc
--
-en^StarOffice - Draw
-en^StarOffice - Impress
-en^StarOffice - Math
-en^StarOffice - Writer
-en^StarOffice - Writer (Global)
--
-en^StepMania
--
--
-en^OpenOffice - Calc (Spreadsheet)
-en^OpenOffice - Calc Template (Spreadsheet)
-en^OpenOffice - Draw (Graphics)
-en^OpenOffice - Draw Template (Graphics)
-en^OpenOffice - Impress (Presentation)
-en^OpenOffice - Impress Template (Presentation)
-en^OpenOffice - Math (Formula)
-en^OpenOffice - Writer (Text - HTML)
-en^OpenOffice - Writer (Text - HTML)
-en^OpenOffice - Writer Template (Text - HTML)
-en^ScheduleUs
-en^SourceView Document
--
-en^Symbian Install Package
-en^SyncML
-en^SyncML - Device Management
-en^SyncML - Device Management
--
--
--
--
--
--
-en^Tao Intent
--
--
-en^MobileTV
-en^TRI Systems Config
-en^Triscape Map Explorer
-en^True BASIC
--
--
-en^Universal Forms Description Language
-en^User Interface Quartz - Theme (Symbian)
-en^UMAJIN
-en^Unity 3d
-en^Unique Object Markup Language
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^VirtualCatalog
--
--
--
--
-en^Microsoft Visio
-en^Visionary
--
-en^Viewport+
--
--
-en^WAP Binary XML (WBXML)
-en^Compiled Wireless Markup Language (WMLC)
-en^WMLScript
-en^WebTurbo
--
--
--
--
--
--
--
-en^Mathematica Notebook Player
-en^Wordperfect
-en^SundaHus WQ
--
-en^Worldtalk
--
--
--
--
-en^CorelXARA
-en^Extensible Forms Description Language
--
--
--
--
--
--
--
-en^HV Voice Dictionary
-en^HV Script
-en^HV Voice Parameter
-en^Open Score Format
-en^OSFPVG
--
-en^SMAF Audio
-en^SMAF Phrase
--
--
--
-en^CustomMenu
-en^Z.U.L. Geometry
-en^Zzazz Deck
-en^VoiceXML
--
--
--
--
-en^Widget Packaging and XML Configuration
-en^WinHelp
--
--
--
--
--
--
-en^WSDL - Web Services Description Language
-en^Web Services Policy
--
-en^7-Zip
-en^AbiWord
--
-en^Ace Archive
--
-en^Adobe (Macropedia) Authorware - Binary File
-en^Adobe (Macropedia) Authorware - Map
-en^Adobe (Macropedia) Authorware - Segment File
-en^Binary CPIO Archive
-en^BitTorrent
--
--
-en^Bzip Archive
-en^Bzip2 Archive
--
-en^Video CD
--
-en^pIRCh
-en^Portable Game Notation (Chess Games)
--
--
--
--
--
-en^CPIO Archive
-en^C Shell Script
--
-en^Debian Package
--
-en^Adobe Shockwave Player
-en^Doom Video Game
--
-en^Navigation Control file for XML (for ePub)
-en^Digital Talking Book
-en^Digital Talking Book - Resource File
-en^Device Independent File Format (DVI)
--
--
--
--
-en^Glyph Bitmap Distribution Format
-en^Ghostscript Font
-en^PSF Fonts
--
-en^OpenType Font File
-en^Portable Compiled Format
-en^Server Normal Format
--
-en^TrueType Font
-en^PostScript Fonts
--
--
-en^FutureSplash Animator
--
--
--
-en^Gnumeric
--
-en^GNU Tar Files
--
-en^Hierarchical Data Format
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Java Network Launching Protocol
--
--
--
--
-en^LaTeX
--
--
--
--
--
--
--
--
--
--
--
-en^Mobipocket
-en^Microsoft ClickOnce
--
-en^Microsoft Windows Media Player Download Package
-en^Microsoft Windows Media Player Skin Package
-en^Microsoft XAML Browser Application
-en^Microsoft Access
-en^Microsoft Office Binder
-en^Microsoft Information Card
-en^Microsoft Clipboard Clip
--
-en^Microsoft Application
-en^Microsoft MediaView
-en^Microsoft Windows Metafile
-en^Microsoft Money
-en^Microsoft Publisher
-en^Microsoft Schedule+
-en^Microsoft Windows Terminal Services
--
-en^Microsoft Wordpad
-en^Network Common Data Form (NetCDF)
--
--
--
--
--
--
-en^PKCS #12 - Personal Information Exchange Syntax Standard
-en^PKCS #7 - Cryptographic Message Syntax Standard (Certificates)
-en^PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)
--
--
-en^RAR Archive
--
--
--
--
--
-en^Bourne Shell Script
-en^Shell Archive
-en^Adobe Flash
-en^Microsoft Silverlight
--
--
--
--
--
-en^Stuffit Archive
-en^Stuffit Archive
--
-en^System V Release 4 CPIO Archive
-en^System V Release 4 CPIO Checksum Data
--
--
-en^Tar File (Tape Archive)
-en^Tcl Script
-en^TeX
-en^TeX Font Metric
-en^GNU Texinfo Document
--
--
--
--
--
--
--
-en^Ustar (Uniform Standard Tape Archive)
--
-en^WAIS Source
--
--
--
--
--
--
--
-en^X.509 Certificate
-en^Xfig
--
-en^XPInstall - Mozilla
--
--
--
--
--
--
--
--
-en^XML Configuration Access Protocol - XCAP Diff
--
--
--
--
--
-en^XML Encryption Syntax and Processing
-en^XHTML - The Extensible HyperText Markup Language
--
-en^XML - Extensible Markup Language
-en^Document Type Definition
--
--
--
-en^XML-Binary Optimized Packaging
--
-en^XML Transformations
-en^XSPF - XML Shareable Playlist Format
-en^MXML
-en^YANG Data Modeling Language
-en^YIN (YANG - XML)
-en^Zip Archive
--
--
--
--
--
--
-en^Adaptive differential pulse-code modulation
--
--
--
--
--
--
--
--
-en^Sun Audio - Au file format
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^MIDI - Musical Instrument Digital Interface
--
-en^MPEG-4 Audio
--
--
--
-en^MPEG Audio
--
-en^Ogg Audio
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^DECE Audio
-en^Digital Winds Music
--
--
--
--
--
--
--
--
--
-en^DRA Audio
-en^DTS Audio
-en^DTS High Definition Audio
--
--
--
-en^Lucent Voice
-en^Microsoft PlayReady Ecosystem
--
--
-en^Nuera ECELP 4800
-en^Nuera ECELP 7470
-en^Nuera ECELP 9600
--
--
--
-en^Hit'n'Mix
--
--
--
--
-en^Open Web Media Project - Audio
-en^Advanced Audio Coding (AAC)
-en^Audio Interchange File Format
--
--
--
--
-en^M3U (Multimedia Playlist)
-en^Microsoft Windows Media Audio Redirector
-en^Microsoft Windows Media Audio
--
-en^Real Audio Sound
-en^Real Audio Sound
--
-en^Waveform Audio File Format (WAV)
--
-en^ChemDraw eXchange file
-en^Crystallographic Interchange Format
-en^CrystalMaker Data Format
-en^Chemical Markup Language
-en^Chemical Style Markup Language
--
-en^XYZ File Format
--
-en^Bitmap Image File
-en^Computer Graphics Metafile
--
--
--
-en^G3 Fax Image
-en^Graphics Interchange Format
-en^Image Exchange Format
--
-en^JPEG Image
--
--
-en^OpenGL Textures (KTX)
--
--
-en^Portable Network Graphics (PNG)
-en^BTIF
--
--
--
-en^Scalable Vector Graphics (SVG)
--
--
-en^Tagged Image File Format
--
-en^Photoshop Document
--
--
-en^DECE Graphic
--
-en^DjVu
-en^Close Captioning - Subtitle
-en^DWG Drawing
-en^AutoCAD DXF
-en^FastBid Sheet
-en^FlashPix
-en^FAST Search & Transfer ASA
-en^EDMICS 2000
-en^EDMICS 2000
--
--
--
--
-en^Microsoft Document Imaging Format
--
-en^FlashPix
--
--
--
--
--
--
--
--
-en^WAP Bitamp (WBMP)
-en^eXtended Image File Format (XIFF)
--
-en^WebP Image
--
--
-en^CMU Image
-en^Corel Metafile Exchange (CMX)
--
-en^FreeHand MX
--
-en^Icon Image
--
-en^Bitmap Image File
--
-en^PCX Image
-en^PICT Image
-en^Portable Anymap Image
-en^Portable Bitmap Format
-en^Portable Graymap Format
-en^Portable Pixmap Format
-en^Silicon Graphics RGB Bitmap
--
--
--
--
-en^X BitMap
--
--
-en^X PixMap
-en^X Window Dump
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^Email Message
--
--
--
--
--
--
--
-en^Initial Graphics Exchange Specification (IGES)
-en^Mesh Data Type
-en^COLLADA
-en^Autodesk Design Web Format (DWF)
--
-en^Geometric Description Language (GDL)
--
-en^Gen-Trix Studio
--
-en^Virtue MTS
--
--
--
--
-en^Virtue VTU
-en^Virtual Reality Modeling Language
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-en^iCalendar
--
-en^Cascading Style Sheets (CSS)
-en^Comma-Separated Values
--
--
--
--
--
--
--
--
--
-en^HyperText Markup Language (HTML)
--
--
--
--
-en^Notation3
--
--
-en^Text File
--
--
-en^PRS Lines Tag
--
--
--
-en^Rich Text Format (RTF)
--
--
--
--
-en^Standard Generalized Markup Language (SGML)
--
-en^Tab Separated Values
-en^troff
-en^Turtle (Terse RDF Triple Language)
--
-en^URI Resolution Services
--
--
--
-en^Curl - Applet
-en^Curl - Detached Applet
-en^Curl - Manifest File
-en^Curl - Source Code
--
--
--
--
--
-en^mod_fly / fly.cgi
-en^FLEXSTOR
-en^Graphviz
-en^In3D - 3DML
-en^In3D - 3DML
--
--
--
--
--
--
--
--
-en^J2ME App Descriptor
--
--
--
-en^Wireless Markup Language (WML)
-en^Wireless Markup Language Script (WMLScript)
-en^Assembler Source File
-en^C Source File
--
--
-en^Fortran Source File
-en^Java Source File
--
--
-en^Pascal Source File
--
-en^Setext
--
-en^UUEncode
-en^vCalendar
-en^vCard
--
--
--
--
--
-en^3GP
--
-en^3GP2
--
--
--
--
--
--
--
--
-en^H.261
-en^H.263
--
--
-en^H.264
--
--
--
-en^JPGVideo
--
-en^JPEG 2000 Compound Image File Format
-en^Motion JPEG 2000
--
--
--
-en^MPEG-4 Video
--
-en^MPEG Video
--
--
--
-en^Ogg Video
--
--
-en^Quicktime Video
--
--
--
--
--
--
--
--
--
-en^DECE High Definition Video
-en^DECE Mobile Video
--
-en^DECE PD Video
-en^DECE SD Video
-en^DECE Video
--
--
--
--
-en^FAST Search & Transfer ASA
--
--
--
--
--
--
--
--
--
-en^MPEG Url
-en^Microsoft PlayReady Ecosystem Video
--
--
--
--
--
--
--
--
--
-en^DECE MP4
-en^Vivo
-en^Open Web Media Project - Video
--
--
-en^Flash Video
-en^FLI/FLC Animation Format
-en^Flash Video
--
--
-en^M4v
--
--
--
-en^Microsoft Advanced Systems Format (ASF)
--
-en^Microsoft Windows Media
-en^Microsoft Windows Media Video
-en^Microsoft Windows Media Audio/Video Playlist
-en^Microsoft Windows Media Video Playlist
-en^Audio Video Interleave (AVI)
-en^SGI Movie
--
--
--
-en^CoolTalk
--
--
diff --git a/data/mime.obsolete.column b/data/mime.obsolete.column
deleted file mode 100644
index 653ce50..0000000
--- a/data/mime.obsolete.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-1
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-1
-0
-0
-0
-0
-0
-1
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-1
-1
-0
-0
-1
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-1
-0
-0
-0
-0
-0
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-1
-0
-0
-0
-0
-0
-1
-1
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-1
-1
-1
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-1
-0
-0
-0
-0
-1
-0
-0
-0
-1
-0
-1
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
diff --git a/data/mime.references.column b/data/mime.references.column
deleted file mode 100644
index 4fc0929..0000000
--- a/data/mime.references.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-IANA|RFC6015|{application/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/application/1d-interleaved-parityfec}
-IANA|[Ozgur_Oyman]|[ThreeGPP]|{application/3gpdash-qoe-report+xml=http://www.iana.org/assignments/media-types/application/3gpdash-qoe-report+xml}
-IANA|[John_M_Meredith]|{application/3gpp-ims+xml=http://www.iana.org/assignments/media-types/application/3gpp-ims+xml}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/A2L=http://www.iana.org/assignments/media-types/application/A2L}
--
--
-IANA|[Ehud_Shapiro]|{application/activemessage=http://www.iana.org/assignments/media-types/application/activemessage}
-IANA|RFC7285|{application/alto-costmap+json=http://www.iana.org/assignments/media-types/application/alto-costmap+json}
-IANA|RFC7285|{application/alto-costmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-costmapfilter+json}
-IANA|RFC7285|{application/alto-directory+json=http://www.iana.org/assignments/media-types/application/alto-directory+json}
-IANA|RFC7285|{application/alto-endpointcost+json=http://www.iana.org/assignments/media-types/application/alto-endpointcost+json}
-IANA|RFC7285|{application/alto-endpointcostparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointcostparams+json}
-IANA|RFC7285|{application/alto-endpointprop+json=http://www.iana.org/assignments/media-types/application/alto-endpointprop+json}
-IANA|RFC7285|{application/alto-endpointpropparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointpropparams+json}
-IANA|RFC7285|{application/alto-error+json=http://www.iana.org/assignments/media-types/application/alto-error+json}
-IANA|RFC7285|{application/alto-networkmap+json=http://www.iana.org/assignments/media-types/application/alto-networkmap+json}
-IANA|RFC7285|{application/alto-networkmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-networkmapfilter+json}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/AML=http://www.iana.org/assignments/media-types/application/AML}
-IANA|[Nathaniel_Borenstein]|{application/andrew-inset=http://www.iana.org/assignments/media-types/application/andrew-inset}
--
-IANA|[Patrik_Faltstrom]|{application/applefile=http://www.iana.org/assignments/media-types/application/applefile}
--
-IANA|[ASAM]|[Thomas_Thomsen]|{application/ATF=http://www.iana.org/assignments/media-types/application/ATF}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/ATFX=http://www.iana.org/assignments/media-types/application/ATFX}
-IANA|RFC4287|RFC5023|{application/atom+xml=http://www.iana.org/assignments/media-types/application/atom+xml}
-IANA|RFC5023|{application/atomcat+xml=http://www.iana.org/assignments/media-types/application/atomcat+xml}
-IANA|RFC6721|{application/atomdeleted+xml=http://www.iana.org/assignments/media-types/application/atomdeleted+xml}
-IANA|[Nathaniel_Borenstein]|{application/atomicmail=http://www.iana.org/assignments/media-types/application/atomicmail}
-IANA|RFC5023|{application/atomsvc+xml=http://www.iana.org/assignments/media-types/application/atomsvc+xml}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/ATXML=http://www.iana.org/assignments/media-types/application/ATXML}
-IANA|RFC4745|{application/auth-policy+xml=http://www.iana.org/assignments/media-types/application/auth-policy+xml}
-IANA|[ASHRAE]|[Dave_Robin]|{application/bacnet-xdd+zip=http://www.iana.org/assignments/media-types/application/bacnet-xdd+zip}
-IANA|RFC2442|{application/batch-SMTP=http://www.iana.org/assignments/media-types/application/batch-SMTP}
-IANA|RFC3080|{application/beep+xml=http://www.iana.org/assignments/media-types/application/beep+xml}
--
-IANA|RFC7265|{application/calendar+json=http://www.iana.org/assignments/media-types/application/calendar+json}
-IANA|RFC6321|{application/calendar+xml=http://www.iana.org/assignments/media-types/application/calendar+xml}
-IANA|RFC6910|{application/call-completion=http://www.iana.org/assignments/media-types/application/call-completion}
-IANA|RFC1895|{application/CALS-1840=http://www.iana.org/assignments/media-types/application/CALS-1840}
--
-IANA|RFC7049|{application/cbor=http://www.iana.org/assignments/media-types/application/cbor}
-IANA|RFC6503|{application/ccmp+xml=http://www.iana.org/assignments/media-types/application/ccmp+xml}
-IANA|RFC4267|{application/ccxml+xml=http://www.iana.org/assignments/media-types/application/ccxml+xml}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/CDFX+XML=http://www.iana.org/assignments/media-types/application/CDFX+XML}
-IANA|RFC6208|{application/cdmi-capability=http://www.iana.org/assignments/media-types/application/cdmi-capability}
-IANA|RFC6208|{application/cdmi-container=http://www.iana.org/assignments/media-types/application/cdmi-container}
-IANA|RFC6208|{application/cdmi-domain=http://www.iana.org/assignments/media-types/application/cdmi-domain}
-IANA|RFC6208|{application/cdmi-object=http://www.iana.org/assignments/media-types/application/cdmi-object}
-IANA|RFC6208|{application/cdmi-queue=http://www.iana.org/assignments/media-types/application/cdmi-queue}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/CEA=http://www.iana.org/assignments/media-types/application/CEA}
-IANA|[Gottfried_Zimmermann]|{application/cea-2018+xml=http://www.iana.org/assignments/media-types/application/cea-2018+xml}
-IANA|RFC4708|{application/cellml+xml=http://www.iana.org/assignments/media-types/application/cellml+xml}
-IANA|RFC6230|{application/cfw=http://www.iana.org/assignments/media-types/application/cfw}
--
-IANA|RFC7193|{application/cms=http://www.iana.org/assignments/media-types/application/cms}
-IANA|RFC3367|{application/cnrp+xml=http://www.iana.org/assignments/media-types/application/cnrp+xml}
-IANA|RFC7390|{application/coap-group+json=http://www.iana.org/assignments/media-types/application/coap-group+json}
-IANA|[David_Glazer]|{application/commonground=http://www.iana.org/assignments/media-types/application/commonground}
-IANA|RFC4575|{application/conference-info+xml=http://www.iana.org/assignments/media-types/application/conference-info+xml}
-IANA|RFC3880|{application/cpl+xml=http://www.iana.org/assignments/media-types/application/cpl+xml}
-IANA|RFC7030|{application/csrattrs=http://www.iana.org/assignments/media-types/application/csrattrs}
-IANA|[Ecma_International_Helpdesk]|{application/csta+xml=http://www.iana.org/assignments/media-types/application/csta+xml}
-IANA|[Ecma_International_Helpdesk]|{application/CSTAdata+xml=http://www.iana.org/assignments/media-types/application/CSTAdata+xml}
--
-IANA|[Donald_E._Eastlake_3rd]|{application/cybercash=http://www.iana.org/assignments/media-types/application/cybercash}
-IANA|[Thomas_Stockhammer]|[ISO-IEC_JTC1]|{application/dash+xml=http://www.iana.org/assignments/media-types/application/dash+xml}
-IANA|[David_Furbeck]|{application/dashdelta=http://www.iana.org/assignments/media-types/application/dashdelta}
-IANA|RFC4709|{application/davmount+xml=http://www.iana.org/assignments/media-types/application/davmount+xml}
-IANA|[Larry_Campbell]|{application/dca-rft=http://www.iana.org/assignments/media-types/application/dca-rft}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/DCD=http://www.iana.org/assignments/media-types/application/DCD}
-IANA|[Larry_Campbell]|{application/dec-dx=http://www.iana.org/assignments/media-types/application/dec-dx}
-IANA|RFC4235|{application/dialog-info+xml=http://www.iana.org/assignments/media-types/application/dialog-info+xml}
-IANA|RFC3240|{application/dicom=http://www.iana.org/assignments/media-types/application/dicom}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/DII=http://www.iana.org/assignments/media-types/application/DII}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/DIT=http://www.iana.org/assignments/media-types/application/DIT}
-IANA|RFC4027|{application/dns=http://www.iana.org/assignments/media-types/application/dns}
--
--
-IANA|RFC6063|{application/dskpp+xml=http://www.iana.org/assignments/media-types/application/dskpp+xml}
-IANA|RFC5698|{application/dssc+der=http://www.iana.org/assignments/media-types/application/dssc+der}
-IANA|RFC5698|{application/dssc+xml=http://www.iana.org/assignments/media-types/application/dssc+xml}
-IANA|RFC3029|{application/dvcs=http://www.iana.org/assignments/media-types/application/dvcs}
--
-IANA|RFC4329|{application/ecmascript=http://www.iana.org/assignments/media-types/application/ecmascript}
-IANA|RFC1767|{application/EDI-consent=http://www.iana.org/assignments/media-types/application/EDI-consent}
-IANA|RFC1767|{application/EDI-X12=http://www.iana.org/assignments/media-types/application/EDI-X12}
-IANA|RFC1767|{application/EDIFACT=http://www.iana.org/assignments/media-types/application/EDIFACT}
-IANA|[W3C]|{http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration}
-IANA|[W3C]|[Kazuyuki_Ashimura]|{application/emotionml+xml=http://www.iana.org/assignments/media-types/application/emotionml+xml}
-IANA|RFC6849|{application/encaprtp=http://www.iana.org/assignments/media-types/application/encaprtp}
-IANA|RFC5730|{application/epp+xml=http://www.iana.org/assignments/media-types/application/epp+xml}
-IANA|[International_Digital_Publishing_Forum]|[William_McCoy]|{application/epub+zip=http://www.iana.org/assignments/media-types/application/epub+zip}
-IANA|[Steve_Katz]|{application/eshop=http://www.iana.org/assignments/media-types/application/eshop}
-IANA|RFC4735|{application/example=http://www.iana.org/assignments/media-types/application/example}
--
-IANA|[W3C]|{http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration}
-IANA|[ITU-T_ASN.1_Rapporteur]|{application/fastinfoset=http://www.iana.org/assignments/media-types/application/fastinfoset}
-IANA|[ITU-T_ASN.1_Rapporteur]|{application/fastsoap=http://www.iana.org/assignments/media-types/application/fastsoap}
-IANA|RFC6726|{application/fdt+xml=http://www.iana.org/assignments/media-types/application/fdt+xml}
-IANA|RFC4047|{application/fits=http://www.iana.org/assignments/media-types/application/fits}
-IANA|[Levantovsky]|{application/font-sfnt=http://www.iana.org/assignments/media-types/application/font-sfnt}
-IANA|RFC3073|{application/font-tdpfr=http://www.iana.org/assignments/media-types/application/font-tdpfr}
-IANA|[W3C]|{application/font-woff=http://www.iana.org/assignments/media-types/application/font-woff}
--
-IANA|RFC6230|{application/framework-attributes+xml=http://www.iana.org/assignments/media-types/application/framework-attributes+xml}
--
--
--
--
--
-IANA|RFC6713|{application/gzip=http://www.iana.org/assignments/media-types/application/gzip}
-IANA|RFC4573|{application/H224=http://www.iana.org/assignments/media-types/application/H224}
-IANA|RFC5985|{application/held+xml=http://www.iana.org/assignments/media-types/application/held+xml}
--
-IANA|RFC7230|{application/http=http://www.iana.org/assignments/media-types/application/http}
-IANA|[Michael_Domino]|{application/hyperstudio=http://www.iana.org/assignments/media-types/application/hyperstudio}
--
-IANA|RFC5408|{application/ibe-key-request+xml=http://www.iana.org/assignments/media-types/application/ibe-key-request+xml}
-IANA|RFC5408|{application/ibe-pkg-reply+xml=http://www.iana.org/assignments/media-types/application/ibe-pkg-reply+xml}
-IANA|RFC5408|{application/ibe-pp-data=http://www.iana.org/assignments/media-types/application/ibe-pp-data}
-IANA|[Curtis_Parks]|{application/iges=http://www.iana.org/assignments/media-types/application/iges}
-IANA|RFC3994|{application/im-iscomposing+xml=http://www.iana.org/assignments/media-types/application/im-iscomposing+xml}
--
-IANA|RFC2652|{application/index=http://www.iana.org/assignments/media-types/application/index}
-IANA|RFC2652|{application/index.cmd=http://www.iana.org/assignments/media-types/application/index.cmd}
-IANA|RFC2652|{application/index-obj=http://www.iana.org/assignments/media-types/application/index-obj}
-IANA|RFC2652|{application/index.response=http://www.iana.org/assignments/media-types/application/index.response}
-IANA|RFC2652|{application/index.vnd=http://www.iana.org/assignments/media-types/application/index.vnd}
-IANA|[Kazuyuki_Ashimura]|{application/inkml+xml=http://www.iana.org/assignments/media-types/application/inkml+xml}
-IANA|RFC2935|{application/IOTP=http://www.iana.org/assignments/media-types/application/IOTP}
-IANA|RFC5655|{application/ipfix=http://www.iana.org/assignments/media-types/application/ipfix}
-IANA|RFC2910|{application/ipp=http://www.iana.org/assignments/media-types/application/ipp}
-IANA|RFC3204|{application/ISUP=http://www.iana.org/assignments/media-types/application/ISUP}
-IANA|[W3C]|[ITS-IG-W3C]|{application/its+xml=http://www.iana.org/assignments/media-types/application/its+xml}
--
--
--
-IANA|RFC4329|{application/javascript=http://www.iana.org/assignments/media-types/application/javascript}
-IANA|RFC7515|{application/jose=http://www.iana.org/assignments/media-types/application/jose}
-IANA|RFC7515|{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}
-IANA|RFC7033|{application/jrd+json=http://www.iana.org/assignments/media-types/application/jrd+json}
-IANA|RFC7158|{application/json=http://www.iana.org/assignments/media-types/application/json}
-IANA|RFC6902|{application/json-patch+json=http://www.iana.org/assignments/media-types/application/json-patch+json}
-IANA|RFC7464|{application/json-seq=http://www.iana.org/assignments/media-types/application/json-seq}
--
-IANA|RFC7517|{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}
-IANA|RFC7517|{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}
-IANA|RFC7519|{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}
-IANA|RFC4730|{application/kpml-request+xml=http://www.iana.org/assignments/media-types/application/kpml-request+xml}
-IANA|RFC4730|{application/kpml-response+xml=http://www.iana.org/assignments/media-types/application/kpml-response+xml}
-IANA|[W3C]|[Ivan_Herman]|{application/ld+json=http://www.iana.org/assignments/media-types/application/ld+json}
-IANA|RFC6690|{application/link-format=http://www.iana.org/assignments/media-types/application/link-format}
-IANA|RFC7200|{application/load-control+xml=http://www.iana.org/assignments/media-types/application/load-control+xml}
-IANA|RFC5222|{application/lost+xml=http://www.iana.org/assignments/media-types/application/lost+xml}
-IANA|RFC6739|{application/lostsync+xml=http://www.iana.org/assignments/media-types/application/lostsync+xml}
--
-IANA|[ASAM]|[Thomas_Thomsen]|{application/LXF=http://www.iana.org/assignments/media-types/application/LXF}
-IANA|[Patrik_Faltstrom]|{application/mac-binhex40=http://www.iana.org/assignments/media-types/application/mac-binhex40}
--
--
-IANA|[Paul_Lindner]|{application/macwriteii=http://www.iana.org/assignments/media-types/application/macwriteii}
-IANA|RFC6207|{application/mads+xml=http://www.iana.org/assignments/media-types/application/mads+xml}
-IANA|RFC2220|{application/marc=http://www.iana.org/assignments/media-types/application/marc}
-IANA|RFC6207|{application/marcxml+xml=http://www.iana.org/assignments/media-types/application/marcxml+xml}
--
-IANA|[Wolfram]|{application/mathematica=http://www.iana.org/assignments/media-types/application/mathematica}
--
-IANA|[W3C]|{http://www.w3.org/TR/MathML3/appendixb.html}
-IANA|[W3C]|{http://www.w3.org/TR/MathML3/appendixb.html}
-IANA|[W3C]|{http://www.w3.org/TR/MathML3/appendixb.html}
-IANA|[ThreeGPP]|{application/mbms-associated-procedure-description+xml=http://www.iana.org/assignments/media-types/application/mbms-associated-procedure-description+xml}
-IANA|[ThreeGPP]|{application/mbms-deregister+xml=http://www.iana.org/assignments/media-types/application/mbms-deregister+xml}
-IANA|[ThreeGPP]|{application/mbms-envelope+xml=http://www.iana.org/assignments/media-types/application/mbms-envelope+xml}
-IANA|[ThreeGPP]|{application/mbms-msk+xml=http://www.iana.org/assignments/media-types/application/mbms-msk+xml}
-IANA|[ThreeGPP]|{application/mbms-msk-response+xml=http://www.iana.org/assignments/media-types/application/mbms-msk-response+xml}
-IANA|[ThreeGPP]|{application/mbms-protection-description+xml=http://www.iana.org/assignments/media-types/application/mbms-protection-description+xml}
-IANA|[ThreeGPP]|{application/mbms-reception-report+xml=http://www.iana.org/assignments/media-types/application/mbms-reception-report+xml}
-IANA|[ThreeGPP]|{application/mbms-register+xml=http://www.iana.org/assignments/media-types/application/mbms-register+xml}
-IANA|[ThreeGPP]|{application/mbms-register-response+xml=http://www.iana.org/assignments/media-types/application/mbms-register-response+xml}
-IANA|[ThreeGPP]|[Eric_Turcotte]|{application/mbms-schedule+xml=http://www.iana.org/assignments/media-types/application/mbms-schedule+xml}
-IANA|[ThreeGPP]|{application/mbms-user-service-description+xml=http://www.iana.org/assignments/media-types/application/mbms-user-service-description+xml}
-IANA|RFC4155|{application/mbox=http://www.iana.org/assignments/media-types/application/mbox}
-IANA|RFC6796|{application/media-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/media-policy-dataset+xml}
-IANA|RFC5168|{application/media_control+xml=http://www.iana.org/assignments/media-types/application/media_control+xml}
-IANA|RFC5022|{application/mediaservercontrol+xml=http://www.iana.org/assignments/media-types/application/mediaservercontrol+xml}
-IANA|RFC7396|{application/merge-patch+json=http://www.iana.org/assignments/media-types/application/merge-patch+json}
--
-IANA|RFC5854|{application/metalink4+xml=http://www.iana.org/assignments/media-types/application/metalink4+xml}
-IANA|RFC6207|{application/mets+xml=http://www.iana.org/assignments/media-types/application/mets+xml}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/MF4=http://www.iana.org/assignments/media-types/application/MF4}
-IANA|RFC3830|{application/mikey=http://www.iana.org/assignments/media-types/application/mikey}
-IANA|RFC6207|{application/mods+xml=http://www.iana.org/assignments/media-types/application/mods+xml}
-IANA|RFC1848|{application/moss-keys=http://www.iana.org/assignments/media-types/application/moss-keys}
-IANA|RFC1848|{application/moss-signature=http://www.iana.org/assignments/media-types/application/moss-signature}
-IANA|RFC1848|{application/mosskey-data=http://www.iana.org/assignments/media-types/application/mosskey-data}
-IANA|RFC1848|{application/mosskey-request=http://www.iana.org/assignments/media-types/application/mosskey-request}
-IANA|RFC6381|[David_Singer]|{application/mp21=http://www.iana.org/assignments/media-types/application/mp21}
-IANA|RFC4337|RFC6381|{application/mp4=http://www.iana.org/assignments/media-types/application/mp4}
-IANA|RFC3640|{application/mpeg4-generic=http://www.iana.org/assignments/media-types/application/mpeg4-generic}
-IANA|RFC4337|{application/mpeg4-iod=http://www.iana.org/assignments/media-types/application/mpeg4-iod}
-IANA|RFC4337|{application/mpeg4-iod-xmt=http://www.iana.org/assignments/media-types/application/mpeg4-iod-xmt}
-IANA|RFC6917|{application/mrb-consumer+xml=http://www.iana.org/assignments/media-types/application/mrb-consumer+xml}
-IANA|RFC6917|{application/mrb-publish+xml=http://www.iana.org/assignments/media-types/application/mrb-publish+xml}
-IANA|RFC6231|{application/msc-ivr+xml=http://www.iana.org/assignments/media-types/application/msc-ivr+xml}
-IANA|RFC6505|{application/msc-mixer+xml=http://www.iana.org/assignments/media-types/application/msc-mixer+xml}
-IANA|[Paul_Lindner]|{application/msword=http://www.iana.org/assignments/media-types/application/msword}
-IANA|RFC4539|{application/mxf=http://www.iana.org/assignments/media-types/application/mxf}
-IANA|RFC4707|{application/nasdata=http://www.iana.org/assignments/media-types/application/nasdata}
--
-IANA|RFC5537|{application/news-checkgroups=http://www.iana.org/assignments/media-types/application/news-checkgroups}
-IANA|RFC5537|{application/news-groupinfo=http://www.iana.org/assignments/media-types/application/news-groupinfo}
-IANA|RFC1036|[Spencer]
-IANA|RFC5537|{application/news-transmission=http://www.iana.org/assignments/media-types/application/news-transmission}
-IANA|RFC6787|{application/nlsml+xml=http://www.iana.org/assignments/media-types/application/nlsml+xml}
-IANA|[Michael_Hammer]|{application/nss=http://www.iana.org/assignments/media-types/application/nss}
-IANA|RFC6960|{application/ocsp-request=http://www.iana.org/assignments/media-types/application/ocsp-request}
-IANA|RFC6960|{application/ocsp-response=http://www.iana.org/assignments/media-types/application/ocsp-response}
-IANA|RFC2045|RFC2046|{application/octet-stream=http://www.iana.org/assignments/media-types/application/octet-stream}
-IANA|RFC2045|RFC2046|{application/ODA=http://www.iana.org/assignments/media-types/application/ODA}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/ODX=http://www.iana.org/assignments/media-types/application/ODX}
-IANA|RFC4839|{application/oebps-package+xml=http://www.iana.org/assignments/media-types/application/oebps-package+xml}
-IANA|RFC5334|{application/ogg=http://www.iana.org/assignments/media-types/application/ogg}
--
--
-IANA|[Ecma_International_Helpdesk]|{application/oxps=http://www.iana.org/assignments/media-types/application/oxps}
-IANA|RFC6940|{application/p2p-overlay+xml=http://www.iana.org/assignments/media-types/application/p2p-overlay+xml}
-IANA|RFC5109
-IANA|RFC5261|{application/patch-ops-error+xml=http://www.iana.org/assignments/media-types/application/patch-ops-error+xml}
-IANA|RFC3778|{application/pdf=http://www.iana.org/assignments/media-types/application/pdf}
-IANA|[ASAM]|[Thomas_Thomsen]|{application/PDX=http://www.iana.org/assignments/media-types/application/PDX}
-IANA|RFC3156|{application/pgp-encrypted=http://www.iana.org/assignments/media-types/application/pgp-encrypted}
-IANA|RFC3156
-IANA|RFC3156|{application/pgp-signature=http://www.iana.org/assignments/media-types/application/pgp-signature}
--
-IANA|RFC3863|{application/pidf+xml=http://www.iana.org/assignments/media-types/application/pidf+xml}
-IANA|RFC5262|{application/pidf-diff+xml=http://www.iana.org/assignments/media-types/application/pidf-diff+xml}
-IANA|RFC5967|{application/pkcs10=http://www.iana.org/assignments/media-types/application/pkcs10}
-IANA|[IETF]|{application/pkcs12=http://www.iana.org/assignments/media-types/application/pkcs12}
-IANA|RFC5751|RFC7114|{application/pkcs7-mime=http://www.iana.org/assignments/media-types/application/pkcs7-mime}
-IANA|RFC5751|{application/pkcs7-signature=http://www.iana.org/assignments/media-types/application/pkcs7-signature}
-IANA|RFC5958|{application/pkcs8=http://www.iana.org/assignments/media-types/application/pkcs8}
-IANA|RFC5877|{application/pkix-attr-cert=http://www.iana.org/assignments/media-types/application/pkix-attr-cert}
-IANA|RFC2585|{application/pkix-cert=http://www.iana.org/assignments/media-types/application/pkix-cert}
-IANA|RFC2585|{application/pkix-crl=http://www.iana.org/assignments/media-types/application/pkix-crl}
-IANA|RFC6066|{application/pkix-pkipath=http://www.iana.org/assignments/media-types/application/pkix-pkipath}
-IANA|RFC2510|{application/pkixcmp=http://www.iana.org/assignments/media-types/application/pkixcmp}
-IANA|RFC4267|{application/pls+xml=http://www.iana.org/assignments/media-types/application/pls+xml}
-IANA|RFC4354|{application/poc-settings+xml=http://www.iana.org/assignments/media-types/application/poc-settings+xml}
-IANA|RFC2045|RFC2046|{application/postscript=http://www.iana.org/assignments/media-types/application/postscript}
--
--
-IANA|[W3C]|[Ivan_Herman]|{application/provenance+xml=http://www.iana.org/assignments/media-types/application/provenance+xml}
-IANA|[Harald_T._Alvestrand]|{application/prs.alvestrand.titrax-sheet=http://www.iana.org/assignments/media-types/application/prs.alvestrand.titrax-sheet}
-IANA|[Khemchart_Rungchavalnont]|{application/prs.cww=http://www.iana.org/assignments/media-types/application/prs.cww}
-IANA|[Giulio_Zambon]|{application/prs.hpub+zip=http://www.iana.org/assignments/media-types/application/prs.hpub+zip}
-IANA|[Jay_Doggett]|{application/prs.nprend=http://www.iana.org/assignments/media-types/application/prs.nprend}
-IANA|[Bill_Janssen]|{application/prs.plucker=http://www.iana.org/assignments/media-types/application/prs.plucker}
-IANA|[Toby_Inkster]|{application/prs.rdf-xml-crypt=http://www.iana.org/assignments/media-types/application/prs.rdf-xml-crypt}
-IANA|[Maik_Stührenberg]|{application/prs.xsf+xml=http://www.iana.org/assignments/media-types/application/prs.xsf+xml}
-IANA|RFC6030|{application/pskc+xml=http://www.iana.org/assignments/media-types/application/pskc+xml}
-IANA|RFC3204|{application/QSIG=http://www.iana.org/assignments/media-types/application/QSIG}
--
-IANA|RFC6682|{application/raptorfec=http://www.iana.org/assignments/media-types/application/raptorfec}
-IANA|RFC7483|{application/rdap+json=http://www.iana.org/assignments/media-types/application/rdap+json}
-IANA|RFC3870|{application/rdf+xml=http://www.iana.org/assignments/media-types/application/rdf+xml}
-IANA|RFC3680|{application/reginfo+xml=http://www.iana.org/assignments/media-types/application/reginfo+xml}
-IANA|{http://www.jtc1sc34.org/repository/0661.pdf}|{application/relax-ng-compact-syntax=http://www.iana.org/assignments/media-types/application/relax-ng-compact-syntax}
-IANA|RFC1486|[Marshall_Rose]|{application/remote-printing=http://www.iana.org/assignments/media-types/application/remote-printing}
--
-IANA|RFC7071|{application/reputon+json=http://www.iana.org/assignments/media-types/application/reputon+json}
-IANA|RFC4826|{application/resource-lists+xml=http://www.iana.org/assignments/media-types/application/resource-lists+xml}
-IANA|RFC5362|{application/resource-lists-diff+xml=http://www.iana.org/assignments/media-types/application/resource-lists-diff+xml}
-IANA|[Nick_Smith]|{application/riscos=http://www.iana.org/assignments/media-types/application/riscos}
-IANA|RFC4662|{application/rlmi+xml=http://www.iana.org/assignments/media-types/application/rlmi+xml}
-IANA|RFC4826|{application/rls-services+xml=http://www.iana.org/assignments/media-types/application/rls-services+xml}
-IANA|RFC6493|{application/rpki-ghostbusters=http://www.iana.org/assignments/media-types/application/rpki-ghostbusters}
-IANA|RFC6481|{application/rpki-manifest=http://www.iana.org/assignments/media-types/application/rpki-manifest}
-IANA|RFC6481|{application/rpki-roa=http://www.iana.org/assignments/media-types/application/rpki-roa}
-IANA|RFC6492|{application/rpki-updown=http://www.iana.org/assignments/media-types/application/rpki-updown}
--
--
-IANA|[Paul_Lindner]|{application/rtf=http://www.iana.org/assignments/media-types/application/rtf}
-IANA|RFC6849|{application/rtploopback=http://www.iana.org/assignments/media-types/application/rtploopback}
-IANA|RFC4588|{application/rtx=http://www.iana.org/assignments/media-types/application/rtx}
-IANA|[OASIS_Security_Services_Technical_Committee_SSTC]|{application/samlassertion+xml=http://www.iana.org/assignments/media-types/application/samlassertion+xml}
-IANA|[OASIS_Security_Services_Technical_Committee_SSTC]|{application/samlmetadata+xml=http://www.iana.org/assignments/media-types/application/samlmetadata+xml}
-IANA|RFC3823|{application/sbml+xml=http://www.iana.org/assignments/media-types/application/sbml+xml}
-IANA|[SIS]|[Oskar_Jonsson]|{application/scaip+xml=http://www.iana.org/assignments/media-types/application/scaip+xml}
-IANA|DRAFT:draft-ietf-scim-api-19|{application/scim+json=http://www.iana.org/assignments/media-types/application/scim+json}
-IANA|RFC5055|{application/scvp-cv-request=http://www.iana.org/assignments/media-types/application/scvp-cv-request}
-IANA|RFC5055|{application/scvp-cv-response=http://www.iana.org/assignments/media-types/application/scvp-cv-response}
-IANA|RFC5055|{application/scvp-vp-request=http://www.iana.org/assignments/media-types/application/scvp-vp-request}
-IANA|RFC5055|{application/scvp-vp-response=http://www.iana.org/assignments/media-types/application/scvp-vp-response}
-IANA|RFC4566|{application/sdp=http://www.iana.org/assignments/media-types/application/sdp}
-IANA|[Robby_Simpson]|[ZigBee]|{application/sep+xml=http://www.iana.org/assignments/media-types/application/sep+xml}
-IANA|[Robby_Simpson]|[ZigBee]|{application/sep-exi=http://www.iana.org/assignments/media-types/application/sep-exi}
-IANA|[ThreeGPP]|[Frederic_Firmin]|{application/session-info=http://www.iana.org/assignments/media-types/application/session-info}
--
-IANA|[Brian_Korver]|{application/set-payment=http://www.iana.org/assignments/media-types/application/set-payment}
-IANA|[Brian_Korver]|{application/set-payment-initiation=http://www.iana.org/assignments/media-types/application/set-payment-initiation}
-IANA|[Brian_Korver]|{application/set-registration=http://www.iana.org/assignments/media-types/application/set-registration}
-IANA|[Brian_Korver]|{application/set-registration-initiation=http://www.iana.org/assignments/media-types/application/set-registration-initiation}
-IANA|RFC1874|{application/SGML=http://www.iana.org/assignments/media-types/application/SGML}
-IANA|[Paul_Grosso]|{application/sgml-open-catalog=http://www.iana.org/assignments/media-types/application/sgml-open-catalog}
-IANA|RFC4194|{application/shf+xml=http://www.iana.org/assignments/media-types/application/shf+xml}
-IANA|RFC5228|{application/sieve=http://www.iana.org/assignments/media-types/application/sieve}
-IANA|RFC4661|{application/simple-filter+xml=http://www.iana.org/assignments/media-types/application/simple-filter+xml}
-IANA|RFC3842|{application/simple-message-summary=http://www.iana.org/assignments/media-types/application/simple-message-summary}
-IANA|[ThreeGPP]|{application/simpleSymbolContainer=http://www.iana.org/assignments/media-types/application/simpleSymbolContainer}
--
-IANA|[Terry_Crowley]|{application/slate=http://www.iana.org/assignments/media-types/application/slate}
-IANA|RFC4536|{application/smil=http://www.iana.org/assignments/media-types/application/smil}
-IANA|RFC4536|{application/smil+xml=http://www.iana.org/assignments/media-types/application/smil+xml}
-IANA|RFC6597|{application/smpte336m=http://www.iana.org/assignments/media-types/application/smpte336m}
-IANA|[ITU-T_ASN.1_Rapporteur]|{application/soap+fastinfoset=http://www.iana.org/assignments/media-types/application/soap+fastinfoset}
-IANA|RFC3902|{application/soap+xml=http://www.iana.org/assignments/media-types/application/soap+xml}
--
-IANA|[W3C]|{http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType}
-IANA|[W3C]|{http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime}
-IANA|RFC3910|{application/spirits-event+xml=http://www.iana.org/assignments/media-types/application/spirits-event+xml}
-IANA|RFC6922|{application/sql=http://www.iana.org/assignments/media-types/application/sql}
-IANA|RFC4267|{application/srgs=http://www.iana.org/assignments/media-types/application/srgs}
-IANA|RFC4267|{application/srgs+xml=http://www.iana.org/assignments/media-types/application/srgs+xml}
-IANA|RFC6207|{application/sru+xml=http://www.iana.org/assignments/media-types/application/sru+xml}
--
-IANA|RFC4267|{application/ssml+xml=http://www.iana.org/assignments/media-types/application/ssml+xml}
--
-IANA|RFC5934|{application/tamp-apex-update=http://www.iana.org/assignments/media-types/application/tamp-apex-update}
-IANA|RFC5934|{application/tamp-apex-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-apex-update-confirm}
-IANA|RFC5934|{application/tamp-community-update=http://www.iana.org/assignments/media-types/application/tamp-community-update}
-IANA|RFC5934|{application/tamp-community-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-community-update-confirm}
-IANA|RFC5934|{application/tamp-error=http://www.iana.org/assignments/media-types/application/tamp-error}
-IANA|RFC5934|{application/tamp-sequence-adjust=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust}
-IANA|RFC5934|{application/tamp-sequence-adjust-confirm=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust-confirm}
-IANA|RFC5934|{application/tamp-status-query=http://www.iana.org/assignments/media-types/application/tamp-status-query}
-IANA|RFC5934|{application/tamp-status-response=http://www.iana.org/assignments/media-types/application/tamp-status-response}
-IANA|RFC5934|{application/tamp-update=http://www.iana.org/assignments/media-types/application/tamp-update}
-IANA|RFC5934|{application/tamp-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-update-confirm}
-IANA|RFC6129|{application/tei+xml=http://www.iana.org/assignments/media-types/application/tei+xml}
-IANA|RFC5941|{application/thraud+xml=http://www.iana.org/assignments/media-types/application/thraud+xml}
-IANA|RFC3161|{application/timestamp-query=http://www.iana.org/assignments/media-types/application/timestamp-query}
-IANA|RFC3161|{application/timestamp-reply=http://www.iana.org/assignments/media-types/application/timestamp-reply}
-IANA|RFC5955|{application/timestamped-data=http://www.iana.org/assignments/media-types/application/timestamped-data}
--
-IANA|[W3C]|[W3C_Timed_Text_Working_Group]|{application/ttml+xml=http://www.iana.org/assignments/media-types/application/ttml+xml}
-IANA|[Linda_Welsh]|{application/tve-trigger=http://www.iana.org/assignments/media-types/application/tve-trigger}
-IANA|RFC5109|{application/ulpfec=http://www.iana.org/assignments/media-types/application/ulpfec}
-IANA|[Gottfried_Zimmermann]|{application/urc-grpsheet+xml=http://www.iana.org/assignments/media-types/application/urc-grpsheet+xml}
-IANA|[Gottfried_Zimmermann]|{application/urc-ressheet+xml=http://www.iana.org/assignments/media-types/application/urc-ressheet+xml}
-IANA|[Gottfried_Zimmermann]|{application/urc-targetdesc+xml=http://www.iana.org/assignments/media-types/application/urc-targetdesc+xml}
-IANA|[Gottfried_Zimmermann]|{application/urc-uisocketdesc+xml=http://www.iana.org/assignments/media-types/application/urc-uisocketdesc+xml}
-IANA|RFC7095|{application/vcard+json=http://www.iana.org/assignments/media-types/application/vcard+json}
-IANA|RFC6351|{application/vcard+xml=http://www.iana.org/assignments/media-types/application/vcard+xml}
--
-IANA|RFC2122|{application/vemmi=http://www.iana.org/assignments/media-types/application/vemmi}
--
-IANA|[Frederic_Firmin]|{application/vnd.3gpp-prose+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp-prose+xml}
-IANA|[Frederic_Firmin]|{application/vnd.3gpp-prose-pc3ch+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp-prose-pc3ch+xml}
-IANA|[John_M_Meredith]|{application/vnd.3gpp.bsf+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.bsf+xml}
-IANA|[Frederic_Firmin]|{application/vnd.3gpp.mid-call+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.mid-call+xml}
-IANA|[John_M_Meredith]|{application/vnd.3gpp.pic-bw-large=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-large}
-IANA|[John_M_Meredith]|{application/vnd.3gpp.pic-bw-small=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-small}
-IANA|[John_M_Meredith]|{application/vnd.3gpp.pic-bw-var=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-var}
-IANA|[John_M_Meredith]|{application/vnd.3gpp.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp.sms}
-IANA|[Frederic_Firmin]|{application/vnd.3gpp.state-and-event-info+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.state-and-event-info+xml}
-IANA|[Frederic_Firmin]|{application/vnd.3gpp.ussd+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.ussd+xml}
-IANA|[Andy_Dryden]|{application/vnd.3gpp2.bcmcsinfo+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.bcmcsinfo+xml}
-IANA|[AC_Mahendran]|{application/vnd.3gpp2.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.sms}
-IANA|[AC_Mahendran]|{application/vnd.3gpp2.tcap=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.tcap}
-IANA|[Michael_OBrien]|{application/vnd.3M.Post-it-Notes=http://www.iana.org/assignments/media-types/application/vnd.3M.Post-it-Notes}
-IANA|[Steve_Leow]|{application/vnd.accpac.simply.aso=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.aso}
-IANA|[Steve_Leow]|{application/vnd.accpac.simply.imp=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.imp}
-IANA|[Dovid_Lubin]|{application/vnd-acucobol=http://www.iana.org/assignments/media-types/application/vnd-acucobol}
-IANA|[Dovid_Lubin]|{application/vnd.acucorp=http://www.iana.org/assignments/media-types/application/vnd.acucorp}
--
-IANA|[Henrik_Andersson]|{application/vnd.adobe.flash-movie=http://www.iana.org/assignments/media-types/application/vnd.adobe.flash-movie}
-IANA|[Chris_Solc]|{application/vnd.adobe.formscentral.fcdt=http://www.iana.org/assignments/media-types/application/vnd.adobe.formscentral.fcdt}
-IANA|[Robert_Brambley]|[Steven_Heintz]|{application/vnd.adobe.fxp=http://www.iana.org/assignments/media-types/application/vnd.adobe.fxp}
-IANA|[Tapani_Otala]|{application/vnd.adobe.partial-upload=http://www.iana.org/assignments/media-types/application/vnd.adobe.partial-upload}
-IANA|[John_Brinkman]|{application/vnd.adobe.xdp+xml=http://www.iana.org/assignments/media-types/application/vnd.adobe.xdp+xml}
-IANA|[Roberto_Perelman]|{application/vnd.adobe.xfdf=http://www.iana.org/assignments/media-types/application/vnd.adobe.xfdf}
-IANA|[Jay_Moskowitz]|{application/vnd.aether.imp=http://www.iana.org/assignments/media-types/application/vnd.aether.imp}
-IANA|[Katsuhiko_Ichinose]|{application/vnd.ah-barcode=http://www.iana.org/assignments/media-types/application/vnd.ah-barcode}
-IANA|[Tor_Kristensen]|{application/vnd.ahead.space=http://www.iana.org/assignments/media-types/application/vnd.ahead.space}
-IANA|[Daniel_Mould]|[Gary_Clueit]|{application/vnd.airzip.filesecure.azf=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azf}
-IANA|[Daniel_Mould]|[Gary_Clueit]|{application/vnd.airzip.filesecure.azs=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azs}
--
-IANA|[Gary_Sands]|{application/vnd.americandynamics.acc=http://www.iana.org/assignments/media-types/application/vnd.americandynamics.acc}
-IANA|[Kevin_Blumberg]|{application/vnd.amiga.ami=http://www.iana.org/assignments/media-types/application/vnd.amiga.ami}
-IANA|[Mike_Amundsen]|{application/vnd.amundsen.maze+xml=http://www.iana.org/assignments/media-types/application/vnd.amundsen.maze+xml}
--
-IANA|[Kerrick_Staley]|{application/vnd.anki=http://www.iana.org/assignments/media-types/application/vnd.anki}
-IANA|[Hiroyoshi_Mori]|{application/vnd.anser-web-certificate-issue-initiation=http://www.iana.org/assignments/media-types/application/vnd.anser-web-certificate-issue-initiation}
--
-IANA|[Daniel_Shelton]|{application/vnd.antix.game-component=http://www.iana.org/assignments/media-types/application/vnd.antix.game-component}
-IANA|[Roger_Meier]|{application/vnd.apache.thrift.binary=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.binary}
-IANA|[Roger_Meier]|{application/vnd.apache.thrift.compact=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.compact}
-IANA|[Roger_Meier]|{application/vnd.apache.thrift.json=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.json}
-IANA|[Steve_Klabnik]|{application/vnd.api+json=http://www.iana.org/assignments/media-types/application/vnd.api+json}
-IANA|[Peter_Bierman]|{application/vnd.apple.installer+xml=http://www.iana.org/assignments/media-types/application/vnd.apple.installer+xml}
-IANA|[David_Singer]|[Roger_Pantos]|{application/vnd.apple.mpegurl=http://www.iana.org/assignments/media-types/application/vnd.apple.mpegurl}
-{Passbook Programming Guide=https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/PassKit_PG/Chapters/Introduction.html}
-IANA|[Bill_Fenner]|{application/vnd.arastra.swi=http://www.iana.org/assignments/media-types/application/vnd.arastra.swi}
-IANA|[Bill_Fenner]|{application/vnd.aristanetworks.swi=http://www.iana.org/assignments/media-types/application/vnd.aristanetworks.swi}
-IANA|[Christopher_Smith]|{application/vnd.artsquare=http://www.iana.org/assignments/media-types/application/vnd.artsquare}
-IANA|[Christopher_Snazell]|{application/vnd.astraea-software.iota=http://www.iana.org/assignments/media-types/application/vnd.astraea-software.iota}
-IANA|[Horia_Cristian_Slusanschi]|{application/vnd.audiograph=http://www.iana.org/assignments/media-types/application/vnd.audiograph}
-IANA|[Mike_Hearn]|{application/vnd.autopackage=http://www.iana.org/assignments/media-types/application/vnd.autopackage}
-IANA|[Vladimir_Vysotsky]|{application/vnd.avistar+xml=http://www.iana.org/assignments/media-types/application/vnd.avistar+xml}
-IANA|[Giacomo_Guilizzoni]|{application/vnd.balsamiq.bmml+xml=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmml+xml}
-IANA|[Giacomo_Guilizzoni]|{application/vnd.balsamiq.bmpr=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmpr}
-IANA|[Jegulsky]|{application/vnd.bekitzur-stech+json=http://www.iana.org/assignments/media-types/application/vnd.bekitzur-stech+json}
-IANA|[Pathway_Commons]|{application/vnd.biopax.rdf+xml=http://www.iana.org/assignments/media-types/application/vnd.biopax.rdf+xml}
-IANA|[Thomas_Holmstrom]|{application/vnd.blueice.multipass=http://www.iana.org/assignments/media-types/application/vnd.blueice.multipass}
-IANA|[Mike_Foley]|{application/vnd.bluetooth.ep.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.ep.oob}
-IANA|[Mark_Powell]|{application/vnd.bluetooth.le.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.le.oob}
-IANA|[Tadashi_Gotoh]|{application/vnd.bmi=http://www.iana.org/assignments/media-types/application/vnd.bmi}
-IANA|[Philippe_Imoucha]|{application/vnd.businessobjects=http://www.iana.org/assignments/media-types/application/vnd.businessobjects}
-IANA|[Joerg_Falkenberg]|{application/vnd.cab-jscript=http://www.iana.org/assignments/media-types/application/vnd.cab-jscript}
-IANA|[Shin_Muto]|{application/vnd.canon-cpdl=http://www.iana.org/assignments/media-types/application/vnd.canon-cpdl}
-IANA|[Shin_Muto]|{application/vnd.canon-lips=http://www.iana.org/assignments/media-types/application/vnd.canon-lips}
-IANA|[Peter_Astrand]|{application/vnd.cendio.thinlinc.clientconf=http://www.iana.org/assignments/media-types/application/vnd.cendio.thinlinc.clientconf}
-IANA|[Shuji_Fujii]|{application/vnd.century-systems.tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.century-systems.tcp_stream}
-IANA|[Glenn_Howes]|{application/vnd.chemdraw+xml=http://www.iana.org/assignments/media-types/application/vnd.chemdraw+xml}
-IANA|[Chunyun_Xiong]|{application/vnd.chipnuts.karaoke-mmd=http://www.iana.org/assignments/media-types/application/vnd.chipnuts.karaoke-mmd}
-IANA|[Ulrich_Kortenkamp]|{application/vnd.cinderella=http://www.iana.org/assignments/media-types/application/vnd.cinderella}
-IANA|[Pascal_Mayeux]|{application/vnd.cirpack.isdn-ext=http://www.iana.org/assignments/media-types/application/vnd.cirpack.isdn-ext}
-IANA|[Rintze_M._Zelle]|{application/vnd.citationstyles.style+xml=http://www.iana.org/assignments/media-types/application/vnd.citationstyles.style+xml}
-IANA|[Ray_Simpson]|{application/vnd.claymore=http://www.iana.org/assignments/media-types/application/vnd.claymore}
-IANA|[Mike_Labatt]|{application/vnd.cloanto.rp9=http://www.iana.org/assignments/media-types/application/vnd.cloanto.rp9}
-IANA|[Guenther_Brammer]|{application/vnd.clonk.c4group=http://www.iana.org/assignments/media-types/application/vnd.clonk.c4group}
-IANA|[Gaige_Paulsen]|{application/vnd.cluetrust.cartomobile-config=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config}
-IANA|[Gaige_Paulsen]|{application/vnd.cluetrust.cartomobile-config-pkg=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config-pkg}
-IANA|[Devyn_Collier_Johnson]|{application/vnd.coffeescript=http://www.iana.org/assignments/media-types/application/vnd.coffeescript}
-IANA|[Mike_Amundsen]|{application/vnd.collection+json=http://www.iana.org/assignments/media-types/application/vnd.collection+json}
-IANA|[Irakli_Nadareishvili]|{application/vnd.collection.doc+json=http://www.iana.org/assignments/media-types/application/vnd.collection.doc+json}
-IANA|[Ioseb_Dzmanashvili]|{application/vnd.collection.next+json=http://www.iana.org/assignments/media-types/application/vnd.collection.next+json}
-IANA|[David_Applebaum]|{application/vnd.commerce-battelle=http://www.iana.org/assignments/media-types/application/vnd.commerce-battelle}
-IANA|[Ravinder_Chandhok]|{application/vnd.commonspace=http://www.iana.org/assignments/media-types/application/vnd.commonspace}
-IANA|[Frank_Patz]|{application/vnd.contact.cmsg=http://www.iana.org/assignments/media-types/application/vnd.contact.cmsg}
-IANA|[Steve_Dellutri]|{application/vnd.cosmocaller=http://www.iana.org/assignments/media-types/application/vnd.cosmocaller}
-IANA|[Andrew_Burt]|{application/vnd.crick.clicker=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker}
-IANA|[Andrew_Burt]|{application/vnd.crick.clicker.keyboard=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.keyboard}
-IANA|[Andrew_Burt]|{application/vnd.crick.clicker.palette=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.palette}
-IANA|[Andrew_Burt]|{application/vnd.crick.clicker.template=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.template}
-IANA|[Andrew_Burt]|{application/vnd.crick.clicker.wordbank=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.wordbank}
-IANA|[Jim_Spiller]|{application/vnd.criticaltools.wbs+xml=http://www.iana.org/assignments/media-types/application/vnd.criticaltools.wbs+xml}
-IANA|[Bayard_Kohlhepp]|{application/vnd.ctc-posml=http://www.iana.org/assignments/media-types/application/vnd.ctc-posml}
-IANA|[Jim_Ancona]|{application/vnd.ctct.ws+xml=http://www.iana.org/assignments/media-types/application/vnd.ctct.ws+xml}
-IANA|[Michael_Sweet]|{application/vnd.cups-pdf=http://www.iana.org/assignments/media-types/application/vnd.cups-pdf}
-IANA|[Michael_Sweet]|{application/vnd.cups-postscript=http://www.iana.org/assignments/media-types/application/vnd.cups-postscript}
-IANA|[Michael_Sweet]|{application/vnd.cups-ppd=http://www.iana.org/assignments/media-types/application/vnd.cups-ppd}
-IANA|[Michael_Sweet]|{application/vnd.cups-raster=http://www.iana.org/assignments/media-types/application/vnd.cups-raster}
-IANA|[Michael_Sweet]|{application/vnd.cups-raw=http://www.iana.org/assignments/media-types/application/vnd.cups-raw}
-IANA|[Robert_Byrnes]|{application/vnd-curl=http://www.iana.org/assignments/media-types/application/vnd-curl}
--
--
-IANA|[Matt_Kern]|{application/vnd.cyan.dean.root+xml=http://www.iana.org/assignments/media-types/application/vnd.cyan.dean.root+xml}
-IANA|[Nor_Helmee]|{application/vnd.cybank=http://www.iana.org/assignments/media-types/application/vnd.cybank}
-IANA|[Anders_Sandholm]|{application/vnd-dart=http://www.iana.org/assignments/media-types/application/vnd-dart}
-IANA|[James_Fields]|{application/vnd.data-vision.rdz=http://www.iana.org/assignments/media-types/application/vnd.data-vision.rdz}
-IANA|[Charles_Plessy]|{application/vnd.debian.binary-package=http://www.iana.org/assignments/media-types/application/vnd.debian.binary-package}
-IANA|[Michael_A_Dolan]|{application/vnd.dece.data=http://www.iana.org/assignments/media-types/application/vnd.dece.data}
-IANA|[Michael_A_Dolan]|{application/vnd.dece.ttml+xml=http://www.iana.org/assignments/media-types/application/vnd.dece.ttml+xml}
-IANA|[Michael_A_Dolan]|{application/vnd.dece.unspecified=http://www.iana.org/assignments/media-types/application/vnd.dece.unspecified}
-IANA|[Michael_A_Dolan]|{application/vnd.dece-zip=http://www.iana.org/assignments/media-types/application/vnd.dece-zip}
-IANA|[Michael_Dixon]|{application/vnd.denovo.fcselayout-link=http://www.iana.org/assignments/media-types/application/vnd.denovo.fcselayout-link}
-IANA|[Henrik_Andersson]|{application/vnd.desmume-movie=http://www.iana.org/assignments/media-types/application/vnd.desmume-movie}
-IANA|[Yamanaka]|{application/vnd.dir-bi.plate-dl-nosuffix=http://www.iana.org/assignments/media-types/application/vnd.dir-bi.plate-dl-nosuffix}
-IANA|[Axel_Ferrazzini]|{application/vnd.dm.delegation+xml=http://www.iana.org/assignments/media-types/application/vnd.dm.delegation+xml}
-IANA|[Meredith_Searcy]|{application/vnd.dna=http://www.iana.org/assignments/media-types/application/vnd.dna}
-IANA|[Tom_Christie]|{application/vnd.document+json=http://www.iana.org/assignments/media-types/application/vnd.document+json}
--
-IANA|[Steve_Hattersley]|{application/vnd.dolby.mobile.1=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.1}
-IANA|[Steve_Hattersley]|{application/vnd.dolby.mobile.2=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.2}
-IANA|[Erik_Ronström]|{application/vnd.doremir.scorecloud-binary-document=http://www.iana.org/assignments/media-types/application/vnd.doremir.scorecloud-binary-document}
-IANA|[David_Parker]|{application/vnd.dpgraph=http://www.iana.org/assignments/media-types/application/vnd.dpgraph}
-IANA|[William_C._Appleton]|{application/vnd.dreamfactory=http://www.iana.org/assignments/media-types/application/vnd.dreamfactory}
-IANA|[Keith_Kester]|{application/vnd.drive+json=http://www.iana.org/assignments/media-types/application/vnd.drive+json}
--
-IANA|[Ali_Teffahi]|{application/vnd.dtg.local=http://www.iana.org/assignments/media-types/application/vnd.dtg.local}
-IANA|[Ali_Teffahi]|{application/vnd.dtg.local.flash=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.flash}
-IANA|[Ali_Teffahi]|{application/vnd.dtg.local-html=http://www.iana.org/assignments/media-types/application/vnd.dtg.local-html}
-IANA|[Peter_Siebert]|[Michael_Lagally]|{application/vnd.dvb.ait=http://www.iana.org/assignments/media-types/application/vnd.dvb.ait}
-IANA|[Peter_Siebert]|[Michael_Lagally]|{application/vnd.dvb.dvbj=http://www.iana.org/assignments/media-types/application/vnd.dvb.dvbj}
-IANA|[Joerg_Heuer]|{application/vnd.dvb.esgcontainer=http://www.iana.org/assignments/media-types/application/vnd.dvb.esgcontainer}
-IANA|[Roy_Yue]|{application/vnd.dvb.ipdcdftnotifaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcdftnotifaccess}
-IANA|[Joerg_Heuer]|{application/vnd.dvb.ipdcesgaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess}
-IANA|[Jerome_Marcon]|{application/vnd.dvb.ipdcesgaccess2=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess2}
-IANA|[Jerome_Marcon]|{application/vnd.dvb.ipdcesgpdd=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgpdd}
-IANA|[Yiling_Xu]|{application/vnd.dvb.ipdcroaming=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcroaming}
-IANA|[Jean-Baptiste_Henry]|{application/vnd.dvb.iptv.alfec-base=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-base}
-IANA|[Jean-Baptiste_Henry]|{application/vnd.dvb.iptv.alfec-enhancement=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-enhancement}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-aggregate-root+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-aggregate-root+xml}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-container+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-container+xml}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-generic+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-generic+xml}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-ia-msglist+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-msglist+xml}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-ia-registration-request+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-request+xml}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-ia-registration-response+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-response+xml}
-IANA|[Roy_Yue]|{application/vnd.dvb.notif-init+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-init+xml}
-IANA|[Peter_Siebert]|[Michael_Lagally]|{application/vnd.dvb.pfr=http://www.iana.org/assignments/media-types/application/vnd.dvb.pfr}
-IANA|[Peter_Siebert]|[Michael_Lagally]|{application/vnd.dvb_service=http://www.iana.org/assignments/media-types/application/vnd.dvb_service}
-IANA|[Michael_Duffy]|{application/vnd-dxr=http://www.iana.org/assignments/media-types/application/vnd-dxr}
-IANA|[Roland_Mechling]|{application/vnd.dynageo=http://www.iana.org/assignments/media-types/application/vnd.dynageo}
-IANA|[Carl_Anderson]|{application/vnd.dzr=http://www.iana.org/assignments/media-types/application/vnd.dzr}
-IANA|[Iain_Downs]|{application/vnd.easykaraoke.cdgdownload=http://www.iana.org/assignments/media-types/application/vnd.easykaraoke.cdgdownload}
-IANA|[Gert_Buettgenbach]|{application/vnd.ecdis-update=http://www.iana.org/assignments/media-types/application/vnd.ecdis-update}
-IANA|[Thomas_Olsson]|{application/vnd.ecowin.chart=http://www.iana.org/assignments/media-types/application/vnd.ecowin.chart}
-IANA|[Thomas_Olsson]|{application/vnd.ecowin.filerequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.filerequest}
-IANA|[Thomas_Olsson]|{application/vnd.ecowin.fileupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.fileupdate}
-IANA|[Thomas_Olsson]|{application/vnd.ecowin.series=http://www.iana.org/assignments/media-types/application/vnd.ecowin.series}
-IANA|[Thomas_Olsson]|{application/vnd.ecowin.seriesrequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesrequest}
-IANA|[Thomas_Olsson]|{application/vnd.ecowin.seriesupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesupdate}
-IANA|[Filip_Navara]|{application/vnd.emclient.accessrequest+xml=http://www.iana.org/assignments/media-types/application/vnd.emclient.accessrequest+xml}
-IANA|[Paul_Santinelli_Jr.]|{application/vnd.enliven=http://www.iana.org/assignments/media-types/application/vnd.enliven}
-IANA|[Chris_Eich]|{application/vnd.enphase.envoy=http://www.iana.org/assignments/media-types/application/vnd.enphase.envoy}
-IANA|[Tim_Brody]|{application/vnd.eprints.data+xml=http://www.iana.org/assignments/media-types/application/vnd.eprints.data+xml}
-IANA|[Shoji_Hoshina]|{application/vnd.epson.esf=http://www.iana.org/assignments/media-types/application/vnd.epson.esf}
-IANA|[Shoji_Hoshina]|{application/vnd.epson.msf=http://www.iana.org/assignments/media-types/application/vnd.epson.msf}
-IANA|[Yu_Gu]|{application/vnd.epson.quickanime=http://www.iana.org/assignments/media-types/application/vnd.epson.quickanime}
-IANA|[Yasuhito_Nagatomo]|{application/vnd.epson.salt=http://www.iana.org/assignments/media-types/application/vnd.epson.salt}
-IANA|[Shoji_Hoshina]|{application/vnd.epson.ssf=http://www.iana.org/assignments/media-types/application/vnd.epson.ssf}
-IANA|[Paul_Tidwell]|{application/vnd.ericsson.quickcall=http://www.iana.org/assignments/media-types/application/vnd.ericsson.quickcall}
-IANA|[Szilveszter_Tóth]|{application/vnd.eszigno3+xml=http://www.iana.org/assignments/media-types/application/vnd.eszigno3+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.aoc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.aoc+xml}
-IANA|[Miguel_Angel_Reina_Ortega]|{application/vnd.etsi.asic-e+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-e+zip}
-IANA|[Miguel_Angel_Reina_Ortega]|{application/vnd.etsi.asic-s+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-s+zip}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.cug+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.cug+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvcommand+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvcommand+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvdiscovery+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvprofile+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvsad-bc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-bc+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvsad-cod+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-cod+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvsad-npvr+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-npvr+xml}
-IANA|[Miguel_Angel_Reina_Ortega]|{application/vnd.etsi.iptvservice+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvservice+xml}
-IANA|[Miguel_Angel_Reina_Ortega]|{application/vnd.etsi.iptvsync+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsync+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.iptvueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvueprofile+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.mcid+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.mcid+xml}
-IANA|[Miguel_Angel_Reina_Ortega]|[Ian_Medland]|{application/vnd.etsi.mheg5=http://www.iana.org/assignments/media-types/application/vnd.etsi.mheg5}
-IANA|[Miguel_Angel_Reina_Ortega]|{application/vnd.etsi.overload-control-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.overload-control-policy-dataset+xml}
-IANA|[Jiwan_Han]|[Thomas_Belling]|{application/vnd.etsi.pstn+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.pstn+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.sci+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.sci+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.simservs+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.simservs+xml}
-IANA|[Miguel_Angel_Reina_Ortega]|{application/vnd.etsi.timestamp-token=http://www.iana.org/assignments/media-types/application/vnd.etsi.timestamp-token}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.tsl+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl+xml}
-IANA|[Shicheng_Hu]|{application/vnd.etsi.tsl.der=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl.der}
-IANA|[Pete_Resnick]|{application/vnd.eudora.data=http://www.iana.org/assignments/media-types/application/vnd.eudora.data}
-IANA|[ElectronicZombieCorp]|{application/vnd.ezpix-album=http://www.iana.org/assignments/media-types/application/vnd.ezpix-album}
-IANA|[ElectronicZombieCorp]|{application/vnd.ezpix-package=http://www.iana.org/assignments/media-types/application/vnd.ezpix-package}
-IANA|[Samu_Sarivaara]|{application/vnd.f-secure.mobile=http://www.iana.org/assignments/media-types/application/vnd.f-secure.mobile}
-IANA|[Thomas_Huth]|{application/vnd.fastcopy-disk-image=http://www.iana.org/assignments/media-types/application/vnd.fastcopy-disk-image}
-IANA|[Steve_Zilles]|{application/vnd-fdf=http://www.iana.org/assignments/media-types/application/vnd-fdf}
-IANA|[Chad_Trabant]|{application/vnd.fdsn.mseed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.mseed}
-IANA|[Chad_Trabant]|{application/vnd.fdsn.seed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.seed}
-IANA|[Holstage]|{application/vnd.ffsns=http://www.iana.org/assignments/media-types/application/vnd.ffsns}
-IANA|[Ingo_Hammann]|{application/vnd.fints=http://www.iana.org/assignments/media-types/application/vnd.fints}
-IANA|[Alex_Dubov]|{application/vnd.firemonkeys.cloudcell=http://www.iana.org/assignments/media-types/application/vnd.firemonkeys.cloudcell}
-IANA|[Dick_Floersch]|{application/vnd.FloGraphIt=http://www.iana.org/assignments/media-types/application/vnd.FloGraphIt}
-IANA|[Marc_Winter]|{application/vnd.fluxtime.clip=http://www.iana.org/assignments/media-types/application/vnd.fluxtime.clip}
-IANA|[George_Williams]|{application/vnd.font-fontforge-sfd=http://www.iana.org/assignments/media-types/application/vnd.font-fontforge-sfd}
-IANA|[Mike_Wexler]|{application/vnd.framemaker=http://www.iana.org/assignments/media-types/application/vnd.framemaker}
-IANA|[Alexis_Tamas]|{application/vnd.frogans.fnc=http://www.iana.org/assignments/media-types/application/vnd.frogans.fnc}
-IANA|[Alexis_Tamas]|{application/vnd.frogans.ltf=http://www.iana.org/assignments/media-types/application/vnd.frogans.ltf}
-IANA|[Derek_Smith]|{application/vnd.fsc.weblaunch=http://www.iana.org/assignments/media-types/application/vnd.fsc.weblaunch}
-IANA|[Nobukazu_Togashi]|{application/vnd.fujitsu.oasys=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys}
-IANA|[Nobukazu_Togashi]|{application/vnd.fujitsu.oasys2=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys2}
-IANA|[Seiji_Okudaira]|{application/vnd.fujitsu.oasys3=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys3}
-IANA|[Masahiko_Sugimoto]|{application/vnd.fujitsu.oasysgp=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysgp}
-IANA|[Masumi_Ogita]|{application/vnd.fujitsu.oasysprs=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysprs}
-IANA|[Fumio_Tanabe]|{application/vnd.fujixerox.ART-EX=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART-EX}
-IANA|[Fumio_Tanabe]|{application/vnd.fujixerox.ART4=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART4}
-IANA|[Masanori_Onda]|{application/vnd.fujixerox.ddd=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ddd}
-IANA|[Yasuo_Taguchi]|{application/vnd.fujixerox.docuworks=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks}
-IANA|[Takashi_Matsumoto]|{application/vnd.fujixerox.docuworks.binder=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.binder}
-IANA|[Kiyoshi_Tashiro]|{application/vnd.fujixerox.docuworks.container=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.container}
-IANA|[Fumio_Tanabe]|{application/vnd.fujixerox.HBPL=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.HBPL}
-IANA|[Jann_Pruulman]|{application/vnd.fut-misnet=http://www.iana.org/assignments/media-types/application/vnd.fut-misnet}
-IANA|[Simon_Birtwistle]|{application/vnd.fuzzysheet=http://www.iana.org/assignments/media-types/application/vnd.fuzzysheet}
-IANA|[Torben_Frey]|{application/vnd.genomatix.tuxedo=http://www.iana.org/assignments/media-types/application/vnd.genomatix.tuxedo}
-IANA|[Sean_Gillies]|{application/vnd.geo+json=http://www.iana.org/assignments/media-types/application/vnd.geo+json}
-IANA|[Francois_Pirsch]|{application/vnd.geocube+xml=http://www.iana.org/assignments/media-types/application/vnd.geocube+xml}
-IANA|[GeoGebra]|[Yves_Kreis]|{application/vnd.geogebra.file=http://www.iana.org/assignments/media-types/application/vnd.geogebra.file}
-IANA|[GeoGebra]|[Yves_Kreis]|{application/vnd.geogebra.tool=http://www.iana.org/assignments/media-types/application/vnd.geogebra.tool}
-IANA|[Michael_Hvidsten]|{application/vnd.geometry-explorer=http://www.iana.org/assignments/media-types/application/vnd.geometry-explorer}
-IANA|[Matthias_Ehmann]|{application/vnd.geonext=http://www.iana.org/assignments/media-types/application/vnd.geonext}
-IANA|[Christian_Mercat]|{application/vnd.geoplan=http://www.iana.org/assignments/media-types/application/vnd.geoplan}
-IANA|[Christian_Mercat]|{application/vnd.geospace=http://www.iana.org/assignments/media-types/application/vnd.geospace}
-IANA|[Thomas_Weyn]|{application/vnd.gerber=http://www.iana.org/assignments/media-types/application/vnd.gerber}
-IANA|[Gil_Bernabeu]|{application/vnd.globalplatform.card-content-mgt=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt}
-IANA|[Gil_Bernabeu]|{application/vnd.globalplatform.card-content-mgt-response=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt-response}
-IANA|[Christian_V._Sciberras]|{application/vnd.gmx=http://www.iana.org/assignments/media-types/application/vnd.gmx}
-IANA|[Michael_Ashbridge]|{application/vnd.google-earth.kml+xml=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kml+xml}
-IANA|[Michael_Ashbridge]|{application/vnd.google-earth.kmz=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kmz}
-IANA|[Peter_Biro]|[Stefan_Szilva]|{application/vnd.gov.sk.e-form+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+xml}
-IANA|[Peter_Biro]|[Stefan_Szilva]|{application/vnd.gov.sk.e-form+zip=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+zip}
-IANA|[Peter_Biro]|[Stefan_Szilva]|{application/vnd.gov.sk.xmldatacontainer+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.xmldatacontainer+xml}
-IANA|[Jeff_Tupper]|{application/vnd.grafeq=http://www.iana.org/assignments/media-types/application/vnd.grafeq}
-IANA|[Jeff_Lawson]|{application/vnd.gridmp=http://www.iana.org/assignments/media-types/application/vnd.gridmp}
-IANA|[Todd_Joseph]|{application/vnd.groove-account=http://www.iana.org/assignments/media-types/application/vnd.groove-account}
-IANA|[Todd_Joseph]|{application/vnd.groove-help=http://www.iana.org/assignments/media-types/application/vnd.groove-help}
-IANA|[Todd_Joseph]|{application/vnd.groove-identity-message=http://www.iana.org/assignments/media-types/application/vnd.groove-identity-message}
-IANA|[Todd_Joseph]|{application/vnd.groove-injector=http://www.iana.org/assignments/media-types/application/vnd.groove-injector}
-IANA|[Todd_Joseph]|{application/vnd.groove-tool-message=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-message}
-IANA|[Todd_Joseph]|{application/vnd.groove-tool-template=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-template}
-IANA|[Todd_Joseph]|{application/vnd.groove-vcard=http://www.iana.org/assignments/media-types/application/vnd.groove-vcard}
-IANA|[Mike_Kelly]|{application/vnd.hal+json=http://www.iana.org/assignments/media-types/application/vnd.hal+json}
-IANA|[Mike_Kelly]|{application/vnd.hal+xml=http://www.iana.org/assignments/media-types/application/vnd.hal+xml}
-IANA|[Eric_Hamilton]|{application/vnd.HandHeld-Entertainment+xml=http://www.iana.org/assignments/media-types/application/vnd.HandHeld-Entertainment+xml}
-IANA|[Ingo_Hammann]|{application/vnd.hbci=http://www.iana.org/assignments/media-types/application/vnd.hbci}
-IANA|[Doug_R._Serres]|{application/vnd.hcl-bireports=http://www.iana.org/assignments/media-types/application/vnd.hcl-bireports}
-IANA|[Wesley_Beary]|{application/vnd.heroku+json=http://www.iana.org/assignments/media-types/application/vnd.heroku+json}
-IANA|[Randy_Jones]|{application/vnd.hhe.lesson-player=http://www.iana.org/assignments/media-types/application/vnd.hhe.lesson-player}
-IANA|[Bob_Pentecost]|{application/vnd.hp-HPGL=http://www.iana.org/assignments/media-types/application/vnd.hp-HPGL}
-IANA|[Aloke_Gupta]|{application/vnd.hp-hpid=http://www.iana.org/assignments/media-types/application/vnd.hp-hpid}
-IANA|[Steve_Aubrey]|{application/vnd.hp-hps=http://www.iana.org/assignments/media-types/application/vnd.hp-hps}
-IANA|[Amir_Gaash]|{application/vnd.hp-jlyt=http://www.iana.org/assignments/media-types/application/vnd.hp-jlyt}
-IANA|[Bob_Pentecost]|{application/vnd.hp-PCL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCL}
-IANA|[Bob_Pentecost]|{application/vnd.hp-PCLXL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCLXL}
-IANA|[Franck_Lefevre]|{application/vnd.httphone=http://www.iana.org/assignments/media-types/application/vnd.httphone}
-IANA|[Allen_Gillam]|{application/vnd.hydrostatix.sof-data=http://www.iana.org/assignments/media-types/application/vnd.hydrostatix.sof-data}
-IANA|[Daniel_Sims]|{application/vnd.hyperdrive+json=http://www.iana.org/assignments/media-types/application/vnd.hyperdrive+json}
-IANA|[James_Minnis]|{application/vnd.hzn-3d-crossword=http://www.iana.org/assignments/media-types/application/vnd.hzn-3d-crossword}
-IANA|[Roger_Buis]|{application/vnd.ibm.afplinedata=http://www.iana.org/assignments/media-types/application/vnd.ibm.afplinedata}
-IANA|[Bruce_Tantlinger]|{application/vnd.ibm.electronic-media=http://www.iana.org/assignments/media-types/application/vnd.ibm.electronic-media}
-IANA|[Amir_Herzberg]|{application/vnd.ibm.MiniPay=http://www.iana.org/assignments/media-types/application/vnd.ibm.MiniPay}
-IANA|[Reinhard_Hohensee]|{application/vnd.ibm.modcap=http://www.iana.org/assignments/media-types/application/vnd.ibm.modcap}
-IANA|[Bruce_Tantlinger]|{application/vnd.ibm.rights-management=http://www.iana.org/assignments/media-types/application/vnd.ibm.rights-management}
-IANA|[Bruce_Tantlinger]|{application/vnd.ibm.secure-container=http://www.iana.org/assignments/media-types/application/vnd.ibm.secure-container}
-IANA|[Phil_Green]|{application/vnd.iccprofile=http://www.iana.org/assignments/media-types/application/vnd.iccprofile}
-IANA|[Purva_R_Rajkotia]|{application/vnd.ieee.1905=http://www.iana.org/assignments/media-types/application/vnd.ieee.1905}
-IANA|[Tim_Fisher]|{application/vnd.igloader=http://www.iana.org/assignments/media-types/application/vnd.igloader}
-IANA|[Mathieu_Villegas]|{application/vnd.immervision-ivp=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivp}
-IANA|[Mathieu_Villegas]|{application/vnd.immervision-ivu=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivu}
-IANA|[Lisa_Mattson]|{application/vnd.ims.imsccv1p1=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p1}
-IANA|[Lisa_Mattson]|{application/vnd.ims.imsccv1p2=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p2}
-IANA|[Lisa_Mattson]|{application/vnd.ims.imsccv1p3=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p3}
-IANA|[Lisa_Mattson]|{application/vnd.ims.lis.v2.result+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lis.v2.result+json}
-IANA|[Lisa_Mattson]|{application/vnd.ims.lti.v2.toolconsumerprofile+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolconsumerprofile+json}
-IANA|[Lisa_Mattson]|{application/vnd.ims.lti.v2.toolproxy+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy+json}
-IANA|[Lisa_Mattson]|{application/vnd.ims.lti.v2.toolproxy.id+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy.id+json}
-IANA|[Lisa_Mattson]|{application/vnd.ims.lti.v2.toolsettings+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings+json}
-IANA|[Lisa_Mattson]|{application/vnd.ims.lti.v2.toolsettings.simple+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings.simple+json}
-IANA|[Mark_Wahl]|{application/vnd.informedcontrol.rms+xml=http://www.iana.org/assignments/media-types/application/vnd.informedcontrol.rms+xml}
-IANA|[Christopher_Gales]|{application/vnd.informix-visionary=http://www.iana.org/assignments/media-types/application/vnd.informix-visionary}
-IANA|[Charles_Engelke]|{application/vnd.infotech.project=http://www.iana.org/assignments/media-types/application/vnd.infotech.project}
-IANA|[Charles_Engelke]|{application/vnd.infotech.project+xml=http://www.iana.org/assignments/media-types/application/vnd.infotech.project+xml}
-IANA|[Takanori_Sudo]|{application/vnd.innopath.wamp.notification=http://www.iana.org/assignments/media-types/application/vnd.innopath.wamp.notification}
-IANA|[Jon_Swanson]|{application/vnd.insors.igm=http://www.iana.org/assignments/media-types/application/vnd.insors.igm}
-IANA|[Tom_Gurak]|{application/vnd.intercon.formnet=http://www.iana.org/assignments/media-types/application/vnd.intercon.formnet}
-IANA|[Yves_Kreis_2]|{application/vnd.intergeo=http://www.iana.org/assignments/media-types/application/vnd.intergeo}
-IANA|[Luke_Tomasello]|{application/vnd.intertrust.digibox=http://www.iana.org/assignments/media-types/application/vnd.intertrust.digibox}
-IANA|[Luke_Tomasello]|{application/vnd.intertrust.nncp=http://www.iana.org/assignments/media-types/application/vnd.intertrust.nncp}
-IANA|[Greg_Scratchley]|{application/vnd.intu.qbo=http://www.iana.org/assignments/media-types/application/vnd.intu.qbo}
-IANA|[Greg_Scratchley]|{application/vnd.intu.qfx=http://www.iana.org/assignments/media-types/application/vnd.intu.qfx}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.catalogitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.catalogitem+xml}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.conceptitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.conceptitem+xml}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.knowledgeitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.knowledgeitem+xml}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.newsitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsitem+xml}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.newsmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsmessage+xml}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.packageitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.packageitem+xml}
-IANA|[Michael_Steidl]|{application/vnd.iptc.g2.planningitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.planningitem+xml}
-IANA|[Per_Ersson]|{application/vnd.ipunplugged.rcprofile=http://www.iana.org/assignments/media-types/application/vnd.ipunplugged.rcprofile}
-IANA|[Martin_Knowles]|{application/vnd.irepository.package+xml=http://www.iana.org/assignments/media-types/application/vnd.irepository.package+xml}
-IANA|[Satish_Navarajan]|{application/vnd.is-xpr=http://www.iana.org/assignments/media-types/application/vnd.is-xpr}
-IANA|[Ryan_Brinkman]|{application/vnd.isac.fcs=http://www.iana.org/assignments/media-types/application/vnd.isac.fcs}
-IANA|[Brijesh_Kumar]|{application/vnd.jam=http://www.iana.org/assignments/media-types/application/vnd.jam}
-IANA|[Kiyofusa_Fujii]|{application/vnd.japannet-directory-service=http://www.iana.org/assignments/media-types/application/vnd.japannet-directory-service}
-IANA|[Jun_Yoshitake]|{application/vnd.japannet-jpnstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-jpnstore-wakeup}
-IANA|[Kiyofusa_Fujii]|{application/vnd.japannet-payment-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-payment-wakeup}
-IANA|[Jun_Yoshitake]|{application/vnd.japannet-registration=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration}
-IANA|[Kiyofusa_Fujii]|{application/vnd.japannet-registration-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration-wakeup}
-IANA|[Jun_Yoshitake]|{application/vnd.japannet-setstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-setstore-wakeup}
-IANA|[Jun_Yoshitake]|{application/vnd.japannet-verification=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification}
-IANA|[Kiyofusa_Fujii]|{application/vnd.japannet-verification-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification-wakeup}
-IANA|[Mikhail_Gorshenev]|{application/vnd.jcp.javame.midlet-rms=http://www.iana.org/assignments/media-types/application/vnd.jcp.javame.midlet-rms}
-IANA|[Sebastiaan_Deckers]|{application/vnd.jisp=http://www.iana.org/assignments/media-types/application/vnd.jisp}
-IANA|[Joost]|{application/vnd.joost.joda-archive=http://www.iana.org/assignments/media-types/application/vnd.joost.joda-archive}
-IANA|[Yokoyama_Kiyonobu]|{application/vnd.jsk.isdn-ngn=http://www.iana.org/assignments/media-types/application/vnd.jsk.isdn-ngn}
-IANA|[Tim_Macdonald]|{application/vnd.kahootz=http://www.iana.org/assignments/media-types/application/vnd.kahootz}
-IANA|[David_Faure]|{application/vnd.kde.karbon=http://www.iana.org/assignments/media-types/application/vnd.kde.karbon}
-IANA|[David_Faure]|{application/vnd.kde.kchart=http://www.iana.org/assignments/media-types/application/vnd.kde.kchart}
-IANA|[David_Faure]|{application/vnd.kde.kformula=http://www.iana.org/assignments/media-types/application/vnd.kde.kformula}
-IANA|[David_Faure]|{application/vnd.kde.kivio=http://www.iana.org/assignments/media-types/application/vnd.kde.kivio}
-IANA|[David_Faure]|{application/vnd.kde.kontour=http://www.iana.org/assignments/media-types/application/vnd.kde.kontour}
-IANA|[David_Faure]|{application/vnd.kde.kpresenter=http://www.iana.org/assignments/media-types/application/vnd.kde.kpresenter}
-IANA|[David_Faure]|{application/vnd.kde.kspread=http://www.iana.org/assignments/media-types/application/vnd.kde.kspread}
-IANA|[David_Faure]|{application/vnd.kde.kword=http://www.iana.org/assignments/media-types/application/vnd.kde.kword}
-IANA|[Dirk_DiGiorgio-Haag]|{application/vnd.kenameaapp=http://www.iana.org/assignments/media-types/application/vnd.kenameaapp}
-IANA|[Jack_Bennett]|{application/vnd.kidspiration=http://www.iana.org/assignments/media-types/application/vnd.kidspiration}
-IANA|[Hemant_Thakkar]|{application/vnd.Kinar=http://www.iana.org/assignments/media-types/application/vnd.Kinar}
-IANA|[Pete_Cole]|{application/vnd.koan=http://www.iana.org/assignments/media-types/application/vnd.koan}
-IANA|[Michael_J._Donahue]|{application/vnd.kodak-descriptor=http://www.iana.org/assignments/media-types/application/vnd.kodak-descriptor}
-IANA|[Rob_Bailey]|{application/vnd.las.las+xml=http://www.iana.org/assignments/media-types/application/vnd.las.las+xml}
-IANA|[Brett_McDowell]|{application/vnd.liberty-request+xml=http://www.iana.org/assignments/media-types/application/vnd.liberty-request+xml}
-IANA|[Catherine_E._White]|{application/vnd.llamagraphics.life-balance.desktop=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.desktop}
-IANA|[Catherine_E._White]|{application/vnd.llamagraphics.life-balance.exchange+xml=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.exchange+xml}
-IANA|[Paul_Wattenberger]|{application/vnd.lotus-1-2-3=http://www.iana.org/assignments/media-types/application/vnd.lotus-1-2-3}
-IANA|[Paul_Wattenberger]|{application/vnd.lotus-approach=http://www.iana.org/assignments/media-types/application/vnd.lotus-approach}
-IANA|[Paul_Wattenberger]|{application/vnd.lotus-freelance=http://www.iana.org/assignments/media-types/application/vnd.lotus-freelance}
-IANA|[Michael_Laramie]|{application/vnd.lotus-notes=http://www.iana.org/assignments/media-types/application/vnd.lotus-notes}
-IANA|[Paul_Wattenberger]|{application/vnd.lotus-organizer=http://www.iana.org/assignments/media-types/application/vnd.lotus-organizer}
-IANA|[Paul_Wattenberger]|{application/vnd.lotus-screencam=http://www.iana.org/assignments/media-types/application/vnd.lotus-screencam}
-IANA|[Paul_Wattenberger]|{application/vnd.lotus-wordpro=http://www.iana.org/assignments/media-types/application/vnd.lotus-wordpro}
-IANA|[James_Berry]|{application/vnd.macports.portpkg=http://www.iana.org/assignments/media-types/application/vnd.macports.portpkg}
-IANA|[Gary_Ellison]|{application/vnd.marlin.drm.actiontoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.actiontoken+xml}
-IANA|[Gary_Ellison]|{application/vnd.marlin.drm.conftoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.conftoken+xml}
-IANA|[Gary_Ellison]|{application/vnd.marlin.drm.license+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.license+xml}
-IANA|[Gary_Ellison]|{application/vnd.marlin.drm.mdcf=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.mdcf}
-IANA|[Jorn_Wildt]|{application/vnd.mason+json=http://www.iana.org/assignments/media-types/application/vnd.mason+json}
-IANA|[William_Stevenson]|{application/vnd.maxmind.maxmind-db=http://www.iana.org/assignments/media-types/application/vnd.maxmind.maxmind-db}
-IANA|[Tadashi_Gotoh]|{application/vnd.mcd=http://www.iana.org/assignments/media-types/application/vnd.mcd}
-IANA|[Frank_Schoonjans]|{application/vnd.medcalcdata=http://www.iana.org/assignments/media-types/application/vnd.medcalcdata}
-IANA|[Henry_Flurry]|{application/vnd.mediastation.cdkey=http://www.iana.org/assignments/media-types/application/vnd.mediastation.cdkey}
-IANA|[Eric_Wedel]|{application/vnd.meridian-slingshot=http://www.iana.org/assignments/media-types/application/vnd.meridian-slingshot}
-IANA|[Masaaki_Hirai]|{application/vnd.MFER=http://www.iana.org/assignments/media-types/application/vnd.MFER}
-IANA|[Yukari_Ikeda]|{application/vnd.mfmp=http://www.iana.org/assignments/media-types/application/vnd.mfmp}
-IANA|[Dali_Zheng]|{application/vnd.micro+json=http://www.iana.org/assignments/media-types/application/vnd.micro+json}
-IANA|[Joe_Prevo]|{application/vnd.micrografx.flo=http://www.iana.org/assignments/media-types/application/vnd.micrografx.flo}
-IANA|[Joe_Prevo]|{application/vnd.micrografx-igx=http://www.iana.org/assignments/media-types/application/vnd.micrografx-igx}
-IANA|[Henrik_Andersson]|{application/vnd.microsoft.portable-executable=http://www.iana.org/assignments/media-types/application/vnd.microsoft.portable-executable}
-IANA|[Nils_Langhammer]|{application/vnd.miele+json=http://www.iana.org/assignments/media-types/application/vnd.miele+json}
-IANA|[Mike_Wexler]|{application/vnd-mif=http://www.iana.org/assignments/media-types/application/vnd-mif}
-IANA|[Chris_Bartram]|{application/vnd.minisoft-hp3000-save=http://www.iana.org/assignments/media-types/application/vnd.minisoft-hp3000-save}
-IANA|[Tanaka]|{application/vnd.mitsubishi.misty-guard.trustweb=http://www.iana.org/assignments/media-types/application/vnd.mitsubishi.misty-guard.trustweb}
-IANA|[Allen_K._Kabayama]|{application/vnd.Mobius.DAF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DAF}
-IANA|[Allen_K._Kabayama]|{application/vnd.Mobius.DIS=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DIS}
-IANA|[Alex_Devasia]|{application/vnd.Mobius.MBK=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MBK}
-IANA|[Alex_Devasia]|{application/vnd.Mobius.MQY=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MQY}
-IANA|[Allen_K._Kabayama]|{application/vnd.Mobius.MSL=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MSL}
-IANA|[Allen_K._Kabayama]|{application/vnd.Mobius.PLC=http://www.iana.org/assignments/media-types/application/vnd.Mobius.PLC}
-IANA|[Allen_K._Kabayama]|{application/vnd.Mobius.TXF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.TXF}
-IANA|[Bjorn_Wennerstrom]|{application/vnd.mophun.application=http://www.iana.org/assignments/media-types/application/vnd.mophun.application}
-IANA|[Bjorn_Wennerstrom]|{application/vnd.mophun.certificate=http://www.iana.org/assignments/media-types/application/vnd.mophun.certificate}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite.adsi=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.adsi}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite.fis=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.fis}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite.gotap=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.gotap}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite.kmr=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.kmr}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite.ttc=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.ttc}
-IANA|[Mark_Patton]|{application/vnd.motorola.flexsuite.wem=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.wem}
-IANA|[Rafie_Shamsaasef]|{application/vnd.motorola.iprm=http://www.iana.org/assignments/media-types/application/vnd.motorola.iprm}
-IANA|[Braden_N_McDaniel]|{application/vnd.mozilla.xul+xml=http://www.iana.org/assignments/media-types/application/vnd.mozilla.xul+xml}
-IANA|[Shawn_Maloney]|{application/vnd.ms-3mfdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-3mfdocument}
-IANA|[Dean_Slawson]|{application/vnd.ms-artgalry=http://www.iana.org/assignments/media-types/application/vnd.ms-artgalry}
-IANA|[Eric_Fleischman]|{application/vnd.ms-asf=http://www.iana.org/assignments/media-types/application/vnd.ms-asf}
-IANA|[Kim_Scarborough]|{application/vnd.ms-cab-compressed=http://www.iana.org/assignments/media-types/application/vnd.ms-cab-compressed}
-IANA|[Sukvinder_S._Gill]|{application/vnd.ms-excel=http://www.iana.org/assignments/media-types/application/vnd.ms-excel}
-IANA|[Chris_Rae]|{application/vnd.ms-excel.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.addin.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-excel.sheet.binary.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.binary.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-excel.sheet.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-excel.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.template.macroEnabled.12}
-IANA|[Kim_Scarborough]|{application/vnd.ms-fontobject=http://www.iana.org/assignments/media-types/application/vnd.ms-fontobject}
-IANA|[Anatoly_Techtonik]|{application/vnd.ms-htmlhelp=http://www.iana.org/assignments/media-types/application/vnd.ms-htmlhelp}
-IANA|[Eric_Ledoux]|{application/vnd.ms-ims=http://www.iana.org/assignments/media-types/application/vnd.ms-ims}
-IANA|[Eric_Ledoux]|{application/vnd.ms-lrm=http://www.iana.org/assignments/media-types/application/vnd.ms-lrm}
-IANA|[Chris_Rae]|{application/vnd.ms-office.activeX+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-office.activeX+xml}
-IANA|[Chris_Rae]|{application/vnd.ms-officetheme=http://www.iana.org/assignments/media-types/application/vnd.ms-officetheme}
--
--
--
-IANA|[Daniel_Schneider]|{application/vnd.ms-playready.initiator+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-playready.initiator+xml}
-IANA|[Sukvinder_S._Gill]|{application/vnd.ms-powerpoint=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint}
-IANA|[Chris_Rae]|{application/vnd.ms-powerpoint.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.addin.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-powerpoint.presentation.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.presentation.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-powerpoint.slide.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slide.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-powerpoint.slideshow.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slideshow.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-powerpoint.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.template.macroEnabled.12}
-IANA|[Sukvinder_S._Gill]|{application/vnd.ms-project=http://www.iana.org/assignments/media-types/application/vnd.ms-project}
-IANA|[Sukvinder_S._Gill]|{application/vnd.ms-tnef=http://www.iana.org/assignments/media-types/application/vnd.ms-tnef}
-IANA|[Justin_Hutchings]|{application/vnd.ms-windows.printerpairing=http://www.iana.org/assignments/media-types/application/vnd.ms-windows.printerpairing}
-IANA|[Kevin_Lau]|{application/vnd.ms-wmdrm.lic-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-chlg-req}
-IANA|[Kevin_Lau]|{application/vnd.ms-wmdrm.lic-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-resp}
-IANA|[Kevin_Lau]|{application/vnd.ms-wmdrm.meter-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-chlg-req}
-IANA|[Kevin_Lau]|{application/vnd.ms-wmdrm.meter-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-resp}
-IANA|[Chris_Rae]|{application/vnd.ms-word.document.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.document.macroEnabled.12}
-IANA|[Chris_Rae]|{application/vnd.ms-word.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.template.macroEnabled.12}
-IANA|[Sukvinder_S._Gill]|{application/vnd.ms-works=http://www.iana.org/assignments/media-types/application/vnd.ms-works}
-IANA|[Dan_Plastina]|{application/vnd.ms-wpl=http://www.iana.org/assignments/media-types/application/vnd.ms-wpl}
-IANA|[Jesse_McGatha]|{application/vnd.ms-xpsdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-xpsdocument}
-IANA|[Thomas_Huth]|{application/vnd.msa-disk-image=http://www.iana.org/assignments/media-types/application/vnd.msa-disk-image}
-IANA|[Gwenael_Le_Bodic]|{application/vnd.mseq=http://www.iana.org/assignments/media-types/application/vnd.mseq}
-IANA|[Malte_Borcherding]|{application/vnd.msign=http://www.iana.org/assignments/media-types/application/vnd.msign}
-IANA|[Steve_Mills]|{application/vnd.multiad.creator=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator}
-IANA|[Steve_Mills]|{application/vnd.multiad.creator.cif=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator.cif}
-IANA|[Tim_Butler]|{application/vnd.music-niff=http://www.iana.org/assignments/media-types/application/vnd.music-niff}
-IANA|[Greg_Adams]|{application/vnd.musician=http://www.iana.org/assignments/media-types/application/vnd.musician}
-IANA|[Chandrashekhara_Anantharamu]|{application/vnd.muvee.style=http://www.iana.org/assignments/media-types/application/vnd.muvee.style}
-IANA|[Franck_Lefevre]|{application/vnd.mynfc=http://www.iana.org/assignments/media-types/application/vnd.mynfc}
-IANA|[Lauri_Tarkkala]|{application/vnd.ncd.control=http://www.iana.org/assignments/media-types/application/vnd.ncd.control}
-IANA|[Lauri_Tarkkala]|{application/vnd.ncd.reference=http://www.iana.org/assignments/media-types/application/vnd.ncd.reference}
-IANA|[Steve_Judkins]|{application/vnd.nervana=http://www.iana.org/assignments/media-types/application/vnd.nervana}
-IANA|[Andy_Mutz]|{application/vnd.netfpx=http://www.iana.org/assignments/media-types/application/vnd.netfpx}
-IANA|[Dan_DuFeu]|{application/vnd.neurolanguage.nlu=http://www.iana.org/assignments/media-types/application/vnd.neurolanguage.nlu}
-IANA|[Henrik_Andersson]|{application/vnd.nintendo.nitro.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.nitro.rom}
-IANA|[Henrik_Andersson]|{application/vnd.nintendo.snes.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.snes.rom}
-IANA|[Steve_Rogan]|{application/vnd.nitf=http://www.iana.org/assignments/media-types/application/vnd.nitf}
-IANA|[Monty_Solomon]|{application/vnd.noblenet-directory=http://www.iana.org/assignments/media-types/application/vnd.noblenet-directory}
-IANA|[Monty_Solomon]|{application/vnd.noblenet-sealer=http://www.iana.org/assignments/media-types/application/vnd.noblenet-sealer}
-IANA|[Monty_Solomon]|{application/vnd.noblenet-web=http://www.iana.org/assignments/media-types/application/vnd.noblenet-web}
-IANA|[Nokia]|{application/vnd.nokia.catalogs=http://www.iana.org/assignments/media-types/application/vnd.nokia.catalogs}
-IANA|[Nokia]|{application/vnd.nokia.conml+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+wbxml}
-IANA|[Nokia]|{application/vnd.nokia.conml+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+xml}
-IANA|[Nokia]|{application/vnd.nokia.iptv.config+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.iptv.config+xml}
-IANA|[Nokia]|{application/vnd.nokia.iSDS-radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.iSDS-radio-presets}
-IANA|[Nokia]|{application/vnd.nokia.landmark+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+wbxml}
-IANA|[Nokia]|{application/vnd.nokia.landmark+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+xml}
-IANA|[Nokia]|{application/vnd.nokia.landmarkcollection+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmarkcollection+xml}
-IANA|[Nokia]|{application/vnd.nokia.n-gage.ac+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.ac+xml}
-IANA|[Nokia]|{application/vnd.nokia.n-gage.data=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.data}
-IANA|[Nokia]|{application/vnd.nokia.n-gage.symbian.install=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.symbian.install}
-IANA|[Nokia]|{application/vnd.nokia.ncd=http://www.iana.org/assignments/media-types/application/vnd.nokia.ncd}
-IANA|[Nokia]
-IANA|[Nokia]|{application/vnd.nokia.pcd+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+wbxml}
-IANA|[Nokia]|{application/vnd.nokia.pcd+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+xml}
-IANA|[Nokia]|{application/vnd.nokia.radio-preset=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-preset}
-IANA|[Nokia]|{application/vnd.nokia.radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-presets}
-IANA|[Janine_Swenson]|{application/vnd.novadigm.EDM=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDM}
-IANA|[Janine_Swenson]|{application/vnd.novadigm.EDX=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDX}
-IANA|[Janine_Swenson]|{application/vnd.novadigm.EXT=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EXT}
-IANA|[Akinori_Taya]|{application/vnd.ntt-local.content-share=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.content-share}
-IANA|[NTT-local]|{application/vnd.ntt-local.file-transfer=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.file-transfer}
-IANA|[NTT-local]|{application/vnd.ntt-local.ogw_remote-access=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.ogw_remote-access}
-IANA|[NTT-local]|{application/vnd.ntt-local.sip-ta_remote=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_remote}
-IANA|[NTT-local]|{application/vnd.ntt-local.sip-ta_tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_tcp_stream}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.chart=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.chart-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.database=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.database}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.formula=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.formula-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.graphics=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.graphics-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.image=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.image-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.presentation=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.presentation-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.spreadsheet=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.spreadsheet-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.text=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.text-master=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-master}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.text-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-template}
-IANA|[Svante_Schubert]|[OASIS]|{application/vnd.oasis.opendocument.text-web=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-web}
-IANA|[Matthias_Hessling]|{application/vnd.obn=http://www.iana.org/assignments/media-types/application/vnd.obn}
-IANA|[Eli_Grey]|{application/vnd.oftn.l10n+json=http://www.iana.org/assignments/media-types/application/vnd.oftn.l10n+json}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.contentaccessdownload+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessdownload+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.contentaccessstreaming+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessstreaming+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.cspg-hexbinary=http://www.iana.org/assignments/media-types/application/vnd.oipf.cspg-hexbinary}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.dae.svg+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.svg+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.dae.xhtml+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.xhtml+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.mippvcontrolmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.mippvcontrolmessage+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.pae.gem=http://www.iana.org/assignments/media-types/application/vnd.oipf.pae.gem}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.spdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdiscovery+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.spdlist+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdlist+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.ueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.ueprofile+xml}
-IANA|[Claire_DEsclercs]|{application/vnd.oipf.userprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.userprofile+xml}
-IANA|[John_Palmieri]|{application/vnd.olpc-sugar=http://www.iana.org/assignments/media-types/application/vnd.olpc-sugar}
-IANA|[Ilan_Mahalal]|{application/vnd.oma-scws-config=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-config}
-IANA|[Ilan_Mahalal]|{application/vnd.oma-scws-http-request=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-request}
-IANA|[Ilan_Mahalal]|{application/vnd.oma-scws-http-response=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-response}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.associated-procedure-parameter+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.associated-procedure-parameter+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.drm-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.drm-trigger+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.imd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.imd+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.ltkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.ltkm}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.notification+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.notification+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.provisioningtrigger=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.provisioningtrigger}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.sgboot=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgboot}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.sgdd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdd+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.sgdu=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdu}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.simple-symbol-container=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.simple-symbol-container}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.smartcard-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.smartcard-trigger+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.sprov+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sprov+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.bcast.stkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.stkm}
-IANA|[Hao_Wang]|[OMA]|{application/vnd.oma.cab-address-book+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-address-book+xml}
-IANA|[Hao_Wang]|[OMA]|{application/vnd.oma.cab-feature-handler+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-feature-handler+xml}
-IANA|[Hao_Wang]|[OMA]|{application/vnd.oma.cab-pcc+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-pcc+xml}
-IANA|[Hao_Wang]|[OMA]|{application/vnd.oma.cab-subs-invite+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-subs-invite+xml}
-IANA|[Hao_Wang]|[OMA]|{application/vnd.oma.cab-user-prefs+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-user-prefs+xml}
-IANA|[Avi_Primo]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.dcd=http://www.iana.org/assignments/media-types/application/vnd.oma.dcd}
-IANA|[Avi_Primo]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.dcdc=http://www.iana.org/assignments/media-types/application/vnd.oma.dcdc}
-IANA|[Jun_Sato]|[Open_Mobile_Alliance_BAC_DLDRM_Working_Group]|{application/vnd.oma.dd2+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.dd2+xml}
-IANA|[Uwe_Rauschenbach]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.drm.risd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.drm.risd+xml}
-IANA|[Sean_Kelley]|[OMA_Presence_and_Availability_PAG_Working_Group]|{application/vnd.oma.group-usage-list+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.group-usage-list+xml}
-IANA|[Brian_McColgan]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.pal+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.pal+xml}
-IANA|[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]|{application/vnd.oma.poc.detailed-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.detailed-progress-report+xml}
-IANA|[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]|{application/vnd.oma.poc.final-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.final-report+xml}
-IANA|[Sean_Kelley]|[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]|{application/vnd.oma.poc.groups+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.groups+xml}
-IANA|[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]|{application/vnd.oma.poc.invocation-descriptor+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.invocation-descriptor+xml}
-IANA|[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]|{application/vnd.oma.poc.optimized-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.optimized-progress-report+xml}
-IANA|[Bryan_Sullivan]|[OMA]|{application/vnd.oma.push=http://www.iana.org/assignments/media-types/application/vnd.oma.push}
-IANA|[Wenjun_Zeng]|[OMNA-Open_Mobile_Naming_Authority]|{application/vnd.oma.scidm.messages+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.scidm.messages+xml}
-IANA|[Sean_Kelley]|[OMA_Presence_and_Availability_PAG_Working_Group]|{application/vnd.oma.xcap-directory+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.xcap-directory+xml}
-IANA|[OMA_Data_Synchronization_Working_Group]|{application/vnd.omads-email+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-email+xml}
-IANA|[OMA_Data_Synchronization_Working_Group]|{application/vnd.omads-file+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-file+xml}
-IANA|[OMA_Data_Synchronization_Working_Group]|{application/vnd.omads-folder+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-folder+xml}
-IANA|[Julien_Grange]|{application/vnd.omaloc-supl-init=http://www.iana.org/assignments/media-types/application/vnd.omaloc-supl-init}
-IANA|[Mark_Otaris]|{application/vnd.openblox.game+xml=http://www.iana.org/assignments/media-types/application/vnd.openblox.game+xml}
-IANA|[Mark_Otaris]|{application/vnd.openblox.game-binary=http://www.iana.org/assignments/media-types/application/vnd.openblox.game-binary}
-IANA|[Craig_Bruce]|{application/vnd.openeye.oeb=http://www.iana.org/assignments/media-types/application/vnd.openeye.oeb}
-IANA|[Lingner]
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.custom-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.custom-properties+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.customXmlProperties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.customXmlProperties+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawing+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawing+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawingml.chart+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chart+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.extended-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.extended-properties+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.comments+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.presentation=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.presProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presProps+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slide=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slideshow=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.tags+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tags+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml-template}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.template.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml-template}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.theme+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.theme+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.themeOverride+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.themeOverride+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.vmlDrawing=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.vmlDrawing}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.document=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml-template}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-package.core-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.core-properties+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml}
-IANA|[Makoto_Murata]|{application/vnd.openxmlformats-package.relationships+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.relationships+xml}
-IANA|[Ning_Dong]|{application/vnd.oracle.resource+json=http://www.iana.org/assignments/media-types/application/vnd.oracle.resource+json}
-IANA|[CHATRAS_Bruno]|{application/vnd.orange.indata=http://www.iana.org/assignments/media-types/application/vnd.orange.indata}
-IANA|[Steven_Klos]|{application/vnd.osa.netdeploy=http://www.iana.org/assignments/media-types/application/vnd.osa.netdeploy}
-IANA|[Jason_Birch]|{application/vnd.osgeo.mapguide.package=http://www.iana.org/assignments/media-types/application/vnd.osgeo.mapguide.package}
-IANA|[Peter_Kriens]|{application/vnd.osgi.bundle=http://www.iana.org/assignments/media-types/application/vnd.osgi.bundle}
-IANA|[Peter_Kriens]|{application/vnd.osgi.dp=http://www.iana.org/assignments/media-types/application/vnd.osgi.dp}
-IANA|[Peter_Kriens]|{application/vnd.osgi.subsystem=http://www.iana.org/assignments/media-types/application/vnd.osgi.subsystem}
-IANA|[Magnus_Nystrom]|{application/vnd.otps.ct-kip+xml=http://www.iana.org/assignments/media-types/application/vnd.otps.ct-kip+xml}
-IANA|[Gavin_Peacock]|{application/vnd.palm=http://www.iana.org/assignments/media-types/application/vnd.palm}
-IANA|[Natarajan_Balasundara]|{application/vnd.panoply=http://www.iana.org/assignments/media-types/application/vnd.panoply}
-IANA|[John_Kemp]|{application/vnd.paos+xml=http://www.iana.org/assignments/media-types/application/vnd.paos+xml}
-IANA|[Prakash_Baskaran]|{application/vnd.pawaafile=http://www.iana.org/assignments/media-types/application/vnd.pawaafile}
-IANA|[Slawomir_Lisznianski]|{application/vnd.pcos=http://www.iana.org/assignments/media-types/application/vnd.pcos}
-IANA|[April_Gandert]|{application/vnd.pg.format=http://www.iana.org/assignments/media-types/application/vnd.pg.format}
-IANA|[April_Gandert]|{application/vnd.pg.osasli=http://www.iana.org/assignments/media-types/application/vnd.pg.osasli}
-IANA|[Lucas_Maneos]|{application/vnd.piaccess.application-licence=http://www.iana.org/assignments/media-types/application/vnd.piaccess.application-licence}
-IANA|[Giuseppe_Naccarato]|{application/vnd.picsel=http://www.iana.org/assignments/media-types/application/vnd.picsel}
-IANA|[Rhys_Lewis]|{application/vnd.pmi.widget=http://www.iana.org/assignments/media-types/application/vnd.pmi.widget}
-IANA|[Sean_Kelley]|[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]|{application/vnd.poc.group-advertisement+xml=http://www.iana.org/assignments/media-types/application/vnd.poc.group-advertisement+xml}
-IANA|[Jorge_Pando]|{application/vnd.pocketlearn=http://www.iana.org/assignments/media-types/application/vnd.pocketlearn}
-IANA|[David_Guy]|{application/vnd.powerbuilder6=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6}
-IANA|[David_Guy]|{application/vnd.powerbuilder6-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6-s}
-IANA|[Reed_Shilts]|{application/vnd.powerbuilder7=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7}
-IANA|[Reed_Shilts]|{application/vnd.powerbuilder7-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7-s}
-IANA|[Reed_Shilts]|{application/vnd.powerbuilder75=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75}
-IANA|[Reed_Shilts]|{application/vnd.powerbuilder75-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75-s}
-IANA|[Juoko_Tenhunen]|{application/vnd.preminet=http://www.iana.org/assignments/media-types/application/vnd.preminet}
-IANA|[Roman_Smolgovsky]|{application/vnd.previewsystems.box=http://www.iana.org/assignments/media-types/application/vnd.previewsystems.box}
-IANA|[Pete_Hoch]|{application/vnd.proteus.magazine=http://www.iana.org/assignments/media-types/application/vnd.proteus.magazine}
-IANA|[Oren_Ben-Kiki]|{application/vnd.publishare-delta-tree=http://www.iana.org/assignments/media-types/application/vnd.publishare-delta-tree}
-IANA|[Charles_P._Lamb]|{application/vnd.pvi.ptid1=http://www.iana.org/assignments/media-types/application/vnd.pvi.ptid1}
-IANA|RFC3391|{application/vnd.pwg-multiplexed=http://www.iana.org/assignments/media-types/application/vnd.pwg-multiplexed}
-IANA|[Don_Wright]|{application/vnd.pwg-xhtml-print+xml=http://www.iana.org/assignments/media-types/application/vnd.pwg-xhtml-print+xml}
-IANA|[Glenn_Forrester]|{application/vnd.qualcomm.brew-app-res=http://www.iana.org/assignments/media-types/application/vnd.qualcomm.brew-app-res}
-IANA|[Hannes_Scheidler]|{application/vnd.Quark.QuarkXPress=http://www.iana.org/assignments/media-types/application/vnd.Quark.QuarkXPress}
-IANA|[Matthias_Ludwig]|{application/vnd.quobject-quoxdocument=http://www.iana.org/assignments/media-types/application/vnd.quobject-quoxdocument}
-IANA|RFC5707|{application/vnd.radisys.moml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.moml+xml}
-IANA|RFC5707|{application/vnd.radisys.msml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-audit+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-audit-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conf+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-audit-conn+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conn+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-audit-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-dialog+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-audit-stream+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-stream+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-conf+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog-base+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-base+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog-fax-detect+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-detect+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog-fax-sendrecv+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-sendrecv+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog-group+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-group+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog-speech+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-speech+xml}
-IANA|RFC5707|{application/vnd.radisys.msml-dialog-transform+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-transform+xml}
-IANA|[Kevin_Crook]|{application/vnd.rainstor.data=http://www.iana.org/assignments/media-types/application/vnd.rainstor.data}
-IANA|[Etay_Szekely]|{application/vnd.rapid=http://www.iana.org/assignments/media-types/application/vnd.rapid}
-IANA|[Nick_Reeves]|{application/vnd.realvnc.bed=http://www.iana.org/assignments/media-types/application/vnd.realvnc.bed}
-IANA|[Michael_Good]|{application/vnd.recordare.musicxml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml}
-IANA|[Michael_Good]|{application/vnd.recordare.musicxml+xml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml+xml}
-IANA|[James_Wick]|{application/vnd.renlearn.rlprint=http://www.iana.org/assignments/media-types/application/vnd.renlearn.rlprint}
-IANA|[Ken_Jibiki]|{application/vnd.rig.cryptonote=http://www.iana.org/assignments/media-types/application/vnd.rig.cryptonote}
--
--
--
-IANA|[Sybren_Kikstra]|{application/vnd.route66.link66+xml=http://www.iana.org/assignments/media-types/application/vnd.route66.link66+xml}
-IANA|[Lee_Harding]|{application/vnd.rs-274x=http://www.iana.org/assignments/media-types/application/vnd.rs-274x}
-IANA|[Jerry_Harris]|{application/vnd.ruckus.download=http://www.iana.org/assignments/media-types/application/vnd.ruckus.download}
-IANA|[Lauri_Tarkkala]|{application/vnd.s3sms=http://www.iana.org/assignments/media-types/application/vnd.s3sms}
-IANA|[Heikki_Vesalainen]|{application/vnd.sailingtracker.track=http://www.iana.org/assignments/media-types/application/vnd.sailingtracker.track}
-IANA|[Shinji_Kusakari]|{application/vnd.sbm.cid=http://www.iana.org/assignments/media-types/application/vnd.sbm.cid}
-IANA|[Masanori_Murai]|{application/vnd.sbm.mid2=http://www.iana.org/assignments/media-types/application/vnd.sbm.mid2}
-IANA|[Craig_Bradney]|{application/vnd.scribus=http://www.iana.org/assignments/media-types/application/vnd.scribus}
-IANA|[John_Kwan]|{application/vnd.sealed.3df=http://www.iana.org/assignments/media-types/application/vnd.sealed.3df}
-IANA|[John_Kwan]|{application/vnd.sealed.csf=http://www.iana.org/assignments/media-types/application/vnd.sealed.csf}
-IANA|[David_Petersen]|{application/vnd.sealed-doc=http://www.iana.org/assignments/media-types/application/vnd.sealed-doc}
-IANA|[David_Petersen]|{application/vnd.sealed-eml=http://www.iana.org/assignments/media-types/application/vnd.sealed-eml}
-IANA|[David_Petersen]|{application/vnd.sealed-mht=http://www.iana.org/assignments/media-types/application/vnd.sealed-mht}
-IANA|[Martin_Lambert]|{application/vnd.sealed.net=http://www.iana.org/assignments/media-types/application/vnd.sealed.net}
-IANA|[David_Petersen]|{application/vnd.sealed-ppt=http://www.iana.org/assignments/media-types/application/vnd.sealed-ppt}
-IANA|[John_Kwan]|[Martin_Lambert]|{application/vnd.sealed-tiff=http://www.iana.org/assignments/media-types/application/vnd.sealed-tiff}
-IANA|[David_Petersen]|{application/vnd.sealed-xls=http://www.iana.org/assignments/media-types/application/vnd.sealed-xls}
-IANA|[David_Petersen]|{application/vnd.sealedmedia.softseal-html=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-html}
-IANA|[David_Petersen]|{application/vnd.sealedmedia.softseal-pdf=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-pdf}
-IANA|[Steve_Webb]|{application/vnd.seemail=http://www.iana.org/assignments/media-types/application/vnd.seemail}
-IANA|[Anders_Hansson]|{application/vnd-sema=http://www.iana.org/assignments/media-types/application/vnd-sema}
-IANA|[Anders_Hansson]|{application/vnd.semd=http://www.iana.org/assignments/media-types/application/vnd.semd}
-IANA|[Anders_Hansson]|{application/vnd.semf=http://www.iana.org/assignments/media-types/application/vnd.semf}
-IANA|[Guy_Selzler]|{application/vnd.shana.informed.formdata=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formdata}
-IANA|[Guy_Selzler]|{application/vnd.shana.informed.formtemplate=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formtemplate}
-IANA|[Guy_Selzler]|{application/vnd.shana.informed.interchange=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.interchange}
-IANA|[Guy_Selzler]|{application/vnd.shana.informed.package=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.package}
-IANA|[Patrick_Koh]|{application/vnd.SimTech-MindMapper=http://www.iana.org/assignments/media-types/application/vnd.SimTech-MindMapper}
-IANA|[Kevin_Swiber]|{application/vnd.siren+json=http://www.iana.org/assignments/media-types/application/vnd.siren+json}
-IANA|[Hiroaki_Takahashi]|{application/vnd.smaf=http://www.iana.org/assignments/media-types/application/vnd.smaf}
-IANA|[Jonathan_Neitz]|{application/vnd.smart.notebook=http://www.iana.org/assignments/media-types/application/vnd.smart.notebook}
-IANA|[Michael_Boyle]|{application/vnd.smart.teacher=http://www.iana.org/assignments/media-types/application/vnd.smart.teacher}
-IANA|[Jakub_Hytka]|[Martin_Vondrous]|{application/vnd.software602.filler.form+xml=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form+xml}
-IANA|[Jakub_Hytka]|[Martin_Vondrous]|{application/vnd.software602.filler.form-xml-zip=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form-xml-zip}
-IANA|[Cliff_Gauntlett]|{application/vnd.solent.sdkm+xml=http://www.iana.org/assignments/media-types/application/vnd.solent.sdkm+xml}
-IANA|[Stefan_Jernberg]|{application/vnd.spotfire.dxp=http://www.iana.org/assignments/media-types/application/vnd.spotfire.dxp}
-IANA|[Stefan_Jernberg]|{application/vnd.spotfire.sfs=http://www.iana.org/assignments/media-types/application/vnd.spotfire.sfs}
-IANA|[Asang_Dani]|{application/vnd.sss-cod=http://www.iana.org/assignments/media-types/application/vnd.sss-cod}
-IANA|[Eric_Bruno]|{application/vnd.sss-dtf=http://www.iana.org/assignments/media-types/application/vnd.sss-dtf}
-IANA|[Eric_Bruno]|{application/vnd.sss-ntf=http://www.iana.org/assignments/media-types/application/vnd.sss-ntf}
--
--
--
--
--
--
--
-IANA|[Henrik_Andersson]|{application/vnd.stepmania.package=http://www.iana.org/assignments/media-types/application/vnd.stepmania.package}
-IANA|[Henrik_Andersson]|{application/vnd.stepmania.stepchart=http://www.iana.org/assignments/media-types/application/vnd.stepmania.stepchart}
-IANA|[Glenn_Levitt]|{application/vnd.street-stream=http://www.iana.org/assignments/media-types/application/vnd.street-stream}
-IANA|[Marc_Hadley]|{application/vnd.sun.wadl+xml=http://www.iana.org/assignments/media-types/application/vnd.sun.wadl+xml}
--
--
--
--
--
--
--
--
--
--
-IANA|[Jonathan_Niedfeldt]|{application/vnd.sus-calendar=http://www.iana.org/assignments/media-types/application/vnd.sus-calendar}
-IANA|[Scott_Becker]|{application/vnd.svd=http://www.iana.org/assignments/media-types/application/vnd.svd}
-IANA|[Glenn_Widener]|{application/vnd.swiftview-ics=http://www.iana.org/assignments/media-types/application/vnd.swiftview-ics}
--
-IANA|[OMA_Data_Synchronization_Working_Group]|{application/vnd.syncml+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml+xml}
-IANA|[OMA-DM_Work_Group]|{application/vnd.syncml.dm+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+wbxml}
-IANA|[Bindu_Rama_Rao]|[OMA-DM_Work_Group]|{application/vnd.syncml.dm+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+xml}
-IANA|[Peter_Thompson]|[OMA-DM_Work_Group]|{application/vnd.syncml.dm.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm.notification}
-IANA|[OMA-DM_Work_Group]|{application/vnd.syncml.dmddf+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+wbxml}
-IANA|[OMA-DM_Work_Group]|{application/vnd.syncml.dmddf+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+xml}
-IANA|[OMA-DM_Work_Group]|{application/vnd.syncml.dmtnds+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+wbxml}
-IANA|[OMA-DM_Work_Group]|{application/vnd.syncml.dmtnds+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+xml}
-IANA|[OMA_Data_Synchronization_Working_Group]|{application/vnd.syncml.ds.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.ds.notification}
-IANA|[Daniel_Shelton]|{application/vnd.tao.intent-module-archive=http://www.iana.org/assignments/media-types/application/vnd.tao.intent-module-archive}
-IANA|[Guy_Harris]|[Glen_Turner]|{application/vnd.tcpdump.pcap=http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap}
-IANA|[Alex_Sibilev]|{application/vnd.tmd.mediaflex.api+xml=http://www.iana.org/assignments/media-types/application/vnd.tmd.mediaflex.api+xml}
-IANA|[Nicolas_Helin]|{application/vnd.tmobile-livetv=http://www.iana.org/assignments/media-types/application/vnd.tmobile-livetv}
-IANA|[Frank_Cusack]|{application/vnd.trid.tpt=http://www.iana.org/assignments/media-types/application/vnd.trid.tpt}
-IANA|[Steven_Simonoff]|{application/vnd.triscape.mxs=http://www.iana.org/assignments/media-types/application/vnd.triscape.mxs}
-IANA|[J._Scott_Hepler]|{application/vnd.trueapp=http://www.iana.org/assignments/media-types/application/vnd.trueapp}
-IANA|[Brad_Chase]|{application/vnd.truedoc=http://www.iana.org/assignments/media-types/application/vnd.truedoc}
-IANA|[Martin_Talbot]|{application/vnd.ubisoft.webplayer=http://www.iana.org/assignments/media-types/application/vnd.ubisoft.webplayer}
-IANA|[Dave_Manning]|{application/vnd.ufdl=http://www.iana.org/assignments/media-types/application/vnd.ufdl}
-IANA|[Tim_Ocock]|{application/vnd.uiq.theme=http://www.iana.org/assignments/media-types/application/vnd.uiq.theme}
-IANA|[Jamie_Riden]|{application/vnd.umajin=http://www.iana.org/assignments/media-types/application/vnd.umajin}
-IANA|[Unity3d]|{application/vnd.unity=http://www.iana.org/assignments/media-types/application/vnd.unity}
-IANA|[Arne_Gerdes]|{application/vnd.uoml+xml=http://www.iana.org/assignments/media-types/application/vnd.uoml+xml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.alert=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.alert-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert-wbxml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.bearer-choice=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.bearer-choice-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice-wbxml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.cacheop=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.cacheop-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop-wbxml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.channel=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.channel-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel-wbxml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.list=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.list-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list-wbxml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.listcmd=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.listcmd-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd-wbxml}
-IANA|[Bruce_Martin]|{application/vnd.uplanet.signal=http://www.iana.org/assignments/media-types/application/vnd.uplanet.signal}
-IANA|[Sebastian_Baer]|{application/vnd.uri-map=http://www.iana.org/assignments/media-types/application/vnd.uri-map}
-IANA|[Henrik_Andersson]|{application/vnd.valve.source.material=http://www.iana.org/assignments/media-types/application/vnd.valve.source.material}
-IANA|[Taisuke_Sugimoto]|{application/vnd.vcx=http://www.iana.org/assignments/media-types/application/vnd.vcx}
-IANA|[Luc_Rogge]|{application/vnd.vd-study=http://www.iana.org/assignments/media-types/application/vnd.vd-study}
-IANA|[Lyndsey_Ferguson]|[Biplab_Sarkar]|{application/vnd.vectorworks=http://www.iana.org/assignments/media-types/application/vnd.vectorworks}
-IANA|[Petr_Peterka]|{application/vnd.verimatrix.vcas=http://www.iana.org/assignments/media-types/application/vnd.verimatrix.vcas}
-IANA|[Robert_Hess]|{application/vnd.vidsoft.vidconference=http://www.iana.org/assignments/media-types/application/vnd.vidsoft.vidconference}
-IANA|[Troy_Sandal]|{application/vnd.visio=http://www.iana.org/assignments/media-types/application/vnd.visio}
-IANA|[Gayatri_Aravindakumar]|{application/vnd.visionary=http://www.iana.org/assignments/media-types/application/vnd.visionary}
-IANA|[Mark_Risher]|{application/vnd.vividence.scriptfile=http://www.iana.org/assignments/media-types/application/vnd.vividence.scriptfile}
-IANA|[Delton_Rowe]|{application/vnd.vsf=http://www.iana.org/assignments/media-types/application/vnd.vsf}
-IANA|[WAP-Forum]|{application/vnd.wap.sic=http://www.iana.org/assignments/media-types/application/vnd.wap.sic}
-IANA|[WAP-Forum]|{application/vnd.wap-slc=http://www.iana.org/assignments/media-types/application/vnd.wap-slc}
-IANA|[Peter_Stark]|{application/vnd.wap-wbxml=http://www.iana.org/assignments/media-types/application/vnd.wap-wbxml}
-IANA|[Peter_Stark]|{application/vnd-wap-wmlc=http://www.iana.org/assignments/media-types/application/vnd-wap-wmlc}
-IANA|[Peter_Stark]|{application/vnd.wap.wmlscriptc=http://www.iana.org/assignments/media-types/application/vnd.wap.wmlscriptc}
-IANA|[Yaser_Rehem]|{application/vnd.webturbo=http://www.iana.org/assignments/media-types/application/vnd.webturbo}
-IANA|[Mick_Conley]|{application/vnd.wfa.p2p=http://www.iana.org/assignments/media-types/application/vnd.wfa.p2p}
-IANA|[Wi-Fi_Alliance]|{application/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/application/vnd.wfa.wsc}
-IANA|[Priya_Dandawate]|{application/vnd.windows.devicepairing=http://www.iana.org/assignments/media-types/application/vnd.windows.devicepairing}
-IANA|[Thomas_Kjornes]|{application/vnd.wmc=http://www.iana.org/assignments/media-types/application/vnd.wmc}
-IANA|[Thinh_Nguyenphu]|[Prakash_Iyer]|{application/vnd.wmf.bootstrap=http://www.iana.org/assignments/media-types/application/vnd.wmf.bootstrap}
-IANA|[Wolfram]|{application/vnd.wolfram.mathematica=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica}
-IANA|[Wolfram]|{application/vnd.wolfram.mathematica.package=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica.package}
-IANA|[Wolfram]|{application/vnd.wolfram.player=http://www.iana.org/assignments/media-types/application/vnd.wolfram.player}
-IANA|[Kim_Scarborough]|{application/vnd.wordperfect=http://www.iana.org/assignments/media-types/application/vnd.wordperfect}
-IANA|[Jan_Bostrom]|{application/vnd.wqd=http://www.iana.org/assignments/media-types/application/vnd.wqd}
-IANA|[Chris_Bartram]|{application/vnd.wrq-hp3000-labelled=http://www.iana.org/assignments/media-types/application/vnd.wrq-hp3000-labelled}
-IANA|[Bill_Wohler]|{application/vnd.wt.stf=http://www.iana.org/assignments/media-types/application/vnd.wt.stf}
-IANA|[Matti_Salmi]|{application/vnd.wv.csp+wbxml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+wbxml}
-IANA|[John_Ingi_Ingimundarson]|{application/vnd.wv.csp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+xml}
-IANA|[John_Ingi_Ingimundarson]|{application/vnd.wv.ssp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.ssp+xml}
-IANA|[David_Brossard]|{application/vnd.xacml+json=http://www.iana.org/assignments/media-types/application/vnd.xacml+json}
-IANA|[David_Matthewman]|{application/vnd.xara=http://www.iana.org/assignments/media-types/application/vnd.xara}
-IANA|[Dave_Manning]|{application/vnd.xfdl=http://www.iana.org/assignments/media-types/application/vnd.xfdl}
-IANA|[Michael_Mansell]|{application/vnd.xfdl.webform=http://www.iana.org/assignments/media-types/application/vnd.xfdl.webform}
-IANA|[Fred_Waskiewicz]|{application/vnd.xmi+xml=http://www.iana.org/assignments/media-types/application/vnd.xmi+xml}
-IANA|[Reuven_Sherwin]|{application/vnd.xmpie.cpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.cpkg}
-IANA|[Reuven_Sherwin]|{application/vnd.xmpie.dpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.dpkg}
-IANA|[Reuven_Sherwin]|{application/vnd.xmpie.plan=http://www.iana.org/assignments/media-types/application/vnd.xmpie.plan}
-IANA|[Reuven_Sherwin]|{application/vnd.xmpie.ppkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.ppkg}
-IANA|[Reuven_Sherwin]|{application/vnd.xmpie.xlim=http://www.iana.org/assignments/media-types/application/vnd.xmpie.xlim}
-IANA|[Tomohiro_Yamamoto]|{application/vnd.yamaha.hv-dic=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-dic}
-IANA|[Tomohiro_Yamamoto]|{application/vnd.yamaha.hv-script=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-script}
-IANA|[Tomohiro_Yamamoto]|{application/vnd.yamaha.hv-voice=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-voice}
-IANA|[Mark_Olleson]|{application/vnd.yamaha.openscoreformat=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat}
-IANA|[Mark_Olleson]|{application/vnd.yamaha.openscoreformat.osfpvg+xml=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat.osfpvg+xml}
-IANA|[Takehiro_Sukizaki]|{application/vnd.yamaha.remote-setup=http://www.iana.org/assignments/media-types/application/vnd.yamaha.remote-setup}
-IANA|[Keiichi_Shinoda]|{application/vnd.yamaha.smaf-audio=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-audio}
-IANA|[Keiichi_Shinoda]|{application/vnd.yamaha.smaf-phrase=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-phrase}
-IANA|[Takehiro_Sukizaki]|{application/vnd.yamaha.through-ngn=http://www.iana.org/assignments/media-types/application/vnd.yamaha.through-ngn}
-IANA|[Takehiro_Sukizaki]|{application/vnd.yamaha.tunnel-udpencap=http://www.iana.org/assignments/media-types/application/vnd.yamaha.tunnel-udpencap}
-IANA|[Jens_Jorgensen]|{application/vnd.yaoweme=http://www.iana.org/assignments/media-types/application/vnd.yaoweme}
-IANA|[Mr._Yellow]|{application/vnd.yellowriver-custom-menu=http://www.iana.org/assignments/media-types/application/vnd.yellowriver-custom-menu}
-IANA|[Rene_Grothmann]|{application/vnd.zul=http://www.iana.org/assignments/media-types/application/vnd.zul}
-IANA|[Micheal_Hewett]|{application/vnd.zzazz.deck+xml=http://www.iana.org/assignments/media-types/application/vnd.zzazz.deck+xml}
-IANA|RFC4267|{application/voicexml+xml=http://www.iana.org/assignments/media-types/application/voicexml+xml}
-IANA|RFC6035|{application/vq-rtcpxr=http://www.iana.org/assignments/media-types/application/vq-rtcpxr}
-IANA|RFC3858|{application/watcherinfo+xml=http://www.iana.org/assignments/media-types/application/watcherinfo+xml}
-IANA|RFC2957|{application/whoispp-query=http://www.iana.org/assignments/media-types/application/whoispp-query}
-IANA|RFC2958|{application/whoispp-response=http://www.iana.org/assignments/media-types/application/whoispp-response}
-IANA|[W3C]|[Steven_Pemberton]|{http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw}
--
-IANA|[Larry_Campbell]|{application/wita=http://www.iana.org/assignments/media-types/application/wita}
--
--
-IANA|[Paul_Lindner]|{application/wordperfect5.1=http://www.iana.org/assignments/media-types/application/wordperfect5.1}
--
--
-IANA|[W3C]|{application/wsdl+xml=http://www.iana.org/assignments/media-types/application/wsdl+xml}
-IANA|[W3C]|{application/wspolicy+xml=http://www.iana.org/assignments/media-types/application/wspolicy+xml}
--
-{7zip=http://www.7-zip.org/7z.html}
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-IANA|[W3C]|[Robin_Berjon]|{application/x-www-form-urlencoded=http://www.iana.org/assignments/media-types/application/x-www-form-urlencoded}
--
--
--
--
--
--
-IANA|RFC1494|{application/x400-bp=http://www.iana.org/assignments/media-types/application/x400-bp}
--
-IANA|RFC7061|{application/xacml+xml=http://www.iana.org/assignments/media-types/application/xacml+xml}
--
-IANA|RFC4825|{application/xcap-att+xml=http://www.iana.org/assignments/media-types/application/xcap-att+xml}
-IANA|RFC4825|{application/xcap-caps+xml=http://www.iana.org/assignments/media-types/application/xcap-caps+xml}
-IANA|RFC5874|{application/xcap-diff+xml=http://www.iana.org/assignments/media-types/application/xcap-diff+xml}
-IANA|RFC4825|{application/xcap-el+xml=http://www.iana.org/assignments/media-types/application/xcap-el+xml}
-IANA|RFC4825|{application/xcap-error+xml=http://www.iana.org/assignments/media-types/application/xcap-error+xml}
-IANA|RFC4825|{application/xcap-ns+xml=http://www.iana.org/assignments/media-types/application/xcap-ns+xml}
-IANA|RFC6502|{application/xcon-conference-info+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info+xml}
-IANA|RFC6502|{application/xcon-conference-info-diff+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info-diff+xml}
-IANA|[Joseph_Reagle]|[XENC_Working_Group]|{application/xenc+xml=http://www.iana.org/assignments/media-types/application/xenc+xml}
-IANA|[W3C]|[Robin_Berjon]|{application/xhtml+xml=http://www.iana.org/assignments/media-types/application/xhtml+xml}
-IANA|DRAFT:draft-mccobb-xplusv-media-type|{application/xhtml-voice+xml=http://www.iana.org/assignments/media-types/application/xhtml-voice+xml}
-IANA|RFC7303|{application/xml=http://www.iana.org/assignments/media-types/application/xml}
-IANA|RFC7303|{application/xml-dtd=http://www.iana.org/assignments/media-types/application/xml-dtd}
-IANA|RFC7303|{application/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/application/xml-external-parsed-entity}
-IANA|RFC7351|{application/xml-patch+xml=http://www.iana.org/assignments/media-types/application/xml-patch+xml}
-IANA|RFC3923|{application/xmpp+xml=http://www.iana.org/assignments/media-types/application/xmpp+xml}
-IANA|[Mark_Nottingham]|{application/xop+xml=http://www.iana.org/assignments/media-types/application/xop+xml}
--
-IANA|[W3C]|{http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration}
--
-IANA|RFC4374|{application/xv+xml=http://www.iana.org/assignments/media-types/application/xv+xml}
-IANA|RFC6020|{application/yang=http://www.iana.org/assignments/media-types/application/yang}
-IANA|RFC6020|{application/yin+xml=http://www.iana.org/assignments/media-types/application/yin+xml}
-IANA|[Paul_Lindner]|{application/zip=http://www.iana.org/assignments/media-types/application/zip}
-IANA|RFC6713|{application/zlib=http://www.iana.org/assignments/media-types/application/zlib}
-IANA|RFC6015|{audio/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/audio/1d-interleaved-parityfec}
-IANA|RFC3802|RFC2421|{audio/32kadpcm=http://www.iana.org/assignments/media-types/audio/32kadpcm}
-IANA|RFC3839|RFC6381|{audio/3gpp=http://www.iana.org/assignments/media-types/audio/3gpp}
-IANA|RFC4393|RFC6381|{audio/3gpp2=http://www.iana.org/assignments/media-types/audio/3gpp2}
-IANA|RFC4184|{audio/ac3=http://www.iana.org/assignments/media-types/audio/ac3}
--
-IANA|RFC4867|{audio/AMR=http://www.iana.org/assignments/media-types/audio/AMR}
-IANA|RFC4867|{audio/AMR-WB=http://www.iana.org/assignments/media-types/audio/AMR-WB}
-IANA|RFC4352|{audio/amr-wb+=http://www.iana.org/assignments/media-types/audio/amr-wb+}
-IANA|RFC7310|{audio/aptx=http://www.iana.org/assignments/media-types/audio/aptx}
-IANA|RFC6295|{audio/asc=http://www.iana.org/assignments/media-types/audio/asc}
-IANA|RFC5584|{audio/ATRAC-ADVANCED-LOSSLESS=http://www.iana.org/assignments/media-types/audio/ATRAC-ADVANCED-LOSSLESS}
-IANA|RFC5584|{audio/ATRAC-X=http://www.iana.org/assignments/media-types/audio/ATRAC-X}
-IANA|RFC5584|{audio/ATRAC3=http://www.iana.org/assignments/media-types/audio/ATRAC3}
-IANA|RFC2045|RFC2046|{audio/basic=http://www.iana.org/assignments/media-types/audio/basic}
-IANA|RFC4298|{audio/BV16=http://www.iana.org/assignments/media-types/audio/BV16}
-IANA|RFC4298|{audio/BV32=http://www.iana.org/assignments/media-types/audio/BV32}
-IANA|RFC4040|{audio/clearmode=http://www.iana.org/assignments/media-types/audio/clearmode}
-IANA|RFC3389|{audio/CN=http://www.iana.org/assignments/media-types/audio/CN}
-IANA|RFC3190|{audio/DAT12=http://www.iana.org/assignments/media-types/audio/DAT12}
-IANA|RFC4613|{audio/dls=http://www.iana.org/assignments/media-types/audio/dls}
-IANA|RFC3557|{audio/dsr-es201108=http://www.iana.org/assignments/media-types/audio/dsr-es201108}
-IANA|RFC4060|{audio/dsr-es202050=http://www.iana.org/assignments/media-types/audio/dsr-es202050}
-IANA|RFC4060|{audio/dsr-es202211=http://www.iana.org/assignments/media-types/audio/dsr-es202211}
-IANA|RFC4060|{audio/dsr-es202212=http://www.iana.org/assignments/media-types/audio/dsr-es202212}
-IANA|RFC6469|{audio/DV=http://www.iana.org/assignments/media-types/audio/DV}
-IANA|RFC4856|{audio/DVI4=http://www.iana.org/assignments/media-types/audio/DVI4}
-IANA|RFC4598|{audio/eac3=http://www.iana.org/assignments/media-types/audio/eac3}
-IANA|RFC6849|{audio/encaprtp=http://www.iana.org/assignments/media-types/audio/encaprtp}
-IANA|RFC4788|{audio/EVRC=http://www.iana.org/assignments/media-types/audio/EVRC}
-IANA|RFC3625|{audio/EVRC-QCP=http://www.iana.org/assignments/media-types/audio/EVRC-QCP}
-IANA|RFC4788|{audio/EVRC0=http://www.iana.org/assignments/media-types/audio/EVRC0}
-IANA|RFC4788|{audio/EVRC1=http://www.iana.org/assignments/media-types/audio/EVRC1}
-IANA|RFC5188|{audio/EVRCB=http://www.iana.org/assignments/media-types/audio/EVRCB}
-IANA|RFC5188|{audio/EVRCB0=http://www.iana.org/assignments/media-types/audio/EVRCB0}
-IANA|RFC4788|{audio/EVRCB1=http://www.iana.org/assignments/media-types/audio/EVRCB1}
-IANA|RFC6884|{audio/EVRCNW=http://www.iana.org/assignments/media-types/audio/EVRCNW}
-IANA|RFC6884|{audio/EVRCNW0=http://www.iana.org/assignments/media-types/audio/EVRCNW0}
-IANA|RFC6884|{audio/EVRCNW1=http://www.iana.org/assignments/media-types/audio/EVRCNW1}
-IANA|RFC5188|{audio/EVRCWB=http://www.iana.org/assignments/media-types/audio/EVRCWB}
-IANA|RFC5188|{audio/EVRCWB0=http://www.iana.org/assignments/media-types/audio/EVRCWB0}
-IANA|RFC5188|{audio/EVRCWB1=http://www.iana.org/assignments/media-types/audio/EVRCWB1}
-IANA|RFC4735|{audio/example=http://www.iana.org/assignments/media-types/audio/example}
-IANA|RFC6354|{audio/fwdred=http://www.iana.org/assignments/media-types/audio/fwdred}
-IANA|DRAFT:draft-ietf-payload-g7110-06|{audio/G711-0=http://www.iana.org/assignments/media-types/audio/G711-0}
-IANA|RFC5404|{RFC Errata 3245=http://www.rfc-editor.org/errata_search.php?eid=3245}|{audio/G719=http://www.iana.org/assignments/media-types/audio/G719}
-IANA|RFC4856|{audio/G722=http://www.iana.org/assignments/media-types/audio/G722}
-IANA|RFC5577|{audio/G7221=http://www.iana.org/assignments/media-types/audio/G7221}
-IANA|RFC4856|{audio/G723=http://www.iana.org/assignments/media-types/audio/G723}
-IANA|RFC4856|{audio/G726-16=http://www.iana.org/assignments/media-types/audio/G726-16}
-IANA|RFC4856|{audio/G726-24=http://www.iana.org/assignments/media-types/audio/G726-24}
-IANA|RFC4856|{audio/G726-32=http://www.iana.org/assignments/media-types/audio/G726-32}
-IANA|RFC4856|{audio/G726-40=http://www.iana.org/assignments/media-types/audio/G726-40}
-IANA|RFC4856|{audio/G728=http://www.iana.org/assignments/media-types/audio/G728}
-IANA|RFC4856|{audio/G729=http://www.iana.org/assignments/media-types/audio/G729}
-IANA|RFC4749|RFC5459
-IANA|RFC4856|{audio/G729D=http://www.iana.org/assignments/media-types/audio/G729D}
-IANA|RFC4856|{audio/G729E=http://www.iana.org/assignments/media-types/audio/G729E}
-IANA|RFC4856|{audio/GSM=http://www.iana.org/assignments/media-types/audio/GSM}
-IANA|RFC4856|{audio/GSM-EFR=http://www.iana.org/assignments/media-types/audio/GSM-EFR}
-IANA|RFC5993|{audio/GSM-HR-08=http://www.iana.org/assignments/media-types/audio/GSM-HR-08}
-IANA|RFC3952|{audio/iLBC=http://www.iana.org/assignments/media-types/audio/iLBC}
-IANA|RFC6262|{audio/ip-mr_v2.5=http://www.iana.org/assignments/media-types/audio/ip-mr_v2.5}
-IANA|RFC4856|{audio/L16=http://www.iana.org/assignments/media-types/audio/L16}
-IANA|RFC3190|{audio/L20=http://www.iana.org/assignments/media-types/audio/L20}
-IANA|RFC3190|{audio/L24=http://www.iana.org/assignments/media-types/audio/L24}
-IANA|RFC4856|{audio/L8=http://www.iana.org/assignments/media-types/audio/L8}
-IANA|RFC4856|{audio/LPC=http://www.iana.org/assignments/media-types/audio/LPC}
--
-IANA|RFC4723|{audio/mobile-xmf=http://www.iana.org/assignments/media-types/audio/mobile-xmf}
-IANA|RFC4337|RFC6381|{audio/mp4=http://www.iana.org/assignments/media-types/audio/mp4}
-IANA|RFC6416|{audio/MP4A-LATM=http://www.iana.org/assignments/media-types/audio/MP4A-LATM}
-IANA|RFC3555|{audio/MPA=http://www.iana.org/assignments/media-types/audio/MPA}
-IANA|RFC5219|{audio/mpa-robust=http://www.iana.org/assignments/media-types/audio/mpa-robust}
-IANA|RFC3003|{audio/mpeg=http://www.iana.org/assignments/media-types/audio/mpeg}
-IANA|RFC3640|RFC5691|RFC6295|{audio/mpeg4-generic=http://www.iana.org/assignments/media-types/audio/mpeg4-generic}
-IANA|RFC5334|{audio/ogg=http://www.iana.org/assignments/media-types/audio/ogg}
-IANA|RFC7587|{audio/opus=http://www.iana.org/assignments/media-types/audio/opus}
-IANA|RFC5109
-IANA|RFC4856|{audio/PCMA=http://www.iana.org/assignments/media-types/audio/PCMA}
-IANA|RFC5391|{audio/PCMA-WB=http://www.iana.org/assignments/media-types/audio/PCMA-WB}
-IANA|RFC4856|{audio/PCMU=http://www.iana.org/assignments/media-types/audio/PCMU}
-IANA|RFC5391|{audio/PCMU-WB=http://www.iana.org/assignments/media-types/audio/PCMU-WB}
-IANA|[Linus_Walleij]|{audio/prs.sid=http://www.iana.org/assignments/media-types/audio/prs.sid}
-IANA|RFC3555|RFC3625
-IANA|RFC6682|{audio/raptorfec=http://www.iana.org/assignments/media-types/audio/raptorfec}
-IANA|RFC3555|{audio/RED=http://www.iana.org/assignments/media-types/audio/RED}
-IANA|[ThreeGPP]|{audio/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/audio/rtp-enc-aescm128}
-IANA|RFC6295|{audio/rtp-midi=http://www.iana.org/assignments/media-types/audio/rtp-midi}
-IANA|RFC6849|{audio/rtploopback=http://www.iana.org/assignments/media-types/audio/rtploopback}
-IANA|RFC4588|{audio/rtx=http://www.iana.org/assignments/media-types/audio/rtx}
--
--
-IANA|RFC3558|{audio/SMV=http://www.iana.org/assignments/media-types/audio/SMV}
-IANA|RFC3625|{audio/SMV-QCP=http://www.iana.org/assignments/media-types/audio/SMV-QCP}
-IANA|RFC3558|{audio/SMV0=http://www.iana.org/assignments/media-types/audio/SMV0}
-IANA|[Timo_Kosonen]|[Tom_White]|{audio/sp-midi=http://www.iana.org/assignments/media-types/audio/sp-midi}
-IANA|RFC5574|{audio/speex=http://www.iana.org/assignments/media-types/audio/speex}
-IANA|RFC4351|{audio/t140c=http://www.iana.org/assignments/media-types/audio/t140c}
-IANA|RFC4612|{audio/t38=http://www.iana.org/assignments/media-types/audio/t38}
-IANA|RFC4733|{audio/telephone-event=http://www.iana.org/assignments/media-types/audio/telephone-event}
-IANA|RFC4733|{audio/tone=http://www.iana.org/assignments/media-types/audio/tone}
-IANA|RFC5686|{audio/UEMCLIP=http://www.iana.org/assignments/media-types/audio/UEMCLIP}
-IANA|RFC5109|{audio/ulpfec=http://www.iana.org/assignments/media-types/audio/ulpfec}
-IANA|RFC4856|{audio/VDVI=http://www.iana.org/assignments/media-types/audio/VDVI}
-IANA|RFC4348|RFC4424|{audio/VMR-WB=http://www.iana.org/assignments/media-types/audio/VMR-WB}
-IANA|[Thomas_Belling]|{audio/vnd.3gpp.iufp=http://www.iana.org/assignments/media-types/audio/vnd.3gpp.iufp}
-IANA|[Serge_De_Jaham]|{audio/vnd.4SB=http://www.iana.org/assignments/media-types/audio/vnd.4SB}
-IANA|[Vicki_DeBarros]|{audio/vnd.audiokoz=http://www.iana.org/assignments/media-types/audio/vnd.audiokoz}
-IANA|[Serge_De_Jaham]|{audio/vnd.CELP=http://www.iana.org/assignments/media-types/audio/vnd.CELP}
-IANA|[Rajesh_Kumar]|{audio/vnd.cisco.nse=http://www.iana.org/assignments/media-types/audio/vnd.cisco.nse}
-IANA|[Jean-Philippe_Goulet]|{audio/vnd.cmles.radio-events=http://www.iana.org/assignments/media-types/audio/vnd.cmles.radio-events}
-IANA|[Ann_McLaughlin]|{audio/vnd.cns.anp1=http://www.iana.org/assignments/media-types/audio/vnd.cns.anp1}
-IANA|[Ann_McLaughlin]|{audio/vnd.cns.inf1=http://www.iana.org/assignments/media-types/audio/vnd.cns.inf1}
-IANA|[Michael_A_Dolan]|{audio/vnd.dece.audio=http://www.iana.org/assignments/media-types/audio/vnd.dece.audio}
-IANA|[Armands_Strazds]|{audio/vnd.digital-winds=http://www.iana.org/assignments/media-types/audio/vnd.digital-winds}
-IANA|[Edwin_Heredia]|{audio/vnd.dlna.adts=http://www.iana.org/assignments/media-types/audio/vnd.dlna.adts}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.heaac.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.1}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.heaac.2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.2}
-IANA|[Mike_Ward]|{audio/vnd.dolby.mlp=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mlp}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.mps=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mps}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.pl2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.pl2x=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2x}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.pl2z=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2z}
-IANA|[Steve_Hattersley]|{audio/vnd.dolby.pulse.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pulse.1}
-IANA|[Jiang_Tian]|{audio/vnd.dra=http://www.iana.org/assignments/media-types/audio/vnd.dra}
-IANA|[William_Zou]|{audio/vnd.dts=http://www.iana.org/assignments/media-types/audio/vnd.dts}
-IANA|[William_Zou]|{audio/vnd.dts.hd=http://www.iana.org/assignments/media-types/audio/vnd.dts.hd}
-IANA|[Peter_Siebert]|{audio/vnd.dvb.file=http://www.iana.org/assignments/media-types/audio/vnd.dvb.file}
-IANA|[Shay_Cicelsky]|{audio/vnd.everad.plj=http://www.iana.org/assignments/media-types/audio/vnd.everad.plj}
-IANA|[Swaminathan]|{audio/vnd.hns.audio=http://www.iana.org/assignments/media-types/audio/vnd.hns.audio}
-IANA|[Greg_Vaudreuil]|{audio/vnd.lucent.voice=http://www.iana.org/assignments/media-types/audio/vnd.lucent.voice}
-IANA|[Steve_DiAcetis]|{audio/vnd.ms-playready.media.pya=http://www.iana.org/assignments/media-types/audio/vnd.ms-playready.media.pya}
-IANA|[Nokia]|{audio/vnd.nokia.mobile-xmf=http://www.iana.org/assignments/media-types/audio/vnd.nokia.mobile-xmf}
-IANA|[Glenn_Parsons]|{audio/vnd.nortel.vbk=http://www.iana.org/assignments/media-types/audio/vnd.nortel.vbk}
-IANA|[Michael_Fox]|{audio/vnd.nuera.ecelp4800=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp4800}
-IANA|[Michael_Fox]|{audio/vnd.nuera.ecelp7470=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp7470}
-IANA|[Michael_Fox]|{audio/vnd.nuera.ecelp9600=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp9600}
-IANA|[Greg_Vaudreuil]|{audio/vnd.octel.sbc=http://www.iana.org/assignments/media-types/audio/vnd.octel.sbc}
-IANA|RFC3625|{audio/vnd.qcelp=http://www.iana.org/assignments/media-types/audio/vnd.qcelp}
-IANA|[Greg_Vaudreuil]|{audio/vnd.rhetorex.32kadpcm=http://www.iana.org/assignments/media-types/audio/vnd.rhetorex.32kadpcm}
-IANA|[Martin_Dawe]|{audio/vnd.rip=http://www.iana.org/assignments/media-types/audio/vnd.rip}
-IANA|[David_Petersen]|{audio/vnd.sealedmedia.softseal-mpeg=http://www.iana.org/assignments/media-types/audio/vnd.sealedmedia.softseal-mpeg}
-IANA|[Greg_Vaudreuil]|{audio/vnd.vmx.cvsd=http://www.iana.org/assignments/media-types/audio/vnd.vmx.cvsd}
-IANA|RFC5215|{audio/vorbis=http://www.iana.org/assignments/media-types/audio/vorbis}
-IANA|RFC5215|{audio/vorbis-config=http://www.iana.org/assignments/media-types/audio/vorbis-config}
-{WebM=http://www.webmproject.org/code/specs/container/}
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-IANA|[Alan_Francis]|{image/cgm=http://www.iana.org/assignments/media-types/image/cgm}
--
-IANA|RFC4735|{image/example=http://www.iana.org/assignments/media-types/image/example}
-IANA|RFC4047|{image/fits=http://www.iana.org/assignments/media-types/image/fits}
-IANA|RFC1494|{image/g3fax=http://www.iana.org/assignments/media-types/image/g3fax}
-IANA|RFC2045|RFC2046
-IANA|RFC1314
-IANA|RFC3745|{image/jp2=http://www.iana.org/assignments/media-types/image/jp2}
-IANA|RFC2045|RFC2046
-IANA|RFC3745|{image/jpm=http://www.iana.org/assignments/media-types/image/jpm}
-IANA|RFC3745|{image/jpx=http://www.iana.org/assignments/media-types/image/jpx}
-IANA|[Mark_Callow]|[Khronos]|{http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration}
-IANA|[Ilya_Ferber]|{image/naplps=http://www.iana.org/assignments/media-types/image/naplps}
--
-IANA|[Glenn_Randers-Pehrson]|{image/png=http://www.iana.org/assignments/media-types/image/png}
-IANA|[Ben_Simon]|{image/prs.btif=http://www.iana.org/assignments/media-types/image/prs.btif}
-IANA|[Juern_Laun]|{image/prs.pti=http://www.iana.org/assignments/media-types/image/prs.pti}
-IANA|[Michael_Sweet]|{image/pwg-raster=http://www.iana.org/assignments/media-types/image/pwg-raster}
--
-IANA|[W3C]|{http://www.w3.org/TR/SVG/mimereg.html}
-IANA|RFC3362|{image/t38=http://www.iana.org/assignments/media-types/image/t38}
--
-IANA|RFC3302|{image/tiff=http://www.iana.org/assignments/media-types/image/tiff}
-IANA|RFC3950|{image/tiff-fx=http://www.iana.org/assignments/media-types/image/tiff-fx}
-IANA|[Kim_Scarborough]|{image/vnd.adobe.photoshop=http://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop}
-IANA|[Gary_Clueit]|{image/vnd.airzip.accelerator.azv=http://www.iana.org/assignments/media-types/image/vnd.airzip.accelerator.azv}
-IANA|[Ann_McLaughlin]|{image/vnd.cns.inf2=http://www.iana.org/assignments/media-types/image/vnd.cns.inf2}
-IANA|[Michael_A_Dolan]|{image/vnd.dece.graphic=http://www.iana.org/assignments/media-types/image/vnd.dece.graphic}
--
-IANA|[Leon_Bottou]|{image/vnd-djvu=http://www.iana.org/assignments/media-types/image/vnd-djvu}
-IANA|[Peter_Siebert]|[Michael_Lagally]|{image/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/image/vnd.dvb.subtitle}
-IANA|[Jodi_Moline]|{image/vnd.dwg=http://www.iana.org/assignments/media-types/image/vnd.dwg}
-IANA|[Jodi_Moline]|{image/vnd.dxf=http://www.iana.org/assignments/media-types/image/vnd.dxf}
-IANA|[Scott_Becker]|{image/vnd.fastbidsheet=http://www.iana.org/assignments/media-types/image/vnd.fastbidsheet}
-IANA|[Marc_Douglas_Spencer]|{image/vnd.fpx=http://www.iana.org/assignments/media-types/image/vnd.fpx}
-IANA|[Arild_Fuldseth]|{image/vnd.fst=http://www.iana.org/assignments/media-types/image/vnd.fst}
-IANA|[Masanori_Onda]|{image/vnd.fujixerox.edmics-mmr=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-mmr}
-IANA|[Masanori_Onda]|{image/vnd.fujixerox.edmics-rlc=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-rlc}
-IANA|[Martin_Bailey]|{image/vnd.globalgraphics.pgb=http://www.iana.org/assignments/media-types/image/vnd.globalgraphics.pgb}
-IANA|[Simon_Butcher]|{image/vnd.microsoft.icon=http://www.iana.org/assignments/media-types/image/vnd.microsoft.icon}
-IANA|[Saveen_Reddy]|{image/vnd.mix=http://www.iana.org/assignments/media-types/image/vnd.mix}
-IANA|[Stuart_Parmenter]|{image/vnd.mozilla.apng=http://www.iana.org/assignments/media-types/image/vnd.mozilla.apng}
-IANA|[Gregory_Vaughan]|{image/vnd.ms-modi=http://www.iana.org/assignments/media-types/image/vnd.ms-modi}
--
-IANA|[Marc_Douglas_Spencer]|{image/vnd.net-fpx=http://www.iana.org/assignments/media-types/image/vnd.net-fpx}
--
-IANA|[Randolph_Fritz]|[Greg_Ward]|{image/vnd.radiance=http://www.iana.org/assignments/media-types/image/vnd.radiance}
-IANA|[David_Petersen]|{image/vnd.sealed-png=http://www.iana.org/assignments/media-types/image/vnd.sealed-png}
-IANA|[David_Petersen]|{image/vnd.sealedmedia.softseal-gif=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-gif}
-IANA|[David_Petersen]|{image/vnd.sealedmedia.softseal-jpg=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-jpg}
-IANA|[Jodi_Moline]|{image/vnd-svf=http://www.iana.org/assignments/media-types/image/vnd-svf}
-IANA|[Ni_Hui]|{image/vnd.tencent.tap=http://www.iana.org/assignments/media-types/image/vnd.tencent.tap}
-IANA|[Henrik_Andersson]|{image/vnd.valve.source.texture=http://www.iana.org/assignments/media-types/image/vnd.valve.source.texture}
-IANA|[Peter_Stark]|{image/vnd-wap-wbmp=http://www.iana.org/assignments/media-types/image/vnd-wap-wbmp}
-IANA|[Steven_Martin]|{image/vnd.xiff=http://www.iana.org/assignments/media-types/image/vnd.xiff}
-IANA|[Chris_Charabaruk]|{image/vnd.zbrush.pcx=http://www.iana.org/assignments/media-types/image/vnd.zbrush.pcx}
-{WebP=https://developers.google.com/speed/webp/}
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-{XCF=http://git.gnome.org/browse/gimp/tree/devel-docs/xcf.txt}
--
--
-IANA|RFC3862|{message/CPIM=http://www.iana.org/assignments/media-types/message/CPIM}
-IANA|RFC1894|{message/delivery-status=http://www.iana.org/assignments/media-types/message/delivery-status}
-IANA|RFC3798|{message/disposition-notification=http://www.iana.org/assignments/media-types/message/disposition-notification}
-IANA|RFC4735|{message/example=http://www.iana.org/assignments/media-types/message/example}
-IANA|RFC2045|RFC2046
-IANA|RFC5965|{message/feedback-report=http://www.iana.org/assignments/media-types/message/feedback-report}
-IANA|RFC6532|{message/global=http://www.iana.org/assignments/media-types/message/global}
-IANA|RFC6533|{message/global-delivery-status=http://www.iana.org/assignments/media-types/message/global-delivery-status}
-IANA|RFC6533|{message/global-disposition-notification=http://www.iana.org/assignments/media-types/message/global-disposition-notification}
-IANA|RFC6533|{message/global-headers=http://www.iana.org/assignments/media-types/message/global-headers}
-IANA|RFC7230|{message/http=http://www.iana.org/assignments/media-types/message/http}
-IANA|RFC5438|{message/imdn+xml=http://www.iana.org/assignments/media-types/message/imdn+xml}
-IANA|RFC5537|[Henry_Spencer]|{message/news=http://www.iana.org/assignments/media-types/message/news}
-IANA|RFC2045|RFC2046
-IANA|RFC2045|RFC2046
-IANA|RFC2660|{message/s-http=http://www.iana.org/assignments/media-types/message/s-http}
-IANA|RFC3261|{message/sip=http://www.iana.org/assignments/media-types/message/sip}
-IANA|RFC3420|{message/sipfrag=http://www.iana.org/assignments/media-types/message/sipfrag}
-IANA|RFC3886|{message/tracking-status=http://www.iana.org/assignments/media-types/message/tracking-status}
-IANA|[Nicholas_Parks_Young]|{message/vnd.si.simp=http://www.iana.org/assignments/media-types/message/vnd.si.simp}
-IANA|[Mick_Conley]|{message/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/message/vnd.wfa.wsc}
-IANA|RFC4735|{model/example=http://www.iana.org/assignments/media-types/model/example}
-IANA|[Curtis_Parks]|{model/iges=http://www.iana.org/assignments/media-types/model/iges}
-IANA|RFC2077
-IANA|[James_Riordon]|{model/vnd.collada+xml=http://www.iana.org/assignments/media-types/model/vnd.collada+xml}
-IANA|[Jason_Pratt]|{model/vnd-dwf=http://www.iana.org/assignments/media-types/model/vnd-dwf}
-IANA|[Michael_Powers]|{model/vnd.flatland.3dml=http://www.iana.org/assignments/media-types/model/vnd.flatland.3dml}
-IANA|[Attila_Babits]|{model/vnd.gdl=http://www.iana.org/assignments/media-types/model/vnd.gdl}
-IANA|[Attila_Babits]|{model/vnd.gs-gdl=http://www.iana.org/assignments/media-types/model/vnd.gs-gdl}
-IANA|[Yutaka_Ozaki]|{model/vnd.gtw=http://www.iana.org/assignments/media-types/model/vnd.gtw}
-IANA|[Christopher_Brooks]|{model/vnd.moml+xml=http://www.iana.org/assignments/media-types/model/vnd.moml+xml}
-IANA|[Boris_Rabinovitch]|{model/vnd.mts=http://www.iana.org/assignments/media-types/model/vnd.mts}
-IANA|[Eric_Lengyel]|{model/vnd.opengex=http://www.iana.org/assignments/media-types/model/vnd.opengex}
-IANA|[Parasolid]|{model/vnd.parasolid.transmit-binary=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-binary}
-IANA|[Parasolid]|{model/vnd.parasolid.transmit-text=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-text}
-IANA|[Henrik_Andersson]|{model/vnd.valve.source.compiled-map=http://www.iana.org/assignments/media-types/model/vnd.valve.source.compiled-map}
-IANA|[Boris_Rabinovitch]|{model/vnd.vtu=http://www.iana.org/assignments/media-types/model/vnd.vtu}
-IANA|RFC2077
--
-IANA|[Web3D_X3D]|{model/x3d+fastinfoset=http://www.iana.org/assignments/media-types/model/x3d+fastinfoset}
--
-IANA|[Web3D]|[Web3D_X3D]|{model/x3d+xml=http://www.iana.org/assignments/media-types/model/x3d+xml}
-IANA|[Web3D]|[Web3D_X3D]|{model/x3d-vrml=http://www.iana.org/assignments/media-types/model/x3d-vrml}
-IANA|RFC2046|RFC2045
-IANA|[Patrik_Faltstrom]|{multipart/appledouble=http://www.iana.org/assignments/media-types/multipart/appledouble}
-IANA|RFC7233|{multipart/byteranges=http://www.iana.org/assignments/media-types/multipart/byteranges}
-IANA|RFC2046|RFC2045
-IANA|RFC1847|{multipart/encrypted=http://www.iana.org/assignments/media-types/multipart/encrypted}
-IANA|RFC4735|{multipart/example=http://www.iana.org/assignments/media-types/multipart/example}
-IANA|RFC7578|{multipart/form-data=http://www.iana.org/assignments/media-types/multipart/form-data}
-IANA|[Dave_Crocker]|{multipart/header-set=http://www.iana.org/assignments/media-types/multipart/header-set}
-IANA|RFC2046|RFC2045
-IANA|RFC2046|RFC2045
-IANA|RFC2387|{multipart/related=http://www.iana.org/assignments/media-types/multipart/related}
-IANA|RFC6522|{multipart/report=http://www.iana.org/assignments/media-types/multipart/report}
-IANA|RFC1847|{multipart/signed=http://www.iana.org/assignments/media-types/multipart/signed}
-IANA|RFC2421|RFC2423|{multipart/voice-message=http://www.iana.org/assignments/media-types/multipart/voice-message}
--
-IANA|[W3C]|[Robin_Berjon]|{multipart/x-mixed-replace=http://www.iana.org/assignments/media-types/multipart/x-mixed-replace}
--
--
--
--
--
-IANA|RFC6015|{text/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/text/1d-interleaved-parityfec}
-IANA|[W3C]|[Robin_Berjon]|{text/cache-manifest=http://www.iana.org/assignments/media-types/text/cache-manifest}
-IANA|RFC5545|{text/calendar=http://www.iana.org/assignments/media-types/text/calendar}
--
-IANA|RFC2318|{text/css=http://www.iana.org/assignments/media-types/text/css}
-IANA|RFC4180|RFC7111|{text/csv=http://www.iana.org/assignments/media-types/text/csv}
-IANA|[National_Archives_UK]|[David_Underdown]|{text/csv-schema=http://www.iana.org/assignments/media-types/text/csv-schema}
-IANA|RFC2425|RFC6350|{text/directory=http://www.iana.org/assignments/media-types/text/directory}
-IANA|RFC4027|{text/dns=http://www.iana.org/assignments/media-types/text/dns}
-IANA|RFC4329|{text/ecmascript=http://www.iana.org/assignments/media-types/text/ecmascript}
-IANA|RFC6849|{text/encaprtp=http://www.iana.org/assignments/media-types/text/encaprtp}
-IANA|RFC1896
-IANA|RFC4735|{text/example=http://www.iana.org/assignments/media-types/text/example}
-IANA|RFC6354|{text/fwdred=http://www.iana.org/assignments/media-types/text/fwdred}
-IANA|RFC6787|{text/grammar-ref-list=http://www.iana.org/assignments/media-types/text/grammar-ref-list}
-IANA|[W3C]|[Robin_Berjon]|{text/html=http://www.iana.org/assignments/media-types/text/html}
-IANA|RFC4329|{text/javascript=http://www.iana.org/assignments/media-types/text/javascript}
-IANA|[Peeter_Piegaze]|{text/jcr-cnd=http://www.iana.org/assignments/media-types/text/jcr-cnd}
-IANA|DRAFT:draft-ietf-appsawg-text-markdown|{text/markdown=http://www.iana.org/assignments/media-types/text/markdown}
-IANA|[Jesse_Alama]|{text/mizar=http://www.iana.org/assignments/media-types/text/mizar}
-IANA|[W3C]|[Eric_Prudhommeaux]|{text/n3=http://www.iana.org/assignments/media-types/text/n3}
-IANA|DRAFT:draft-ietf-mmusic-rfc2326bis-40|{text/parameters=http://www.iana.org/assignments/media-types/text/parameters}
-IANA|RFC5109
-IANA|RFC2046|RFC3676|RFC5147
-IANA|[W3C]|[Ivan_Herman]|{text/provenance-notation=http://www.iana.org/assignments/media-types/text/provenance-notation}
-IANA|[Benja_Fallenstein]|{text/prs.fallenstein.rst=http://www.iana.org/assignments/media-types/text/prs.fallenstein.rst}
-IANA|[John_Lines]|{text/prs.lines.tag=http://www.iana.org/assignments/media-types/text/prs.lines.tag}
-IANA|RFC6682|{text/raptorfec=http://www.iana.org/assignments/media-types/text/raptorfec}
-IANA|RFC4102|{text/RED=http://www.iana.org/assignments/media-types/text/RED}
-IANA|RFC6522|{text/rfc822-headers=http://www.iana.org/assignments/media-types/text/rfc822-headers}
-IANA|RFC2045|RFC2046
-IANA|[Paul_Lindner]|{text/rtf=http://www.iana.org/assignments/media-types/text/rtf}
-IANA|[ThreeGPP]|{text/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/text/rtp-enc-aescm128}
-IANA|RFC6849|{text/rtploopback=http://www.iana.org/assignments/media-types/text/rtploopback}
-IANA|RFC4588|{text/rtx=http://www.iana.org/assignments/media-types/text/rtx}
-IANA|RFC1874|{text/SGML=http://www.iana.org/assignments/media-types/text/SGML}
-IANA|RFC4103|{text/t140=http://www.iana.org/assignments/media-types/text/t140}
-IANA|[Paul_Lindner]|{text/tab-separated-values=http://www.iana.org/assignments/media-types/text/tab-separated-values}
-IANA|RFC4263|{text/troff=http://www.iana.org/assignments/media-types/text/troff}
-IANA|[W3C]|[Eric_Prudhommeaux]|{text/turtle=http://www.iana.org/assignments/media-types/text/turtle}
-IANA|RFC5109|{text/ulpfec=http://www.iana.org/assignments/media-types/text/ulpfec}
-IANA|RFC2483|{text/uri-list=http://www.iana.org/assignments/media-types/text/uri-list}
-IANA|RFC6350|{text/vcard=http://www.iana.org/assignments/media-types/text/vcard}
-IANA|[Regis_Dehoux]|{text/vnd-a=http://www.iana.org/assignments/media-types/text/vnd-a}
-IANA|[Steve_Allen]|{text/vnd.abc=http://www.iana.org/assignments/media-types/text/vnd.abc}
-IANA|[Robert_Byrnes]|{text/vnd-curl=http://www.iana.org/assignments/media-types/text/vnd-curl}
--
--
--
-IANA|[Charles_Plessy]|{text/vnd.debian.copyright=http://www.iana.org/assignments/media-types/text/vnd.debian.copyright}
-IANA|[Dan_Bradley]|{text/vnd.DMClientScript=http://www.iana.org/assignments/media-types/text/vnd.DMClientScript}
-IANA|[Peter_Siebert]|[Michael_Lagally]|{text/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/text/vnd.dvb.subtitle}
-IANA|[Stefan_Eilemann]|{text/vnd.esmertec.theme-descriptor=http://www.iana.org/assignments/media-types/text/vnd.esmertec.theme-descriptor}
--
-IANA|[John-Mark_Gurney]|{text/vnd.fly=http://www.iana.org/assignments/media-types/text/vnd.fly}
-IANA|[Kari_E._Hurtta]|{text/vnd.fmi.flexstor=http://www.iana.org/assignments/media-types/text/vnd.fmi.flexstor}
-IANA|[John_Ellson]|{text/vnd.graphviz=http://www.iana.org/assignments/media-types/text/vnd.graphviz}
-IANA|[Michael_Powers]|{text/vnd.in3d.3dml=http://www.iana.org/assignments/media-types/text/vnd.in3d.3dml}
-IANA|[Michael_Powers]|{text/vnd.in3d.spot=http://www.iana.org/assignments/media-types/text/vnd.in3d.spot}
-IANA|[IPTC]|{text/vnd.IPTC.NewsML=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NewsML}
-IANA|[IPTC]|{text/vnd.IPTC.NITF=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NITF}
-IANA|[Mikusiak_Lubos]|{text/vnd.latex-z=http://www.iana.org/assignments/media-types/text/vnd.latex-z}
-IANA|[Mark_Patton]|{text/vnd.motorola.reflex=http://www.iana.org/assignments/media-types/text/vnd.motorola.reflex}
-IANA|[Jan_Nelson]|{text/vnd.ms-mediapackage=http://www.iana.org/assignments/media-types/text/vnd.ms-mediapackage}
-IANA|[Feiyu_Xie]|{text/vnd.net2phone.commcenter.command=http://www.iana.org/assignments/media-types/text/vnd.net2phone.commcenter.command}
-IANA|RFC5707|{text/vnd.radisys.msml-basic-layout=http://www.iana.org/assignments/media-types/text/vnd.radisys.msml-basic-layout}
-IANA|[Nicholas_Parks_Young]|{text/vnd.si.uricatalogue=http://www.iana.org/assignments/media-types/text/vnd.si.uricatalogue}
-IANA|[Gary_Adams]|{text/vnd.sun.j2me.app-descriptor=http://www.iana.org/assignments/media-types/text/vnd.sun.j2me.app-descriptor}
-IANA|[David_Lee_Lambert]|{text/vnd.trolltech.linguist=http://www.iana.org/assignments/media-types/text/vnd.trolltech.linguist}
-IANA|[WAP-Forum]|{text/vnd.wap.si=http://www.iana.org/assignments/media-types/text/vnd.wap.si}
-IANA|[WAP-Forum]|{text/vnd.wap.sl=http://www.iana.org/assignments/media-types/text/vnd.wap.sl}
-IANA|[Peter_Stark]|{text/vnd.wap-wml=http://www.iana.org/assignments/media-types/text/vnd.wap-wml}
-IANA|[Peter_Stark]|{text/vnd.wap.wmlscript=http://www.iana.org/assignments/media-types/text/vnd.wap.wmlscript}
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-IANA|RFC7303|{text/xml=http://www.iana.org/assignments/media-types/text/xml}
-IANA|RFC7303|{text/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/text/xml-external-parsed-entity}
-IANA|RFC6015|{video/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/video/1d-interleaved-parityfec}
-IANA|RFC3839|RFC6381|{video/3gpp=http://www.iana.org/assignments/media-types/video/3gpp}
-IANA|RFC4396|{video/3gpp-tt=http://www.iana.org/assignments/media-types/video/3gpp-tt}
-IANA|RFC4393|RFC6381|{video/3gpp2=http://www.iana.org/assignments/media-types/video/3gpp2}
-IANA|RFC3555|{video/BMPEG=http://www.iana.org/assignments/media-types/video/BMPEG}
-IANA|RFC3555|{video/BT656=http://www.iana.org/assignments/media-types/video/BT656}
-IANA|RFC3555|{video/CelB=http://www.iana.org/assignments/media-types/video/CelB}
--
-IANA|RFC6469|{video/DV=http://www.iana.org/assignments/media-types/video/DV}
-IANA|RFC6849|{video/encaprtp=http://www.iana.org/assignments/media-types/video/encaprtp}
-IANA|RFC4735|{video/example=http://www.iana.org/assignments/media-types/video/example}
--
-IANA|RFC4587|{video/H261=http://www.iana.org/assignments/media-types/video/H261}
-IANA|RFC3555|{video/H263=http://www.iana.org/assignments/media-types/video/H263}
-IANA|RFC4629|{video/H263-1998=http://www.iana.org/assignments/media-types/video/H263-1998}
-IANA|RFC4629|{video/H263-2000=http://www.iana.org/assignments/media-types/video/H263-2000}
-IANA|RFC6184|{video/H264=http://www.iana.org/assignments/media-types/video/H264}
-IANA|RFC6185|{video/H264-RCDO=http://www.iana.org/assignments/media-types/video/H264-RCDO}
-IANA|RFC6190|{video/H264-SVC=http://www.iana.org/assignments/media-types/video/H264-SVC}
-IANA|[David_Singer]|[ISO-IEC_JTC1]|{video/iso.segment=http://www.iana.org/assignments/media-types/video/iso.segment}
-IANA|RFC3555|{video/JPEG=http://www.iana.org/assignments/media-types/video/JPEG}
-IANA|RFC5371|RFC5372|{video/jpeg2000=http://www.iana.org/assignments/media-types/video/jpeg2000}
--
-IANA|RFC3745|{video/mj2=http://www.iana.org/assignments/media-types/video/mj2}
-IANA|RFC3555|{video/MP1S=http://www.iana.org/assignments/media-types/video/MP1S}
-IANA|RFC3555|{video/MP2P=http://www.iana.org/assignments/media-types/video/MP2P}
-IANA|RFC3555|{video/MP2T=http://www.iana.org/assignments/media-types/video/MP2T}
-IANA|RFC4337|RFC6381|{video/mp4=http://www.iana.org/assignments/media-types/video/mp4}
-IANA|RFC6416|{video/MP4V-ES=http://www.iana.org/assignments/media-types/video/MP4V-ES}
-IANA|RFC2045|RFC2046
-IANA|RFC3640|{video/mpeg4-generic=http://www.iana.org/assignments/media-types/video/mpeg4-generic}
-IANA|RFC3555|{video/MPV=http://www.iana.org/assignments/media-types/video/MPV}
-IANA|RFC4856|{video/nv=http://www.iana.org/assignments/media-types/video/nv}
-IANA|RFC5334|{video/ogg=http://www.iana.org/assignments/media-types/video/ogg}
-IANA|RFC5109
-IANA|RFC2862|{video/pointer=http://www.iana.org/assignments/media-types/video/pointer}
-IANA|RFC6381|[Paul_Lindner]|{video/quicktime=http://www.iana.org/assignments/media-types/video/quicktime}
-IANA|RFC6682|{video/raptorfec=http://www.iana.org/assignments/media-types/video/raptorfec}
-IANA|RFC4175
-IANA|[ThreeGPP]|{video/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/video/rtp-enc-aescm128}
-IANA|RFC6849|{video/rtploopback=http://www.iana.org/assignments/media-types/video/rtploopback}
-IANA|RFC4588|{video/rtx=http://www.iana.org/assignments/media-types/video/rtx}
-IANA|RFC3497|{video/SMPTE292M=http://www.iana.org/assignments/media-types/video/SMPTE292M}
-IANA|RFC5109|{video/ulpfec=http://www.iana.org/assignments/media-types/video/ulpfec}
-IANA|RFC4425|{video/vc1=http://www.iana.org/assignments/media-types/video/vc1}
-IANA|[Frank_Rottmann]|{video/vnd.CCTV=http://www.iana.org/assignments/media-types/video/vnd.CCTV}
-IANA|[Michael_A_Dolan]|{video/vnd.dece.hd=http://www.iana.org/assignments/media-types/video/vnd.dece.hd}
-IANA|[Michael_A_Dolan]|{video/vnd.dece.mobile=http://www.iana.org/assignments/media-types/video/vnd.dece.mobile}
-IANA|[Michael_A_Dolan]|{video/vnd.dece-mp4=http://www.iana.org/assignments/media-types/video/vnd.dece-mp4}
-IANA|[Michael_A_Dolan]|{video/vnd.dece.pd=http://www.iana.org/assignments/media-types/video/vnd.dece.pd}
-IANA|[Michael_A_Dolan]|{video/vnd.dece.sd=http://www.iana.org/assignments/media-types/video/vnd.dece.sd}
-IANA|[Michael_A_Dolan]|{video/vnd.dece.video=http://www.iana.org/assignments/media-types/video/vnd.dece.video}
-IANA|[Nathan_Zerbe]|{video/vnd.directv-mpeg=http://www.iana.org/assignments/media-types/video/vnd.directv-mpeg}
-IANA|[Nathan_Zerbe]|{video/vnd.directv.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.directv.mpeg-tts}
-IANA|[Edwin_Heredia]|{video/vnd.dlna.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.dlna.mpeg-tts}
-IANA|[Peter_Siebert]|[Kevin_Murray]|{video/vnd.dvb.file=http://www.iana.org/assignments/media-types/video/vnd.dvb.file}
-IANA|[Arild_Fuldseth]|{video/vnd.fvt=http://www.iana.org/assignments/media-types/video/vnd.fvt}
-IANA|[Swaminathan]|{video/vnd.hns.video=http://www.iana.org/assignments/media-types/video/vnd.hns.video}
-IANA|[Shuji_Nakamura]|{video/vnd.iptvforum.1dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-1010}
-IANA|[Shuji_Nakamura]|{video/vnd.iptvforum.1dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-2005}
-IANA|[Shuji_Nakamura]|{video/vnd.iptvforum.2dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-1010}
-IANA|[Shuji_Nakamura]|{video/vnd.iptvforum.2dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-2005}
-IANA|[Shuji_Nakamura]|{video/vnd.iptvforum.ttsavc=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsavc}
-IANA|[Shuji_Nakamura]|{video/vnd.iptvforum.ttsmpeg2=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsmpeg2}
-IANA|[Tom_McGinty]|{video/vnd.motorola.video=http://www.iana.org/assignments/media-types/video/vnd.motorola.video}
-IANA|[Tom_McGinty]|{video/vnd.motorola.videop=http://www.iana.org/assignments/media-types/video/vnd.motorola.videop}
-IANA|[Heiko_Recktenwald]|{video/vnd-mpegurl=http://www.iana.org/assignments/media-types/video/vnd-mpegurl}
-IANA|[Steve_DiAcetis]|{video/vnd.ms-playready.media.pyv=http://www.iana.org/assignments/media-types/video/vnd.ms-playready.media.pyv}
-IANA|[Petteri_Kangaslampi]|{video/vnd.nokia.interleaved-multimedia=http://www.iana.org/assignments/media-types/video/vnd.nokia.interleaved-multimedia}
-IANA|[Nokia]|{video/vnd.nokia.videovoip=http://www.iana.org/assignments/media-types/video/vnd.nokia.videovoip}
-IANA|[John_Clark]|{video/vnd.objectvideo=http://www.iana.org/assignments/media-types/video/vnd.objectvideo}
-IANA|[Henrik_Andersson]|{video/vnd.radgamettools.bink=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.bink}
-IANA|[Henrik_Andersson]|{video/vnd.radgamettools.smacker=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.smacker}
-IANA|[David_Petersen]|{video/vnd.sealed.mpeg1=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg1}
-IANA|[David_Petersen]|{video/vnd.sealed.mpeg4=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg4}
-IANA|[David_Petersen]|{video/vnd.sealed-swf=http://www.iana.org/assignments/media-types/video/vnd.sealed-swf}
-IANA|[David_Petersen]|{video/vnd.sealedmedia.softseal-mov=http://www.iana.org/assignments/media-types/video/vnd.sealedmedia.softseal-mov}
-IANA|[Michael_A_Dolan]|{video/vnd.uvvu-mp4=http://www.iana.org/assignments/media-types/video/vnd.uvvu-mp4}
-IANA|[John_Wolfe]|{video/vnd-vivo=http://www.iana.org/assignments/media-types/video/vnd-vivo}
-{WebM=http://www.webmproject.org/code/specs/container/}
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
diff --git a/data/mime.registered.column b/data/mime.registered.column
deleted file mode 100644
index 1eff7eb..0000000
--- a/data/mime.registered.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-0
-0
-0
-0
-1
-1
-1
-0
-1
-1
-0
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-0
-0
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-0
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-0
-0
-0
-0
-1
-1
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-0
-1
-0
-0
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-0
-1
-1
-0
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-0
-0
-0
-0
-0
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
diff --git a/data/mime.signature.column b/data/mime.signature.column
deleted file mode 100644
index b3d3b0c..0000000
--- a/data/mime.signature.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-1
-0
-0
-0
-1
-0
-1
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-1
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
-0
diff --git a/data/mime.system.column b/data/mime.system.column
deleted file mode 100644
index 79ac35a..0000000
--- a/data/mime.system.column
+++ /dev/null
@@ -1,1924 +0,0 @@
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-(?-mix:mac)
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-(?-mix:mac)
--
-(?-mix:mac)
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
diff --git a/data/mime.use_instead.column b/data/mime.use_instead.column
deleted file mode 100644
index cfc6475..0000000
--- a/data/mime.use_instead.column
+++ /dev/null
@@ -1,1924 +0,0 @@
--
--
--
--
--
-application/x-msaccess
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/x-bleeper
--
--
--
--
-application/cals-1840
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.ms-excel
--
--
--
--
--
--
--
--
--
--
-application/x-futuresplash
-application/x-ghostview
--
--
--
--
--
--
-application/x-hep
--
--
--
--
--
--
--
--
-application/x-imagemap
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.lotus-1-2-3
--
--
-application/x-mac-compactpro
--
--
--
--
--
-application/vnd.mcd
--
-application/x-mathematica-old
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/x-quicktimeplayer
--
--
--
--
--
--
-application/remote-printing
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/smil+xml
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/x-toolbook
--
--
--
--
--
--
--
--
--
--
--
-application/x-VMSBACKUP
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.aristanetworks.swi
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.visionary
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.nokia.ncd
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.wordperfect
--
-application/x-wordperfect6.1
-application/vnd.wordperfect
--
--
-application/vnd.lotus-1-2-3
--
--
-application/x-msaccess
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/x-compressed
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/vnd.ms-excel
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/gzip
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/javascript
--
--
-application/vnd.lotus-1-2-3
--
--
--
--
--
-application/vnd.framemaker
-application/vnd.mcd
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/msword
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-application/rtf
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-text/troff
--
--
--
-application/x-ustar
--
--
--
--
--
-application/msword
-application/vnd.wordperfect
--
-application/vnd.wordperfect
--
--
--
--
--
--
--
--
-application/x400-bp
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-audio/qcelp
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-x-chemical/x-pdb
-x-chemical/x-xyz
-x-drawing/dwf
-image/x-bmp
--
-image/x-cmu-raster
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-image/x-targa
--
--
--
--
--
--
-image/x-vnd.dgn
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-image/vnd.net-fpx
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-multipart/parallel
--
--
-application/x-www-form-urlencoded
--
--
--
--
-text/csv
--
--
--
--
--
-application/ecmascript
--
--
--
--
--
--
-application/javascript
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-model/vnd.flatland.3dml
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-text/rtf
--
--
--
--
--
-model/vnd.flatland.3dml
--
--
--
--
--
--
--
--
--
--
-video/x-dl
--
--
--
-video/x-gl
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-video/DV
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
diff --git a/data/mime.xrefs.column b/data/mime.xrefs.column
deleted file mode 100644
index 79303d6..0000000
--- a/data/mime.xrefs.column
+++ /dev/null
@@ -1,1924 +0,0 @@
-rfc^rfc6015|template^application/1d-interleaved-parityfec
-person^Ozgur_Oyman^ThreeGPP|template^application/3gpdash-qoe-report+xml
-person^John_M_Meredith|template^application/3gpp-ims+xml
-person^ASAM^Thomas_Thomsen|template^application/A2L
--
--
-person^Ehud_Shapiro|template^application/activemessage
-rfc^rfc7285|template^application/alto-costmap+json
-rfc^rfc7285|template^application/alto-costmapfilter+json
-rfc^rfc7285|template^application/alto-directory+json
-rfc^rfc7285|template^application/alto-endpointcost+json
-rfc^rfc7285|template^application/alto-endpointcostparams+json
-rfc^rfc7285|template^application/alto-endpointprop+json
-rfc^rfc7285|template^application/alto-endpointpropparams+json
-rfc^rfc7285|template^application/alto-error+json
-rfc^rfc7285|template^application/alto-networkmap+json
-rfc^rfc7285|template^application/alto-networkmapfilter+json
-person^ASAM^Thomas_Thomsen|template^application/AML
-person^Nathaniel_Borenstein|template^application/andrew-inset
--
-person^Patrik_Faltstrom|template^application/applefile
--
-person^ASAM^Thomas_Thomsen|template^application/ATF
-person^ASAM^Thomas_Thomsen|template^application/ATFX
-rfc^rfc4287^rfc5023|template^application/atom+xml
-rfc^rfc5023|template^application/atomcat+xml
-rfc^rfc6721|template^application/atomdeleted+xml
-person^Nathaniel_Borenstein|template^application/atomicmail
-rfc^rfc5023|template^application/atomsvc+xml
-person^ASAM^Thomas_Thomsen|template^application/ATXML
-rfc^rfc4745|template^application/auth-policy+xml
-person^ASHRAE^Dave_Robin|template^application/bacnet-xdd+zip
-rfc^rfc2442|template^application/batch-SMTP
-rfc^rfc3080|template^application/beep+xml
--
-rfc^rfc7265|template^application/calendar+json
-rfc^rfc6321|template^application/calendar+xml
-rfc^rfc6910|template^application/call-completion
-rfc^rfc1895|template^application/CALS-1840
--
-rfc^rfc7049|template^application/cbor
-rfc^rfc6503|template^application/ccmp+xml
-rfc^rfc4267|template^application/ccxml+xml
-person^ASAM^Thomas_Thomsen|template^application/CDFX+XML
-rfc^rfc6208|template^application/cdmi-capability
-rfc^rfc6208|template^application/cdmi-container
-rfc^rfc6208|template^application/cdmi-domain
-rfc^rfc6208|template^application/cdmi-object
-rfc^rfc6208|template^application/cdmi-queue
-person^ASAM^Thomas_Thomsen|template^application/CEA
-person^Gottfried_Zimmermann|template^application/cea-2018+xml
-rfc^rfc4708|template^application/cellml+xml
-rfc^rfc6230|template^application/cfw
--
-rfc^rfc7193|template^application/cms
-rfc^rfc3367|template^application/cnrp+xml
-rfc^rfc7390|template^application/coap-group+json
-person^David_Glazer|template^application/commonground
-rfc^rfc4575|template^application/conference-info+xml
-rfc^rfc3880|template^application/cpl+xml
-rfc^rfc7030|template^application/csrattrs
-person^Ecma_International_Helpdesk|template^application/csta+xml
-person^Ecma_International_Helpdesk|template^application/CSTAdata+xml
--
-person^Donald_E._Eastlake_3rd|template^application/cybercash
-person^ISO-IEC_JTC1^Thomas_Stockhammer|template^application/dash+xml
-person^David_Furbeck|template^application/dashdelta
-rfc^rfc4709|template^application/davmount+xml
-person^Larry_Campbell|template^application/dca-rft
-person^ASAM^Thomas_Thomsen|template^application/DCD
-person^Larry_Campbell|template^application/dec-dx
-rfc^rfc4235|template^application/dialog-info+xml
-rfc^rfc3240|template^application/dicom
-person^ASAM^Thomas_Thomsen|template^application/DII
-person^ASAM^Thomas_Thomsen|template^application/DIT
-rfc^rfc4027|template^application/dns
--
--
-rfc^rfc6063|template^application/dskpp+xml
-rfc^rfc5698|template^application/dssc+der
-rfc^rfc5698|template^application/dssc+xml
-rfc^rfc3029|template^application/dvcs
--
-rfc^rfc4329|template^application/ecmascript
-rfc^rfc1767|template^application/EDI-consent
-rfc^rfc1767|template^application/EDI-X12
-rfc^rfc1767|template^application/EDIFACT
-person^W3C|uri^http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration
-person^Kazuyuki_Ashimura^W3C|template^application/emotionml+xml
-rfc^rfc6849|template^application/encaprtp
-rfc^rfc5730|template^application/epp+xml
-person^International_Digital_Publishing_Forum^William_McCoy|template^application/epub+zip
-person^Steve_Katz|template^application/eshop
-rfc^rfc4735|template^application/example
--
-person^W3C|uri^http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration
-person^ITU-T_ASN.1_Rapporteur|template^application/fastinfoset
-person^ITU-T_ASN.1_Rapporteur|template^application/fastsoap
-rfc^rfc6726|template^application/fdt+xml
-rfc^rfc4047|template^application/fits
-person^Levantovsky|template^application/font-sfnt
-rfc^rfc3073|template^application/font-tdpfr
-person^W3C|template^application/font-woff
--
-rfc^rfc6230|template^application/framework-attributes+xml
--
--
--
--
--
-rfc^rfc6713|template^application/gzip
-rfc^rfc4573|template^application/H224
-rfc^rfc5985|template^application/held+xml
--
-rfc^rfc7230|template^application/http
-person^Michael_Domino|template^application/hyperstudio
--
-rfc^rfc5408|template^application/ibe-key-request+xml
-rfc^rfc5408|template^application/ibe-pkg-reply+xml
-rfc^rfc5408|template^application/ibe-pp-data
-person^Curtis_Parks|template^application/iges
-rfc^rfc3994|template^application/im-iscomposing+xml
--
-rfc^rfc2652|template^application/index
-rfc^rfc2652|template^application/index.cmd
-rfc^rfc2652|template^application/index-obj
-rfc^rfc2652|template^application/index.response
-rfc^rfc2652|template^application/index.vnd
-person^Kazuyuki_Ashimura|template^application/inkml+xml
-rfc^rfc2935|template^application/IOTP
-rfc^rfc5655|template^application/ipfix
-rfc^rfc2910|template^application/ipp
-rfc^rfc3204|template^application/ISUP
-person^ITS-IG-W3C^W3C|template^application/its+xml
--
--
--
-rfc^rfc4329|template^application/javascript
-rfc^rfc7515|template^application/jose
-rfc^rfc7515|template^application/jose+json
-rfc^rfc7033|template^application/jrd+json
-rfc^rfc7158|template^application/json
-rfc^rfc6902|template^application/json-patch+json
-rfc^rfc7464|template^application/json-seq
--
-rfc^rfc7517|template^application/jwk+json
-rfc^rfc7517|template^application/jwk-set+json
-rfc^rfc7519|template^application/jwt
-rfc^rfc4730|template^application/kpml-request+xml
-rfc^rfc4730|template^application/kpml-response+xml
-person^Ivan_Herman^W3C|template^application/ld+json
-rfc^rfc6690|template^application/link-format
-rfc^rfc7200|template^application/load-control+xml
-rfc^rfc5222|template^application/lost+xml
-rfc^rfc6739|template^application/lostsync+xml
--
-person^ASAM^Thomas_Thomsen|template^application/LXF
-person^Patrik_Faltstrom|template^application/mac-binhex40
--
--
-person^Paul_Lindner|template^application/macwriteii
-rfc^rfc6207|template^application/mads+xml
-rfc^rfc2220|template^application/marc
-rfc^rfc6207|template^application/marcxml+xml
--
-person^Wolfram|template^application/mathematica
--
-person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html
-person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html
-person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html
-person^ThreeGPP|template^application/mbms-associated-procedure-description+xml
-person^ThreeGPP|template^application/mbms-deregister+xml
-person^ThreeGPP|template^application/mbms-envelope+xml
-person^ThreeGPP|template^application/mbms-msk+xml
-person^ThreeGPP|template^application/mbms-msk-response+xml
-person^ThreeGPP|template^application/mbms-protection-description+xml
-person^ThreeGPP|template^application/mbms-reception-report+xml
-person^ThreeGPP|template^application/mbms-register+xml
-person^ThreeGPP|template^application/mbms-register-response+xml
-person^Eric_Turcotte^ThreeGPP|template^application/mbms-schedule+xml
-person^ThreeGPP|template^application/mbms-user-service-description+xml
-rfc^rfc4155|template^application/mbox
-rfc^rfc6796|template^application/media-policy-dataset+xml
-rfc^rfc5168|template^application/media_control+xml
-rfc^rfc5022|template^application/mediaservercontrol+xml
-rfc^rfc7396|template^application/merge-patch+json
--
-rfc^rfc5854|template^application/metalink4+xml
-rfc^rfc6207|template^application/mets+xml
-person^ASAM^Thomas_Thomsen|template^application/MF4
-rfc^rfc3830|template^application/mikey
-rfc^rfc6207|template^application/mods+xml
-rfc^rfc1848|template^application/moss-keys
-rfc^rfc1848|template^application/moss-signature
-rfc^rfc1848|template^application/mosskey-data
-rfc^rfc1848|template^application/mosskey-request
-person^David_Singer|rfc^rfc6381|template^application/mp21
-rfc^rfc4337^rfc6381|template^application/mp4
-rfc^rfc3640|template^application/mpeg4-generic
-rfc^rfc4337|template^application/mpeg4-iod
-rfc^rfc4337|template^application/mpeg4-iod-xmt
-rfc^rfc6917|template^application/mrb-consumer+xml
-rfc^rfc6917|template^application/mrb-publish+xml
-rfc^rfc6231|template^application/msc-ivr+xml
-rfc^rfc6505|template^application/msc-mixer+xml
-person^Paul_Lindner|template^application/msword
-rfc^rfc4539|template^application/mxf
-rfc^rfc4707|template^application/nasdata
--
-rfc^rfc5537|template^application/news-checkgroups
-rfc^rfc5537|template^application/news-groupinfo
--
-rfc^rfc5537|template^application/news-transmission
-rfc^rfc6787|template^application/nlsml+xml
-person^Michael_Hammer|template^application/nss
-rfc^rfc6960|template^application/ocsp-request
-rfc^rfc6960|template^application/ocsp-response
-rfc^rfc2045^rfc2046|template^application/octet-stream
-rfc^rfc2045^rfc2046|template^application/ODA
-person^ASAM^Thomas_Thomsen|template^application/ODX
-rfc^rfc4839|template^application/oebps-package+xml
-rfc^rfc5334|template^application/ogg
--
--
-person^Ecma_International_Helpdesk|template^application/oxps
-rfc^rfc6940|template^application/p2p-overlay+xml
-rfc^rfc5109
-rfc^rfc5261|template^application/patch-ops-error+xml
-rfc^rfc3778|template^application/pdf
-person^ASAM^Thomas_Thomsen|template^application/PDX
-rfc^rfc3156|template^application/pgp-encrypted
-rfc^rfc3156
-rfc^rfc3156|template^application/pgp-signature
--
-rfc^rfc3863|template^application/pidf+xml
-rfc^rfc5262|template^application/pidf-diff+xml
-rfc^rfc5967|template^application/pkcs10
-person^IETF|template^application/pkcs12
-rfc^rfc5751^rfc7114|template^application/pkcs7-mime
-rfc^rfc5751|template^application/pkcs7-signature
-rfc^rfc5958|template^application/pkcs8
-rfc^rfc5877|template^application/pkix-attr-cert
-rfc^rfc2585|template^application/pkix-cert
-rfc^rfc2585|template^application/pkix-crl
-rfc^rfc6066|template^application/pkix-pkipath
-rfc^rfc2510|template^application/pkixcmp
-rfc^rfc4267|template^application/pls+xml
-rfc^rfc4354|template^application/poc-settings+xml
-rfc^rfc2045^rfc2046|template^application/postscript
--
--
-person^Ivan_Herman^W3C|template^application/provenance+xml
-person^Harald_T._Alvestrand|template^application/prs.alvestrand.titrax-sheet
-person^Khemchart_Rungchavalnont|template^application/prs.cww
-person^Giulio_Zambon|template^application/prs.hpub+zip
-person^Jay_Doggett|template^application/prs.nprend
-person^Bill_Janssen|template^application/prs.plucker
-person^Toby_Inkster|template^application/prs.rdf-xml-crypt
-person^Maik_Stührenberg|template^application/prs.xsf+xml
-rfc^rfc6030|template^application/pskc+xml
-rfc^rfc3204|template^application/QSIG
--
-rfc^rfc6682|template^application/raptorfec
-rfc^rfc7483|template^application/rdap+json
-rfc^rfc3870|template^application/rdf+xml
-rfc^rfc3680|template^application/reginfo+xml
-template^application/relax-ng-compact-syntax|uri^http://www.jtc1sc34.org/repository/0661.pdf
-person^Marshall_Rose|rfc^rfc1486|template^application/remote-printing
--
-rfc^rfc7071|template^application/reputon+json
-rfc^rfc4826|template^application/resource-lists+xml
-rfc^rfc5362|template^application/resource-lists-diff+xml
-person^Nick_Smith|template^application/riscos
-rfc^rfc4662|template^application/rlmi+xml
-rfc^rfc4826|template^application/rls-services+xml
-rfc^rfc6493|template^application/rpki-ghostbusters
-rfc^rfc6481|template^application/rpki-manifest
-rfc^rfc6481|template^application/rpki-roa
-rfc^rfc6492|template^application/rpki-updown
--
--
-person^Paul_Lindner|template^application/rtf
-rfc^rfc6849|template^application/rtploopback
-rfc^rfc4588|template^application/rtx
-person^OASIS_Security_Services_Technical_Committee_SSTC|template^application/samlassertion+xml
-person^OASIS_Security_Services_Technical_Committee_SSTC|template^application/samlmetadata+xml
-rfc^rfc3823|template^application/sbml+xml
-person^Oskar_Jonsson^SIS|template^application/scaip+xml
-draft^RFC-ietf-scim-api-19|template^application/scim+json
-rfc^rfc5055|template^application/scvp-cv-request
-rfc^rfc5055|template^application/scvp-cv-response
-rfc^rfc5055|template^application/scvp-vp-request
-rfc^rfc5055|template^application/scvp-vp-response
-rfc^rfc4566|template^application/sdp
-person^Robby_Simpson^ZigBee|template^application/sep+xml
-person^Robby_Simpson^ZigBee|template^application/sep-exi
-person^Frederic_Firmin^ThreeGPP|template^application/session-info
--
-person^Brian_Korver|template^application/set-payment
-person^Brian_Korver|template^application/set-payment-initiation
-person^Brian_Korver|template^application/set-registration
-person^Brian_Korver|template^application/set-registration-initiation
-rfc^rfc1874|template^application/SGML
-person^Paul_Grosso|template^application/sgml-open-catalog
-rfc^rfc4194|template^application/shf+xml
-rfc^rfc5228|template^application/sieve
-rfc^rfc4661|template^application/simple-filter+xml
-rfc^rfc3842|template^application/simple-message-summary
-person^ThreeGPP|template^application/simpleSymbolContainer
--
-person^Terry_Crowley|template^application/slate
-notes^- OBSOLETED in favor of application/smil+xml|rfc^rfc4536|template^application/smil
-rfc^rfc4536|template^application/smil+xml
-rfc^rfc6597|template^application/smpte336m
-person^ITU-T_ASN.1_Rapporteur|template^application/soap+fastinfoset
-rfc^rfc3902|template^application/soap+xml
--
-person^W3C|uri^http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType
-person^W3C|uri^http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime
-rfc^rfc3910|template^application/spirits-event+xml
-rfc^rfc6922|template^application/sql
-rfc^rfc4267|template^application/srgs
-rfc^rfc4267|template^application/srgs+xml
-rfc^rfc6207|template^application/sru+xml
--
-rfc^rfc4267|template^application/ssml+xml
--
-rfc^rfc5934|template^application/tamp-apex-update
-rfc^rfc5934|template^application/tamp-apex-update-confirm
-rfc^rfc5934|template^application/tamp-community-update
-rfc^rfc5934|template^application/tamp-community-update-confirm
-rfc^rfc5934|template^application/tamp-error
-rfc^rfc5934|template^application/tamp-sequence-adjust
-rfc^rfc5934|template^application/tamp-sequence-adjust-confirm
-rfc^rfc5934|template^application/tamp-status-query
-rfc^rfc5934|template^application/tamp-status-response
-rfc^rfc5934|template^application/tamp-update
-rfc^rfc5934|template^application/tamp-update-confirm
-rfc^rfc6129|template^application/tei+xml
-rfc^rfc5941|template^application/thraud+xml
-rfc^rfc3161|template^application/timestamp-query
-rfc^rfc3161|template^application/timestamp-reply
-rfc^rfc5955|template^application/timestamped-data
--
-person^W3C^W3C_Timed_Text_Working_Group|template^application/ttml+xml
-person^Linda_Welsh|template^application/tve-trigger
-rfc^rfc5109|template^application/ulpfec
-person^Gottfried_Zimmermann|template^application/urc-grpsheet+xml
-person^Gottfried_Zimmermann|template^application/urc-ressheet+xml
-person^Gottfried_Zimmermann|template^application/urc-targetdesc+xml
-person^Gottfried_Zimmermann|template^application/urc-uisocketdesc+xml
-rfc^rfc7095|template^application/vcard+json
-rfc^rfc6351|template^application/vcard+xml
--
-rfc^rfc2122|template^application/vemmi
--
-person^Frederic_Firmin|template^application/vnd.3gpp-prose+xml
-person^Frederic_Firmin|template^application/vnd.3gpp-prose-pc3ch+xml
-person^John_M_Meredith|template^application/vnd.3gpp.bsf+xml
-person^Frederic_Firmin|template^application/vnd.3gpp.mid-call+xml
-person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-large
-person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-small
-person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-var
-person^John_M_Meredith|template^application/vnd.3gpp.sms
-person^Frederic_Firmin|template^application/vnd.3gpp.state-and-event-info+xml
-person^Frederic_Firmin|template^application/vnd.3gpp.ussd+xml
-person^Andy_Dryden|template^application/vnd.3gpp2.bcmcsinfo+xml
-person^AC_Mahendran|template^application/vnd.3gpp2.sms
-person^AC_Mahendran|template^application/vnd.3gpp2.tcap
-person^Michael_OBrien|template^application/vnd.3M.Post-it-Notes
-person^Steve_Leow|template^application/vnd.accpac.simply.aso
-person^Steve_Leow|template^application/vnd.accpac.simply.imp
-person^Dovid_Lubin|template^application/vnd-acucobol
-person^Dovid_Lubin|template^application/vnd.acucorp
--
-person^Henrik_Andersson|template^application/vnd.adobe.flash-movie
-person^Chris_Solc|template^application/vnd.adobe.formscentral.fcdt
-person^Robert_Brambley^Steven_Heintz|template^application/vnd.adobe.fxp
-person^Tapani_Otala|template^application/vnd.adobe.partial-upload
-person^John_Brinkman|template^application/vnd.adobe.xdp+xml
-person^Roberto_Perelman|template^application/vnd.adobe.xfdf
-person^Jay_Moskowitz|template^application/vnd.aether.imp
-person^Katsuhiko_Ichinose|template^application/vnd.ah-barcode
-person^Tor_Kristensen|template^application/vnd.ahead.space
-person^Daniel_Mould^Gary_Clueit|template^application/vnd.airzip.filesecure.azf
-person^Daniel_Mould^Gary_Clueit|template^application/vnd.airzip.filesecure.azs
--
-person^Gary_Sands|template^application/vnd.americandynamics.acc
-person^Kevin_Blumberg|template^application/vnd.amiga.ami
-person^Mike_Amundsen|template^application/vnd.amundsen.maze+xml
--
-person^Kerrick_Staley|template^application/vnd.anki
-person^Hiroyoshi_Mori|template^application/vnd.anser-web-certificate-issue-initiation
--
-person^Daniel_Shelton|template^application/vnd.antix.game-component
-person^Roger_Meier|template^application/vnd.apache.thrift.binary
-person^Roger_Meier|template^application/vnd.apache.thrift.compact
-person^Roger_Meier|template^application/vnd.apache.thrift.json
-person^Steve_Klabnik|template^application/vnd.api+json
-person^Peter_Bierman|template^application/vnd.apple.installer+xml
-person^David_Singer^Roger_Pantos|template^application/vnd.apple.mpegurl
--
-notes^- OBSOLETED in favor of application/vnd.aristanetworks.swi|person^Bill_Fenner|template^application/vnd.arastra.swi
-person^Bill_Fenner|template^application/vnd.aristanetworks.swi
-person^Christopher_Smith|template^application/vnd.artsquare
-person^Christopher_Snazell|template^application/vnd.astraea-software.iota
-person^Horia_Cristian_Slusanschi|template^application/vnd.audiograph
-person^Mike_Hearn|template^application/vnd.autopackage
-person^Vladimir_Vysotsky|template^application/vnd.avistar+xml
-person^Giacomo_Guilizzoni|template^application/vnd.balsamiq.bmml+xml
-person^Giacomo_Guilizzoni|template^application/vnd.balsamiq.bmpr
-person^Jegulsky|template^application/vnd.bekitzur-stech+json
-person^Pathway_Commons|template^application/vnd.biopax.rdf+xml
-person^Thomas_Holmstrom|template^application/vnd.blueice.multipass
-person^Mike_Foley|template^application/vnd.bluetooth.ep.oob
-person^Mark_Powell|template^application/vnd.bluetooth.le.oob
-person^Tadashi_Gotoh|template^application/vnd.bmi
-person^Philippe_Imoucha|template^application/vnd.businessobjects
-person^Joerg_Falkenberg|template^application/vnd.cab-jscript
-person^Shin_Muto|template^application/vnd.canon-cpdl
-person^Shin_Muto|template^application/vnd.canon-lips
-person^Peter_Astrand|template^application/vnd.cendio.thinlinc.clientconf
-person^Shuji_Fujii|template^application/vnd.century-systems.tcp_stream
-person^Glenn_Howes|template^application/vnd.chemdraw+xml
-person^Chunyun_Xiong|template^application/vnd.chipnuts.karaoke-mmd
-person^Ulrich_Kortenkamp|template^application/vnd.cinderella
-person^Pascal_Mayeux|template^application/vnd.cirpack.isdn-ext
-person^Rintze_M._Zelle|template^application/vnd.citationstyles.style+xml
-person^Ray_Simpson|template^application/vnd.claymore
-person^Mike_Labatt|template^application/vnd.cloanto.rp9
-person^Guenther_Brammer|template^application/vnd.clonk.c4group
-person^Gaige_Paulsen|template^application/vnd.cluetrust.cartomobile-config
-person^Gaige_Paulsen|template^application/vnd.cluetrust.cartomobile-config-pkg
-person^Devyn_Collier_Johnson|template^application/vnd.coffeescript
-person^Mike_Amundsen|template^application/vnd.collection+json
-person^Irakli_Nadareishvili|template^application/vnd.collection.doc+json
-person^Ioseb_Dzmanashvili|template^application/vnd.collection.next+json
-person^David_Applebaum|template^application/vnd.commerce-battelle
-person^Ravinder_Chandhok|template^application/vnd.commonspace
-person^Frank_Patz|template^application/vnd.contact.cmsg
-person^Steve_Dellutri|template^application/vnd.cosmocaller
-person^Andrew_Burt|template^application/vnd.crick.clicker
-person^Andrew_Burt|template^application/vnd.crick.clicker.keyboard
-person^Andrew_Burt|template^application/vnd.crick.clicker.palette
-person^Andrew_Burt|template^application/vnd.crick.clicker.template
-person^Andrew_Burt|template^application/vnd.crick.clicker.wordbank
-person^Jim_Spiller|template^application/vnd.criticaltools.wbs+xml
-person^Bayard_Kohlhepp|template^application/vnd.ctc-posml
-person^Jim_Ancona|template^application/vnd.ctct.ws+xml
-person^Michael_Sweet|template^application/vnd.cups-pdf
-person^Michael_Sweet|template^application/vnd.cups-postscript
-person^Michael_Sweet|template^application/vnd.cups-ppd
-person^Michael_Sweet|template^application/vnd.cups-raster
-person^Michael_Sweet|template^application/vnd.cups-raw
-person^Robert_Byrnes|template^application/vnd-curl
--
--
-person^Matt_Kern|template^application/vnd.cyan.dean.root+xml
-person^Nor_Helmee|template^application/vnd.cybank
-person^Anders_Sandholm|template^application/vnd-dart
-person^James_Fields|template^application/vnd.data-vision.rdz
-person^Charles_Plessy|template^application/vnd.debian.binary-package
-person^Michael_A_Dolan|template^application/vnd.dece.data
-person^Michael_A_Dolan|template^application/vnd.dece.ttml+xml
-person^Michael_A_Dolan|template^application/vnd.dece.unspecified
-person^Michael_A_Dolan|template^application/vnd.dece-zip
-person^Michael_Dixon|template^application/vnd.denovo.fcselayout-link
-person^Henrik_Andersson|template^application/vnd.desmume-movie
-person^Yamanaka|template^application/vnd.dir-bi.plate-dl-nosuffix
-person^Axel_Ferrazzini|template^application/vnd.dm.delegation+xml
-person^Meredith_Searcy|template^application/vnd.dna
-person^Tom_Christie|template^application/vnd.document+json
--
-person^Steve_Hattersley|template^application/vnd.dolby.mobile.1
-person^Steve_Hattersley|template^application/vnd.dolby.mobile.2
-person^Erik_Ronström|template^application/vnd.doremir.scorecloud-binary-document
-person^David_Parker|template^application/vnd.dpgraph
-person^William_C._Appleton|template^application/vnd.dreamfactory
-person^Keith_Kester|template^application/vnd.drive+json
--
-person^Ali_Teffahi|template^application/vnd.dtg.local
-person^Ali_Teffahi|template^application/vnd.dtg.local.flash
-person^Ali_Teffahi|template^application/vnd.dtg.local-html
-person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.ait
-person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.dvbj
-person^Joerg_Heuer|template^application/vnd.dvb.esgcontainer
-person^Roy_Yue|template^application/vnd.dvb.ipdcdftnotifaccess
-person^Joerg_Heuer|template^application/vnd.dvb.ipdcesgaccess
-person^Jerome_Marcon|template^application/vnd.dvb.ipdcesgaccess2
-person^Jerome_Marcon|template^application/vnd.dvb.ipdcesgpdd
-person^Yiling_Xu|template^application/vnd.dvb.ipdcroaming
-person^Jean-Baptiste_Henry|template^application/vnd.dvb.iptv.alfec-base
-person^Jean-Baptiste_Henry|template^application/vnd.dvb.iptv.alfec-enhancement
-person^Roy_Yue|template^application/vnd.dvb.notif-aggregate-root+xml
-person^Roy_Yue|template^application/vnd.dvb.notif-container+xml
-person^Roy_Yue|template^application/vnd.dvb.notif-generic+xml
-person^Roy_Yue|template^application/vnd.dvb.notif-ia-msglist+xml
-person^Roy_Yue|template^application/vnd.dvb.notif-ia-registration-request+xml
-person^Roy_Yue|template^application/vnd.dvb.notif-ia-registration-response+xml
-person^Roy_Yue|template^application/vnd.dvb.notif-init+xml
-person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.pfr
-person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb_service
-person^Michael_Duffy|template^application/vnd-dxr
-person^Roland_Mechling|template^application/vnd.dynageo
-person^Carl_Anderson|template^application/vnd.dzr
-person^Iain_Downs|template^application/vnd.easykaraoke.cdgdownload
-person^Gert_Buettgenbach|template^application/vnd.ecdis-update
-person^Thomas_Olsson|template^application/vnd.ecowin.chart
-person^Thomas_Olsson|template^application/vnd.ecowin.filerequest
-person^Thomas_Olsson|template^application/vnd.ecowin.fileupdate
-person^Thomas_Olsson|template^application/vnd.ecowin.series
-person^Thomas_Olsson|template^application/vnd.ecowin.seriesrequest
-person^Thomas_Olsson|template^application/vnd.ecowin.seriesupdate
-person^Filip_Navara|template^application/vnd.emclient.accessrequest+xml
-person^Paul_Santinelli_Jr.|template^application/vnd.enliven
-person^Chris_Eich|template^application/vnd.enphase.envoy
-person^Tim_Brody|template^application/vnd.eprints.data+xml
-person^Shoji_Hoshina|template^application/vnd.epson.esf
-person^Shoji_Hoshina|template^application/vnd.epson.msf
-person^Yu_Gu|template^application/vnd.epson.quickanime
-person^Yasuhito_Nagatomo|template^application/vnd.epson.salt
-person^Shoji_Hoshina|template^application/vnd.epson.ssf
-person^Paul_Tidwell|template^application/vnd.ericsson.quickcall
-person^Szilveszter_Tóth|template^application/vnd.eszigno3+xml
-person^Shicheng_Hu|template^application/vnd.etsi.aoc+xml
-person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.asic-e+zip
-person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.asic-s+zip
-person^Shicheng_Hu|template^application/vnd.etsi.cug+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvcommand+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvdiscovery+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvprofile+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-bc+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-cod+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-npvr+xml
-person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.iptvservice+xml
-person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.iptvsync+xml
-person^Shicheng_Hu|template^application/vnd.etsi.iptvueprofile+xml
-person^Shicheng_Hu|template^application/vnd.etsi.mcid+xml
-person^Ian_Medland^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.mheg5
-person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.overload-control-policy-dataset+xml
-person^Jiwan_Han^Thomas_Belling|template^application/vnd.etsi.pstn+xml
-person^Shicheng_Hu|template^application/vnd.etsi.sci+xml
-person^Shicheng_Hu|template^application/vnd.etsi.simservs+xml
-person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.timestamp-token
-person^Shicheng_Hu|template^application/vnd.etsi.tsl+xml
-person^Shicheng_Hu|template^application/vnd.etsi.tsl.der
-person^Pete_Resnick|template^application/vnd.eudora.data
-person^ElectronicZombieCorp|template^application/vnd.ezpix-album
-person^ElectronicZombieCorp|template^application/vnd.ezpix-package
-person^Samu_Sarivaara|template^application/vnd.f-secure.mobile
-person^Thomas_Huth|template^application/vnd.fastcopy-disk-image
-person^Steve_Zilles|template^application/vnd-fdf
-person^Chad_Trabant|template^application/vnd.fdsn.mseed
-person^Chad_Trabant|template^application/vnd.fdsn.seed
-person^Holstage|template^application/vnd.ffsns
-person^Ingo_Hammann|template^application/vnd.fints
-person^Alex_Dubov|template^application/vnd.firemonkeys.cloudcell
-person^Dick_Floersch|template^application/vnd.FloGraphIt
-person^Marc_Winter|template^application/vnd.fluxtime.clip
-person^George_Williams|template^application/vnd.font-fontforge-sfd
-person^Mike_Wexler|template^application/vnd.framemaker
-person^Alexis_Tamas|template^application/vnd.frogans.fnc
-person^Alexis_Tamas|template^application/vnd.frogans.ltf
-person^Derek_Smith|template^application/vnd.fsc.weblaunch
-person^Nobukazu_Togashi|template^application/vnd.fujitsu.oasys
-person^Nobukazu_Togashi|template^application/vnd.fujitsu.oasys2
-person^Seiji_Okudaira|template^application/vnd.fujitsu.oasys3
-person^Masahiko_Sugimoto|template^application/vnd.fujitsu.oasysgp
-person^Masumi_Ogita|template^application/vnd.fujitsu.oasysprs
-person^Fumio_Tanabe|template^application/vnd.fujixerox.ART-EX
-person^Fumio_Tanabe|template^application/vnd.fujixerox.ART4
-person^Masanori_Onda|template^application/vnd.fujixerox.ddd
-person^Yasuo_Taguchi|template^application/vnd.fujixerox.docuworks
-person^Takashi_Matsumoto|template^application/vnd.fujixerox.docuworks.binder
-person^Kiyoshi_Tashiro|template^application/vnd.fujixerox.docuworks.container
-person^Fumio_Tanabe|template^application/vnd.fujixerox.HBPL
-person^Jann_Pruulman|template^application/vnd.fut-misnet
-person^Simon_Birtwistle|template^application/vnd.fuzzysheet
-person^Torben_Frey|template^application/vnd.genomatix.tuxedo
-person^Sean_Gillies|template^application/vnd.geo+json
-notes^- OBSOLETED by request|person^Francois_Pirsch|template^application/vnd.geocube+xml
-person^GeoGebra^Yves_Kreis|template^application/vnd.geogebra.file
-person^GeoGebra^Yves_Kreis|template^application/vnd.geogebra.tool
-person^Michael_Hvidsten|template^application/vnd.geometry-explorer
-person^Matthias_Ehmann|template^application/vnd.geonext
-person^Christian_Mercat|template^application/vnd.geoplan
-person^Christian_Mercat|template^application/vnd.geospace
-person^Thomas_Weyn|template^application/vnd.gerber
-person^Gil_Bernabeu|template^application/vnd.globalplatform.card-content-mgt
-person^Gil_Bernabeu|template^application/vnd.globalplatform.card-content-mgt-response
-notes^- DEPRECATED|person^Christian_V._Sciberras|template^application/vnd.gmx
-person^Michael_Ashbridge|template^application/vnd.google-earth.kml+xml
-person^Michael_Ashbridge|template^application/vnd.google-earth.kmz
-person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.e-form+xml
-person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.e-form+zip
-person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.xmldatacontainer+xml
-person^Jeff_Tupper|template^application/vnd.grafeq
-person^Jeff_Lawson|template^application/vnd.gridmp
-person^Todd_Joseph|template^application/vnd.groove-account
-person^Todd_Joseph|template^application/vnd.groove-help
-person^Todd_Joseph|template^application/vnd.groove-identity-message
-person^Todd_Joseph|template^application/vnd.groove-injector
-person^Todd_Joseph|template^application/vnd.groove-tool-message
-person^Todd_Joseph|template^application/vnd.groove-tool-template
-person^Todd_Joseph|template^application/vnd.groove-vcard
-person^Mike_Kelly|template^application/vnd.hal+json
-person^Mike_Kelly|template^application/vnd.hal+xml
-person^Eric_Hamilton|template^application/vnd.HandHeld-Entertainment+xml
-person^Ingo_Hammann|template^application/vnd.hbci
-person^Doug_R._Serres|template^application/vnd.hcl-bireports
-person^Wesley_Beary|template^application/vnd.heroku+json
-person^Randy_Jones|template^application/vnd.hhe.lesson-player
-person^Bob_Pentecost|template^application/vnd.hp-HPGL
-person^Aloke_Gupta|template^application/vnd.hp-hpid
-person^Steve_Aubrey|template^application/vnd.hp-hps
-person^Amir_Gaash|template^application/vnd.hp-jlyt
-person^Bob_Pentecost|template^application/vnd.hp-PCL
-person^Bob_Pentecost|template^application/vnd.hp-PCLXL
-person^Franck_Lefevre|template^application/vnd.httphone
-person^Allen_Gillam|template^application/vnd.hydrostatix.sof-data
-person^Daniel_Sims|template^application/vnd.hyperdrive+json
-person^James_Minnis|template^application/vnd.hzn-3d-crossword
-person^Roger_Buis|template^application/vnd.ibm.afplinedata
-person^Bruce_Tantlinger|template^application/vnd.ibm.electronic-media
-person^Amir_Herzberg|template^application/vnd.ibm.MiniPay
-person^Reinhard_Hohensee|template^application/vnd.ibm.modcap
-person^Bruce_Tantlinger|template^application/vnd.ibm.rights-management
-person^Bruce_Tantlinger|template^application/vnd.ibm.secure-container
-person^Phil_Green|template^application/vnd.iccprofile
-person^Purva_R_Rajkotia|template^application/vnd.ieee.1905
-person^Tim_Fisher|template^application/vnd.igloader
-person^Mathieu_Villegas|template^application/vnd.immervision-ivp
-person^Mathieu_Villegas|template^application/vnd.immervision-ivu
-person^Lisa_Mattson|template^application/vnd.ims.imsccv1p1
-person^Lisa_Mattson|template^application/vnd.ims.imsccv1p2
-person^Lisa_Mattson|template^application/vnd.ims.imsccv1p3
-person^Lisa_Mattson|template^application/vnd.ims.lis.v2.result+json
-person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolconsumerprofile+json
-person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolproxy+json
-person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolproxy.id+json
-person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolsettings+json
-person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolsettings.simple+json
-person^Mark_Wahl|template^application/vnd.informedcontrol.rms+xml
-notes^- OBSOLETED in favor of application/vnd.visionary|person^Christopher_Gales|template^application/vnd.informix-visionary
-person^Charles_Engelke|template^application/vnd.infotech.project
-person^Charles_Engelke|template^application/vnd.infotech.project+xml
-person^Takanori_Sudo|template^application/vnd.innopath.wamp.notification
-person^Jon_Swanson|template^application/vnd.insors.igm
-person^Tom_Gurak|template^application/vnd.intercon.formnet
-person^Yves_Kreis_2|template^application/vnd.intergeo
-person^Luke_Tomasello|template^application/vnd.intertrust.digibox
-person^Luke_Tomasello|template^application/vnd.intertrust.nncp
-person^Greg_Scratchley|template^application/vnd.intu.qbo
-person^Greg_Scratchley|template^application/vnd.intu.qfx
-person^Michael_Steidl|template^application/vnd.iptc.g2.catalogitem+xml
-person^Michael_Steidl|template^application/vnd.iptc.g2.conceptitem+xml
-person^Michael_Steidl|template^application/vnd.iptc.g2.knowledgeitem+xml
-person^Michael_Steidl|template^application/vnd.iptc.g2.newsitem+xml
-person^Michael_Steidl|template^application/vnd.iptc.g2.newsmessage+xml
-person^Michael_Steidl|template^application/vnd.iptc.g2.packageitem+xml
-person^Michael_Steidl|template^application/vnd.iptc.g2.planningitem+xml
-person^Per_Ersson|template^application/vnd.ipunplugged.rcprofile
-person^Martin_Knowles|template^application/vnd.irepository.package+xml
-person^Satish_Navarajan|template^application/vnd.is-xpr
-person^Ryan_Brinkman|template^application/vnd.isac.fcs
-person^Brijesh_Kumar|template^application/vnd.jam
-person^Kiyofusa_Fujii|template^application/vnd.japannet-directory-service
-person^Jun_Yoshitake|template^application/vnd.japannet-jpnstore-wakeup
-person^Kiyofusa_Fujii|template^application/vnd.japannet-payment-wakeup
-person^Jun_Yoshitake|template^application/vnd.japannet-registration
-person^Kiyofusa_Fujii|template^application/vnd.japannet-registration-wakeup
-person^Jun_Yoshitake|template^application/vnd.japannet-setstore-wakeup
-person^Jun_Yoshitake|template^application/vnd.japannet-verification
-person^Kiyofusa_Fujii|template^application/vnd.japannet-verification-wakeup
-person^Mikhail_Gorshenev|template^application/vnd.jcp.javame.midlet-rms
-person^Sebastiaan_Deckers|template^application/vnd.jisp
-person^Joost|template^application/vnd.joost.joda-archive
-person^Yokoyama_Kiyonobu|template^application/vnd.jsk.isdn-ngn
-person^Tim_Macdonald|template^application/vnd.kahootz
-person^David_Faure|template^application/vnd.kde.karbon
-person^David_Faure|template^application/vnd.kde.kchart
-person^David_Faure|template^application/vnd.kde.kformula
-person^David_Faure|template^application/vnd.kde.kivio
-person^David_Faure|template^application/vnd.kde.kontour
-person^David_Faure|template^application/vnd.kde.kpresenter
-person^David_Faure|template^application/vnd.kde.kspread
-person^David_Faure|template^application/vnd.kde.kword
-person^Dirk_DiGiorgio-Haag|template^application/vnd.kenameaapp
-person^Jack_Bennett|template^application/vnd.kidspiration
-person^Hemant_Thakkar|template^application/vnd.Kinar
-person^Pete_Cole|template^application/vnd.koan
-person^Michael_J._Donahue|template^application/vnd.kodak-descriptor
-person^Rob_Bailey|template^application/vnd.las.las+xml
-person^Brett_McDowell|template^application/vnd.liberty-request+xml
-person^Catherine_E._White|template^application/vnd.llamagraphics.life-balance.desktop
-person^Catherine_E._White|template^application/vnd.llamagraphics.life-balance.exchange+xml
-person^Paul_Wattenberger|template^application/vnd.lotus-1-2-3
-person^Paul_Wattenberger|template^application/vnd.lotus-approach
-person^Paul_Wattenberger|template^application/vnd.lotus-freelance
-person^Michael_Laramie|template^application/vnd.lotus-notes
-person^Paul_Wattenberger|template^application/vnd.lotus-organizer
-person^Paul_Wattenberger|template^application/vnd.lotus-screencam
-person^Paul_Wattenberger|template^application/vnd.lotus-wordpro
-person^James_Berry|template^application/vnd.macports.portpkg
-person^Gary_Ellison|template^application/vnd.marlin.drm.actiontoken+xml
-person^Gary_Ellison|template^application/vnd.marlin.drm.conftoken+xml
-person^Gary_Ellison|template^application/vnd.marlin.drm.license+xml
-person^Gary_Ellison|template^application/vnd.marlin.drm.mdcf
-person^Jorn_Wildt|template^application/vnd.mason+json
-person^William_Stevenson|template^application/vnd.maxmind.maxmind-db
-person^Tadashi_Gotoh|template^application/vnd.mcd
-person^Frank_Schoonjans|template^application/vnd.medcalcdata
-person^Henry_Flurry|template^application/vnd.mediastation.cdkey
-person^Eric_Wedel|template^application/vnd.meridian-slingshot
-person^Masaaki_Hirai|template^application/vnd.MFER
-person^Yukari_Ikeda|template^application/vnd.mfmp
-person^Dali_Zheng|template^application/vnd.micro+json
-person^Joe_Prevo|template^application/vnd.micrografx.flo
-person^Joe_Prevo|template^application/vnd.micrografx-igx
-person^Henrik_Andersson|template^application/vnd.microsoft.portable-executable
-person^Nils_Langhammer|template^application/vnd.miele+json
-person^Mike_Wexler|template^application/vnd-mif
-person^Chris_Bartram|template^application/vnd.minisoft-hp3000-save
-person^Tanaka|template^application/vnd.mitsubishi.misty-guard.trustweb
-person^Allen_K._Kabayama|template^application/vnd.Mobius.DAF
-person^Allen_K._Kabayama|template^application/vnd.Mobius.DIS
-person^Alex_Devasia|template^application/vnd.Mobius.MBK
-person^Alex_Devasia|template^application/vnd.Mobius.MQY
-person^Allen_K._Kabayama|template^application/vnd.Mobius.MSL
-person^Allen_K._Kabayama|template^application/vnd.Mobius.PLC
-person^Allen_K._Kabayama|template^application/vnd.Mobius.TXF
-person^Bjorn_Wennerstrom|template^application/vnd.mophun.application
-person^Bjorn_Wennerstrom|template^application/vnd.mophun.certificate
-person^Mark_Patton|template^application/vnd.motorola.flexsuite
-person^Mark_Patton|template^application/vnd.motorola.flexsuite.adsi
-person^Mark_Patton|template^application/vnd.motorola.flexsuite.fis
-person^Mark_Patton|template^application/vnd.motorola.flexsuite.gotap
-person^Mark_Patton|template^application/vnd.motorola.flexsuite.kmr
-person^Mark_Patton|template^application/vnd.motorola.flexsuite.ttc
-person^Mark_Patton|template^application/vnd.motorola.flexsuite.wem
-person^Rafie_Shamsaasef|template^application/vnd.motorola.iprm
-person^Braden_N_McDaniel|template^application/vnd.mozilla.xul+xml
-person^Shawn_Maloney|template^application/vnd.ms-3mfdocument
-person^Dean_Slawson|template^application/vnd.ms-artgalry
-person^Eric_Fleischman|template^application/vnd.ms-asf
-person^Kim_Scarborough|template^application/vnd.ms-cab-compressed
-person^Sukvinder_S._Gill|template^application/vnd.ms-excel
-person^Chris_Rae|template^application/vnd.ms-excel.addin.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-excel.sheet.binary.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-excel.sheet.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-excel.template.macroEnabled.12
-person^Kim_Scarborough|template^application/vnd.ms-fontobject
-person^Anatoly_Techtonik|template^application/vnd.ms-htmlhelp
-person^Eric_Ledoux|template^application/vnd.ms-ims
-person^Eric_Ledoux|template^application/vnd.ms-lrm
-person^Chris_Rae|template^application/vnd.ms-office.activeX+xml
-person^Chris_Rae|template^application/vnd.ms-officetheme
--
--
--
-person^Daniel_Schneider|template^application/vnd.ms-playready.initiator+xml
-person^Sukvinder_S._Gill|template^application/vnd.ms-powerpoint
-person^Chris_Rae|template^application/vnd.ms-powerpoint.addin.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-powerpoint.presentation.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-powerpoint.slide.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-powerpoint.slideshow.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-powerpoint.template.macroEnabled.12
-person^Sukvinder_S._Gill|template^application/vnd.ms-project
-person^Sukvinder_S._Gill|template^application/vnd.ms-tnef
-person^Justin_Hutchings|template^application/vnd.ms-windows.printerpairing
-person^Kevin_Lau|template^application/vnd.ms-wmdrm.lic-chlg-req
-person^Kevin_Lau|template^application/vnd.ms-wmdrm.lic-resp
-person^Kevin_Lau|template^application/vnd.ms-wmdrm.meter-chlg-req
-person^Kevin_Lau|template^application/vnd.ms-wmdrm.meter-resp
-person^Chris_Rae|template^application/vnd.ms-word.document.macroEnabled.12
-person^Chris_Rae|template^application/vnd.ms-word.template.macroEnabled.12
-person^Sukvinder_S._Gill|template^application/vnd.ms-works
-person^Dan_Plastina|template^application/vnd.ms-wpl
-person^Jesse_McGatha|template^application/vnd.ms-xpsdocument
-person^Thomas_Huth|template^application/vnd.msa-disk-image
-person^Gwenael_Le_Bodic|template^application/vnd.mseq
-person^Malte_Borcherding|template^application/vnd.msign
-person^Steve_Mills|template^application/vnd.multiad.creator
-person^Steve_Mills|template^application/vnd.multiad.creator.cif
-person^Tim_Butler|template^application/vnd.music-niff
-person^Greg_Adams|template^application/vnd.musician
-person^Chandrashekhara_Anantharamu|template^application/vnd.muvee.style
-person^Franck_Lefevre|template^application/vnd.mynfc
-person^Lauri_Tarkkala|template^application/vnd.ncd.control
-person^Lauri_Tarkkala|template^application/vnd.ncd.reference
-person^Steve_Judkins|template^application/vnd.nervana
-person^Andy_Mutz|template^application/vnd.netfpx
-person^Dan_DuFeu|template^application/vnd.neurolanguage.nlu
-person^Henrik_Andersson|template^application/vnd.nintendo.nitro.rom
-person^Henrik_Andersson|template^application/vnd.nintendo.snes.rom
-person^Steve_Rogan|template^application/vnd.nitf
-person^Monty_Solomon|template^application/vnd.noblenet-directory
-person^Monty_Solomon|template^application/vnd.noblenet-sealer
-person^Monty_Solomon|template^application/vnd.noblenet-web
-person^Nokia|template^application/vnd.nokia.catalogs
-person^Nokia|template^application/vnd.nokia.conml+wbxml
-person^Nokia|template^application/vnd.nokia.conml+xml
-person^Nokia|template^application/vnd.nokia.iptv.config+xml
-person^Nokia|template^application/vnd.nokia.iSDS-radio-presets
-person^Nokia|template^application/vnd.nokia.landmark+wbxml
-person^Nokia|template^application/vnd.nokia.landmark+xml
-person^Nokia|template^application/vnd.nokia.landmarkcollection+xml
-person^Nokia|template^application/vnd.nokia.n-gage.ac+xml
-person^Nokia|template^application/vnd.nokia.n-gage.data
-notes^- OBSOLETE; no replacement given|person^Nokia|template^application/vnd.nokia.n-gage.symbian.install
-person^Nokia|template^application/vnd.nokia.ncd
--
-person^Nokia|template^application/vnd.nokia.pcd+wbxml
-person^Nokia|template^application/vnd.nokia.pcd+xml
-person^Nokia|template^application/vnd.nokia.radio-preset
-person^Nokia|template^application/vnd.nokia.radio-presets
-person^Janine_Swenson|template^application/vnd.novadigm.EDM
-person^Janine_Swenson|template^application/vnd.novadigm.EDX
-person^Janine_Swenson|template^application/vnd.novadigm.EXT
-person^Akinori_Taya|template^application/vnd.ntt-local.content-share
-person^NTT-local|template^application/vnd.ntt-local.file-transfer
-person^NTT-local|template^application/vnd.ntt-local.ogw_remote-access
-person^NTT-local|template^application/vnd.ntt-local.sip-ta_remote
-person^NTT-local|template^application/vnd.ntt-local.sip-ta_tcp_stream
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.chart
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.chart-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.database
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.formula
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.formula-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.graphics
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.graphics-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.image
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.image-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.presentation
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.presentation-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.spreadsheet
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.spreadsheet-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text-master
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text-template
-person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text-web
-person^Matthias_Hessling|template^application/vnd.obn
-person^Eli_Grey|template^application/vnd.oftn.l10n+json
-person^Claire_DEsclercs|template^application/vnd.oipf.contentaccessdownload+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.contentaccessstreaming+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.cspg-hexbinary
-person^Claire_DEsclercs|template^application/vnd.oipf.dae.svg+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.dae.xhtml+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.mippvcontrolmessage+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.pae.gem
-person^Claire_DEsclercs|template^application/vnd.oipf.spdiscovery+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.spdlist+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.ueprofile+xml
-person^Claire_DEsclercs|template^application/vnd.oipf.userprofile+xml
-person^John_Palmieri|template^application/vnd.olpc-sugar
-person^Ilan_Mahalal|template^application/vnd.oma-scws-config
-person^Ilan_Mahalal|template^application/vnd.oma-scws-http-request
-person^Ilan_Mahalal|template^application/vnd.oma-scws-http-response
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.associated-procedure-parameter+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.drm-trigger+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.imd+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.ltkm
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.notification+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.provisioningtrigger
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sgboot
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sgdd+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sgdu
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.simple-symbol-container
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.smartcard-trigger+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sprov+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.stkm
-person^Hao_Wang^OMA|template^application/vnd.oma.cab-address-book+xml
-person^Hao_Wang^OMA|template^application/vnd.oma.cab-feature-handler+xml
-person^Hao_Wang^OMA|template^application/vnd.oma.cab-pcc+xml
-person^Hao_Wang^OMA|template^application/vnd.oma.cab-subs-invite+xml
-person^Hao_Wang^OMA|template^application/vnd.oma.cab-user-prefs+xml
-person^Avi_Primo^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.dcd
-person^Avi_Primo^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.dcdc
-person^Jun_Sato^Open_Mobile_Alliance_BAC_DLDRM_Working_Group|template^application/vnd.oma.dd2+xml
-person^OMNA-Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.drm.risd+xml
-person^OMA_Presence_and_Availability_PAG_Working_Group^Sean_Kelley|template^application/vnd.oma.group-usage-list+xml
-person^Brian_McColgan^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.pal+xml
-person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.detailed-progress-report+xml
-person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.final-report+xml
-person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group^Sean_Kelley|template^application/vnd.oma.poc.groups+xml
-person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.invocation-descriptor+xml
-person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.optimized-progress-report+xml
-person^Bryan_Sullivan^OMA|template^application/vnd.oma.push
-person^OMNA-Open_Mobile_Naming_Authority^Wenjun_Zeng|template^application/vnd.oma.scidm.messages+xml
-person^OMA_Presence_and_Availability_PAG_Working_Group^Sean_Kelley|template^application/vnd.oma.xcap-directory+xml
-person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-email+xml
-person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-file+xml
-person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-folder+xml
-person^Julien_Grange|template^application/vnd.omaloc-supl-init
-person^Mark_Otaris|template^application/vnd.openblox.game+xml
-person^Mark_Otaris|template^application/vnd.openblox.game-binary
-person^Craig_Bruce|template^application/vnd.openeye.oeb
--
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.custom-properties+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.customXmlProperties+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawing+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.chart+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.extended-properties+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.comments+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presentation
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slide
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slide+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideshow
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.tags+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml-template
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml-template
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.theme+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.themeOverride+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.vmlDrawing
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml-template
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-package.core-properties+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
-person^Makoto_Murata|template^application/vnd.openxmlformats-package.relationships+xml
-person^Ning_Dong|template^application/vnd.oracle.resource+json
-person^CHATRAS_Bruno|template^application/vnd.orange.indata
-person^Steven_Klos|template^application/vnd.osa.netdeploy
-person^Jason_Birch|template^application/vnd.osgeo.mapguide.package
-person^Peter_Kriens|template^application/vnd.osgi.bundle
-person^Peter_Kriens|template^application/vnd.osgi.dp
-person^Peter_Kriens|template^application/vnd.osgi.subsystem
-person^Magnus_Nystrom|template^application/vnd.otps.ct-kip+xml
-person^Gavin_Peacock|template^application/vnd.palm
-person^Natarajan_Balasundara|template^application/vnd.panoply
-person^John_Kemp|template^application/vnd.paos+xml
-person^Prakash_Baskaran|template^application/vnd.pawaafile
-person^Slawomir_Lisznianski|template^application/vnd.pcos
-person^April_Gandert|template^application/vnd.pg.format
-person^April_Gandert|template^application/vnd.pg.osasli
-person^Lucas_Maneos|template^application/vnd.piaccess.application-licence
-person^Giuseppe_Naccarato|template^application/vnd.picsel
-person^Rhys_Lewis|template^application/vnd.pmi.widget
-person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group^Sean_Kelley|template^application/vnd.poc.group-advertisement+xml
-person^Jorge_Pando|template^application/vnd.pocketlearn
-person^David_Guy|template^application/vnd.powerbuilder6
-person^David_Guy|template^application/vnd.powerbuilder6-s
-person^Reed_Shilts|template^application/vnd.powerbuilder7
-person^Reed_Shilts|template^application/vnd.powerbuilder7-s
-person^Reed_Shilts|template^application/vnd.powerbuilder75
-person^Reed_Shilts|template^application/vnd.powerbuilder75-s
-person^Juoko_Tenhunen|template^application/vnd.preminet
-person^Roman_Smolgovsky|template^application/vnd.previewsystems.box
-person^Pete_Hoch|template^application/vnd.proteus.magazine
-person^Oren_Ben-Kiki|template^application/vnd.publishare-delta-tree
-person^Charles_P._Lamb|template^application/vnd.pvi.ptid1
-rfc^rfc3391|template^application/vnd.pwg-multiplexed
-person^Don_Wright|template^application/vnd.pwg-xhtml-print+xml
-person^Glenn_Forrester|template^application/vnd.qualcomm.brew-app-res
-person^Hannes_Scheidler|template^application/vnd.Quark.QuarkXPress
-person^Matthias_Ludwig|template^application/vnd.quobject-quoxdocument
-rfc^rfc5707|template^application/vnd.radisys.moml+xml
-rfc^rfc5707|template^application/vnd.radisys.msml+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-audit+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-audit-conf+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-audit-conn+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-audit-dialog+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-audit-stream+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-conf+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog-base+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog-fax-detect+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog-fax-sendrecv+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog-group+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog-speech+xml
-rfc^rfc5707|template^application/vnd.radisys.msml-dialog-transform+xml
-person^Kevin_Crook|template^application/vnd.rainstor.data
-person^Etay_Szekely|template^application/vnd.rapid
-person^Nick_Reeves|template^application/vnd.realvnc.bed
-person^Michael_Good|template^application/vnd.recordare.musicxml
-person^Michael_Good|template^application/vnd.recordare.musicxml+xml
-person^James_Wick|template^application/vnd.renlearn.rlprint
-person^Ken_Jibiki|template^application/vnd.rig.cryptonote
--
--
--
-person^Sybren_Kikstra|template^application/vnd.route66.link66+xml
-person^Lee_Harding|template^application/vnd.rs-274x
-person^Jerry_Harris|template^application/vnd.ruckus.download
-person^Lauri_Tarkkala|template^application/vnd.s3sms
-person^Heikki_Vesalainen|template^application/vnd.sailingtracker.track
-person^Shinji_Kusakari|template^application/vnd.sbm.cid
-person^Masanori_Murai|template^application/vnd.sbm.mid2
-person^Craig_Bradney|template^application/vnd.scribus
-person^John_Kwan|template^application/vnd.sealed.3df
-person^John_Kwan|template^application/vnd.sealed.csf
-person^David_Petersen|template^application/vnd.sealed-doc
-person^David_Petersen|template^application/vnd.sealed-eml
-person^David_Petersen|template^application/vnd.sealed-mht
-person^Martin_Lambert|template^application/vnd.sealed.net
-person^David_Petersen|template^application/vnd.sealed-ppt
-person^John_Kwan^Martin_Lambert|template^application/vnd.sealed-tiff
-person^David_Petersen|template^application/vnd.sealed-xls
-person^David_Petersen|template^application/vnd.sealedmedia.softseal-html
-person^David_Petersen|template^application/vnd.sealedmedia.softseal-pdf
-person^Steve_Webb|template^application/vnd.seemail
-person^Anders_Hansson|template^application/vnd-sema
-person^Anders_Hansson|template^application/vnd.semd
-person^Anders_Hansson|template^application/vnd.semf
-person^Guy_Selzler|template^application/vnd.shana.informed.formdata
-person^Guy_Selzler|template^application/vnd.shana.informed.formtemplate
-person^Guy_Selzler|template^application/vnd.shana.informed.interchange
-person^Guy_Selzler|template^application/vnd.shana.informed.package
-person^Patrick_Koh|template^application/vnd.SimTech-MindMapper
-person^Kevin_Swiber|template^application/vnd.siren+json
-person^Hiroaki_Takahashi|template^application/vnd.smaf
-person^Jonathan_Neitz|template^application/vnd.smart.notebook
-person^Michael_Boyle|template^application/vnd.smart.teacher
-person^Jakub_Hytka^Martin_Vondrous|template^application/vnd.software602.filler.form+xml
-person^Jakub_Hytka^Martin_Vondrous|template^application/vnd.software602.filler.form-xml-zip
-person^Cliff_Gauntlett|template^application/vnd.solent.sdkm+xml
-person^Stefan_Jernberg|template^application/vnd.spotfire.dxp
-person^Stefan_Jernberg|template^application/vnd.spotfire.sfs
-person^Asang_Dani|template^application/vnd.sss-cod
-person^Eric_Bruno|template^application/vnd.sss-dtf
-person^Eric_Bruno|template^application/vnd.sss-ntf
--
--
--
--
--
--
--
-person^Henrik_Andersson|template^application/vnd.stepmania.package
-person^Henrik_Andersson|template^application/vnd.stepmania.stepchart
-person^Glenn_Levitt|template^application/vnd.street-stream
-person^Marc_Hadley|template^application/vnd.sun.wadl+xml
--
--
--
--
--
--
--
--
--
--
-person^Jonathan_Niedfeldt|template^application/vnd.sus-calendar
-person^Scott_Becker|template^application/vnd.svd
-person^Glenn_Widener|template^application/vnd.swiftview-ics
--
-person^OMA_Data_Synchronization_Working_Group|template^application/vnd.syncml+xml
-person^OMA-DM_Work_Group|template^application/vnd.syncml.dm+wbxml
-person^Bindu_Rama_Rao^OMA-DM_Work_Group|template^application/vnd.syncml.dm+xml
-person^OMA-DM_Work_Group^Peter_Thompson|template^application/vnd.syncml.dm.notification
-person^OMA-DM_Work_Group|template^application/vnd.syncml.dmddf+wbxml
-person^OMA-DM_Work_Group|template^application/vnd.syncml.dmddf+xml
-person^OMA-DM_Work_Group|template^application/vnd.syncml.dmtnds+wbxml
-person^OMA-DM_Work_Group|template^application/vnd.syncml.dmtnds+xml
-person^OMA_Data_Synchronization_Working_Group|template^application/vnd.syncml.ds.notification
-person^Daniel_Shelton|template^application/vnd.tao.intent-module-archive
-person^Glen_Turner^Guy_Harris|template^application/vnd.tcpdump.pcap
-person^Alex_Sibilev|template^application/vnd.tmd.mediaflex.api+xml
-person^Nicolas_Helin|template^application/vnd.tmobile-livetv
-person^Frank_Cusack|template^application/vnd.trid.tpt
-person^Steven_Simonoff|template^application/vnd.triscape.mxs
-person^J._Scott_Hepler|template^application/vnd.trueapp
-person^Brad_Chase|template^application/vnd.truedoc
-person^Martin_Talbot|template^application/vnd.ubisoft.webplayer
-person^Dave_Manning|template^application/vnd.ufdl
-person^Tim_Ocock|template^application/vnd.uiq.theme
-person^Jamie_Riden|template^application/vnd.umajin
-person^Unity3d|template^application/vnd.unity
-person^Arne_Gerdes|template^application/vnd.uoml+xml
-person^Bruce_Martin|template^application/vnd.uplanet.alert
-person^Bruce_Martin|template^application/vnd.uplanet.alert-wbxml
-person^Bruce_Martin|template^application/vnd.uplanet.bearer-choice
-person^Bruce_Martin|template^application/vnd.uplanet.bearer-choice-wbxml
-person^Bruce_Martin|template^application/vnd.uplanet.cacheop
-person^Bruce_Martin|template^application/vnd.uplanet.cacheop-wbxml
-person^Bruce_Martin|template^application/vnd.uplanet.channel
-person^Bruce_Martin|template^application/vnd.uplanet.channel-wbxml
-person^Bruce_Martin|template^application/vnd.uplanet.list
-person^Bruce_Martin|template^application/vnd.uplanet.list-wbxml
-person^Bruce_Martin|template^application/vnd.uplanet.listcmd
-person^Bruce_Martin|template^application/vnd.uplanet.listcmd-wbxml
-person^Bruce_Martin|template^application/vnd.uplanet.signal
-person^Sebastian_Baer|template^application/vnd.uri-map
-person^Henrik_Andersson|template^application/vnd.valve.source.material
-person^Taisuke_Sugimoto|template^application/vnd.vcx
-person^Luc_Rogge|template^application/vnd.vd-study
-person^Biplab_Sarkar^Lyndsey_Ferguson|template^application/vnd.vectorworks
-person^Petr_Peterka|template^application/vnd.verimatrix.vcas
-person^Robert_Hess|template^application/vnd.vidsoft.vidconference
-person^Troy_Sandal|template^application/vnd.visio
-person^Gayatri_Aravindakumar|template^application/vnd.visionary
-person^Mark_Risher|template^application/vnd.vividence.scriptfile
-person^Delton_Rowe|template^application/vnd.vsf
-person^WAP-Forum|template^application/vnd.wap.sic
-person^WAP-Forum|template^application/vnd.wap-slc
-person^Peter_Stark|template^application/vnd.wap-wbxml
-person^Peter_Stark|template^application/vnd-wap-wmlc
-person^Peter_Stark|template^application/vnd.wap.wmlscriptc
-person^Yaser_Rehem|template^application/vnd.webturbo
-person^Mick_Conley|template^application/vnd.wfa.p2p
-person^Wi-Fi_Alliance|template^application/vnd.wfa.wsc
-person^Priya_Dandawate|template^application/vnd.windows.devicepairing
-person^Thomas_Kjornes|template^application/vnd.wmc
-person^Prakash_Iyer^Thinh_Nguyenphu|template^application/vnd.wmf.bootstrap
-person^Wolfram|template^application/vnd.wolfram.mathematica
-person^Wolfram|template^application/vnd.wolfram.mathematica.package
-person^Wolfram|template^application/vnd.wolfram.player
-person^Kim_Scarborough|template^application/vnd.wordperfect
-person^Jan_Bostrom|template^application/vnd.wqd
-person^Chris_Bartram|template^application/vnd.wrq-hp3000-labelled
-person^Bill_Wohler|template^application/vnd.wt.stf
-person^Matti_Salmi|template^application/vnd.wv.csp+wbxml
-person^John_Ingi_Ingimundarson|template^application/vnd.wv.csp+xml
-person^John_Ingi_Ingimundarson|template^application/vnd.wv.ssp+xml
-person^David_Brossard|template^application/vnd.xacml+json
-person^David_Matthewman|template^application/vnd.xara
-person^Dave_Manning|template^application/vnd.xfdl
-person^Michael_Mansell|template^application/vnd.xfdl.webform
-person^Fred_Waskiewicz|template^application/vnd.xmi+xml
-person^Reuven_Sherwin|template^application/vnd.xmpie.cpkg
-person^Reuven_Sherwin|template^application/vnd.xmpie.dpkg
-person^Reuven_Sherwin|template^application/vnd.xmpie.plan
-person^Reuven_Sherwin|template^application/vnd.xmpie.ppkg
-person^Reuven_Sherwin|template^application/vnd.xmpie.xlim
-person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-dic
-person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-script
-person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-voice
-person^Mark_Olleson|template^application/vnd.yamaha.openscoreformat
-person^Mark_Olleson|template^application/vnd.yamaha.openscoreformat.osfpvg+xml
-person^Takehiro_Sukizaki|template^application/vnd.yamaha.remote-setup
-person^Keiichi_Shinoda|template^application/vnd.yamaha.smaf-audio
-person^Keiichi_Shinoda|template^application/vnd.yamaha.smaf-phrase
-person^Takehiro_Sukizaki|template^application/vnd.yamaha.through-ngn
-person^Takehiro_Sukizaki|template^application/vnd.yamaha.tunnel-udpencap
-person^Jens_Jorgensen|template^application/vnd.yaoweme
-person^Mr._Yellow|template^application/vnd.yellowriver-custom-menu
-person^Rene_Grothmann|template^application/vnd.zul
-person^Micheal_Hewett|template^application/vnd.zzazz.deck+xml
-rfc^rfc4267|template^application/voicexml+xml
-rfc^rfc6035|template^application/vq-rtcpxr
-rfc^rfc3858|template^application/watcherinfo+xml
-rfc^rfc2957|template^application/whoispp-query
-rfc^rfc2958|template^application/whoispp-response
-person^Steven_Pemberton^W3C|uri^http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw
--
-person^Larry_Campbell|template^application/wita
--
--
-person^Paul_Lindner|template^application/wordperfect5.1
--
--
-person^W3C|template^application/wsdl+xml
-person^W3C|template^application/wspolicy+xml
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-person^Robin_Berjon^W3C|template^application/x-www-form-urlencoded
--
--
--
--
--
--
-rfc^rfc1494|template^application/x400-bp
--
-rfc^rfc7061|template^application/xacml+xml
--
-rfc^rfc4825|template^application/xcap-att+xml
-rfc^rfc4825|template^application/xcap-caps+xml
-rfc^rfc5874|template^application/xcap-diff+xml
-rfc^rfc4825|template^application/xcap-el+xml
-rfc^rfc4825|template^application/xcap-error+xml
-rfc^rfc4825|template^application/xcap-ns+xml
-rfc^rfc6502|template^application/xcon-conference-info+xml
-rfc^rfc6502|template^application/xcon-conference-info-diff+xml
-person^Joseph_Reagle^XENC_Working_Group|template^application/xenc+xml
-person^Robin_Berjon^W3C|template^application/xhtml+xml
-draft^draft-mccobb-xplusv-media-type|notes^- OBSOLETE; no replacement given|template^application/xhtml-voice+xml
-rfc^rfc7303|template^application/xml
-rfc^rfc7303|template^application/xml-dtd
-rfc^rfc7303|template^application/xml-external-parsed-entity
-rfc^rfc7351|template^application/xml-patch+xml
-rfc^rfc3923|template^application/xmpp+xml
-person^Mark_Nottingham|template^application/xop+xml
--
-person^W3C|uri^http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration
--
-rfc^rfc4374|template^application/xv+xml
-rfc^rfc6020|template^application/yang
-rfc^rfc6020|template^application/yin+xml
-person^Paul_Lindner|template^application/zip
-rfc^rfc6713|template^application/zlib
-rfc^rfc6015|template^audio/1d-interleaved-parityfec
-rfc^rfc2421^rfc3802|template^audio/32kadpcm
-rfc^rfc3839^rfc6381|template^audio/3gpp
-rfc^rfc4393^rfc6381|template^audio/3gpp2
-rfc^rfc4184|template^audio/ac3
--
-rfc^rfc4867|template^audio/AMR
-rfc^rfc4867|template^audio/AMR-WB
-rfc^rfc4352|template^audio/amr-wb+
-rfc^rfc7310|template^audio/aptx
-rfc^rfc6295|template^audio/asc
-rfc^rfc5584|template^audio/ATRAC-ADVANCED-LOSSLESS
-rfc^rfc5584|template^audio/ATRAC-X
-rfc^rfc5584|template^audio/ATRAC3
-rfc^rfc2045^rfc2046|template^audio/basic
-rfc^rfc4298|template^audio/BV16
-rfc^rfc4298|template^audio/BV32
-rfc^rfc4040|template^audio/clearmode
-rfc^rfc3389|template^audio/CN
-rfc^rfc3190|template^audio/DAT12
-rfc^rfc4613|template^audio/dls
-rfc^rfc3557|template^audio/dsr-es201108
-rfc^rfc4060|template^audio/dsr-es202050
-rfc^rfc4060|template^audio/dsr-es202211
-rfc^rfc4060|template^audio/dsr-es202212
-rfc^rfc6469|template^audio/DV
-rfc^rfc4856|template^audio/DVI4
-rfc^rfc4598|template^audio/eac3
-rfc^rfc6849|template^audio/encaprtp
-rfc^rfc4788|template^audio/EVRC
-rfc^rfc3625|template^audio/EVRC-QCP
-rfc^rfc4788|template^audio/EVRC0
-rfc^rfc4788|template^audio/EVRC1
-rfc^rfc5188|template^audio/EVRCB
-rfc^rfc5188|template^audio/EVRCB0
-rfc^rfc4788|template^audio/EVRCB1
-rfc^rfc6884|template^audio/EVRCNW
-rfc^rfc6884|template^audio/EVRCNW0
-rfc^rfc6884|template^audio/EVRCNW1
-rfc^rfc5188|template^audio/EVRCWB
-rfc^rfc5188|template^audio/EVRCWB0
-rfc^rfc5188|template^audio/EVRCWB1
-rfc^rfc4735|template^audio/example
-rfc^rfc6354|template^audio/fwdred
-draft^RFC-ietf-payload-g7110-06|template^audio/G711-0
-rfc^rfc5404|rfc-errata^3245|template^audio/G719
-rfc^rfc4856|template^audio/G722
-rfc^rfc5577|template^audio/G7221
-rfc^rfc4856|template^audio/G723
-rfc^rfc4856|template^audio/G726-16
-rfc^rfc4856|template^audio/G726-24
-rfc^rfc4856|template^audio/G726-32
-rfc^rfc4856|template^audio/G726-40
-rfc^rfc4856|template^audio/G728
-rfc^rfc4856|template^audio/G729
-rfc^rfc4749^rfc5459
-rfc^rfc4856|template^audio/G729D
-rfc^rfc4856|template^audio/G729E
-rfc^rfc4856|template^audio/GSM
-rfc^rfc4856|template^audio/GSM-EFR
-rfc^rfc5993|template^audio/GSM-HR-08
-rfc^rfc3952|template^audio/iLBC
-rfc^rfc6262|template^audio/ip-mr_v2.5
-rfc^rfc4856|template^audio/L16
-rfc^rfc3190|template^audio/L20
-rfc^rfc3190|template^audio/L24
-rfc^rfc4856|template^audio/L8
-rfc^rfc4856|template^audio/LPC
--
-rfc^rfc4723|template^audio/mobile-xmf
-rfc^rfc4337^rfc6381|template^audio/mp4
-rfc^rfc6416|template^audio/MP4A-LATM
-rfc^rfc3555|template^audio/MPA
-rfc^rfc5219|template^audio/mpa-robust
-rfc^rfc3003|template^audio/mpeg
-rfc^rfc3640^rfc5691^rfc6295|template^audio/mpeg4-generic
-rfc^rfc5334|template^audio/ogg
-rfc^rfc7587|template^audio/opus
-rfc^rfc5109
-rfc^rfc4856|template^audio/PCMA
-rfc^rfc5391|template^audio/PCMA-WB
-rfc^rfc4856|template^audio/PCMU
-rfc^rfc5391|template^audio/PCMU-WB
-person^Linus_Walleij|template^audio/prs.sid
-rfc^rfc3555^rfc3625
-rfc^rfc6682|template^audio/raptorfec
-rfc^rfc3555|template^audio/RED
-person^ThreeGPP|template^audio/rtp-enc-aescm128
-rfc^rfc6295|template^audio/rtp-midi
-rfc^rfc6849|template^audio/rtploopback
-rfc^rfc4588|template^audio/rtx
--
--
-rfc^rfc3558|template^audio/SMV
-rfc^rfc3625|template^audio/SMV-QCP
-rfc^rfc3558|template^audio/SMV0
-person^Timo_Kosonen^Tom_White|template^audio/sp-midi
-rfc^rfc5574|template^audio/speex
-rfc^rfc4351|template^audio/t140c
-rfc^rfc4612|template^audio/t38
-rfc^rfc4733|template^audio/telephone-event
-rfc^rfc4733|template^audio/tone
-rfc^rfc5686|template^audio/UEMCLIP
-rfc^rfc5109|template^audio/ulpfec
-rfc^rfc4856|template^audio/VDVI
-rfc^rfc4348^rfc4424|template^audio/VMR-WB
-person^Thomas_Belling|template^audio/vnd.3gpp.iufp
-person^Serge_De_Jaham|template^audio/vnd.4SB
-person^Vicki_DeBarros|template^audio/vnd.audiokoz
-person^Serge_De_Jaham|template^audio/vnd.CELP
-person^Rajesh_Kumar|template^audio/vnd.cisco.nse
-person^Jean-Philippe_Goulet|template^audio/vnd.cmles.radio-events
-person^Ann_McLaughlin|template^audio/vnd.cns.anp1
-person^Ann_McLaughlin|template^audio/vnd.cns.inf1
-person^Michael_A_Dolan|template^audio/vnd.dece.audio
-person^Armands_Strazds|template^audio/vnd.digital-winds
-person^Edwin_Heredia|template^audio/vnd.dlna.adts
-person^Steve_Hattersley|template^audio/vnd.dolby.heaac.1
-person^Steve_Hattersley|template^audio/vnd.dolby.heaac.2
-person^Mike_Ward|template^audio/vnd.dolby.mlp
-person^Steve_Hattersley|template^audio/vnd.dolby.mps
-person^Steve_Hattersley|template^audio/vnd.dolby.pl2
-person^Steve_Hattersley|template^audio/vnd.dolby.pl2x
-person^Steve_Hattersley|template^audio/vnd.dolby.pl2z
-person^Steve_Hattersley|template^audio/vnd.dolby.pulse.1
-person^Jiang_Tian|template^audio/vnd.dra
-person^William_Zou|template^audio/vnd.dts
-person^William_Zou|template^audio/vnd.dts.hd
-person^Peter_Siebert|template^audio/vnd.dvb.file
-person^Shay_Cicelsky|template^audio/vnd.everad.plj
-person^Swaminathan|template^audio/vnd.hns.audio
-person^Greg_Vaudreuil|template^audio/vnd.lucent.voice
-person^Steve_DiAcetis|template^audio/vnd.ms-playready.media.pya
-person^Nokia|template^audio/vnd.nokia.mobile-xmf
-person^Glenn_Parsons|template^audio/vnd.nortel.vbk
-person^Michael_Fox|template^audio/vnd.nuera.ecelp4800
-person^Michael_Fox|template^audio/vnd.nuera.ecelp7470
-person^Michael_Fox|template^audio/vnd.nuera.ecelp9600
-person^Greg_Vaudreuil|template^audio/vnd.octel.sbc
-notes^- DEPRECATED in favor of audio/qcelp|rfc^rfc3625|template^audio/vnd.qcelp
-person^Greg_Vaudreuil|template^audio/vnd.rhetorex.32kadpcm
-person^Martin_Dawe|template^audio/vnd.rip
-person^David_Petersen|template^audio/vnd.sealedmedia.softseal-mpeg
-person^Greg_Vaudreuil|template^audio/vnd.vmx.cvsd
-rfc^rfc5215|template^audio/vorbis
-rfc^rfc5215|template^audio/vorbis-config
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-person^Alan_Francis|template^image/cgm
--
-rfc^rfc4735|template^image/example
-rfc^rfc4047|template^image/fits
-rfc^rfc1494|template^image/g3fax
-rfc^rfc2045^rfc2046
-rfc^rfc1314
-rfc^rfc3745|template^image/jp2
-rfc^rfc2045^rfc2046
-rfc^rfc3745|template^image/jpm
-rfc^rfc3745|template^image/jpx
-person^Khronos^Mark_Callow|uri^http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration
-person^Ilya_Ferber|template^image/naplps
--
-person^Glenn_Randers-Pehrson|template^image/png
-person^Ben_Simon|template^image/prs.btif
-person^Juern_Laun|template^image/prs.pti
-person^Michael_Sweet|template^image/pwg-raster
--
-person^W3C|uri^http://www.w3.org/TR/SVG/mimereg.html
-rfc^rfc3362|template^image/t38
--
-rfc^rfc3302|template^image/tiff
-rfc^rfc3950|template^image/tiff-fx
-person^Kim_Scarborough|template^image/vnd.adobe.photoshop
-person^Gary_Clueit|template^image/vnd.airzip.accelerator.azv
-person^Ann_McLaughlin|template^image/vnd.cns.inf2
-person^Michael_A_Dolan|template^image/vnd.dece.graphic
--
-person^Leon_Bottou|template^image/vnd-djvu
-person^Michael_Lagally^Peter_Siebert|template^image/vnd.dvb.subtitle
-person^Jodi_Moline|template^image/vnd.dwg
-person^Jodi_Moline|template^image/vnd.dxf
-person^Scott_Becker|template^image/vnd.fastbidsheet
-person^Marc_Douglas_Spencer|template^image/vnd.fpx
-person^Arild_Fuldseth|template^image/vnd.fst
-person^Masanori_Onda|template^image/vnd.fujixerox.edmics-mmr
-person^Masanori_Onda|template^image/vnd.fujixerox.edmics-rlc
-person^Martin_Bailey|template^image/vnd.globalgraphics.pgb
-person^Simon_Butcher|template^image/vnd.microsoft.icon
-person^Saveen_Reddy|template^image/vnd.mix
-person^Stuart_Parmenter|template^image/vnd.mozilla.apng
-person^Gregory_Vaughan|template^image/vnd.ms-modi
--
-person^Marc_Douglas_Spencer|template^image/vnd.net-fpx
--
-person^Greg_Ward^Randolph_Fritz|template^image/vnd.radiance
-person^David_Petersen|template^image/vnd.sealed-png
-person^David_Petersen|template^image/vnd.sealedmedia.softseal-gif
-person^David_Petersen|template^image/vnd.sealedmedia.softseal-jpg
-person^Jodi_Moline|template^image/vnd-svf
-person^Ni_Hui|template^image/vnd.tencent.tap
-person^Henrik_Andersson|template^image/vnd.valve.source.texture
-person^Peter_Stark|template^image/vnd-wap-wbmp
-person^Steven_Martin|template^image/vnd.xiff
-person^Chris_Charabaruk|template^image/vnd.zbrush.pcx
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-rfc^rfc3862|template^message/CPIM
-rfc^rfc1894|template^message/delivery-status
-rfc^rfc3798|template^message/disposition-notification
-rfc^rfc4735|template^message/example
-rfc^rfc2045^rfc2046
-rfc^rfc5965|template^message/feedback-report
-rfc^rfc6532|template^message/global
-rfc^rfc6533|template^message/global-delivery-status
-rfc^rfc6533|template^message/global-disposition-notification
-rfc^rfc6533|template^message/global-headers
-rfc^rfc7230|template^message/http
-rfc^rfc5438|template^message/imdn+xml
-notes^- OBSOLETED by RFC5537|person^Henry_Spencer|rfc^rfc5537|template^message/news
-rfc^rfc2045^rfc2046
-rfc^rfc2045^rfc2046
-rfc^rfc2660|template^message/s-http
-rfc^rfc3261|template^message/sip
-rfc^rfc3420|template^message/sipfrag
-rfc^rfc3886|template^message/tracking-status
-notes^- OBSOLETED by request|person^Nicholas_Parks_Young|template^message/vnd.si.simp
-person^Mick_Conley|template^message/vnd.wfa.wsc
-rfc^rfc4735|template^model/example
-person^Curtis_Parks|template^model/iges
-rfc^rfc2077
-person^James_Riordon|template^model/vnd.collada+xml
-person^Jason_Pratt|template^model/vnd-dwf
-person^Michael_Powers|template^model/vnd.flatland.3dml
-person^Attila_Babits|template^model/vnd.gdl
-person^Attila_Babits|template^model/vnd.gs-gdl
-person^Yutaka_Ozaki|template^model/vnd.gtw
-person^Christopher_Brooks|template^model/vnd.moml+xml
-person^Boris_Rabinovitch|template^model/vnd.mts
-person^Eric_Lengyel|template^model/vnd.opengex
-person^Parasolid|template^model/vnd.parasolid.transmit-binary
-person^Parasolid|template^model/vnd.parasolid.transmit-text
-person^Henrik_Andersson|template^model/vnd.valve.source.compiled-map
-person^Boris_Rabinovitch|template^model/vnd.vtu
-rfc^rfc2077
--
-person^Web3D_X3D|template^model/x3d+fastinfoset
--
-person^Web3D^Web3D_X3D|template^model/x3d+xml
-person^Web3D^Web3D_X3D|template^model/x3d-vrml
-rfc^rfc2045^rfc2046
-person^Patrik_Faltstrom|template^multipart/appledouble
-rfc^rfc7233|template^multipart/byteranges
-rfc^rfc2045^rfc2046
-rfc^rfc1847|template^multipart/encrypted
-rfc^rfc4735|template^multipart/example
-rfc^rfc7578|template^multipart/form-data
-person^Dave_Crocker|template^multipart/header-set
-rfc^rfc2045^rfc2046
-rfc^rfc2045^rfc2046
-rfc^rfc2387|template^multipart/related
-rfc^rfc6522|template^multipart/report
-rfc^rfc1847|template^multipart/signed
-rfc^rfc2421^rfc2423|template^multipart/voice-message
--
-person^Robin_Berjon^W3C|template^multipart/x-mixed-replace
--
--
--
--
--
-rfc^rfc6015|template^text/1d-interleaved-parityfec
-person^Robin_Berjon^W3C|template^text/cache-manifest
-rfc^rfc5545|template^text/calendar
--
-rfc^rfc2318|template^text/css
-rfc^rfc4180^rfc7111|template^text/csv
-person^David_Underdown^National_Archives_UK|template^text/csv-schema
-notes^- DEPRECATED by RFC6350|rfc^rfc2425^rfc6350|template^text/directory
-rfc^rfc4027|template^text/dns
-notes^- OBSOLETED in favor of application/ecmascript|rfc^rfc4329|template^text/ecmascript
-rfc^rfc6849|template^text/encaprtp
-rfc^rfc1896
-rfc^rfc4735|template^text/example
-rfc^rfc6354|template^text/fwdred
-rfc^rfc6787|template^text/grammar-ref-list
-person^Robin_Berjon^W3C|template^text/html
-notes^- OBSOLETED in favor of application/javascript|rfc^rfc4329|template^text/javascript
-person^Peeter_Piegaze|template^text/jcr-cnd
-draft^draft-ietf-appsawg-text-markdown|notes^(TEMPORARY - registered 2014-11-11, expires 2015-11-11)|template^text/markdown
-person^Jesse_Alama|template^text/mizar
-person^Eric_Prudhommeaux^W3C|template^text/n3
-draft^RFC-ietf-mmusic-rfc2326bis-40|template^text/parameters
-rfc^rfc5109
-rfc^rfc2046^rfc3676^rfc5147
-person^Ivan_Herman^W3C|template^text/provenance-notation
-person^Benja_Fallenstein|template^text/prs.fallenstein.rst
-person^John_Lines|template^text/prs.lines.tag
-rfc^rfc6682|template^text/raptorfec
-rfc^rfc4102|template^text/RED
-rfc^rfc6522|template^text/rfc822-headers
-rfc^rfc2045^rfc2046
-person^Paul_Lindner|template^text/rtf
-person^ThreeGPP|template^text/rtp-enc-aescm128
-rfc^rfc6849|template^text/rtploopback
-rfc^rfc4588|template^text/rtx
-rfc^rfc1874|template^text/SGML
-rfc^rfc4103|template^text/t140
-person^Paul_Lindner|template^text/tab-separated-values
-rfc^rfc4263|template^text/troff
-person^Eric_Prudhommeaux^W3C|template^text/turtle
-rfc^rfc5109|template^text/ulpfec
-rfc^rfc2483|template^text/uri-list
-rfc^rfc6350|template^text/vcard
-person^Regis_Dehoux|template^text/vnd-a
-person^Steve_Allen|template^text/vnd.abc
-person^Robert_Byrnes|template^text/vnd-curl
--
--
--
-person^Charles_Plessy|template^text/vnd.debian.copyright
-person^Dan_Bradley|template^text/vnd.DMClientScript
-person^Michael_Lagally^Peter_Siebert|template^text/vnd.dvb.subtitle
-person^Stefan_Eilemann|template^text/vnd.esmertec.theme-descriptor
--
-person^John-Mark_Gurney|template^text/vnd.fly
-person^Kari_E._Hurtta|template^text/vnd.fmi.flexstor
-person^John_Ellson|template^text/vnd.graphviz
-person^Michael_Powers|template^text/vnd.in3d.3dml
-person^Michael_Powers|template^text/vnd.in3d.spot
-person^IPTC|template^text/vnd.IPTC.NewsML
-person^IPTC|template^text/vnd.IPTC.NITF
-person^Mikusiak_Lubos|template^text/vnd.latex-z
-person^Mark_Patton|template^text/vnd.motorola.reflex
-person^Jan_Nelson|template^text/vnd.ms-mediapackage
-person^Feiyu_Xie|template^text/vnd.net2phone.commcenter.command
-rfc^rfc5707|template^text/vnd.radisys.msml-basic-layout
-notes^- OBSOLETED by request|person^Nicholas_Parks_Young|template^text/vnd.si.uricatalogue
-person^Gary_Adams|template^text/vnd.sun.j2me.app-descriptor
-person^David_Lee_Lambert|template^text/vnd.trolltech.linguist
-person^WAP-Forum|template^text/vnd.wap.si
-person^WAP-Forum|template^text/vnd.wap.sl
-person^Peter_Stark|template^text/vnd.wap-wml
-person^Peter_Stark|template^text/vnd.wap.wmlscript
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
-rfc^rfc7303|template^text/xml
-rfc^rfc7303|template^text/xml-external-parsed-entity
-rfc^rfc6015|template^video/1d-interleaved-parityfec
-rfc^rfc3839^rfc6381|template^video/3gpp
-rfc^rfc4396|template^video/3gpp-tt
-rfc^rfc4393^rfc6381|template^video/3gpp2
-rfc^rfc3555|template^video/BMPEG
-rfc^rfc3555|template^video/BT656
-rfc^rfc3555|template^video/CelB
--
-rfc^rfc6469|template^video/DV
-rfc^rfc6849|template^video/encaprtp
-rfc^rfc4735|template^video/example
--
-rfc^rfc4587|template^video/H261
-rfc^rfc3555|template^video/H263
-rfc^rfc4629|template^video/H263-1998
-rfc^rfc4629|template^video/H263-2000
-rfc^rfc6184|template^video/H264
-rfc^rfc6185|template^video/H264-RCDO
-rfc^rfc6190|template^video/H264-SVC
-person^David_Singer^ISO-IEC_JTC1|template^video/iso.segment
-rfc^rfc3555|template^video/JPEG
-rfc^rfc5371^rfc5372|template^video/jpeg2000
--
-rfc^rfc3745|template^video/mj2
-rfc^rfc3555|template^video/MP1S
-rfc^rfc3555|template^video/MP2P
-rfc^rfc3555|template^video/MP2T
-rfc^rfc4337^rfc6381|template^video/mp4
-rfc^rfc6416|template^video/MP4V-ES
-rfc^rfc2045^rfc2046
-rfc^rfc3640|template^video/mpeg4-generic
-rfc^rfc3555|template^video/MPV
-rfc^rfc4856|template^video/nv
-rfc^rfc5334|template^video/ogg
-rfc^rfc5109
-rfc^rfc2862|template^video/pointer
-person^Paul_Lindner|rfc^rfc6381|template^video/quicktime
-rfc^rfc6682|template^video/raptorfec
-rfc^rfc4175
-person^ThreeGPP|template^video/rtp-enc-aescm128
-rfc^rfc6849|template^video/rtploopback
-rfc^rfc4588|template^video/rtx
-rfc^rfc3497|template^video/SMPTE292M
-rfc^rfc5109|template^video/ulpfec
-rfc^rfc4425|template^video/vc1
-person^Frank_Rottmann|template^video/vnd.CCTV
-person^Michael_A_Dolan|template^video/vnd.dece.hd
-person^Michael_A_Dolan|template^video/vnd.dece.mobile
-person^Michael_A_Dolan|template^video/vnd.dece-mp4
-person^Michael_A_Dolan|template^video/vnd.dece.pd
-person^Michael_A_Dolan|template^video/vnd.dece.sd
-person^Michael_A_Dolan|template^video/vnd.dece.video
-person^Nathan_Zerbe|template^video/vnd.directv-mpeg
-person^Nathan_Zerbe|template^video/vnd.directv.mpeg-tts
-person^Edwin_Heredia|template^video/vnd.dlna.mpeg-tts
-person^Kevin_Murray^Peter_Siebert|template^video/vnd.dvb.file
-person^Arild_Fuldseth|template^video/vnd.fvt
-person^Swaminathan|template^video/vnd.hns.video
-person^Shuji_Nakamura|template^video/vnd.iptvforum.1dparityfec-1010
-person^Shuji_Nakamura|template^video/vnd.iptvforum.1dparityfec-2005
-person^Shuji_Nakamura|template^video/vnd.iptvforum.2dparityfec-1010
-person^Shuji_Nakamura|template^video/vnd.iptvforum.2dparityfec-2005
-person^Shuji_Nakamura|template^video/vnd.iptvforum.ttsavc
-person^Shuji_Nakamura|template^video/vnd.iptvforum.ttsmpeg2
-person^Tom_McGinty|template^video/vnd.motorola.video
-person^Tom_McGinty|template^video/vnd.motorola.videop
-person^Heiko_Recktenwald|template^video/vnd-mpegurl
-person^Steve_DiAcetis|template^video/vnd.ms-playready.media.pyv
-person^Petteri_Kangaslampi|template^video/vnd.nokia.interleaved-multimedia
-person^Nokia|template^video/vnd.nokia.videovoip
-person^John_Clark|template^video/vnd.objectvideo
-person^Henrik_Andersson|template^video/vnd.radgamettools.bink
-person^Henrik_Andersson|template^video/vnd.radgamettools.smacker
-person^David_Petersen|template^video/vnd.sealed.mpeg1
-person^David_Petersen|template^video/vnd.sealed.mpeg4
-person^David_Petersen|template^video/vnd.sealed-swf
-person^David_Petersen|template^video/vnd.sealedmedia.softseal-mov
-person^Michael_A_Dolan|template^video/vnd.uvvu-mp4
-person^John_Wolfe|template^video/vnd-vivo
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
diff --git a/docs/COPYING.txt b/docs/COPYING.txt
deleted file mode 100644
index beb91b9..0000000
--- a/docs/COPYING.txt
+++ /dev/null
@@ -1,339 +0,0 @@
-= GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The licenses for most software are designed to take away your
- freedom to share and change it. By contrast, the GNU General Public
- License is intended to guarantee your freedom to share and change free
- software--to make sure the software is free for all its users. This
- General Public License applies to most of the Free Software
- Foundation's software and to any other program whose authors commit to
- using it. (Some other Free Software Foundation software is covered by
- the GNU Lesser General Public License instead.) You can apply it to
- your programs, too.
-
- When we speak of free software, we are referring to freedom, not
- price. Our General Public Licenses are designed to make sure that you
- have the freedom to distribute copies of free software (and charge for
- this service if you wish), that you receive source code or can get it
- if you want it, that you can change the software or use pieces of it
- in new free programs; and that you know you can do these things.
-
- To protect your rights, we need to make restrictions that forbid
- anyone to deny you these rights or to ask you to surrender the rights.
- These restrictions translate to certain responsibilities for you if you
- distribute copies of the software, or if you modify it.
-
- For example, if you distribute copies of such a program, whether
- gratis or for a fee, you must give the recipients all the rights that
- you have. You must make sure that they, too, receive or can get the
- source code. And you must show them these terms so they know their
- rights.
-
- We protect your rights with two steps: (1) copyright the software, and
- (2) offer you this license which gives you legal permission to copy,
- distribute and/or modify the software.
-
- Also, for each author's protection and ours, we want to make certain
- that everyone understands that there is no warranty for this free
- software. If the software is modified by someone else and passed on, we
- want its recipients to know that what they have is not the original, so
- that any problems introduced by others will not reflect on the original
- authors' reputations.
-
- Finally, any free program is threatened constantly by software
- patents. We wish to avoid the danger that redistributors of a free
- program will individually obtain patent licenses, in effect making the
- program proprietary. To prevent this, we have made it clear that any
- patent must be licensed for everyone's free use or not licensed at all.
-
- The precise terms and conditions for copying, distribution and
- modification follow.
-
- GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. This License applies to any program or other work which contains
- a notice placed by the copyright holder saying it may be distributed
- under the terms of this General Public License. The "Program", below,
- refers to any such program or work, and a "work based on the Program"
- means either the Program or any derivative work under copyright law:
- that is to say, a work containing the Program or a portion of it,
- either verbatim or with modifications and/or translated into another
- language. (Hereinafter, translation is included without limitation in
- the term "modification".) Each licensee is addressed as "you".
-
- Activities other than copying, distribution and modification are not
- covered by this License; they are outside its scope. The act of
- running the Program is not restricted, and the output from the Program
- is covered only if its contents constitute a work based on the
- Program (independent of having been made by running the Program).
- Whether that is true depends on what the Program does.
-
- 1. You may copy and distribute verbatim copies of the Program's
- source code as you receive it, in any medium, provided that you
- conspicuously and appropriately publish on each copy an appropriate
- copyright notice and disclaimer of warranty; keep intact all the
- notices that refer to this License and to the absence of any warranty;
- and give any other recipients of the Program a copy of this License
- along with the Program.
-
- You may charge a fee for the physical act of transferring a copy, and
- you may at your option offer warranty protection in exchange for a fee.
-
- 2. You may modify your copy or copies of the Program or any portion
- of it, thus forming a work based on the Program, and copy and
- distribute such modifications or work under the terms of Section 1
- above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-
- These requirements apply to the modified work as a whole. If
- identifiable sections of that work are not derived from the Program,
- and can be reasonably considered independent and separate works in
- themselves, then this License, and its terms, do not apply to those
- sections when you distribute them as separate works. But when you
- distribute the same sections as part of a whole which is a work based
- on the Program, the distribution of the whole must be on the terms of
- this License, whose permissions for other licensees extend to the
- entire whole, and thus to each and every part regardless of who wrote it.
-
- Thus, it is not the intent of this section to claim rights or contest
- your rights to work written entirely by you; rather, the intent is to
- exercise the right to control the distribution of derivative or
- collective works based on the Program.
-
- In addition, mere aggregation of another work not based on the Program
- with the Program (or with a work based on the Program) on a volume of
- a storage or distribution medium does not bring the other work under
- the scope of this License.
-
- 3. You may copy and distribute the Program (or a work based on it,
- under Section 2) in object code or executable form under the terms of
- Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
- The source code for a work means the preferred form of the work for
- making modifications to it. For an executable work, complete source
- code means all the source code for all modules it contains, plus any
- associated interface definition files, plus the scripts used to
- control compilation and installation of the executable. However, as a
- special exception, the source code distributed need not include
- anything that is normally distributed (in either source or binary
- form) with the major components (compiler, kernel, and so on) of the
- operating system on which the executable runs, unless that component
- itself accompanies the executable.
-
- If distribution of executable or object code is made by offering
- access to copy from a designated place, then offering equivalent
- access to copy the source code from the same place counts as
- distribution of the source code, even though third parties are not
- compelled to copy the source along with the object code.
-
- 4. You may not copy, modify, sublicense, or distribute the Program
- except as expressly provided under this License. Any attempt
- otherwise to copy, modify, sublicense or distribute the Program is
- void, and will automatically terminate your rights under this License.
- However, parties who have received copies, or rights, from you under
- this License will not have their licenses terminated so long as such
- parties remain in full compliance.
-
- 5. You are not required to accept this License, since you have not
- signed it. However, nothing else grants you permission to modify or
- distribute the Program or its derivative works. These actions are
- prohibited by law if you do not accept this License. Therefore, by
- modifying or distributing the Program (or any work based on the
- Program), you indicate your acceptance of this License to do so, and
- all its terms and conditions for copying, distributing or modifying
- the Program or works based on it.
-
- 6. Each time you redistribute the Program (or any work based on the
- Program), the recipient automatically receives a license from the
- original licensor to copy, distribute or modify the Program subject to
- these terms and conditions. You may not impose any further
- restrictions on the recipients' exercise of the rights granted herein.
- You are not responsible for enforcing compliance by third parties to
- this License.
-
- 7. If, as a consequence of a court judgment or allegation of patent
- infringement or for any other reason (not limited to patent issues),
- conditions are imposed on you (whether by court order, agreement or
- otherwise) that contradict the conditions of this License, they do not
- excuse you from the conditions of this License. If you cannot
- distribute so as to satisfy simultaneously your obligations under this
- License and any other pertinent obligations, then as a consequence you
- may not distribute the Program at all. For example, if a patent
- license would not permit royalty-free redistribution of the Program by
- all those who receive copies directly or indirectly through you, then
- the only way you could satisfy both it and this License would be to
- refrain entirely from distribution of the Program.
-
- If any portion of this section is held invalid or unenforceable under
- any particular circumstance, the balance of the section is intended to
- apply and the section as a whole is intended to apply in other
- circumstances.
-
- It is not the purpose of this section to induce you to infringe any
- patents or other property right claims or to contest validity of any
- such claims; this section has the sole purpose of protecting the
- integrity of the free software distribution system, which is
- implemented by public license practices. Many people have made
- generous contributions to the wide range of software distributed
- through that system in reliance on consistent application of that
- system; it is up to the author/donor to decide if he or she is willing
- to distribute software through any other system and a licensee cannot
- impose that choice.
-
- This section is intended to make thoroughly clear what is believed to
- be a consequence of the rest of this License.
-
- 8. If the distribution and/or use of the Program is restricted in
- certain countries either by patents or by copyrighted interfaces, the
- original copyright holder who places the Program under this License
- may add an explicit geographical distribution limitation excluding
- those countries, so that distribution is permitted only in or among
- countries not thus excluded. In such case, this License incorporates
- the limitation as if written in the body of this License.
-
- 9. The Free Software Foundation may publish revised and/or new versions
- of the General Public License from time to time. Such new versions will
- be similar in spirit to the present version, but may differ in detail to
- address new problems or concerns.
-
- Each version is given a distinguishing version number. If the Program
- specifies a version number of this License which applies to it and "any
- later version", you have the option of following the terms and conditions
- either of that version or of any later version published by the Free
- Software Foundation. If the Program does not specify a version number of
- this License, you may choose any version ever published by the Free Software
- Foundation.
-
- 10. If you wish to incorporate parts of the Program into other free
- programs whose distribution conditions are different, write to the author
- to ask for permission. For software which is copyrighted by the Free
- Software Foundation, write to the Free Software Foundation; we sometimes
- make exceptions for this. Our decision will be guided by the two goals
- of preserving the free status of all derivatives of our free software and
- of promoting the sharing and reuse of software generally.
-
- NO WARRANTY
-
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
- REPAIR OR CORRECTION.
-
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGES.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
- possible use to the public, the best way to achieve this is to make it
- free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
- to attach them to the start of each source file to most effectively
- convey the exclusion of warranty; and each file should have at least
- the "copyright" line and a pointer to where the full notice is found.
-
- <one line to give the program's name and a brief idea of what it does.>
- Copyright (C) <year> <name of author>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
- Also add information on how to contact you by electronic and paper mail.
-
- If the program is interactive, make it output a short notice like this
- when it starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
- The hypothetical commands `show w' and `show c' should show the appropriate
- parts of the General Public License. Of course, the commands you use may
- be called something other than `show w' and `show c'; they could even be
- mouse-clicks or menu items--whatever suits your program.
-
- You should also get your employer (if you work as a programmer) or your
- school, if any, to sign a "copyright disclaimer" for the program, if
- necessary. Here is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- <signature of Ty Coon>, 1 April 1989
- Ty Coon, President of Vice
-
- This General Public License does not permit incorporating your program into
- proprietary programs. If your program is a subroutine library, you may
- consider it more useful to permit linking proprietary applications with the
- library. If this is what you want to do, use the GNU Lesser General
- Public License instead of this License.
diff --git a/docs/artistic.txt b/docs/artistic.txt
deleted file mode 100644
index 20ce614..0000000
--- a/docs/artistic.txt
+++ /dev/null
@@ -1,127 +0,0 @@
-= The "Artistic License"
-
- Preamble
-
- The intent of this document is to state the conditions under which a
- Package may be copied, such that the Copyright Holder maintains some
- semblance of artistic control over the development of the package,
- while giving the users of the package the right to use and distribute
- the Package in a more-or-less customary fashion, plus the right to make
- reasonable modifications.
-
- Definitions:
-
- "Package" refers to the collection of files distributed by the
- Copyright Holder, and derivatives of that collection of files
- created through textual modification.
-
- "Standard Version" refers to such a Package if it has not been
- modified, or has been modified in accordance with the wishes
- of the Copyright Holder as specified below.
-
- "Copyright Holder" is whoever is named in the copyright or
- copyrights for the package.
-
- "You" is you, if you're thinking about copying or distributing
- this Package.
-
- "Reasonable copying fee" is whatever you can justify on the
- basis of media cost, duplication charges, time of people involved,
- and so on. (You will not be required to justify it to the
- Copyright Holder, but only to the computing community at large
- as a market that must bear the fee.)
-
- "Freely Available" means that no fee is charged for the item
- itself, though there may be fees involved in handling the item.
- It also means that recipients of the item may redistribute it
- under the same conditions they received it.
-
- 1. You may make and give away verbatim copies of the source form of the
- Standard Version of this Package without restriction, provided that you
- duplicate all of the original copyright notices and associated disclaimers.
-
- 2. You may apply bug fixes, portability fixes and other modifications
- derived from the Public Domain or from the Copyright Holder. A Package
- modified in such a way shall still be considered the Standard Version.
-
- 3. You may otherwise modify your copy of this Package in any way, provided
- that you insert a prominent notice in each changed file stating how and
- when you changed that file, and provided that you do at least ONE of the
- following:
-
- a) place your modifications in the Public Domain or otherwise make them
- Freely Available, such as by posting said modifications to Usenet or
- an equivalent medium, or placing the modifications on a major archive
- site such as uunet.uu.net, or by allowing the Copyright Holder to include
- your modifications in the Standard Version of the Package.
-
- b) use the modified Package only within your corporation or organization.
-
- c) rename any non-standard executables so the names do not conflict
- with standard executables, which must also be provided, and provide
- a separate manual page for each non-standard executable that clearly
- documents how it differs from the Standard Version.
-
- d) make other distribution arrangements with the Copyright Holder.
-
- 4. You may distribute the programs of this Package in object code or
- executable form, provided that you do at least ONE of the following:
-
- a) distribute a Standard Version of the executables and library files,
- together with instructions (in the manual page or equivalent) on where
- to get the Standard Version.
-
- b) accompany the distribution with the machine-readable source of
- the Package with your modifications.
-
- c) give non-standard executables non-standard names, and clearly
- document the differences in manual pages (or equivalent), together
- with instructions on where to get the Standard Version.
-
- d) make other distribution arrangements with the Copyright Holder.
-
- 5. You may charge a reasonable copying fee for any distribution of this
- Package. You may charge any fee you choose for support of this
- Package. You may not charge a fee for this Package itself. However,
- you may distribute this Package in aggregate with other (possibly
- commercial) programs as part of a larger (possibly commercial) software
- distribution provided that you do not advertise this Package as a
- product of your own. You may embed this Package's interpreter within
- an executable of yours (by linking); this shall be construed as a mere
- form of aggregation, provided that the complete Standard Version of the
- interpreter is so embedded.
-
- 6. The scripts and library files supplied as input to or produced as
- output from the programs of this Package do not automatically fall
- under the copyright of this Package, but belong to whoever generated
- them, and may be sold commercially, and may be aggregated with this
- Package. If such scripts or library files are aggregated with this
- Package via the so-called "undump" or "unexec" methods of producing a
- binary executable image, then distribution of such an image shall
- neither be construed as a distribution of this Package nor shall it
- fall under the restrictions of Paragraphs 3 and 4, provided that you do
- not represent such an executable image as a Standard Version of this
- Package.
-
- 7. C subroutines (or comparably compiled subroutines in other
- languages) supplied by you and linked into this Package in order to
- emulate subroutines and variables of the language defined by this
- Package shall not be considered part of this Package, but are the
- equivalent of input as in Paragraph 6, provided these subroutines do
- not change the language in any way that would cause it to fail the
- regression tests for the language.
-
- 8. Aggregation of this Package with a commercial distribution is always
- permitted provided that the use of this Package is embedded; that is,
- when no overt attempt is made to make this Package's interfaces visible
- to the end user of the commercial distribution. Such use shall not be
- construed as a distribution of this Package.
-
- 9. The name of the Copyright Holder may not be used to endorse or promote
- products derived from this software without specific prior written permission.
-
- 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-
- The End
diff --git a/lib/mime-types.rb b/lib/mime-types.rb
index cdfff8a..fc219b8 100644
--- a/lib/mime-types.rb
+++ b/lib/mime-types.rb
@@ -1,3 +1 @@
-# -*- ruby encoding: utf-8 -*-
-
require 'mime/types'
diff --git a/lib/mime/type.rb b/lib/mime/type.rb
index ea75914..c62cf32 100644
--- a/lib/mime/type.rb
+++ b/lib/mime/type.rb
@@ -1,4 +1,6 @@
-# -*- ruby encoding: utf-8 -*-
+##
+module MIME
+end
# The definition of one MIME content-type.
#
@@ -53,33 +55,21 @@ class MIME::Type
end
# The released version of the mime-types library.
- VERSION = '2.6.2'
+ VERSION = '3.0'
include Comparable
# :stopdoc:
- MEDIA_TYPE_RE = %r{([-\w.+]+)/([-\w.+]*)}o
- UNREGISTERED_RE = %r{[Xx]-}o
- I18N_RE = %r{[^[:alnum:]]}o
- PLATFORM_RE = %r{#{RUBY_PLATFORM}}o
-
- DEFAULT_ENCODINGS = [ nil, :default ]
- BINARY_ENCODINGS = %w(base64 8bit)
- TEXT_ENCODINGS = %w(7bit quoted-printable)
- VALID_ENCODINGS = DEFAULT_ENCODINGS + BINARY_ENCODINGS + TEXT_ENCODINGS
-
- IANA_URL = 'http://www.iana.org/assignments/media-types/%s/%s'
- RFC_URL = 'http://rfc-editor.org/rfc/rfc%s.txt'
- DRAFT_URL = 'http://datatracker.ietf.org/public/idindex.cgi?command=id_details&filename=%s' # rubocop:disable Metrics/LineLength
- CONTACT_URL = 'http://www.iana.org/assignments/contact-people.htm#%s'
+ # TODO verify mime-type character restrictions; I am pretty sure that this is
+ # too wide open.
+ MEDIA_TYPE_RE = %r{([-\w.+]+)/([-\w.+]*)}
+ I18N_RE = %r{[^[:alnum:]]}
+ BINARY_ENCODINGS = %w(base64 8bit)
+ ASCII_ENCODINGS = %w(7bit quoted-printable)
# :startdoc:
- if respond_to? :private_constant
- private_constant :MEDIA_TYPE_RE, :UNREGISTERED_RE, :I18N_RE, :PLATFORM_RE,
- :DEFAULT_ENCODINGS, :BINARY_ENCODINGS, :TEXT_ENCODINGS,
- :VALID_ENCODINGS, :IANA_URL, :RFC_URL, :DRAFT_URL,
- :CONTACT_URL
- end
+ private_constant :MEDIA_TYPE_RE, :I18N_RE, :BINARY_ENCODINGS,
+ :ASCII_ENCODINGS
# Builds a MIME::Type object from the +content_type+, a MIME Content Type
# value (e.g., 'text/plain' or 'applicaton/x-eruby'). The constructed object
@@ -88,51 +78,45 @@ class MIME::Type
#
# * When provided a Hash or a MIME::Type, the MIME::Type will be
# constructed with #init_with.
- # * When provided an Array, the MIME::Type will be constructed only using
- # the first two elements of the array as the content type and
- # extensions.
+ # * When provided an Array, the MIME::Type will be constructed using
+ # the first element as the content type and the remaining flattened
+ # elements as extensions.
# * Otherwise, the content_type will be used as a string.
#
# Yields the newly constructed +self+ object.
def initialize(content_type) # :yields self:
@friendly = {}
- self.system = nil
- self.obsolete = false
- self.registered = nil
- self.use_instead = nil
- self.signature = nil
+ @obsolete = @registered = false
+ @preferred_extension = @docs = @use_instead = nil
+ self.extensions = []
case content_type
when Hash
init_with(content_type)
when Array
- self.content_type = content_type[0]
- self.extensions = content_type[1] || []
+ self.content_type = content_type.shift
+ self.extensions = content_type.flatten
when MIME::Type
init_with(content_type.to_h)
else
self.content_type = content_type
end
- self.extensions ||= []
- self.docs ||= []
self.encoding ||= :default
- # This value will be deprecated in the future, as it will be an
- # alternative view on #xrefs. Silence an unnecessary warning for now by
- # assigning directly to the instance variable.
- @references ||= []
self.xrefs ||= {}
yield self if block_given?
end
- # Returns +true+ if the +other+ simplified type matches the current type.
+ # Indicates that a MIME type is like another type. This differs from
+ # <tt>==</tt> because <tt>x-</tt> prefixes are removed for this comparison.
def like?(other)
- if other.respond_to?(:simplified)
- @simplified == other.simplified
- else
- @simplified == MIME::Type.simplified(other)
- end
+ other = if other.respond_to?(:simplified)
+ MIME::Type.simplified(other.simplified, remove_x_prefix: true)
+ else
+ MIME::Type.simplified(other.to_s, remove_x_prefix: true)
+ end
+ MIME::Type.simplified(simplified, remove_x_prefix: true) == other
end
# Compares the +other+ MIME::Type against the exact content type or the
@@ -140,10 +124,12 @@ class MIME::Type
# something that can be treated as a String with #to_s). In comparisons, this
# is done against the lowercase version of the MIME::Type.
def <=>(other)
- if other.respond_to?(:content_type)
- @content_type.downcase <=> other.content_type.downcase
- elsif other.respond_to?(:to_s)
- @simplified <=> MIME::Type.simplified(other.to_s)
+ if other.nil?
+ -1
+ elsif other.respond_to?(:simplified)
+ simplified <=> other.simplified
+ else
+ simplified <=> MIME::Type.simplified(other.to_s)
end
end
@@ -154,10 +140,9 @@ class MIME::Type
# 1. self.simplified <=> other.simplified (ensures that we
# don't try to compare different types)
# 2. IANA-registered definitions < other definitions.
- # 3. Generic definitions < platform definitions.
# 3. Complete definitions < incomplete definitions.
# 4. Current definitions < obsolete definitions.
- # 5. Obselete with use-instead references < obsolete without.
+ # 5. Obselete with use-instead names < obsolete without.
# 6. Obsolete use-instead definitions are compared.
#
# While this method is public, its use is strongly discouraged by consumers
@@ -169,8 +154,6 @@ class MIME::Type
if pc.zero?
pc = if (reg = registered?) != other.registered?
reg ? -1 : 1 # registered < unregistered
- elsif (plat = platform?(true)) != other.platform?(true)
- plat ? 1 : -1 # generic < platform
elsif (comp = complete?) != other.complete?
comp ? -1 : 1 # complete < incomplete
elsif (obs = obsolete?) != other.obsolete?
@@ -212,54 +195,74 @@ class MIME::Type
# removed and converted to lowercase.
#
# text/plain => text/plain
- # x-chemical/x-pdb => chemical/pdb
+ # x-chemical/x-pdb => x-chemical/x-pdb
# audio/QCELP => audio/qcelp
attr_reader :simplified
# Returns the media type of the simplified MIME::Type.
#
# text/plain => text
- # x-chemical/x-pdb => chemical
+ # x-chemical/x-pdb => x-chemical
+ # audio/QCELP => audio
attr_reader :media_type
# Returns the media type of the unmodified MIME::Type.
#
# text/plain => text
# x-chemical/x-pdb => x-chemical
+ # audio/QCELP => audio
attr_reader :raw_media_type
# Returns the sub-type of the simplified MIME::Type.
#
# text/plain => plain
# x-chemical/x-pdb => pdb
+ # audio/QCELP => QCELP
attr_reader :sub_type
# Returns the media type of the unmodified MIME::Type.
#
# text/plain => plain
# x-chemical/x-pdb => x-pdb
+ # audio/QCELP => qcelp
attr_reader :raw_sub_type
+ ##
# The list of extensions which are known to be used for this MIME::Type.
# Non-array values will be coerced into an array with #to_a. Array values
# will be flattened, +nil+ values removed, and made unique.
- attr_reader :extensions
- def extensions=(ext) # :nodoc:
- @extensions = Array(ext).flatten.compact.uniq
- # TODO: In mime-types 3.x, we probably want to have a clue about the
- # container(s) we belong to so we can trigger reindexing when this is done.
+ #
+ # :attr_accessor: extensions
+ def extensions
+ @extensions.to_a
+ end
+
+ ##
+ def extensions=(value) # :nodoc:
+ @extensions = Set[*Array(value).flatten.compact].freeze
+ MIME::Types.send(:reindex_extensions, self)
end
# Merge the +extensions+ provided into this MIME::Type. The extensions added
# will be merged uniquely.
def add_extensions(*extensions)
- self.extensions = self.extensions + extensions
+ self.extensions += extensions
end
##
- # The preferred extension for this MIME type, if one is set.
+ # The preferred extension for this MIME type. If one is not set and there are
+ # exceptions defined, the first extension will be used.
#
- # :attr_reader: preferred_extension
+ # When setting #preferred_extensions, if #extensions does not contain this
+ # extension, this will be added to #xtensions.
+ #
+ # :attr_accessor: preferred_extension
##
def preferred_extension
- extensions.first
+ @preferred_extension || extensions.first
+ end
+
+ ##
+ def preferred_extension=(value) # :nodoc:
+ add_extensions(value) if value
+ @preferred_extension = value
end
##
@@ -278,63 +281,41 @@ class MIME::Type
##
attr_reader :encoding
+
+ ##
def encoding=(enc) # :nodoc:
- if DEFAULT_ENCODINGS.include?(enc)
+ if enc.nil? or enc == :default
@encoding = default_encoding
- elsif BINARY_ENCODINGS.include?(enc) or TEXT_ENCODINGS.include?(enc)
+ elsif BINARY_ENCODINGS.include?(enc) or ASCII_ENCODINGS.include?(enc)
@encoding = enc
else
fail InvalidEncoding, enc
end
end
- # If the MIME::Type is a system-specific MIME::Type, returns the regular
- # expression for the operating system indicated.
- #
- # This information about MIME content types is deprecated and will be removed
- # in mime-types 3.
- def system
- MIME::Types.deprecated(self, __method__)
- @system
- end
-
- def system=(os) # :nodoc:
- if os.nil? or os.kind_of?(Regexp)
- @system = os
- else
- @system = %r{#{os}}
- end
- end
-
# Returns the default encoding for the MIME::Type based on the media type.
def default_encoding
(@media_type == 'text') ? 'quoted-printable' : 'base64'
end
##
- # Returns the media type or types that should be used instead of this
- # media type, if it is obsolete. If there is no replacement media type, or
- # it is not obsolete, +nil+ will be returned.
+ # Returns the media type or types that should be used instead of this media
+ # type, if it is obsolete. If there is no replacement media type, or it is
+ # not obsolete, +nil+ will be returned.
#
# :attr_accessor: use_instead
##
def use_instead
- return nil unless obsolete?
- @use_instead
+ obsolete? ? @use_instead : nil
end
##
attr_writer :use_instead
# Returns +true+ if the media type is obsolete.
- def obsolete?
- !!@obsolete
- end
-
- def obsolete=(v) # :nodoc:
- @obsolete = !!v
- end
+ attr_accessor :obsolete
+ alias_method :obsolete?, :obsolete
# The documentation for this MIME::Type.
attr_accessor :docs
@@ -348,14 +329,15 @@ class MIME::Type
@friendly ||= {}
case lang
- when String
- @friendly[lang]
+ when String, Symbol
+ @friendly[lang.to_s]
when Array
- @friendly.merge!(Hash[*lang])
+ @friendly.update(Hash[*lang])
when Hash
- @friendly.merge!(lang)
+ @friendly.update(lang)
else
- fail ArgumentError
+ fail ArgumentError,
+ "Expected a language or translation set, not #{lang.inspect}"
end
end
@@ -371,50 +353,6 @@ class MIME::Type
attr_reader :i18n_key
##
- # The encoded references URL list for this MIME::Type. See #urls for more
- # information.
- #
- # This was previously called #url.
- #
- # #references has been deprecated and both versions (#references and #url)
- # will be removed in mime-types 3.
- #
- # :attr_accessor: references
-
- ##
- def references(__internal__ = false)
- MIME::Types.deprecated(self, __method__) unless __internal__
- @references
- end
-
- ##
- def references=(r) # :nodoc:
- MIME::Types.deprecated(self, __method__)
- @references = Array(r).flatten.compact.uniq
- end
-
- ##
- # The encoded references URL list for this MIME::Type. See #urls for more
- # information.
- #
- # #urls has been deprecated and both versions (#references and #url) will be
- # removed in mime-types 3.
- #
- # :attr_accessor: url
-
- ##
- def url
- MIME::Types.deprecated(self, __method__)
- references(true)
- end
-
- ##
- def url=(r) # :nodoc:
- MIME::Types.deprecated(self, __method__)
- self.references = r
- end
-
- ##
# The cross-references list for this MIME::Type.
#
# :attr_accessor: xrefs
@@ -424,148 +362,44 @@ class MIME::Type
##
def xrefs=(x) # :nodoc:
- @xrefs = MIME::Types::Container.new.merge(x)
- @xrefs.each_value(&:sort!)
- @xrefs.each_value(&:uniq!)
- end
-
- # The decoded URL list for this MIME::Type.
- #
- # The special URL value IANA will be translated into:
- # http://www.iana.org/assignments/media-types/<mediatype>/<subtype>
- #
- # The special URL value RFC### will be translated into:
- # http://www.rfc-editor.org/rfc/rfc###.txt
- #
- # The special URL value DRAFT:name will be translated into:
- # https://datatracker.ietf.org/public/idindex.cgi?
- # command=id_detail&filename=<name>
- #
- # The special URL value [token] will be translated into:
- # http://www.iana.org/assignments/contact-people.htm#<token>
- #
- # These values will be accessible through #urls, which always returns an
- # array.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def urls
- MIME::Types.deprecated(self, __method__)
- references(true).map do |el|
- case el
- when %r{^IANA$}
- IANA_URL % [ @media_type, @sub_type ]
- when %r{^RFC(\d+)$}
- RFC_URL % $1
- when %r{^DRAFT:(.+)$}
- DRAFT_URL % $1
- when %r{^\{([^=]+)=([^\}]+)\}}
- [$1, $2]
- when %r{^\[([^=]+)=([^\]]+)\]}
- [$1, CONTACT_URL % $2]
- when %r{^\[([^\]]+)\]}
- CONTACT_URL % $1
- else
- el
+ MIME::Types::Container.new.merge(x).tap do |xr|
+ xr.each do |k, v|
+ xr[k] = Set[*v] unless v.kind_of? Set
end
+
+ @xrefs = xr
end
end
# The decoded cross-reference URL list for this MIME::Type.
def xref_urls
- xrefs.flat_map { |(type, values)|
- case type
- when 'rfc'.freeze
- values.map { |data| 'http://www.iana.org/go/%s'.freeze % data }
- when 'draft'.freeze
- values.map { |data|
- 'http://www.iana.org/go/%s'.freeze % data.sub(/\ARFC/, 'draft')
- }
- when 'rfc-errata'.freeze
- values.map { |data|
- 'http://www.rfc-editor.org/errata_search.php?eid=%s'.freeze % data
- }
- when 'person'.freeze
- values.map { |data|
- 'http://www.iana.org/assignments/media-types/media-types.xhtml#%s'.freeze % data # rubocop:disable Metrics/LineLength
- }
- when 'template'.freeze
- values.map { |data|
- 'http://www.iana.org/assignments/media-types/%s'.freeze % data
- }
- else # 'uri', 'text', etc.
- values
- end
+ xrefs.flat_map { |type, values|
+ name = :"xref_url_for_#{type.tr('-', '_')}"
+ respond_to?(name, true) and xref_map(values, name) or values.to_a
}
end
- ##
- # Prior to BCP 178 (RFC 6648), it could be assumed that MIME content types
- # that start with <tt>x-</tt> were unregistered MIME. Per this BCP, this
- # assumption is no longer being made by default in this library.
- #
- # There are three possible registration states for a MIME::Type:
- # - Explicitly registered, like application/x-www-url-encoded.
- # - Explicitly not registered, like image/webp.
- # - Unspecified, in which case the media-type and the content-type will be
- # scanned to see if they start with <tt>x-</tt>, indicating that they
- # are assumed unregistered.
- #
- # In mime-types 3, only a MIME content type that is explicitly registered
- # will be used; there will be assumption that <tt>x-</tt> types are
- # unregistered.
- def registered?
- if @registered.nil?
- (@raw_media_type !~ UNREGISTERED_RE) and
- (@raw_sub_type !~ UNREGISTERED_RE)
- else
- !!@registered
- end
- end
-
- def registered=(v) # :nodoc:
- @registered = v.nil? ? v : !!v
- end
+ # Indicates whether the MIME type has been registered with IANA.
+ attr_accessor :registered
+ alias_method :registered?, :registered
# MIME types can be specified to be sent across a network in particular
# formats. This method returns +true+ when the MIME::Type encoding is set
# to <tt>base64</tt>.
def binary?
- BINARY_ENCODINGS.include?(@encoding)
+ BINARY_ENCODINGS.include?(encoding)
end
# MIME types can be specified to be sent across a network in particular
# formats. This method returns +false+ when the MIME::Type encoding is
# set to <tt>base64</tt>.
def ascii?
- !binary?
- end
-
- # Returns +true+ when the simplified MIME::Type is one of the known digital
- # signature types.
- def signature?
- !!@signature
+ ASCII_ENCODINGS.include?(encoding)
end
- def signature=(v) # :nodoc:
- @signature = !!v
- end
-
- # Returns +true+ if the MIME::Type is specific to an operating system.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def system?(__internal__ = false)
- MIME::Types.deprecated(self, __method__) unless __internal__
- !@system.nil?
- end
-
- # Returns +true+ if the MIME::Type is specific to the current operating
- # system as represented by RUBY_PLATFORM.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def platform?(__internal__ = false)
- MIME::Types.deprecated(self, __method__) unless __internal__
- system?(__internal__) and (RUBY_PLATFORM =~ @system)
- end
+ # Indicateswhether the MIME type is declared as a signature type.
+ attr_accessor :signature
+ alias_method :signature?, :signature
# Returns +true+ if the MIME::Type specifies an extension list,
# indicating that it is a complete MIME::Type.
@@ -586,41 +420,14 @@ class MIME::Type
content_type
end
- # Returns the MIME::Type as an array suitable for use with
- # MIME::Type.from_array.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def to_a
- MIME::Types.deprecated(self, __method__)
- [ @content_type, @extensions, @encoding, @system, obsolete?, @docs,
- @references, registered? ]
- end
-
- # Returns the MIME::Type as an array suitable for use with
- # MIME::Type.from_hash.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def to_hash
- MIME::Types.deprecated(self, __method__)
- { 'Content-Type' => @content_type,
- 'Content-Transfer-Encoding' => @encoding,
- 'Extensions' => @extensions,
- 'System' => @system,
- 'Obsolete' => obsolete?,
- 'Docs' => @docs,
- 'URL' => @references,
- 'Registered' => registered?,
- }
- end
-
# Converts the MIME::Type to a JSON string.
def to_json(*args)
require 'json'
to_h.to_json(*args)
end
- # Converts the MIME::Type to a hash suitable for use in JSON. The output
- # of this method can also be used to initialize a MIME::Type.
+ # Converts the MIME::Type to a hash. The output of this method can also be
+ # used to initialize a MIME::Type.
def to_h
encode_with({})
end
@@ -631,20 +438,21 @@ class MIME::Type
#
# This method should be considered a private implementation detail.
def encode_with(coder)
- coder['content-type'] = @content_type
- coder['docs'] = @docs unless @docs.nil? or @docs.empty?
- coder['friendly'] = @friendly unless @friendly.empty?
- coder['encoding'] = @encoding
- coder['extensions'] = @extensions unless @extensions.empty?
+ coder['content-type'] = @content_type
+ coder['docs'] = @docs unless @docs.nil? or @docs.empty?
+ unless @friendly.nil? or @friendly.empty?
+ coder['friendly'] = @friendly
+ end
+ coder['encoding'] = @encoding
+ coder['extensions'] = @extensions.to_a unless @extensions.empty?
+ coder['preferred-extension'] = @preferred_extension if @preferred_extension
if obsolete?
- coder['obsolete'] = obsolete?
- coder['use-instead'] = use_instead if use_instead
+ coder['obsolete'] = obsolete?
+ coder['use-instead'] = use_instead if use_instead
end
- coder['references'] = references(true) unless references(true).empty?
- coder['xrefs'] = xrefs unless xrefs.empty?
- coder['registered'] = registered?
- coder['signature'] = signature? if signature?
- coder['system'] = @system if @system
+ coder['xrefs'] = xrefs unless xrefs.empty?
+ coder['registered'] = registered?
+ coder['signature'] = signature? if signature?
coder
end
@@ -653,167 +461,68 @@ class MIME::Type
#
# This method should be considered a private implementation detail.
def init_with(coder)
- self.content_type = coder['content-type']
- self.docs = coder['docs'] || []
+ self.content_type = coder['content-type']
+ self.docs = coder['docs'] || ''
+ self.encoding = coder['encoding']
+ self.extensions = coder['extensions'] || []
+ self.preferred_extension = coder['preferred-extension']
+ self.obsolete = coder['obsolete'] || false
+ self.registered = coder['registered'] || false
+ self.signature = coder['signature']
+ self.xrefs = coder['xrefs'] || {}
+ self.use_instead = coder['use-instead']
+
friendly(coder['friendly'] || {})
- self.encoding = coder['encoding']
- self.extensions = coder['extensions'] || []
- self.obsolete = coder['obsolete']
- # This value will be deprecated in the future, as it will be an
- # alternative view on #xrefs. Silence an unnecessary warning for now by
- # assigning directly to the instance variable.
- @references = Array(coder['references']).flatten.compact.uniq
- self.registered = coder['registered']
- self.signature = coder['signature']
- self.system = coder['system']
- self.xrefs = coder['xrefs'] || {}
- self.use_instead = coder['use-instead']
end
- class << self
- # The MIME types main- and sub-label can both start with <tt>x-</tt>,
- # which indicates that it is a non-registered name. Of course, after
- # registration this flag may disappear, adds to the confusing
- # proliferation of MIME types. The simplified +content_type+ string has the
- # <tt>x-</tt> removed and is translated to lowercase.
- def simplified(content_type)
- matchdata = case content_type
- when MatchData
- content_type
- else
- MEDIA_TYPE_RE.match(content_type)
- end
-
- return unless matchdata
+ def inspect # :nodoc:
+ # We are intentionally lying here because MIME::Type::Columnar is an
+ # implementation detail.
+ "#<MIME::Type: #{self}>"
+ end
- matchdata.captures.map { |e|
- e.downcase!
- e.gsub!(UNREGISTERED_RE, ''.freeze)
- e
- }.join('/'.freeze)
+ class << self
+ # MIME media types are case-insensitive, but are typically presented in a
+ # case-preserving format in the type registry. This method converts
+ # +content_type+ to lowercase.
+ #
+ # In previous versions of mime-types, this would also remove any extension
+ # prefix (<tt>x-</tt>). This is no longer default behaviour, but may be
+ # provided by providing a truth value to +remove_x_prefix+.
+ def simplified(content_type, remove_x_prefix: false)
+ simplify_matchdata(match(content_type), remove_x_prefix)
end
# Converts a provided +content_type+ into a translation key suitable for
# use with the I18n library.
def i18n_key(content_type)
- matchdata = case content_type
- when MatchData
- content_type
- else
- MEDIA_TYPE_RE.match(content_type)
- end
-
- return unless matchdata
-
- matchdata.captures.map { |e|
- e.downcase!
- e.gsub!(UNREGISTERED_RE, ''.freeze)
+ simplify_matchdata(match(content_type), joiner: '.') { |e|
e.gsub!(I18N_RE, '-'.freeze)
- e
- }.join('.'.freeze)
+ }
end
- # Creates a MIME::Type from an +args+ array in the form of:
- # [ type-name, [ extensions ], encoding, system ]
- #
- # +extensions+, +encoding+, and +system+ are optional.
- #
- # MIME::Type.from_array('application/x-ruby', %w(rb), '8bit')
- # MIME::Type.from_array([ 'application/x-ruby', [ 'rb' ], '8bit' ])
- #
- # These are equivalent to:
- #
- # MIME::Type.new('application/x-ruby') do |t|
- # t.extensions = %w(rb)
- # t.encoding = '8bit'
- # end
- #
- # It will yield the type (+t+) if a block is given.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def from_array(*args) # :yields t:
- MIME::Types.deprecated(self, __method__)
-
- # Dereferences the array one level, if necessary.
- args = args.first if args.first.kind_of? Array
-
- unless args.size.between?(1, 8)
- fail ArgumentError,
- 'Array provided must contain between one and eight elements.'
- end
-
- MIME::Type.new(args.shift) do |t|
- t.extensions, t.encoding, t.system, t.obsolete, t.docs, t.references,
- t.registered = *args
- yield t if block_given?
+ # Return a +MatchData+ object of the +content_type+ against pattern of
+ # media types.
+ def match(content_type)
+ case content_type
+ when MatchData
+ content_type
+ else
+ MEDIA_TYPE_RE.match(content_type)
end
end
- # Creates a MIME::Type from a +hash+. Keys are case-insensitive, dashes
- # may be replaced with underscores, and the internal Symbol of the
- # lowercase-underscore version can be used as well. That is,
- # Content-Type can be provided as content-type, Content_Type,
- # content_type, or :content_type.
- #
- # Known keys are <tt>Content-Type</tt>,
- # <tt>Content-Transfer-Encoding</tt>, <tt>Extensions</tt>, and
- # <tt>System</tt>.
- #
- # MIME::Type.from_hash('Content-Type' => 'text/x-yaml',
- # 'Content-Transfer-Encoding' => '8bit',
- # 'System' => 'linux',
- # 'Extensions' => ['yaml', 'yml'])
- #
- # This is equivalent to:
- #
- # MIME::Type.new('text/x-yaml') do |t|
- # t.encoding = '8bit'
- # t.system = 'linux'
- # t.extensions = ['yaml', 'yml']
- # end
- #
- # It will yield the constructed type +t+ if a block has been provided.
- #
- #
- # This method is deprecated and will be removed in mime-types 3.
- def from_hash(hash) # :yields t:
- MIME::Types.deprecated(self, __method__)
- type = {}
- hash.each_pair do |k, v|
- type[k.to_s.tr('A-Z', 'a-z').gsub(/-/, '_').to_sym] = v
- end
-
- MIME::Type.new(type[:content_type]) do |t|
- t.extensions = type[:extensions]
- t.encoding = type[:content_transfer_encoding]
- t.system = type[:system]
- t.obsolete = type[:obsolete]
- t.docs = type[:docs]
- t.url = type[:url]
- t.registered = type[:registered]
+ private
- yield t if block_given?
- end
- end
+ def simplify_matchdata(matchdata, remove_x = false, joiner: '/'.freeze)
+ return nil unless matchdata
- # Essentially a copy constructor for +mime_type+.
- #
- # MIME::Type.from_mime_type(plaintext)
- #
- # is equivalent to:
- #
- # MIME::Type.new(plaintext.content_type.dup) do |t|
- # t.extensions = plaintext.extensions.dup
- # t.system = plaintext.system.dup
- # t.encoding = plaintext.encoding.dup
- # end
- #
- # It will yield the type (+t+) if a block is given.
- #
- # This method is deprecated and will be removed in mime-types 3.
- def from_mime_type(mime_type) # :yields the new MIME::Type:
- MIME::Types.deprecated(self, __method__)
- new(mime_type)
+ matchdata.captures.map { |e|
+ e.downcase!
+ e.sub!(%r{^x-}, ''.freeze) if remove_x
+ yield e if block_given?
+ e
+ }.join(joiner)
end
end
@@ -829,4 +538,29 @@ class MIME::Type
@i18n_key = MIME::Type.i18n_key(match)
@media_type, @sub_type = MEDIA_TYPE_RE.match(@simplified).captures
end
+
+ def xref_map(values, helper)
+ values.map { |value| send(helper, value) }
+ end
+
+ def xref_url_for_rfc(value)
+ 'http://www.iana.org/go/%s'.freeze % value
+ end
+
+ def xref_url_for_draft(value)
+ 'http://www.iana.org/go/%s'.freeze % value.sub(/\ARFC/, 'draft')
+ end
+
+ def xref_url_for_rfc_errata(value)
+ 'http://www.rfc-editor.org/errata_search.php?eid=%s'.freeze % value
+ end
+
+ def xref_url_for_person(value)
+ 'http://www.iana.org/assignments/media-types/media-types.xhtml#%s'.freeze %
+ value
+ end
+
+ def xref_url_for_template(value)
+ 'http://www.iana.org/assignments/media-types/%s'.freeze % value
+ end
end
diff --git a/lib/mime/type/columnar.rb b/lib/mime/type/columnar.rb
index cb6da20..31b6140 100644
--- a/lib/mime/type/columnar.rb
+++ b/lib/mime/type/columnar.rb
@@ -11,102 +11,45 @@ require 'mime/type'
# MIME::Type::Columnar is *not* intended to be created except by
# MIME::Types::Columnar containers.
class MIME::Type::Columnar < MIME::Type
- attr_writer :friendly # :nodoc:
-
def initialize(container, content_type, extensions) # :nodoc:
@container = container
self.content_type = content_type
self.extensions = extensions
end
- def friendly(*) # :nodoc:
- @container.send(:load_friendly) unless defined?(@friendly)
- super if @friendly
- end
-
- def encoding # :nodoc:
- @container.send(:load_encoding) unless defined?(@encoding)
- @encoding
- end
-
- def docs # :nodoc:
- @container.send(:load_docs) unless defined?(@docs)
- @docs
- end
-
- def obsolete? # :nodoc:
- @container.send(:load_obsolete) unless defined?(@obsolete)
- super
- end
-
- def references(*) # :nodoc:
- @container.send(:load_references) unless defined?(@references)
- super if @references
- end
-
- def registered? # :nodoc:
- @container.send(:load_registered) unless defined?(@registered)
- super
- end
-
- def signature? # :nodoc:
- @container.send(:load_signature) unless defined?(@signature)
- super
- end
-
- def system?(*) # :nodoc:
- @container.send(:load_system) unless defined?(@system)
- super
- end
-
- def system # :nodoc:
- @container.send(:load_system) unless defined?(@system)
- @system
- end
-
- def xrefs # :nodoc:
- @container.send(:load_xrefs) unless defined?(@xrefs)
- @xrefs
- end
-
- def use_instead # :nodoc:
- @container.send(:load_use_instead) unless defined?(@use_instead)
- @use_instead
- end
+ def self.column(*methods, file: nil) # :nodoc:
+ file = methods.first unless file
- def binary? # :nodoc:
- @container.send(:load_encoding) unless defined?(@encoding)
- super
+ file_method = :"load_#{file}"
+ methods.each do |m|
+ define_method m do |*args|
+ @container.send(file_method)
+ super(*args)
+ end
+ end
end
- def to_a # :nodoc:
- @container.send(:load_encoding) unless defined?(@encoding)
- @container.send(:load_system) unless defined?(@system)
- @container.send(:load_docs) unless defined?(@docs)
- @container.send(:load_references) unless defined?(@references)
- super
- end
+ column :friendly
+ column :encoding, :encoding=
+ column :docs, :docs=
+ column :preferred_extension, :preferred_extension=
+ column :obsolete, :obsolete=, :obsolete?, :registered, :registered=,
+ :registered?, :signature, :signature=, :signature?, file: 'flags'
+ column :xrefs, :xrefs=, :xref_urls
+ column :use_instead, :use_instead=
- def to_hash # :nodoc:
- @container.send(:load_encoding) unless defined?(@encoding)
- @container.send(:load_system) unless defined?(@system)
- @container.send(:load_docs) unless defined?(@docs)
- @container.send(:load_references) unless defined?(@references)
+ def encode_with(coder) # :nodoc:
+ @container.send(:load_friendly)
+ @container.send(:load_encoding)
+ @container.send(:load_docs)
+ @container.send(:load_flags)
+ @container.send(:load_use_instead)
+ @container.send(:load_xrefs)
+ @container.send(:load_preferred_extension)
super
end
- def encode_with(coder) # :nodoc:
- @container.send(:load_friendly) unless defined?(@friendly)
- @container.send(:load_encoding) unless defined?(@encoding)
- @container.send(:load_system) unless defined?(@system)
- @container.send(:load_docs) unless defined?(@docs)
- @container.send(:load_references) unless defined?(@references)
- @container.send(:load_obsolete) unless defined?(@obsolete)
- @container.send(:load_use_instead) unless defined?(@use_instead)
- @container.send(:load_xrefs) unless defined?(@xrefs)
- @container.send(:load_system) unless defined?(@system)
- @container.send(:load_registered) unless defined?(@registered)
- @container.send(:load_signature) unless defined?(@signature)
- super
+ class << self
+ undef column
end
end
diff --git a/lib/mime/types.rb b/lib/mime/types.rb
index 2f0f66b..cd9b3ae 100644
--- a/lib/mime/types.rb
+++ b/lib/mime/types.rb
@@ -1,6 +1,12 @@
-# -*- ruby encoding: utf-8 -*-
+##
+module MIME
+ ##
+ class Types
+ end
+end
-require 'mime/types/deprecations'
+require 'mime/types/logger'
+require 'mime/types/container'
require 'mime/type'
require 'mime/types/cache'
require 'mime/types/loader'
@@ -66,37 +72,19 @@ class MIME::Types
include Enumerable
- # The data version.
- attr_reader :data_version
-
# Creates a new MIME::Types registry.
def initialize
@type_variants = Container.new
@extension_index = Container.new
- @data_version = VERSION.dup.freeze
- end
-
- # This method is deprecated and will be removed in mime-types 3.0.
- def add_type_variant(mime_type) # :nodoc:
- MIME::Types.deprecated(self, __method__, :private)
- add_type_variant!(mime_type)
- end
-
- # This method is deprecated and will be removed in mime-types 3.0.
- def index_extensions(mime_type) # :nodoc:
- MIME::Types.deprecated(self, __method__, :private)
- index_extensions!(mime_type)
- end
-
- # This method is deprecated and will be removed in mime-types 3.0.
- def defined_types # :nodoc:
- MIME::Types.deprecated(self, __method__)
- @type_variants.values.flatten
end
# Returns the number of known type variants.
def count
- @type_variants.values.reduce(0) { |m, o| m + o.size }
+ @type_variants.values.inject(0) { |a, e| a + e.size }
+ end
+
+ def inspect # :nodoc:
+ "#<#{self.class}: #{count} variants, #{@extension_index.count} extensions>"
end
# Iterates through the type variants.
@@ -108,7 +96,7 @@ class MIME::Types
end
end
- @__types__ = nil
+ @__types__ = nil
# Returns a list of MIME::Type objects, which may be empty. The optional
# flag parameters are <tt>:complete</tt> (finds only complete MIME::Type
@@ -130,20 +118,12 @@ class MIME::Types
# 1. Complete definitions sort before incomplete ones;
# 2. IANA-registered definitions sort before LTSW-recorded
# definitions.
- # 3. Generic definitions sort before platform-specific ones;
- # 4. Current definitions sort before obsolete ones;
- # 5. Obsolete definitions with use-instead clauses sort before those
+ # 3. Current definitions sort before obsolete ones;
+ # 4. Obsolete definitions with use-instead clauses sort before those
# without;
- # 6. Obsolete definitions use-instead clauses are compared.
- # 7. Sort on name.
- #
- # An additional flag of :platform (finds only MIME::Types for the current
- # platform) is currently supported but deprecated.
- def [](type_id, flags = {})
- if flags[:platform]
- MIME::Types.deprecated(self, __method__, 'using the :platform flag')
- end
-
+ # 5. Obsolete definitions use-instead clauses are compared.
+ # 6. Sort on name.
+ def [](type_id, complete: false, registered: false)
matches = case type_id
when MIME::Type
@type_variants[type_id.simplified]
@@ -153,7 +133,9 @@ class MIME::Types
@type_variants[MIME::Type.simplified(type_id)]
end
- prune_matches(matches, flags).sort { |a, b| a.priority_compare(b) }
+ prune_matches(matches, complete, registered).sort { |a, b|
+ a.priority_compare(b)
+ }
end
# Return the list of MIME::Types which belongs to the file based on its
@@ -168,20 +150,12 @@ class MIME::Types
# => [image/gif]
# puts MIME::Types.type_for(%w(citydesk.xml citydesk.gif))
# => [application/xml, image/gif, text/xml]
- #
- # If +platform+ is +true+, then only file types that are specific to the
- # current platform will be returned. This parameter has been deprecated.
- def type_for(filename, platform = false)
- types = Array(filename).flat_map { |fn|
+ def type_for(filename)
+ Array(filename).flat_map { |fn|
@extension_index[fn.chomp.downcase[/\.?([^.]*?)$/, 1]]
- }.compact.sort { |a, b| a.priority_compare(b) }.uniq
-
- if platform
- MIME::Types.deprecated(self, __method__, 'using the platform parameter')
- types.select(&:platform?)
- else
- types
- end
+ }.compact.inject(:+).sort { |a, b|
+ a.priority_compare(b)
+ }
end
alias_method :of, :type_for
@@ -199,7 +173,7 @@ class MIME::Types
nil
when MIME::Types
variants = mime_type.instance_variable_get(:@type_variants)
- add(*variants.values.flatten, quiet)
+ add(*variants.values.inject(:+).to_a, quiet)
when Array
add(*mime_type, quiet)
else
@@ -222,111 +196,33 @@ Type #{type} is already registered as a variant of #{type.simplified}.
index_extensions!(type)
end
- class << self
- include Enumerable
-
- # Load MIME::Types from a v1 file registry.
- #
- # This method has been deprecated and will be removed in mime-types 3.0.
- def load_from_file(filename)
- MIME::Types.deprecated(self, __method__)
- MIME::Types::Loader.load_from_v1(filename)
- end
-
- # MIME::Types#[] against the default MIME::Types registry.
- def [](type_id, flags = {})
- __types__[type_id, flags]
- end
-
- # MIME::Types#count against the default MIME::Types registry.
- def count
- __types__.count
- end
-
- # MIME::Types#each against the default MIME::Types registry.
- def each
- if block_given?
- __types__.each { |t| yield t }
- else
- enum_for(:each)
- end
- end
-
- # MIME::Types#type_for against the default MIME::Types registry.
- def type_for(filename, platform = false)
- __types__.type_for(filename, platform)
- end
- alias_method :of, :type_for
-
- # MIME::Types#add against the default MIME::Types registry.
- def add(*types)
- __types__.add(*types)
- end
-
- # Returns the currently defined cache file, if any.
- #
- # This method has been deprecated and will be removed in mime-types 3.0.
- def cache_file
- MIME::Types.deprecated(self, __method__)
- ENV['RUBY_MIME_TYPES_CACHE']
- end
-
- def add_type_variant(mime_type) # :nodoc:
- __types__.add_type_variant(mime_type)
- end
-
- def index_extensions(mime_type) # :nodoc:
- __types__.index_extensions(mime_type)
- end
-
- private
-
- def lazy_load?
- (lazy = ENV['RUBY_MIME_TYPES_LAZY_LOAD']) && (lazy != 'false')
- end
-
- def __types__
- (defined?(@__types__) and @__types__) or load_default_mime_types
- end
-
- unless private_method_defined?(:load_mode)
- def load_mode
- {}
- end
- end
-
- def load_default_mime_types(mode = load_mode())
- @__types__ = MIME::Types::Cache.load
- unless @__types__
- @__types__ = MIME::Types::Loader.load(mode)
- MIME::Types::Cache.save(@__types__)
- end
- @__types__
- end
- end
-
private
def add_type_variant!(mime_type)
@type_variants[mime_type.simplified] << mime_type
end
+ def reindex_extensions!(mime_type)
+ return unless @type_variants[mime_type.simplified].include?(mime_type)
+ index_extensions!(mime_type)
+ end
+
def index_extensions!(mime_type)
mime_type.extensions.each { |ext| @extension_index[ext] << mime_type }
end
- def prune_matches(matches, flags)
- matches.delete_if { |e| !e.complete? } if flags[:complete]
- matches.delete_if { |e| !e.platform? } if flags[:platform]
- matches.delete_if { |e| !e.registered? } if flags[:registered]
+ def prune_matches(matches, complete, registered)
+ matches.delete_if { |e| !e.complete? } if complete
+ matches.delete_if { |e| !e.registered? } if registered
matches
end
def match(pattern)
- @type_variants.select { |k, _| k =~ pattern }.values.flatten
+ @type_variants.select { |k, _|
+ k =~ pattern
+ }.values.inject(:+)
end
-
- load_default_mime_types(load_mode) unless lazy_load?
end
-# vim: ft=ruby
+require 'mime/types/columnar' unless defined?(MIME::Types::Columnar)
+require 'mime/types/registry'
diff --git a/lib/mime/types/cache.rb b/lib/mime/types/cache.rb
index 027c71d..02ed222 100644
--- a/lib/mime/types/cache.rb
+++ b/lib/mime/types/cache.rb
@@ -1,80 +1,56 @@
-# -*- ruby encoding: utf-8 -*-
-
-class MIME::Types
- Cache = Struct.new(:version, :data) # :nodoc:
-
- # Caching of MIME::Types registries is advisable if you will be loading
- # the default registry relatively frequently. With the class methods on
- # MIME::Types::Cache, any MIME::Types registry can be marshaled quickly
- # and easily.
- #
- # The cache is invalidated on a per-version basis; a cache file for
- # version 2.0 will not be reused with version 2.0.1.
- class Cache
- class << self
- # Attempts to load the cache from the file provided as a parameter or in
- # the environment variable +RUBY_MIME_TYPES_CACHE+. Returns +nil+ if the
- # file does not exist, if the file cannot be loaded, or if the data in
- # the cache version is different than this version.
- def load(cache_file = nil)
- cache_file ||= ENV['RUBY_MIME_TYPES_CACHE']
- return nil unless cache_file and File.exist?(cache_file)
-
- cache = Marshal.load(File.binread(cache_file))
- if cache.version == MIME::Types::VERSION
- Marshal.load(cache.data)
- else
- MIME::Types.logger.warn <<-warning.chomp
+MIME::Types::Cache = Struct.new(:version, :data) # :nodoc:
+
+# Caching of MIME::Types registries is advisable if you will be loading
+# the default registry relatively frequently. With the class methods on
+# MIME::Types::Cache, any MIME::Types registry can be marshaled quickly
+# and easily.
+#
+# The cache is invalidated on a per-data-version basis; a cache file for
+# version 3.2015.1118 will not be reused with version 3.2015.1201.
+class << MIME::Types::Cache
+ # Attempts to load the cache from the file provided as a parameter or in
+ # the environment variable +RUBY_MIME_TYPES_CACHE+. Returns +nil+ if the
+ # file does not exist, if the file cannot be loaded, or if the data in
+ # the cache version is different than this version.
+ def load(cache_file = nil)
+ cache_file ||= ENV['RUBY_MIME_TYPES_CACHE']
+ return nil unless cache_file and File.exist?(cache_file)
+
+ cache = Marshal.load(File.binread(cache_file))
+ if cache.version == MIME::Types::Data::VERSION
+ Marshal.load(cache.data)
+ else
+ MIME::Types.logger.warn <<-warning.chomp
Could not load MIME::Types cache: invalid version
- warning
- nil
- end
- rescue => e
- MIME::Types.logger.warn <<-warning.chomp
-Could not load MIME::Types cache: #{e}
- warning
- return nil
- end
-
- # Attempts to save the types provided to the cache file provided.
- #
- # If +types+ is not provided or is +nil+, the cache will contain the
- # current MIME::Types default registry.
- #
- # If +cache_file+ is not provided or is +nil+, the cache will be written
- # to the file specified in the environment variable
- # +RUBY_MIME_TYPES_CACHE+. If there is no cache file specified either
- # directly or through the environment, this method will return +nil+
- def save(types = nil, cache_file = nil)
- cache_file ||= ENV['RUBY_MIME_TYPES_CACHE']
- return nil unless cache_file
-
- types ||= MIME::Types.send(:__types__)
-
- File.open(cache_file, 'wb') do |f|
- f.write(Marshal.dump(new(types.data_version, Marshal.dump(types))))
- end
- end
+ warning
+ nil
end
+ rescue => e
+ MIME::Types.logger.warn <<-warning.chomp
+Could not load MIME::Types cache: #{e}
+ warning
+ return nil
end
- # MIME::Types requires a container Hash with a default values for keys
- # resulting in an empty array (<tt>[]</tt>), but this cannot be dumped
- # through Marshal because of the presence of that default Proc. This class
- # exists solely to satisfy that need.
- class Container < Hash # :nodoc:
- def initialize
- super
- self.default_proc = ->(h, k) { h[k] = [] }
- end
-
- def marshal_dump
- {}.merge(self)
- end
-
- def marshal_load(hash)
- self.default_proc = ->(h, k) { h[k] = [] }
- self.merge!(hash)
+ # Attempts to save the types provided to the cache file provided.
+ #
+ # If +types+ is not provided or is +nil+, the cache will contain the
+ # current MIME::Types default registry.
+ #
+ # If +cache_file+ is not provided or is +nil+, the cache will be written
+ # to the file specified in the environment variable
+ # +RUBY_MIME_TYPES_CACHE+. If there is no cache file specified either
+ # directly or through the environment, this method will return +nil+
+ def save(types = nil, cache_file = nil)
+ cache_file ||= ENV['RUBY_MIME_TYPES_CACHE']
+ return nil unless cache_file
+
+ types ||= MIME::Types.send(:__types__)
+
+ File.open(cache_file, 'wb') do |f|
+ f.write(
+ Marshal.dump(new(MIME::Types::Data::VERSION, Marshal.dump(types)))
+ )
end
end
end
diff --git a/lib/mime/types/columnar.rb b/lib/mime/types/columnar.rb
index 2c7b86c..e018941 100644
--- a/lib/mime/types/columnar.rb
+++ b/lib/mime/types/columnar.rb
@@ -18,7 +18,7 @@ module MIME::Types::Columnar
def self.extended(obj) # :nodoc:
super
obj.instance_variable_set(:@__mime_data__, [])
- obj.instance_variable_set(:@__attributes__, [])
+ obj.instance_variable_set(:@__files__, Set.new)
end
# Load the first column data file (type and extensions).
@@ -26,7 +26,10 @@ module MIME::Types::Columnar
@__root__ = path
each_file_line('content_type', false) do |line|
- content_type, *extensions = line.split
+ line = line.split
+ content_type = line.shift
+ extensions = line
+ # content_type, *extensions = line.split
type = MIME::Type::Columnar.new(self, content_type, extensions)
@__mime_data__ << type
@@ -40,96 +43,81 @@ module MIME::Types::Columnar
def each_file_line(name, lookup = true)
LOAD_MUTEX.synchronize do
- next if @__attributes__.include?(name)
+ next if @__files__.include?(name)
- File.open(File.join(@__root__, "mime.#{name}.column"), 'r:UTF-8') do |f|
- i = -1
+ i = -1
+ column = File.join(@__root__, "mime.#{name}.column")
- f.each_line do |line|
- line.chomp!
+ IO.readlines(column, encoding: 'UTF-8'.freeze).each do |line|
+ line.chomp!
- if lookup
- type = @__mime_data__[i += 1] or next
- yield type, line
- else
- yield line
- end
+ if lookup
+ type = @__mime_data__[i += 1] or next
+ yield type, line
+ else
+ yield line
end
end
- @__attributes__ << name
+ @__files__ << name
end
end
def load_encoding
- pool = {}
each_file_line('encoding') do |type, line|
+ pool ||= {}
line.freeze
- type.encoding = (pool[line] ||= line)
+ type.instance_variable_set(:@encoding, (pool[line] ||= line))
end
end
def load_docs
each_file_line('docs') do |type, line|
- type.docs = arr(line)
+ type.instance_variable_set(:@docs, opt(line))
end
end
- def load_obsolete
- each_file_line('obsolete') do |type, line|
- type.obsolete = bool(line)
+ def load_preferred_extension
+ each_file_line('pext') do |type, line|
+ type.instance_variable_set(:@preferred_extension, opt(line))
end
end
- def load_references
- each_file_line('references') do |type, line|
- type.instance_variable_set(:@references, arr(line))
- end
- end
-
- def load_registered
- each_file_line('registered') do |type, line|
- type.registered = bool(line)
- end
- end
-
- def load_signature
- each_file_line('signature') do |type, line|
- type.signature = bool(line)
- end
- end
-
- def load_system
- each_file_line('system') do |type, line|
- type.system = (line unless line == '-'.freeze)
+ def load_flags
+ each_file_line('flags') do |type, line|
+ line = line.split
+ type.instance_variable_set(:@obsolete, flag(line.shift))
+ type.instance_variable_set(:@registered, flag(line.shift))
+ type.instance_variable_set(:@signature, flag(line.shift))
end
end
def load_xrefs
- each_file_line('xrefs') { |type, line| type.xrefs = dict(line) }
+ each_file_line('xrefs') { |type, line|
+ type.instance_variable_set(:@xrefs, dict(line, array: true))
+ }
end
def load_friendly
each_file_line('friendly') { |type, line|
- v = dict(line)
- type.friendly = v.empty? ? nil : v
+ type.instance_variable_set(:@friendly, dict(line))
}
end
def load_use_instead
each_file_line('use_instead') do |type, line|
- type.use_instead = (line unless line == '-'.freeze)
+ type.instance_variable_set(:@use_instead, opt(line))
end
end
- def dict(line)
+ def dict(line, array: false)
if line == '-'.freeze
{}
else
line.split('|'.freeze).each_with_object({}) { |l, h|
k, v = l.split('^'.freeze)
- v = [ nil ] if v.empty?
- h[k] = v
+ v = nil if v.empty?
+ h[k] = array ? Array(v) : v
}
end
end
@@ -142,19 +130,13 @@ module MIME::Types::Columnar
end
end
- def bool(line)
- line == '1'.freeze ? true : false
+ def opt(line)
+ line unless line == '-'.freeze
end
-end
-
-unless MIME::Types.private_method_defined?(:load_mode)
- class << MIME::Types
- private
- def load_mode
- { columnar: true }
- end
+ def flag(line)
+ line == '1'.freeze ? true : false
end
-
- require 'mime/types'
end
+
+require 'mime/types' unless defined?(MIME::Types::VERSION)
diff --git a/lib/mime/types/container.rb b/lib/mime/types/container.rb
new file mode 100644
index 0000000..a969130
--- /dev/null
+++ b/lib/mime/types/container.rb
@@ -0,0 +1,30 @@
+require 'set'
+
+# MIME::Types requires a container Hash with a default values for keys
+# resulting in an empty array (<tt>[]</tt>), but this cannot be dumped through
+# Marshal because of the presence of that default Proc. This class exists
+# solely to satisfy that need.
+class MIME::Types::Container < Hash # :nodoc:
+ def initialize
+ super
+ self.default_proc = ->(h, k) { h[k] = Set.new }
+ end
+
+ def marshal_dump
+ {}.merge(self)
+ end
+
+ def marshal_load(hash)
+ self.default_proc = ->(h, k) { h[k] = Set.new }
+ merge!(hash)
+ end
+
+ def encode_with(coder)
+ each { |k, v| coder[k] = v.to_a }
+ end
+
+ def init_with(coder)
+ self.default_proc = ->(h, k) { h[k] = Set.new }
+ coder.map.each { |k, v| self[k] = Set[*v] }
+ end
+end
diff --git a/lib/mime/types/deprecations.rb b/lib/mime/types/deprecations.rb
index 2535d34..13b20f8 100644
--- a/lib/mime/types/deprecations.rb
+++ b/lib/mime/types/deprecations.rb
@@ -4,6 +4,7 @@ require 'mime/types/logger'
# The namespace for MIME applications, tools, and libraries.
module MIME
+ ##
class Types
# Used to mark a method as deprecated in the mime-types interface.
def self.deprecated(klass, sym, message = nil, &block) # :nodoc:
@@ -28,26 +29,4 @@ module MIME
block.call if block
end
end
-
- class << self
- # MIME::InvalidContentType was moved to MIME::Type::InvalidContentType.
- # Provide a single warning about this fact in the interim.
- def const_missing(name) # :nodoc:
- case name.to_s
- when 'InvalidContentType'
- warn_about_moved_constants(name)
- MIME::Type.const_get(name.to_sym)
- else
- super
- end
- end
-
- private
-
- def warn_about_moved_constants(name)
- MIME::Types.logger.warn <<-warning.chomp
-#{caller[1]}: MIME::#{name} is deprecated. Use MIME::Type::#{name} instead.
- warning
- end
- end
end
diff --git a/lib/mime/types/full.rb b/lib/mime/types/full.rb
new file mode 100644
index 0000000..2023f54
--- /dev/null
+++ b/lib/mime/types/full.rb
@@ -0,0 +1,17 @@
+##
+module MIME
+ ##
+ class Types
+ unless private_method_defined?(:load_mode)
+ class << self
+ private
+
+ def load_mode
+ { columnar: false }
+ end
+ end
+
+ require 'mime/types'
+ end
+ end
+end
diff --git a/lib/mime/types/loader.rb b/lib/mime/types/loader.rb
index beabf38..328534b 100644
--- a/lib/mime/types/loader.rb
+++ b/lib/mime/types/loader.rb
@@ -1,9 +1,11 @@
# -*- ruby encoding: utf-8 -*-
+##
module MIME; end
+##
class MIME::Types; end
-require 'mime/types/loader_path'
+require 'mime/types/data'
# This class is responsible for initializing the MIME::Types registry from
# the data files supplied with the mime-types library.
@@ -11,7 +13,7 @@ require 'mime/types/loader_path'
# The Loader will use one of the following paths:
# 1. The +path+ provided in its constructor argument;
# 2. The value of ENV['RUBY_MIME_TYPES_DATA']; or
-# 3. The value of MIME::Types::Loader::PATH.
+# 3. The value of MIME::Types::Data::PATH.
#
# When #load is called, the +path+ will be searched recursively for all YAML
# (.yml or .yaml) files. By convention, there is one file for each media
@@ -24,9 +26,9 @@ class MIME::Types::Loader
attr_reader :container
# Creates a Loader object that can be used to load MIME::Types registries
- # into memory, using YAML, JSON, or v1 registry format loaders.
+ # into memory, using YAML, JSON, or Columnar registry format loaders.
def initialize(path = nil, container = nil)
- path = path || ENV['RUBY_MIME_TYPES_DATA'] || MIME::Types::Loader::PATH
+ path = path || ENV['RUBY_MIME_TYPES_DATA'] || MIME::Types::Data::PATH
@container = container || MIME::Types.new
@path = File.expand_path(path)
# begin
@@ -41,8 +43,7 @@ class MIME::Types::Loader
# It is expected that the YAML objects contained within the registry array
# will be tagged as <tt>!ruby/object:MIME::Type</tt>.
#
- # Note that the YAML format is about 2½ times *slower* than either the v1
- # format or the JSON format.
+ # Note that the YAML format is about 2½ times *slower* than the JSON format.
#
# NOTE: The purpose of this format is purely for maintenance reasons.
def load_yaml
@@ -89,127 +90,19 @@ class MIME::Types::Loader
end
end
- # Loads a MIME::Types registry from files found in +path+ that are in the
- # v1 data format. The file search for this will exclude both JSON
- # (<tt>*.json</tt>) and YAML (<tt>*.yml</tt> or <tt>*.yaml</tt>) files.
- #
- # This method has been deprecated and will be removed from mime-types 3.0.
- def load_v1
- MIME::Types.deprecated(self.class, __method__)
- Dir[v1_path].sort.each do |f|
- next if f =~ /\.(?:ya?ml|json|column)$/
- container.add(self.class.load_from_v1(f, true), true)
- end
- container
- end
-
- # Raised when a V1 format file is discovered. This exception will be removed
- # for mime-types 3.0.
- BadV1Format = Class.new(Exception)
-
class << self
# Loads the default MIME::Type registry.
def load(options = { columnar: false })
new.load(options)
end
- # Build the type list from a file in the format:
- #
- # [*][!][os:]mt/st[<ws>@ext][<ws>:enc][<ws>'url-list][<ws>=docs]
- #
- # == *
- # An unofficial MIME type. This should be used if and only if the MIME type
- # is not properly specified (that is, not under either x-type or
- # vnd.name.type).
- #
- # == !
- # An obsolete MIME type. May be used with an unofficial MIME type.
- #
- # == os:
- # Platform-specific MIME type definition.
- #
- # == mt
- # The media type.
- #
- # == st
- # The media subtype.
- #
- # == <ws>@ext
- # The list of comma-separated extensions.
- #
- # == <ws>:enc
- # The encoding.
- #
- # == <ws>'url-list
- # The list of comma-separated URLs.
- #
- # == <ws>=docs
- # The documentation string.
- #
- # That is, everything except the media type and the subtype is optional. The
- # more information that's available, though, the richer the values that can
- # be provided.
- #
- # This method has been deprecated and will be removed in mime-types 3.0.
- def load_from_v1(filename, __internal__ = false)
- MIME::Types.deprecated(self.class, __method__) unless __internal__
- data = read_file(filename).split($/)
- mime = MIME::Types.new
- data.each_with_index { |line, index|
- item = line.chomp.strip
- next if item.empty?
-
- m = V1_FORMAT.match(item)
-
- unless m
- MIME::Types.logger.warn <<-EOS
-#{filename}:#{index + 1}: Parsing error in v1 MIME type definition.
-=> #{line}
- EOS
- fail BadV1Format, line
- end
-
- unregistered, obsolete, platform, mediatype, subtype, extensions,
- encoding, urls, docs, _ = *m.captures
-
- next if mediatype.nil?
-
- extensions &&= extensions.split(/,/)
- urls &&= urls.split(/,/)
-
- if docs.nil?
- use_instead = nil
- else
- use_instead = docs.scan(%r{use-instead:(\S+)}).flatten.first
- docs = docs.gsub(%r{use-instead:\S+}, '').squeeze(' \t')
- end
-
- mime_type = MIME::Type.new("#{mediatype}/#{subtype}") do |t|
- t.extensions = extensions
- t.encoding = encoding
- t.system = platform
- t.obsolete = obsolete
- t.registered = false if unregistered
- t.use_instead = use_instead
- t.docs = docs
-
- # This is being removed. Cheat to silence it for now.
- t.instance_variable_set :@references,
- Array(urls).flatten.compact.uniq
- end
-
- mime.add_type(mime_type, true)
- }
- mime
- end
-
# Loads MIME::Types from a single YAML file.
#
# It is expected that the YAML objects contained within the registry
# array will be tagged as <tt>!ruby/object:MIME::Type</tt>.
#
- # Note that the YAML format is about 2½ times *slower* than either the v1
- # format or the JSON format.
+ # Note that the YAML format is about 2½ times *slower* than the JSON
+ # format.
#
# NOTE: The purpose of this format is purely for maintenance reasons.
def load_from_yaml(filename)
@@ -235,7 +128,7 @@ class MIME::Types::Loader
private
def read_file(filename)
- File.open(filename, 'r:UTF-8:-') { |f| f.read }
+ File.open(filename, 'r:UTF-8:-', &:read)
end
end
@@ -252,29 +145,4 @@ class MIME::Types::Loader
def columnar_path
File.join(path, '*.column')
end
-
- def v1_path
- File.join(path, '*')
- end
-
- # The regular expression used to match a v1-format file-based MIME type
- # definition.
- #
- # This constant has been deprecated and will be removed in mime-types 3.0.
- V1_FORMAT = # :nodoc:
- %r{\A\s*
- ([*])? # 0: Unregistered?
- (!)? # 1: Obsolete?
- (?:(\w+):)? # 2: Platform marker
- ([-\w.+]+)/([-\w.+]*) # 3, 4: Media Type
- (?:\s+@(\S+))? # 5: Extensions
- (?:\s+:(base64|7bit|8bit|quoted\-printable))? # 6: Encoding
- (?:\s+'(\S+))? # 7: URL list
- (?:\s+=(.+))? # 8: Documentation
- (?:\s*([#].*)?)? # Comments
- \s*
- \z
- }x
-
- private_constant :V1_FORMAT if respond_to? :private_constant
end
diff --git a/lib/mime/types/loader_path.rb b/lib/mime/types/loader_path.rb
deleted file mode 100644
index 5f4dd88..0000000
--- a/lib/mime/types/loader_path.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# -*- ruby encoding: utf-8 -*-
-
-class MIME::Types::Loader
- # The path that will be used for loading the MIME::Types data. The default
- # location is __FILE__/../../../../data, which is where the data lives
- # in the gem installation of the mime-types library.
- #
- # The MIME::Types::Loader will load all JSON or columnar files contained in
- # this path.
- #
- # System repackagers note: this is the constant that you would change if
- # you repackage mime-types for your system. It is recommended that the
- # path be something like /usr/share/ruby/mime-types/.
- PATH = File.expand_path('../../../../data', __FILE__)
-end
diff --git a/lib/mime/types/logger.rb b/lib/mime/types/logger.rb
index 2f0b858..0c82c47 100644
--- a/lib/mime/types/logger.rb
+++ b/lib/mime/types/logger.rb
@@ -2,7 +2,9 @@
require 'logger'
+##
module MIME
+ ##
class Types
class << self
# Configure the MIME::Types logger. This defaults to an instance of a
diff --git a/lib/mime/types/registry.rb b/lib/mime/types/registry.rb
new file mode 100644
index 0000000..23e2649
--- /dev/null
+++ b/lib/mime/types/registry.rb
@@ -0,0 +1,81 @@
+class << MIME::Types
+ include Enumerable
+
+ ##
+ def new(*) # :nodoc:
+ super.tap do |types|
+ __instances__.add types
+ end
+ end
+
+ # MIME::Types#[] against the default MIME::Types registry.
+ def [](type_id, complete: false, registered: false)
+ __types__[type_id, complete: complete, registered: registered]
+ end
+
+ # MIME::Types#count against the default MIME::Types registry.
+ def count
+ __types__.count
+ end
+
+ # MIME::Types#each against the default MIME::Types registry.
+ def each
+ if block_given?
+ __types__.each { |t| yield t }
+ else
+ enum_for(:each)
+ end
+ end
+
+ # MIME::Types#type_for against the default MIME::Types registry.
+ def type_for(filename)
+ __types__.type_for(filename)
+ end
+ alias_method :of, :type_for
+
+ # MIME::Types#add against the default MIME::Types registry.
+ def add(*types)
+ __types__.add(*types)
+ end
+
+ private
+
+ def lazy_load?
+ (lazy = ENV['RUBY_MIME_TYPES_LAZY_LOAD']) && (lazy != 'false')
+ end
+
+ def __types__
+ (defined?(@__types__) and @__types__) or load_default_mime_types
+ end
+
+ unless private_method_defined?(:load_mode)
+ def load_mode
+ { columnar: true }
+ end
+ end
+
+ def load_default_mime_types(mode = load_mode)
+ @__types__ = MIME::Types::Cache.load
+ unless @__types__
+ @__types__ = MIME::Types::Loader.load(mode)
+ MIME::Types::Cache.save(@__types__)
+ end
+ @__types__
+ end
+
+ def __instances__
+ @__instances__ ||= Set.new
+ end
+
+ def reindex_extensions(type)
+ __instances__.each do |instance|
+ instance.send(:reindex_extensions!, type)
+ end
+ true
+ end
+end
+
+##
+class MIME::Types
+ load_default_mime_types(load_mode) unless lazy_load?
+end
diff --git a/mime-types.gemspec b/mime-types.gemspec
index ab60ed0..7c92e0a 100644
--- a/mime-types.gemspec
+++ b/mime-types.gemspec
@@ -1,22 +1,22 @@
# -*- encoding: utf-8 -*-
-# stub: mime-types 2.6.2 ruby lib
+# stub: mime-types 3.0 ruby lib
Gem::Specification.new do |s|
s.name = "mime-types"
- s.version = "2.6.2"
+ s.version = "3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Austin Ziegler"]
- s.date = "2015-11-11"
- s.description = "The mime-types library provides a library and registry for information about\nMIME content type definitions. It can be used to determine defined filename\nextensions for MIME types, or to use filename extensions to look up the likely\nMIME type definitions.\n\nMIME content types are used in MIME-compliant communications, as in e-mail or\nHTTP traffic, to indicate the type of content which is transmitted. The\nmime-types library provides the ability for detailed information about MIME\nentities (provided as an enumerable collection of MIME::Type objects) to be\ndetermined and used. There are many types defined by RFCs and vendors, so the\nlist is long but by definition incomplete; don't hesitate to add additional\ntype definitions. MIME type definitions found in mime-types are from RFCs, W3C\nrecommendations, the {IANA Media Types\nregistry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and\nuser contributions. It conforms to RFCs 2045 and 2231.\n\nThis is release 2.6 with two new experimental features. The first new feature\nis a new default registry storage format that greatly reduces the initial\nmemory use of the mime-types library. This feature is enabled by requiring\n+mime/types/columnar+ instead of +mime/types+ with a small performance cost and\nno change in *total* memory use if certain methods are called (see {Columnar\nStore}[#label-Columnar+Store]). The second new feature is a logger interface\nthat conforms to the expectations of an ActiveSupport::Logger so that warnings\ncan be written to an application's log rather than the default location for\n+warn+. This interface may be used for other logging purposes in the future.\n\nmime-types 2.6 is the last planned version of mime-types 2.x, so deprecation\nwarnings are no longer cached but provided every time the method is called.\nmime-types 2.6 supports Ruby 1.9.2 or later."
+ s.date = "2015-11-21"
+ s.description = "The mime-types library provides a library and registry for information about\nMIME content type definitions. It can be used to determine defined filename\nextensions for MIME types, or to use filename extensions to look up the likely\nMIME type definitions.\n\nThis is release 3.0\u{2026}"
s.email = ["halostatue@gmail.com"]
- s.extra_rdoc_files = ["Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "docs/COPYING.txt", "docs/artistic.txt", "Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "README.rdoc"]
- s.files = [".autotest", ".gemtest", ".gitignore", ".hoerc", "Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "data/mime-types.json", "data/mime.content_type.column", "data/mime.docs.column", "data/mime.encoding.column", "data/mime.friendly.column", "data/mime.obsolete.column", "data/mime.references.column", "data/mime.registered.column", "data/mime.signature.column", "data/mime.system.column", "data/mime.use_instead.column", "data/mime.xrefs.column", "docs/COPYING.txt", "docs/artistic.txt", "lib/mime-types.rb", "lib/mime/type.rb", "lib/mime/type/columnar.rb", "lib/mime/types.rb", "lib/mime/types/cache.rb", "lib/mime/types/columnar.rb", "lib/mime/types/deprecations.rb", "lib/mime/types/loader.rb", "lib/mime/types/loader_path.rb", "lib/mime/types/logger.rb", "support/apache_mime_types.rb", "support/benchmarks/load.rb", "support/benchmarks/load_allocations.rb", "support/benchmarks/object_counts.rb", "support/convert.rb", "support/convert/columnar.rb", "support/iana_registry.rb", "test/bad-fixtures/malformed", "test/fixture/json.json", "test/fixture/old-data", "test/fixture/yaml.yaml", "test/minitest_helper.rb", "test/test_mime_type.rb", "test/test_mime_types.rb", "test/test_mime_types_cache.rb", "test/test_mime_types_class.rb", "test/test_mime_types_lazy.rb", "test/test_mime_types_loader.rb"]
+ s.extra_rdoc_files = ["Code-of-Conduct.rdoc", "Contributing.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc"]
+ s.files = [".autotest", ".gemtest", ".gitignore", ".hoerc", "Code-of-Conduct.rdoc", "Contributing.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "lib/mime-types.rb", "lib/mime/type.rb", "lib/mime/type/columnar.rb", "lib/mime/types.rb", "lib/mime/types/cache.rb", "lib/mime/types/columnar.rb", "lib/mime/types/container.rb", "lib/mime/types/deprecations.rb", "lib/mime/types/full.rb", "lib/mime/types/loader.rb", "lib/mime/types/logger.rb", "lib/mime/types/registry.rb", "support/benchmarks/load.rb", "support/benchmarks/load_allocations.rb", "support/benchmarks/object_counts.rb", "support/profile/columnar.rb", "support/profile/columnar_full.rb", "support/profile/full.rb", "test/bad-fixtures/malformed", "test/fixture/json.json", "test/fixture/old-data", "test/fixture/yaml.yaml", "test/minitest_helper.rb", "test/test_mime_type.rb", "test/test_mime_types.rb", "test/test_mime_types_cache.rb", "test/test_mime_types_class.rb", "test/test_mime_types_lazy.rb", "test/test_mime_types_loader.rb"]
s.homepage = "https://github.com/mime-types/ruby-mime-types/"
- s.licenses = ["MIT", "Artistic 2.0", "GPL-2"]
+ s.licenses = ["MIT"]
s.rdoc_options = ["--main", "README.rdoc"]
- s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
+ s.required_ruby_version = Gem::Requirement.new(">= 2.0")
s.rubygems_version = "2.4.8"
s.summary = "The mime-types library provides a library and registry for information about MIME content type definitions"
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
+ s.add_runtime_dependency(%q<mime-types-data>, ["~> 3.2015"])
s.add_development_dependency(%q<minitest>, ["~> 5.8"])
s.add_development_dependency(%q<rdoc>, ["~> 4.0"])
s.add_development_dependency(%q<hoe-doofus>, ["~> 1.0"])
@@ -33,15 +34,14 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<hoe-travis>, ["~> 1.2"])
s.add_development_dependency(%q<minitest-autotest>, ["~> 1.0"])
s.add_development_dependency(%q<minitest-focus>, ["~> 1.0"])
+ s.add_development_dependency(%q<minitest-bonus-assertions>, ["~> 2.0"])
s.add_development_dependency(%q<rake>, ["~> 10.0"])
s.add_development_dependency(%q<fivemat>, ["~> 1.3"])
s.add_development_dependency(%q<minitest-rg>, ["~> 5.2"])
- if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
- s.add_development_dependency(%q<simplecov>, ["~> 0.7"])
- s.add_development_dependency(%q<coveralls>, ["~> 0.8"])
- end
+ s.add_development_dependency(%q<simplecov>, ["~> 0.7"])
s.add_development_dependency(%q<hoe>, ["~> 3.14"])
else
+ s.add_dependency(%q<mime-types-data>, ["~> 3.2015"])
s.add_dependency(%q<minitest>, ["~> 5.8"])
s.add_dependency(%q<rdoc>, ["~> 4.0"])
s.add_dependency(%q<hoe-doofus>, ["~> 1.0"])
@@ -51,16 +51,15 @@ Gem::Specification.new do |s|
s.add_dependency(%q<hoe-travis>, ["~> 1.2"])
s.add_dependency(%q<minitest-autotest>, ["~> 1.0"])
s.add_dependency(%q<minitest-focus>, ["~> 1.0"])
+ s.add_dependency(%q<minitest-bonus-assertions>, ["~> 2.0"])
s.add_dependency(%q<rake>, ["~> 10.0"])
s.add_dependency(%q<fivemat>, ["~> 1.3"])
s.add_dependency(%q<minitest-rg>, ["~> 5.2"])
- if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
- s.add_dependency(%q<simplecov>, ["~> 0.7"])
- s.add_dependency(%q<coveralls>, ["~> 0.8"])
- end
+ s.add_dependency(%q<simplecov>, ["~> 0.7"])
s.add_dependency(%q<hoe>, ["~> 3.14"])
end
else
+ s.add_dependency(%q<mime-types-data>, ["~> 3.2015"])
s.add_dependency(%q<minitest>, ["~> 5.8"])
s.add_dependency(%q<rdoc>, ["~> 4.0"])
s.add_dependency(%q<hoe-doofus>, ["~> 1.0"])
@@ -70,13 +69,11 @@ Gem::Specification.new do |s|
s.add_dependency(%q<hoe-travis>, ["~> 1.2"])
s.add_dependency(%q<minitest-autotest>, ["~> 1.0"])
s.add_dependency(%q<minitest-focus>, ["~> 1.0"])
+ s.add_dependency(%q<minitest-bonus-assertions>, ["~> 2.0"])
s.add_dependency(%q<rake>, ["~> 10.0"])
s.add_dependency(%q<fivemat>, ["~> 1.3"])
s.add_dependency(%q<minitest-rg>, ["~> 5.2"])
- if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.0')
- s.add_dependency(%q<simplecov>, ["~> 0.7"])
- s.add_dependency(%q<coveralls>, ["~> 0.8"])
- end
+ s.add_dependency(%q<simplecov>, ["~> 0.7"])
s.add_dependency(%q<hoe>, ["~> 3.14"])
end
end
diff --git a/support/apache_mime_types.rb b/support/apache_mime_types.rb
deleted file mode 100644
index faaf098..0000000
--- a/support/apache_mime_types.rb
+++ /dev/null
@@ -1,108 +0,0 @@
-# -*- ruby encoding: utf-8 -*-
-
-$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
-
-require 'open-uri'
-require 'nokogiri'
-require 'cgi'
-require 'pathname'
-require 'yaml'
-
-ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
-require 'mime/types'
-
-class MIME::Type
- public_constant :UNREGISTERED_RE
-end
-
-class MIME::Types
- def self.deprecated(*_args, &_block)
- # We are an internal tool. Silence deprecation warnings.
- end
-end
-
-class ApacheMIMETypes
- DEFAULTS = {
- url: %q(http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types),
- to: Pathname(__FILE__).join('../../type-lists')
- }.freeze.each_value(&:freeze)
-
- def self.download(options = {})
- dest = Pathname(options[:to] || DEFAULTS[:to]).expand_path
- url = options.fetch(:url, DEFAULTS[:url])
-
- puts 'Downloading Apache MIME type list.'
- puts "\t#{url}"
- data = open(url) { |f| f.read }.split($/)
- data.delete_if { |line| line =~ /\A#/ }
-
- conf = MIME::Types::Container.new
-
- data.each do |line|
- type = line.split(/\t+/)
- key = type.first.split(%r{/}).first.gsub(MIME::Type::UNREGISTERED_RE, '')
- conf[key] << type
- end
-
- conf.each do |type, types|
- next if type == 'example'
-
- new(type: type, registry: types, to: dest) do |parser|
- puts "Extracting #{parser.type}/*."
- parser.parse
- parser.save
- end
- end
- end
-
- attr_reader :type
-
- def initialize(options = {})
- @registry = options.fetch(:registry)
- @to = Pathname(options.fetch(:to)).expand_path
- @type = options.fetch(:type)
- @name = "#{@type}.yaml"
- @file = @to.join(@name)
- @types = mime_types_for(@file)
-
- yield self if block_given?
- end
-
- def parse
- @registry.each do |record|
- content_type = record.first
- extensions = record.last.split(/\s+/)
-
- types = @types.select { |t|
- (t.content_type.downcase == content_type.downcase)
- }
-
- if types.empty?
- MIME::Type.new(content_type) do |mt|
- mt.extensions = extensions
- mt.registered = false
- @types << mt
- end
- else
- types.each { |mt|
- mt.extensions = (mt.extensions + extensions)
- }
- end
- end
- end
-
- def save
- @to.mkpath
- File.open(@file, 'wb') { |f| f.puts @types.map.to_a.sort.to_yaml }
- end
-
- private
-
- def mime_types_for(file)
- if file.exist?
- MIME::Types::Loader.load_from_yaml(file)
- else
- MIME::Types.new
- end
- end
-end
diff --git a/support/benchmarks/load.rb b/support/benchmarks/load.rb
index 3dd23c8..766da34 100644
--- a/support/benchmarks/load.rb
+++ b/support/benchmarks/load.rb
@@ -1,6 +1,7 @@
# -*- ruby encoding: utf-8 -*-
require 'benchmark'
+require 'mime/types'
module Benchmarks
class Load
@@ -11,47 +12,47 @@ module Benchmarks
def initialize(load_path, repeats = nil)
@cache_file = File.expand_path('../cache.mtc', __FILE__)
@repeats = repeats.to_i
- @repeats = 50 if repeats <= 0
+ @repeats = 50 if @repeats <= 0
@load_path = load_path
end
- def reload_mime_types(repeats = 1, options = {})
- force_load = options.fetch(:force_load, false)
- columnar = options.fetch(:columnar, false)
+ def reload_mime_types(repeats = 1, force: false, columnar: false, cache: false)
+ loader = MIME::Types::Loader.new
repeats.times {
- Object.send(:remove_const, :MIME) if defined? ::MIME
- $LOADED_FEATURES.delete_if { |n| n =~ /#{@load_path}/ }
-
- if columnar
- require 'mime/types/columnar'
- else
- require 'mime/types'
+ types = MIME::Types::Cache.load if cache
+ unless types
+ types = loader.load(columnar: columnar)
+ MIME::Types::Cache.save(types) if cache
end
- ::MIME::Types.send(:__types__) if force_load
+ types.first.to_h if force
}
end
def report
remove_cache
- Benchmark.bm(17) do |mark|
- mark.report('Normal:') { reload_mime_types(@repeats) }
- mark.report('Columnar:') { reload_mime_types(@repeats, columnar: true) }
-
- ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
- mark.report('Lazy:') { reload_mime_types(@repeats) }
- mark.report('Lazy+Load:') { reload_mime_types(@repeats, force_load: true) }
-
- ENV.delete('RUBY_MIME_TYPES_LAZY_LOAD')
+ Benchmark.bm(30) do |mark|
+ mark.report('Normal') { reload_mime_types(@repeats) }
+ mark.report('Columnar') {
+ reload_mime_types(@repeats, columnar: true)
+ }
+ mark.report('Columnar Full') {
+ reload_mime_types(@repeats, columnar: true, force: true)
+ }
ENV['RUBY_MIME_TYPES_CACHE'] = @cache_file
- reload_mime_types
+ mark.report('Cache Initialize') { reload_mime_types(cache: true) }
+ mark.report('Cached') { reload_mime_types(@repeats, cache: true) }
- mark.report('Cached:') { reload_mime_types(@repeats) }
- ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
- mark.report('Lazy Cached:') { reload_mime_types(@repeats) }
- mark.report('Lazy Cached Load:') { reload_mime_types(@repeats, force_load: true) }
+ remove_cache
+ ENV['RUBY_MIME_TYPES_CACHE'] = @cache_file
+ mark.report('Columnar Cache Initialize') {
+ reload_mime_types(columnar: true, cache: true)
+ }
+ mark.report('Columnar Cached') {
+ reload_mime_types(@repeats, columnar: true, cache: true)
+ }
end
ensure
remove_cache
diff --git a/support/benchmarks/load_allocations.rb b/support/benchmarks/load_allocations.rb
index 39e1f3a..82ebfbb 100644
--- a/support/benchmarks/load_allocations.rb
+++ b/support/benchmarks/load_allocations.rb
@@ -14,13 +14,18 @@ end
module Benchmarks
class LoadAllocations
- def self.report(columnar: false, top_x: nil, mime_types_only: false)
- new(columnar: columnar, top_x: top_x, mime_types_only: mime_types_only).
- report
+ def self.report(columnar: false, full: false, top_x: nil, mime_types_only: false)
+ new(
+ columnar: columnar,
+ top_x: top_x,
+ mime_types_only: mime_types_only,
+ full: full
+ ).report
end
- def initialize(columnar: false, top_x: nil, mime_types_only: false)
- @columnar = columnar
+ def initialize(columnar: false, full: false, top_x: nil, mime_types_only: false)
+ @columnar = !!columnar
+ @full = !!full
@mime_types_only = !!mime_types_only
@top_x = top_x
@@ -68,11 +73,13 @@ module Benchmarks
def collect
if @columnar
@allocations = ObjectSpace::AllocationTracer.trace do
- require 'mime/types/columnar'
+ require 'mime/types'
+
+ MIME::Types.first.to_h if @full
end
else
@allocations = ObjectSpace::AllocationTracer.trace do
- require 'mime/types'
+ require 'mime/types/full'
end
end
diff --git a/support/benchmarks/object_counts.rb b/support/benchmarks/object_counts.rb
index 0d13f8d..88cf9ab 100644
--- a/support/benchmarks/object_counts.rb
+++ b/support/benchmarks/object_counts.rb
@@ -2,12 +2,13 @@
module Benchmarks
class ObjectCounts
- def self.report(columnar: false)
+ def self.report(columnar: false, full: false)
new(columnar: columnar).report
end
- def initialize(columnar: false)
+ def initialize(columnar: false, full: false)
@columnar = columnar
+ @full = full
end
def report
@@ -25,9 +26,10 @@ module Benchmarks
@before = count_objects
if @columnar
- require 'mime/types/columnar'
- else
require 'mime/types'
+ MIME::Types.first.to_h if @full
+ else
+ require 'mime/types/full'
end
@after = count_objects
diff --git a/support/convert.rb b/support/convert.rb
deleted file mode 100644
index 581a997..0000000
--- a/support/convert.rb
+++ /dev/null
@@ -1,158 +0,0 @@
-# -*- ruby encoding: utf-8 -*-
-
-$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
-ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'true'
-require 'mime/types'
-require 'fileutils'
-require 'json'
-
-class MIME::Types
- def self.deprecated(*_args, &_block)
- # We are an internal tool. Silence deprecation warnings.
- end
-end
-
-class Convert
- class << self
- # Create a Convert instance that converts from YAML.
- def from_yaml(path = nil)
- new(path: path, from: :yaml)
- end
-
- # Create a Convert instance that converts from JSON.
- def from_json(path = nil)
- new(path: path, from: :json)
- end
-
- # Create a Convert instance that converts from the mime-types 1.x file
- # format.
- def from_v1(path = nil)
- new(path: path, from: :v1)
- end
-
- # Converts from YAML to JSON. Defaults to converting to a single file.
- def from_yaml_to_json(args)
- from_yaml(yaml_path(args.source)).
- to_json(
- destination: json_path(args.destination),
- multiple_files: multiple_files(args.multiple_files || 'single')
- )
- end
-
- # Converts from JSON to YAML. Defaults to converting to multiple files.
- def from_json_to_yaml(args)
- from_json(json_path(args.source)).
- to_yaml(
- destination: yaml_path(args.destination),
- multiple_files: multiple_files(args.multiple_files || 'multiple')
- )
- end
-
- private :new
-
- private
-
- def yaml_path(path)
- path_or_default(path, 'type-lists'.freeze)
- end
-
- def json_path(path)
- path_or_default(path, 'data'.freeze)
- end
-
- def path_or_default(path, default)
- if path.nil? or path.empty?
- default
- else
- path
- end
- end
-
- def multiple_files(flag)
- case flag.to_s.downcase
- when 'true', 'yes', 'multiple'
- true
- else
- false
- end
- end
- end
-
- def initialize(options = {})
- if options[:path].nil? or options[:path].empty?
- fail ArgumentError, ':path is required'
- elsif options[:from].nil? or options[:from].empty?
- fail ArgumentError, ':from is required'
- end
-
- @loader = MIME::Types::Loader.new(options[:path])
- load_from(options[:from])
- end
-
- # Convert the data to JSON.
- def to_json(options = {})
- options[:destination] or require_destination!
- write_types(options.merge(format: :json))
- end
-
- # Convert the data to YAML.
- def to_yaml(options = {})
- options[:destination] or require_destination!
- write_types(options.merge(format: :yaml))
- end
-
- private
-
- def load_from(source_type)
- method = :"load_#{source_type}"
- @loader.send(method)
- end
-
- def write_types(options)
- if options[:multiple_files]
- write_multiple_files(options)
- else
- write_one_file(options)
- end
- end
-
- def write_one_file(options)
- d = options[:destination]
- d = File.join(d, "mime-types.#{options[:format]}") if File.directory?(d)
-
- File.open(d, 'wb') { |f|
- f.puts convert(@loader.container.map.sort, options[:format])
- }
- end
-
- def write_multiple_files(options)
- d = options[:destination]
- must_be_directory!(d)
-
- media_types = MIME::Types.map(&:media_type).uniq
- media_types.each { |media_type|
- n = File.join(d, "#{media_type}.#{options[:format]}")
- t = @loader.container.select { |e| e.media_type == media_type }
- File.open(n, 'wb') { |f|
- f.puts convert(t.sort, options[:format])
- }
- }
- end
-
- def convert(data, format)
- data.send(:"to_#{format}")
- end
-
- def require_destination!
- fail ArgumentError, 'Destination path is required.'
- end
-
- def must_be_directory!(path)
- if File.exist?(path) and !File.directory?(path)
- fail ArgumentError, 'Cannot write multiple files to a file.'
- end
-
- FileUtils.mkdir_p(path) unless File.exist?(path)
- path
- end
-end
diff --git a/support/convert/columnar.rb b/support/convert/columnar.rb
deleted file mode 100644
index 8aee2dc..0000000
--- a/support/convert/columnar.rb
+++ /dev/null
@@ -1,90 +0,0 @@
-require 'convert'
-
-class Convert::Columnar < Convert
- class << self
- # Converts from YAML to Columnar format. This *always* converts to multiple
- # files.
- def from_yaml_to_columnar(args)
- from_yaml(yaml_path(args.source)).
- to_columnar(destination: columnar_path(args.destination))
- end
-
- private
-
- def columnar_path(path)
- path_or_default(path, 'data')
- end
- end
-
- # Convert the data to multiple text files.
- def to_columnar(options = {})
- root = options[:destination] or require_destination!
- @root = must_be_directory!(root)
- @data = @loader.container.sort.map(&:to_h)
-
- column_file('content_type') do |type|
- [ type['content-type'], Array(type['extensions']).join(' ') ].
- flatten.join(' ').strip
- end
-
- required_file('encoding')
- optional_file('docs')
- optional_file('system')
- bool_file('obsolete')
- bool_file('registered')
- bool_file('signature')
- array_file('references')
- dict_file('xrefs')
- dict_file('friendly')
- optional_file('use_instead', 'use-instead')
- end
-
- def column_file(name, &block)
- File.open(File.join(@root, "mime.#{name}.column"), 'wb') do |f|
- f.puts @data.map(&block)
- end
- end
-
- def bool_file(name, *fields)
- fields = [ name ] if fields.empty?
- column_file(name) do |type|
- fields.map { |field|
- type[field] ? 1 : 0
- }.join(' ')
- end
- end
-
- def required_file(name, field = name)
- column_file(name) { |type| type[field] }
- end
-
- def optional_file(name, field = name)
- column_file(name) { |type| opt(type[field]) }
- end
-
- def array_file(name, field = name)
- column_file(name) { |type| arr(type[field]) }
- end
-
- def dict_file(name, field = name)
- column_file(name) { |type| dict(type[field]) }
- end
-
- def opt(value)
- value || '-'
- end
-
- def arr(value)
- Array(opt(value)).join('|')
- end
-
- def dict(value)
- if value
- value.sort.map { |k, v|
- [ k, Array(v).compact.join('^') ].join('^')
- }.join('|')
- else
- '-'
- end
- end
-end
diff --git a/support/iana_registry.rb b/support/iana_registry.rb
deleted file mode 100644
index 0b86a82..0000000
--- a/support/iana_registry.rb
+++ /dev/null
@@ -1,170 +0,0 @@
-# -*- ruby encoding: utf-8 -*-
-
-$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
-
-require 'open-uri'
-require 'nokogiri'
-require 'cgi'
-require 'pathname'
-require 'yaml'
-
-ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
-require 'mime/types'
-
-class MIME::Types
- def self.deprecated(*_args, &_block)
- # We are an internal tool. Silence deprecation warnings.
- end
-end
-
-class IANARegistry
- DEFAULTS = {
- url: %q(https://www.iana.org/assignments/media-types/media-types.xml),
- to: Pathname(__FILE__).join('../../type-lists')
- }.freeze.each_value(&:freeze)
-
- def self.download(options = {})
- dest = Pathname(options[:to] || DEFAULTS[:to]).expand_path
- url = options.fetch(:url, DEFAULTS[:url])
-
- puts 'Downloading IANA MIME type assignments.'
- puts "\t#{url}"
- xml = Nokogiri::XML(open(url) { |f| f.read })
-
- xml.css('registry registry').each do |registry|
- next if registry.at_css('title').text == 'example'
- new(registry: registry, to: dest) do |parser|
- puts "Extracting #{parser.type}/*."
- parser.parse
- parser.save
- end
- end
- end
-
- attr_reader :type
-
- def initialize(options = {})
- @registry = options.fetch(:registry)
- @to = Pathname(options.fetch(:to)).expand_path
- @type = @registry.at_css('title').text
- @name = "#{@type}.yaml"
- @file = @to.join(@name)
- @types = mime_types_for(@file)
-
- yield self if block_given?
- end
-
- ASSIGNMENT_FILE_REF = '{%s=http://www.iana.org/assignments/media-types/%s}'
-
- def parse
- @registry.css('record').each do |record|
- subtype = record.at_css('name').text
- obsolete = record.at_css('obsolete').text rescue nil
- use_instead = record.at_css('deprecated').text rescue nil
-
- if subtype =~ /OBSOLETE|DEPRECATE/i
- use_instead ||= $1 if subtype =~ /in favou?r of (.*)/
- obsolete = true
- end
-
- subtype, notes = subtype.split(/ /, 2)
-
- refs, xrefs = parse_refs_and_files(
- record.css('xref'),
- record.css('file'),
- subtype
- )
-
- xrefs['notes'] << notes if notes
-
- content_type = [ @type, subtype ].join('/')
-
- types = @types.select { |t|
- (t.content_type.downcase == content_type.downcase)
- }
-
- if types.empty?
- MIME::Type.new(content_type) do |mt|
- mt.references = %w(IANA) + refs
- mt.xrefs = xrefs
- mt.registered = true
- mt.obsolete = obsolete if obsolete
- mt.use_instead = use_instead if use_instead
- @types << mt
- end
- else
- types.each { |mt|
- mt.references = %w(IANA) + refs
- mt.registered = true
- mt.xrefs = xrefs
- mt.obsolete = obsolete if obsolete
- mt.use_instead = use_instead if use_instead
- }
- end
- end
- end
-
- def save
- @to.mkpath
- File.open(@file, 'wb') { |f| f.puts @types.map.to_a.sort.uniq.to_yaml }
- end
-
- private
-
- def mime_types_for(file)
- if file.exist?
- MIME::Types::Loader.load_from_yaml(file)
- else
- MIME::Types.new
- end
- end
-
- def parse_refs_and_files(refs, files, subtype)
- xr = MIME::Types::Container.new
- r = []
-
- refs.each do |xref|
- type = xref['type']
- data = xref['data']
-
- next if data.nil? || data.empty?
-
- r << ref_from_type(type, data)
-
- xr[type] << data
- end
-
- files.each do |file|
- file_name = if file.text == subtype
- [ @type, subtype ].join('/')
- else
- file.text
- end
-
- if file['type'] == 'template'
- r << (ASSIGNMENT_FILE_REF % [ file_name, file_name ])
- end
-
- xr[file['type']] << file_name
- end
-
- [ r, xr ]
- end
-
- def ref_from_type(type, data)
- case type
- when 'person'
- "[#{data}]"
- when 'rfc'
- data.upcase
- when 'draft'
- "DRAFT:#{data.sub(/^RFC-/, 'draft-')}"
- when 'rfc-errata'
- "{RFC Errata #{data}=http://www.rfc-editor.org/errata_search.php?eid=#{data}}"
- when 'uri'
- "{#{data}}"
- else # 'text' or something else
- data
- end
- end
-end
diff --git a/support/profile/columnar.rb b/support/profile/columnar.rb
new file mode 100644
index 0000000..baf4bae
--- /dev/null
+++ b/support/profile/columnar.rb
@@ -0,0 +1,5 @@
+loader = MIME::Types::Loader.new
+
+50.times do
+ loader.load(columnar: true)
+end
diff --git a/support/profile/columnar_full.rb b/support/profile/columnar_full.rb
new file mode 100644
index 0000000..ec8b918
--- /dev/null
+++ b/support/profile/columnar_full.rb
@@ -0,0 +1,5 @@
+loader = MIME::Types::Loader.new
+
+50.times do
+ loader.load(columnar: true).first.to_h
+end
diff --git a/support/profile/full.rb b/support/profile/full.rb
new file mode 100644
index 0000000..8c1869d
--- /dev/null
+++ b/support/profile/full.rb
@@ -0,0 +1,5 @@
+loader = MIME::Types::Loader.new
+
+50.times do
+ loader.load(columnar: false)
+end
diff --git a/test/fixture/json.json b/test/fixture/json.json
index 9f410c3..4c65663 100644
--- a/test/fixture/json.json
+++ b/test/fixture/json.json
@@ -1 +1 @@
-[{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","references":["IANA","RFC4536"],"registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/QCELP","references":["IANA","RFC3625"],"registered":true},{"content-type":"image/bmp","encoding":"base64","extensions":["bmp"],"obsolete":true,"use-instead":"image/x-bmp","registered":false},{"content-type":"application/acad","encoding":"base64","references":["LTSW"],"registered":false},{"content-type":"audio/webm","encoding":"base64","extensions":["webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"registered":false},{"content-type":"image/pjpeg","docs":"Fixes a bug with IE6 and progressive JPEGs","encoding":"base64","registered":false},{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015"],"registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015"],"registered":true},{"content-type":"application/x-apple-diskimage","encoding":"base64","extensions":["dmg"],"registered":false,"system":"mac"}]
+[{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/QCELP","registered":true},{"content-type":"image/bmp","encoding":"base64","extensions":["bmp"],"obsolete":true,"use-instead":"image/x-bmp","registered":false},{"content-type":"application/acad","encoding":"base64","registered":false},{"content-type":"audio/webm","encoding":"base64","extensions":["webm"],"registered":false},{"content-type":"image/pjpeg","docs":"Fixes a bug with IE6 and progressive JPEGs","encoding":"base64","registered":false},{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","registered":true},{"content-type":"application/x-apple-diskimage","encoding":"base64","extensions":["dmg"],"registered":false}]
diff --git a/test/fixture/yaml.yaml b/test/fixture/yaml.yaml
index ea644d0..6e72bbf 100644
--- a/test/fixture/yaml.yaml
+++ b/test/fixture/yaml.yaml
@@ -7,9 +7,6 @@
- smil
obsolete: true
use-instead: application/smil+xml
- references:
- - IANA
- - RFC4536
registered: true
- !ruby/object:MIME::Type
content-type: audio/vnd.qcelp
@@ -18,9 +15,6 @@
- qcp
obsolete: true
use-instead: audio/QCELP
- references:
- - IANA
- - RFC3625
registered: true
- !ruby/object:MIME::Type
content-type: image/bmp
@@ -33,16 +27,12 @@
- !ruby/object:MIME::Type
content-type: application/acad
encoding: base64
- references:
- - LTSW
registered: false
- !ruby/object:MIME::Type
content-type: audio/webm
encoding: base64
extensions:
- webm
- references:
- - ! '{WebM=http://www.webmproject.org/code/specs/container/}'
registered: false
- !ruby/object:MIME::Type
content-type: image/pjpeg
@@ -52,16 +42,10 @@
- !ruby/object:MIME::Type
content-type: application/1d-interleaved-parityfec
encoding: base64
- references:
- - IANA
- - RFC6015
registered: true
- !ruby/object:MIME::Type
content-type: audio/1d-interleaved-parityfec
encoding: base64
- references:
- - IANA
- - RFC6015
registered: true
- !ruby/object:MIME::Type
content-type: application/x-apple-diskimage
@@ -69,4 +53,3 @@
extensions:
- dmg
registered: false
- system: !ruby/regexp /mac/
diff --git a/test/minitest_helper.rb b/test/minitest_helper.rb
index 9e5ba6f..dc89002 100644
--- a/test/minitest_helper.rb
+++ b/test/minitest_helper.rb
@@ -7,16 +7,6 @@ gem 'minitest'
require 'fivemat/minitest/autorun'
require 'minitest/focus'
require 'minitest/rg'
+require 'minitest-bonus-assertions'
-module Minitest::MIMEDeprecated
- def assert_deprecated name, message = 'and will be removed'
- name = Regexp.escape(name)
- message = Regexp.escape(message)
-
- assert_output nil, /#{name} is deprecated #{message}./ do
- yield
- end
- end
-
- Minitest::Test.send(:include, self)
-end
+ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
diff --git a/test/test_mime_type.rb b/test/test_mime_type.rb
index e6f23b2..5cc0be9 100644
--- a/test/test_mime_type.rb
+++ b/test/test_mime_type.rb
@@ -3,13 +3,21 @@
require 'mime/types'
require 'minitest_helper'
-class TestMIMEType < Minitest::Test
- def make(content_type)
+describe MIME::Type do
+ # it { fail }
+
+ def mime_type(content_type)
MIME::Type.new(content_type) { |mt| yield mt if block_given? }
end
- def make_javascript
- make('application/javascript') do |js|
+ let(:x_appl_x_zip) {
+ mime_type('x-appl/x-zip') { |t| t.extensions = %w(zip zp) }
+ }
+ let(:text_plain) { mime_type('text/plain') }
+ let(:text_html) { mime_type('text/html') }
+ let(:image_jpeg) { mime_type('image/jpeg') }
+ let(:application_javascript) {
+ mime_type('application/javascript') do |js|
js.friendly('en' => 'JavaScript')
js.xrefs = {
'rfc' => %w(rfc4239 rfc4239),
@@ -17,652 +25,579 @@ class TestMIMEType < Minitest::Test
}
js.encoding = '8bit'
js.extensions = %w(js sj)
- assert_deprecated('MIME::Type#references=') do
- js.references = %w(IANA RFC4329 {application/javascript=http://www.iana.org/assignments/media-types/application/javascript})
- end
js.registered = true
-
- yield js if block_given?
end
- end
-
- def make_yaml_mime_type
- make('text/x-yaml') do |yaml|
+ }
+ let(:text_x_yaml) {
+ mime_type('text/x-yaml') do |yaml|
yaml.extensions = %w(yaml yml)
yaml.encoding = '8bit'
- yaml.system = 'd9d172f608'
yaml.friendly('en' => 'YAML Structured Document')
end
- end
+ }
+ let(:text_x_yaml_with_docs) {
+ text_x_yaml.dup.tap do |yaml|
+ yaml.docs = 'Test YAML'
+ end
+ }
- def make_yaml_mime_type_with_docs
- make('text/x-yaml') do |yaml|
- yaml.extensions = %w(yaml yml)
- yaml.encoding = '8bit'
- yaml.system = 'd9d172f608'
- yaml.docs = 'Test YAML'
+ describe '.simplified' do
+ it 'leaves normal types alone' do
+ assert_equal 'text/plain', MIME::Type.simplified('text/plain')
+ end
+
+ it 'does not remove x- prefixes by default' do
+ assert_equal 'application/x-msword',
+ MIME::Type.simplified('application/x-msword')
+ assert_equal 'x-xyz/abc', MIME::Type.simplified('x-xyz/abc')
+ end
+
+ it 'removes x- prefixes when requested' do
+ assert_equal 'application/msword',
+ MIME::Type.simplified('application/x-msword', remove_x_prefix: true)
+ assert_equal 'xyz/abc',
+ MIME::Type.simplified('x-xyz/abc', remove_x_prefix: true)
+ end
+
+ it 'lowercases mixed-case types' do
+ assert_equal 'text/vcard', MIME::Type.simplified('text/vCard')
+ end
+
+ it 'returns nil when the value provided is not a valid content type' do
+ assert_nil MIME::Type.simplified('text')
end
end
- def setup
- @applzip = MIME::Type.new('x-appl/x-zip') { |t|
- t.extensions = %w(zip zp)
- }
+ describe '.i18n_key' do
+ it 'converts text/plain to text.plain' do
+ assert_equal 'text.plain', MIME::Type.i18n_key('text/plain')
+ end
+
+ it 'does not remove x-prefixes' do
+ assert_equal 'application.x-msword',
+ MIME::Type.i18n_key('application/x-msword')
+ end
+
+ it 'converts text/vCard to text.vcard' do
+ assert_equal 'text.vcard', MIME::Type.i18n_key('text/vCard')
+ end
+
+ it 'returns nil when the value provided is not a valid content type' do
+ assert_nil MIME::Type.i18n_key('text')
+ end
end
- def test_class_from_array
- yaml = nil
- assert_deprecated('MIME::Type.from_array') do
- yaml = MIME::Type.from_array(
- 'text/x-yaml',
- %w(yaml yml),
- '8bit',
- 'd9d172f608'
+ describe '.new' do
+ it 'fails if an invalid content type is provided' do
+ exception = assert_raises MIME::Type::InvalidContentType do
+ MIME::Type.new('apps')
+ end
+ assert_equal 'Invalid Content-Type "apps"', exception.to_s
+ end
+
+ it 'creates a valid content type just from a string' do
+ type = MIME::Type.new('text/x-yaml')
+
+ assert_instance_of MIME::Type, type
+ assert_equal 'text/x-yaml', type.content_type
+ end
+
+ it 'yields the content type in a block' do
+ MIME::Type.new('text/x-yaml') do |type|
+ assert_instance_of MIME::Type, type
+ assert_equal 'text/x-yaml', type.content_type
+ end
+ end
+
+ it 'creates a valid content type from a hash' do
+ type = MIME::Type.new(
+ 'content-type' => 'text/x-yaml',
+ 'obsolete' => true
)
+ assert_instance_of MIME::Type, type
+ assert_equal 'text/x-yaml', type.content_type
+ assert type.obsolete?
end
- assert_instance_of(MIME::Type, yaml)
- assert_equal('text/yaml', yaml.simplified)
- assert_deprecated('MIME::Type.from_array') do
- assert_raises(ArgumentError) { MIME::Type.from_array }
+
+ it 'creates a valid content type from an array' do
+ type = MIME::Type.new(%w(text/x-yaml yaml yml yz))
+ assert_instance_of MIME::Type, type
+ assert_equal 'text/x-yaml', type.content_type
+ assert_equal %w(yaml yml yz), type.extensions
end
end
- def test_class_from_hash
- yaml = nil
- assert_deprecated('MIME::Type.from_hash') do
- yaml = MIME::Type.from_hash('Content-Type' => 'text/x-yaml',
- 'Content-Transfer-Encoding' => '8bit',
- 'System' => 'd9d172f608',
- 'Extensions' => %w(yaml yml))
+ describe '#like?' do
+ it 'compares two MIME::Types on #simplified values without x- prefixes' do
+ assert text_plain.like?(text_plain)
+ refute text_plain.like?(text_html)
end
- assert_instance_of(MIME::Type, yaml)
- assert_equal('text/yaml', yaml.simplified)
- end
- def test_class_from_mime_type
- zip2 = nil
- assert_deprecated('MIME::Type.from_mime_type') do
- zip2 = MIME::Type.from_mime_type(@applzip)
+ it 'compares MIME::Type against string without x- prefixes' do
+ assert text_plain.like?(text_plain.to_s)
+ refute text_plain.like?(text_html.to_s)
end
- assert_instance_of(MIME::Type, @applzip)
- assert_equal('appl/zip', @applzip.simplified)
- refute_equal(@applzip.object_id, zip2.object_id)
end
- def test_class_simplified
- assert_equal('text/plain', MIME::Type.simplified('text/plain'))
- assert_equal('image/jpeg', MIME::Type.simplified('image/jpeg'))
- assert_equal('application/msword', MIME::Type.simplified('application/x-msword'))
- assert_equal('text/vcard', MIME::Type.simplified('text/vCard'))
- assert_equal('application/pkcs7-mime', MIME::Type.simplified('application/pkcs7-mime'))
- assert_equal('xyz/abc', MIME::Type.simplified('x-xyz/abc'))
- assert_nil(MIME::Type.simplified('text'))
- end
+ describe '#<=>' do
+ it 'correctly compares identical types' do
+ assert_equal text_plain, text_plain
+ end
- def test_class_i18n_key
- assert_equal('text.plain', MIME::Type.i18n_key('text/plain'))
- assert_equal('image.jpeg', MIME::Type.i18n_key('image/jpeg'))
- assert_equal('application.msword', MIME::Type.i18n_key('application/x-msword'))
- assert_equal('text.vcard', MIME::Type.i18n_key('text/vCard'))
- assert_equal('application.pkcs7-mime', MIME::Type.i18n_key('application/pkcs7-mime'))
- assert_equal('xyz.abc', MIME::Type.i18n_key('x-xyz/abc'))
- assert_nil(MIME::Type.i18n_key('text'))
- end
+ it 'correctly compares equivalent types' do
+ right = mime_type('text/Plain')
+ refute_same text_plain, right
+ assert_equal text_plain, right
+ end
- def test_spaceship_compare # '<=>'
- assert(MIME::Type.new('text/plain') == MIME::Type.new('text/plain')) # rubocop:disable Lint/UselessComparison
- assert(MIME::Type.new('text/plain') != MIME::Type.new('image/jpeg'))
- assert(MIME::Type.new('text/plain') == 'text/plain')
- assert(MIME::Type.new('text/plain') != 'image/jpeg')
- assert(MIME::Type.new('text/plain') > MIME::Type.new('text/html'))
- assert(MIME::Type.new('text/plain') > 'text/html')
- assert(MIME::Type.new('text/html') < MIME::Type.new('text/plain'))
- assert(MIME::Type.new('text/html') < 'text/plain')
- assert('text/html' == MIME::Type.new('text/html'))
- assert('text/html' < MIME::Type.new('text/plain'))
- assert('text/plain' > MIME::Type.new('text/html'))
- end
+ it 'correctly compares types that sort earlier' do
+ refute_equal text_html, text_plain
+ assert_operator text_html, :<, text_plain
+ end
- def test_ascii_eh
- assert(MIME::Type.new('text/plain').ascii?)
- refute(MIME::Type.new('image/jpeg').ascii?)
- refute(MIME::Type.new('application/x-msword').ascii?)
- assert(MIME::Type.new('text/vCard').ascii?)
- refute(MIME::Type.new('application/pkcs7-mime').ascii?)
- refute(@applzip.ascii?)
- end
+ it 'correctly compares types that sort later' do
+ refute_equal text_plain, text_html
+ assert_operator text_plain, :>, text_html
+ end
- def test_binary_eh
- refute(MIME::Type.new('text/plain').binary?)
- assert(MIME::Type.new('image/jpeg').binary?)
- assert(MIME::Type.new('application/x-msword').binary?)
- refute(MIME::Type.new('text/vCard').binary?)
- assert(MIME::Type.new('application/pkcs7-mime').binary?)
- assert(@applzip.binary?)
- end
+ it 'correctly compares types against equivalent strings' do
+ assert_equal text_plain, 'text/plain'
+ end
- def test_complete_eh
- yaml = make_yaml_mime_type
- assert(yaml.complete?)
- yaml.extensions = nil
- refute(yaml.complete?)
- end
+ it 'correctly compares types against strings that sort earlier' do
+ refute_equal text_html, 'text/plain'
+ assert_operator text_html, :<, 'text/plain'
+ end
- def test_content_type
- assert_equal('text/plain', MIME::Type.new('text/plain').content_type)
- assert_equal('image/jpeg', MIME::Type.new('image/jpeg').content_type)
- assert_equal('application/x-msword',
- MIME::Type.new('application/x-msword').content_type)
- assert_equal('text/vCard', MIME::Type.new('text/vCard').content_type)
- assert_equal('application/pkcs7-mime',
- MIME::Type.new('application/pkcs7-mime').content_type)
- assert_equal('x-appl/x-zip', @applzip.content_type)
- assert_equal('base64', @applzip.encoding)
- end
+ it 'correctly compares types against strings that sort later' do
+ refute_equal text_plain, 'text/html'
+ assert_operator text_plain, :>, 'text/html'
+ end
- def test_encoding
- assert_equal('quoted-printable', MIME::Type.new('text/plain').encoding)
- assert_equal('base64', MIME::Type.new('image/jpeg').encoding)
- assert_equal('base64', MIME::Type.new('application/x-msword').encoding)
- assert_equal('quoted-printable', MIME::Type.new('text/vCard').encoding)
- assert_equal('base64', MIME::Type.new('application/pkcs7-mime').encoding)
+ it 'correctly compares against nil' do
+ refute_equal text_html, nil
+ assert_operator text_plain, :<, nil
+ end
end
- def test_encoding_equals
- yaml = make_yaml_mime_type
- assert_equal('8bit', yaml.encoding)
- yaml.encoding = 'base64'
- assert_equal('base64', yaml.encoding)
- yaml.encoding = :default
- assert_equal('quoted-printable', yaml.encoding)
- assert_raises(MIME::Type::InvalidEncoding) {
- yaml.encoding = 'binary'
- }
- end
+ describe '#ascii?' do
+ it 'defaults to true for text/* types' do
+ assert text_plain.ascii?
+ end
- def test_default_encoding
- %w(text/plain text/html).each { |mt|
- assert_equal('quoted-printable', MIME::Type.new(mt).default_encoding)
- }
- %w(image/jpeg applicatoin/pkcs7-mime).each { |mt|
- assert_equal('base64', MIME::Type.new(mt).default_encoding)
- }
+ it 'defaults to false for non-text/* types' do
+ refute image_jpeg.ascii?
+ end
end
- def test_docs
- yaml = make_yaml_mime_type_with_docs
- assert_equal('Test YAML', yaml.docs)
- end
+ describe '#binary?' do
+ it 'defaults to false for text/* types' do
+ refute text_plain.binary?
+ end
- def test_docs_equals
- yaml = make_yaml_mime_type
- assert_equal [], yaml.docs
- yaml.docs = 'YAML docs'
- assert_equal('YAML docs', yaml.docs)
+ it 'defaults to true for non-text/* types' do
+ assert image_jpeg.binary?
+ end
end
- def test_eql?
- assert(MIME::Type.new('text/plain').eql?(MIME::Type.new('text/plain')))
- refute(MIME::Type.new('text/plain').eql?(MIME::Type.new('image/jpeg')))
- refute(MIME::Type.new('text/plain').eql?('text/plain'))
- refute(MIME::Type.new('text/plain').eql?('image/jpeg'))
+ describe '#complete?' do
+ it 'is true when there are extensions' do
+ assert text_x_yaml.complete?
+ end
+
+ it 'is false when there are no extensions' do
+ refute mime_type('text/plain').complete?
+ end
end
- def test_extensions
- yaml = make_yaml_mime_type
- assert_equal(%w(yaml yml), yaml.extensions)
- assert_equal(2, @applzip.extensions.size)
- assert_equal(%w(zip zp), @applzip.extensions)
+ describe '#content_type' do
+ it 'preserves the original case' do
+ assert_equal 'text/plain', text_plain.content_type
+ assert_equal 'text/vCard', mime_type('text/vCard').content_type
+ end
+
+ it 'does not remove x- prefixes' do
+ assert_equal 'x-appl/x-zip', x_appl_x_zip.content_type
+ end
end
- def test_add_extensions
- expected = make_yaml_mime_type
- test_doc = make_yaml_mime_type
- test_doc.add_extensions(nil)
- assert_equal(expected.extensions, test_doc.extensions)
- test_doc.add_extensions('yaml')
- assert_equal(expected.extensions, test_doc.extensions)
- test_doc.add_extensions(%w(yaml))
- assert_equal(expected.extensions, test_doc.extensions)
- test_doc.add_extensions('yz')
- assert_equal(%w(yaml yml yz), test_doc.extensions)
+ describe '#default_encoding' do
+ it 'is quoted-printable for text/* types' do
+ assert_equal 'quoted-printable', text_plain.default_encoding
+ end
+
+ it 'is base64 for non-text/* types' do
+ assert_equal 'base64', image_jpeg.default_encoding
+ end
end
- def test_extensions_equals
- yaml = make_yaml_mime_type
- yaml.extensions = 'yaml'
- assert_equal(%w(yaml), yaml.extensions)
+ describe '#encoding, #encoding=' do
+ it 'returns #default_encoding if not set explicitly' do
+ assert_equal 'quoted-printable', text_plain.encoding
+ assert_equal 'base64', image_jpeg.encoding
+ end
- yaml.extensions = %w(yaml yaml)
- assert_equal(%w(yaml), yaml.extensions)
+ it 'returns the set value when set' do
+ text_plain.encoding = '8bit'
+ assert_equal '8bit', text_plain.encoding
+ end
- yaml.extensions = %w(yz yaml yz yml)
- assert_equal(%w(yz yaml yml), yaml.extensions)
- end
+ it 'resets to the default encoding when set to nil or :default' do
+ text_plain.encoding = '8bit'
+ text_plain.encoding = nil
+ assert_equal text_plain.default_encoding, text_plain.encoding
+ text_plain.encoding = :default
+ assert_equal text_plain.default_encoding, text_plain.encoding
+ end
- def test_like_eh
- assert(MIME::Type.new('text/plain').like?(MIME::Type.new('text/plain')))
- assert(MIME::Type.new('text/plain').like?(MIME::Type.new('text/x-plain')))
- refute(MIME::Type.new('text/plain').like?(MIME::Type.new('image/jpeg')))
- assert(MIME::Type.new('text/plain').like?('text/plain'))
- assert(MIME::Type.new('text/plain').like?('text/x-plain'))
- refute(MIME::Type.new('text/plain').like?('image/jpeg'))
+ it 'raises a MIME::Type::InvalidEncoding for an invalid encoding' do
+ exception = assert_raises MIME::Type::InvalidEncoding do
+ text_plain.encoding = 'binary'
+ end
+ assert_equal 'Invalid Encoding "binary"', exception.to_s
+ end
end
- def test_media_type
- assert_equal('text', MIME::Type.new('text/plain').media_type)
- assert_equal('image', MIME::Type.new('image/jpeg').media_type)
- assert_equal('application', MIME::Type.new('application/x-msword').media_type)
- assert_equal('text', MIME::Type.new('text/vCard').media_type)
- assert_equal('application', MIME::Type.new('application/pkcs7-mime').media_type)
- assert_equal('chemical', MIME::Type.new('x-chemical/x-pdb').media_type)
- assert_equal('appl', @applzip.media_type)
- end
+ describe '#eql?' do
+ it 'is not true for a non-MIME::Type' do
+ refute text_plain.eql?('text/plain')
+ end
- def test_obsolete_eh
- type = MIME::Type.new('content-type' => 'test/type',
- 'obsolete' => true)
- assert(type.obsolete?)
- refute(make_yaml_mime_type.obsolete?)
- end
+ it 'is not true for a different MIME::Type' do
+ refute text_plain.eql?(image_jpeg)
+ end
- def test_obsolete_equals
- yaml = make_yaml_mime_type
- refute(yaml.obsolete?)
- yaml.obsolete = true
- assert(yaml.obsolete?)
+ it 'is true for an equivalent MIME::Type' do
+ assert text_plain, mime_type('text/Plain')
+ end
end
- def test_platform_eh
- yaml = nil
- assert_deprecated('MIME::Type#platform?') do
- yaml = make_yaml_mime_type
- refute(yaml.platform?)
+ describe '#extensions, #extensions=' do
+ it 'returns an array of extensions' do
+ assert_equal %w(yaml yml), text_x_yaml.extensions
+ assert_equal %w(zip zp), x_appl_x_zip.extensions
end
- yaml.system = nil
- assert_deprecated('MIME::Type#platform?') do
- refute(yaml.platform?)
+
+ it 'sets a single extension when provided a single value' do
+ text_x_yaml.extensions = 'yaml'
+ assert_equal %w(yaml), text_x_yaml.extensions
end
- yaml.system = %r{#{RUBY_PLATFORM}}
- assert_deprecated('MIME::Type#platform?') do
- assert(yaml.platform?)
+
+ it 'deduplicates extensions' do
+ text_x_yaml.extensions = %w(yaml yaml)
+ assert_equal %w(yaml), text_x_yaml.extensions
end
end
- def assert_priority(l, e, r)
- assert_equal(-1, l.first.priority_compare(l.last))
- assert_equal(0, e.first.priority_compare(e.last))
- assert_equal(1, r.first.priority_compare(r.last))
+ describe '#add_extensions' do
+ it 'does not modify extensions when provided nil' do
+ text_x_yaml.add_extensions(nil)
+ assert_equal %w(yaml yml), text_x_yaml.extensions
+ end
+
+ it 'remains deduplicated with duplicate values' do
+ text_x_yaml.add_extensions('yaml')
+ assert_equal %w(yaml yml), text_x_yaml.extensions
+ text_x_yaml.add_extensions(%w(yaml yz))
+ assert_equal %w(yaml yml yz), text_x_yaml.extensions
+ end
end
- def test_priority_compare
- tl, te, tr = make('text/1'), make('text/1'), make('text/2')
- assert_priority([tl, tr], [tl, te], [tr, tl])
+ describe '#priority_compare' do
+ def assert_priority_less(left, right)
+ assert_equal(-1, left.priority_compare(right))
+ end
- tl.registered = te.registered = true
- tr = make(tl) { |t| t.registered = false }
- assert_priority([tl, tr], [tl, te], [tr, tl])
+ def assert_priority_same(left, right)
+ assert_equal 0, left.priority_compare(right)
+ end
- tl.system = te.system = nil
- tr = make(tl) { |t| t.system = /#{RUBY_PLATFORM}/ }
- assert_priority([tl, tr], [tl, te], [tr, tl])
+ def assert_priority_more(left, right)
+ assert_equal 1, left.priority_compare(right)
+ end
- tl.extensions = te.extensions = %w(1)
- tr = make(tl) { |t| t.extensions = nil }
- assert_priority([tl, tr], [tl, te], [tr, tl])
+ def assert_priority(left, middle, right)
+ assert_priority_less left, right
+ assert_priority_same left, middle
+ assert_priority_more right, left
+ end
- tl.obsolete = te.obsolete = false
- tr = make(tl) { |t| t.obsolete = true }
- assert_priority([tl, tr], [tl, te], [tr, tl])
+ let(:text_1) { mime_type('text/1') }
+ let(:text_1p) { mime_type('text/1') }
+ let(:text_2) { mime_type('text/2') }
- tl.obsolete = te.obsolete = true
- tl.use_instead = te.use_instead = 'abc/xyz'
- tr = make(tl) { |t| t.use_instead = nil }
- assert_priority([tl, tr], [tl, te], [tr, tl])
- tr.use_instead = 'abc/zzz'
- assert_priority([tl, tr], [tl, te], [tr, tl])
- end
+ it 'sorts (1) based on the simplified type' do
+ assert_priority text_1, text_1p, text_2
+ end
- def test_raw_media_type
- assert_equal('text', MIME::Type.new('text/plain').raw_media_type)
- assert_equal('image', MIME::Type.new('image/jpeg').raw_media_type)
- assert_equal('application', MIME::Type.new('application/x-msword').raw_media_type)
- assert_equal('text', MIME::Type.new('text/vCard').raw_media_type)
- assert_equal('application', MIME::Type.new('application/pkcs7-mime').raw_media_type)
- assert_equal('x-chemical', MIME::Type.new('x-chemical/x-pdb').raw_media_type)
- assert_equal('x-appl', @applzip.raw_media_type)
- end
+ it 'sorts (2) based on the registration state' do
+ text_1.registered = text_1p.registered = true
+ text_1b = mime_type(text_1) { |t| t.registered = false }
- def test_raw_sub_type
- assert_equal('plain', MIME::Type.new('text/plain').raw_sub_type)
- assert_equal('jpeg', MIME::Type.new('image/jpeg').raw_sub_type)
- assert_equal('x-msword', MIME::Type.new('application/x-msword').raw_sub_type)
- assert_equal('vCard', MIME::Type.new('text/vCard').raw_sub_type)
- assert_equal('pkcs7-mime', MIME::Type.new('application/pkcs7-mime').raw_sub_type)
- assert_equal('x-zip', @applzip.raw_sub_type)
- end
+ assert_priority text_1, text_1p, text_1b
+ end
- def test_registered_eh
- assert(MIME::Type.new('text/plain').registered?)
- assert(MIME::Type.new('image/jpeg').registered?)
- refute(MIME::Type.new('application/x-msword').registered?)
- assert(MIME::Type.new('text/vCard').registered?)
- assert(MIME::Type.new('application/pkcs7-mime').registered?)
- refute(@applzip.registered?)
- refute(MIME::Types['image/webp'].first.registered?)
- # Temporarily broken: requires the new data format to be enabled.
- assert(MIME::Types['application/x-www-form-urlencoded'].first.registered?)
- end
+ it 'sorts (3) based on the completeness' do
+ text_1.extensions = text_1p.extensions = '1'
+ text_1b = mime_type(text_1) { |t| t.extensions = nil }
- def test_registered_equals
- [ nil, false, true ].each { |v|
- @applzip.registered = v
- assert_equal(v, @applzip.instance_variable_get(:@registered))
- }
- @applzip.registered = 1
- assert_equal(true, @applzip.instance_variable_get(:@registered))
- end
+ assert_priority text_1, text_1p, text_1b
+ end
- def test_signature_eh
- refute(MIME::Type.new('text/plain').signature?)
- refute(MIME::Type.new('image/jpeg').signature?)
- refute(MIME::Type.new('application/x-msword').signature?)
- end
+ it 'sorts (4) based on obsolete status' do
+ text_1.obsolete = text_1p.obsolete = false
+ text_1b = mime_type(text_1) { |t| t.obsolete = true }
- def test_signature_equals
- sig = MIME::Type.new('text/vCard') { |t| t.signature = true }
- assert(sig.signature?)
- end
+ assert_priority text_1, text_1p, text_1b
+ end
- def test_simplified
- assert_equal('text/plain', MIME::Type.new('text/plain').simplified)
- assert_equal('image/jpeg', MIME::Type.new('image/jpeg').simplified)
- assert_equal('application/msword', MIME::Type.new('application/x-msword').simplified)
- assert_equal('text/vcard', MIME::Type.new('text/vCard').simplified)
- assert_equal('application/pkcs7-mime', MIME::Type.new('application/pkcs7-mime').simplified)
- assert_equal('chemical/pdb', MIME::Type.new('x-chemical/x-pdb').simplified)
- end
+ it 'sorts (5) based on the use-instead value' do
+ text_1.obsolete = text_1p.obsolete = true
+ text_1.use_instead = text_1p.use_instead = 'abc/xyz'
+ text_1b = mime_type(text_1) { |t| t.use_instead = nil }
- def test_sub_type
- assert_equal('plain', MIME::Type.new('text/plain').sub_type)
- assert_equal('jpeg', MIME::Type.new('image/jpeg').sub_type)
- assert_equal('msword', MIME::Type.new('application/x-msword').sub_type)
- assert_equal('vcard', MIME::Type.new('text/vCard').sub_type)
- assert_equal('pkcs7-mime', MIME::Type.new('application/pkcs7-mime').sub_type)
- assert_equal('zip', @applzip.sub_type)
- end
+ assert_priority text_1, text_1p, text_1b
- def test_system
- assert_deprecated('MIME::Type#system') do
- yaml = make_yaml_mime_type
- assert_equal(%r{d9d172f608}, yaml.system)
+ text_1b.use_instead = 'abc/zzz'
+
+ assert_priority text_1, text_1p, text_1b
end
end
- def test_system_equals
- yaml = make_yaml_mime_type
- yaml.system = /win32/
- assert_deprecated('MIME::Type#system') do
- assert_equal(%r{win32}, yaml.system)
+ describe '#raw_media_type' do
+ it 'extracts the media type as case-preserved' do
+ assert_equal 'Text', mime_type('Text/plain').raw_media_type
end
- yaml.system = nil
- assert_deprecated('MIME::Type#system') do
- assert_nil(yaml.system)
+
+ it 'does not remove x- prefixes' do
+ assert_equal('x-appl', x_appl_x_zip.raw_media_type)
end
end
- def test_system_eh
- yaml = make_yaml_mime_type
- assert_deprecated('MIME::Type#system?') do
- assert(yaml.system?)
+ describe '#media_type' do
+ it 'extracts the media type as lowercase' do
+ assert_equal 'text', text_plain.media_type
end
- yaml.system = nil
- assert_deprecated('MIME::Type#system?') do
- refute(yaml.system?)
+
+ it 'does not remove x- prefixes' do
+ assert_equal('x-appl', x_appl_x_zip.media_type)
end
end
- def test_to_a
- yaml = make_yaml_mime_type
- assert_deprecated('MIME::Type#to_a') do
- assert_equal(['text/x-yaml', %w(yaml yml), '8bit', /d9d172f608/,
- false, [], [], false], yaml.to_a)
+ describe '#raw_media_type' do
+ it 'extracts the media type as case-preserved' do
+ assert_equal 'Text', mime_type('Text/plain').raw_media_type
end
- end
- def test_to_hash
- yaml = make_yaml_mime_type
- assert_deprecated('MIME::Type#to_hash') do
- assert_equal(
- {
- 'Content-Type' => 'text/x-yaml',
- 'Content-Transfer-Encoding' => '8bit',
- 'Extensions' => %w(yaml yml),
- 'System' => /d9d172f608/,
- 'Registered' => false,
- 'URL' => [],
- 'Obsolete' => false,
- 'Docs' => []
- },
- yaml.to_hash)
+ it 'does not remove x- prefixes' do
+ assert_equal('x-appl', x_appl_x_zip.raw_media_type)
end
end
- def assert_type_has_keys(type, *keys)
- hash = type.to_h
- keys.flatten.each { |key| assert(hash.key?(key)) }
- end
+ describe '#sub_type' do
+ it 'extracts the sub type as lowercase' do
+ assert_equal 'plain', text_plain.sub_type
+ end
- def test_to_h
- t = make('a/b')
- assert_type_has_keys(t, %w(content-type registered encoding))
- assert_type_has_keys(make(t) { |v| v.docs = 'Something' }, 'docs')
- assert_type_has_keys(make(t) { |v| v.extensions = %w(b) }, 'extensions')
- assert_type_has_keys(make(t) { |v| v.obsolete = true }, 'obsolete')
- assert_type_has_keys(make(t) { |v|
- v.obsolete = true
- v.use_instead = 'c/d'
- }, 'obsolete', 'use-instead')
- assert_type_has_keys(make(t) { |v|
- assert_deprecated('MIME::Type#references=') { v.references = 'IANA' }
- }, 'references')
- assert_type_has_keys(make(t) { |v| v.signature = true }, 'signature')
- assert_type_has_keys(make(t) { |v| v.system = /xyz/ }, 'system')
+ it 'does not remove x- prefixes' do
+ assert_equal('x-zip', x_appl_x_zip.sub_type)
+ end
end
- def test_to_json
- assert_equal('{"content-type":"a/b","encoding":"base64","registered":true}',
- make('a/b').to_json)
- end
+ describe '#raw_sub_type' do
+ it 'extracts the sub type as case-preserved' do
+ assert_equal 'Plain', mime_type('text/Plain').raw_sub_type
+ end
- def test_to_s
- assert_equal('text/plain', "#{MIME::Type.new('text/plain')}")
+ it 'does not remove x- prefixes' do
+ assert_equal('x-zip', x_appl_x_zip.raw_sub_type)
+ end
end
- def test_class_constructors
- assert_instance_of(MIME::Type, MIME::Type.new('text/x-yaml'))
- assert_instance_of(MIME::Type, MIME::Type.new('text/x-yaml') { |y|
- assert_instance_of(MIME::Type, y)
- })
- assert_instance_of(MIME::Type, MIME::Type.new('content-type' => 'text/x-yaml'))
- assert_instance_of(MIME::Type, MIME::Type.new(['text/x-yaml', %w(yaml)]))
- assert_raises(MIME::Type::InvalidContentType) { MIME::Type.new('apps') }
- begin
- MIME::Type.new(nil)
- rescue MIME::Type::InvalidContentType => ex
- assert_equal('Invalid Content-Type nil', ex.message)
+ describe '#to_h' do
+ let(:t) { mime_type('a/b') }
+
+ it 'has the required keys (content-type, registered, encoding)' do
+ assert_has_keys t.to_h, %w(content-type registered encoding)
end
- end
- def test_to_str
- assert_equal('stringy', 'text/plain'.sub(MIME::Type.new('text/plain'), 'stringy'))
- end
+ it 'has the docs key if there are documents' do
+ assert_has_keys mime_type(t) { |v| v.docs = 'a' }.to_h, %w(docs)
+ end
- def test_references
- assert_deprecated('MIME::Type#references') do
- assert_empty(make_yaml_mime_type.references)
+ it 'has the extensions key if set' do
+ assert_has_keys mime_type(t) { |v| v.extensions = 'a' }.to_h,
+ 'extensions'
end
- end
- def test_references_equals
- yaml = make_yaml_mime_type
- assert_deprecated('MIME::Type#references=') do
- yaml.references = 'IANA'
+ it 'has the preferred-extension key if set' do
+ assert_has_keys mime_type(t) { |v| v.preferred_extension = 'a' }.to_h,
+ 'preferred-extension'
end
- assert_deprecated('MIME::Type#references') do
- assert_equal(%w(IANA), yaml.references)
+
+ it 'has the obsolete key if set' do
+ assert_has_keys mime_type(t) { |v| v.obsolete = true }.to_h, 'obsolete'
end
- assert_deprecated('MIME::Type#references=') do
- yaml.references = %w(IANA IANA)
+ it 'has the obsolete and use-instead keys if set' do
+ assert_has_keys mime_type(t) { |v|
+ v.obsolete = true
+ v.use_instead = 'c/d'
+ }.to_h, %w(obsolete use-instead)
end
- assert_deprecated('MIME::Type#references') do
- assert_equal(%w(IANA), yaml.references)
+
+ it 'has the signature key if set' do
+ assert_has_keys mime_type(t) { |v| v.signature = true }.to_h, 'signature'
end
end
- def test_xrefs
- assert_equal(
- {
- 'rfc' => %w(rfc4239),
- 'template' => %w(application/javascript)
- },
- make_javascript.xrefs
- )
- end
+ describe '#to_json' do
+ let(:expected) {
+ '{"content-type":"a/b","encoding":"base64","registered":false}'
+ }
- def test_xref_urls
- js = make_javascript do |j|
- j.xrefs = j.xrefs.merge(
- 'draft' => [ 'RFC-ietf-appsawg-json-merge-patch-07' ],
- 'person' => [ 'David_Singer' ],
- 'rfc-errata' => [ '3245' ],
- 'uri' => [ 'http://exmple.org' ],
- 'text' => [ 'text' ]
- )
+ it 'converts to JSON when requested' do
+ assert_equal expected, mime_type('a/b').to_json
end
- assert_equal(
- [
- 'http://www.iana.org/go/rfc4239',
- 'http://www.iana.org/assignments/media-types/application/javascript',
- 'http://www.iana.org/go/draft-ietf-appsawg-json-merge-patch-07',
- 'http://www.iana.org/assignments/media-types/media-types.xhtml#David_Singer',
- 'http://www.rfc-editor.org/errata_search.php?eid=3245',
- 'http://exmple.org',
- 'text'
- ],
- js.xref_urls
- )
end
- def test_url
- assert_deprecated('MIME::Type#url') do
- assert_empty(make_yaml_mime_type.url)
+ describe '#to_s, #to_str' do
+ it 'represents itself as a string of the canonical content_type' do
+ assert_equal 'text/plain', "#{text_plain}"
end
- end
- def test_url_equals
- yaml = make_yaml_mime_type
- assert_deprecated('MIME::Type#url=') do
- yaml.url = 'IANA'
+ it 'acts like a string of the canonical content_type for comparison' do
+ assert_equal text_plain, 'text/plain'
end
- assert_deprecated('MIME::Type#url') do
- assert_equal(%w(IANA), yaml.url)
+
+ it 'acts like a string for other purposes' do
+ assert_equal 'stringy', 'text/plain'.sub(text_plain, 'stringy')
end
end
- def test_urls
- yaml = make_yaml_mime_type
- assert_deprecated('MIME::Type#urls') do
- assert_empty(yaml.urls)
+ describe '#xrefs, #xrefs=' do
+ let(:expected) {
+ {
+ 'rfc' => Set[*%w(rfc1234 rfc5678)]
+ }
+ }
+
+ it 'returns the expected results' do
+ application_javascript.xrefs = {
+ 'rfc' => %w(rfc5678 rfc1234 rfc1234)
+ }
+
+ assert_equal expected, application_javascript.xrefs
end
+ end
+
+ describe '#xref_urls' do
+ let(:expected) {
+ [
+ 'http://www.iana.org/go/draft1',
+ 'http://www.iana.org/assignments/media-types/a/b',
+ 'http://www.iana.org/assignments/media-types/media-types.xhtml#p-1',
+ 'http://www.iana.org/go/rfc-1',
+ 'http://www.rfc-editor.org/errata_search.php?eid=err-1',
+ 'http://example.org',
+ 'text'
+ ]
+ }
- assert_deprecated('MIME::Type#references=') do
- yaml.references = %w(IANA RFC123 DRAFT:xyz [abc])
+ let(:type) {
+ mime_type('a/b').tap do |t|
+ t.xrefs = {
+ 'draft' => [ 'RFC1' ],
+ 'template' => [ 'a/b' ],
+ 'person' => [ 'p-1' ],
+ 'rfc' => [ 'rfc-1' ],
+ 'rfc-errata' => [ 'err-1' ],
+ 'uri' => [ 'http://example.org' ],
+ 'text' => [ 'text' ]
+ }
+ end
+ }
+
+ it 'translates according to given rules' do
+ assert_equal expected, type.xref_urls
end
+ end
- assert_deprecated('MIME::Type#urls') do
- assert_equal(
- %w(
- http://www.iana.org/assignments/media-types/text/yaml
- http://rfc-editor.org/rfc/rfc123.txt
- http://datatracker.ietf.org/public/idindex.cgi?command=id_details&filename=xyz
- http://www.iana.org/assignments/contact-people.htm#abc
- ),
- yaml.urls
- )
+ describe '#use_instead' do
+ it 'is nil unless the type is obsolete' do
+ assert_nil text_plain.use_instead
end
- assert_deprecated('MIME::Type#references=') do
- yaml.references = '[def=lax]'
+ it 'is nil if not set and the type is obsolete' do
+ text_plain.obsolete = true
+ assert_nil text_plain.use_instead
end
- assert_deprecated('MIME::Type#urls') do
- assert_equal([%w(def http://www.iana.org/assignments/contact-people.htm#lax)],
- yaml.urls)
+ it 'is a different type if set and the type is obsolete' do
+ text_plain.obsolete = true
+ text_plain.use_instead = 'text/html'
+ assert_equal 'text/html', text_plain.use_instead
end
+ end
- assert_deprecated('MIME::Type#references=') do
- yaml.references = '{mno=pqr}'
+ describe '#preferred_extension, #preferred_extension=' do
+ it 'is nil when not set and there are no extensions' do
+ assert_nil text_plain.preferred_extension
end
- assert_deprecated('MIME::Type#urls') do
- assert_equal([%w(mno pqr)], yaml.urls)
+ it 'is the first extension when not set but there are extensions' do
+ assert_equal 'yaml', text_x_yaml.preferred_extension
end
- assert_deprecated('MIME::Type#references=') do
- yaml.references = 'hoge'
+ it 'is the extension provided when set' do
+ text_x_yaml.preferred_extension = 'yml'
+ assert_equal 'yml', text_x_yaml.preferred_extension
end
- assert_deprecated('MIME::Type#urls') do
- assert_equal(%w(hoge), yaml.urls)
+ it 'is adds the preferred extension if it does not exist' do
+ text_x_yaml.preferred_extension = 'yz'
+ assert_equal 'yz', text_x_yaml.preferred_extension
+ assert_includes text_x_yaml.extensions, 'yz'
end
end
- def test_use_instead
- t = make('t/1') { |v| v.use_instead = 't/2' }
- assert_nil(t.use_instead)
- t.obsolete = true
- assert_equal('t/2', t.use_instead)
- end
+ describe '#friendly' do
+ it 'returns English by default' do
+ assert_equal 'YAML Structured Document', text_x_yaml.friendly
+ end
- def test_use_instead_equals
- t = make('t/1') { |v| v.obsolete = true }
- assert_nil(t.use_instead)
- t.use_instead = 't/2'
- assert_equal('t/2', t.use_instead)
- end
+ it 'returns English when requested' do
+ assert_equal 'YAML Structured Document', text_x_yaml.friendly('en')
+ assert_equal 'YAML Structured Document', text_x_yaml.friendly(:en)
+ end
- def test_preferred_extension
- assert_equal('zip', @applzip.preferred_extension)
- end
+ it 'returns nothing for an unknown language' do
+ assert_nil text_x_yaml.friendly('zz')
+ end
- def test_friendly_read
- yaml = make_yaml_mime_type
- assert_equal('YAML Structured Document', yaml.friendly)
- assert_equal('YAML Structured Document', yaml.friendly('en'))
- assert_equal(nil, yaml.friendly('fr'))
- end
+ it 'merges new values from an array parameter' do
+ expected = { 'en' => 'Text files' }
+ assert_equal expected, text_plain.friendly([ 'en', 'Text files' ])
+ expected.update('fr' => 'des fichiers texte')
+ assert_equal expected,
+ text_plain.friendly([ 'fr', 'des fichiers texte' ])
+ end
- def test_friendly_set
- assert_equal({ 'en' => 'Zip' }, @applzip.friendly(%w(en Zip)))
- assert_equal({ 'en' => 'Zip Archive' }, @applzip.friendly('en' => 'Zip Archive'))
- end
+ it 'merges new values from a hash parameter' do
+ expected = { 'en' => 'Text files' }
+ assert_equal expected, text_plain.friendly(expected)
+ french = { 'fr' => 'des fichiers texte' }
+ expected.update(french)
+ assert_equal expected, text_plain.friendly(french)
+ end
- def test_i18n_key
- assert_equal('text.plain', make('text/plain').i18n_key)
- assert_equal('application.vnd-3gpp-bsf-xml',
- make('application/vnd.3gpp.bsf+xml').i18n_key)
- assert_equal('application.msword', make('application/x-msword').i18n_key)
- end
+ it 'raises an ArgumentError if an unknown value is provided' do
+ exception = assert_raises ArgumentError do
+ text_plain.friendly(1)
+ end
- def test_deprecated_constant
- assert_output(nil, /MIME::InvalidContentType/) do
- assert_same(MIME::InvalidContentType, MIME::Type::InvalidContentType)
- end
- assert_output(nil, /MIME::InvalidContentType/) do
- assert_same(MIME::InvalidContentType, MIME::Type::InvalidContentType)
+ assert_equal 'Expected a language or translation set, not 1',
+ exception.message
end
- assert_raises(NameError) { MIME::Foo }
end
end
diff --git a/test/test_mime_types.rb b/test/test_mime_types.rb
index db3776d..6df7b65 100644
--- a/test/test_mime_types.rb
+++ b/test/test_mime_types.rb
@@ -3,119 +3,159 @@
require 'mime/types'
require 'minitest_helper'
-class TestMIMETypes < Minitest::Test
- def setup
- @mime_types = MIME::Types.new
- @mime_types.add(MIME::Type.new(['text/plain', %w(txt)]),
- MIME::Type.new(['image/jpeg', %w(jpg jpeg)]),
- MIME::Type.new('application/x-wordperfect6.1'),
- MIME::Type.new('content-type' => 'application/x-www-form-urlencoded', 'registered' => true),
- MIME::Type.new(['application/x-gzip', %w(gz)]),
- MIME::Type.new(['application/gzip', %w(gz)]))
+describe MIME::Types do
+ def mime_types
+ @mime_types ||= MIME::Types.new.tap do |mt|
+ mt.add MIME::Type.new(['text/plain', %w(txt)]),
+ MIME::Type.new(['image/jpeg', %w(jpg jpeg)]),
+ MIME::Type.new('application/x-wordperfect6.1'),
+ MIME::Type.new(
+ 'content-type' => 'application/x-www-form-urlencoded',
+ 'registered' => true
+ ),
+ MIME::Type.new(['application/x-gzip', %w(gz)]),
+ MIME::Type.new(
+ 'content-type' => 'application/gzip',
+ 'extensions' => 'gz',
+ 'registered' => true
+ )
+ end
end
- def test_enumerable
- assert(@mime_types.any? { |type| type.content_type == 'text/plain' })
- assert_kind_of(Enumerator, @mime_types.each)
- assert_equal(6, @mime_types.each.count)
- end
+ describe 'is enumerable' do
+ it 'correctly uses an Enumerable method like #any?' do
+ assert mime_types.any? { |type| type.content_type == 'text/plain' }
+ end
- def test_index_with_mime_type
- xtxp = MIME::Type.new('x-text/x-plain')
- assert_includes(@mime_types[xtxp], 'text/plain')
- assert_equal(1, @mime_types[xtxp].size)
- end
+ it 'implements each with no parameters to return an Enumerator' do
+ assert_kind_of Enumerator, mime_types.each
+ assert_kind_of Enumerator, mime_types.map
+ end
- def test_index_with_regex
- assert_includes(@mime_types[/plain/], 'text/plain')
- assert_equal(1, @mime_types[/plain/].size)
- end
+ it 'will create a lazy enumerator' do
+ assert_kind_of Enumerator::Lazy, mime_types.lazy
+ assert_kind_of Enumerator::Lazy, mime_types.map.lazy
+ end
- def test_index_with_string
- assert_includes(@mime_types['text/plain'], 'text/plain')
- assert_equal(1, @mime_types['text/plain'].size)
+ it 'is countable with an enumerator' do
+ assert_equal 6, mime_types.each.count
+ assert_equal 6, mime_types.lazy.count
+ end
end
- def test_index_with_complete_flag
- assert_empty(@mime_types['text/vnd.fly', complete: true])
- refute_empty(@mime_types['text/plain', complete: true])
- end
+ describe '#\[]' do
+ it 'can be searched with a MIME::Type' do
+ text_plain = MIME::Type.new('text/plain')
+ assert_includes mime_types[text_plain], 'text/plain'
+ assert_equal 1, mime_types[text_plain].size
+ end
- def test_index_with_registered_flag
- assert_empty(@mime_types['application/x-wordperfect6.1',
- registered: true])
- refute_empty(@mime_types['application/x-www-form-urlencoded',
- registered: true])
- refute_empty(@mime_types['application/gzip', registered: true])
- refute_equal(@mime_types['application/gzip'].size,
- @mime_types['application/gzip', registered: true])
- end
+ it 'can be searched with a regular expression' do
+ assert_includes mime_types[/plain$/], 'text/plain'
+ assert_equal 1, mime_types[/plain$/].size
+ end
- def test_index_with_platform_flag
- assert_deprecated('MIME::Types#[]', 'using the :platform flag') do
- assert_empty(MIME::Types['text/plain', platform: true])
+ it 'sorts by priority with multiple matches' do
+ assert_equal %w(application/gzip application/x-gzip), mime_types[/gzip$/]
+ assert_equal 2, mime_types[/gzip$/].size
end
- end
- def test_add
- eruby = MIME::Type.new('application/x-eruby') do |t|
- t.extensions = 'rhtml'
- t.encoding = '8bit'
+ it 'can be searched with a string' do
+ assert_includes mime_types['text/plain'], 'text/plain'
+ assert_equal 1, mime_types['text/plain'].size
end
- @mime_types.add(eruby)
+ it 'can be searched with the complete flag' do
+ assert_empty mime_types[
+ 'application/x-www-form-urlencoded',
+ complete: true
+ ]
+ assert_includes mime_types['text/plain', complete: true], 'text/plain'
+ assert_equal 1, mime_types['text/plain', complete: true].size
+ end
- assert_equal(@mime_types['application/x-eruby'], [eruby])
+ it 'can be searched with the registered flag' do
+ assert_empty mime_types['application/x-wordperfect6.1', registered: true]
+ refute_empty mime_types[
+ 'application/x-www-form-urlencoded',
+ registered: true
+ ]
+ refute_empty mime_types[/gzip/, registered: true]
+ refute_equal mime_types[/gzip/], mime_types[/gzip/, registered: true]
+ end
end
- def test_type_for
- assert_equal(%w(application/gzip application/x-gzip),
- @mime_types.type_for('gz'))
- assert_equal(%w(image/jpeg), MIME::Types.of('foo.jpeg'))
- assert_equal(%w(image/jpeg text/plain),
- MIME::Types.type_for(%w(foo.txt foo.jpeg)))
- assert_deprecated('MIME::Types#type_for', 'using the platform parameter') do
- assert_equal(@mime_types.of('gif', true), @mime_types['image/gif'])
+ describe '#add' do
+ let(:eruby) { MIME::Type.new('application/x-eruby') }
+ let(:jinja) { MIME::Type.new('application/jinja2' )}
+
+ it 'successfully adds a new type' do
+ mime_types.add(eruby)
+ assert_equal mime_types['application/x-eruby'], [ eruby ]
end
- assert_empty(MIME::Types.type_for('coverallsjson'))
- assert_deprecated('MIME::Types#type_for', 'using the platform parameter') do
- assert_empty(MIME::Types.type_for('jpeg', true))
+
+ it 'complains about adding a duplicate type' do
+ mime_types.add(eruby)
+ assert_output '', /is already registered as a variant/ do
+ mime_types.add(eruby)
+ end
+ assert_equal mime_types['application/x-eruby'], [eruby]
end
- assert_empty(@mime_types.type_for('zzz'))
- end
- def test_count
- assert_equal(6, @mime_types.count)
- end
+ it 'does not complain about adding a duplicate type when quiet' do
+ mime_types.add(eruby)
+ assert_output '', '' do
+ mime_types.add(eruby, :silent)
+ end
+ assert_equal mime_types['application/x-eruby'], [ eruby ]
+ end
- # This tests the instance implementation through the class implementation.
- def test_add_type_variant
- xtxp = MIME::Type.new('x-text/x-plain')
- assert_deprecated('MIME::Types#add_type_variant', 'and will be private') do
- @mime_types.add_type_variant(xtxp)
+ it 'successfully adds from an array' do
+ mime_types.add([ eruby, jinja ])
+ assert_equal mime_types['application/x-eruby'], [ eruby ]
+ assert_equal mime_types['application/jinja2'], [ jinja ]
end
- assert_includes(@mime_types['text/plain'], xtxp)
- end
- def test_data_version
- assert_equal(MIME::Type::VERSION, @mime_types.data_version)
- end
+ it 'successfully adds from another MIME::Types' do
+ mt = MIME::Types.new
+ mt.add(mime_types)
+ assert_equal mime_types.count, mt.count
- # This tests the instance implementation through the class implementation.
- def test_index_extensions
- xtxp = MIME::Type.new(['x-text/x-plain', %w(tzt)])
- assert_deprecated('MIME::Types#index_extensions', 'and will be private') do
- @mime_types.index_extensions(xtxp)
+ mime_types.each do |type|
+ assert_equal mt[type.content_type], [ type ]
+ end
end
- assert_includes(@mime_types.of('tzt'), xtxp)
end
- def test_defined_types
- assert_deprecated('MIME::Types#defined_types') do
- assert_empty(MIME::Types.new.defined_types)
+ describe '#type_for' do
+ it 'finds all types for a given extension' do
+ assert_equal %w(application/gzip application/x-gzip),
+ mime_types.type_for('gz')
+ end
+
+ it 'separates the extension from filenames' do
+ assert_equal %w(image/jpeg), mime_types.of(['foo.jpeg', 'bar.jpeg'])
end
- assert_deprecated('MIME::Types#defined_types') do
- refute_empty(@mime_types.defined_types)
+
+ it 'finds multiple extensions' do
+ assert_equal %w(image/jpeg text/plain),
+ mime_types.type_for(%w(foo.txt foo.jpeg))
+ end
+
+ it 'does not find unknown extensions' do
+ assert_empty mime_types.type_for('zzz')
+ end
+
+ it 'modifying type extensions causes reindexing' do
+ plain_text = mime_types['text/plain'].first
+ plain_text.add_extensions('xtxt')
+ assert_includes mime_types.type_for('xtxt'), 'text/plain'
+ end
+ end
+
+ describe '#count' do
+ it 'can count the number of types inside' do
+ assert_equal 6, mime_types.count
end
end
end
diff --git a/test/test_mime_types_cache.rb b/test/test_mime_types_cache.rb
index 7517973..bcfc4c6 100644
--- a/test/test_mime_types_cache.rb
+++ b/test/test_mime_types_cache.rb
@@ -3,7 +3,7 @@
require 'mime/types'
require 'minitest_helper'
-class TestMIMETypesCache < Minitest::Test
+describe MIME::Types::Cache do
def setup
require 'fileutils'
@cache_file = File.expand_path('../cache.tst', __FILE__)
@@ -25,66 +25,76 @@ class TestMIMETypesCache < Minitest::Test
FileUtils.rm @cache_file if File.exist? @cache_file
end
- def test_does_not_use_cache_when_unset
- ENV.delete('RUBY_MIME_TYPES_CACHE')
- assert_equal(nil, MIME::Types::Cache.load)
- end
+ describe '.load' do
+ it 'does not use cache when RUBY_MIME_TYPES_CACHE is unset' do
+ ENV.delete('RUBY_MIME_TYPES_CACHE')
+ assert_equal(nil, MIME::Types::Cache.load)
+ end
- def test_does_not_use_cache_when_missing
- assert_equal(nil, MIME::Types::Cache.load)
- end
+ it 'does not use cache when missing' do
+ assert_equal(nil, MIME::Types::Cache.load)
+ end
- def test_does_not_create_cache_when_unset
- ENV.delete('RUBY_MIME_TYPES_CACHE')
- assert_equal(nil, MIME::Types::Cache.save)
- end
+ it 'outputs an error when there is an invalid version' do
+ v = MIME::Types::Data::VERSION.dup
+ MIME::Types::Data::VERSION.gsub!(/.*/, '0.0')
+ MIME::Types::Cache.save
+ MIME::Types::Data::VERSION.gsub!(/.*/, v)
+ MIME::Types.instance_variable_set(:@__types__, nil)
+ assert_output '', /MIME::Types cache: invalid version/ do
+ MIME::Types['text/html']
+ end
+ end
- def test_creates_cache
- assert_equal(false, File.exist?(@cache_file))
- MIME::Types::Cache.save
- assert_equal(true, File.exist?(@cache_file))
+ it 'outputs an error when there is a marshal file incompatibility' do
+ MIME::Types::Cache.save
+ data = File.binread(@cache_file).reverse
+ File.open(@cache_file, 'wb') { |f| f.write(data) }
+ MIME::Types.instance_variable_set(:@__types__, nil)
+ assert_output '', /incompatible marshal file format/ do
+ MIME::Types['text/html']
+ end
+ end
end
- def test_uses_cache
- MIME::Types['text/html'].first.extensions << 'hex'
- MIME::Types::Cache.save
- MIME::Types.instance_variable_set(:@__types__, nil)
+ describe '.save' do
+ it 'does not create cache when RUBY_MIME_TYPES_CACHE is unset' do
+ ENV.delete('RUBY_MIME_TYPES_CACHE')
+ assert_equal(nil, MIME::Types::Cache.save)
+ end
- assert_includes(MIME::Types['text/html'].first.extensions, 'hex')
+ it 'creates the cache ' do
+ assert_equal(false, File.exist?(@cache_file))
+ MIME::Types::Cache.save
+ assert_equal(true, File.exist?(@cache_file))
+ end
- reset_mime_types
- end
+ it 'uses the cache' do
+ MIME::Types['text/html'].first.add_extensions('hex')
+ MIME::Types::Cache.save
+ MIME::Types.instance_variable_set(:@__types__, nil)
- def test_load_different_version
- v = MIME::Types::VERSION.dup
- MIME::Types::VERSION.gsub!(/.*/, '0.0')
- MIME::Types::Cache.save
- MIME::Types::VERSION.gsub!(/.*/, v)
- MIME::Types.instance_variable_set(:@__types__, nil)
- assert_output(nil, /MIME::Types cache: invalid version/) do
- MIME::Types['text/html']
- end
- end
+ assert_includes MIME::Types['text/html'].first.extensions, 'hex'
- def test_cache_load_failure
- MIME::Types::Cache.save
- data = File.binread(@cache_file).reverse
- File.open(@cache_file, 'wb') { |f| f.write(data) }
- MIME::Types.instance_variable_set(:@__types__, nil)
- assert_output(nil, /Could not load MIME::Types cache: incompatible marshal file format/) do
- MIME::Types['text/html']
+ reset_mime_types
end
end
+end
- def test_container_marshalling
+describe MIME::Types::Container do
+ it 'marshals and unmarshals correctly' do
container = MIME::Types::Container.new
- # default proc should return []
- assert_equal([], container['abc'])
+ container['xyz'] << 'abc'
+
+ # default proc should return Set[]
+ assert_equal(Set[], container['abc'])
+ assert_equal(Set['abc'], container['xyz'])
marshalled = Marshal.dump(container)
loaded_container = Marshal.load(marshalled)
- # default proc should still return []
- assert_equal([], loaded_container['abcd'])
+ # default proc should still return Set[]
+ assert_equal(Set[], loaded_container['abc'])
+ assert_equal(Set['abc'], container['xyz'])
end
end
diff --git a/test/test_mime_types_class.rb b/test/test_mime_types_class.rb
index 5772c26..0735f48 100644
--- a/test/test_mime_types_class.rb
+++ b/test/test_mime_types_class.rb
@@ -3,137 +3,153 @@
require 'mime/types'
require 'minitest_helper'
-class TestMIMETypesQueryClassMethods < Minitest::Test
+describe MIME::Types, 'registry' do
def setup
MIME::Types.send(:load_default_mime_types)
end
- def test_enumerable
- assert(MIME::Types.any? { |type| type.content_type == 'text/plain' })
- assert_kind_of(Enumerator, MIME::Types.each)
- assert(MIME::Types.each.count > 999)
- end
+ describe 'is enumerable' do
+ it 'correctly uses an Enumerable method like #any?' do
+ assert MIME::Types.any? { |type| type.content_type == 'text/plain' }
+ end
- def test_load_from_file
- fn = File.expand_path('../fixture/old-data', __FILE__)
- assert_deprecated('MIME::Types.load_from_file') do
- MIME::Types.load_from_file(fn)
+ it 'implements each with no parameters to return an Enumerator' do
+ assert_kind_of Enumerator, MIME::Types.each
+ assert_kind_of Enumerator, MIME::Types.map
end
- end
- def test_index_with_mime_type
- xtxp = MIME::Type.new('x-text/x-plain')
- assert_includes(MIME::Types[xtxp], 'text/plain')
- assert_equal(1, MIME::Types[xtxp].size)
- end
+ it 'will create a lazy enumerator' do
+ assert_kind_of Enumerator::Lazy, MIME::Types.lazy
+ assert_kind_of Enumerator::Lazy, MIME::Types.map.lazy
+ end
- def test_index_with_regex
- assert_includes(MIME::Types[/plain/], 'text/plain')
- assert_equal(1, MIME::Types[/plain/].size)
+ it 'is countable with an enumerator' do
+ assert MIME::Types.each.count > 999
+ assert MIME::Types.lazy.count > 999
+ end
end
- def test_index_with_string
- assert_includes(MIME::Types['text/plain'], 'text/plain')
- assert_equal(1, MIME::Types['text/plain'].size)
- end
+ describe '.\[]' do
+ it 'can be searched with a MIME::Type' do
+ text_plain = MIME::Type.new('text/plain')
+ assert_includes MIME::Types[text_plain], 'text/plain'
+ assert_equal 1, MIME::Types[text_plain].size
+ end
- def test_index_with_complete_flag
- assert_empty(MIME::Types['application/1d-interleaved-parityfec', complete: true])
- refute_empty(MIME::Types['text/plain', complete: true])
- end
+ it 'can be searched with a regular expression' do
+ assert_includes MIME::Types[/plain$/], 'text/plain'
+ assert_equal 1, MIME::Types[/plain$/].size
+ end
- def test_index_with_registered_flag
- assert_empty(MIME::Types['application/x-wordperfect6.1',
- registered: true])
- refute_empty(MIME::Types['application/x-www-form-urlencoded',
- registered: true])
- refute_empty(MIME::Types['application/gzip', registered: true])
- refute_equal(MIME::Types['application/gzip'].size,
- MIME::Types['application/gzip', registered: true])
- end
+ it 'sorts by priority with multiple matches' do
+ assert_equal %w(application/gzip application/x-gzip multipart/x-gzip),
+ MIME::Types[/gzip$/]
+ assert_equal 3, MIME::Types[/gzip$/].size
+ end
- def test_index_with_platform_flag
- assert_deprecated('MIME::Types#[]', 'using the :platform flag') do
- assert_empty(MIME::Types['text/plain', platform: true])
+ it 'can be searched with a string' do
+ assert_includes MIME::Types['text/plain'], 'text/plain'
+ assert_equal 1, MIME::Types['text/plain'].size
end
- end
- def test_type_for
- assert_equal(%w(application/xml text/xml), MIME::Types.type_for('xml'))
- assert_equal(%w(image/gif), MIME::Types.of('foo.gif'))
- assert_equal(%w(application/xml image/gif text/xml),
- MIME::Types.type_for(%w(xml gif)))
- assert_deprecated('MIME::Types#type_for', 'using the platform parameter') do
- assert_empty(MIME::Types.type_for('gif', true))
+ it 'can be searched with the complete flag' do
+ assert_empty MIME::Types[
+ 'application/x-www-form-urlencoded',
+ complete: true
+ ]
+ assert_includes MIME::Types['text/plain', complete: true], 'text/plain'
+ assert_equal 1, MIME::Types['text/plain', complete: true].size
end
- assert_empty(MIME::Types.type_for('zzz'))
- end
- def test_count
- assert(MIME::Types.count.nonzero?,
- 'A lot of types are expected to be known.')
+ it 'can be searched with the registered flag' do
+ assert_empty MIME::Types['application/x-wordperfect6.1', registered: true]
+ refute_empty MIME::Types[
+ 'application/x-www-form-urlencoded',
+ registered: true
+ ]
+ refute_empty MIME::Types[/gzip/, registered: true]
+ refute_equal MIME::Types[/gzip/], MIME::Types[/gzip/, registered: true]
+ end
end
- def test_cache_file
- ENV['RUBY_MIME_TYPES_CACHE'] = 'foo'
- assert_deprecated('MIME::Types.cache_file') do
- assert_equal('foo', MIME::Types.cache_file)
+ describe '.type_for' do
+ it 'finds all types for a given extension' do
+ assert_equal %w(application/gzip application/x-gzip),
+ MIME::Types.type_for('gz')
end
- ENV.delete('RUBY_MIME_TYPES_CACHE')
- assert_deprecated('MIME::Types.cache_file') do
- assert_nil(MIME::Types.cache_file)
+
+ it 'separates the extension from filenames' do
+ assert_equal %w(image/jpeg), MIME::Types.of(['foo.jpeg', 'bar.jpeg'])
end
- end
-end
-class TestMIMETypesClassMethods < Minitest::Test
- def setup
- MIME::Types.instance_variable_set(:@__types__, nil)
- MIME::Types.send(:load_default_mime_types)
- end
+ it 'finds multiple extensions' do
+ assert_equal %w(image/jpeg text/plain),
+ MIME::Types.type_for(%w(foo.txt foo.jpeg))
+ end
- def test_add_with_type
- MIME::Types.add(MIME::Type.new('application/x-eruby'))
- refute_empty(MIME::Types['application/x-eruby'])
- end
+ it 'does not find unknown extensions' do
+ assert_empty MIME::Types.type_for('zzz')
+ end
- def test_add_with_types
- mt = MIME::Types.new
- mt.add MIME::Type.new('application/x-eruby')
- MIME::Types.add(mt)
- refute_empty(MIME::Types['application/x-eruby'])
+ it 'modifying type extensions causes reindexing' do
+ plain_text = MIME::Types['text/plain'].first
+ plain_text.add_extensions('xtxt')
+ assert_includes MIME::Types.type_for('xtxt'), 'text/plain'
+ end
end
- def test_add_with_array
- MIME::Types.add([MIME::Type.new('application/x-eruby')])
- refute_empty(MIME::Types['application/x-eruby'])
+ describe '.count' do
+ it 'can count the number of types inside' do
+ assert MIME::Types.count > 999
+ end
end
- def test_add_with_noise_suppression
- assert_silent do
- MIME::Types.add(MIME::Type.new('application/x-eruby'))
+ describe '.add' do
+ def setup
+ MIME::Types.instance_variable_set(:@__types__, nil)
+ MIME::Types.send(:load_default_mime_types)
+ end
+
+ let(:eruby) { MIME::Type.new('application/x-eruby') }
+ let(:jinja) { MIME::Type.new('application/jinja2' )}
+
+ it 'successfully adds a new type' do
+ MIME::Types.add(eruby)
+ assert_equal MIME::Types['application/x-eruby'], [ eruby ]
end
- assert_output(nil, %r{application/x-eruby is already registered}) do
- MIME::Types.add(MIME::Type.new('application/x-eruby'))
+
+ it 'complains about adding a duplicate type' do
+ MIME::Types.add(eruby)
+ assert_output '', /is already registered as a variant/ do
+ MIME::Types.add(eruby)
+ end
+ assert_equal MIME::Types['application/x-eruby'], [eruby]
end
- assert_silent do
- MIME::Types.add(MIME::Type.new('application/x-eruby'), :silent)
+
+ it 'does not complain about adding a duplicate type when quiet' do
+ MIME::Types.add(eruby)
+ assert_silent do
+ MIME::Types.add(eruby, :silent)
+ end
+ assert_equal MIME::Types['application/x-eruby'], [ eruby ]
end
- end
- def test_add_type_variant
- xtxp = MIME::Type.new('x-text/x-plain')
- assert_deprecated('MIME::Types#add_type_variant', 'and will be private') do
- MIME::Types.add_type_variant(xtxp)
+ it 'successfully adds from an array' do
+ MIME::Types.add([ eruby, jinja ])
+ assert_equal MIME::Types['application/x-eruby'], [ eruby ]
+ assert_equal MIME::Types['application/jinja2'], [ jinja ]
end
- assert_includes(MIME::Types['text/plain'], xtxp)
- end
- def test_index_extensions
- xtxp = MIME::Type.new(['x-text/x-plain', %w(tzt)])
- assert_deprecated('MIME::Types#index_extensions', 'and will be private') do
- MIME::Types.index_extensions(xtxp)
+ it 'successfully adds from another MIME::Types' do
+ old_count = MIME::Types.count
+
+ mt = MIME::Types.new
+ mt.add(eruby)
+
+ MIME::Types.add(mt)
+ assert_equal old_count + 1, MIME::Types.count
+
+ assert_equal MIME::Types[eruby.content_type], [ eruby ]
end
- assert_includes(MIME::Types.of('tzt'), xtxp)
end
end
diff --git a/test/test_mime_types_lazy.rb b/test/test_mime_types_lazy.rb
index 5fe1da9..3a3263e 100644
--- a/test/test_mime_types_lazy.rb
+++ b/test/test_mime_types_lazy.rb
@@ -3,45 +3,41 @@
require 'mime/types'
require 'minitest_helper'
-class TestMIMETypesLazy < Minitest::Test
+describe MIME::Types, 'lazy loading' do
def setup
- @cache_file = File.expand_path('../cache.tst', __FILE__)
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'true'
- ENV['RUBY_MIME_TYPES_CACHE'] = @cache_file
- MIME::Types::Cache.save
end
def teardown
- clear_cache_file
reset_mime_types
- if File.exist? ENV['RUBY_MIME_TYPES_CACHE']
- FileUtils.rm ENV['RUBY_MIME_TYPES_CACHE']
- ENV.delete('RUBY_MIME_TYPES_CACHE')
- end
ENV.delete('RUBY_MIME_TYPES_LAZY_LOAD')
end
- def clear_cache_file
- FileUtils.rm @cache_file if File.exist? @cache_file
- end
-
def reset_mime_types
MIME::Types.instance_variable_set(:@__types__, nil)
MIME::Types.send(:load_default_mime_types)
end
- def test_lazy_load?
- assert_equal(true, MIME::Types.send(:lazy_load?))
- ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = nil
- assert_equal(nil, MIME::Types.send(:lazy_load?))
- ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'false'
- assert_equal(false, MIME::Types.send(:lazy_load?))
+ describe '.lazy_load?' do
+ it 'is true when RUBY_MIME_TYPES_LAZY_LOAD is set' do
+ assert_equal true, MIME::Types.send(:lazy_load?)
+ end
+
+ it 'is nil when RUBY_MIME_TYPES_LAZY_LOAD is unset' do
+ ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = nil
+ assert_equal nil, MIME::Types.send(:lazy_load?)
+ end
+
+ it 'is false when RUBY_MIME_TYPES_LAZY_LOAD is false' do
+ ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'false'
+ assert_equal false, MIME::Types.send(:lazy_load?)
+ end
end
- def test_lazy_loading
+ it 'loads lazily when RUBY_MIME_TYPES_LAZY_LOAD is set' do
MIME::Types.instance_variable_set(:@__types__, nil)
- assert_nil(MIME::Types.instance_variable_get(:@__types__))
- refute_nil(MIME::Types['text/html'].first)
- refute_nil(MIME::Types.instance_variable_get(:@__types__))
+ assert_nil MIME::Types.instance_variable_get(:@__types__)
+ refute_nil MIME::Types['text/html'].first
+ refute_nil MIME::Types.instance_variable_get(:@__types__)
end
end
diff --git a/test/test_mime_types_loader.rb b/test/test_mime_types_loader.rb
index d088743..d78df11 100644
--- a/test/test_mime_types_loader.rb
+++ b/test/test_mime_types_loader.rb
@@ -3,7 +3,7 @@
require 'mime/types'
require 'minitest_helper'
-class TestMIMETypesLoader < Minitest::Test
+describe MIME::Types::Loader do
def setup
@path = File.expand_path('../fixture', __FILE__)
@loader = MIME::Types::Loader.new(@path)
@@ -12,49 +12,21 @@ class TestMIMETypesLoader < Minitest::Test
def assert_correctly_loaded(types)
assert_includes(types, 'application/1d-interleaved-parityfec')
- assert_deprecated('MIME::Type#references') do
- assert_includes(types['application/acad'].first.references, 'LTSW')
- end
- assert_deprecated('MIME::Type#urls') do
- assert_equal([%w(WebM http://www.webmproject.org/code/specs/container/)],
- types['audio/webm'].first.urls)
- end
assert_equal(%w(webm), types['audio/webm'].first.extensions)
refute(types['audio/webm'].first.registered?)
assert_equal('Fixes a bug with IE6 and progressive JPEGs',
types['image/pjpeg'].first.docs)
- assert_deprecated('MIME::Type#system?') do
- assert(types['application/x-apple-diskimage'].first.system?)
- end
- assert_deprecated('MIME::Type#system') do
- assert_equal(/mac/, types['application/x-apple-diskimage'].first.system)
- end
-
assert(types['audio/vnd.qcelp'].first.obsolete?)
assert_equal('audio/QCELP', types['audio/vnd.qcelp'].first.use_instead)
end
- def test_load_yaml
- assert_correctly_loaded(@loader.load_yaml)
- end
-
- def test_load_json
- assert_correctly_loaded(@loader.load_json)
- end
-
- def test_load_v1
- assert_deprecated('MIME::Types::Loader.load_v1') do
- assert_correctly_loaded(@loader.load_v1)
- end
+ it 'loads YAML files correctly' do
+ assert_correctly_loaded @loader.load_yaml
end
- def test_malformed_v1
- assert_output(nil, /1: Parsing error in v1 MIME type definition/) {
- assert_raises(MIME::Types::Loader::BadV1Format) {
- MIME::Types::Loader.load_from_v1(File.join(@bad_path, 'malformed'))
- }
- }
+ it 'loads JSON files correctly' do
+ assert_correctly_loaded @loader.load_json
end
end
diff --git a/type-lists/application.yaml b/type-lists/application.yaml
deleted file mode 100644
index 7033db1..0000000
--- a/type-lists/application.yaml
+++ /dev/null
@@ -1,18925 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: application/1d-interleaved-parityfec
- encoding: base64
- references:
- - IANA
- - RFC6015
- - "{application/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/application/1d-interleaved-parityfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6015
- template:
- - application/1d-interleaved-parityfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/3gpdash-qoe-report+xml
- encoding: base64
- references:
- - IANA
- - "[Ozgur_Oyman]"
- - "[ThreeGPP]"
- - "{application/3gpdash-qoe-report+xml=http://www.iana.org/assignments/media-types/application/3gpdash-qoe-report+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ozgur_Oyman
- - ThreeGPP
- template:
- - application/3gpdash-qoe-report+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/3gpp-ims+xml
- encoding: base64
- references:
- - IANA
- - "[John_M_Meredith]"
- - "{application/3gpp-ims+xml=http://www.iana.org/assignments/media-types/application/3gpp-ims+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_M_Meredith
- template:
- - application/3gpp-ims+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/A2L
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/A2L=http://www.iana.org/assignments/media-types/application/A2L}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/A2L
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/acad
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/access
- encoding: base64
- extensions:
- - mdf
- - mda
- - mdb
- - mde
- obsolete: true
- use-instead: application/x-msaccess
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/activemessage
- encoding: base64
- references:
- - IANA
- - "[Ehud_Shapiro]"
- - "{application/activemessage=http://www.iana.org/assignments/media-types/application/activemessage}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ehud_Shapiro
- template:
- - application/activemessage
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-costmap+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-costmap+json=http://www.iana.org/assignments/media-types/application/alto-costmap+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-costmap+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-costmapfilter+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-costmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-costmapfilter+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-costmapfilter+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-directory+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-directory+json=http://www.iana.org/assignments/media-types/application/alto-directory+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-directory+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-endpointcost+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-endpointcost+json=http://www.iana.org/assignments/media-types/application/alto-endpointcost+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-endpointcost+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-endpointcostparams+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-endpointcostparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointcostparams+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-endpointcostparams+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-endpointprop+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-endpointprop+json=http://www.iana.org/assignments/media-types/application/alto-endpointprop+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-endpointprop+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-endpointpropparams+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-endpointpropparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointpropparams+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-endpointpropparams+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-error+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-error+json=http://www.iana.org/assignments/media-types/application/alto-error+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-error+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-networkmap+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-networkmap+json=http://www.iana.org/assignments/media-types/application/alto-networkmap+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-networkmap+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/alto-networkmapfilter+json
- encoding: base64
- references:
- - IANA
- - RFC7285
- - "{application/alto-networkmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-networkmapfilter+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7285
- template:
- - application/alto-networkmapfilter+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/AML
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/AML=http://www.iana.org/assignments/media-types/application/AML}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/AML
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/andrew-inset
- friendly:
- en: Andrew Toolkit
- encoding: base64
- extensions:
- - ez
- references:
- - IANA
- - "[Nathaniel_Borenstein]"
- - "{application/andrew-inset=http://www.iana.org/assignments/media-types/application/andrew-inset}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nathaniel_Borenstein
- template:
- - application/andrew-inset
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/appledouble
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/applefile
- encoding: base64
- references:
- - IANA
- - "[Patrik_Faltstrom]"
- - "{application/applefile=http://www.iana.org/assignments/media-types/application/applefile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Patrik_Faltstrom
- template:
- - application/applefile
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/applixware
- friendly:
- en: Applixware
- encoding: base64
- extensions:
- - aw
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/ATF
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/ATF=http://www.iana.org/assignments/media-types/application/ATF}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/ATF
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ATFX
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/ATFX=http://www.iana.org/assignments/media-types/application/ATFX}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/ATFX
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/atom+xml
- friendly:
- en: Atom Syndication Format
- encoding: 8bit
- extensions:
- - atom
- references:
- - IANA
- - RFC4287
- - RFC5023
- - "{application/atom+xml=http://www.iana.org/assignments/media-types/application/atom+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4287
- - rfc5023
- template:
- - application/atom+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/atomcat+xml
- friendly:
- en: Atom Publishing Protocol
- encoding: 8bit
- extensions:
- - atomcat
- references:
- - IANA
- - RFC5023
- - "{application/atomcat+xml=http://www.iana.org/assignments/media-types/application/atomcat+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5023
- template:
- - application/atomcat+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/atomdeleted+xml
- encoding: 8bit
- references:
- - IANA
- - RFC6721
- - "{application/atomdeleted+xml=http://www.iana.org/assignments/media-types/application/atomdeleted+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6721
- template:
- - application/atomdeleted+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/atomicmail
- encoding: base64
- references:
- - IANA
- - "[Nathaniel_Borenstein]"
- - "{application/atomicmail=http://www.iana.org/assignments/media-types/application/atomicmail}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nathaniel_Borenstein
- template:
- - application/atomicmail
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/atomsvc+xml
- friendly:
- en: Atom Publishing Protocol Service Document
- encoding: 8bit
- extensions:
- - atomsvc
- references:
- - IANA
- - RFC5023
- - "{application/atomsvc+xml=http://www.iana.org/assignments/media-types/application/atomsvc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5023
- template:
- - application/atomsvc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ATXML
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/ATXML=http://www.iana.org/assignments/media-types/application/ATXML}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/ATXML
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/auth-policy+xml
- encoding: 8bit
- references:
- - IANA
- - RFC4745
- - "{application/auth-policy+xml=http://www.iana.org/assignments/media-types/application/auth-policy+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4745
- template:
- - application/auth-policy+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/bacnet-xdd+zip
- encoding: base64
- references:
- - IANA
- - "[ASHRAE]"
- - "[Dave_Robin]"
- - "{application/bacnet-xdd+zip=http://www.iana.org/assignments/media-types/application/bacnet-xdd+zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASHRAE
- - Dave_Robin
- template:
- - application/bacnet-xdd+zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/batch-SMTP
- encoding: base64
- references:
- - IANA
- - RFC2442
- - "{application/batch-SMTP=http://www.iana.org/assignments/media-types/application/batch-SMTP}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2442
- template:
- - application/batch-SMTP
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/beep+xml
- encoding: base64
- references:
- - IANA
- - RFC3080
- - "{application/beep+xml=http://www.iana.org/assignments/media-types/application/beep+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3080
- template:
- - application/beep+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/bleeper
- encoding: base64
- extensions:
- - bleep
- obsolete: true
- use-instead: application/x-bleeper
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/calendar+json
- encoding: base64
- references:
- - IANA
- - RFC7265
- - "{application/calendar+json=http://www.iana.org/assignments/media-types/application/calendar+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7265
- template:
- - application/calendar+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/calendar+xml
- encoding: base64
- references:
- - IANA
- - RFC6321
- - "{application/calendar+xml=http://www.iana.org/assignments/media-types/application/calendar+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6321
- template:
- - application/calendar+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/call-completion
- encoding: base64
- references:
- - IANA
- - RFC6910
- - "{application/call-completion=http://www.iana.org/assignments/media-types/application/call-completion}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6910
- template:
- - application/call-completion
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cals-1840
- encoding: base64
- references:
- - IANA
- - RFC1895
- - "{application/CALS-1840=http://www.iana.org/assignments/media-types/application/CALS-1840}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1895
- template:
- - application/CALS-1840
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cals1840
- encoding: base64
- obsolete: true
- use-instead: application/cals-1840
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/cbor
- encoding: base64
- references:
- - IANA
- - RFC7049
- - "{application/cbor=http://www.iana.org/assignments/media-types/application/cbor}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7049
- template:
- - application/cbor
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ccmp+xml
- encoding: base64
- references:
- - IANA
- - RFC6503
- - "{application/ccmp+xml=http://www.iana.org/assignments/media-types/application/ccmp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6503
- template:
- - application/ccmp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ccxml+xml
- friendly:
- en: Voice Browser Call Control
- encoding: base64
- extensions:
- - ccxml
- references:
- - IANA
- - RFC4267
- - "{application/ccxml+xml=http://www.iana.org/assignments/media-types/application/ccxml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4267
- template:
- - application/ccxml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/CDFX+XML
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/CDFX+XML=http://www.iana.org/assignments/media-types/application/CDFX+XML}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/CDFX+XML
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cdmi-capability
- friendly:
- en: Cloud Data Management Interface (CDMI) - Capability
- encoding: base64
- extensions:
- - cdmia
- references:
- - IANA
- - RFC6208
- - "{application/cdmi-capability=http://www.iana.org/assignments/media-types/application/cdmi-capability}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6208
- template:
- - application/cdmi-capability
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cdmi-container
- friendly:
- en: Cloud Data Management Interface (CDMI) - Contaimer
- encoding: base64
- extensions:
- - cdmic
- references:
- - IANA
- - RFC6208
- - "{application/cdmi-container=http://www.iana.org/assignments/media-types/application/cdmi-container}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6208
- template:
- - application/cdmi-container
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cdmi-domain
- friendly:
- en: Cloud Data Management Interface (CDMI) - Domain
- encoding: base64
- extensions:
- - cdmid
- references:
- - IANA
- - RFC6208
- - "{application/cdmi-domain=http://www.iana.org/assignments/media-types/application/cdmi-domain}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6208
- template:
- - application/cdmi-domain
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cdmi-object
- friendly:
- en: Cloud Data Management Interface (CDMI) - Object
- encoding: base64
- extensions:
- - cdmio
- references:
- - IANA
- - RFC6208
- - "{application/cdmi-object=http://www.iana.org/assignments/media-types/application/cdmi-object}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6208
- template:
- - application/cdmi-object
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cdmi-queue
- friendly:
- en: Cloud Data Management Interface (CDMI) - Queue
- encoding: base64
- extensions:
- - cdmiq
- references:
- - IANA
- - RFC6208
- - "{application/cdmi-queue=http://www.iana.org/assignments/media-types/application/cdmi-queue}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6208
- template:
- - application/cdmi-queue
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/CEA
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/CEA=http://www.iana.org/assignments/media-types/application/CEA}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/CEA
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cea-2018+xml
- encoding: base64
- references:
- - IANA
- - "[Gottfried_Zimmermann]"
- - "{application/cea-2018+xml=http://www.iana.org/assignments/media-types/application/cea-2018+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gottfried_Zimmermann
- template:
- - application/cea-2018+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cellml+xml
- encoding: base64
- references:
- - IANA
- - RFC4708
- - "{application/cellml+xml=http://www.iana.org/assignments/media-types/application/cellml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4708
- template:
- - application/cellml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cfw
- encoding: base64
- references:
- - IANA
- - RFC6230
- - "{application/cfw=http://www.iana.org/assignments/media-types/application/cfw}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6230
- template:
- - application/cfw
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/clariscad
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/cms
- encoding: base64
- references:
- - IANA
- - RFC7193
- - "{application/cms=http://www.iana.org/assignments/media-types/application/cms}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7193
- template:
- - application/cms
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cnrp+xml
- encoding: base64
- references:
- - IANA
- - RFC3367
- - "{application/cnrp+xml=http://www.iana.org/assignments/media-types/application/cnrp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3367
- template:
- - application/cnrp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/coap-group+json
- encoding: base64
- references:
- - IANA
- - RFC7390
- - "{application/coap-group+json=http://www.iana.org/assignments/media-types/application/coap-group+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7390
- template:
- - application/coap-group+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/commonground
- encoding: base64
- references:
- - IANA
- - "[David_Glazer]"
- - "{application/commonground=http://www.iana.org/assignments/media-types/application/commonground}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Glazer
- template:
- - application/commonground
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/conference-info+xml
- encoding: base64
- references:
- - IANA
- - RFC4575
- - "{application/conference-info+xml=http://www.iana.org/assignments/media-types/application/conference-info+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4575
- template:
- - application/conference-info+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cpl+xml
- encoding: base64
- references:
- - IANA
- - RFC3880
- - "{application/cpl+xml=http://www.iana.org/assignments/media-types/application/cpl+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3880
- template:
- - application/cpl+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/csrattrs
- encoding: base64
- references:
- - IANA
- - RFC7030
- - "{application/csrattrs=http://www.iana.org/assignments/media-types/application/csrattrs}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7030
- template:
- - application/csrattrs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/csta+xml
- encoding: base64
- references:
- - IANA
- - "[Ecma_International_Helpdesk]"
- - "{application/csta+xml=http://www.iana.org/assignments/media-types/application/csta+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ecma_International_Helpdesk
- template:
- - application/csta+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/CSTAdata+xml
- encoding: base64
- references:
- - IANA
- - "[Ecma_International_Helpdesk]"
- - "{application/CSTAdata+xml=http://www.iana.org/assignments/media-types/application/CSTAdata+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ecma_International_Helpdesk
- template:
- - application/CSTAdata+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/cu-seeme
- friendly:
- en: CU-SeeMe
- encoding: base64
- extensions:
- - cu
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/cybercash
- encoding: base64
- references:
- - IANA
- - "[Donald_E._Eastlake_3rd]"
- - "{application/cybercash=http://www.iana.org/assignments/media-types/application/cybercash}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Donald_E._Eastlake_3rd
- template:
- - application/cybercash
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dash+xml
- encoding: base64
- references:
- - IANA
- - "[Thomas_Stockhammer]"
- - "[ISO-IEC_JTC1]"
- - "{application/dash+xml=http://www.iana.org/assignments/media-types/application/dash+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ISO-IEC_JTC1
- - Thomas_Stockhammer
- template:
- - application/dash+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dashdelta
- encoding: base64
- references:
- - IANA
- - "[David_Furbeck]"
- - "{application/dashdelta=http://www.iana.org/assignments/media-types/application/dashdelta}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Furbeck
- template:
- - application/dashdelta
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/davmount+xml
- friendly:
- en: Web Distributed Authoring and Versioning
- encoding: base64
- extensions:
- - davmount
- references:
- - IANA
- - RFC4709
- - "{application/davmount+xml=http://www.iana.org/assignments/media-types/application/davmount+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4709
- template:
- - application/davmount+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dca-rft
- encoding: base64
- references:
- - IANA
- - "[Larry_Campbell]"
- - "{application/dca-rft=http://www.iana.org/assignments/media-types/application/dca-rft}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Larry_Campbell
- template:
- - application/dca-rft
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/DCD
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/DCD=http://www.iana.org/assignments/media-types/application/DCD}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/DCD
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dec-dx
- encoding: base64
- references:
- - IANA
- - "[Larry_Campbell]"
- - "{application/dec-dx=http://www.iana.org/assignments/media-types/application/dec-dx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Larry_Campbell
- template:
- - application/dec-dx
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dialog-info+xml
- encoding: base64
- references:
- - IANA
- - RFC4235
- - "{application/dialog-info+xml=http://www.iana.org/assignments/media-types/application/dialog-info+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4235
- template:
- - application/dialog-info+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dicom
- encoding: base64
- extensions:
- - dcm
- references:
- - IANA
- - RFC3240
- - "{application/dicom=http://www.iana.org/assignments/media-types/application/dicom}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3240
- template:
- - application/dicom
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/DII
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/DII=http://www.iana.org/assignments/media-types/application/DII}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/DII
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/DIT
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/DIT=http://www.iana.org/assignments/media-types/application/DIT}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/DIT
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dns
- encoding: base64
- references:
- - IANA
- - RFC4027
- - "{application/dns=http://www.iana.org/assignments/media-types/application/dns}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4027
- template:
- - application/dns
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/docbook+xml
- encoding: base64
- extensions:
- - dbk
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/drafting
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/dskpp+xml
- encoding: base64
- references:
- - IANA
- - RFC6063
- - "{application/dskpp+xml=http://www.iana.org/assignments/media-types/application/dskpp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6063
- template:
- - application/dskpp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dssc+der
- friendly:
- en: Data Structure for the Security Suitability of Cryptographic Algorithms
- encoding: base64
- extensions:
- - dssc
- references:
- - IANA
- - RFC5698
- - "{application/dssc+der=http://www.iana.org/assignments/media-types/application/dssc+der}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5698
- template:
- - application/dssc+der
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dssc+xml
- friendly:
- en: Data Structure for the Security Suitability of Cryptographic Algorithms
- encoding: base64
- extensions:
- - xdssc
- references:
- - IANA
- - RFC5698
- - "{application/dssc+xml=http://www.iana.org/assignments/media-types/application/dssc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5698
- template:
- - application/dssc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dvcs
- encoding: base64
- references:
- - IANA
- - RFC3029
- - "{application/dvcs=http://www.iana.org/assignments/media-types/application/dvcs}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3029
- template:
- - application/dvcs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/dxf
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/ecmascript
- friendly:
- en: ECMAScript
- encoding: base64
- extensions:
- - ecma
- references:
- - IANA
- - RFC4329
- - "{application/ecmascript=http://www.iana.org/assignments/media-types/application/ecmascript}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4329
- template:
- - application/ecmascript
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/EDI-consent
- encoding: base64
- references:
- - IANA
- - RFC1767
- - "{application/EDI-consent=http://www.iana.org/assignments/media-types/application/EDI-consent}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1767
- template:
- - application/EDI-consent
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/EDI-X12
- encoding: base64
- references:
- - IANA
- - RFC1767
- - "{application/EDI-X12=http://www.iana.org/assignments/media-types/application/EDI-X12}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1767
- template:
- - application/EDI-X12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/EDIFACT
- encoding: base64
- references:
- - IANA
- - RFC1767
- - "{application/EDIFACT=http://www.iana.org/assignments/media-types/application/EDIFACT}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1767
- template:
- - application/EDIFACT
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/emma+xml
- friendly:
- en: Extensible MultiModal Annotation
- encoding: base64
- extensions:
- - emma
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/emotionml+xml
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "[Kazuyuki_Ashimura]"
- - "{application/emotionml+xml=http://www.iana.org/assignments/media-types/application/emotionml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kazuyuki_Ashimura
- - W3C
- template:
- - application/emotionml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/encaprtp
- encoding: base64
- references:
- - IANA
- - RFC6849
- - "{application/encaprtp=http://www.iana.org/assignments/media-types/application/encaprtp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - application/encaprtp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/epp+xml
- encoding: base64
- references:
- - IANA
- - RFC5730
- - "{application/epp+xml=http://www.iana.org/assignments/media-types/application/epp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5730
- template:
- - application/epp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/epub+zip
- friendly:
- en: Electronic Publication
- encoding: base64
- extensions:
- - epub
- references:
- - IANA
- - "[International_Digital_Publishing_Forum]"
- - "[William_McCoy]"
- - "{application/epub+zip=http://www.iana.org/assignments/media-types/application/epub+zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - International_Digital_Publishing_Forum
- - William_McCoy
- template:
- - application/epub+zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/eshop
- encoding: base64
- references:
- - IANA
- - "[Steve_Katz]"
- - "{application/eshop=http://www.iana.org/assignments/media-types/application/eshop}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Katz
- template:
- - application/eshop
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{application/example=http://www.iana.org/assignments/media-types/application/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - application/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/excel
- encoding: base64
- extensions:
- - xls
- - xlt
- obsolete: true
- use-instead: application/vnd.ms-excel
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/exi
- friendly:
- en: Efficient XML Interchange
- encoding: base64
- extensions:
- - exi
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/fastinfoset
- encoding: base64
- references:
- - IANA
- - "[ITU-T_ASN.1_Rapporteur]"
- - "{application/fastinfoset=http://www.iana.org/assignments/media-types/application/fastinfoset}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ITU-T_ASN.1_Rapporteur
- template:
- - application/fastinfoset
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/fastsoap
- encoding: base64
- references:
- - IANA
- - "[ITU-T_ASN.1_Rapporteur]"
- - "{application/fastsoap=http://www.iana.org/assignments/media-types/application/fastsoap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ITU-T_ASN.1_Rapporteur
- template:
- - application/fastsoap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/fdt+xml
- encoding: base64
- references:
- - IANA
- - RFC6726
- - "{application/fdt+xml=http://www.iana.org/assignments/media-types/application/fdt+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6726
- template:
- - application/fdt+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/fits
- encoding: base64
- references:
- - IANA
- - RFC4047
- - "{application/fits=http://www.iana.org/assignments/media-types/application/fits}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4047
- template:
- - application/fits
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/font-sfnt
- encoding: base64
- extensions:
- - otf
- - ttf
- references:
- - IANA
- - "[Levantovsky]"
- - "{application/font-sfnt=http://www.iana.org/assignments/media-types/application/font-sfnt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Levantovsky
- template:
- - application/font-sfnt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/font-tdpfr
- friendly:
- en: Portable Font Resource
- encoding: base64
- extensions:
- - pfr
- references:
- - IANA
- - RFC3073
- - "{application/font-tdpfr=http://www.iana.org/assignments/media-types/application/font-tdpfr}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3073
- template:
- - application/font-tdpfr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/font-woff
- friendly:
- en: Web Open Font Format
- encoding: base64
- extensions:
- - woff
- - woff2
- references:
- - IANA
- - "[W3C]"
- - "{application/font-woff=http://www.iana.org/assignments/media-types/application/font-woff}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- template:
- - application/font-woff
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/fractals
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/framework-attributes+xml
- encoding: base64
- references:
- - IANA
- - RFC6230
- - "{application/framework-attributes+xml=http://www.iana.org/assignments/media-types/application/framework-attributes+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6230
- template:
- - application/framework-attributes+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/futuresplash
- encoding: base64
- extensions:
- - spl
- obsolete: true
- use-instead: application/x-futuresplash
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/ghostview
- encoding: base64
- obsolete: true
- use-instead: application/x-ghostview
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/gml+xml
- encoding: base64
- extensions:
- - gml
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/gpx+xml
- encoding: base64
- extensions:
- - gpx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/gxf
- encoding: base64
- extensions:
- - gxf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/gzip
- encoding: base64
- extensions:
- - gz
- references:
- - IANA
- - RFC6713
- - "{application/gzip=http://www.iana.org/assignments/media-types/application/gzip}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6713
- template:
- - application/gzip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/H224
- encoding: base64
- references:
- - IANA
- - RFC4573
- - "{application/H224=http://www.iana.org/assignments/media-types/application/H224}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4573
- template:
- - application/H224
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/held+xml
- encoding: base64
- references:
- - IANA
- - RFC5985
- - "{application/held+xml=http://www.iana.org/assignments/media-types/application/held+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5985
- template:
- - application/held+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/hep
- encoding: base64
- extensions:
- - hep
- obsolete: true
- use-instead: application/x-hep
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/http
- encoding: base64
- references:
- - IANA
- - RFC7230
- - "{application/http=http://www.iana.org/assignments/media-types/application/http}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7230
- template:
- - application/http
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/hyperstudio
- friendly:
- en: Hyperstudio
- encoding: base64
- extensions:
- - stk
- references:
- - IANA
- - "[Michael_Domino]"
- - "{application/hyperstudio=http://www.iana.org/assignments/media-types/application/hyperstudio}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Domino
- template:
- - application/hyperstudio
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/i-deas
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/ibe-key-request+xml
- encoding: base64
- references:
- - IANA
- - RFC5408
- - "{application/ibe-key-request+xml=http://www.iana.org/assignments/media-types/application/ibe-key-request+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5408
- template:
- - application/ibe-key-request+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ibe-pkg-reply+xml
- encoding: base64
- references:
- - IANA
- - RFC5408
- - "{application/ibe-pkg-reply+xml=http://www.iana.org/assignments/media-types/application/ibe-pkg-reply+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5408
- template:
- - application/ibe-pkg-reply+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ibe-pp-data
- encoding: base64
- references:
- - IANA
- - RFC5408
- - "{application/ibe-pp-data=http://www.iana.org/assignments/media-types/application/ibe-pp-data}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5408
- template:
- - application/ibe-pp-data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/iges
- encoding: base64
- references:
- - IANA
- - "[Curtis_Parks]"
- - "{application/iges=http://www.iana.org/assignments/media-types/application/iges}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Curtis_Parks
- template:
- - application/iges
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/im-iscomposing+xml
- encoding: base64
- references:
- - IANA
- - RFC3994
- - "{application/im-iscomposing+xml=http://www.iana.org/assignments/media-types/application/im-iscomposing+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3994
- template:
- - application/im-iscomposing+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/imagemap
- encoding: 8bit
- extensions:
- - imagemap
- - imap
- obsolete: true
- use-instead: application/x-imagemap
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/index
- encoding: base64
- references:
- - IANA
- - RFC2652
- - "{application/index=http://www.iana.org/assignments/media-types/application/index}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2652
- template:
- - application/index
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/index.cmd
- encoding: base64
- references:
- - IANA
- - RFC2652
- - "{application/index.cmd=http://www.iana.org/assignments/media-types/application/index.cmd}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2652
- template:
- - application/index.cmd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/index.obj
- encoding: base64
- references:
- - IANA
- - RFC2652
- - "{application/index-obj=http://www.iana.org/assignments/media-types/application/index-obj}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2652
- template:
- - application/index-obj
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/index.response
- encoding: base64
- references:
- - IANA
- - RFC2652
- - "{application/index.response=http://www.iana.org/assignments/media-types/application/index.response}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2652
- template:
- - application/index.response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/index.vnd
- encoding: base64
- references:
- - IANA
- - RFC2652
- - "{application/index.vnd=http://www.iana.org/assignments/media-types/application/index.vnd}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2652
- template:
- - application/index.vnd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/inkml+xml
- encoding: base64
- extensions:
- - ink
- - inkml
- references:
- - IANA
- - "[Kazuyuki_Ashimura]"
- - "{application/inkml+xml=http://www.iana.org/assignments/media-types/application/inkml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kazuyuki_Ashimura
- template:
- - application/inkml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/iotp
- encoding: base64
- references:
- - IANA
- - RFC2935
- - "{application/IOTP=http://www.iana.org/assignments/media-types/application/IOTP}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2935
- template:
- - application/IOTP
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ipfix
- friendly:
- en: Internet Protocol Flow Information Export
- encoding: base64
- extensions:
- - ipfix
- references:
- - IANA
- - RFC5655
- - "{application/ipfix=http://www.iana.org/assignments/media-types/application/ipfix}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5655
- template:
- - application/ipfix
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ipp
- encoding: base64
- references:
- - IANA
- - RFC2910
- - "{application/ipp=http://www.iana.org/assignments/media-types/application/ipp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2910
- template:
- - application/ipp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/isup
- encoding: base64
- references:
- - IANA
- - RFC3204
- - "{application/ISUP=http://www.iana.org/assignments/media-types/application/ISUP}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3204
- template:
- - application/ISUP
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/its+xml
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "[ITS-IG-W3C]"
- - "{application/its+xml=http://www.iana.org/assignments/media-types/application/its+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ITS-IG-W3C
- - W3C
- template:
- - application/its+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/java-archive
- friendly:
- en: Java Archive
- encoding: base64
- extensions:
- - jar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/java-serialized-object
- friendly:
- en: Java Serialized Object
- encoding: base64
- extensions:
- - ser
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/java-vm
- friendly:
- en: Java Bytecode File
- encoding: base64
- extensions:
- - class
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/javascript
- friendly:
- en: JavaScript
- encoding: 8bit
- extensions:
- - js
- - sj
- references:
- - IANA
- - RFC4329
- - "{application/javascript=http://www.iana.org/assignments/media-types/application/javascript}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4329
- template:
- - application/javascript
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/jose
- encoding: base64
- references:
- - IANA
- - RFC7515
- - "{application/jose=http://www.iana.org/assignments/media-types/application/jose}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7515
- template:
- - application/jose
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/jose+json
- encoding: base64
- references:
- - IANA
- - RFC7515
- - "{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7515
- template:
- - application/jose+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/jrd+json
- encoding: base64
- references:
- - IANA
- - RFC7033
- - "{application/jrd+json=http://www.iana.org/assignments/media-types/application/jrd+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7033
- template:
- - application/jrd+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/json
- friendly:
- en: JavaScript Object Notation (JSON)
- encoding: 8bit
- extensions:
- - json
- references:
- - IANA
- - RFC7158
- - "{application/json=http://www.iana.org/assignments/media-types/application/json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7158
- template:
- - application/json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/json-patch+json
- encoding: base64
- references:
- - IANA
- - RFC6902
- - "{application/json-patch+json=http://www.iana.org/assignments/media-types/application/json-patch+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6902
- template:
- - application/json-patch+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/json-seq
- encoding: base64
- references:
- - IANA
- - RFC7464
- - "{application/json-seq=http://www.iana.org/assignments/media-types/application/json-seq}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7464
- template:
- - application/json-seq
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/jsonml+json
- encoding: base64
- extensions:
- - jsonml
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/jwk+json
- encoding: base64
- references:
- - IANA
- - RFC7517
- - "{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7517
- template:
- - application/jwk+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/jwk-set+json
- encoding: base64
- references:
- - IANA
- - RFC7517
- - "{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7517
- template:
- - application/jwk-set+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/jwt
- encoding: base64
- references:
- - IANA
- - RFC7519
- - "{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7519
- template:
- - application/jwt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/kpml-request+xml
- encoding: base64
- references:
- - IANA
- - RFC4730
- - "{application/kpml-request+xml=http://www.iana.org/assignments/media-types/application/kpml-request+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4730
- template:
- - application/kpml-request+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/kpml-response+xml
- encoding: base64
- references:
- - IANA
- - RFC4730
- - "{application/kpml-response+xml=http://www.iana.org/assignments/media-types/application/kpml-response+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4730
- template:
- - application/kpml-response+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ld+json
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "[Ivan_Herman]"
- - "{application/ld+json=http://www.iana.org/assignments/media-types/application/ld+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ivan_Herman
- - W3C
- template:
- - application/ld+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/link-format
- encoding: base64
- references:
- - IANA
- - RFC6690
- - "{application/link-format=http://www.iana.org/assignments/media-types/application/link-format}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6690
- template:
- - application/link-format
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/load-control+xml
- encoding: base64
- references:
- - IANA
- - RFC7200
- - "{application/load-control+xml=http://www.iana.org/assignments/media-types/application/load-control+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7200
- template:
- - application/load-control+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/lost+xml
- encoding: base64
- extensions:
- - lostxml
- references:
- - IANA
- - RFC5222
- - "{application/lost+xml=http://www.iana.org/assignments/media-types/application/lost+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5222
- template:
- - application/lost+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/lostsync+xml
- encoding: base64
- references:
- - IANA
- - RFC6739
- - "{application/lostsync+xml=http://www.iana.org/assignments/media-types/application/lostsync+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6739
- template:
- - application/lostsync+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/lotus-123
- encoding: base64
- extensions:
- - wks
- obsolete: true
- use-instead: application/vnd.lotus-1-2-3
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/LXF
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/LXF=http://www.iana.org/assignments/media-types/application/LXF}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/LXF
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mac-binhex40
- friendly:
- en: Macintosh BinHex 4.0
- encoding: 8bit
- extensions:
- - hqx
- references:
- - IANA
- - "[Patrik_Faltstrom]"
- - "{application/mac-binhex40=http://www.iana.org/assignments/media-types/application/mac-binhex40}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Patrik_Faltstrom
- template:
- - application/mac-binhex40
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mac-compactpro
- friendly:
- en: Compact Pro
- encoding: base64
- extensions:
- - cpt
- obsolete: true
- use-instead: application/x-mac-compactpro
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/macbinary
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/macwriteii
- encoding: base64
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{application/macwriteii=http://www.iana.org/assignments/media-types/application/macwriteii}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - application/macwriteii
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mads+xml
- friendly:
- en: Metadata Authority Description Schema
- encoding: base64
- extensions:
- - mads
- references:
- - IANA
- - RFC6207
- - "{application/mads+xml=http://www.iana.org/assignments/media-types/application/mads+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6207
- template:
- - application/mads+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/marc
- friendly:
- en: MARC Formats
- encoding: base64
- extensions:
- - mrc
- references:
- - IANA
- - RFC2220
- - "{application/marc=http://www.iana.org/assignments/media-types/application/marc}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2220
- template:
- - application/marc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/marcxml+xml
- friendly:
- en: MARC21 XML Schema
- encoding: base64
- extensions:
- - mrcx
- references:
- - IANA
- - RFC6207
- - "{application/marcxml+xml=http://www.iana.org/assignments/media-types/application/marcxml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6207
- template:
- - application/marcxml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mathcad
- encoding: base64
- extensions:
- - mcd
- obsolete: true
- use-instead: application/vnd.mcd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/mathematica
- friendly:
- en: Mathematica Notebooks
- encoding: base64
- extensions:
- - ma
- - mb
- - nb
- references:
- - IANA
- - "[Wolfram]"
- - "{application/mathematica=http://www.iana.org/assignments/media-types/application/mathematica}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Wolfram
- template:
- - application/mathematica
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mathematica-old
- encoding: base64
- obsolete: true
- use-instead: application/x-mathematica-old
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/mathml+xml
- friendly:
- en: Mathematical Markup Language
- encoding: base64
- extensions:
- - mathml
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/MathML3/appendixb.html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/MathML3/appendixb.html
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mathml-content+xml
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/MathML3/appendixb.html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/MathML3/appendixb.html
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mathml-presentation+xml
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/MathML3/appendixb.html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/MathML3/appendixb.html
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-associated-procedure-description+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-associated-procedure-description+xml=http://www.iana.org/assignments/media-types/application/mbms-associated-procedure-description+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-associated-procedure-description+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-deregister+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-deregister+xml=http://www.iana.org/assignments/media-types/application/mbms-deregister+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-deregister+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-envelope+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-envelope+xml=http://www.iana.org/assignments/media-types/application/mbms-envelope+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-envelope+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-msk+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-msk+xml=http://www.iana.org/assignments/media-types/application/mbms-msk+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-msk+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-msk-response+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-msk-response+xml=http://www.iana.org/assignments/media-types/application/mbms-msk-response+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-msk-response+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-protection-description+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-protection-description+xml=http://www.iana.org/assignments/media-types/application/mbms-protection-description+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-protection-description+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-reception-report+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-reception-report+xml=http://www.iana.org/assignments/media-types/application/mbms-reception-report+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-reception-report+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-register+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-register+xml=http://www.iana.org/assignments/media-types/application/mbms-register+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-register+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-register-response+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-register-response+xml=http://www.iana.org/assignments/media-types/application/mbms-register-response+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-register-response+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-schedule+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "[Eric_Turcotte]"
- - "{application/mbms-schedule+xml=http://www.iana.org/assignments/media-types/application/mbms-schedule+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Turcotte
- - ThreeGPP
- template:
- - application/mbms-schedule+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbms-user-service-description+xml
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/mbms-user-service-description+xml=http://www.iana.org/assignments/media-types/application/mbms-user-service-description+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/mbms-user-service-description+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mbox
- friendly:
- en: Mbox database files
- encoding: base64
- extensions:
- - mbox
- references:
- - IANA
- - RFC4155
- - "{application/mbox=http://www.iana.org/assignments/media-types/application/mbox}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4155
- template:
- - application/mbox
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/media-policy-dataset+xml
- encoding: base64
- references:
- - IANA
- - RFC6796
- - "{application/media-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/media-policy-dataset+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6796
- template:
- - application/media-policy-dataset+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/media_control+xml
- encoding: base64
- references:
- - IANA
- - RFC5168
- - "{application/media_control+xml=http://www.iana.org/assignments/media-types/application/media_control+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5168
- template:
- - application/media_control+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mediaservercontrol+xml
- friendly:
- en: Media Server Control Markup Language
- encoding: base64
- extensions:
- - mscml
- references:
- - IANA
- - RFC5022
- - "{application/mediaservercontrol+xml=http://www.iana.org/assignments/media-types/application/mediaservercontrol+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5022
- template:
- - application/mediaservercontrol+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/merge-patch+json
- encoding: base64
- references:
- - IANA
- - RFC7396
- - "{application/merge-patch+json=http://www.iana.org/assignments/media-types/application/merge-patch+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7396
- template:
- - application/merge-patch+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/metalink+xml
- encoding: base64
- extensions:
- - metalink
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/metalink4+xml
- friendly:
- en: Metalink
- encoding: base64
- extensions:
- - meta4
- references:
- - IANA
- - RFC5854
- - "{application/metalink4+xml=http://www.iana.org/assignments/media-types/application/metalink4+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5854
- template:
- - application/metalink4+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mets+xml
- friendly:
- en: Metadata Encoding and Transmission Standard
- encoding: base64
- extensions:
- - mets
- references:
- - IANA
- - RFC6207
- - "{application/mets+xml=http://www.iana.org/assignments/media-types/application/mets+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6207
- template:
- - application/mets+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/MF4
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/MF4=http://www.iana.org/assignments/media-types/application/MF4}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/MF4
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mikey
- encoding: base64
- references:
- - IANA
- - RFC3830
- - "{application/mikey=http://www.iana.org/assignments/media-types/application/mikey}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3830
- template:
- - application/mikey
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mods+xml
- friendly:
- en: Metadata Object Description Schema
- encoding: base64
- extensions:
- - mods
- references:
- - IANA
- - RFC6207
- - "{application/mods+xml=http://www.iana.org/assignments/media-types/application/mods+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6207
- template:
- - application/mods+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/moss-keys
- encoding: base64
- references:
- - IANA
- - RFC1848
- - "{application/moss-keys=http://www.iana.org/assignments/media-types/application/moss-keys}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1848
- template:
- - application/moss-keys
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/moss-signature
- encoding: base64
- references:
- - IANA
- - RFC1848
- - "{application/moss-signature=http://www.iana.org/assignments/media-types/application/moss-signature}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1848
- template:
- - application/moss-signature
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mosskey-data
- encoding: base64
- references:
- - IANA
- - RFC1848
- - "{application/mosskey-data=http://www.iana.org/assignments/media-types/application/mosskey-data}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1848
- template:
- - application/mosskey-data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mosskey-request
- encoding: base64
- references:
- - IANA
- - RFC1848
- - "{application/mosskey-request=http://www.iana.org/assignments/media-types/application/mosskey-request}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1848
- template:
- - application/mosskey-request
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mp21
- friendly:
- en: MPEG-21
- encoding: base64
- extensions:
- - m21
- - mp21
- references:
- - IANA
- - RFC6381
- - "[David_Singer]"
- - "{application/mp21=http://www.iana.org/assignments/media-types/application/mp21}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6381
- person:
- - David_Singer
- template:
- - application/mp21
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mp4
- friendly:
- en: MPEG4
- encoding: base64
- extensions:
- - mp4
- - mpg4
- - mp4s
- references:
- - IANA
- - RFC4337
- - RFC6381
- - "{application/mp4=http://www.iana.org/assignments/media-types/application/mp4}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4337
- - rfc6381
- template:
- - application/mp4
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mpeg4-generic
- encoding: base64
- references:
- - IANA
- - RFC3640
- - "{application/mpeg4-generic=http://www.iana.org/assignments/media-types/application/mpeg4-generic}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3640
- template:
- - application/mpeg4-generic
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mpeg4-iod
- encoding: base64
- references:
- - IANA
- - RFC4337
- - "{application/mpeg4-iod=http://www.iana.org/assignments/media-types/application/mpeg4-iod}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4337
- template:
- - application/mpeg4-iod
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mpeg4-iod-xmt
- encoding: base64
- references:
- - IANA
- - RFC4337
- - "{application/mpeg4-iod-xmt=http://www.iana.org/assignments/media-types/application/mpeg4-iod-xmt}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4337
- template:
- - application/mpeg4-iod-xmt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mrb-consumer+xml
- encoding: base64
- references:
- - IANA
- - RFC6917
- - "{application/mrb-consumer+xml=http://www.iana.org/assignments/media-types/application/mrb-consumer+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6917
- template:
- - application/mrb-consumer+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mrb-publish+xml
- encoding: base64
- references:
- - IANA
- - RFC6917
- - "{application/mrb-publish+xml=http://www.iana.org/assignments/media-types/application/mrb-publish+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6917
- template:
- - application/mrb-publish+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/msc-ivr+xml
- encoding: base64
- references:
- - IANA
- - RFC6231
- - "{application/msc-ivr+xml=http://www.iana.org/assignments/media-types/application/msc-ivr+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6231
- template:
- - application/msc-ivr+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/msc-mixer+xml
- encoding: base64
- references:
- - IANA
- - RFC6505
- - "{application/msc-mixer+xml=http://www.iana.org/assignments/media-types/application/msc-mixer+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6505
- template:
- - application/msc-mixer+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/msword
- friendly:
- en: Microsoft Word
- encoding: base64
- extensions:
- - doc
- - dot
- - wrd
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{application/msword=http://www.iana.org/assignments/media-types/application/msword}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - application/msword
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/mxf
- friendly:
- en: Material Exchange Format
- encoding: base64
- extensions:
- - mxf
- references:
- - IANA
- - RFC4539
- - "{application/mxf=http://www.iana.org/assignments/media-types/application/mxf}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4539
- template:
- - application/mxf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/nasdata
- encoding: base64
- references:
- - IANA
- - RFC4707
- - "{application/nasdata=http://www.iana.org/assignments/media-types/application/nasdata}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4707
- template:
- - application/nasdata
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/netcdf
- encoding: base64
- extensions:
- - nc
- - cdf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/news-checkgroups
- encoding: base64
- references:
- - IANA
- - RFC5537
- - "{application/news-checkgroups=http://www.iana.org/assignments/media-types/application/news-checkgroups}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5537
- template:
- - application/news-checkgroups
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/news-groupinfo
- encoding: base64
- references:
- - IANA
- - RFC5537
- - "{application/news-groupinfo=http://www.iana.org/assignments/media-types/application/news-groupinfo}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5537
- template:
- - application/news-groupinfo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/news-message-id
- encoding: base64
- obsolete: true
- references:
- - IANA
- - RFC1036
- - "[Spencer]"
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/news-transmission
- encoding: base64
- references:
- - IANA
- - RFC5537
- - "{application/news-transmission=http://www.iana.org/assignments/media-types/application/news-transmission}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5537
- template:
- - application/news-transmission
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/nlsml+xml
- encoding: base64
- references:
- - IANA
- - RFC6787
- - "{application/nlsml+xml=http://www.iana.org/assignments/media-types/application/nlsml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6787
- template:
- - application/nlsml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/nss
- encoding: base64
- references:
- - IANA
- - "[Michael_Hammer]"
- - "{application/nss=http://www.iana.org/assignments/media-types/application/nss}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Hammer
- template:
- - application/nss
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ocsp-request
- encoding: base64
- references:
- - IANA
- - RFC6960
- - "{application/ocsp-request=http://www.iana.org/assignments/media-types/application/ocsp-request}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6960
- template:
- - application/ocsp-request
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ocsp-response
- encoding: base64
- references:
- - IANA
- - RFC6960
- - "{application/ocsp-response=http://www.iana.org/assignments/media-types/application/ocsp-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6960
- template:
- - application/ocsp-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/octet-stream
- friendly:
- en: Binary Data
- encoding: base64
- extensions:
- - bin
- - dms
- - lha
- - lzh
- - exe
- - class
- - ani
- - pgp
- - so
- - dll
- - dylib
- - bpk
- - deploy
- - dist
- - distz
- - dump
- - elc
- - lrf
- - mar
- - pkg
- references:
- - IANA
- - RFC2045
- - RFC2046
- - "{application/octet-stream=http://www.iana.org/assignments/media-types/application/octet-stream}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- template:
- - application/octet-stream
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/oda
- friendly:
- en: Office Document Architecture
- encoding: base64
- extensions:
- - oda
- references:
- - IANA
- - RFC2045
- - RFC2046
- - "{application/ODA=http://www.iana.org/assignments/media-types/application/ODA}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- template:
- - application/ODA
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ODX
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/ODX=http://www.iana.org/assignments/media-types/application/ODX}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/ODX
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/oebps-package+xml
- friendly:
- en: Open eBook Publication Structure
- encoding: base64
- extensions:
- - opf
- references:
- - IANA
- - RFC4839
- - "{application/oebps-package+xml=http://www.iana.org/assignments/media-types/application/oebps-package+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4839
- template:
- - application/oebps-package+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ogg
- friendly:
- en: Ogg
- encoding: base64
- extensions:
- - ogx
- references:
- - IANA
- - RFC5334
- - "{application/ogg=http://www.iana.org/assignments/media-types/application/ogg}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5334
- template:
- - application/ogg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/omdoc+xml
- encoding: base64
- extensions:
- - omdoc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/onenote
- friendly:
- en: Microsoft OneNote
- encoding: base64
- extensions:
- - onepkg
- - onetmp
- - onetoc
- - onetoc2
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/oxps
- encoding: base64
- extensions:
- - oxps
- references:
- - IANA
- - "[Ecma_International_Helpdesk]"
- - "{application/oxps=http://www.iana.org/assignments/media-types/application/oxps}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ecma_International_Helpdesk
- template:
- - application/oxps
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/p2p-overlay+xml
- encoding: base64
- references:
- - IANA
- - RFC6940
- - "{application/p2p-overlay+xml=http://www.iana.org/assignments/media-types/application/p2p-overlay+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6940
- template:
- - application/p2p-overlay+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/parityfec
- encoding: base64
- references:
- - IANA
- - RFC5109
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/patch-ops-error+xml
- friendly:
- en: XML Patch Framework
- encoding: base64
- extensions:
- - xer
- references:
- - IANA
- - RFC5261
- - "{application/patch-ops-error+xml=http://www.iana.org/assignments/media-types/application/patch-ops-error+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5261
- template:
- - application/patch-ops-error+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pdf
- friendly:
- en: Adobe Portable Document Format
- encoding: base64
- extensions:
- - pdf
- references:
- - IANA
- - RFC3778
- - "{application/pdf=http://www.iana.org/assignments/media-types/application/pdf}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3778
- template:
- - application/pdf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/PDX
- encoding: base64
- references:
- - IANA
- - "[ASAM]"
- - "[Thomas_Thomsen]"
- - "{application/PDX=http://www.iana.org/assignments/media-types/application/PDX}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ASAM
- - Thomas_Thomsen
- template:
- - application/PDX
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pgp-encrypted
- friendly:
- en: Pretty Good Privacy
- encoding: 7bit
- extensions:
- - pgp
- references:
- - IANA
- - RFC3156
- - "{application/pgp-encrypted=http://www.iana.org/assignments/media-types/application/pgp-encrypted}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3156
- template:
- - application/pgp-encrypted
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pgp-keys
- encoding: 7bit
- references:
- - IANA
- - RFC3156
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3156
- registered: true
- signature: true
-- !ruby/object:MIME::Type
- content-type: application/pgp-signature
- friendly:
- en: Pretty Good Privacy - Signature
- encoding: base64
- extensions:
- - asc
- - sig
- references:
- - IANA
- - RFC3156
- - "{application/pgp-signature=http://www.iana.org/assignments/media-types/application/pgp-signature}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3156
- template:
- - application/pgp-signature
- registered: true
- signature: true
-- !ruby/object:MIME::Type
- content-type: application/pics-rules
- friendly:
- en: PICSRules
- encoding: base64
- extensions:
- - prf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/pidf+xml
- encoding: base64
- references:
- - IANA
- - RFC3863
- - "{application/pidf+xml=http://www.iana.org/assignments/media-types/application/pidf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3863
- template:
- - application/pidf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pidf-diff+xml
- encoding: base64
- references:
- - IANA
- - RFC5262
- - "{application/pidf-diff+xml=http://www.iana.org/assignments/media-types/application/pidf-diff+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5262
- template:
- - application/pidf-diff+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkcs10
- friendly:
- en: 'PKCS #10 - Certification Request Standard'
- encoding: base64
- extensions:
- - p10
- references:
- - IANA
- - RFC5967
- - "{application/pkcs10=http://www.iana.org/assignments/media-types/application/pkcs10}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5967
- template:
- - application/pkcs10
- registered: true
- signature: true
-- !ruby/object:MIME::Type
- content-type: application/pkcs12
- encoding: base64
- references:
- - IANA
- - "[IETF]"
- - "{application/pkcs12=http://www.iana.org/assignments/media-types/application/pkcs12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - IETF
- template:
- - application/pkcs12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkcs7-mime
- friendly:
- en: 'PKCS #7 - Cryptographic Message Syntax Standard'
- encoding: base64
- extensions:
- - p7m
- - p7c
- references:
- - IANA
- - RFC5751
- - RFC7114
- - "{application/pkcs7-mime=http://www.iana.org/assignments/media-types/application/pkcs7-mime}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5751
- - rfc7114
- template:
- - application/pkcs7-mime
- registered: true
- signature: true
-- !ruby/object:MIME::Type
- content-type: application/pkcs7-signature
- friendly:
- en: 'PKCS #7 - Cryptographic Message Syntax Standard'
- encoding: base64
- extensions:
- - p7s
- references:
- - IANA
- - RFC5751
- - "{application/pkcs7-signature=http://www.iana.org/assignments/media-types/application/pkcs7-signature}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5751
- template:
- - application/pkcs7-signature
- registered: true
- signature: true
-- !ruby/object:MIME::Type
- content-type: application/pkcs8
- friendly:
- en: 'PKCS #8 - Private-Key Information Syntax Standard'
- encoding: base64
- extensions:
- - p8
- references:
- - IANA
- - RFC5958
- - "{application/pkcs8=http://www.iana.org/assignments/media-types/application/pkcs8}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5958
- template:
- - application/pkcs8
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkix-attr-cert
- friendly:
- en: Attribute Certificate
- encoding: base64
- extensions:
- - ac
- references:
- - IANA
- - RFC5877
- - "{application/pkix-attr-cert=http://www.iana.org/assignments/media-types/application/pkix-attr-cert}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5877
- template:
- - application/pkix-attr-cert
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkix-cert
- friendly:
- en: Internet Public Key Infrastructure - Certificate
- encoding: base64
- extensions:
- - cer
- references:
- - IANA
- - RFC2585
- - "{application/pkix-cert=http://www.iana.org/assignments/media-types/application/pkix-cert}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2585
- template:
- - application/pkix-cert
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkix-crl
- friendly:
- en: Internet Public Key Infrastructure - Certificate Revocation Lists
- encoding: base64
- extensions:
- - crl
- references:
- - IANA
- - RFC2585
- - "{application/pkix-crl=http://www.iana.org/assignments/media-types/application/pkix-crl}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2585
- template:
- - application/pkix-crl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkix-pkipath
- friendly:
- en: Internet Public Key Infrastructure - Certification Path
- encoding: base64
- extensions:
- - pkipath
- references:
- - IANA
- - RFC6066
- - "{application/pkix-pkipath=http://www.iana.org/assignments/media-types/application/pkix-pkipath}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6066
- template:
- - application/pkix-pkipath
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pkixcmp
- friendly:
- en: Internet Public Key Infrastructure - Certificate Management Protocole
- encoding: base64
- extensions:
- - pki
- references:
- - IANA
- - RFC2510
- - "{application/pkixcmp=http://www.iana.org/assignments/media-types/application/pkixcmp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2510
- template:
- - application/pkixcmp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pls+xml
- friendly:
- en: Pronunciation Lexicon Specification
- encoding: base64
- extensions:
- - pls
- references:
- - IANA
- - RFC4267
- - "{application/pls+xml=http://www.iana.org/assignments/media-types/application/pls+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4267
- template:
- - application/pls+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/poc-settings+xml
- encoding: base64
- references:
- - IANA
- - RFC4354
- - "{application/poc-settings+xml=http://www.iana.org/assignments/media-types/application/poc-settings+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4354
- template:
- - application/poc-settings+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/postscript
- friendly:
- en: PostScript
- encoding: 8bit
- extensions:
- - ai
- - eps
- - ps
- references:
- - IANA
- - RFC2045
- - RFC2046
- - "{application/postscript=http://www.iana.org/assignments/media-types/application/postscript}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- template:
- - application/postscript
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/powerpoint
- encoding: base64
- extensions:
- - ppt
- - pps
- - pot
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/pro_eng
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/provenance+xml
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "[Ivan_Herman]"
- - "{application/provenance+xml=http://www.iana.org/assignments/media-types/application/provenance+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ivan_Herman
- - W3C
- template:
- - application/provenance+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.alvestrand.titrax-sheet
- encoding: base64
- references:
- - IANA
- - "[Harald_T._Alvestrand]"
- - "{application/prs.alvestrand.titrax-sheet=http://www.iana.org/assignments/media-types/application/prs.alvestrand.titrax-sheet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Harald_T._Alvestrand
- template:
- - application/prs.alvestrand.titrax-sheet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.cww
- friendly:
- en: CU-Writer
- encoding: base64
- extensions:
- - cw
- - cww
- references:
- - IANA
- - "[Khemchart_Rungchavalnont]"
- - "{application/prs.cww=http://www.iana.org/assignments/media-types/application/prs.cww}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Khemchart_Rungchavalnont
- template:
- - application/prs.cww
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.hpub+zip
- encoding: base64
- references:
- - IANA
- - "[Giulio_Zambon]"
- - "{application/prs.hpub+zip=http://www.iana.org/assignments/media-types/application/prs.hpub+zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Giulio_Zambon
- template:
- - application/prs.hpub+zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.nprend
- encoding: base64
- extensions:
- - rnd
- - rct
- references:
- - IANA
- - "[Jay_Doggett]"
- - "{application/prs.nprend=http://www.iana.org/assignments/media-types/application/prs.nprend}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jay_Doggett
- template:
- - application/prs.nprend
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.plucker
- encoding: base64
- references:
- - IANA
- - "[Bill_Janssen]"
- - "{application/prs.plucker=http://www.iana.org/assignments/media-types/application/prs.plucker}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bill_Janssen
- template:
- - application/prs.plucker
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.rdf-xml-crypt
- encoding: base64
- references:
- - IANA
- - "[Toby_Inkster]"
- - "{application/prs.rdf-xml-crypt=http://www.iana.org/assignments/media-types/application/prs.rdf-xml-crypt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Toby_Inkster
- template:
- - application/prs.rdf-xml-crypt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/prs.xsf+xml
- encoding: base64
- references:
- - IANA
- - "[Maik_Stührenberg]"
- - "{application/prs.xsf+xml=http://www.iana.org/assignments/media-types/application/prs.xsf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Maik_Stührenberg
- template:
- - application/prs.xsf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/pskc+xml
- friendly:
- en: Portable Symmetric Key Container
- encoding: base64
- extensions:
- - pskcxml
- references:
- - IANA
- - RFC6030
- - "{application/pskc+xml=http://www.iana.org/assignments/media-types/application/pskc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6030
- template:
- - application/pskc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/qsig
- encoding: base64
- references:
- - IANA
- - RFC3204
- - "{application/QSIG=http://www.iana.org/assignments/media-types/application/QSIG}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3204
- template:
- - application/QSIG
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/quicktimeplayer
- encoding: base64
- extensions:
- - qtl
- obsolete: true
- use-instead: application/x-quicktimeplayer
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/raptorfec
- encoding: base64
- references:
- - IANA
- - RFC6682
- - "{application/raptorfec=http://www.iana.org/assignments/media-types/application/raptorfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6682
- template:
- - application/raptorfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rdap+json
- encoding: base64
- references:
- - IANA
- - RFC7483
- - "{application/rdap+json=http://www.iana.org/assignments/media-types/application/rdap+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7483
- template:
- - application/rdap+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rdf+xml
- friendly:
- en: Resource Description Framework
- encoding: 8bit
- extensions:
- - rdf
- references:
- - IANA
- - RFC3870
- - "{application/rdf+xml=http://www.iana.org/assignments/media-types/application/rdf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3870
- template:
- - application/rdf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/reginfo+xml
- friendly:
- en: IMS Networks
- encoding: base64
- extensions:
- - rif
- references:
- - IANA
- - RFC3680
- - "{application/reginfo+xml=http://www.iana.org/assignments/media-types/application/reginfo+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3680
- template:
- - application/reginfo+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/relax-ng-compact-syntax
- friendly:
- en: Relax NG Compact Syntax
- encoding: base64
- extensions:
- - rnc
- references:
- - IANA
- - "{http://www.jtc1sc34.org/repository/0661.pdf}"
- - "{application/relax-ng-compact-syntax=http://www.iana.org/assignments/media-types/application/relax-ng-compact-syntax}"
- xrefs: !ruby/hash:MIME::Types::Container
- uri:
- - http://www.jtc1sc34.org/repository/0661.pdf
- template:
- - application/relax-ng-compact-syntax
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/remote-printing
- encoding: base64
- references:
- - IANA
- - RFC1486
- - "[Marshall_Rose]"
- - "{application/remote-printing=http://www.iana.org/assignments/media-types/application/remote-printing}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1486
- person:
- - Marshall_Rose
- template:
- - application/remote-printing
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/remote_printing
- encoding: base64
- obsolete: true
- use-instead: application/remote-printing
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/reputon+json
- encoding: base64
- references:
- - IANA
- - RFC7071
- - "{application/reputon+json=http://www.iana.org/assignments/media-types/application/reputon+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7071
- template:
- - application/reputon+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/resource-lists+xml
- friendly:
- en: XML Resource Lists
- encoding: base64
- extensions:
- - rl
- references:
- - IANA
- - RFC4826
- - "{application/resource-lists+xml=http://www.iana.org/assignments/media-types/application/resource-lists+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4826
- template:
- - application/resource-lists+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/resource-lists-diff+xml
- friendly:
- en: XML Resource Lists Diff
- encoding: base64
- extensions:
- - rld
- references:
- - IANA
- - RFC5362
- - "{application/resource-lists-diff+xml=http://www.iana.org/assignments/media-types/application/resource-lists-diff+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5362
- template:
- - application/resource-lists-diff+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/riscos
- encoding: base64
- references:
- - IANA
- - "[Nick_Smith]"
- - "{application/riscos=http://www.iana.org/assignments/media-types/application/riscos}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nick_Smith
- template:
- - application/riscos
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rlmi+xml
- encoding: base64
- references:
- - IANA
- - RFC4662
- - "{application/rlmi+xml=http://www.iana.org/assignments/media-types/application/rlmi+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4662
- template:
- - application/rlmi+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rls-services+xml
- friendly:
- en: XML Resource Lists
- encoding: base64
- extensions:
- - rs
- references:
- - IANA
- - RFC4826
- - "{application/rls-services+xml=http://www.iana.org/assignments/media-types/application/rls-services+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4826
- template:
- - application/rls-services+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rpki-ghostbusters
- encoding: base64
- extensions:
- - gbr
- references:
- - IANA
- - RFC6493
- - "{application/rpki-ghostbusters=http://www.iana.org/assignments/media-types/application/rpki-ghostbusters}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6493
- template:
- - application/rpki-ghostbusters
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rpki-manifest
- encoding: base64
- extensions:
- - mft
- references:
- - IANA
- - RFC6481
- - "{application/rpki-manifest=http://www.iana.org/assignments/media-types/application/rpki-manifest}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6481
- template:
- - application/rpki-manifest
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rpki-roa
- encoding: base64
- extensions:
- - roa
- references:
- - IANA
- - RFC6481
- - "{application/rpki-roa=http://www.iana.org/assignments/media-types/application/rpki-roa}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6481
- template:
- - application/rpki-roa
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rpki-updown
- encoding: base64
- references:
- - IANA
- - RFC6492
- - "{application/rpki-updown=http://www.iana.org/assignments/media-types/application/rpki-updown}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6492
- template:
- - application/rpki-updown
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rsd+xml
- friendly:
- en: Really Simple Discovery
- encoding: base64
- extensions:
- - rsd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/rss+xml
- friendly:
- en: RSS - Really Simple Syndication
- encoding: base64
- extensions:
- - rss
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/rtf
- friendly:
- en: Rich Text Format
- encoding: base64
- extensions:
- - rtf
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{application/rtf=http://www.iana.org/assignments/media-types/application/rtf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - application/rtf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rtploopback
- encoding: base64
- references:
- - IANA
- - RFC6849
- - "{application/rtploopback=http://www.iana.org/assignments/media-types/application/rtploopback}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - application/rtploopback
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/rtx
- encoding: base64
- references:
- - IANA
- - RFC4588
- - "{application/rtx=http://www.iana.org/assignments/media-types/application/rtx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4588
- template:
- - application/rtx
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/samlassertion+xml
- encoding: base64
- references:
- - IANA
- - "[OASIS_Security_Services_Technical_Committee_SSTC]"
- - "{application/samlassertion+xml=http://www.iana.org/assignments/media-types/application/samlassertion+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS_Security_Services_Technical_Committee_SSTC
- template:
- - application/samlassertion+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/samlmetadata+xml
- encoding: base64
- references:
- - IANA
- - "[OASIS_Security_Services_Technical_Committee_SSTC]"
- - "{application/samlmetadata+xml=http://www.iana.org/assignments/media-types/application/samlmetadata+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS_Security_Services_Technical_Committee_SSTC
- template:
- - application/samlmetadata+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sbml+xml
- friendly:
- en: Systems Biology Markup Language
- encoding: base64
- extensions:
- - sbml
- references:
- - IANA
- - RFC3823
- - "{application/sbml+xml=http://www.iana.org/assignments/media-types/application/sbml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3823
- template:
- - application/sbml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/scaip+xml
- encoding: base64
- references:
- - IANA
- - "[SIS]"
- - "[Oskar_Jonsson]"
- - "{application/scaip+xml=http://www.iana.org/assignments/media-types/application/scaip+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Oskar_Jonsson
- - SIS
- template:
- - application/scaip+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/scim+json
- encoding: base64
- references:
- - IANA
- - DRAFT:draft-ietf-scim-api-19
- - "{application/scim+json=http://www.iana.org/assignments/media-types/application/scim+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-scim-api-19
- template:
- - application/scim+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/scvp-cv-request
- friendly:
- en: Server-Based Certificate Validation Protocol - Validation Request
- encoding: base64
- extensions:
- - scq
- references:
- - IANA
- - RFC5055
- - "{application/scvp-cv-request=http://www.iana.org/assignments/media-types/application/scvp-cv-request}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5055
- template:
- - application/scvp-cv-request
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/scvp-cv-response
- friendly:
- en: Server-Based Certificate Validation Protocol - Validation Response
- encoding: base64
- extensions:
- - scs
- references:
- - IANA
- - RFC5055
- - "{application/scvp-cv-response=http://www.iana.org/assignments/media-types/application/scvp-cv-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5055
- template:
- - application/scvp-cv-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/scvp-vp-request
- friendly:
- en: Server-Based Certificate Validation Protocol - Validation Policies - Request
- encoding: base64
- extensions:
- - spq
- references:
- - IANA
- - RFC5055
- - "{application/scvp-vp-request=http://www.iana.org/assignments/media-types/application/scvp-vp-request}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5055
- template:
- - application/scvp-vp-request
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/scvp-vp-response
- friendly:
- en: Server-Based Certificate Validation Protocol - Validation Policies - Response
- encoding: base64
- extensions:
- - spp
- references:
- - IANA
- - RFC5055
- - "{application/scvp-vp-response=http://www.iana.org/assignments/media-types/application/scvp-vp-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5055
- template:
- - application/scvp-vp-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sdp
- friendly:
- en: Session Description Protocol
- encoding: base64
- extensions:
- - sdp
- references:
- - IANA
- - RFC4566
- - "{application/sdp=http://www.iana.org/assignments/media-types/application/sdp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4566
- template:
- - application/sdp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sep+xml
- encoding: base64
- references:
- - IANA
- - "[Robby_Simpson]"
- - "[ZigBee]"
- - "{application/sep+xml=http://www.iana.org/assignments/media-types/application/sep+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robby_Simpson
- - ZigBee
- template:
- - application/sep+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sep-exi
- encoding: base64
- references:
- - IANA
- - "[Robby_Simpson]"
- - "[ZigBee]"
- - "{application/sep-exi=http://www.iana.org/assignments/media-types/application/sep-exi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robby_Simpson
- - ZigBee
- template:
- - application/sep-exi
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/session-info
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "[Frederic_Firmin]"
- - "{application/session-info=http://www.iana.org/assignments/media-types/application/session-info}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frederic_Firmin
- - ThreeGPP
- template:
- - application/session-info
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/set
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/set-payment
- encoding: base64
- references:
- - IANA
- - "[Brian_Korver]"
- - "{application/set-payment=http://www.iana.org/assignments/media-types/application/set-payment}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brian_Korver
- template:
- - application/set-payment
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/set-payment-initiation
- friendly:
- en: Secure Electronic Transaction - Payment
- encoding: base64
- extensions:
- - setpay
- references:
- - IANA
- - "[Brian_Korver]"
- - "{application/set-payment-initiation=http://www.iana.org/assignments/media-types/application/set-payment-initiation}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brian_Korver
- template:
- - application/set-payment-initiation
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/set-registration
- encoding: base64
- references:
- - IANA
- - "[Brian_Korver]"
- - "{application/set-registration=http://www.iana.org/assignments/media-types/application/set-registration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brian_Korver
- template:
- - application/set-registration
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/set-registration-initiation
- friendly:
- en: Secure Electronic Transaction - Registration
- encoding: base64
- extensions:
- - setreg
- references:
- - IANA
- - "[Brian_Korver]"
- - "{application/set-registration-initiation=http://www.iana.org/assignments/media-types/application/set-registration-initiation}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brian_Korver
- template:
- - application/set-registration-initiation
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sgml
- encoding: base64
- extensions:
- - sgml
- references:
- - IANA
- - RFC1874
- - "{application/SGML=http://www.iana.org/assignments/media-types/application/SGML}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1874
- template:
- - application/SGML
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sgml-open-catalog
- encoding: base64
- extensions:
- - soc
- references:
- - IANA
- - "[Paul_Grosso]"
- - "{application/sgml-open-catalog=http://www.iana.org/assignments/media-types/application/sgml-open-catalog}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Grosso
- template:
- - application/sgml-open-catalog
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/shf+xml
- friendly:
- en: S Hexdump Format
- encoding: base64
- extensions:
- - shf
- references:
- - IANA
- - RFC4194
- - "{application/shf+xml=http://www.iana.org/assignments/media-types/application/shf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4194
- template:
- - application/shf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sieve
- encoding: base64
- extensions:
- - siv
- references:
- - IANA
- - RFC5228
- - "{application/sieve=http://www.iana.org/assignments/media-types/application/sieve}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5228
- template:
- - application/sieve
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/simple-filter+xml
- encoding: base64
- references:
- - IANA
- - RFC4661
- - "{application/simple-filter+xml=http://www.iana.org/assignments/media-types/application/simple-filter+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4661
- template:
- - application/simple-filter+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/simple-message-summary
- encoding: base64
- references:
- - IANA
- - RFC3842
- - "{application/simple-message-summary=http://www.iana.org/assignments/media-types/application/simple-message-summary}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3842
- template:
- - application/simple-message-summary
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/simpleSymbolContainer
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{application/simpleSymbolContainer=http://www.iana.org/assignments/media-types/application/simpleSymbolContainer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - application/simpleSymbolContainer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/SLA
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/slate
- encoding: base64
- references:
- - IANA
- - "[Terry_Crowley]"
- - "{application/slate=http://www.iana.org/assignments/media-types/application/slate}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Terry_Crowley
- template:
- - application/slate
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/smil
- encoding: 8bit
- extensions:
- - smi
- - smil
- obsolete: true
- use-instead: application/smil+xml
- references:
- - IANA
- - RFC4536
- - "{application/smil=http://www.iana.org/assignments/media-types/application/smil}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4536
- template:
- - application/smil
- notes:
- - "- OBSOLETED in favor of application/smil+xml"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/smil+xml
- friendly:
- en: Synchronized Multimedia Integration Language
- encoding: 8bit
- extensions:
- - smi
- - smil
- references:
- - IANA
- - RFC4536
- - "{application/smil+xml=http://www.iana.org/assignments/media-types/application/smil+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4536
- template:
- - application/smil+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/smpte336m
- encoding: base64
- references:
- - IANA
- - RFC6597
- - "{application/smpte336m=http://www.iana.org/assignments/media-types/application/smpte336m}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6597
- template:
- - application/smpte336m
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/soap+fastinfoset
- encoding: base64
- references:
- - IANA
- - "[ITU-T_ASN.1_Rapporteur]"
- - "{application/soap+fastinfoset=http://www.iana.org/assignments/media-types/application/soap+fastinfoset}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ITU-T_ASN.1_Rapporteur
- template:
- - application/soap+fastinfoset
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/soap+xml
- encoding: base64
- references:
- - IANA
- - RFC3902
- - "{application/soap+xml=http://www.iana.org/assignments/media-types/application/soap+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3902
- template:
- - application/soap+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/solids
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/sparql-query
- friendly:
- en: SPARQL - Query
- encoding: base64
- extensions:
- - rq
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sparql-results+xml
- friendly:
- en: SPARQL - Results
- encoding: base64
- extensions:
- - srx
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/spirits-event+xml
- encoding: base64
- references:
- - IANA
- - RFC3910
- - "{application/spirits-event+xml=http://www.iana.org/assignments/media-types/application/spirits-event+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3910
- template:
- - application/spirits-event+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sql
- encoding: base64
- references:
- - IANA
- - RFC6922
- - "{application/sql=http://www.iana.org/assignments/media-types/application/sql}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6922
- template:
- - application/sql
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/srgs
- friendly:
- en: Speech Recognition Grammar Specification
- encoding: base64
- extensions:
- - gram
- references:
- - IANA
- - RFC4267
- - "{application/srgs=http://www.iana.org/assignments/media-types/application/srgs}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4267
- template:
- - application/srgs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/srgs+xml
- friendly:
- en: Speech Recognition Grammar Specification - XML
- encoding: base64
- extensions:
- - grxml
- references:
- - IANA
- - RFC4267
- - "{application/srgs+xml=http://www.iana.org/assignments/media-types/application/srgs+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4267
- template:
- - application/srgs+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/sru+xml
- friendly:
- en: Search/Retrieve via URL Response Format
- encoding: base64
- extensions:
- - sru
- references:
- - IANA
- - RFC6207
- - "{application/sru+xml=http://www.iana.org/assignments/media-types/application/sru+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6207
- template:
- - application/sru+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ssdl+xml
- encoding: base64
- extensions:
- - ssdl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/ssml+xml
- friendly:
- en: Speech Synthesis Markup Language
- encoding: base64
- extensions:
- - ssml
- references:
- - IANA
- - RFC4267
- - "{application/ssml+xml=http://www.iana.org/assignments/media-types/application/ssml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4267
- template:
- - application/ssml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/STEP
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/tamp-apex-update
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-apex-update=http://www.iana.org/assignments/media-types/application/tamp-apex-update}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-apex-update
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-apex-update-confirm
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-apex-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-apex-update-confirm}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-apex-update-confirm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-community-update
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-community-update=http://www.iana.org/assignments/media-types/application/tamp-community-update}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-community-update
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-community-update-confirm
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-community-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-community-update-confirm}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-community-update-confirm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-error
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-error=http://www.iana.org/assignments/media-types/application/tamp-error}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-error
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-sequence-adjust
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-sequence-adjust=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-sequence-adjust
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-sequence-adjust-confirm
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-sequence-adjust-confirm=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust-confirm}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-sequence-adjust-confirm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-status-query
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-status-query=http://www.iana.org/assignments/media-types/application/tamp-status-query}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-status-query
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-status-response
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-status-response=http://www.iana.org/assignments/media-types/application/tamp-status-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-status-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-update
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-update=http://www.iana.org/assignments/media-types/application/tamp-update}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-update
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tamp-update-confirm
- encoding: base64
- references:
- - IANA
- - RFC5934
- - "{application/tamp-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-update-confirm}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5934
- template:
- - application/tamp-update-confirm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tei+xml
- friendly:
- en: Text Encoding and Interchange
- encoding: base64
- extensions:
- - tei
- - teicorpus
- references:
- - IANA
- - RFC6129
- - "{application/tei+xml=http://www.iana.org/assignments/media-types/application/tei+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6129
- template:
- - application/tei+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/thraud+xml
- friendly:
- en: Sharing Transaction Fraud Data
- encoding: base64
- extensions:
- - tfi
- references:
- - IANA
- - RFC5941
- - "{application/thraud+xml=http://www.iana.org/assignments/media-types/application/thraud+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5941
- template:
- - application/thraud+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/timestamp-query
- encoding: base64
- references:
- - IANA
- - RFC3161
- - "{application/timestamp-query=http://www.iana.org/assignments/media-types/application/timestamp-query}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3161
- template:
- - application/timestamp-query
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/timestamp-reply
- encoding: base64
- references:
- - IANA
- - RFC3161
- - "{application/timestamp-reply=http://www.iana.org/assignments/media-types/application/timestamp-reply}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3161
- template:
- - application/timestamp-reply
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/timestamped-data
- friendly:
- en: Time Stamped Data Envelope
- encoding: base64
- extensions:
- - tsd
- references:
- - IANA
- - RFC5955
- - "{application/timestamped-data=http://www.iana.org/assignments/media-types/application/timestamped-data}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5955
- template:
- - application/timestamped-data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/toolbook
- encoding: base64
- extensions:
- - tbk
- obsolete: true
- use-instead: application/x-toolbook
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/ttml+xml
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "[W3C_Timed_Text_Working_Group]"
- - "{application/ttml+xml=http://www.iana.org/assignments/media-types/application/ttml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- - W3C_Timed_Text_Working_Group
- template:
- - application/ttml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/tve-trigger
- encoding: base64
- references:
- - IANA
- - "[Linda_Welsh]"
- - "{application/tve-trigger=http://www.iana.org/assignments/media-types/application/tve-trigger}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Linda_Welsh
- template:
- - application/tve-trigger
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/ulpfec
- encoding: base64
- references:
- - IANA
- - RFC5109
- - "{application/ulpfec=http://www.iana.org/assignments/media-types/application/ulpfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- template:
- - application/ulpfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/urc-grpsheet+xml
- encoding: base64
- references:
- - IANA
- - "[Gottfried_Zimmermann]"
- - "{application/urc-grpsheet+xml=http://www.iana.org/assignments/media-types/application/urc-grpsheet+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gottfried_Zimmermann
- template:
- - application/urc-grpsheet+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/urc-ressheet+xml
- encoding: base64
- references:
- - IANA
- - "[Gottfried_Zimmermann]"
- - "{application/urc-ressheet+xml=http://www.iana.org/assignments/media-types/application/urc-ressheet+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gottfried_Zimmermann
- template:
- - application/urc-ressheet+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/urc-targetdesc+xml
- encoding: base64
- references:
- - IANA
- - "[Gottfried_Zimmermann]"
- - "{application/urc-targetdesc+xml=http://www.iana.org/assignments/media-types/application/urc-targetdesc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gottfried_Zimmermann
- template:
- - application/urc-targetdesc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/urc-uisocketdesc+xml
- encoding: base64
- references:
- - IANA
- - "[Gottfried_Zimmermann]"
- - "{application/urc-uisocketdesc+xml=http://www.iana.org/assignments/media-types/application/urc-uisocketdesc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gottfried_Zimmermann
- template:
- - application/urc-uisocketdesc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vcard+json
- encoding: base64
- references:
- - IANA
- - RFC7095
- - "{application/vcard+json=http://www.iana.org/assignments/media-types/application/vcard+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7095
- template:
- - application/vcard+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vcard+xml
- encoding: base64
- references:
- - IANA
- - RFC6351
- - "{application/vcard+xml=http://www.iana.org/assignments/media-types/application/vcard+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6351
- template:
- - application/vcard+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vda
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vemmi
- encoding: base64
- references:
- - IANA
- - RFC2122
- - "{application/vemmi=http://www.iana.org/assignments/media-types/application/vemmi}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2122
- template:
- - application/vemmi
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/VMSBACKUP
- encoding: base64
- extensions:
- - bck
- obsolete: true
- use-instead: application/x-VMSBACKUP
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp-prose+xml
- encoding: base64
- references:
- - IANA
- - "[Frederic_Firmin]"
- - "{application/vnd.3gpp-prose+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp-prose+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frederic_Firmin
- template:
- - application/vnd.3gpp-prose+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp-prose-pc3ch+xml
- encoding: base64
- references:
- - IANA
- - "[Frederic_Firmin]"
- - "{application/vnd.3gpp-prose-pc3ch+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp-prose-pc3ch+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frederic_Firmin
- template:
- - application/vnd.3gpp-prose-pc3ch+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.bsf+xml
- encoding: base64
- references:
- - IANA
- - "[John_M_Meredith]"
- - "{application/vnd.3gpp.bsf+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.bsf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_M_Meredith
- template:
- - application/vnd.3gpp.bsf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.mid-call+xml
- encoding: base64
- references:
- - IANA
- - "[Frederic_Firmin]"
- - "{application/vnd.3gpp.mid-call+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.mid-call+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frederic_Firmin
- template:
- - application/vnd.3gpp.mid-call+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.pic-bw-large
- friendly:
- en: 3rd Generation Partnership Project - Pic Large
- encoding: base64
- extensions:
- - plb
- references:
- - IANA
- - "[John_M_Meredith]"
- - "{application/vnd.3gpp.pic-bw-large=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-large}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_M_Meredith
- template:
- - application/vnd.3gpp.pic-bw-large
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.pic-bw-small
- friendly:
- en: 3rd Generation Partnership Project - Pic Small
- encoding: base64
- extensions:
- - psb
- references:
- - IANA
- - "[John_M_Meredith]"
- - "{application/vnd.3gpp.pic-bw-small=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-small}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_M_Meredith
- template:
- - application/vnd.3gpp.pic-bw-small
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.pic-bw-var
- friendly:
- en: 3rd Generation Partnership Project - Pic Var
- encoding: base64
- extensions:
- - pvb
- references:
- - IANA
- - "[John_M_Meredith]"
- - "{application/vnd.3gpp.pic-bw-var=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-var}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_M_Meredith
- template:
- - application/vnd.3gpp.pic-bw-var
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.sms
- encoding: base64
- extensions:
- - sms
- references:
- - IANA
- - "[John_M_Meredith]"
- - "{application/vnd.3gpp.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp.sms}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_M_Meredith
- template:
- - application/vnd.3gpp.sms
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.state-and-event-info+xml
- encoding: base64
- references:
- - IANA
- - "[Frederic_Firmin]"
- - "{application/vnd.3gpp.state-and-event-info+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.state-and-event-info+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frederic_Firmin
- template:
- - application/vnd.3gpp.state-and-event-info+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp.ussd+xml
- encoding: base64
- references:
- - IANA
- - "[Frederic_Firmin]"
- - "{application/vnd.3gpp.ussd+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.ussd+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frederic_Firmin
- template:
- - application/vnd.3gpp.ussd+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp2.bcmcsinfo+xml
- encoding: base64
- references:
- - IANA
- - "[Andy_Dryden]"
- - "{application/vnd.3gpp2.bcmcsinfo+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.bcmcsinfo+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andy_Dryden
- template:
- - application/vnd.3gpp2.bcmcsinfo+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp2.sms
- encoding: base64
- references:
- - IANA
- - "[AC_Mahendran]"
- - "{application/vnd.3gpp2.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.sms}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - AC_Mahendran
- template:
- - application/vnd.3gpp2.sms
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3gpp2.tcap
- friendly:
- en: 3rd Generation Partnership Project - Transaction Capabilities Application
- Part
- encoding: base64
- extensions:
- - tcap
- references:
- - IANA
- - "[AC_Mahendran]"
- - "{application/vnd.3gpp2.tcap=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.tcap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - AC_Mahendran
- template:
- - application/vnd.3gpp2.tcap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.3M.Post-it-Notes
- friendly:
- en: 3M Post It Notes
- encoding: base64
- extensions:
- - pwn
- references:
- - IANA
- - "[Michael_OBrien]"
- - "{application/vnd.3M.Post-it-Notes=http://www.iana.org/assignments/media-types/application/vnd.3M.Post-it-Notes}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_OBrien
- template:
- - application/vnd.3M.Post-it-Notes
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.accpac.simply.aso
- friendly:
- en: Simply Accounting
- encoding: base64
- extensions:
- - aso
- references:
- - IANA
- - "[Steve_Leow]"
- - "{application/vnd.accpac.simply.aso=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.aso}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Leow
- template:
- - application/vnd.accpac.simply.aso
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.accpac.simply.imp
- friendly:
- en: Simply Accounting - Data Import
- encoding: base64
- extensions:
- - imp
- references:
- - IANA
- - "[Steve_Leow]"
- - "{application/vnd.accpac.simply.imp=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.imp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Leow
- template:
- - application/vnd.accpac.simply.imp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.acucobol
- friendly:
- en: ACU Cobol
- encoding: base64
- extensions:
- - acu
- references:
- - IANA
- - "[Dovid_Lubin]"
- - "{application/vnd-acucobol=http://www.iana.org/assignments/media-types/application/vnd-acucobol}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dovid_Lubin
- template:
- - application/vnd-acucobol
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.acucorp
- friendly:
- en: ACU Cobol
- encoding: 7bit
- extensions:
- - atc
- - acutc
- references:
- - IANA
- - "[Dovid_Lubin]"
- - "{application/vnd.acucorp=http://www.iana.org/assignments/media-types/application/vnd.acucorp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dovid_Lubin
- template:
- - application/vnd.acucorp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.air-application-installer-package+zip
- friendly:
- en: Adobe AIR Application
- encoding: base64
- extensions:
- - air
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.flash.movie
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.adobe.flash-movie=http://www.iana.org/assignments/media-types/application/vnd.adobe.flash-movie}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.adobe.flash-movie
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.formscentral.fcdt
- encoding: base64
- extensions:
- - fcdt
- references:
- - IANA
- - "[Chris_Solc]"
- - "{application/vnd.adobe.formscentral.fcdt=http://www.iana.org/assignments/media-types/application/vnd.adobe.formscentral.fcdt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Solc
- template:
- - application/vnd.adobe.formscentral.fcdt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.fxp
- friendly:
- en: Adobe Flex Project
- encoding: base64
- extensions:
- - fxp
- - fxpl
- references:
- - IANA
- - "[Robert_Brambley]"
- - "[Steven_Heintz]"
- - "{application/vnd.adobe.fxp=http://www.iana.org/assignments/media-types/application/vnd.adobe.fxp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robert_Brambley
- - Steven_Heintz
- template:
- - application/vnd.adobe.fxp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.partial-upload
- encoding: base64
- references:
- - IANA
- - "[Tapani_Otala]"
- - "{application/vnd.adobe.partial-upload=http://www.iana.org/assignments/media-types/application/vnd.adobe.partial-upload}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tapani_Otala
- template:
- - application/vnd.adobe.partial-upload
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.xdp+xml
- friendly:
- en: Adobe XML Data Package
- encoding: base64
- extensions:
- - xdp
- references:
- - IANA
- - "[John_Brinkman]"
- - "{application/vnd.adobe.xdp+xml=http://www.iana.org/assignments/media-types/application/vnd.adobe.xdp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Brinkman
- template:
- - application/vnd.adobe.xdp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.adobe.xfdf
- friendly:
- en: Adobe XML Forms Data Format
- encoding: base64
- extensions:
- - xfdf
- references:
- - IANA
- - "[Roberto_Perelman]"
- - "{application/vnd.adobe.xfdf=http://www.iana.org/assignments/media-types/application/vnd.adobe.xfdf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roberto_Perelman
- template:
- - application/vnd.adobe.xfdf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.aether.imp
- encoding: base64
- references:
- - IANA
- - "[Jay_Moskowitz]"
- - "{application/vnd.aether.imp=http://www.iana.org/assignments/media-types/application/vnd.aether.imp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jay_Moskowitz
- template:
- - application/vnd.aether.imp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ah-barcode
- encoding: base64
- references:
- - IANA
- - "[Katsuhiko_Ichinose]"
- - "{application/vnd.ah-barcode=http://www.iana.org/assignments/media-types/application/vnd.ah-barcode}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Katsuhiko_Ichinose
- template:
- - application/vnd.ah-barcode
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ahead.space
- friendly:
- en: Ahead AIR Application
- encoding: base64
- extensions:
- - ahead
- references:
- - IANA
- - "[Tor_Kristensen]"
- - "{application/vnd.ahead.space=http://www.iana.org/assignments/media-types/application/vnd.ahead.space}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tor_Kristensen
- template:
- - application/vnd.ahead.space
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.airzip.filesecure.azf
- friendly:
- en: AirZip FileSECURE
- encoding: base64
- extensions:
- - azf
- references:
- - IANA
- - "[Daniel_Mould]"
- - "[Gary_Clueit]"
- - "{application/vnd.airzip.filesecure.azf=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Daniel_Mould
- - Gary_Clueit
- template:
- - application/vnd.airzip.filesecure.azf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.airzip.filesecure.azs
- friendly:
- en: AirZip FileSECURE
- encoding: base64
- extensions:
- - azs
- references:
- - IANA
- - "[Daniel_Mould]"
- - "[Gary_Clueit]"
- - "{application/vnd.airzip.filesecure.azs=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azs}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Daniel_Mould
- - Gary_Clueit
- template:
- - application/vnd.airzip.filesecure.azs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.amazon.ebook
- friendly:
- en: Amazon Kindle eBook format
- encoding: base64
- extensions:
- - azw
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.americandynamics.acc
- friendly:
- en: Active Content Compression
- encoding: base64
- extensions:
- - acc
- references:
- - IANA
- - "[Gary_Sands]"
- - "{application/vnd.americandynamics.acc=http://www.iana.org/assignments/media-types/application/vnd.americandynamics.acc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Sands
- template:
- - application/vnd.americandynamics.acc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.amiga.ami
- friendly:
- en: AmigaDE
- encoding: base64
- extensions:
- - ami
- references:
- - IANA
- - "[Kevin_Blumberg]"
- - "{application/vnd.amiga.ami=http://www.iana.org/assignments/media-types/application/vnd.amiga.ami}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Blumberg
- template:
- - application/vnd.amiga.ami
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.amundsen.maze+xml
- encoding: base64
- references:
- - IANA
- - "[Mike_Amundsen]"
- - "{application/vnd.amundsen.maze+xml=http://www.iana.org/assignments/media-types/application/vnd.amundsen.maze+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Amundsen
- template:
- - application/vnd.amundsen.maze+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.android.package-archive
- friendly:
- en: Android Package Archive
- encoding: base64
- extensions:
- - apk
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.anki
- encoding: base64
- references:
- - IANA
- - "[Kerrick_Staley]"
- - "{application/vnd.anki=http://www.iana.org/assignments/media-types/application/vnd.anki}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kerrick_Staley
- template:
- - application/vnd.anki
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.anser-web-certificate-issue-initiation
- friendly:
- en: ANSER-WEB Terminal Client - Certificate Issue
- encoding: base64
- extensions:
- - cii
- references:
- - IANA
- - "[Hiroyoshi_Mori]"
- - "{application/vnd.anser-web-certificate-issue-initiation=http://www.iana.org/assignments/media-types/application/vnd.anser-web-certificate-issue-initiation}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hiroyoshi_Mori
- template:
- - application/vnd.anser-web-certificate-issue-initiation
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.anser-web-funds-transfer-initiation
- friendly:
- en: ANSER-WEB Terminal Client - Web Funds Transfer
- encoding: base64
- extensions:
- - fti
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.antix.game-component
- friendly:
- en: Antix Game Player
- encoding: base64
- extensions:
- - atx
- references:
- - IANA
- - "[Daniel_Shelton]"
- - "{application/vnd.antix.game-component=http://www.iana.org/assignments/media-types/application/vnd.antix.game-component}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Daniel_Shelton
- template:
- - application/vnd.antix.game-component
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.apache.thrift.binary
- encoding: base64
- references:
- - IANA
- - "[Roger_Meier]"
- - "{application/vnd.apache.thrift.binary=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.binary}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roger_Meier
- template:
- - application/vnd.apache.thrift.binary
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.apache.thrift.compact
- encoding: base64
- references:
- - IANA
- - "[Roger_Meier]"
- - "{application/vnd.apache.thrift.compact=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.compact}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roger_Meier
- template:
- - application/vnd.apache.thrift.compact
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.apache.thrift.json
- encoding: base64
- references:
- - IANA
- - "[Roger_Meier]"
- - "{application/vnd.apache.thrift.json=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roger_Meier
- template:
- - application/vnd.apache.thrift.json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.api+json
- encoding: base64
- references:
- - IANA
- - "[Steve_Klabnik]"
- - "{application/vnd.api+json=http://www.iana.org/assignments/media-types/application/vnd.api+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Klabnik
- template:
- - application/vnd.api+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.apple.installer+xml
- friendly:
- en: Apple Installer Package
- encoding: base64
- extensions:
- - mpkg
- references:
- - IANA
- - "[Peter_Bierman]"
- - "{application/vnd.apple.installer+xml=http://www.iana.org/assignments/media-types/application/vnd.apple.installer+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Bierman
- template:
- - application/vnd.apple.installer+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.apple.mpegurl
- friendly:
- en: Multimedia Playlist Unicode
- encoding: base64
- extensions:
- - m3u8
- references:
- - IANA
- - "[David_Singer]"
- - "[Roger_Pantos]"
- - "{application/vnd.apple.mpegurl=http://www.iana.org/assignments/media-types/application/vnd.apple.mpegurl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Singer
- - Roger_Pantos
- template:
- - application/vnd.apple.mpegurl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.apple.pkpass
- encoding: base64
- extensions:
- - pkpass
- references:
- - "{Passbook Programming Guide=https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/PassKit_PG/Chapters/Introduction.html}"
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.arastra.swi
- encoding: base64
- obsolete: true
- use-instead: application/vnd.aristanetworks.swi
- references:
- - IANA
- - "[Bill_Fenner]"
- - "{application/vnd.arastra.swi=http://www.iana.org/assignments/media-types/application/vnd.arastra.swi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bill_Fenner
- template:
- - application/vnd.arastra.swi
- notes:
- - "- OBSOLETED in favor of application/vnd.aristanetworks.swi"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.aristanetworks.swi
- friendly:
- en: Arista Networks Software Image
- encoding: base64
- extensions:
- - swi
- references:
- - IANA
- - "[Bill_Fenner]"
- - "{application/vnd.aristanetworks.swi=http://www.iana.org/assignments/media-types/application/vnd.aristanetworks.swi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bill_Fenner
- template:
- - application/vnd.aristanetworks.swi
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.artsquare
- encoding: base64
- references:
- - IANA
- - "[Christopher_Smith]"
- - "{application/vnd.artsquare=http://www.iana.org/assignments/media-types/application/vnd.artsquare}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christopher_Smith
- template:
- - application/vnd.artsquare
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.astraea-software.iota
- encoding: base64
- extensions:
- - iota
- references:
- - IANA
- - "[Christopher_Snazell]"
- - "{application/vnd.astraea-software.iota=http://www.iana.org/assignments/media-types/application/vnd.astraea-software.iota}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christopher_Snazell
- template:
- - application/vnd.astraea-software.iota
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.audiograph
- friendly:
- en: Audiograph
- encoding: base64
- extensions:
- - aep
- references:
- - IANA
- - "[Horia_Cristian_Slusanschi]"
- - "{application/vnd.audiograph=http://www.iana.org/assignments/media-types/application/vnd.audiograph}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Horia_Cristian_Slusanschi
- template:
- - application/vnd.audiograph
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.autopackage
- encoding: base64
- references:
- - IANA
- - "[Mike_Hearn]"
- - "{application/vnd.autopackage=http://www.iana.org/assignments/media-types/application/vnd.autopackage}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Hearn
- template:
- - application/vnd.autopackage
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.avistar+xml
- encoding: base64
- references:
- - IANA
- - "[Vladimir_Vysotsky]"
- - "{application/vnd.avistar+xml=http://www.iana.org/assignments/media-types/application/vnd.avistar+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Vladimir_Vysotsky
- template:
- - application/vnd.avistar+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.balsamiq.bmml+xml
- encoding: base64
- references:
- - IANA
- - "[Giacomo_Guilizzoni]"
- - "{application/vnd.balsamiq.bmml+xml=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Giacomo_Guilizzoni
- template:
- - application/vnd.balsamiq.bmml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.balsamiq.bmpr
- encoding: base64
- references:
- - IANA
- - "[Giacomo_Guilizzoni]"
- - "{application/vnd.balsamiq.bmpr=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmpr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Giacomo_Guilizzoni
- template:
- - application/vnd.balsamiq.bmpr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.bekitzur-stech+json
- encoding: base64
- references:
- - IANA
- - "[Jegulsky]"
- - "{application/vnd.bekitzur-stech+json=http://www.iana.org/assignments/media-types/application/vnd.bekitzur-stech+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jegulsky
- template:
- - application/vnd.bekitzur-stech+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.biopax.rdf+xml
- encoding: base64
- references:
- - IANA
- - "[Pathway_Commons]"
- - "{application/vnd.biopax.rdf+xml=http://www.iana.org/assignments/media-types/application/vnd.biopax.rdf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Pathway_Commons
- template:
- - application/vnd.biopax.rdf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.blueice.multipass
- friendly:
- en: Blueice Research Multipass
- encoding: base64
- extensions:
- - mpm
- references:
- - IANA
- - "[Thomas_Holmstrom]"
- - "{application/vnd.blueice.multipass=http://www.iana.org/assignments/media-types/application/vnd.blueice.multipass}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Holmstrom
- template:
- - application/vnd.blueice.multipass
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.bluetooth.ep.oob
- encoding: base64
- references:
- - IANA
- - "[Mike_Foley]"
- - "{application/vnd.bluetooth.ep.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.ep.oob}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Foley
- template:
- - application/vnd.bluetooth.ep.oob
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.bluetooth.le.oob
- encoding: base64
- references:
- - IANA
- - "[Mark_Powell]"
- - "{application/vnd.bluetooth.le.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.le.oob}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Powell
- template:
- - application/vnd.bluetooth.le.oob
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.bmi
- friendly:
- en: BMI Drawing Data Interchange
- encoding: base64
- extensions:
- - bmi
- references:
- - IANA
- - "[Tadashi_Gotoh]"
- - "{application/vnd.bmi=http://www.iana.org/assignments/media-types/application/vnd.bmi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tadashi_Gotoh
- template:
- - application/vnd.bmi
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.businessobjects
- friendly:
- en: BusinessObjects
- encoding: base64
- extensions:
- - rep
- references:
- - IANA
- - "[Philippe_Imoucha]"
- - "{application/vnd.businessobjects=http://www.iana.org/assignments/media-types/application/vnd.businessobjects}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Philippe_Imoucha
- template:
- - application/vnd.businessobjects
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cab-jscript
- encoding: base64
- references:
- - IANA
- - "[Joerg_Falkenberg]"
- - "{application/vnd.cab-jscript=http://www.iana.org/assignments/media-types/application/vnd.cab-jscript}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joerg_Falkenberg
- template:
- - application/vnd.cab-jscript
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.canon-cpdl
- encoding: base64
- references:
- - IANA
- - "[Shin_Muto]"
- - "{application/vnd.canon-cpdl=http://www.iana.org/assignments/media-types/application/vnd.canon-cpdl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shin_Muto
- template:
- - application/vnd.canon-cpdl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.canon-lips
- encoding: base64
- references:
- - IANA
- - "[Shin_Muto]"
- - "{application/vnd.canon-lips=http://www.iana.org/assignments/media-types/application/vnd.canon-lips}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shin_Muto
- template:
- - application/vnd.canon-lips
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cendio.thinlinc.clientconf
- encoding: base64
- references:
- - IANA
- - "[Peter_Astrand]"
- - "{application/vnd.cendio.thinlinc.clientconf=http://www.iana.org/assignments/media-types/application/vnd.cendio.thinlinc.clientconf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Astrand
- template:
- - application/vnd.cendio.thinlinc.clientconf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.century-systems.tcp_stream
- encoding: base64
- references:
- - IANA
- - "[Shuji_Fujii]"
- - "{application/vnd.century-systems.tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.century-systems.tcp_stream}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Fujii
- template:
- - application/vnd.century-systems.tcp_stream
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.chemdraw+xml
- friendly:
- en: CambridgeSoft Chem Draw
- encoding: base64
- extensions:
- - cdxml
- references:
- - IANA
- - "[Glenn_Howes]"
- - "{application/vnd.chemdraw+xml=http://www.iana.org/assignments/media-types/application/vnd.chemdraw+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glenn_Howes
- template:
- - application/vnd.chemdraw+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.chipnuts.karaoke-mmd
- friendly:
- en: Karaoke on Chipnuts Chipsets
- encoding: base64
- extensions:
- - mmd
- references:
- - IANA
- - "[Chunyun_Xiong]"
- - "{application/vnd.chipnuts.karaoke-mmd=http://www.iana.org/assignments/media-types/application/vnd.chipnuts.karaoke-mmd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chunyun_Xiong
- template:
- - application/vnd.chipnuts.karaoke-mmd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cinderella
- friendly:
- en: Interactive Geometry Software Cinderella
- encoding: base64
- extensions:
- - cdy
- references:
- - IANA
- - "[Ulrich_Kortenkamp]"
- - "{application/vnd.cinderella=http://www.iana.org/assignments/media-types/application/vnd.cinderella}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ulrich_Kortenkamp
- template:
- - application/vnd.cinderella
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cirpack.isdn-ext
- encoding: base64
- references:
- - IANA
- - "[Pascal_Mayeux]"
- - "{application/vnd.cirpack.isdn-ext=http://www.iana.org/assignments/media-types/application/vnd.cirpack.isdn-ext}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Pascal_Mayeux
- template:
- - application/vnd.cirpack.isdn-ext
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.citationstyles.style+xml
- encoding: base64
- references:
- - IANA
- - "[Rintze_M._Zelle]"
- - "{application/vnd.citationstyles.style+xml=http://www.iana.org/assignments/media-types/application/vnd.citationstyles.style+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Rintze_M._Zelle
- template:
- - application/vnd.citationstyles.style+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.claymore
- friendly:
- en: Claymore Data Files
- encoding: base64
- extensions:
- - cla
- references:
- - IANA
- - "[Ray_Simpson]"
- - "{application/vnd.claymore=http://www.iana.org/assignments/media-types/application/vnd.claymore}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ray_Simpson
- template:
- - application/vnd.claymore
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cloanto.rp9
- friendly:
- en: RetroPlatform Player
- encoding: base64
- extensions:
- - rp9
- references:
- - IANA
- - "[Mike_Labatt]"
- - "{application/vnd.cloanto.rp9=http://www.iana.org/assignments/media-types/application/vnd.cloanto.rp9}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Labatt
- template:
- - application/vnd.cloanto.rp9
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.clonk.c4group
- friendly:
- en: Clonk Game
- encoding: base64
- extensions:
- - c4d
- - c4f
- - c4g
- - c4p
- - c4u
- references:
- - IANA
- - "[Guenther_Brammer]"
- - "{application/vnd.clonk.c4group=http://www.iana.org/assignments/media-types/application/vnd.clonk.c4group}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Guenther_Brammer
- template:
- - application/vnd.clonk.c4group
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cluetrust.cartomobile-config
- friendly:
- en: ClueTrust CartoMobile - Config
- encoding: base64
- extensions:
- - c11amc
- references:
- - IANA
- - "[Gaige_Paulsen]"
- - "{application/vnd.cluetrust.cartomobile-config=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gaige_Paulsen
- template:
- - application/vnd.cluetrust.cartomobile-config
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cluetrust.cartomobile-config-pkg
- friendly:
- en: ClueTrust CartoMobile - Config Package
- encoding: base64
- extensions:
- - c11amz
- references:
- - IANA
- - "[Gaige_Paulsen]"
- - "{application/vnd.cluetrust.cartomobile-config-pkg=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config-pkg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gaige_Paulsen
- template:
- - application/vnd.cluetrust.cartomobile-config-pkg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.coffeescript
- encoding: base64
- references:
- - IANA
- - "[Devyn_Collier_Johnson]"
- - "{application/vnd.coffeescript=http://www.iana.org/assignments/media-types/application/vnd.coffeescript}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Devyn_Collier_Johnson
- template:
- - application/vnd.coffeescript
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.collection+json
- encoding: base64
- references:
- - IANA
- - "[Mike_Amundsen]"
- - "{application/vnd.collection+json=http://www.iana.org/assignments/media-types/application/vnd.collection+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Amundsen
- template:
- - application/vnd.collection+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.collection.doc+json
- encoding: base64
- references:
- - IANA
- - "[Irakli_Nadareishvili]"
- - "{application/vnd.collection.doc+json=http://www.iana.org/assignments/media-types/application/vnd.collection.doc+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Irakli_Nadareishvili
- template:
- - application/vnd.collection.doc+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.collection.next+json
- encoding: base64
- references:
- - IANA
- - "[Ioseb_Dzmanashvili]"
- - "{application/vnd.collection.next+json=http://www.iana.org/assignments/media-types/application/vnd.collection.next+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ioseb_Dzmanashvili
- template:
- - application/vnd.collection.next+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.commerce-battelle
- encoding: base64
- references:
- - IANA
- - "[David_Applebaum]"
- - "{application/vnd.commerce-battelle=http://www.iana.org/assignments/media-types/application/vnd.commerce-battelle}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Applebaum
- template:
- - application/vnd.commerce-battelle
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.commonspace
- friendly:
- en: Sixth Floor Media - CommonSpace
- encoding: base64
- extensions:
- - csp
- references:
- - IANA
- - "[Ravinder_Chandhok]"
- - "{application/vnd.commonspace=http://www.iana.org/assignments/media-types/application/vnd.commonspace}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ravinder_Chandhok
- template:
- - application/vnd.commonspace
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.contact.cmsg
- friendly:
- en: CIM Database
- encoding: base64
- extensions:
- - cdbcmsg
- references:
- - IANA
- - "[Frank_Patz]"
- - "{application/vnd.contact.cmsg=http://www.iana.org/assignments/media-types/application/vnd.contact.cmsg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frank_Patz
- template:
- - application/vnd.contact.cmsg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cosmocaller
- friendly:
- en: CosmoCaller
- encoding: base64
- extensions:
- - cmc
- references:
- - IANA
- - "[Steve_Dellutri]"
- - "{application/vnd.cosmocaller=http://www.iana.org/assignments/media-types/application/vnd.cosmocaller}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Dellutri
- template:
- - application/vnd.cosmocaller
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.crick.clicker
- friendly:
- en: CrickSoftware - Clicker
- encoding: base64
- extensions:
- - clkx
- references:
- - IANA
- - "[Andrew_Burt]"
- - "{application/vnd.crick.clicker=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andrew_Burt
- template:
- - application/vnd.crick.clicker
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.crick.clicker.keyboard
- friendly:
- en: CrickSoftware - Clicker - Keyboard
- encoding: base64
- extensions:
- - clkk
- references:
- - IANA
- - "[Andrew_Burt]"
- - "{application/vnd.crick.clicker.keyboard=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.keyboard}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andrew_Burt
- template:
- - application/vnd.crick.clicker.keyboard
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.crick.clicker.palette
- friendly:
- en: CrickSoftware - Clicker - Palette
- encoding: base64
- extensions:
- - clkp
- references:
- - IANA
- - "[Andrew_Burt]"
- - "{application/vnd.crick.clicker.palette=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.palette}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andrew_Burt
- template:
- - application/vnd.crick.clicker.palette
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.crick.clicker.template
- friendly:
- en: CrickSoftware - Clicker - Template
- encoding: base64
- extensions:
- - clkt
- references:
- - IANA
- - "[Andrew_Burt]"
- - "{application/vnd.crick.clicker.template=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andrew_Burt
- template:
- - application/vnd.crick.clicker.template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.crick.clicker.wordbank
- friendly:
- en: CrickSoftware - Clicker - Wordbank
- encoding: base64
- extensions:
- - clkw
- references:
- - IANA
- - "[Andrew_Burt]"
- - "{application/vnd.crick.clicker.wordbank=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.wordbank}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andrew_Burt
- template:
- - application/vnd.crick.clicker.wordbank
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.criticaltools.wbs+xml
- friendly:
- en: Critical Tools - PERT Chart EXPERT
- encoding: base64
- extensions:
- - wbs
- references:
- - IANA
- - "[Jim_Spiller]"
- - "{application/vnd.criticaltools.wbs+xml=http://www.iana.org/assignments/media-types/application/vnd.criticaltools.wbs+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jim_Spiller
- template:
- - application/vnd.criticaltools.wbs+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ctc-posml
- friendly:
- en: PosML
- encoding: base64
- extensions:
- - pml
- references:
- - IANA
- - "[Bayard_Kohlhepp]"
- - "{application/vnd.ctc-posml=http://www.iana.org/assignments/media-types/application/vnd.ctc-posml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bayard_Kohlhepp
- template:
- - application/vnd.ctc-posml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ctct.ws+xml
- encoding: base64
- references:
- - IANA
- - "[Jim_Ancona]"
- - "{application/vnd.ctct.ws+xml=http://www.iana.org/assignments/media-types/application/vnd.ctct.ws+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jim_Ancona
- template:
- - application/vnd.ctct.ws+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cups-pdf
- encoding: base64
- references:
- - IANA
- - "[Michael_Sweet]"
- - "{application/vnd.cups-pdf=http://www.iana.org/assignments/media-types/application/vnd.cups-pdf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Sweet
- template:
- - application/vnd.cups-pdf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cups-postscript
- encoding: base64
- references:
- - IANA
- - "[Michael_Sweet]"
- - "{application/vnd.cups-postscript=http://www.iana.org/assignments/media-types/application/vnd.cups-postscript}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Sweet
- template:
- - application/vnd.cups-postscript
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cups-ppd
- friendly:
- en: Adobe PostScript Printer Description File Format
- encoding: base64
- extensions:
- - ppd
- references:
- - IANA
- - "[Michael_Sweet]"
- - "{application/vnd.cups-ppd=http://www.iana.org/assignments/media-types/application/vnd.cups-ppd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Sweet
- template:
- - application/vnd.cups-ppd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cups-raster
- encoding: base64
- references:
- - IANA
- - "[Michael_Sweet]"
- - "{application/vnd.cups-raster=http://www.iana.org/assignments/media-types/application/vnd.cups-raster}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Sweet
- template:
- - application/vnd.cups-raster
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cups-raw
- encoding: base64
- references:
- - IANA
- - "[Michael_Sweet]"
- - "{application/vnd.cups-raw=http://www.iana.org/assignments/media-types/application/vnd.cups-raw}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Sweet
- template:
- - application/vnd.cups-raw
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.curl
- encoding: base64
- extensions:
- - curl
- references:
- - IANA
- - "[Robert_Byrnes]"
- - "{application/vnd-curl=http://www.iana.org/assignments/media-types/application/vnd-curl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robert_Byrnes
- template:
- - application/vnd-curl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.curl.car
- friendly:
- en: CURL Applet
- encoding: base64
- extensions:
- - car
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.curl.pcurl
- friendly:
- en: CURL Applet
- encoding: base64
- extensions:
- - pcurl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.cyan.dean.root+xml
- encoding: base64
- references:
- - IANA
- - "[Matt_Kern]"
- - "{application/vnd.cyan.dean.root+xml=http://www.iana.org/assignments/media-types/application/vnd.cyan.dean.root+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Matt_Kern
- template:
- - application/vnd.cyan.dean.root+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.cybank
- encoding: base64
- references:
- - IANA
- - "[Nor_Helmee]"
- - "{application/vnd.cybank=http://www.iana.org/assignments/media-types/application/vnd.cybank}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nor_Helmee
- template:
- - application/vnd.cybank
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dart
- encoding: base64
- extensions:
- - dart
- references:
- - IANA
- - "[Anders_Sandholm]"
- - "{application/vnd-dart=http://www.iana.org/assignments/media-types/application/vnd-dart}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Anders_Sandholm
- template:
- - application/vnd-dart
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.data-vision.rdz
- friendly:
- en: RemoteDocs R-Viewer
- encoding: base64
- extensions:
- - rdz
- references:
- - IANA
- - "[James_Fields]"
- - "{application/vnd.data-vision.rdz=http://www.iana.org/assignments/media-types/application/vnd.data-vision.rdz}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - James_Fields
- template:
- - application/vnd.data-vision.rdz
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.debian.binary-package
- encoding: base64
- references:
- - IANA
- - "[Charles_Plessy]"
- - "{application/vnd.debian.binary-package=http://www.iana.org/assignments/media-types/application/vnd.debian.binary-package}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Charles_Plessy
- template:
- - application/vnd.debian.binary-package
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dece.data
- encoding: base64
- extensions:
- - uvd
- - uvf
- - uvvd
- - uvvf
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{application/vnd.dece.data=http://www.iana.org/assignments/media-types/application/vnd.dece.data}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - application/vnd.dece.data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dece.ttml+xml
- encoding: base64
- extensions:
- - uvt
- - uvvt
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{application/vnd.dece.ttml+xml=http://www.iana.org/assignments/media-types/application/vnd.dece.ttml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - application/vnd.dece.ttml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dece.unspecified
- encoding: base64
- extensions:
- - uvvx
- - uvx
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{application/vnd.dece.unspecified=http://www.iana.org/assignments/media-types/application/vnd.dece.unspecified}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - application/vnd.dece.unspecified
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dece.zip
- encoding: base64
- extensions:
- - uvvz
- - uvz
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{application/vnd.dece-zip=http://www.iana.org/assignments/media-types/application/vnd.dece-zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - application/vnd.dece-zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.denovo.fcselayout-link
- friendly:
- en: FCS Express Layout Link
- encoding: base64
- extensions:
- - fe_launch
- references:
- - IANA
- - "[Michael_Dixon]"
- - "{application/vnd.denovo.fcselayout-link=http://www.iana.org/assignments/media-types/application/vnd.denovo.fcselayout-link}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Dixon
- template:
- - application/vnd.denovo.fcselayout-link
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.desmume.movie
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.desmume-movie=http://www.iana.org/assignments/media-types/application/vnd.desmume-movie}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.desmume-movie
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dir-bi.plate-dl-nosuffix
- encoding: base64
- references:
- - IANA
- - "[Yamanaka]"
- - "{application/vnd.dir-bi.plate-dl-nosuffix=http://www.iana.org/assignments/media-types/application/vnd.dir-bi.plate-dl-nosuffix}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yamanaka
- template:
- - application/vnd.dir-bi.plate-dl-nosuffix
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dm.delegation+xml
- encoding: base64
- references:
- - IANA
- - "[Axel_Ferrazzini]"
- - "{application/vnd.dm.delegation+xml=http://www.iana.org/assignments/media-types/application/vnd.dm.delegation+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Axel_Ferrazzini
- template:
- - application/vnd.dm.delegation+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dna
- friendly:
- en: New Moon Liftoff/DNA
- encoding: base64
- extensions:
- - dna
- references:
- - IANA
- - "[Meredith_Searcy]"
- - "{application/vnd.dna=http://www.iana.org/assignments/media-types/application/vnd.dna}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Meredith_Searcy
- template:
- - application/vnd.dna
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.document+json
- encoding: base64
- references:
- - IANA
- - "[Tom_Christie]"
- - "{application/vnd.document+json=http://www.iana.org/assignments/media-types/application/vnd.document+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tom_Christie
- template:
- - application/vnd.document+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dolby.mlp
- friendly:
- en: Dolby Meridian Lossless Packing
- encoding: base64
- extensions:
- - mlp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.dolby.mobile.1
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{application/vnd.dolby.mobile.1=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - application/vnd.dolby.mobile.1
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dolby.mobile.2
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{application/vnd.dolby.mobile.2=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - application/vnd.dolby.mobile.2
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.doremir.scorecloud-binary-document
- encoding: base64
- references:
- - IANA
- - "[Erik_Ronström]"
- - "{application/vnd.doremir.scorecloud-binary-document=http://www.iana.org/assignments/media-types/application/vnd.doremir.scorecloud-binary-document}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Erik_Ronström
- template:
- - application/vnd.doremir.scorecloud-binary-document
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dpgraph
- friendly:
- en: DPGraph
- encoding: base64
- extensions:
- - dpg
- references:
- - IANA
- - "[David_Parker]"
- - "{application/vnd.dpgraph=http://www.iana.org/assignments/media-types/application/vnd.dpgraph}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Parker
- template:
- - application/vnd.dpgraph
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dreamfactory
- friendly:
- en: DreamFactory
- encoding: base64
- extensions:
- - dfac
- references:
- - IANA
- - "[William_C._Appleton]"
- - "{application/vnd.dreamfactory=http://www.iana.org/assignments/media-types/application/vnd.dreamfactory}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - William_C._Appleton
- template:
- - application/vnd.dreamfactory
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.drive+json
- encoding: base64
- references:
- - IANA
- - "[Keith_Kester]"
- - "{application/vnd.drive+json=http://www.iana.org/assignments/media-types/application/vnd.drive+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Keith_Kester
- template:
- - application/vnd.drive+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ds-keypoint
- encoding: base64
- extensions:
- - kpxx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.dtg.local
- encoding: base64
- references:
- - IANA
- - "[Ali_Teffahi]"
- - "{application/vnd.dtg.local=http://www.iana.org/assignments/media-types/application/vnd.dtg.local}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ali_Teffahi
- template:
- - application/vnd.dtg.local
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dtg.local.flash
- encoding: base64
- references:
- - IANA
- - "[Ali_Teffahi]"
- - "{application/vnd.dtg.local.flash=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.flash}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ali_Teffahi
- template:
- - application/vnd.dtg.local.flash
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dtg.local.html
- encoding: base64
- references:
- - IANA
- - "[Ali_Teffahi]"
- - "{application/vnd.dtg.local-html=http://www.iana.org/assignments/media-types/application/vnd.dtg.local-html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ali_Teffahi
- template:
- - application/vnd.dtg.local-html
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.ait
- friendly:
- en: Digital Video Broadcasting
- encoding: base64
- extensions:
- - ait
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Michael_Lagally]"
- - "{application/vnd.dvb.ait=http://www.iana.org/assignments/media-types/application/vnd.dvb.ait}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Lagally
- - Peter_Siebert
- template:
- - application/vnd.dvb.ait
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.dvbj
- encoding: base64
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Michael_Lagally]"
- - "{application/vnd.dvb.dvbj=http://www.iana.org/assignments/media-types/application/vnd.dvb.dvbj}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Lagally
- - Peter_Siebert
- template:
- - application/vnd.dvb.dvbj
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.esgcontainer
- encoding: base64
- references:
- - IANA
- - "[Joerg_Heuer]"
- - "{application/vnd.dvb.esgcontainer=http://www.iana.org/assignments/media-types/application/vnd.dvb.esgcontainer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joerg_Heuer
- template:
- - application/vnd.dvb.esgcontainer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.ipdcdftnotifaccess
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.ipdcdftnotifaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcdftnotifaccess}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.ipdcdftnotifaccess
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.ipdcesgaccess
- encoding: base64
- references:
- - IANA
- - "[Joerg_Heuer]"
- - "{application/vnd.dvb.ipdcesgaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joerg_Heuer
- template:
- - application/vnd.dvb.ipdcesgaccess
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.ipdcesgaccess2
- encoding: base64
- references:
- - IANA
- - "[Jerome_Marcon]"
- - "{application/vnd.dvb.ipdcesgaccess2=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jerome_Marcon
- template:
- - application/vnd.dvb.ipdcesgaccess2
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.ipdcesgpdd
- encoding: base64
- references:
- - IANA
- - "[Jerome_Marcon]"
- - "{application/vnd.dvb.ipdcesgpdd=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgpdd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jerome_Marcon
- template:
- - application/vnd.dvb.ipdcesgpdd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.ipdcroaming
- encoding: base64
- references:
- - IANA
- - "[Yiling_Xu]"
- - "{application/vnd.dvb.ipdcroaming=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcroaming}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yiling_Xu
- template:
- - application/vnd.dvb.ipdcroaming
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.iptv.alfec-base
- encoding: base64
- references:
- - IANA
- - "[Jean-Baptiste_Henry]"
- - "{application/vnd.dvb.iptv.alfec-base=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-base}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jean-Baptiste_Henry
- template:
- - application/vnd.dvb.iptv.alfec-base
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.iptv.alfec-enhancement
- encoding: base64
- references:
- - IANA
- - "[Jean-Baptiste_Henry]"
- - "{application/vnd.dvb.iptv.alfec-enhancement=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-enhancement}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jean-Baptiste_Henry
- template:
- - application/vnd.dvb.iptv.alfec-enhancement
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-aggregate-root+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-aggregate-root+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-aggregate-root+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-aggregate-root+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-container+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-container+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-container+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-container+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-generic+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-generic+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-generic+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-generic+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-ia-msglist+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-ia-msglist+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-msglist+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-ia-msglist+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-ia-registration-request+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-ia-registration-request+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-request+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-ia-registration-request+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-ia-registration-response+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-ia-registration-response+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-response+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-ia-registration-response+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.notif-init+xml
- encoding: base64
- references:
- - IANA
- - "[Roy_Yue]"
- - "{application/vnd.dvb.notif-init+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-init+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roy_Yue
- template:
- - application/vnd.dvb.notif-init+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.pfr
- encoding: base64
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Michael_Lagally]"
- - "{application/vnd.dvb.pfr=http://www.iana.org/assignments/media-types/application/vnd.dvb.pfr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Lagally
- - Peter_Siebert
- template:
- - application/vnd.dvb.pfr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dvb.service
- friendly:
- en: Digital Video Broadcasting
- encoding: base64
- extensions:
- - svc
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Michael_Lagally]"
- - "{application/vnd.dvb_service=http://www.iana.org/assignments/media-types/application/vnd.dvb_service}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Lagally
- - Peter_Siebert
- template:
- - application/vnd.dvb_service
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dxr
- encoding: base64
- references:
- - IANA
- - "[Michael_Duffy]"
- - "{application/vnd-dxr=http://www.iana.org/assignments/media-types/application/vnd-dxr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Duffy
- template:
- - application/vnd-dxr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dynageo
- friendly:
- en: DynaGeo
- encoding: base64
- extensions:
- - geo
- references:
- - IANA
- - "[Roland_Mechling]"
- - "{application/vnd.dynageo=http://www.iana.org/assignments/media-types/application/vnd.dynageo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roland_Mechling
- template:
- - application/vnd.dynageo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.dzr
- encoding: base64
- references:
- - IANA
- - "[Carl_Anderson]"
- - "{application/vnd.dzr=http://www.iana.org/assignments/media-types/application/vnd.dzr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Carl_Anderson
- template:
- - application/vnd.dzr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.easykaraoke.cdgdownload
- encoding: base64
- references:
- - IANA
- - "[Iain_Downs]"
- - "{application/vnd.easykaraoke.cdgdownload=http://www.iana.org/assignments/media-types/application/vnd.easykaraoke.cdgdownload}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Iain_Downs
- template:
- - application/vnd.easykaraoke.cdgdownload
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecdis-update
- encoding: base64
- references:
- - IANA
- - "[Gert_Buettgenbach]"
- - "{application/vnd.ecdis-update=http://www.iana.org/assignments/media-types/application/vnd.ecdis-update}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gert_Buettgenbach
- template:
- - application/vnd.ecdis-update
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecowin.chart
- friendly:
- en: EcoWin Chart
- encoding: base64
- extensions:
- - mag
- references:
- - IANA
- - "[Thomas_Olsson]"
- - "{application/vnd.ecowin.chart=http://www.iana.org/assignments/media-types/application/vnd.ecowin.chart}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Olsson
- template:
- - application/vnd.ecowin.chart
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecowin.filerequest
- encoding: base64
- references:
- - IANA
- - "[Thomas_Olsson]"
- - "{application/vnd.ecowin.filerequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.filerequest}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Olsson
- template:
- - application/vnd.ecowin.filerequest
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecowin.fileupdate
- encoding: base64
- references:
- - IANA
- - "[Thomas_Olsson]"
- - "{application/vnd.ecowin.fileupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.fileupdate}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Olsson
- template:
- - application/vnd.ecowin.fileupdate
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecowin.series
- encoding: base64
- references:
- - IANA
- - "[Thomas_Olsson]"
- - "{application/vnd.ecowin.series=http://www.iana.org/assignments/media-types/application/vnd.ecowin.series}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Olsson
- template:
- - application/vnd.ecowin.series
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecowin.seriesrequest
- encoding: base64
- references:
- - IANA
- - "[Thomas_Olsson]"
- - "{application/vnd.ecowin.seriesrequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesrequest}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Olsson
- template:
- - application/vnd.ecowin.seriesrequest
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ecowin.seriesupdate
- encoding: base64
- references:
- - IANA
- - "[Thomas_Olsson]"
- - "{application/vnd.ecowin.seriesupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesupdate}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Olsson
- template:
- - application/vnd.ecowin.seriesupdate
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.emclient.accessrequest+xml
- encoding: base64
- references:
- - IANA
- - "[Filip_Navara]"
- - "{application/vnd.emclient.accessrequest+xml=http://www.iana.org/assignments/media-types/application/vnd.emclient.accessrequest+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Filip_Navara
- template:
- - application/vnd.emclient.accessrequest+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.enliven
- friendly:
- en: Enliven Viewer
- encoding: base64
- extensions:
- - nml
- references:
- - IANA
- - "[Paul_Santinelli_Jr.]"
- - "{application/vnd.enliven=http://www.iana.org/assignments/media-types/application/vnd.enliven}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Santinelli_Jr.
- template:
- - application/vnd.enliven
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.enphase.envoy
- encoding: base64
- references:
- - IANA
- - "[Chris_Eich]"
- - "{application/vnd.enphase.envoy=http://www.iana.org/assignments/media-types/application/vnd.enphase.envoy}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Eich
- template:
- - application/vnd.enphase.envoy
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.eprints.data+xml
- encoding: base64
- references:
- - IANA
- - "[Tim_Brody]"
- - "{application/vnd.eprints.data+xml=http://www.iana.org/assignments/media-types/application/vnd.eprints.data+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tim_Brody
- template:
- - application/vnd.eprints.data+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.epson.esf
- friendly:
- en: QUASS Stream Player
- encoding: base64
- extensions:
- - esf
- references:
- - IANA
- - "[Shoji_Hoshina]"
- - "{application/vnd.epson.esf=http://www.iana.org/assignments/media-types/application/vnd.epson.esf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shoji_Hoshina
- template:
- - application/vnd.epson.esf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.epson.msf
- friendly:
- en: QUASS Stream Player
- encoding: base64
- extensions:
- - msf
- references:
- - IANA
- - "[Shoji_Hoshina]"
- - "{application/vnd.epson.msf=http://www.iana.org/assignments/media-types/application/vnd.epson.msf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shoji_Hoshina
- template:
- - application/vnd.epson.msf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.epson.quickanime
- friendly:
- en: QuickAnime Player
- encoding: base64
- extensions:
- - qam
- references:
- - IANA
- - "[Yu_Gu]"
- - "{application/vnd.epson.quickanime=http://www.iana.org/assignments/media-types/application/vnd.epson.quickanime}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yu_Gu
- template:
- - application/vnd.epson.quickanime
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.epson.salt
- friendly:
- en: SimpleAnimeLite Player
- encoding: base64
- extensions:
- - slt
- references:
- - IANA
- - "[Yasuhito_Nagatomo]"
- - "{application/vnd.epson.salt=http://www.iana.org/assignments/media-types/application/vnd.epson.salt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yasuhito_Nagatomo
- template:
- - application/vnd.epson.salt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.epson.ssf
- friendly:
- en: QUASS Stream Player
- encoding: base64
- extensions:
- - ssf
- references:
- - IANA
- - "[Shoji_Hoshina]"
- - "{application/vnd.epson.ssf=http://www.iana.org/assignments/media-types/application/vnd.epson.ssf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shoji_Hoshina
- template:
- - application/vnd.epson.ssf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ericsson.quickcall
- encoding: base64
- references:
- - IANA
- - "[Paul_Tidwell]"
- - "{application/vnd.ericsson.quickcall=http://www.iana.org/assignments/media-types/application/vnd.ericsson.quickcall}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Tidwell
- template:
- - application/vnd.ericsson.quickcall
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.eszigno3+xml
- friendly:
- en: MICROSEC e-Szign¢
- encoding: base64
- extensions:
- - es3
- - et3
- references:
- - IANA
- - "[Szilveszter_Tóth]"
- - "{application/vnd.eszigno3+xml=http://www.iana.org/assignments/media-types/application/vnd.eszigno3+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Szilveszter_Tóth
- template:
- - application/vnd.eszigno3+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.aoc+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.aoc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.aoc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.aoc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.asic-e+zip
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "{application/vnd.etsi.asic-e+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-e+zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.asic-e+zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.asic-s+zip
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "{application/vnd.etsi.asic-s+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-s+zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.asic-s+zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.cug+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.cug+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.cug+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.cug+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvcommand+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvcommand+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvcommand+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvcommand+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvdiscovery+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvdiscovery+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvdiscovery+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvprofile+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvprofile+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvprofile+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvsad-bc+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvsad-bc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-bc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvsad-bc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvsad-cod+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvsad-cod+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-cod+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvsad-cod+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvsad-npvr+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvsad-npvr+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-npvr+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvsad-npvr+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvservice+xml
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "{application/vnd.etsi.iptvservice+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvservice+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.iptvservice+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvsync+xml
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "{application/vnd.etsi.iptvsync+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsync+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.iptvsync+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.iptvueprofile+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.iptvueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvueprofile+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.iptvueprofile+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.mcid+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.mcid+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.mcid+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.mcid+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.mheg5
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "[Ian_Medland]"
- - "{application/vnd.etsi.mheg5=http://www.iana.org/assignments/media-types/application/vnd.etsi.mheg5}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ian_Medland
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.mheg5
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.overload-control-policy-dataset+xml
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "{application/vnd.etsi.overload-control-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.overload-control-policy-dataset+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.overload-control-policy-dataset+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.pstn+xml
- encoding: base64
- references:
- - IANA
- - "[Jiwan_Han]"
- - "[Thomas_Belling]"
- - "{application/vnd.etsi.pstn+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.pstn+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jiwan_Han
- - Thomas_Belling
- template:
- - application/vnd.etsi.pstn+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.sci+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.sci+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.sci+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.sci+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.simservs+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.simservs+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.simservs+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.simservs+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.timestamp-token
- encoding: base64
- references:
- - IANA
- - "[Miguel_Angel_Reina_Ortega]"
- - "{application/vnd.etsi.timestamp-token=http://www.iana.org/assignments/media-types/application/vnd.etsi.timestamp-token}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Miguel_Angel_Reina_Ortega
- template:
- - application/vnd.etsi.timestamp-token
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.tsl+xml
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.tsl+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.tsl+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.etsi.tsl.der
- encoding: base64
- references:
- - IANA
- - "[Shicheng_Hu]"
- - "{application/vnd.etsi.tsl.der=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl.der}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shicheng_Hu
- template:
- - application/vnd.etsi.tsl.der
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.eudora.data
- encoding: base64
- references:
- - IANA
- - "[Pete_Resnick]"
- - "{application/vnd.eudora.data=http://www.iana.org/assignments/media-types/application/vnd.eudora.data}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Pete_Resnick
- template:
- - application/vnd.eudora.data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ezpix-album
- friendly:
- en: EZPix Secure Photo Album
- encoding: base64
- extensions:
- - ez2
- references:
- - IANA
- - "[ElectronicZombieCorp]"
- - "{application/vnd.ezpix-album=http://www.iana.org/assignments/media-types/application/vnd.ezpix-album}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ElectronicZombieCorp
- template:
- - application/vnd.ezpix-album
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ezpix-package
- friendly:
- en: EZPix Secure Photo Album
- encoding: base64
- extensions:
- - ez3
- references:
- - IANA
- - "[ElectronicZombieCorp]"
- - "{application/vnd.ezpix-package=http://www.iana.org/assignments/media-types/application/vnd.ezpix-package}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ElectronicZombieCorp
- template:
- - application/vnd.ezpix-package
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.f-secure.mobile
- encoding: base64
- references:
- - IANA
- - "[Samu_Sarivaara]"
- - "{application/vnd.f-secure.mobile=http://www.iana.org/assignments/media-types/application/vnd.f-secure.mobile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Samu_Sarivaara
- template:
- - application/vnd.f-secure.mobile
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fastcopy-disk-image
- encoding: base64
- references:
- - IANA
- - "[Thomas_Huth]"
- - "{application/vnd.fastcopy-disk-image=http://www.iana.org/assignments/media-types/application/vnd.fastcopy-disk-image}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Huth
- template:
- - application/vnd.fastcopy-disk-image
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fdf
- friendly:
- en: Forms Data Format
- encoding: base64
- extensions:
- - fdf
- references:
- - IANA
- - "[Steve_Zilles]"
- - "{application/vnd-fdf=http://www.iana.org/assignments/media-types/application/vnd-fdf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Zilles
- template:
- - application/vnd-fdf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fdsn.mseed
- encoding: base64
- extensions:
- - mseed
- references:
- - IANA
- - "[Chad_Trabant]"
- - "{application/vnd.fdsn.mseed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.mseed}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chad_Trabant
- template:
- - application/vnd.fdsn.mseed
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fdsn.seed
- friendly:
- en: Digital Siesmograph Networks - SEED Datafiles
- encoding: base64
- extensions:
- - dataless
- - seed
- references:
- - IANA
- - "[Chad_Trabant]"
- - "{application/vnd.fdsn.seed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.seed}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chad_Trabant
- template:
- - application/vnd.fdsn.seed
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ffsns
- encoding: base64
- references:
- - IANA
- - "[Holstage]"
- - "{application/vnd.ffsns=http://www.iana.org/assignments/media-types/application/vnd.ffsns}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Holstage
- template:
- - application/vnd.ffsns
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fints
- encoding: base64
- references:
- - IANA
- - "[Ingo_Hammann]"
- - "{application/vnd.fints=http://www.iana.org/assignments/media-types/application/vnd.fints}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ingo_Hammann
- template:
- - application/vnd.fints
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.firemonkeys.cloudcell
- encoding: base64
- references:
- - IANA
- - "[Alex_Dubov]"
- - "{application/vnd.firemonkeys.cloudcell=http://www.iana.org/assignments/media-types/application/vnd.firemonkeys.cloudcell}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alex_Dubov
- template:
- - application/vnd.firemonkeys.cloudcell
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.FloGraphIt
- friendly:
- en: NpGraphIt
- encoding: base64
- extensions:
- - gph
- references:
- - IANA
- - "[Dick_Floersch]"
- - "{application/vnd.FloGraphIt=http://www.iana.org/assignments/media-types/application/vnd.FloGraphIt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dick_Floersch
- template:
- - application/vnd.FloGraphIt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fluxtime.clip
- friendly:
- en: FluxTime Clip
- encoding: base64
- extensions:
- - ftc
- references:
- - IANA
- - "[Marc_Winter]"
- - "{application/vnd.fluxtime.clip=http://www.iana.org/assignments/media-types/application/vnd.fluxtime.clip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Marc_Winter
- template:
- - application/vnd.fluxtime.clip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.font-fontforge-sfd
- encoding: base64
- references:
- - IANA
- - "[George_Williams]"
- - "{application/vnd.font-fontforge-sfd=http://www.iana.org/assignments/media-types/application/vnd.font-fontforge-sfd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - George_Williams
- template:
- - application/vnd.font-fontforge-sfd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.framemaker
- friendly:
- en: FrameMaker Normal Format
- encoding: base64
- extensions:
- - frm
- - maker
- - frame
- - fm
- - fb
- - book
- - fbdoc
- references:
- - IANA
- - "[Mike_Wexler]"
- - "{application/vnd.framemaker=http://www.iana.org/assignments/media-types/application/vnd.framemaker}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Wexler
- template:
- - application/vnd.framemaker
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.frogans.fnc
- friendly:
- en: Frogans Player
- encoding: base64
- extensions:
- - fnc
- references:
- - IANA
- - "[Alexis_Tamas]"
- - "{application/vnd.frogans.fnc=http://www.iana.org/assignments/media-types/application/vnd.frogans.fnc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alexis_Tamas
- template:
- - application/vnd.frogans.fnc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.frogans.ltf
- friendly:
- en: Frogans Player
- encoding: base64
- extensions:
- - ltf
- references:
- - IANA
- - "[Alexis_Tamas]"
- - "{application/vnd.frogans.ltf=http://www.iana.org/assignments/media-types/application/vnd.frogans.ltf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alexis_Tamas
- template:
- - application/vnd.frogans.ltf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fsc.weblaunch
- friendly:
- en: Friendly Software Corporation
- encoding: 7bit
- extensions:
- - fsc
- references:
- - IANA
- - "[Derek_Smith]"
- - "{application/vnd.fsc.weblaunch=http://www.iana.org/assignments/media-types/application/vnd.fsc.weblaunch}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Derek_Smith
- template:
- - application/vnd.fsc.weblaunch
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujitsu.oasys
- friendly:
- en: Fujitsu Oasys
- encoding: base64
- extensions:
- - oas
- references:
- - IANA
- - "[Nobukazu_Togashi]"
- - "{application/vnd.fujitsu.oasys=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nobukazu_Togashi
- template:
- - application/vnd.fujitsu.oasys
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujitsu.oasys2
- friendly:
- en: Fujitsu Oasys
- encoding: base64
- extensions:
- - oa2
- references:
- - IANA
- - "[Nobukazu_Togashi]"
- - "{application/vnd.fujitsu.oasys2=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nobukazu_Togashi
- template:
- - application/vnd.fujitsu.oasys2
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujitsu.oasys3
- friendly:
- en: Fujitsu Oasys
- encoding: base64
- extensions:
- - oa3
- references:
- - IANA
- - "[Seiji_Okudaira]"
- - "{application/vnd.fujitsu.oasys3=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys3}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Seiji_Okudaira
- template:
- - application/vnd.fujitsu.oasys3
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujitsu.oasysgp
- friendly:
- en: Fujitsu Oasys
- encoding: base64
- extensions:
- - fg5
- references:
- - IANA
- - "[Masahiko_Sugimoto]"
- - "{application/vnd.fujitsu.oasysgp=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysgp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masahiko_Sugimoto
- template:
- - application/vnd.fujitsu.oasysgp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujitsu.oasysprs
- friendly:
- en: Fujitsu Oasys
- encoding: base64
- extensions:
- - bh2
- references:
- - IANA
- - "[Masumi_Ogita]"
- - "{application/vnd.fujitsu.oasysprs=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysprs}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masumi_Ogita
- template:
- - application/vnd.fujitsu.oasysprs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.ART-EX
- encoding: base64
- references:
- - IANA
- - "[Fumio_Tanabe]"
- - "{application/vnd.fujixerox.ART-EX=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART-EX}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Fumio_Tanabe
- template:
- - application/vnd.fujixerox.ART-EX
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.ART4
- encoding: base64
- references:
- - IANA
- - "[Fumio_Tanabe]"
- - "{application/vnd.fujixerox.ART4=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART4}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Fumio_Tanabe
- template:
- - application/vnd.fujixerox.ART4
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.ddd
- friendly:
- en: Fujitsu - Xerox 2D CAD Data
- encoding: base64
- extensions:
- - ddd
- references:
- - IANA
- - "[Masanori_Onda]"
- - "{application/vnd.fujixerox.ddd=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ddd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masanori_Onda
- template:
- - application/vnd.fujixerox.ddd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.docuworks
- friendly:
- en: Fujitsu - Xerox DocuWorks
- encoding: base64
- extensions:
- - xdw
- references:
- - IANA
- - "[Yasuo_Taguchi]"
- - "{application/vnd.fujixerox.docuworks=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yasuo_Taguchi
- template:
- - application/vnd.fujixerox.docuworks
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.docuworks.binder
- friendly:
- en: Fujitsu - Xerox DocuWorks Binder
- encoding: base64
- extensions:
- - xbd
- references:
- - IANA
- - "[Takashi_Matsumoto]"
- - "{application/vnd.fujixerox.docuworks.binder=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.binder}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Takashi_Matsumoto
- template:
- - application/vnd.fujixerox.docuworks.binder
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.docuworks.container
- encoding: base64
- references:
- - IANA
- - "[Kiyoshi_Tashiro]"
- - "{application/vnd.fujixerox.docuworks.container=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.container}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kiyoshi_Tashiro
- template:
- - application/vnd.fujixerox.docuworks.container
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fujixerox.HBPL
- encoding: base64
- references:
- - IANA
- - "[Fumio_Tanabe]"
- - "{application/vnd.fujixerox.HBPL=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.HBPL}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Fumio_Tanabe
- template:
- - application/vnd.fujixerox.HBPL
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fut-misnet
- encoding: base64
- references:
- - IANA
- - "[Jann_Pruulman]"
- - "{application/vnd.fut-misnet=http://www.iana.org/assignments/media-types/application/vnd.fut-misnet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jann_Pruulman
- template:
- - application/vnd.fut-misnet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.fuzzysheet
- friendly:
- en: FuzzySheet
- encoding: base64
- extensions:
- - fzs
- references:
- - IANA
- - "[Simon_Birtwistle]"
- - "{application/vnd.fuzzysheet=http://www.iana.org/assignments/media-types/application/vnd.fuzzysheet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Simon_Birtwistle
- template:
- - application/vnd.fuzzysheet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.genomatix.tuxedo
- friendly:
- en: Genomatix Tuxedo Framework
- encoding: base64
- extensions:
- - txd
- references:
- - IANA
- - "[Torben_Frey]"
- - "{application/vnd.genomatix.tuxedo=http://www.iana.org/assignments/media-types/application/vnd.genomatix.tuxedo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Torben_Frey
- template:
- - application/vnd.genomatix.tuxedo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geo+json
- encoding: base64
- references:
- - IANA
- - "[Sean_Gillies]"
- - "{application/vnd.geo+json=http://www.iana.org/assignments/media-types/application/vnd.geo+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sean_Gillies
- template:
- - application/vnd.geo+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geocube+xml
- encoding: 8bit
- obsolete: true
- references:
- - IANA
- - "[Francois_Pirsch]"
- - "{application/vnd.geocube+xml=http://www.iana.org/assignments/media-types/application/vnd.geocube+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Francois_Pirsch
- template:
- - application/vnd.geocube+xml
- notes:
- - "- OBSOLETED by request"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geogebra.file
- friendly:
- en: GeoGebra
- encoding: base64
- extensions:
- - ggb
- references:
- - IANA
- - "[GeoGebra]"
- - "[Yves_Kreis]"
- - "{application/vnd.geogebra.file=http://www.iana.org/assignments/media-types/application/vnd.geogebra.file}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - GeoGebra
- - Yves_Kreis
- template:
- - application/vnd.geogebra.file
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geogebra.tool
- friendly:
- en: GeoGebra
- encoding: base64
- extensions:
- - ggt
- references:
- - IANA
- - "[GeoGebra]"
- - "[Yves_Kreis]"
- - "{application/vnd.geogebra.tool=http://www.iana.org/assignments/media-types/application/vnd.geogebra.tool}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - GeoGebra
- - Yves_Kreis
- template:
- - application/vnd.geogebra.tool
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geometry-explorer
- friendly:
- en: GeoMetry Explorer
- encoding: base64
- extensions:
- - gex
- - gre
- references:
- - IANA
- - "[Michael_Hvidsten]"
- - "{application/vnd.geometry-explorer=http://www.iana.org/assignments/media-types/application/vnd.geometry-explorer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Hvidsten
- template:
- - application/vnd.geometry-explorer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geonext
- friendly:
- en: GEONExT and JSXGraph
- encoding: base64
- extensions:
- - gxt
- references:
- - IANA
- - "[Matthias_Ehmann]"
- - "{application/vnd.geonext=http://www.iana.org/assignments/media-types/application/vnd.geonext}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Matthias_Ehmann
- template:
- - application/vnd.geonext
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geoplan
- friendly:
- en: GeoplanW
- encoding: base64
- extensions:
- - g2w
- references:
- - IANA
- - "[Christian_Mercat]"
- - "{application/vnd.geoplan=http://www.iana.org/assignments/media-types/application/vnd.geoplan}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christian_Mercat
- template:
- - application/vnd.geoplan
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.geospace
- friendly:
- en: GeospacW
- encoding: base64
- extensions:
- - g3w
- references:
- - IANA
- - "[Christian_Mercat]"
- - "{application/vnd.geospace=http://www.iana.org/assignments/media-types/application/vnd.geospace}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christian_Mercat
- template:
- - application/vnd.geospace
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.gerber
- encoding: base64
- references:
- - IANA
- - "[Thomas_Weyn]"
- - "{application/vnd.gerber=http://www.iana.org/assignments/media-types/application/vnd.gerber}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Weyn
- template:
- - application/vnd.gerber
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.globalplatform.card-content-mgt
- encoding: base64
- references:
- - IANA
- - "[Gil_Bernabeu]"
- - "{application/vnd.globalplatform.card-content-mgt=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gil_Bernabeu
- template:
- - application/vnd.globalplatform.card-content-mgt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.globalplatform.card-content-mgt-response
- encoding: base64
- references:
- - IANA
- - "[Gil_Bernabeu]"
- - "{application/vnd.globalplatform.card-content-mgt-response=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gil_Bernabeu
- template:
- - application/vnd.globalplatform.card-content-mgt-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.gmx
- friendly:
- en: GameMaker ActiveX
- encoding: base64
- extensions:
- - gmx
- obsolete: true
- references:
- - IANA
- - "[Christian_V._Sciberras]"
- - "{application/vnd.gmx=http://www.iana.org/assignments/media-types/application/vnd.gmx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christian_V._Sciberras
- template:
- - application/vnd.gmx
- notes:
- - "- DEPRECATED"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.google-earth.kml+xml
- friendly:
- en: Google Earth - KML
- encoding: 8bit
- extensions:
- - kml
- references:
- - IANA
- - "[Michael_Ashbridge]"
- - "{application/vnd.google-earth.kml+xml=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Ashbridge
- template:
- - application/vnd.google-earth.kml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.google-earth.kmz
- friendly:
- en: Google Earth - Zipped KML
- encoding: 8bit
- extensions:
- - kmz
- references:
- - IANA
- - "[Michael_Ashbridge]"
- - "{application/vnd.google-earth.kmz=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kmz}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Ashbridge
- template:
- - application/vnd.google-earth.kmz
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.gov.sk.e-form+xml
- encoding: base64
- references:
- - IANA
- - "[Peter_Biro]"
- - "[Stefan_Szilva]"
- - "{application/vnd.gov.sk.e-form+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Biro
- - Stefan_Szilva
- template:
- - application/vnd.gov.sk.e-form+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.gov.sk.e-form+zip
- encoding: base64
- references:
- - IANA
- - "[Peter_Biro]"
- - "[Stefan_Szilva]"
- - "{application/vnd.gov.sk.e-form+zip=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Biro
- - Stefan_Szilva
- template:
- - application/vnd.gov.sk.e-form+zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.gov.sk.xmldatacontainer+xml
- encoding: base64
- references:
- - IANA
- - "[Peter_Biro]"
- - "[Stefan_Szilva]"
- - "{application/vnd.gov.sk.xmldatacontainer+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.xmldatacontainer+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Biro
- - Stefan_Szilva
- template:
- - application/vnd.gov.sk.xmldatacontainer+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.grafeq
- friendly:
- en: GrafEq
- encoding: base64
- extensions:
- - gqf
- - gqs
- references:
- - IANA
- - "[Jeff_Tupper]"
- - "{application/vnd.grafeq=http://www.iana.org/assignments/media-types/application/vnd.grafeq}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jeff_Tupper
- template:
- - application/vnd.grafeq
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.gridmp
- encoding: base64
- references:
- - IANA
- - "[Jeff_Lawson]"
- - "{application/vnd.gridmp=http://www.iana.org/assignments/media-types/application/vnd.gridmp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jeff_Lawson
- template:
- - application/vnd.gridmp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-account
- friendly:
- en: Groove - Account
- encoding: base64
- extensions:
- - gac
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-account=http://www.iana.org/assignments/media-types/application/vnd.groove-account}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-account
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-help
- friendly:
- en: Groove - Help
- encoding: base64
- extensions:
- - ghf
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-help=http://www.iana.org/assignments/media-types/application/vnd.groove-help}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-help
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-identity-message
- friendly:
- en: Groove - Identity Message
- encoding: base64
- extensions:
- - gim
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-identity-message=http://www.iana.org/assignments/media-types/application/vnd.groove-identity-message}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-identity-message
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-injector
- friendly:
- en: Groove - Injector
- encoding: base64
- extensions:
- - grv
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-injector=http://www.iana.org/assignments/media-types/application/vnd.groove-injector}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-injector
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-tool-message
- friendly:
- en: Groove - Tool Message
- encoding: base64
- extensions:
- - gtm
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-tool-message=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-message}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-tool-message
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-tool-template
- friendly:
- en: Groove - Tool Template
- encoding: base64
- extensions:
- - tpl
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-tool-template=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-tool-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.groove-vcard
- friendly:
- en: Groove - Vcard
- encoding: base64
- extensions:
- - vcg
- references:
- - IANA
- - "[Todd_Joseph]"
- - "{application/vnd.groove-vcard=http://www.iana.org/assignments/media-types/application/vnd.groove-vcard}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Todd_Joseph
- template:
- - application/vnd.groove-vcard
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hal+json
- encoding: base64
- references:
- - IANA
- - "[Mike_Kelly]"
- - "{application/vnd.hal+json=http://www.iana.org/assignments/media-types/application/vnd.hal+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Kelly
- template:
- - application/vnd.hal+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hal+xml
- friendly:
- en: Hypertext Application Language
- encoding: base64
- extensions:
- - hal
- references:
- - IANA
- - "[Mike_Kelly]"
- - "{application/vnd.hal+xml=http://www.iana.org/assignments/media-types/application/vnd.hal+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Kelly
- template:
- - application/vnd.hal+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.HandHeld-Entertainment+xml
- friendly:
- en: ZVUE Media Manager
- encoding: base64
- extensions:
- - zmm
- references:
- - IANA
- - "[Eric_Hamilton]"
- - "{application/vnd.HandHeld-Entertainment+xml=http://www.iana.org/assignments/media-types/application/vnd.HandHeld-Entertainment+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Hamilton
- template:
- - application/vnd.HandHeld-Entertainment+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hbci
- friendly:
- en: Homebanking Computer Interface (HBCI)
- encoding: base64
- extensions:
- - hbci
- - hbc
- - kom
- - upa
- - pkd
- - bpd
- references:
- - IANA
- - "[Ingo_Hammann]"
- - "{application/vnd.hbci=http://www.iana.org/assignments/media-types/application/vnd.hbci}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ingo_Hammann
- template:
- - application/vnd.hbci
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hcl-bireports
- encoding: base64
- references:
- - IANA
- - "[Doug_R._Serres]"
- - "{application/vnd.hcl-bireports=http://www.iana.org/assignments/media-types/application/vnd.hcl-bireports}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Doug_R._Serres
- template:
- - application/vnd.hcl-bireports
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.heroku+json
- encoding: base64
- references:
- - IANA
- - "[Wesley_Beary]"
- - "{application/vnd.heroku+json=http://www.iana.org/assignments/media-types/application/vnd.heroku+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Wesley_Beary
- template:
- - application/vnd.heroku+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hhe.lesson-player
- friendly:
- en: Archipelago Lesson Player
- encoding: base64
- extensions:
- - les
- references:
- - IANA
- - "[Randy_Jones]"
- - "{application/vnd.hhe.lesson-player=http://www.iana.org/assignments/media-types/application/vnd.hhe.lesson-player}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Randy_Jones
- template:
- - application/vnd.hhe.lesson-player
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hp-HPGL
- friendly:
- en: HP-GL/2 and HP RTL
- encoding: base64
- extensions:
- - plt
- - hpgl
- references:
- - IANA
- - "[Bob_Pentecost]"
- - "{application/vnd.hp-HPGL=http://www.iana.org/assignments/media-types/application/vnd.hp-HPGL}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bob_Pentecost
- template:
- - application/vnd.hp-HPGL
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hp-hpid
- friendly:
- en: Hewlett Packard Instant Delivery
- encoding: base64
- extensions:
- - hpid
- references:
- - IANA
- - "[Aloke_Gupta]"
- - "{application/vnd.hp-hpid=http://www.iana.org/assignments/media-types/application/vnd.hp-hpid}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Aloke_Gupta
- template:
- - application/vnd.hp-hpid
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hp-hps
- friendly:
- en: Hewlett-Packard's WebPrintSmart
- encoding: base64
- extensions:
- - hps
- references:
- - IANA
- - "[Steve_Aubrey]"
- - "{application/vnd.hp-hps=http://www.iana.org/assignments/media-types/application/vnd.hp-hps}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Aubrey
- template:
- - application/vnd.hp-hps
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hp-jlyt
- friendly:
- en: HP Indigo Digital Press - Job Layout Languate
- encoding: base64
- extensions:
- - jlt
- references:
- - IANA
- - "[Amir_Gaash]"
- - "{application/vnd.hp-jlyt=http://www.iana.org/assignments/media-types/application/vnd.hp-jlyt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Amir_Gaash
- template:
- - application/vnd.hp-jlyt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hp-PCL
- friendly:
- en: HP Printer Command Language
- encoding: base64
- extensions:
- - pcl
- references:
- - IANA
- - "[Bob_Pentecost]"
- - "{application/vnd.hp-PCL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCL}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bob_Pentecost
- template:
- - application/vnd.hp-PCL
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hp-PCLXL
- friendly:
- en: PCL 6 Enhanced (Formely PCL XL)
- encoding: base64
- extensions:
- - pclxl
- references:
- - IANA
- - "[Bob_Pentecost]"
- - "{application/vnd.hp-PCLXL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCLXL}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bob_Pentecost
- template:
- - application/vnd.hp-PCLXL
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.httphone
- encoding: base64
- references:
- - IANA
- - "[Franck_Lefevre]"
- - "{application/vnd.httphone=http://www.iana.org/assignments/media-types/application/vnd.httphone}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Franck_Lefevre
- template:
- - application/vnd.httphone
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hydrostatix.sof-data
- friendly:
- en: Hydrostatix Master Suite
- encoding: base64
- extensions:
- - sfd-hdstx
- references:
- - IANA
- - "[Allen_Gillam]"
- - "{application/vnd.hydrostatix.sof-data=http://www.iana.org/assignments/media-types/application/vnd.hydrostatix.sof-data}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Allen_Gillam
- template:
- - application/vnd.hydrostatix.sof-data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hyperdrive+json
- encoding: base64
- references:
- - IANA
- - "[Daniel_Sims]"
- - "{application/vnd.hyperdrive+json=http://www.iana.org/assignments/media-types/application/vnd.hyperdrive+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Daniel_Sims
- template:
- - application/vnd.hyperdrive+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.hzn-3d-crossword
- friendly:
- en: 3D Crossword Plugin
- encoding: base64
- references:
- - IANA
- - "[James_Minnis]"
- - "{application/vnd.hzn-3d-crossword=http://www.iana.org/assignments/media-types/application/vnd.hzn-3d-crossword}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - James_Minnis
- template:
- - application/vnd.hzn-3d-crossword
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ibm.afplinedata
- encoding: base64
- references:
- - IANA
- - "[Roger_Buis]"
- - "{application/vnd.ibm.afplinedata=http://www.iana.org/assignments/media-types/application/vnd.ibm.afplinedata}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roger_Buis
- template:
- - application/vnd.ibm.afplinedata
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ibm.electronic-media
- encoding: base64
- extensions:
- - emm
- references:
- - IANA
- - "[Bruce_Tantlinger]"
- - "{application/vnd.ibm.electronic-media=http://www.iana.org/assignments/media-types/application/vnd.ibm.electronic-media}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Tantlinger
- template:
- - application/vnd.ibm.electronic-media
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ibm.MiniPay
- friendly:
- en: MiniPay
- encoding: base64
- extensions:
- - mpy
- references:
- - IANA
- - "[Amir_Herzberg]"
- - "{application/vnd.ibm.MiniPay=http://www.iana.org/assignments/media-types/application/vnd.ibm.MiniPay}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Amir_Herzberg
- template:
- - application/vnd.ibm.MiniPay
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ibm.modcap
- friendly:
- en: MO:DCA-P
- encoding: base64
- extensions:
- - afp
- - list3820
- - listafp
- references:
- - IANA
- - "[Reinhard_Hohensee]"
- - "{application/vnd.ibm.modcap=http://www.iana.org/assignments/media-types/application/vnd.ibm.modcap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reinhard_Hohensee
- template:
- - application/vnd.ibm.modcap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ibm.rights-management
- friendly:
- en: IBM DB2 Rights Manager
- encoding: base64
- extensions:
- - irm
- references:
- - IANA
- - "[Bruce_Tantlinger]"
- - "{application/vnd.ibm.rights-management=http://www.iana.org/assignments/media-types/application/vnd.ibm.rights-management}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Tantlinger
- template:
- - application/vnd.ibm.rights-management
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ibm.secure-container
- friendly:
- en: IBM Electronic Media Management System - Secure Container
- encoding: base64
- extensions:
- - sc
- references:
- - IANA
- - "[Bruce_Tantlinger]"
- - "{application/vnd.ibm.secure-container=http://www.iana.org/assignments/media-types/application/vnd.ibm.secure-container}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Tantlinger
- template:
- - application/vnd.ibm.secure-container
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iccprofile
- friendly:
- en: ICC profile
- encoding: base64
- extensions:
- - icc
- - icm
- references:
- - IANA
- - "[Phil_Green]"
- - "{application/vnd.iccprofile=http://www.iana.org/assignments/media-types/application/vnd.iccprofile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Phil_Green
- template:
- - application/vnd.iccprofile
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ieee.1905
- encoding: base64
- references:
- - IANA
- - "[Purva_R_Rajkotia]"
- - "{application/vnd.ieee.1905=http://www.iana.org/assignments/media-types/application/vnd.ieee.1905}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Purva_R_Rajkotia
- template:
- - application/vnd.ieee.1905
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.igloader
- friendly:
- en: igLoader
- encoding: base64
- extensions:
- - igl
- references:
- - IANA
- - "[Tim_Fisher]"
- - "{application/vnd.igloader=http://www.iana.org/assignments/media-types/application/vnd.igloader}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tim_Fisher
- template:
- - application/vnd.igloader
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.immervision-ivp
- friendly:
- en: ImmerVision PURE Players
- encoding: base64
- extensions:
- - ivp
- references:
- - IANA
- - "[Mathieu_Villegas]"
- - "{application/vnd.immervision-ivp=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mathieu_Villegas
- template:
- - application/vnd.immervision-ivp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.immervision-ivu
- friendly:
- en: ImmerVision PURE Players
- encoding: base64
- extensions:
- - ivu
- references:
- - IANA
- - "[Mathieu_Villegas]"
- - "{application/vnd.immervision-ivu=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivu}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mathieu_Villegas
- template:
- - application/vnd.immervision-ivu
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.imsccv1p1
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.imsccv1p1=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.imsccv1p1
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.imsccv1p2
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.imsccv1p2=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.imsccv1p2
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.imsccv1p3
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.imsccv1p3=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p3}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.imsccv1p3
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.lis.v2.result+json
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.lis.v2.result+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lis.v2.result+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.lis.v2.result+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.lti.v2.toolconsumerprofile+json
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.lti.v2.toolconsumerprofile+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolconsumerprofile+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.lti.v2.toolconsumerprofile+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.lti.v2.toolproxy+json
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.lti.v2.toolproxy+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.lti.v2.toolproxy+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.lti.v2.toolproxy.id+json
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.lti.v2.toolproxy.id+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy.id+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.lti.v2.toolproxy.id+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.lti.v2.toolsettings+json
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.lti.v2.toolsettings+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.lti.v2.toolsettings+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ims.lti.v2.toolsettings.simple+json
- encoding: base64
- references:
- - IANA
- - "[Lisa_Mattson]"
- - "{application/vnd.ims.lti.v2.toolsettings.simple+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings.simple+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lisa_Mattson
- template:
- - application/vnd.ims.lti.v2.toolsettings.simple+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.informedcontrol.rms+xml
- encoding: base64
- references:
- - IANA
- - "[Mark_Wahl]"
- - "{application/vnd.informedcontrol.rms+xml=http://www.iana.org/assignments/media-types/application/vnd.informedcontrol.rms+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Wahl
- template:
- - application/vnd.informedcontrol.rms+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.informix-visionary
- encoding: base64
- obsolete: true
- use-instead: application/vnd.visionary
- references:
- - IANA
- - "[Christopher_Gales]"
- - "{application/vnd.informix-visionary=http://www.iana.org/assignments/media-types/application/vnd.informix-visionary}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christopher_Gales
- template:
- - application/vnd.informix-visionary
- notes:
- - "- OBSOLETED in favor of application/vnd.visionary"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.infotech.project
- encoding: base64
- references:
- - IANA
- - "[Charles_Engelke]"
- - "{application/vnd.infotech.project=http://www.iana.org/assignments/media-types/application/vnd.infotech.project}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Charles_Engelke
- template:
- - application/vnd.infotech.project
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.infotech.project+xml
- encoding: base64
- references:
- - IANA
- - "[Charles_Engelke]"
- - "{application/vnd.infotech.project+xml=http://www.iana.org/assignments/media-types/application/vnd.infotech.project+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Charles_Engelke
- template:
- - application/vnd.infotech.project+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.innopath.wamp.notification
- encoding: base64
- references:
- - IANA
- - "[Takanori_Sudo]"
- - "{application/vnd.innopath.wamp.notification=http://www.iana.org/assignments/media-types/application/vnd.innopath.wamp.notification}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Takanori_Sudo
- template:
- - application/vnd.innopath.wamp.notification
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.insors.igm
- friendly:
- en: IOCOM Visimeet
- encoding: base64
- extensions:
- - igm
- references:
- - IANA
- - "[Jon_Swanson]"
- - "{application/vnd.insors.igm=http://www.iana.org/assignments/media-types/application/vnd.insors.igm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jon_Swanson
- template:
- - application/vnd.insors.igm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.intercon.formnet
- friendly:
- en: Intercon FormNet
- encoding: base64
- extensions:
- - xpw
- - xpx
- references:
- - IANA
- - "[Tom_Gurak]"
- - "{application/vnd.intercon.formnet=http://www.iana.org/assignments/media-types/application/vnd.intercon.formnet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tom_Gurak
- template:
- - application/vnd.intercon.formnet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.intergeo
- friendly:
- en: Interactive Geometry Software
- encoding: base64
- extensions:
- - i2g
- references:
- - IANA
- - "[Yves_Kreis_2]"
- - "{application/vnd.intergeo=http://www.iana.org/assignments/media-types/application/vnd.intergeo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yves_Kreis_2
- template:
- - application/vnd.intergeo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.intertrust.digibox
- encoding: base64
- references:
- - IANA
- - "[Luke_Tomasello]"
- - "{application/vnd.intertrust.digibox=http://www.iana.org/assignments/media-types/application/vnd.intertrust.digibox}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Luke_Tomasello
- template:
- - application/vnd.intertrust.digibox
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.intertrust.nncp
- encoding: base64
- references:
- - IANA
- - "[Luke_Tomasello]"
- - "{application/vnd.intertrust.nncp=http://www.iana.org/assignments/media-types/application/vnd.intertrust.nncp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Luke_Tomasello
- template:
- - application/vnd.intertrust.nncp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.intu.qbo
- friendly:
- en: Open Financial Exchange
- encoding: base64
- extensions:
- - qbo
- references:
- - IANA
- - "[Greg_Scratchley]"
- - "{application/vnd.intu.qbo=http://www.iana.org/assignments/media-types/application/vnd.intu.qbo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Scratchley
- template:
- - application/vnd.intu.qbo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.intu.qfx
- friendly:
- en: Quicken
- encoding: base64
- extensions:
- - qfx
- references:
- - IANA
- - "[Greg_Scratchley]"
- - "{application/vnd.intu.qfx=http://www.iana.org/assignments/media-types/application/vnd.intu.qfx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Scratchley
- template:
- - application/vnd.intu.qfx
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.catalogitem+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.catalogitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.catalogitem+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.catalogitem+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.conceptitem+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.conceptitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.conceptitem+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.conceptitem+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.knowledgeitem+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.knowledgeitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.knowledgeitem+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.knowledgeitem+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.newsitem+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.newsitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsitem+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.newsitem+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.newsmessage+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.newsmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsmessage+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.newsmessage+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.packageitem+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.packageitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.packageitem+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.packageitem+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.iptc.g2.planningitem+xml
- encoding: base64
- references:
- - IANA
- - "[Michael_Steidl]"
- - "{application/vnd.iptc.g2.planningitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.planningitem+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Steidl
- template:
- - application/vnd.iptc.g2.planningitem+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ipunplugged.rcprofile
- friendly:
- en: IP Unplugged Roaming Client
- encoding: base64
- extensions:
- - rcprofile
- references:
- - IANA
- - "[Per_Ersson]"
- - "{application/vnd.ipunplugged.rcprofile=http://www.iana.org/assignments/media-types/application/vnd.ipunplugged.rcprofile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Per_Ersson
- template:
- - application/vnd.ipunplugged.rcprofile
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.irepository.package+xml
- friendly:
- en: iRepository / Lucidoc Editor
- encoding: base64
- extensions:
- - irp
- references:
- - IANA
- - "[Martin_Knowles]"
- - "{application/vnd.irepository.package+xml=http://www.iana.org/assignments/media-types/application/vnd.irepository.package+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Martin_Knowles
- template:
- - application/vnd.irepository.package+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.is-xpr
- friendly:
- en: Express by Infoseek
- encoding: base64
- extensions:
- - xpr
- references:
- - IANA
- - "[Satish_Navarajan]"
- - "{application/vnd.is-xpr=http://www.iana.org/assignments/media-types/application/vnd.is-xpr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Satish_Navarajan
- template:
- - application/vnd.is-xpr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.isac.fcs
- friendly:
- en: International Society for Advancement of Cytometry
- encoding: base64
- extensions:
- - fcs
- references:
- - IANA
- - "[Ryan_Brinkman]"
- - "{application/vnd.isac.fcs=http://www.iana.org/assignments/media-types/application/vnd.isac.fcs}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ryan_Brinkman
- template:
- - application/vnd.isac.fcs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.jam
- friendly:
- en: Lightspeed Audio Lab
- encoding: base64
- extensions:
- - jam
- references:
- - IANA
- - "[Brijesh_Kumar]"
- - "{application/vnd.jam=http://www.iana.org/assignments/media-types/application/vnd.jam}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brijesh_Kumar
- template:
- - application/vnd.jam
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-directory-service
- encoding: base64
- references:
- - IANA
- - "[Kiyofusa_Fujii]"
- - "{application/vnd.japannet-directory-service=http://www.iana.org/assignments/media-types/application/vnd.japannet-directory-service}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kiyofusa_Fujii
- template:
- - application/vnd.japannet-directory-service
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-jpnstore-wakeup
- encoding: base64
- references:
- - IANA
- - "[Jun_Yoshitake]"
- - "{application/vnd.japannet-jpnstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-jpnstore-wakeup}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jun_Yoshitake
- template:
- - application/vnd.japannet-jpnstore-wakeup
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-payment-wakeup
- encoding: base64
- references:
- - IANA
- - "[Kiyofusa_Fujii]"
- - "{application/vnd.japannet-payment-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-payment-wakeup}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kiyofusa_Fujii
- template:
- - application/vnd.japannet-payment-wakeup
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-registration
- encoding: base64
- references:
- - IANA
- - "[Jun_Yoshitake]"
- - "{application/vnd.japannet-registration=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jun_Yoshitake
- template:
- - application/vnd.japannet-registration
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-registration-wakeup
- encoding: base64
- references:
- - IANA
- - "[Kiyofusa_Fujii]"
- - "{application/vnd.japannet-registration-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration-wakeup}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kiyofusa_Fujii
- template:
- - application/vnd.japannet-registration-wakeup
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-setstore-wakeup
- encoding: base64
- references:
- - IANA
- - "[Jun_Yoshitake]"
- - "{application/vnd.japannet-setstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-setstore-wakeup}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jun_Yoshitake
- template:
- - application/vnd.japannet-setstore-wakeup
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-verification
- encoding: base64
- references:
- - IANA
- - "[Jun_Yoshitake]"
- - "{application/vnd.japannet-verification=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jun_Yoshitake
- template:
- - application/vnd.japannet-verification
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.japannet-verification-wakeup
- encoding: base64
- references:
- - IANA
- - "[Kiyofusa_Fujii]"
- - "{application/vnd.japannet-verification-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification-wakeup}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kiyofusa_Fujii
- template:
- - application/vnd.japannet-verification-wakeup
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.jcp.javame.midlet-rms
- friendly:
- en: Mobile Information Device Profile
- encoding: base64
- extensions:
- - rms
- references:
- - IANA
- - "[Mikhail_Gorshenev]"
- - "{application/vnd.jcp.javame.midlet-rms=http://www.iana.org/assignments/media-types/application/vnd.jcp.javame.midlet-rms}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mikhail_Gorshenev
- template:
- - application/vnd.jcp.javame.midlet-rms
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.jisp
- friendly:
- en: RhymBox
- encoding: base64
- extensions:
- - jisp
- references:
- - IANA
- - "[Sebastiaan_Deckers]"
- - "{application/vnd.jisp=http://www.iana.org/assignments/media-types/application/vnd.jisp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sebastiaan_Deckers
- template:
- - application/vnd.jisp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.joost.joda-archive
- friendly:
- en: Joda Archive
- encoding: base64
- extensions:
- - joda
- references:
- - IANA
- - "[Joost]"
- - "{application/vnd.joost.joda-archive=http://www.iana.org/assignments/media-types/application/vnd.joost.joda-archive}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joost
- template:
- - application/vnd.joost.joda-archive
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.jsk.isdn-ngn
- encoding: base64
- references:
- - IANA
- - "[Yokoyama_Kiyonobu]"
- - "{application/vnd.jsk.isdn-ngn=http://www.iana.org/assignments/media-types/application/vnd.jsk.isdn-ngn}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yokoyama_Kiyonobu
- template:
- - application/vnd.jsk.isdn-ngn
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kahootz
- friendly:
- en: Kahootz
- encoding: base64
- extensions:
- - ktr
- - ktz
- references:
- - IANA
- - "[Tim_Macdonald]"
- - "{application/vnd.kahootz=http://www.iana.org/assignments/media-types/application/vnd.kahootz}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tim_Macdonald
- template:
- - application/vnd.kahootz
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.karbon
- friendly:
- en: KDE KOffice Office Suite - Karbon
- encoding: base64
- extensions:
- - karbon
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.karbon=http://www.iana.org/assignments/media-types/application/vnd.kde.karbon}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.karbon
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kchart
- friendly:
- en: KDE KOffice Office Suite - KChart
- encoding: base64
- extensions:
- - chrt
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kchart=http://www.iana.org/assignments/media-types/application/vnd.kde.kchart}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kchart
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kformula
- friendly:
- en: KDE KOffice Office Suite - Kformula
- encoding: base64
- extensions:
- - kfo
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kformula=http://www.iana.org/assignments/media-types/application/vnd.kde.kformula}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kformula
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kivio
- friendly:
- en: KDE KOffice Office Suite - Kivio
- encoding: base64
- extensions:
- - flw
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kivio=http://www.iana.org/assignments/media-types/application/vnd.kde.kivio}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kivio
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kontour
- friendly:
- en: KDE KOffice Office Suite - Kontour
- encoding: base64
- extensions:
- - kon
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kontour=http://www.iana.org/assignments/media-types/application/vnd.kde.kontour}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kontour
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kpresenter
- friendly:
- en: KDE KOffice Office Suite - Kpresenter
- encoding: base64
- extensions:
- - kpr
- - kpt
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kpresenter=http://www.iana.org/assignments/media-types/application/vnd.kde.kpresenter}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kpresenter
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kspread
- friendly:
- en: KDE KOffice Office Suite - Kspread
- encoding: base64
- extensions:
- - ksp
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kspread=http://www.iana.org/assignments/media-types/application/vnd.kde.kspread}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kspread
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kde.kword
- friendly:
- en: KDE KOffice Office Suite - Kword
- encoding: base64
- extensions:
- - kwd
- - kwt
- references:
- - IANA
- - "[David_Faure]"
- - "{application/vnd.kde.kword=http://www.iana.org/assignments/media-types/application/vnd.kde.kword}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Faure
- template:
- - application/vnd.kde.kword
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kenameaapp
- friendly:
- en: Kenamea App
- encoding: base64
- extensions:
- - htke
- references:
- - IANA
- - "[Dirk_DiGiorgio-Haag]"
- - "{application/vnd.kenameaapp=http://www.iana.org/assignments/media-types/application/vnd.kenameaapp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dirk_DiGiorgio-Haag
- template:
- - application/vnd.kenameaapp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kidspiration
- friendly:
- en: Kidspiration
- encoding: base64
- extensions:
- - kia
- references:
- - IANA
- - "[Jack_Bennett]"
- - "{application/vnd.kidspiration=http://www.iana.org/assignments/media-types/application/vnd.kidspiration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jack_Bennett
- template:
- - application/vnd.kidspiration
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Kinar
- friendly:
- en: Kinar Applications
- encoding: base64
- extensions:
- - kne
- - knp
- - sdf
- references:
- - IANA
- - "[Hemant_Thakkar]"
- - "{application/vnd.Kinar=http://www.iana.org/assignments/media-types/application/vnd.Kinar}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hemant_Thakkar
- template:
- - application/vnd.Kinar
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.koan
- friendly:
- en: SSEYO Koan Play File
- encoding: base64
- extensions:
- - skd
- - skm
- - skp
- - skt
- references:
- - IANA
- - "[Pete_Cole]"
- - "{application/vnd.koan=http://www.iana.org/assignments/media-types/application/vnd.koan}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Pete_Cole
- template:
- - application/vnd.koan
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.kodak-descriptor
- friendly:
- en: Kodak Storyshare
- encoding: base64
- extensions:
- - sse
- references:
- - IANA
- - "[Michael_J._Donahue]"
- - "{application/vnd.kodak-descriptor=http://www.iana.org/assignments/media-types/application/vnd.kodak-descriptor}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_J._Donahue
- template:
- - application/vnd.kodak-descriptor
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.las.las+xml
- friendly:
- en: Laser App Enterprise
- encoding: base64
- extensions:
- - lasxml
- references:
- - IANA
- - "[Rob_Bailey]"
- - "{application/vnd.las.las+xml=http://www.iana.org/assignments/media-types/application/vnd.las.las+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Rob_Bailey
- template:
- - application/vnd.las.las+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.liberty-request+xml
- encoding: base64
- references:
- - IANA
- - "[Brett_McDowell]"
- - "{application/vnd.liberty-request+xml=http://www.iana.org/assignments/media-types/application/vnd.liberty-request+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brett_McDowell
- template:
- - application/vnd.liberty-request+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.llamagraphics.life-balance.desktop
- friendly:
- en: Life Balance - Desktop Edition
- encoding: base64
- extensions:
- - lbd
- references:
- - IANA
- - "[Catherine_E._White]"
- - "{application/vnd.llamagraphics.life-balance.desktop=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.desktop}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Catherine_E._White
- template:
- - application/vnd.llamagraphics.life-balance.desktop
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.llamagraphics.life-balance.exchange+xml
- friendly:
- en: Life Balance - Exchange Format
- encoding: base64
- extensions:
- - lbe
- references:
- - IANA
- - "[Catherine_E._White]"
- - "{application/vnd.llamagraphics.life-balance.exchange+xml=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.exchange+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Catherine_E._White
- template:
- - application/vnd.llamagraphics.life-balance.exchange+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-1-2-3
- friendly:
- en: Lotus 1-2-3
- encoding: base64
- extensions:
- - wks
- - '123'
- references:
- - IANA
- - "[Paul_Wattenberger]"
- - "{application/vnd.lotus-1-2-3=http://www.iana.org/assignments/media-types/application/vnd.lotus-1-2-3}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Wattenberger
- template:
- - application/vnd.lotus-1-2-3
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-approach
- friendly:
- en: Lotus Approach
- encoding: base64
- extensions:
- - apr
- references:
- - IANA
- - "[Paul_Wattenberger]"
- - "{application/vnd.lotus-approach=http://www.iana.org/assignments/media-types/application/vnd.lotus-approach}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Wattenberger
- template:
- - application/vnd.lotus-approach
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-freelance
- friendly:
- en: Lotus Freelance
- encoding: base64
- extensions:
- - pre
- references:
- - IANA
- - "[Paul_Wattenberger]"
- - "{application/vnd.lotus-freelance=http://www.iana.org/assignments/media-types/application/vnd.lotus-freelance}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Wattenberger
- template:
- - application/vnd.lotus-freelance
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-notes
- friendly:
- en: Lotus Notes
- encoding: base64
- extensions:
- - nsf
- references:
- - IANA
- - "[Michael_Laramie]"
- - "{application/vnd.lotus-notes=http://www.iana.org/assignments/media-types/application/vnd.lotus-notes}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Laramie
- template:
- - application/vnd.lotus-notes
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-organizer
- friendly:
- en: Lotus Organizer
- encoding: base64
- extensions:
- - org
- references:
- - IANA
- - "[Paul_Wattenberger]"
- - "{application/vnd.lotus-organizer=http://www.iana.org/assignments/media-types/application/vnd.lotus-organizer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Wattenberger
- template:
- - application/vnd.lotus-organizer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-screencam
- friendly:
- en: Lotus Screencam
- encoding: base64
- extensions:
- - scm
- references:
- - IANA
- - "[Paul_Wattenberger]"
- - "{application/vnd.lotus-screencam=http://www.iana.org/assignments/media-types/application/vnd.lotus-screencam}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Wattenberger
- template:
- - application/vnd.lotus-screencam
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.lotus-wordpro
- friendly:
- en: Lotus Wordpro
- encoding: base64
- extensions:
- - lwp
- references:
- - IANA
- - "[Paul_Wattenberger]"
- - "{application/vnd.lotus-wordpro=http://www.iana.org/assignments/media-types/application/vnd.lotus-wordpro}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Wattenberger
- template:
- - application/vnd.lotus-wordpro
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.macports.portpkg
- friendly:
- en: MacPorts Port System
- encoding: base64
- extensions:
- - portpkg
- references:
- - IANA
- - "[James_Berry]"
- - "{application/vnd.macports.portpkg=http://www.iana.org/assignments/media-types/application/vnd.macports.portpkg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - James_Berry
- template:
- - application/vnd.macports.portpkg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.marlin.drm.actiontoken+xml
- encoding: base64
- references:
- - IANA
- - "[Gary_Ellison]"
- - "{application/vnd.marlin.drm.actiontoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.actiontoken+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Ellison
- template:
- - application/vnd.marlin.drm.actiontoken+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.marlin.drm.conftoken+xml
- encoding: base64
- references:
- - IANA
- - "[Gary_Ellison]"
- - "{application/vnd.marlin.drm.conftoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.conftoken+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Ellison
- template:
- - application/vnd.marlin.drm.conftoken+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.marlin.drm.license+xml
- encoding: base64
- references:
- - IANA
- - "[Gary_Ellison]"
- - "{application/vnd.marlin.drm.license+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.license+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Ellison
- template:
- - application/vnd.marlin.drm.license+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.marlin.drm.mdcf
- encoding: base64
- references:
- - IANA
- - "[Gary_Ellison]"
- - "{application/vnd.marlin.drm.mdcf=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.mdcf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Ellison
- template:
- - application/vnd.marlin.drm.mdcf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mason+json
- encoding: base64
- references:
- - IANA
- - "[Jorn_Wildt]"
- - "{application/vnd.mason+json=http://www.iana.org/assignments/media-types/application/vnd.mason+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jorn_Wildt
- template:
- - application/vnd.mason+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.maxmind.maxmind-db
- encoding: base64
- references:
- - IANA
- - "[William_Stevenson]"
- - "{application/vnd.maxmind.maxmind-db=http://www.iana.org/assignments/media-types/application/vnd.maxmind.maxmind-db}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - William_Stevenson
- template:
- - application/vnd.maxmind.maxmind-db
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mcd
- friendly:
- en: Micro CADAM Helix D&D
- encoding: base64
- extensions:
- - mcd
- references:
- - IANA
- - "[Tadashi_Gotoh]"
- - "{application/vnd.mcd=http://www.iana.org/assignments/media-types/application/vnd.mcd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tadashi_Gotoh
- template:
- - application/vnd.mcd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.medcalcdata
- friendly:
- en: MedCalc
- encoding: base64
- extensions:
- - mc1
- references:
- - IANA
- - "[Frank_Schoonjans]"
- - "{application/vnd.medcalcdata=http://www.iana.org/assignments/media-types/application/vnd.medcalcdata}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frank_Schoonjans
- template:
- - application/vnd.medcalcdata
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mediastation.cdkey
- friendly:
- en: MediaRemote
- encoding: base64
- extensions:
- - cdkey
- references:
- - IANA
- - "[Henry_Flurry]"
- - "{application/vnd.mediastation.cdkey=http://www.iana.org/assignments/media-types/application/vnd.mediastation.cdkey}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henry_Flurry
- template:
- - application/vnd.mediastation.cdkey
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.meridian-slingshot
- encoding: base64
- references:
- - IANA
- - "[Eric_Wedel]"
- - "{application/vnd.meridian-slingshot=http://www.iana.org/assignments/media-types/application/vnd.meridian-slingshot}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Wedel
- template:
- - application/vnd.meridian-slingshot
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.MFER
- friendly:
- en: Medical Waveform Encoding Format
- encoding: base64
- extensions:
- - mwf
- references:
- - IANA
- - "[Masaaki_Hirai]"
- - "{application/vnd.MFER=http://www.iana.org/assignments/media-types/application/vnd.MFER}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masaaki_Hirai
- template:
- - application/vnd.MFER
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mfmp
- friendly:
- en: Melody Format for Mobile Platform
- encoding: base64
- extensions:
- - mfm
- references:
- - IANA
- - "[Yukari_Ikeda]"
- - "{application/vnd.mfmp=http://www.iana.org/assignments/media-types/application/vnd.mfmp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yukari_Ikeda
- template:
- - application/vnd.mfmp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.micro+json
- encoding: base64
- references:
- - IANA
- - "[Dali_Zheng]"
- - "{application/vnd.micro+json=http://www.iana.org/assignments/media-types/application/vnd.micro+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dali_Zheng
- template:
- - application/vnd.micro+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.micrografx.flo
- friendly:
- en: Micrografx
- encoding: base64
- extensions:
- - flo
- references:
- - IANA
- - "[Joe_Prevo]"
- - "{application/vnd.micrografx.flo=http://www.iana.org/assignments/media-types/application/vnd.micrografx.flo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joe_Prevo
- template:
- - application/vnd.micrografx.flo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.micrografx.igx
- friendly:
- en: Micrografx iGrafx Professional
- encoding: base64
- extensions:
- - igx
- references:
- - IANA
- - "[Joe_Prevo]"
- - "{application/vnd.micrografx-igx=http://www.iana.org/assignments/media-types/application/vnd.micrografx-igx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joe_Prevo
- template:
- - application/vnd.micrografx-igx
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.microsoft.portable-executable
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.microsoft.portable-executable=http://www.iana.org/assignments/media-types/application/vnd.microsoft.portable-executable}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.microsoft.portable-executable
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.miele+json
- encoding: base64
- references:
- - IANA
- - "[Nils_Langhammer]"
- - "{application/vnd.miele+json=http://www.iana.org/assignments/media-types/application/vnd.miele+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nils_Langhammer
- template:
- - application/vnd.miele+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mif
- friendly:
- en: FrameMaker Interchange Format
- encoding: base64
- extensions:
- - mif
- references:
- - IANA
- - "[Mike_Wexler]"
- - "{application/vnd-mif=http://www.iana.org/assignments/media-types/application/vnd-mif}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Wexler
- template:
- - application/vnd-mif
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.minisoft-hp3000-save
- encoding: base64
- references:
- - IANA
- - "[Chris_Bartram]"
- - "{application/vnd.minisoft-hp3000-save=http://www.iana.org/assignments/media-types/application/vnd.minisoft-hp3000-save}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Bartram
- template:
- - application/vnd.minisoft-hp3000-save
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mitsubishi.misty-guard.trustweb
- encoding: base64
- references:
- - IANA
- - "[Tanaka]"
- - "{application/vnd.mitsubishi.misty-guard.trustweb=http://www.iana.org/assignments/media-types/application/vnd.mitsubishi.misty-guard.trustweb}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tanaka
- template:
- - application/vnd.mitsubishi.misty-guard.trustweb
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.DAF
- friendly:
- en: Mobius Management Systems - UniversalArchive
- encoding: base64
- extensions:
- - daf
- references:
- - IANA
- - "[Allen_K._Kabayama]"
- - "{application/vnd.Mobius.DAF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DAF}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Allen_K._Kabayama
- template:
- - application/vnd.Mobius.DAF
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.DIS
- friendly:
- en: Mobius Management Systems - Distribution Database
- encoding: base64
- extensions:
- - dis
- references:
- - IANA
- - "[Allen_K._Kabayama]"
- - "{application/vnd.Mobius.DIS=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DIS}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Allen_K._Kabayama
- template:
- - application/vnd.Mobius.DIS
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.MBK
- friendly:
- en: Mobius Management Systems - Basket file
- encoding: base64
- extensions:
- - mbk
- references:
- - IANA
- - "[Alex_Devasia]"
- - "{application/vnd.Mobius.MBK=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MBK}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alex_Devasia
- template:
- - application/vnd.Mobius.MBK
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.MQY
- friendly:
- en: Mobius Management Systems - Query File
- encoding: base64
- extensions:
- - mqy
- references:
- - IANA
- - "[Alex_Devasia]"
- - "{application/vnd.Mobius.MQY=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MQY}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alex_Devasia
- template:
- - application/vnd.Mobius.MQY
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.MSL
- friendly:
- en: Mobius Management Systems - Script Language
- encoding: base64
- extensions:
- - msl
- references:
- - IANA
- - "[Allen_K._Kabayama]"
- - "{application/vnd.Mobius.MSL=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MSL}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Allen_K._Kabayama
- template:
- - application/vnd.Mobius.MSL
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.PLC
- friendly:
- en: Mobius Management Systems - Policy Definition Language File
- encoding: base64
- extensions:
- - plc
- references:
- - IANA
- - "[Allen_K._Kabayama]"
- - "{application/vnd.Mobius.PLC=http://www.iana.org/assignments/media-types/application/vnd.Mobius.PLC}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Allen_K._Kabayama
- template:
- - application/vnd.Mobius.PLC
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Mobius.TXF
- friendly:
- en: Mobius Management Systems - Topic Index File
- encoding: base64
- extensions:
- - txf
- references:
- - IANA
- - "[Allen_K._Kabayama]"
- - "{application/vnd.Mobius.TXF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.TXF}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Allen_K._Kabayama
- template:
- - application/vnd.Mobius.TXF
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mophun.application
- friendly:
- en: Mophun VM
- encoding: base64
- extensions:
- - mpn
- references:
- - IANA
- - "[Bjorn_Wennerstrom]"
- - "{application/vnd.mophun.application=http://www.iana.org/assignments/media-types/application/vnd.mophun.application}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bjorn_Wennerstrom
- template:
- - application/vnd.mophun.application
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mophun.certificate
- friendly:
- en: Mophun Certificate
- encoding: base64
- extensions:
- - mpc
- references:
- - IANA
- - "[Bjorn_Wennerstrom]"
- - "{application/vnd.mophun.certificate=http://www.iana.org/assignments/media-types/application/vnd.mophun.certificate}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bjorn_Wennerstrom
- template:
- - application/vnd.mophun.certificate
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite.adsi
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite.adsi=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.adsi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite.adsi
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite.fis
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite.fis=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.fis}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite.fis
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite.gotap
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite.gotap=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.gotap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite.gotap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite.kmr
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite.kmr=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.kmr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite.kmr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite.ttc
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite.ttc=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.ttc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite.ttc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.flexsuite.wem
- encoding: base64
- references:
- - IANA
- - "[Mark_Patton]"
- - "{application/vnd.motorola.flexsuite.wem=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.wem}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - application/vnd.motorola.flexsuite.wem
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.motorola.iprm
- encoding: base64
- references:
- - IANA
- - "[Rafie_Shamsaasef]"
- - "{application/vnd.motorola.iprm=http://www.iana.org/assignments/media-types/application/vnd.motorola.iprm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Rafie_Shamsaasef
- template:
- - application/vnd.motorola.iprm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mozilla.xul+xml
- friendly:
- en: XUL - XML User Interface Language
- encoding: base64
- extensions:
- - xul
- references:
- - IANA
- - "[Braden_N_McDaniel]"
- - "{application/vnd.mozilla.xul+xml=http://www.iana.org/assignments/media-types/application/vnd.mozilla.xul+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Braden_N_McDaniel
- template:
- - application/vnd.mozilla.xul+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-3mfdocument
- encoding: base64
- references:
- - IANA
- - "[Shawn_Maloney]"
- - "{application/vnd.ms-3mfdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-3mfdocument}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shawn_Maloney
- template:
- - application/vnd.ms-3mfdocument
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-artgalry
- friendly:
- en: Microsoft Artgalry
- encoding: base64
- extensions:
- - cil
- references:
- - IANA
- - "[Dean_Slawson]"
- - "{application/vnd.ms-artgalry=http://www.iana.org/assignments/media-types/application/vnd.ms-artgalry}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dean_Slawson
- template:
- - application/vnd.ms-artgalry
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-asf
- encoding: base64
- extensions:
- - asf
- references:
- - IANA
- - "[Eric_Fleischman]"
- - "{application/vnd.ms-asf=http://www.iana.org/assignments/media-types/application/vnd.ms-asf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Fleischman
- template:
- - application/vnd.ms-asf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-cab-compressed
- friendly:
- en: Microsoft Cabinet File
- encoding: base64
- extensions:
- - cab
- references:
- - IANA
- - "[Kim_Scarborough]"
- - "{application/vnd.ms-cab-compressed=http://www.iana.org/assignments/media-types/application/vnd.ms-cab-compressed}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kim_Scarborough
- template:
- - application/vnd.ms-cab-compressed
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-excel
- friendly:
- en: Microsoft Excel
- encoding: base64
- extensions:
- - xls
- - xlt
- - xla
- - xlc
- - xlm
- - xlw
- references:
- - IANA
- - "[Sukvinder_S._Gill]"
- - "{application/vnd.ms-excel=http://www.iana.org/assignments/media-types/application/vnd.ms-excel}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sukvinder_S._Gill
- template:
- - application/vnd.ms-excel
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-excel.addin.macroEnabled.12
- friendly:
- en: Microsoft Excel - Add-In File
- encoding: base64
- extensions:
- - xlam
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-excel.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.addin.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-excel.addin.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-excel.sheet.binary.macroEnabled.12
- friendly:
- en: Microsoft Excel - Binary Workbook
- encoding: base64
- extensions:
- - xlsb
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-excel.sheet.binary.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.binary.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-excel.sheet.binary.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-excel.sheet.macroEnabled.12
- friendly:
- en: Microsoft Excel - Macro-Enabled Workbook
- encoding: base64
- extensions:
- - xlsm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-excel.sheet.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-excel.sheet.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-excel.template.macroEnabled.12
- friendly:
- en: Microsoft Excel - Macro-Enabled Template File
- encoding: base64
- extensions:
- - xltm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-excel.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.template.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-excel.template.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-fontobject
- friendly:
- en: Microsoft Embedded OpenType
- encoding: base64
- extensions:
- - eot
- references:
- - IANA
- - "[Kim_Scarborough]"
- - "{application/vnd.ms-fontobject=http://www.iana.org/assignments/media-types/application/vnd.ms-fontobject}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kim_Scarborough
- template:
- - application/vnd.ms-fontobject
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-htmlhelp
- friendly:
- en: Microsoft Html Help File
- encoding: base64
- extensions:
- - chm
- references:
- - IANA
- - "[Anatoly_Techtonik]"
- - "{application/vnd.ms-htmlhelp=http://www.iana.org/assignments/media-types/application/vnd.ms-htmlhelp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Anatoly_Techtonik
- template:
- - application/vnd.ms-htmlhelp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-ims
- friendly:
- en: Microsoft Class Server
- encoding: base64
- extensions:
- - ims
- references:
- - IANA
- - "[Eric_Ledoux]"
- - "{application/vnd.ms-ims=http://www.iana.org/assignments/media-types/application/vnd.ms-ims}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Ledoux
- template:
- - application/vnd.ms-ims
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-lrm
- friendly:
- en: Microsoft Learning Resource Module
- encoding: base64
- extensions:
- - lrm
- references:
- - IANA
- - "[Eric_Ledoux]"
- - "{application/vnd.ms-lrm=http://www.iana.org/assignments/media-types/application/vnd.ms-lrm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Ledoux
- template:
- - application/vnd.ms-lrm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-office.activeX+xml
- encoding: base64
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-office.activeX+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-office.activeX+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-office.activeX+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-officetheme
- friendly:
- en: Microsoft Office System Release Theme
- encoding: base64
- extensions:
- - thmx
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-officetheme=http://www.iana.org/assignments/media-types/application/vnd.ms-officetheme}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-officetheme
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-outlook
- encoding: base64
- extensions:
- - msg
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-pki.seccat
- friendly:
- en: Microsoft Trust UI Provider - Security Catalog
- encoding: base64
- extensions:
- - cat
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-pki.stl
- friendly:
- en: Microsoft Trust UI Provider - Certificate Trust Link
- encoding: base64
- extensions:
- - stl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-playready.initiator+xml
- encoding: base64
- references:
- - IANA
- - "[Daniel_Schneider]"
- - "{application/vnd.ms-playready.initiator+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-playready.initiator+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Daniel_Schneider
- template:
- - application/vnd.ms-playready.initiator+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-powerpoint
- friendly:
- en: Microsoft PowerPoint
- encoding: base64
- extensions:
- - ppt
- - pps
- - pot
- references:
- - IANA
- - "[Sukvinder_S._Gill]"
- - "{application/vnd.ms-powerpoint=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sukvinder_S._Gill
- template:
- - application/vnd.ms-powerpoint
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-powerpoint.addin.macroEnabled.12
- friendly:
- en: Microsoft PowerPoint - Add-in file
- encoding: base64
- extensions:
- - ppam
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-powerpoint.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.addin.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-powerpoint.addin.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-powerpoint.presentation.macroEnabled.12
- friendly:
- en: Microsoft PowerPoint - Macro-Enabled Presentation File
- encoding: base64
- extensions:
- - pptm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-powerpoint.presentation.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.presentation.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-powerpoint.presentation.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-powerpoint.slide.macroEnabled.12
- friendly:
- en: Microsoft PowerPoint - Macro-Enabled Open XML Slide
- encoding: base64
- extensions:
- - sldm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-powerpoint.slide.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slide.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-powerpoint.slide.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-powerpoint.slideshow.macroEnabled.12
- friendly:
- en: Microsoft PowerPoint - Macro-Enabled Slide Show File
- encoding: base64
- extensions:
- - ppsm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-powerpoint.slideshow.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slideshow.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-powerpoint.slideshow.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-powerpoint.template.macroEnabled.12
- friendly:
- en: Micosoft PowerPoint - Macro-Enabled Template File
- encoding: base64
- extensions:
- - potm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-powerpoint.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.template.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-powerpoint.template.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-project
- friendly:
- en: Microsoft Project
- encoding: base64
- extensions:
- - mpp
- - mpt
- references:
- - IANA
- - "[Sukvinder_S._Gill]"
- - "{application/vnd.ms-project=http://www.iana.org/assignments/media-types/application/vnd.ms-project}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sukvinder_S._Gill
- template:
- - application/vnd.ms-project
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-tnef
- encoding: base64
- references:
- - IANA
- - "[Sukvinder_S._Gill]"
- - "{application/vnd.ms-tnef=http://www.iana.org/assignments/media-types/application/vnd.ms-tnef}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sukvinder_S._Gill
- template:
- - application/vnd.ms-tnef
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-windows.printerpairing
- encoding: base64
- references:
- - IANA
- - "[Justin_Hutchings]"
- - "{application/vnd.ms-windows.printerpairing=http://www.iana.org/assignments/media-types/application/vnd.ms-windows.printerpairing}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Justin_Hutchings
- template:
- - application/vnd.ms-windows.printerpairing
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-wmdrm.lic-chlg-req
- encoding: base64
- references:
- - IANA
- - "[Kevin_Lau]"
- - "{application/vnd.ms-wmdrm.lic-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-chlg-req}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Lau
- template:
- - application/vnd.ms-wmdrm.lic-chlg-req
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-wmdrm.lic-resp
- encoding: base64
- references:
- - IANA
- - "[Kevin_Lau]"
- - "{application/vnd.ms-wmdrm.lic-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-resp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Lau
- template:
- - application/vnd.ms-wmdrm.lic-resp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-wmdrm.meter-chlg-req
- encoding: base64
- references:
- - IANA
- - "[Kevin_Lau]"
- - "{application/vnd.ms-wmdrm.meter-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-chlg-req}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Lau
- template:
- - application/vnd.ms-wmdrm.meter-chlg-req
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-wmdrm.meter-resp
- encoding: base64
- references:
- - IANA
- - "[Kevin_Lau]"
- - "{application/vnd.ms-wmdrm.meter-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-resp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Lau
- template:
- - application/vnd.ms-wmdrm.meter-resp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-word.document.macroEnabled.12
- friendly:
- en: Micosoft Word - Macro-Enabled Document
- encoding: base64
- extensions:
- - docm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-word.document.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.document.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-word.document.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-word.template.macroEnabled.12
- friendly:
- en: Micosoft Word - Macro-Enabled Template
- encoding: base64
- extensions:
- - dotm
- references:
- - IANA
- - "[Chris_Rae]"
- - "{application/vnd.ms-word.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.template.macroEnabled.12}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Rae
- template:
- - application/vnd.ms-word.template.macroEnabled.12
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-works
- friendly:
- en: Microsoft Works
- encoding: base64
- extensions:
- - wcm
- - wdb
- - wks
- - wps
- references:
- - IANA
- - "[Sukvinder_S._Gill]"
- - "{application/vnd.ms-works=http://www.iana.org/assignments/media-types/application/vnd.ms-works}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sukvinder_S._Gill
- template:
- - application/vnd.ms-works
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-wpl
- friendly:
- en: Microsoft Windows Media Player Playlist
- encoding: base64
- extensions:
- - wpl
- references:
- - IANA
- - "[Dan_Plastina]"
- - "{application/vnd.ms-wpl=http://www.iana.org/assignments/media-types/application/vnd.ms-wpl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dan_Plastina
- template:
- - application/vnd.ms-wpl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ms-xpsdocument
- friendly:
- en: Microsoft XML Paper Specification
- encoding: 8bit
- extensions:
- - xps
- references:
- - IANA
- - "[Jesse_McGatha]"
- - "{application/vnd.ms-xpsdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-xpsdocument}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jesse_McGatha
- template:
- - application/vnd.ms-xpsdocument
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.msa-disk-image
- encoding: base64
- references:
- - IANA
- - "[Thomas_Huth]"
- - "{application/vnd.msa-disk-image=http://www.iana.org/assignments/media-types/application/vnd.msa-disk-image}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Huth
- template:
- - application/vnd.msa-disk-image
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mseq
- friendly:
- en: 3GPP MSEQ File
- encoding: base64
- extensions:
- - mseq
- references:
- - IANA
- - "[Gwenael_Le_Bodic]"
- - "{application/vnd.mseq=http://www.iana.org/assignments/media-types/application/vnd.mseq}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gwenael_Le_Bodic
- template:
- - application/vnd.mseq
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.msign
- encoding: base64
- references:
- - IANA
- - "[Malte_Borcherding]"
- - "{application/vnd.msign=http://www.iana.org/assignments/media-types/application/vnd.msign}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Malte_Borcherding
- template:
- - application/vnd.msign
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.multiad.creator
- encoding: base64
- references:
- - IANA
- - "[Steve_Mills]"
- - "{application/vnd.multiad.creator=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Mills
- template:
- - application/vnd.multiad.creator
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.multiad.creator.cif
- encoding: base64
- references:
- - IANA
- - "[Steve_Mills]"
- - "{application/vnd.multiad.creator.cif=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator.cif}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Mills
- template:
- - application/vnd.multiad.creator.cif
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.music-niff
- encoding: base64
- references:
- - IANA
- - "[Tim_Butler]"
- - "{application/vnd.music-niff=http://www.iana.org/assignments/media-types/application/vnd.music-niff}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tim_Butler
- template:
- - application/vnd.music-niff
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.musician
- friendly:
- en: MUsical Score Interpreted Code Invented for the ASCII designation of Notation
- encoding: base64
- extensions:
- - mus
- references:
- - IANA
- - "[Greg_Adams]"
- - "{application/vnd.musician=http://www.iana.org/assignments/media-types/application/vnd.musician}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Adams
- template:
- - application/vnd.musician
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.muvee.style
- friendly:
- en: Muvee Automatic Video Editing
- encoding: base64
- extensions:
- - msty
- references:
- - IANA
- - "[Chandrashekhara_Anantharamu]"
- - "{application/vnd.muvee.style=http://www.iana.org/assignments/media-types/application/vnd.muvee.style}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chandrashekhara_Anantharamu
- template:
- - application/vnd.muvee.style
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.mynfc
- encoding: base64
- extensions:
- - taglet
- references:
- - IANA
- - "[Franck_Lefevre]"
- - "{application/vnd.mynfc=http://www.iana.org/assignments/media-types/application/vnd.mynfc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Franck_Lefevre
- template:
- - application/vnd.mynfc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ncd.control
- encoding: base64
- references:
- - IANA
- - "[Lauri_Tarkkala]"
- - "{application/vnd.ncd.control=http://www.iana.org/assignments/media-types/application/vnd.ncd.control}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lauri_Tarkkala
- template:
- - application/vnd.ncd.control
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ncd.reference
- encoding: base64
- references:
- - IANA
- - "[Lauri_Tarkkala]"
- - "{application/vnd.ncd.reference=http://www.iana.org/assignments/media-types/application/vnd.ncd.reference}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lauri_Tarkkala
- template:
- - application/vnd.ncd.reference
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nervana
- encoding: base64
- extensions:
- - ent
- - entity
- - req
- - request
- - bkm
- - kcm
- references:
- - IANA
- - "[Steve_Judkins]"
- - "{application/vnd.nervana=http://www.iana.org/assignments/media-types/application/vnd.nervana}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Judkins
- template:
- - application/vnd.nervana
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.netfpx
- encoding: base64
- references:
- - IANA
- - "[Andy_Mutz]"
- - "{application/vnd.netfpx=http://www.iana.org/assignments/media-types/application/vnd.netfpx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Andy_Mutz
- template:
- - application/vnd.netfpx
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.neurolanguage.nlu
- friendly:
- en: neuroLanguage
- encoding: base64
- extensions:
- - nlu
- references:
- - IANA
- - "[Dan_DuFeu]"
- - "{application/vnd.neurolanguage.nlu=http://www.iana.org/assignments/media-types/application/vnd.neurolanguage.nlu}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dan_DuFeu
- template:
- - application/vnd.neurolanguage.nlu
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nintendo.nitro.rom
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.nintendo.nitro.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.nitro.rom}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.nintendo.nitro.rom
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nintendo.snes.rom
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.nintendo.snes.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.snes.rom}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.nintendo.snes.rom
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nitf
- encoding: base64
- extensions:
- - nitf
- - ntf
- references:
- - IANA
- - "[Steve_Rogan]"
- - "{application/vnd.nitf=http://www.iana.org/assignments/media-types/application/vnd.nitf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Rogan
- template:
- - application/vnd.nitf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.noblenet-directory
- friendly:
- en: NobleNet Directory
- encoding: base64
- extensions:
- - nnd
- references:
- - IANA
- - "[Monty_Solomon]"
- - "{application/vnd.noblenet-directory=http://www.iana.org/assignments/media-types/application/vnd.noblenet-directory}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Monty_Solomon
- template:
- - application/vnd.noblenet-directory
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.noblenet-sealer
- friendly:
- en: NobleNet Sealer
- encoding: base64
- extensions:
- - nns
- references:
- - IANA
- - "[Monty_Solomon]"
- - "{application/vnd.noblenet-sealer=http://www.iana.org/assignments/media-types/application/vnd.noblenet-sealer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Monty_Solomon
- template:
- - application/vnd.noblenet-sealer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.noblenet-web
- friendly:
- en: NobleNet Web
- encoding: base64
- extensions:
- - nnw
- references:
- - IANA
- - "[Monty_Solomon]"
- - "{application/vnd.noblenet-web=http://www.iana.org/assignments/media-types/application/vnd.noblenet-web}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Monty_Solomon
- template:
- - application/vnd.noblenet-web
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.catalogs
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.catalogs=http://www.iana.org/assignments/media-types/application/vnd.nokia.catalogs}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.catalogs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.conml+wbxml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.conml+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.conml+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.conml+xml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.conml+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.conml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.iptv.config+xml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.iptv.config+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.iptv.config+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.iptv.config+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.iSDS-radio-presets
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.iSDS-radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.iSDS-radio-presets}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.iSDS-radio-presets
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.landmark+wbxml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.landmark+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.landmark+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.landmark+xml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.landmark+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.landmark+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.landmarkcollection+xml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.landmarkcollection+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmarkcollection+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.landmarkcollection+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.n-gage.ac+xml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.n-gage.ac+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.ac+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.n-gage.ac+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.n-gage.data
- friendly:
- en: N-Gage Game Data
- encoding: base64
- extensions:
- - ngdat
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.n-gage.data=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.data}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.n-gage.data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.n-gage.symbian.install
- friendly:
- en: N-Gage Game Installer
- encoding: base64
- extensions:
- - n-gage
- obsolete: true
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.n-gage.symbian.install=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.symbian.install}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.n-gage.symbian.install
- notes:
- - "- OBSOLETE; no replacement given"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.ncd
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.ncd=http://www.iana.org/assignments/media-types/application/vnd.nokia.ncd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.ncd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.ncd+xml
- encoding: base64
- obsolete: true
- use-instead: application/vnd.nokia.ncd
- references:
- - IANA
- - "[Nokia]"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.pcd+wbxml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.pcd+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.pcd+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.pcd+xml
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.pcd+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.pcd+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.radio-preset
- friendly:
- en: Nokia Radio Application - Preset
- encoding: base64
- extensions:
- - rpst
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.radio-preset=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-preset}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.radio-preset
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.nokia.radio-presets
- friendly:
- en: Nokia Radio Application - Preset
- encoding: base64
- extensions:
- - rpss
- references:
- - IANA
- - "[Nokia]"
- - "{application/vnd.nokia.radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-presets}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - application/vnd.nokia.radio-presets
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.novadigm.EDM
- friendly:
- en: Novadigm's RADIA and EDM products
- encoding: base64
- extensions:
- - edm
- references:
- - IANA
- - "[Janine_Swenson]"
- - "{application/vnd.novadigm.EDM=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDM}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Janine_Swenson
- template:
- - application/vnd.novadigm.EDM
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.novadigm.EDX
- friendly:
- en: Novadigm's RADIA and EDM products
- encoding: base64
- extensions:
- - edx
- references:
- - IANA
- - "[Janine_Swenson]"
- - "{application/vnd.novadigm.EDX=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDX}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Janine_Swenson
- template:
- - application/vnd.novadigm.EDX
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.novadigm.EXT
- friendly:
- en: Novadigm's RADIA and EDM products
- encoding: base64
- extensions:
- - ext
- references:
- - IANA
- - "[Janine_Swenson]"
- - "{application/vnd.novadigm.EXT=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EXT}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Janine_Swenson
- template:
- - application/vnd.novadigm.EXT
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ntt-local.content-share
- encoding: base64
- references:
- - IANA
- - "[Akinori_Taya]"
- - "{application/vnd.ntt-local.content-share=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.content-share}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Akinori_Taya
- template:
- - application/vnd.ntt-local.content-share
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ntt-local.file-transfer
- encoding: base64
- references:
- - IANA
- - "[NTT-local]"
- - "{application/vnd.ntt-local.file-transfer=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.file-transfer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - NTT-local
- template:
- - application/vnd.ntt-local.file-transfer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ntt-local.ogw_remote-access
- encoding: base64
- references:
- - IANA
- - "[NTT-local]"
- - "{application/vnd.ntt-local.ogw_remote-access=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.ogw_remote-access}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - NTT-local
- template:
- - application/vnd.ntt-local.ogw_remote-access
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ntt-local.sip-ta_remote
- encoding: base64
- references:
- - IANA
- - "[NTT-local]"
- - "{application/vnd.ntt-local.sip-ta_remote=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_remote}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - NTT-local
- template:
- - application/vnd.ntt-local.sip-ta_remote
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ntt-local.sip-ta_tcp_stream
- encoding: base64
- references:
- - IANA
- - "[NTT-local]"
- - "{application/vnd.ntt-local.sip-ta_tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_tcp_stream}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - NTT-local
- template:
- - application/vnd.ntt-local.sip-ta_tcp_stream
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.chart
- friendly:
- en: OpenDocument Chart
- encoding: base64
- extensions:
- - odc
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.chart=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.chart
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.chart-template
- friendly:
- en: OpenDocument Chart Template
- encoding: base64
- extensions:
- - odc
- - otc
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.chart-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.chart-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.database
- friendly:
- en: OpenDocument Database
- encoding: base64
- extensions:
- - odb
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.database=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.database}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.database
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.formula
- friendly:
- en: OpenDocument Formula
- encoding: base64
- extensions:
- - odf
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.formula=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.formula
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.formula-template
- friendly:
- en: OpenDocument Formula Template
- encoding: base64
- extensions:
- - odf
- - odft
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.formula-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.formula-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.graphics
- friendly:
- en: OpenDocument Graphics
- encoding: base64
- extensions:
- - odg
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.graphics=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.graphics
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.graphics-template
- friendly:
- en: OpenDocument Graphics Template
- encoding: base64
- extensions:
- - otg
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.graphics-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.graphics-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.image
- friendly:
- en: OpenDocument Image
- encoding: base64
- extensions:
- - odi
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.image=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.image
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.image-template
- friendly:
- en: OpenDocument Image Template
- encoding: base64
- extensions:
- - odi
- - oti
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.image-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.image-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.presentation
- friendly:
- en: OpenDocument Presentation
- encoding: base64
- extensions:
- - odp
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.presentation=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.presentation
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.presentation-template
- friendly:
- en: OpenDocument Presentation Template
- encoding: base64
- extensions:
- - otp
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.presentation-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.presentation-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.spreadsheet
- friendly:
- en: OpenDocument Spreadsheet
- encoding: base64
- extensions:
- - ods
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.spreadsheet=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.spreadsheet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.spreadsheet-template
- friendly:
- en: OpenDocument Spreadsheet Template
- encoding: base64
- extensions:
- - ots
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.spreadsheet-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.spreadsheet-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.text
- friendly:
- en: OpenDocument Text
- encoding: base64
- extensions:
- - odt
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.text=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.text
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.text-master
- friendly:
- en: OpenDocument Text Master
- encoding: base64
- extensions:
- - odm
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.text-master=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-master}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.text-master
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.text-template
- friendly:
- en: OpenDocument Text Template
- encoding: base64
- extensions:
- - ott
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.text-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.text-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oasis.opendocument.text-web
- friendly:
- en: Open Document Text Web
- encoding: base64
- extensions:
- - oth
- references:
- - IANA
- - "[Svante_Schubert]"
- - "[OASIS]"
- - "{application/vnd.oasis.opendocument.text-web=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-web}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OASIS
- - Svante_Schubert
- template:
- - application/vnd.oasis.opendocument.text-web
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.obn
- encoding: base64
- references:
- - IANA
- - "[Matthias_Hessling]"
- - "{application/vnd.obn=http://www.iana.org/assignments/media-types/application/vnd.obn}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Matthias_Hessling
- template:
- - application/vnd.obn
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oftn.l10n+json
- encoding: base64
- references:
- - IANA
- - "[Eli_Grey]"
- - "{application/vnd.oftn.l10n+json=http://www.iana.org/assignments/media-types/application/vnd.oftn.l10n+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eli_Grey
- template:
- - application/vnd.oftn.l10n+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.contentaccessdownload+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.contentaccessdownload+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessdownload+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.contentaccessdownload+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.contentaccessstreaming+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.contentaccessstreaming+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessstreaming+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.contentaccessstreaming+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.cspg-hexbinary
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.cspg-hexbinary=http://www.iana.org/assignments/media-types/application/vnd.oipf.cspg-hexbinary}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.cspg-hexbinary
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.dae.svg+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.dae.svg+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.svg+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.dae.svg+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.dae.xhtml+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.dae.xhtml+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.xhtml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.dae.xhtml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.mippvcontrolmessage+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.mippvcontrolmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.mippvcontrolmessage+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.mippvcontrolmessage+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.pae.gem
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.pae.gem=http://www.iana.org/assignments/media-types/application/vnd.oipf.pae.gem}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.pae.gem
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.spdiscovery+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.spdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdiscovery+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.spdiscovery+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.spdlist+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.spdlist+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdlist+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.spdlist+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.ueprofile+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.ueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.ueprofile+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.ueprofile+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oipf.userprofile+xml
- encoding: base64
- references:
- - IANA
- - "[Claire_DEsclercs]"
- - "{application/vnd.oipf.userprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.userprofile+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Claire_DEsclercs
- template:
- - application/vnd.oipf.userprofile+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.olpc-sugar
- friendly:
- en: Sugar Linux Application Bundle
- encoding: base64
- extensions:
- - xo
- references:
- - IANA
- - "[John_Palmieri]"
- - "{application/vnd.olpc-sugar=http://www.iana.org/assignments/media-types/application/vnd.olpc-sugar}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Palmieri
- template:
- - application/vnd.olpc-sugar
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma-scws-config
- encoding: base64
- references:
- - IANA
- - "[Ilan_Mahalal]"
- - "{application/vnd.oma-scws-config=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-config}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ilan_Mahalal
- template:
- - application/vnd.oma-scws-config
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma-scws-http-request
- encoding: base64
- references:
- - IANA
- - "[Ilan_Mahalal]"
- - "{application/vnd.oma-scws-http-request=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-request}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ilan_Mahalal
- template:
- - application/vnd.oma-scws-http-request
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma-scws-http-response
- encoding: base64
- references:
- - IANA
- - "[Ilan_Mahalal]"
- - "{application/vnd.oma-scws-http-response=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ilan_Mahalal
- template:
- - application/vnd.oma-scws-http-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.associated-procedure-parameter+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.associated-procedure-parameter+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.associated-procedure-parameter+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.associated-procedure-parameter+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.drm-trigger+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.drm-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.drm-trigger+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.drm-trigger+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.imd+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.imd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.imd+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.imd+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.ltkm
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.ltkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.ltkm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.ltkm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.notification+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.notification+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.notification+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.notification+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.provisioningtrigger
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.provisioningtrigger=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.provisioningtrigger}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.provisioningtrigger
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.sgboot
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.sgboot=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgboot}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.sgboot
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.sgdd+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.sgdd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdd+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.sgdd+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.sgdu
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.sgdu=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdu}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.sgdu
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.simple-symbol-container
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.simple-symbol-container=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.simple-symbol-container}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.simple-symbol-container
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.smartcard-trigger+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.smartcard-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.smartcard-trigger+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.smartcard-trigger+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.sprov+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.sprov+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sprov+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.sprov+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.bcast.stkm
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.bcast.stkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.stkm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.bcast.stkm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.cab-address-book+xml
- encoding: base64
- references:
- - IANA
- - "[Hao_Wang]"
- - "[OMA]"
- - "{application/vnd.oma.cab-address-book+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-address-book+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hao_Wang
- - OMA
- template:
- - application/vnd.oma.cab-address-book+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.cab-feature-handler+xml
- encoding: base64
- references:
- - IANA
- - "[Hao_Wang]"
- - "[OMA]"
- - "{application/vnd.oma.cab-feature-handler+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-feature-handler+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hao_Wang
- - OMA
- template:
- - application/vnd.oma.cab-feature-handler+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.cab-pcc+xml
- encoding: base64
- references:
- - IANA
- - "[Hao_Wang]"
- - "[OMA]"
- - "{application/vnd.oma.cab-pcc+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-pcc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hao_Wang
- - OMA
- template:
- - application/vnd.oma.cab-pcc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.cab-subs-invite+xml
- encoding: base64
- references:
- - IANA
- - "[Hao_Wang]"
- - "[OMA]"
- - "{application/vnd.oma.cab-subs-invite+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-subs-invite+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hao_Wang
- - OMA
- template:
- - application/vnd.oma.cab-subs-invite+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.cab-user-prefs+xml
- encoding: base64
- references:
- - IANA
- - "[Hao_Wang]"
- - "[OMA]"
- - "{application/vnd.oma.cab-user-prefs+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-user-prefs+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hao_Wang
- - OMA
- template:
- - application/vnd.oma.cab-user-prefs+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.dcd
- encoding: base64
- references:
- - IANA
- - "[Avi_Primo]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.dcd=http://www.iana.org/assignments/media-types/application/vnd.oma.dcd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Avi_Primo
- - OMNA-Open_Mobile_Naming_Authority
- template:
- - application/vnd.oma.dcd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.dcdc
- encoding: base64
- references:
- - IANA
- - "[Avi_Primo]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.dcdc=http://www.iana.org/assignments/media-types/application/vnd.oma.dcdc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Avi_Primo
- - OMNA-Open_Mobile_Naming_Authority
- template:
- - application/vnd.oma.dcdc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.dd2+xml
- friendly:
- en: OMA Download Agents
- encoding: base64
- extensions:
- - dd2
- references:
- - IANA
- - "[Jun_Sato]"
- - "[Open_Mobile_Alliance_BAC_DLDRM_Working_Group]"
- - "{application/vnd.oma.dd2+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.dd2+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jun_Sato
- - Open_Mobile_Alliance_BAC_DLDRM_Working_Group
- template:
- - application/vnd.oma.dd2+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.drm.risd+xml
- encoding: base64
- references:
- - IANA
- - "[Uwe_Rauschenbach]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.drm.risd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.drm.risd+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Uwe_Rauschenbach
- template:
- - application/vnd.oma.drm.risd+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.group-usage-list+xml
- encoding: base64
- references:
- - IANA
- - "[Sean_Kelley]"
- - "[OMA_Presence_and_Availability_PAG_Working_Group]"
- - "{application/vnd.oma.group-usage-list+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.group-usage-list+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Presence_and_Availability_PAG_Working_Group
- - Sean_Kelley
- template:
- - application/vnd.oma.group-usage-list+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.pal+xml
- encoding: base64
- references:
- - IANA
- - "[Brian_McColgan]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.pal+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.pal+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brian_McColgan
- - OMNA-Open_Mobile_Naming_Authority
- template:
- - application/vnd.oma.pal+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.poc.detailed-progress-report+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]"
- - "{application/vnd.oma.poc.detailed-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.detailed-progress-report+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Push_to_Talk_over_Cellular_POC_Working_Group
- template:
- - application/vnd.oma.poc.detailed-progress-report+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.poc.final-report+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]"
- - "{application/vnd.oma.poc.final-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.final-report+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Push_to_Talk_over_Cellular_POC_Working_Group
- template:
- - application/vnd.oma.poc.final-report+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.poc.groups+xml
- encoding: base64
- references:
- - IANA
- - "[Sean_Kelley]"
- - "[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]"
- - "{application/vnd.oma.poc.groups+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.groups+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Push_to_Talk_over_Cellular_POC_Working_Group
- - Sean_Kelley
- template:
- - application/vnd.oma.poc.groups+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.poc.invocation-descriptor+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]"
- - "{application/vnd.oma.poc.invocation-descriptor+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.invocation-descriptor+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Push_to_Talk_over_Cellular_POC_Working_Group
- template:
- - application/vnd.oma.poc.invocation-descriptor+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.poc.optimized-progress-report+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]"
- - "{application/vnd.oma.poc.optimized-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.optimized-progress-report+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Push_to_Talk_over_Cellular_POC_Working_Group
- template:
- - application/vnd.oma.poc.optimized-progress-report+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.push
- encoding: base64
- references:
- - IANA
- - "[Bryan_Sullivan]"
- - "[OMA]"
- - "{application/vnd.oma.push=http://www.iana.org/assignments/media-types/application/vnd.oma.push}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bryan_Sullivan
- - OMA
- template:
- - application/vnd.oma.push
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.scidm.messages+xml
- encoding: base64
- references:
- - IANA
- - "[Wenjun_Zeng]"
- - "[OMNA-Open_Mobile_Naming_Authority]"
- - "{application/vnd.oma.scidm.messages+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.scidm.messages+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMNA-Open_Mobile_Naming_Authority
- - Wenjun_Zeng
- template:
- - application/vnd.oma.scidm.messages+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oma.xcap-directory+xml
- encoding: base64
- references:
- - IANA
- - "[Sean_Kelley]"
- - "[OMA_Presence_and_Availability_PAG_Working_Group]"
- - "{application/vnd.oma.xcap-directory+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.xcap-directory+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Presence_and_Availability_PAG_Working_Group
- - Sean_Kelley
- template:
- - application/vnd.oma.xcap-directory+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.omads-email+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Data_Synchronization_Working_Group]"
- - "{application/vnd.omads-email+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-email+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Data_Synchronization_Working_Group
- template:
- - application/vnd.omads-email+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.omads-file+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Data_Synchronization_Working_Group]"
- - "{application/vnd.omads-file+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-file+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Data_Synchronization_Working_Group
- template:
- - application/vnd.omads-file+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.omads-folder+xml
- encoding: base64
- references:
- - IANA
- - "[OMA_Data_Synchronization_Working_Group]"
- - "{application/vnd.omads-folder+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-folder+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Data_Synchronization_Working_Group
- template:
- - application/vnd.omads-folder+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.omaloc-supl-init
- encoding: base64
- references:
- - IANA
- - "[Julien_Grange]"
- - "{application/vnd.omaloc-supl-init=http://www.iana.org/assignments/media-types/application/vnd.omaloc-supl-init}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Julien_Grange
- template:
- - application/vnd.omaloc-supl-init
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openblox.game+xml
- encoding: base64
- references:
- - IANA
- - "[Mark_Otaris]"
- - "{application/vnd.openblox.game+xml=http://www.iana.org/assignments/media-types/application/vnd.openblox.game+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Otaris
- template:
- - application/vnd.openblox.game+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openblox.game-binary
- encoding: base64
- references:
- - IANA
- - "[Mark_Otaris]"
- - "{application/vnd.openblox.game-binary=http://www.iana.org/assignments/media-types/application/vnd.openblox.game-binary}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Otaris
- template:
- - application/vnd.openblox.game-binary
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openeye.oeb
- encoding: base64
- references:
- - IANA
- - "[Craig_Bruce]"
- - "{application/vnd.openeye.oeb=http://www.iana.org/assignments/media-types/application/vnd.openeye.oeb}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Craig_Bruce
- template:
- - application/vnd.openeye.oeb
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openofficeorg.extension
- friendly:
- en: Open Office Extension
- encoding: base64
- extensions:
- - oxt
- references:
- - IANA
- - "[Lingner]"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.custom-properties+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.custom-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.custom-properties+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.custom-properties+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.customXmlProperties+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.customXmlProperties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.customXmlProperties+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.customXmlProperties+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawing+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawing+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawing+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawing+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawingml.chart+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawingml.chart+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chart+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawingml.chart+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.extended-properties+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.extended-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.extended-properties+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.extended-properties+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.comments+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.comments+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.comments+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.presentation
- friendly:
- en: Microsoft Office - OOXML - Presentation
- encoding: base64
- extensions:
- - pptx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.presentation=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.presentation
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.presProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presProps+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slide
- friendly:
- en: Microsoft Office - OOXML - Presentation (Slide)
- encoding: base64
- extensions:
- - sldx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slide=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slide
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slide+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slide+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slideshow
- friendly:
- en: Microsoft Office - OOXML - Presentation (Slideshow)
- encoding: base64
- extensions:
- - ppsx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slideshow=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slideshow
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.tags+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.tags+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tags+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.tags+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.template
- friendly:
- en: Microsoft Office - OOXML - Presentation Template
- encoding: base64
- extensions:
- - potx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.template.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
- friendly:
- en: Microsoft Office - OOXML - Spreadsheet
- encoding: base64
- extensions:
- - xlsx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.template
- friendly:
- en: Microsoft Office - OOXML - Spreadsheet Teplate
- encoding: base64
- extensions:
- - xltx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.theme+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.theme+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.theme+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.theme+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.themeOverride+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.themeOverride+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.themeOverride+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.themeOverride+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.vmlDrawing
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.vmlDrawing=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.vmlDrawing}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.vmlDrawing
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
- friendly:
- en: Microsoft Office - OOXML - Word Document
- encoding: base64
- extensions:
- - docx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.document=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.document
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.template
- friendly:
- en: Microsoft Office - OOXML - Word Document Template
- encoding: base64
- extensions:
- - dotx
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml-template}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml-template
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-package.core-properties+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-package.core-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.core-properties+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-package.core-properties+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.openxmlformats-package.relationships+xml
- encoding: base64
- references:
- - IANA
- - "[Makoto_Murata]"
- - "{application/vnd.openxmlformats-package.relationships+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.relationships+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Makoto_Murata
- template:
- - application/vnd.openxmlformats-package.relationships+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.oracle.resource+json
- encoding: base64
- references:
- - IANA
- - "[Ning_Dong]"
- - "{application/vnd.oracle.resource+json=http://www.iana.org/assignments/media-types/application/vnd.oracle.resource+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ning_Dong
- template:
- - application/vnd.oracle.resource+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.orange.indata
- encoding: base64
- references:
- - IANA
- - "[CHATRAS_Bruno]"
- - "{application/vnd.orange.indata=http://www.iana.org/assignments/media-types/application/vnd.orange.indata}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - CHATRAS_Bruno
- template:
- - application/vnd.orange.indata
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.osa.netdeploy
- encoding: base64
- references:
- - IANA
- - "[Steven_Klos]"
- - "{application/vnd.osa.netdeploy=http://www.iana.org/assignments/media-types/application/vnd.osa.netdeploy}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steven_Klos
- template:
- - application/vnd.osa.netdeploy
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.osgeo.mapguide.package
- friendly:
- en: MapGuide DBXML
- encoding: base64
- extensions:
- - mgp
- references:
- - IANA
- - "[Jason_Birch]"
- - "{application/vnd.osgeo.mapguide.package=http://www.iana.org/assignments/media-types/application/vnd.osgeo.mapguide.package}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jason_Birch
- template:
- - application/vnd.osgeo.mapguide.package
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.osgi.bundle
- encoding: base64
- references:
- - IANA
- - "[Peter_Kriens]"
- - "{application/vnd.osgi.bundle=http://www.iana.org/assignments/media-types/application/vnd.osgi.bundle}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Kriens
- template:
- - application/vnd.osgi.bundle
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.osgi.dp
- friendly:
- en: OSGi Deployment Package
- encoding: base64
- extensions:
- - dp
- references:
- - IANA
- - "[Peter_Kriens]"
- - "{application/vnd.osgi.dp=http://www.iana.org/assignments/media-types/application/vnd.osgi.dp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Kriens
- template:
- - application/vnd.osgi.dp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.osgi.subsystem
- encoding: base64
- extensions:
- - esa
- references:
- - IANA
- - "[Peter_Kriens]"
- - "{application/vnd.osgi.subsystem=http://www.iana.org/assignments/media-types/application/vnd.osgi.subsystem}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Kriens
- template:
- - application/vnd.osgi.subsystem
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.otps.ct-kip+xml
- encoding: base64
- references:
- - IANA
- - "[Magnus_Nystrom]"
- - "{application/vnd.otps.ct-kip+xml=http://www.iana.org/assignments/media-types/application/vnd.otps.ct-kip+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Magnus_Nystrom
- template:
- - application/vnd.otps.ct-kip+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.palm
- friendly:
- en: PalmOS Data
- encoding: base64
- extensions:
- - prc
- - pdb
- - pqa
- - oprc
- references:
- - IANA
- - "[Gavin_Peacock]"
- - "{application/vnd.palm=http://www.iana.org/assignments/media-types/application/vnd.palm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gavin_Peacock
- template:
- - application/vnd.palm
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.panoply
- encoding: base64
- references:
- - IANA
- - "[Natarajan_Balasundara]"
- - "{application/vnd.panoply=http://www.iana.org/assignments/media-types/application/vnd.panoply}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Natarajan_Balasundara
- template:
- - application/vnd.panoply
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.paos.xml
- encoding: base64
- references:
- - IANA
- - "[John_Kemp]"
- - "{application/vnd.paos+xml=http://www.iana.org/assignments/media-types/application/vnd.paos+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Kemp
- template:
- - application/vnd.paos+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pawaafile
- friendly:
- en: PawaaFILE
- encoding: base64
- extensions:
- - paw
- references:
- - IANA
- - "[Prakash_Baskaran]"
- - "{application/vnd.pawaafile=http://www.iana.org/assignments/media-types/application/vnd.pawaafile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Prakash_Baskaran
- template:
- - application/vnd.pawaafile
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pcos
- encoding: base64
- references:
- - IANA
- - "[Slawomir_Lisznianski]"
- - "{application/vnd.pcos=http://www.iana.org/assignments/media-types/application/vnd.pcos}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Slawomir_Lisznianski
- template:
- - application/vnd.pcos
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pg.format
- friendly:
- en: Proprietary P&G Standard Reporting System
- encoding: base64
- extensions:
- - str
- references:
- - IANA
- - "[April_Gandert]"
- - "{application/vnd.pg.format=http://www.iana.org/assignments/media-types/application/vnd.pg.format}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - April_Gandert
- template:
- - application/vnd.pg.format
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pg.osasli
- friendly:
- en: Proprietary P&G Standard Reporting System
- encoding: base64
- extensions:
- - ei6
- references:
- - IANA
- - "[April_Gandert]"
- - "{application/vnd.pg.osasli=http://www.iana.org/assignments/media-types/application/vnd.pg.osasli}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - April_Gandert
- template:
- - application/vnd.pg.osasli
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.piaccess.application-licence
- encoding: base64
- references:
- - IANA
- - "[Lucas_Maneos]"
- - "{application/vnd.piaccess.application-licence=http://www.iana.org/assignments/media-types/application/vnd.piaccess.application-licence}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lucas_Maneos
- template:
- - application/vnd.piaccess.application-licence
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.picsel
- friendly:
- en: Pcsel eFIF File
- encoding: base64
- extensions:
- - efif
- references:
- - IANA
- - "[Giuseppe_Naccarato]"
- - "{application/vnd.picsel=http://www.iana.org/assignments/media-types/application/vnd.picsel}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Giuseppe_Naccarato
- template:
- - application/vnd.picsel
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pmi.widget
- friendly:
- en: Qualcomm's Plaza Mobile Internet
- encoding: base64
- extensions:
- - wg
- references:
- - IANA
- - "[Rhys_Lewis]"
- - "{application/vnd.pmi.widget=http://www.iana.org/assignments/media-types/application/vnd.pmi.widget}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Rhys_Lewis
- template:
- - application/vnd.pmi.widget
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.poc.group-advertisement+xml
- encoding: base64
- references:
- - IANA
- - "[Sean_Kelley]"
- - "[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]"
- - "{application/vnd.poc.group-advertisement+xml=http://www.iana.org/assignments/media-types/application/vnd.poc.group-advertisement+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Push_to_Talk_over_Cellular_POC_Working_Group
- - Sean_Kelley
- template:
- - application/vnd.poc.group-advertisement+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pocketlearn
- friendly:
- en: PocketLearn Viewers
- encoding: base64
- extensions:
- - plf
- references:
- - IANA
- - "[Jorge_Pando]"
- - "{application/vnd.pocketlearn=http://www.iana.org/assignments/media-types/application/vnd.pocketlearn}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jorge_Pando
- template:
- - application/vnd.pocketlearn
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.powerbuilder6
- friendly:
- en: PowerBuilder
- encoding: base64
- extensions:
- - pbd
- references:
- - IANA
- - "[David_Guy]"
- - "{application/vnd.powerbuilder6=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Guy
- template:
- - application/vnd.powerbuilder6
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.powerbuilder6-s
- encoding: base64
- references:
- - IANA
- - "[David_Guy]"
- - "{application/vnd.powerbuilder6-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6-s}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Guy
- template:
- - application/vnd.powerbuilder6-s
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.powerbuilder7
- encoding: base64
- references:
- - IANA
- - "[Reed_Shilts]"
- - "{application/vnd.powerbuilder7=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reed_Shilts
- template:
- - application/vnd.powerbuilder7
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.powerbuilder7-s
- encoding: base64
- references:
- - IANA
- - "[Reed_Shilts]"
- - "{application/vnd.powerbuilder7-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7-s}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reed_Shilts
- template:
- - application/vnd.powerbuilder7-s
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.powerbuilder75
- encoding: base64
- references:
- - IANA
- - "[Reed_Shilts]"
- - "{application/vnd.powerbuilder75=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reed_Shilts
- template:
- - application/vnd.powerbuilder75
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.powerbuilder75-s
- encoding: base64
- references:
- - IANA
- - "[Reed_Shilts]"
- - "{application/vnd.powerbuilder75-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75-s}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reed_Shilts
- template:
- - application/vnd.powerbuilder75-s
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.preminet
- encoding: base64
- references:
- - IANA
- - "[Juoko_Tenhunen]"
- - "{application/vnd.preminet=http://www.iana.org/assignments/media-types/application/vnd.preminet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Juoko_Tenhunen
- template:
- - application/vnd.preminet
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.previewsystems.box
- friendly:
- en: Preview Systems ZipLock/VBox
- encoding: base64
- extensions:
- - box
- references:
- - IANA
- - "[Roman_Smolgovsky]"
- - "{application/vnd.previewsystems.box=http://www.iana.org/assignments/media-types/application/vnd.previewsystems.box}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Roman_Smolgovsky
- template:
- - application/vnd.previewsystems.box
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.proteus.magazine
- friendly:
- en: EFI Proteus
- encoding: base64
- extensions:
- - mgz
- references:
- - IANA
- - "[Pete_Hoch]"
- - "{application/vnd.proteus.magazine=http://www.iana.org/assignments/media-types/application/vnd.proteus.magazine}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Pete_Hoch
- template:
- - application/vnd.proteus.magazine
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.publishare-delta-tree
- friendly:
- en: PubliShare Objects
- encoding: base64
- extensions:
- - qps
- references:
- - IANA
- - "[Oren_Ben-Kiki]"
- - "{application/vnd.publishare-delta-tree=http://www.iana.org/assignments/media-types/application/vnd.publishare-delta-tree}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Oren_Ben-Kiki
- template:
- - application/vnd.publishare-delta-tree
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pvi.ptid1
- friendly:
- en: Princeton Video Image
- encoding: base64
- extensions:
- - pti
- - ptid
- references:
- - IANA
- - "[Charles_P._Lamb]"
- - "{application/vnd.pvi.ptid1=http://www.iana.org/assignments/media-types/application/vnd.pvi.ptid1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Charles_P._Lamb
- template:
- - application/vnd.pvi.ptid1
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pwg-multiplexed
- encoding: base64
- references:
- - IANA
- - RFC3391
- - "{application/vnd.pwg-multiplexed=http://www.iana.org/assignments/media-types/application/vnd.pwg-multiplexed}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3391
- template:
- - application/vnd.pwg-multiplexed
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.pwg-xhtml-print+xml
- encoding: base64
- references:
- - IANA
- - "[Don_Wright]"
- - "{application/vnd.pwg-xhtml-print+xml=http://www.iana.org/assignments/media-types/application/vnd.pwg-xhtml-print+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Don_Wright
- template:
- - application/vnd.pwg-xhtml-print+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.qualcomm.brew-app-res
- encoding: base64
- references:
- - IANA
- - "[Glenn_Forrester]"
- - "{application/vnd.qualcomm.brew-app-res=http://www.iana.org/assignments/media-types/application/vnd.qualcomm.brew-app-res}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glenn_Forrester
- template:
- - application/vnd.qualcomm.brew-app-res
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.Quark.QuarkXPress
- friendly:
- en: QuarkXPress
- encoding: 8bit
- extensions:
- - qxd
- - qxt
- - qwd
- - qwt
- - qxl
- - qxb
- references:
- - IANA
- - "[Hannes_Scheidler]"
- - "{application/vnd.Quark.QuarkXPress=http://www.iana.org/assignments/media-types/application/vnd.Quark.QuarkXPress}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hannes_Scheidler
- template:
- - application/vnd.Quark.QuarkXPress
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.quobject-quoxdocument
- encoding: base64
- references:
- - IANA
- - "[Matthias_Ludwig]"
- - "{application/vnd.quobject-quoxdocument=http://www.iana.org/assignments/media-types/application/vnd.quobject-quoxdocument}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Matthias_Ludwig
- template:
- - application/vnd.quobject-quoxdocument
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.moml+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.moml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.moml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.moml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-audit+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-audit+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-audit+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-audit-conf+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-audit-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-audit-conf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-audit-conn+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-audit-conn+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conn+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-audit-conn+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-audit-dialog+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-audit-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-dialog+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-audit-dialog+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-audit-stream+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-audit-stream+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-stream+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-audit-stream+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-conf+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-conf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-conf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog-base+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog-base+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-base+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog-base+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog-fax-detect+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog-fax-detect+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-detect+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog-fax-detect+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog-fax-sendrecv+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog-fax-sendrecv+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-sendrecv+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog-fax-sendrecv+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog-group+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog-group+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-group+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog-group+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog-speech+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog-speech+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-speech+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog-speech+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.radisys.msml-dialog-transform+xml
- encoding: base64
- references:
- - IANA
- - RFC5707
- - "{application/vnd.radisys.msml-dialog-transform+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-transform+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - application/vnd.radisys.msml-dialog-transform+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.rainstor.data
- encoding: base64
- references:
- - IANA
- - "[Kevin_Crook]"
- - "{application/vnd.rainstor.data=http://www.iana.org/assignments/media-types/application/vnd.rainstor.data}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Crook
- template:
- - application/vnd.rainstor.data
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.rapid
- encoding: base64
- references:
- - IANA
- - "[Etay_Szekely]"
- - "{application/vnd.rapid=http://www.iana.org/assignments/media-types/application/vnd.rapid}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Etay_Szekely
- template:
- - application/vnd.rapid
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.realvnc.bed
- friendly:
- en: RealVNC
- encoding: base64
- extensions:
- - bed
- references:
- - IANA
- - "[Nick_Reeves]"
- - "{application/vnd.realvnc.bed=http://www.iana.org/assignments/media-types/application/vnd.realvnc.bed}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nick_Reeves
- template:
- - application/vnd.realvnc.bed
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.recordare.musicxml
- friendly:
- en: Recordare Applications
- encoding: base64
- extensions:
- - mxl
- references:
- - IANA
- - "[Michael_Good]"
- - "{application/vnd.recordare.musicxml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Good
- template:
- - application/vnd.recordare.musicxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.recordare.musicxml+xml
- friendly:
- en: Recordare Applications
- encoding: base64
- extensions:
- - musicxml
- references:
- - IANA
- - "[Michael_Good]"
- - "{application/vnd.recordare.musicxml+xml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Good
- template:
- - application/vnd.recordare.musicxml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.RenLearn.rlprint
- encoding: base64
- references:
- - IANA
- - "[James_Wick]"
- - "{application/vnd.renlearn.rlprint=http://www.iana.org/assignments/media-types/application/vnd.renlearn.rlprint}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - James_Wick
- template:
- - application/vnd.renlearn.rlprint
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.rig.cryptonote
- friendly:
- en: CryptoNote
- encoding: base64
- extensions:
- - cryptonote
- references:
- - IANA
- - "[Ken_Jibiki]"
- - "{application/vnd.rig.cryptonote=http://www.iana.org/assignments/media-types/application/vnd.rig.cryptonote}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ken_Jibiki
- template:
- - application/vnd.rig.cryptonote
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.rim.cod
- friendly:
- en: Blackberry COD File
- encoding: base64
- extensions:
- - cod
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.rn-realmedia
- friendly:
- en: RealMedia
- encoding: base64
- extensions:
- - rm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.rn-realmedia-vbr
- encoding: base64
- extensions:
- - rmvb
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.route66.link66+xml
- friendly:
- en: ROUTE 66 Location Based Services
- encoding: base64
- extensions:
- - link66
- references:
- - IANA
- - "[Sybren_Kikstra]"
- - "{application/vnd.route66.link66+xml=http://www.iana.org/assignments/media-types/application/vnd.route66.link66+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sybren_Kikstra
- template:
- - application/vnd.route66.link66+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.rs-274x
- encoding: base64
- references:
- - IANA
- - "[Lee_Harding]"
- - "{application/vnd.rs-274x=http://www.iana.org/assignments/media-types/application/vnd.rs-274x}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lee_Harding
- template:
- - application/vnd.rs-274x
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ruckus.download
- encoding: base64
- references:
- - IANA
- - "[Jerry_Harris]"
- - "{application/vnd.ruckus.download=http://www.iana.org/assignments/media-types/application/vnd.ruckus.download}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jerry_Harris
- template:
- - application/vnd.ruckus.download
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.s3sms
- encoding: base64
- references:
- - IANA
- - "[Lauri_Tarkkala]"
- - "{application/vnd.s3sms=http://www.iana.org/assignments/media-types/application/vnd.s3sms}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Lauri_Tarkkala
- template:
- - application/vnd.s3sms
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sailingtracker.track
- friendly:
- en: SailingTracker
- encoding: base64
- extensions:
- - st
- references:
- - IANA
- - "[Heikki_Vesalainen]"
- - "{application/vnd.sailingtracker.track=http://www.iana.org/assignments/media-types/application/vnd.sailingtracker.track}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Heikki_Vesalainen
- template:
- - application/vnd.sailingtracker.track
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sbm.cid
- encoding: base64
- references:
- - IANA
- - "[Shinji_Kusakari]"
- - "{application/vnd.sbm.cid=http://www.iana.org/assignments/media-types/application/vnd.sbm.cid}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shinji_Kusakari
- template:
- - application/vnd.sbm.cid
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sbm.mid2
- encoding: base64
- references:
- - IANA
- - "[Masanori_Murai]"
- - "{application/vnd.sbm.mid2=http://www.iana.org/assignments/media-types/application/vnd.sbm.mid2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masanori_Murai
- template:
- - application/vnd.sbm.mid2
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.scribus
- encoding: base64
- references:
- - IANA
- - "[Craig_Bradney]"
- - "{application/vnd.scribus=http://www.iana.org/assignments/media-types/application/vnd.scribus}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Craig_Bradney
- template:
- - application/vnd.scribus
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.3df
- encoding: base64
- references:
- - IANA
- - "[John_Kwan]"
- - "{application/vnd.sealed.3df=http://www.iana.org/assignments/media-types/application/vnd.sealed.3df}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Kwan
- template:
- - application/vnd.sealed.3df
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.csf
- encoding: base64
- references:
- - IANA
- - "[John_Kwan]"
- - "{application/vnd.sealed.csf=http://www.iana.org/assignments/media-types/application/vnd.sealed.csf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Kwan
- template:
- - application/vnd.sealed.csf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.doc
- encoding: base64
- extensions:
- - sdoc
- - sdo
- - s1w
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealed-doc=http://www.iana.org/assignments/media-types/application/vnd.sealed-doc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealed-doc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.eml
- encoding: base64
- extensions:
- - seml
- - sem
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealed-eml=http://www.iana.org/assignments/media-types/application/vnd.sealed-eml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealed-eml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.mht
- encoding: base64
- extensions:
- - smht
- - smh
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealed-mht=http://www.iana.org/assignments/media-types/application/vnd.sealed-mht}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealed-mht
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.net
- encoding: base64
- references:
- - IANA
- - "[Martin_Lambert]"
- - "{application/vnd.sealed.net=http://www.iana.org/assignments/media-types/application/vnd.sealed.net}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Martin_Lambert
- template:
- - application/vnd.sealed.net
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.ppt
- encoding: base64
- extensions:
- - sppt
- - spp
- - s1p
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealed-ppt=http://www.iana.org/assignments/media-types/application/vnd.sealed-ppt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealed-ppt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.tiff
- encoding: base64
- references:
- - IANA
- - "[John_Kwan]"
- - "[Martin_Lambert]"
- - "{application/vnd.sealed-tiff=http://www.iana.org/assignments/media-types/application/vnd.sealed-tiff}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Kwan
- - Martin_Lambert
- template:
- - application/vnd.sealed-tiff
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealed.xls
- encoding: base64
- extensions:
- - sxls
- - sxl
- - s1e
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealed-xls=http://www.iana.org/assignments/media-types/application/vnd.sealed-xls}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealed-xls
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealedmedia.softseal.html
- encoding: base64
- extensions:
- - stml
- - stm
- - s1h
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealedmedia.softseal-html=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealedmedia.softseal-html
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sealedmedia.softseal.pdf
- encoding: base64
- extensions:
- - spdf
- - spd
- - s1a
- references:
- - IANA
- - "[David_Petersen]"
- - "{application/vnd.sealedmedia.softseal-pdf=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-pdf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - application/vnd.sealedmedia.softseal-pdf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.seemail
- friendly:
- en: SeeMail
- encoding: base64
- extensions:
- - see
- references:
- - IANA
- - "[Steve_Webb]"
- - "{application/vnd.seemail=http://www.iana.org/assignments/media-types/application/vnd.seemail}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Webb
- template:
- - application/vnd.seemail
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sema
- friendly:
- en: Secured eMail
- encoding: base64
- extensions:
- - sema
- references:
- - IANA
- - "[Anders_Hansson]"
- - "{application/vnd-sema=http://www.iana.org/assignments/media-types/application/vnd-sema}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Anders_Hansson
- template:
- - application/vnd-sema
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.semd
- friendly:
- en: Secured eMail
- encoding: base64
- extensions:
- - semd
- references:
- - IANA
- - "[Anders_Hansson]"
- - "{application/vnd.semd=http://www.iana.org/assignments/media-types/application/vnd.semd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Anders_Hansson
- template:
- - application/vnd.semd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.semf
- friendly:
- en: Secured eMail
- encoding: base64
- extensions:
- - semf
- references:
- - IANA
- - "[Anders_Hansson]"
- - "{application/vnd.semf=http://www.iana.org/assignments/media-types/application/vnd.semf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Anders_Hansson
- template:
- - application/vnd.semf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.shana.informed.formdata
- friendly:
- en: Shana Informed Filler
- encoding: base64
- extensions:
- - ifm
- references:
- - IANA
- - "[Guy_Selzler]"
- - "{application/vnd.shana.informed.formdata=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formdata}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Guy_Selzler
- template:
- - application/vnd.shana.informed.formdata
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.shana.informed.formtemplate
- friendly:
- en: Shana Informed Filler
- encoding: base64
- extensions:
- - itp
- references:
- - IANA
- - "[Guy_Selzler]"
- - "{application/vnd.shana.informed.formtemplate=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formtemplate}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Guy_Selzler
- template:
- - application/vnd.shana.informed.formtemplate
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.shana.informed.interchange
- friendly:
- en: Shana Informed Filler
- encoding: base64
- extensions:
- - iif
- references:
- - IANA
- - "[Guy_Selzler]"
- - "{application/vnd.shana.informed.interchange=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.interchange}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Guy_Selzler
- template:
- - application/vnd.shana.informed.interchange
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.shana.informed.package
- friendly:
- en: Shana Informed Filler
- encoding: base64
- extensions:
- - ipk
- references:
- - IANA
- - "[Guy_Selzler]"
- - "{application/vnd.shana.informed.package=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.package}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Guy_Selzler
- template:
- - application/vnd.shana.informed.package
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.SimTech-MindMapper
- friendly:
- en: SimTech MindMapper
- encoding: base64
- extensions:
- - twd
- - twds
- references:
- - IANA
- - "[Patrick_Koh]"
- - "{application/vnd.SimTech-MindMapper=http://www.iana.org/assignments/media-types/application/vnd.SimTech-MindMapper}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Patrick_Koh
- template:
- - application/vnd.SimTech-MindMapper
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.siren+json
- encoding: base64
- references:
- - IANA
- - "[Kevin_Swiber]"
- - "{application/vnd.siren+json=http://www.iana.org/assignments/media-types/application/vnd.siren+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Swiber
- template:
- - application/vnd.siren+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.smaf
- friendly:
- en: SMAF File
- encoding: base64
- extensions:
- - mmf
- references:
- - IANA
- - "[Hiroaki_Takahashi]"
- - "{application/vnd.smaf=http://www.iana.org/assignments/media-types/application/vnd.smaf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Hiroaki_Takahashi
- template:
- - application/vnd.smaf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.smart.notebook
- encoding: base64
- references:
- - IANA
- - "[Jonathan_Neitz]"
- - "{application/vnd.smart.notebook=http://www.iana.org/assignments/media-types/application/vnd.smart.notebook}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jonathan_Neitz
- template:
- - application/vnd.smart.notebook
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.smart.teacher
- friendly:
- en: SMART Technologies Apps
- encoding: base64
- extensions:
- - teacher
- references:
- - IANA
- - "[Michael_Boyle]"
- - "{application/vnd.smart.teacher=http://www.iana.org/assignments/media-types/application/vnd.smart.teacher}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Boyle
- template:
- - application/vnd.smart.teacher
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.software602.filler.form+xml
- encoding: base64
- references:
- - IANA
- - "[Jakub_Hytka]"
- - "[Martin_Vondrous]"
- - "{application/vnd.software602.filler.form+xml=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jakub_Hytka
- - Martin_Vondrous
- template:
- - application/vnd.software602.filler.form+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.software602.filler.form-xml-zip
- encoding: base64
- references:
- - IANA
- - "[Jakub_Hytka]"
- - "[Martin_Vondrous]"
- - "{application/vnd.software602.filler.form-xml-zip=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form-xml-zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jakub_Hytka
- - Martin_Vondrous
- template:
- - application/vnd.software602.filler.form-xml-zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.solent.sdkm+xml
- friendly:
- en: SudokuMagic
- encoding: base64
- extensions:
- - sdkd
- - sdkm
- references:
- - IANA
- - "[Cliff_Gauntlett]"
- - "{application/vnd.solent.sdkm+xml=http://www.iana.org/assignments/media-types/application/vnd.solent.sdkm+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Cliff_Gauntlett
- template:
- - application/vnd.solent.sdkm+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.spotfire.dxp
- friendly:
- en: TIBCO Spotfire
- encoding: base64
- extensions:
- - dxp
- references:
- - IANA
- - "[Stefan_Jernberg]"
- - "{application/vnd.spotfire.dxp=http://www.iana.org/assignments/media-types/application/vnd.spotfire.dxp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Stefan_Jernberg
- template:
- - application/vnd.spotfire.dxp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.spotfire.sfs
- friendly:
- en: TIBCO Spotfire
- encoding: base64
- extensions:
- - sfs
- references:
- - IANA
- - "[Stefan_Jernberg]"
- - "{application/vnd.spotfire.sfs=http://www.iana.org/assignments/media-types/application/vnd.spotfire.sfs}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Stefan_Jernberg
- template:
- - application/vnd.spotfire.sfs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sss-cod
- encoding: base64
- references:
- - IANA
- - "[Asang_Dani]"
- - "{application/vnd.sss-cod=http://www.iana.org/assignments/media-types/application/vnd.sss-cod}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Asang_Dani
- template:
- - application/vnd.sss-cod
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sss-dtf
- encoding: base64
- references:
- - IANA
- - "[Eric_Bruno]"
- - "{application/vnd.sss-dtf=http://www.iana.org/assignments/media-types/application/vnd.sss-dtf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Bruno
- template:
- - application/vnd.sss-dtf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sss-ntf
- encoding: base64
- references:
- - IANA
- - "[Eric_Bruno]"
- - "{application/vnd.sss-ntf=http://www.iana.org/assignments/media-types/application/vnd.sss-ntf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Bruno
- template:
- - application/vnd.sss-ntf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.calc
- friendly:
- en: StarOffice - Calc
- encoding: base64
- extensions:
- - sdc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.chart
- encoding: base64
- extensions:
- - sds
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.draw
- friendly:
- en: StarOffice - Draw
- encoding: base64
- extensions:
- - sda
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.impress
- friendly:
- en: StarOffice - Impress
- encoding: base64
- extensions:
- - sdd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.math
- friendly:
- en: StarOffice - Math
- encoding: base64
- extensions:
- - sdf
- - smf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.writer
- friendly:
- en: StarOffice - Writer
- encoding: base64
- extensions:
- - sdw
- - vor
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stardivision.writer-global
- friendly:
- en: StarOffice - Writer (Global)
- encoding: base64
- extensions:
- - sgl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.stepmania.package
- encoding: base64
- extensions:
- - smzip
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.stepmania.package=http://www.iana.org/assignments/media-types/application/vnd.stepmania.package}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.stepmania.package
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.stepmania.stepchart
- friendly:
- en: StepMania
- encoding: base64
- extensions:
- - sm
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.stepmania.stepchart=http://www.iana.org/assignments/media-types/application/vnd.stepmania.stepchart}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.stepmania.stepchart
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.street-stream
- encoding: base64
- references:
- - IANA
- - "[Glenn_Levitt]"
- - "{application/vnd.street-stream=http://www.iana.org/assignments/media-types/application/vnd.street-stream}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glenn_Levitt
- template:
- - application/vnd.street-stream
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.wadl+xml
- encoding: base64
- references:
- - IANA
- - "[Marc_Hadley]"
- - "{application/vnd.sun.wadl+xml=http://www.iana.org/assignments/media-types/application/vnd.sun.wadl+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Marc_Hadley
- template:
- - application/vnd.sun.wadl+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.calc
- friendly:
- en: OpenOffice - Calc (Spreadsheet)
- encoding: base64
- extensions:
- - sxc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.calc.template
- friendly:
- en: OpenOffice - Calc Template (Spreadsheet)
- encoding: base64
- extensions:
- - stc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.draw
- friendly:
- en: OpenOffice - Draw (Graphics)
- encoding: base64
- extensions:
- - sxd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.draw.template
- friendly:
- en: OpenOffice - Draw Template (Graphics)
- encoding: base64
- extensions:
- - std
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.impress
- friendly:
- en: OpenOffice - Impress (Presentation)
- encoding: base64
- extensions:
- - sxi
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.impress.template
- friendly:
- en: OpenOffice - Impress Template (Presentation)
- encoding: base64
- extensions:
- - sti
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.math
- friendly:
- en: OpenOffice - Math (Formula)
- encoding: base64
- extensions:
- - sxm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.writer
- friendly:
- en: OpenOffice - Writer (Text - HTML)
- encoding: base64
- extensions:
- - sxw
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.writer.global
- friendly:
- en: OpenOffice - Writer (Text - HTML)
- encoding: base64
- extensions:
- - sxg
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sun.xml.writer.template
- friendly:
- en: OpenOffice - Writer Template (Text - HTML)
- encoding: base64
- extensions:
- - stw
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.sus-calendar
- friendly:
- en: ScheduleUs
- encoding: base64
- extensions:
- - sus
- - susp
- references:
- - IANA
- - "[Jonathan_Niedfeldt]"
- - "{application/vnd.sus-calendar=http://www.iana.org/assignments/media-types/application/vnd.sus-calendar}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jonathan_Niedfeldt
- template:
- - application/vnd.sus-calendar
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.svd
- friendly:
- en: SourceView Document
- encoding: base64
- extensions:
- - svd
- references:
- - IANA
- - "[Scott_Becker]"
- - "{application/vnd.svd=http://www.iana.org/assignments/media-types/application/vnd.svd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Scott_Becker
- template:
- - application/vnd.svd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.swiftview-ics
- encoding: base64
- references:
- - IANA
- - "[Glenn_Widener]"
- - "{application/vnd.swiftview-ics=http://www.iana.org/assignments/media-types/application/vnd.swiftview-ics}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glenn_Widener
- template:
- - application/vnd.swiftview-ics
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.symbian.install
- friendly:
- en: Symbian Install Package
- encoding: base64
- extensions:
- - sis
- - sisx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml+xml
- friendly:
- en: SyncML
- encoding: base64
- extensions:
- - xsm
- references:
- - IANA
- - "[OMA_Data_Synchronization_Working_Group]"
- - "{application/vnd.syncml+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Data_Synchronization_Working_Group
- template:
- - application/vnd.syncml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dm+wbxml
- friendly:
- en: SyncML - Device Management
- encoding: base64
- extensions:
- - bdm
- references:
- - IANA
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dm+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA-DM_Work_Group
- template:
- - application/vnd.syncml.dm+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dm+xml
- friendly:
- en: SyncML - Device Management
- encoding: base64
- extensions:
- - xdm
- references:
- - IANA
- - "[Bindu_Rama_Rao]"
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dm+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bindu_Rama_Rao
- - OMA-DM_Work_Group
- template:
- - application/vnd.syncml.dm+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dm.notification
- encoding: base64
- references:
- - IANA
- - "[Peter_Thompson]"
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dm.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm.notification}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA-DM_Work_Group
- - Peter_Thompson
- template:
- - application/vnd.syncml.dm.notification
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dmddf+wbxml
- encoding: base64
- references:
- - IANA
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dmddf+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA-DM_Work_Group
- template:
- - application/vnd.syncml.dmddf+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dmddf+xml
- encoding: base64
- references:
- - IANA
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dmddf+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA-DM_Work_Group
- template:
- - application/vnd.syncml.dmddf+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dmtnds+wbxml
- encoding: base64
- references:
- - IANA
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dmtnds+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA-DM_Work_Group
- template:
- - application/vnd.syncml.dmtnds+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.dmtnds+xml
- encoding: base64
- references:
- - IANA
- - "[OMA-DM_Work_Group]"
- - "{application/vnd.syncml.dmtnds+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA-DM_Work_Group
- template:
- - application/vnd.syncml.dmtnds+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.syncml.ds.notification
- encoding: base64
- references:
- - IANA
- - "[OMA_Data_Synchronization_Working_Group]"
- - "{application/vnd.syncml.ds.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.ds.notification}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - OMA_Data_Synchronization_Working_Group
- template:
- - application/vnd.syncml.ds.notification
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.tao.intent-module-archive
- friendly:
- en: Tao Intent
- encoding: base64
- extensions:
- - tao
- references:
- - IANA
- - "[Daniel_Shelton]"
- - "{application/vnd.tao.intent-module-archive=http://www.iana.org/assignments/media-types/application/vnd.tao.intent-module-archive}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Daniel_Shelton
- template:
- - application/vnd.tao.intent-module-archive
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.tcpdump.pcap
- encoding: base64
- extensions:
- - cap
- - dmp
- - pcap
- references:
- - IANA
- - "[Guy_Harris]"
- - "[Glen_Turner]"
- - "{application/vnd.tcpdump.pcap=http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glen_Turner
- - Guy_Harris
- template:
- - application/vnd.tcpdump.pcap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.tmd.mediaflex.api+xml
- encoding: base64
- references:
- - IANA
- - "[Alex_Sibilev]"
- - "{application/vnd.tmd.mediaflex.api+xml=http://www.iana.org/assignments/media-types/application/vnd.tmd.mediaflex.api+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alex_Sibilev
- template:
- - application/vnd.tmd.mediaflex.api+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.tmobile-livetv
- friendly:
- en: MobileTV
- encoding: base64
- extensions:
- - tmo
- references:
- - IANA
- - "[Nicolas_Helin]"
- - "{application/vnd.tmobile-livetv=http://www.iana.org/assignments/media-types/application/vnd.tmobile-livetv}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nicolas_Helin
- template:
- - application/vnd.tmobile-livetv
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.trid.tpt
- friendly:
- en: TRI Systems Config
- encoding: base64
- extensions:
- - tpt
- references:
- - IANA
- - "[Frank_Cusack]"
- - "{application/vnd.trid.tpt=http://www.iana.org/assignments/media-types/application/vnd.trid.tpt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frank_Cusack
- template:
- - application/vnd.trid.tpt
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.triscape.mxs
- friendly:
- en: Triscape Map Explorer
- encoding: base64
- extensions:
- - mxs
- references:
- - IANA
- - "[Steven_Simonoff]"
- - "{application/vnd.triscape.mxs=http://www.iana.org/assignments/media-types/application/vnd.triscape.mxs}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steven_Simonoff
- template:
- - application/vnd.triscape.mxs
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.trueapp
- friendly:
- en: True BASIC
- encoding: base64
- extensions:
- - tra
- references:
- - IANA
- - "[J._Scott_Hepler]"
- - "{application/vnd.trueapp=http://www.iana.org/assignments/media-types/application/vnd.trueapp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - J._Scott_Hepler
- template:
- - application/vnd.trueapp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.truedoc
- encoding: base64
- references:
- - IANA
- - "[Brad_Chase]"
- - "{application/vnd.truedoc=http://www.iana.org/assignments/media-types/application/vnd.truedoc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Brad_Chase
- template:
- - application/vnd.truedoc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ubisoft.webplayer
- encoding: base64
- references:
- - IANA
- - "[Martin_Talbot]"
- - "{application/vnd.ubisoft.webplayer=http://www.iana.org/assignments/media-types/application/vnd.ubisoft.webplayer}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Martin_Talbot
- template:
- - application/vnd.ubisoft.webplayer
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.ufdl
- friendly:
- en: Universal Forms Description Language
- encoding: base64
- extensions:
- - ufd
- - ufdl
- references:
- - IANA
- - "[Dave_Manning]"
- - "{application/vnd.ufdl=http://www.iana.org/assignments/media-types/application/vnd.ufdl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dave_Manning
- template:
- - application/vnd.ufdl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uiq.theme
- friendly:
- en: User Interface Quartz - Theme (Symbian)
- encoding: base64
- extensions:
- - utz
- references:
- - IANA
- - "[Tim_Ocock]"
- - "{application/vnd.uiq.theme=http://www.iana.org/assignments/media-types/application/vnd.uiq.theme}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tim_Ocock
- template:
- - application/vnd.uiq.theme
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.umajin
- friendly:
- en: UMAJIN
- encoding: base64
- extensions:
- - umj
- references:
- - IANA
- - "[Jamie_Riden]"
- - "{application/vnd.umajin=http://www.iana.org/assignments/media-types/application/vnd.umajin}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jamie_Riden
- template:
- - application/vnd.umajin
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.unity
- friendly:
- en: Unity 3d
- encoding: base64
- extensions:
- - unityweb
- references:
- - IANA
- - "[Unity3d]"
- - "{application/vnd.unity=http://www.iana.org/assignments/media-types/application/vnd.unity}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Unity3d
- template:
- - application/vnd.unity
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uoml+xml
- friendly:
- en: Unique Object Markup Language
- encoding: base64
- extensions:
- - uoml
- references:
- - IANA
- - "[Arne_Gerdes]"
- - "{application/vnd.uoml+xml=http://www.iana.org/assignments/media-types/application/vnd.uoml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Arne_Gerdes
- template:
- - application/vnd.uoml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.alert
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.alert=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.alert
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.alert-wbxml
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.alert-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.alert-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.bearer-choice
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.bearer-choice=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.bearer-choice
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.bearer-choice-wbxml
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.bearer-choice-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.bearer-choice-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.cacheop
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.cacheop=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.cacheop
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.cacheop-wbxml
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.cacheop-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.cacheop-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.channel
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.channel=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.channel
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.channel-wbxml
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.channel-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.channel-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.list
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.list=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.list
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.list-wbxml
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.list-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.list-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.listcmd
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.listcmd=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.listcmd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.listcmd-wbxml
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.listcmd-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.listcmd-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uplanet.signal
- encoding: base64
- references:
- - IANA
- - "[Bruce_Martin]"
- - "{application/vnd.uplanet.signal=http://www.iana.org/assignments/media-types/application/vnd.uplanet.signal}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bruce_Martin
- template:
- - application/vnd.uplanet.signal
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.uri-map
- encoding: base64
- references:
- - IANA
- - "[Sebastian_Baer]"
- - "{application/vnd.uri-map=http://www.iana.org/assignments/media-types/application/vnd.uri-map}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Sebastian_Baer
- template:
- - application/vnd.uri-map
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.valve.source.material
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{application/vnd.valve.source.material=http://www.iana.org/assignments/media-types/application/vnd.valve.source.material}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - application/vnd.valve.source.material
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.vcx
- friendly:
- en: VirtualCatalog
- encoding: base64
- extensions:
- - vcx
- references:
- - IANA
- - "[Taisuke_Sugimoto]"
- - "{application/vnd.vcx=http://www.iana.org/assignments/media-types/application/vnd.vcx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Taisuke_Sugimoto
- template:
- - application/vnd.vcx
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.vd-study
- encoding: base64
- references:
- - IANA
- - "[Luc_Rogge]"
- - "{application/vnd.vd-study=http://www.iana.org/assignments/media-types/application/vnd.vd-study}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Luc_Rogge
- template:
- - application/vnd.vd-study
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.vectorworks
- encoding: base64
- references:
- - IANA
- - "[Lyndsey_Ferguson]"
- - "[Biplab_Sarkar]"
- - "{application/vnd.vectorworks=http://www.iana.org/assignments/media-types/application/vnd.vectorworks}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Biplab_Sarkar
- - Lyndsey_Ferguson
- template:
- - application/vnd.vectorworks
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.verimatrix.vcas
- encoding: base64
- references:
- - IANA
- - "[Petr_Peterka]"
- - "{application/vnd.verimatrix.vcas=http://www.iana.org/assignments/media-types/application/vnd.verimatrix.vcas}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Petr_Peterka
- template:
- - application/vnd.verimatrix.vcas
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.vidsoft.vidconference
- encoding: 8bit
- extensions:
- - vsc
- references:
- - IANA
- - "[Robert_Hess]"
- - "{application/vnd.vidsoft.vidconference=http://www.iana.org/assignments/media-types/application/vnd.vidsoft.vidconference}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robert_Hess
- template:
- - application/vnd.vidsoft.vidconference
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.visio
- friendly:
- en: Microsoft Visio
- encoding: base64
- extensions:
- - vsd
- - vst
- - vsw
- - vss
- references:
- - IANA
- - "[Troy_Sandal]"
- - "{application/vnd.visio=http://www.iana.org/assignments/media-types/application/vnd.visio}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Troy_Sandal
- template:
- - application/vnd.visio
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.visionary
- friendly:
- en: Visionary
- encoding: base64
- extensions:
- - vis
- references:
- - IANA
- - "[Gayatri_Aravindakumar]"
- - "{application/vnd.visionary=http://www.iana.org/assignments/media-types/application/vnd.visionary}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gayatri_Aravindakumar
- template:
- - application/vnd.visionary
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.vividence.scriptfile
- encoding: base64
- references:
- - IANA
- - "[Mark_Risher]"
- - "{application/vnd.vividence.scriptfile=http://www.iana.org/assignments/media-types/application/vnd.vividence.scriptfile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Risher
- template:
- - application/vnd.vividence.scriptfile
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.vsf
- friendly:
- en: Viewport+
- encoding: base64
- extensions:
- - vsf
- references:
- - IANA
- - "[Delton_Rowe]"
- - "{application/vnd.vsf=http://www.iana.org/assignments/media-types/application/vnd.vsf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Delton_Rowe
- template:
- - application/vnd.vsf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wap.sic
- encoding: base64
- extensions:
- - sic
- references:
- - IANA
- - "[WAP-Forum]"
- - "{application/vnd.wap.sic=http://www.iana.org/assignments/media-types/application/vnd.wap.sic}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - WAP-Forum
- template:
- - application/vnd.wap.sic
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wap.slc
- encoding: base64
- extensions:
- - slc
- references:
- - IANA
- - "[WAP-Forum]"
- - "{application/vnd.wap-slc=http://www.iana.org/assignments/media-types/application/vnd.wap-slc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - WAP-Forum
- template:
- - application/vnd.wap-slc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wap.wbxml
- friendly:
- en: WAP Binary XML (WBXML)
- encoding: base64
- extensions:
- - wbxml
- references:
- - IANA
- - "[Peter_Stark]"
- - "{application/vnd.wap-wbxml=http://www.iana.org/assignments/media-types/application/vnd.wap-wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Stark
- template:
- - application/vnd.wap-wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wap.wmlc
- friendly:
- en: Compiled Wireless Markup Language (WMLC)
- encoding: base64
- extensions:
- - wmlc
- references:
- - IANA
- - "[Peter_Stark]"
- - "{application/vnd-wap-wmlc=http://www.iana.org/assignments/media-types/application/vnd-wap-wmlc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Stark
- template:
- - application/vnd-wap-wmlc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wap.wmlscriptc
- friendly:
- en: WMLScript
- encoding: base64
- extensions:
- - wmlsc
- references:
- - IANA
- - "[Peter_Stark]"
- - "{application/vnd.wap.wmlscriptc=http://www.iana.org/assignments/media-types/application/vnd.wap.wmlscriptc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Stark
- template:
- - application/vnd.wap.wmlscriptc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.webturbo
- friendly:
- en: WebTurbo
- encoding: base64
- extensions:
- - wtb
- references:
- - IANA
- - "[Yaser_Rehem]"
- - "{application/vnd.webturbo=http://www.iana.org/assignments/media-types/application/vnd.webturbo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yaser_Rehem
- template:
- - application/vnd.webturbo
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wfa.p2p
- encoding: base64
- references:
- - IANA
- - "[Mick_Conley]"
- - "{application/vnd.wfa.p2p=http://www.iana.org/assignments/media-types/application/vnd.wfa.p2p}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mick_Conley
- template:
- - application/vnd.wfa.p2p
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wfa.wsc
- encoding: base64
- references:
- - IANA
- - "[Wi-Fi_Alliance]"
- - "{application/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/application/vnd.wfa.wsc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Wi-Fi_Alliance
- template:
- - application/vnd.wfa.wsc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.windows.devicepairing
- encoding: base64
- references:
- - IANA
- - "[Priya_Dandawate]"
- - "{application/vnd.windows.devicepairing=http://www.iana.org/assignments/media-types/application/vnd.windows.devicepairing}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Priya_Dandawate
- template:
- - application/vnd.windows.devicepairing
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wmc
- encoding: base64
- references:
- - IANA
- - "[Thomas_Kjornes]"
- - "{application/vnd.wmc=http://www.iana.org/assignments/media-types/application/vnd.wmc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Kjornes
- template:
- - application/vnd.wmc
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wmf.bootstrap
- encoding: base64
- references:
- - IANA
- - "[Thinh_Nguyenphu]"
- - "[Prakash_Iyer]"
- - "{application/vnd.wmf.bootstrap=http://www.iana.org/assignments/media-types/application/vnd.wmf.bootstrap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Prakash_Iyer
- - Thinh_Nguyenphu
- template:
- - application/vnd.wmf.bootstrap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wolfram.mathematica
- encoding: base64
- references:
- - IANA
- - "[Wolfram]"
- - "{application/vnd.wolfram.mathematica=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Wolfram
- template:
- - application/vnd.wolfram.mathematica
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wolfram.mathematica.package
- encoding: base64
- references:
- - IANA
- - "[Wolfram]"
- - "{application/vnd.wolfram.mathematica.package=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica.package}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Wolfram
- template:
- - application/vnd.wolfram.mathematica.package
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wolfram.player
- friendly:
- en: Mathematica Notebook Player
- encoding: base64
- extensions:
- - nbp
- references:
- - IANA
- - "[Wolfram]"
- - "{application/vnd.wolfram.player=http://www.iana.org/assignments/media-types/application/vnd.wolfram.player}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Wolfram
- template:
- - application/vnd.wolfram.player
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wordperfect
- friendly:
- en: Wordperfect
- encoding: base64
- extensions:
- - wpd
- references:
- - IANA
- - "[Kim_Scarborough]"
- - "{application/vnd.wordperfect=http://www.iana.org/assignments/media-types/application/vnd.wordperfect}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kim_Scarborough
- template:
- - application/vnd.wordperfect
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wqd
- friendly:
- en: SundaHus WQ
- encoding: base64
- extensions:
- - wqd
- references:
- - IANA
- - "[Jan_Bostrom]"
- - "{application/vnd.wqd=http://www.iana.org/assignments/media-types/application/vnd.wqd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jan_Bostrom
- template:
- - application/vnd.wqd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wrq-hp3000-labelled
- encoding: base64
- references:
- - IANA
- - "[Chris_Bartram]"
- - "{application/vnd.wrq-hp3000-labelled=http://www.iana.org/assignments/media-types/application/vnd.wrq-hp3000-labelled}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Bartram
- template:
- - application/vnd.wrq-hp3000-labelled
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wt.stf
- friendly:
- en: Worldtalk
- encoding: base64
- extensions:
- - stf
- references:
- - IANA
- - "[Bill_Wohler]"
- - "{application/vnd.wt.stf=http://www.iana.org/assignments/media-types/application/vnd.wt.stf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Bill_Wohler
- template:
- - application/vnd.wt.stf
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wv.csp+wbxml
- encoding: base64
- extensions:
- - wv
- references:
- - IANA
- - "[Matti_Salmi]"
- - "{application/vnd.wv.csp+wbxml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+wbxml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Matti_Salmi
- template:
- - application/vnd.wv.csp+wbxml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wv.csp+xml
- encoding: 8bit
- references:
- - IANA
- - "[John_Ingi_Ingimundarson]"
- - "{application/vnd.wv.csp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Ingi_Ingimundarson
- template:
- - application/vnd.wv.csp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.wv.ssp+xml
- encoding: 8bit
- references:
- - IANA
- - "[John_Ingi_Ingimundarson]"
- - "{application/vnd.wv.ssp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.ssp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Ingi_Ingimundarson
- template:
- - application/vnd.wv.ssp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xacml+json
- encoding: base64
- references:
- - IANA
- - "[David_Brossard]"
- - "{application/vnd.xacml+json=http://www.iana.org/assignments/media-types/application/vnd.xacml+json}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Brossard
- template:
- - application/vnd.xacml+json
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xara
- friendly:
- en: CorelXARA
- encoding: base64
- extensions:
- - xar
- references:
- - IANA
- - "[David_Matthewman]"
- - "{application/vnd.xara=http://www.iana.org/assignments/media-types/application/vnd.xara}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Matthewman
- template:
- - application/vnd.xara
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xfdl
- friendly:
- en: Extensible Forms Description Language
- encoding: base64
- extensions:
- - xfdl
- references:
- - IANA
- - "[Dave_Manning]"
- - "{application/vnd.xfdl=http://www.iana.org/assignments/media-types/application/vnd.xfdl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dave_Manning
- template:
- - application/vnd.xfdl
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xfdl.webform
- encoding: base64
- references:
- - IANA
- - "[Michael_Mansell]"
- - "{application/vnd.xfdl.webform=http://www.iana.org/assignments/media-types/application/vnd.xfdl.webform}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Mansell
- template:
- - application/vnd.xfdl.webform
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xmi+xml
- encoding: base64
- references:
- - IANA
- - "[Fred_Waskiewicz]"
- - "{application/vnd.xmi+xml=http://www.iana.org/assignments/media-types/application/vnd.xmi+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Fred_Waskiewicz
- template:
- - application/vnd.xmi+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xmpie.cpkg
- encoding: base64
- references:
- - IANA
- - "[Reuven_Sherwin]"
- - "{application/vnd.xmpie.cpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.cpkg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reuven_Sherwin
- template:
- - application/vnd.xmpie.cpkg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xmpie.dpkg
- encoding: base64
- references:
- - IANA
- - "[Reuven_Sherwin]"
- - "{application/vnd.xmpie.dpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.dpkg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reuven_Sherwin
- template:
- - application/vnd.xmpie.dpkg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xmpie.plan
- encoding: base64
- references:
- - IANA
- - "[Reuven_Sherwin]"
- - "{application/vnd.xmpie.plan=http://www.iana.org/assignments/media-types/application/vnd.xmpie.plan}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reuven_Sherwin
- template:
- - application/vnd.xmpie.plan
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xmpie.ppkg
- encoding: base64
- references:
- - IANA
- - "[Reuven_Sherwin]"
- - "{application/vnd.xmpie.ppkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.ppkg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reuven_Sherwin
- template:
- - application/vnd.xmpie.ppkg
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.xmpie.xlim
- encoding: base64
- references:
- - IANA
- - "[Reuven_Sherwin]"
- - "{application/vnd.xmpie.xlim=http://www.iana.org/assignments/media-types/application/vnd.xmpie.xlim}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Reuven_Sherwin
- template:
- - application/vnd.xmpie.xlim
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.hv-dic
- friendly:
- en: HV Voice Dictionary
- encoding: base64
- extensions:
- - hvd
- references:
- - IANA
- - "[Tomohiro_Yamamoto]"
- - "{application/vnd.yamaha.hv-dic=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-dic}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tomohiro_Yamamoto
- template:
- - application/vnd.yamaha.hv-dic
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.hv-script
- friendly:
- en: HV Script
- encoding: base64
- extensions:
- - hvs
- references:
- - IANA
- - "[Tomohiro_Yamamoto]"
- - "{application/vnd.yamaha.hv-script=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-script}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tomohiro_Yamamoto
- template:
- - application/vnd.yamaha.hv-script
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.hv-voice
- friendly:
- en: HV Voice Parameter
- encoding: base64
- extensions:
- - hvp
- references:
- - IANA
- - "[Tomohiro_Yamamoto]"
- - "{application/vnd.yamaha.hv-voice=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-voice}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tomohiro_Yamamoto
- template:
- - application/vnd.yamaha.hv-voice
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.openscoreformat
- friendly:
- en: Open Score Format
- encoding: base64
- extensions:
- - osf
- references:
- - IANA
- - "[Mark_Olleson]"
- - "{application/vnd.yamaha.openscoreformat=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Olleson
- template:
- - application/vnd.yamaha.openscoreformat
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.openscoreformat.osfpvg+xml
- friendly:
- en: OSFPVG
- encoding: base64
- extensions:
- - osfpvg
- references:
- - IANA
- - "[Mark_Olleson]"
- - "{application/vnd.yamaha.openscoreformat.osfpvg+xml=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat.osfpvg+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Olleson
- template:
- - application/vnd.yamaha.openscoreformat.osfpvg+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.remote-setup
- encoding: base64
- references:
- - IANA
- - "[Takehiro_Sukizaki]"
- - "{application/vnd.yamaha.remote-setup=http://www.iana.org/assignments/media-types/application/vnd.yamaha.remote-setup}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Takehiro_Sukizaki
- template:
- - application/vnd.yamaha.remote-setup
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.smaf-audio
- friendly:
- en: SMAF Audio
- encoding: base64
- extensions:
- - saf
- references:
- - IANA
- - "[Keiichi_Shinoda]"
- - "{application/vnd.yamaha.smaf-audio=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-audio}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Keiichi_Shinoda
- template:
- - application/vnd.yamaha.smaf-audio
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.smaf-phrase
- friendly:
- en: SMAF Phrase
- encoding: base64
- extensions:
- - spf
- references:
- - IANA
- - "[Keiichi_Shinoda]"
- - "{application/vnd.yamaha.smaf-phrase=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-phrase}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Keiichi_Shinoda
- template:
- - application/vnd.yamaha.smaf-phrase
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.through-ngn
- encoding: base64
- references:
- - IANA
- - "[Takehiro_Sukizaki]"
- - "{application/vnd.yamaha.through-ngn=http://www.iana.org/assignments/media-types/application/vnd.yamaha.through-ngn}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Takehiro_Sukizaki
- template:
- - application/vnd.yamaha.through-ngn
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yamaha.tunnel-udpencap
- encoding: base64
- references:
- - IANA
- - "[Takehiro_Sukizaki]"
- - "{application/vnd.yamaha.tunnel-udpencap=http://www.iana.org/assignments/media-types/application/vnd.yamaha.tunnel-udpencap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Takehiro_Sukizaki
- template:
- - application/vnd.yamaha.tunnel-udpencap
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yaoweme
- encoding: base64
- references:
- - IANA
- - "[Jens_Jorgensen]"
- - "{application/vnd.yaoweme=http://www.iana.org/assignments/media-types/application/vnd.yaoweme}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jens_Jorgensen
- template:
- - application/vnd.yaoweme
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.yellowriver-custom-menu
- friendly:
- en: CustomMenu
- encoding: base64
- extensions:
- - cmp
- references:
- - IANA
- - "[Mr._Yellow]"
- - "{application/vnd.yellowriver-custom-menu=http://www.iana.org/assignments/media-types/application/vnd.yellowriver-custom-menu}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mr._Yellow
- template:
- - application/vnd.yellowriver-custom-menu
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.zul
- friendly:
- en: Z.U.L. Geometry
- encoding: base64
- extensions:
- - zir
- - zirz
- references:
- - IANA
- - "[Rene_Grothmann]"
- - "{application/vnd.zul=http://www.iana.org/assignments/media-types/application/vnd.zul}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Rene_Grothmann
- template:
- - application/vnd.zul
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vnd.zzazz.deck+xml
- friendly:
- en: Zzazz Deck
- encoding: base64
- extensions:
- - zaz
- references:
- - IANA
- - "[Micheal_Hewett]"
- - "{application/vnd.zzazz.deck+xml=http://www.iana.org/assignments/media-types/application/vnd.zzazz.deck+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Micheal_Hewett
- template:
- - application/vnd.zzazz.deck+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/voicexml+xml
- friendly:
- en: VoiceXML
- encoding: base64
- extensions:
- - vxml
- references:
- - IANA
- - RFC4267
- - "{application/voicexml+xml=http://www.iana.org/assignments/media-types/application/voicexml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4267
- template:
- - application/voicexml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/vq-rtcpxr
- encoding: base64
- references:
- - IANA
- - RFC6035
- - "{application/vq-rtcpxr=http://www.iana.org/assignments/media-types/application/vq-rtcpxr}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6035
- template:
- - application/vq-rtcpxr
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/watcherinfo+xml
- encoding: base64
- extensions:
- - wif
- references:
- - IANA
- - RFC3858
- - "{application/watcherinfo+xml=http://www.iana.org/assignments/media-types/application/watcherinfo+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3858
- template:
- - application/watcherinfo+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/whoispp-query
- encoding: base64
- references:
- - IANA
- - RFC2957
- - "{application/whoispp-query=http://www.iana.org/assignments/media-types/application/whoispp-query}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2957
- template:
- - application/whoispp-query
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/whoispp-response
- encoding: base64
- references:
- - IANA
- - RFC2958
- - "{application/whoispp-response=http://www.iana.org/assignments/media-types/application/whoispp-response}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2958
- template:
- - application/whoispp-response
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/widget
- friendly:
- en: Widget Packaging and XML Configuration
- encoding: base64
- extensions:
- - wgt
- references:
- - IANA
- - "[W3C]"
- - "[Steven_Pemberton]"
- - "{http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steven_Pemberton
- - W3C
- uri:
- - http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/winhlp
- friendly:
- en: WinHelp
- encoding: base64
- extensions:
- - hlp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/wita
- encoding: base64
- references:
- - IANA
- - "[Larry_Campbell]"
- - "{application/wita=http://www.iana.org/assignments/media-types/application/wita}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Larry_Campbell
- template:
- - application/wita
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/word
- encoding: base64
- extensions:
- - doc
- - dot
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/wordperfect
- encoding: base64
- extensions:
- - wp
- obsolete: true
- use-instead: application/vnd.wordperfect
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/wordperfect5.1
- encoding: base64
- extensions:
- - wp5
- - wp
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{application/wordperfect5.1=http://www.iana.org/assignments/media-types/application/wordperfect5.1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - application/wordperfect5.1
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/wordperfect6.1
- encoding: base64
- extensions:
- - wp6
- obsolete: true
- use-instead: application/x-wordperfect6.1
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/wordperfectd
- encoding: base64
- extensions:
- - wpd
- obsolete: true
- use-instead: application/vnd.wordperfect
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/wsdl+xml
- friendly:
- en: WSDL - Web Services Description Language
- encoding: base64
- extensions:
- - wsdl
- references:
- - IANA
- - "[W3C]"
- - "{application/wsdl+xml=http://www.iana.org/assignments/media-types/application/wsdl+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- template:
- - application/wsdl+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/wspolicy+xml
- friendly:
- en: Web Services Policy
- encoding: base64
- extensions:
- - wspolicy
- references:
- - IANA
- - "[W3C]"
- - "{application/wspolicy+xml=http://www.iana.org/assignments/media-types/application/wspolicy+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- template:
- - application/wspolicy+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/x-123
- encoding: base64
- extensions:
- - wk
- obsolete: true
- use-instead: application/vnd.lotus-1-2-3
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-7z-compressed
- friendly:
- en: 7-Zip
- encoding: base64
- extensions:
- - 7z
- references:
- - "{7zip=http://www.7-zip.org/7z.html}"
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-abiword
- friendly:
- en: AbiWord
- encoding: base64
- extensions:
- - abw
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-access
- encoding: base64
- extensions:
- - mdf
- - mda
- - mdb
- - mde
- obsolete: true
- use-instead: application/x-msaccess
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ace-compressed
- friendly:
- en: Ace Archive
- encoding: base64
- extensions:
- - ace
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-apple-diskimage
- encoding: base64
- extensions:
- - dmg
- registered: false
- system: !ruby/regexp /(?-mix:mac)/
-- !ruby/object:MIME::Type
- content-type: application/x-authorware-bin
- friendly:
- en: Adobe (Macropedia) Authorware - Binary File
- encoding: base64
- extensions:
- - aab
- - u32
- - vox
- - x32
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-authorware-map
- friendly:
- en: Adobe (Macropedia) Authorware - Map
- encoding: base64
- extensions:
- - aam
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-authorware-seg
- friendly:
- en: Adobe (Macropedia) Authorware - Segment File
- encoding: base64
- extensions:
- - aas
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-bcpio
- friendly:
- en: Binary CPIO Archive
- encoding: base64
- extensions:
- - bcpio
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-bittorrent
- friendly:
- en: BitTorrent
- encoding: base64
- extensions:
- - torrent
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-bleeper
- encoding: base64
- extensions:
- - bleep
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-blorb
- encoding: base64
- extensions:
- - blb
- - blorb
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-bzip
- friendly:
- en: Bzip Archive
- encoding: base64
- extensions:
- - bz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-bzip2
- friendly:
- en: Bzip2 Archive
- encoding: base64
- extensions:
- - boz
- - bz2
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-cbr
- encoding: base64
- extensions:
- - cb7
- - cba
- - cbr
- - cbt
- - cbz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-cdlink
- friendly:
- en: Video CD
- encoding: base64
- extensions:
- - vcd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-cfs-compressed
- encoding: base64
- extensions:
- - cfs
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-chat
- friendly:
- en: pIRCh
- encoding: base64
- extensions:
- - chat
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-chess-pgn
- friendly:
- en: Portable Game Notation (Chess Games)
- encoding: base64
- extensions:
- - pgn
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-chrome-extension
- encoding: base64
- extensions:
- - crx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-clariscad
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-compress
- encoding: base64
- extensions:
- - z
- - Z
- obsolete: true
- use-instead: application/x-compressed
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-compressed
- encoding: base64
- extensions:
- - z
- - Z
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-conference
- encoding: base64
- extensions:
- - nsc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-cpio
- friendly:
- en: CPIO Archive
- encoding: base64
- extensions:
- - cpio
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-csh
- friendly:
- en: C Shell Script
- encoding: 8bit
- extensions:
- - csh
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-cu-seeme
- encoding: base64
- extensions:
- - csm
- - cu
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-debian-package
- friendly:
- en: Debian Package
- encoding: base64
- extensions:
- - deb
- - udeb
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-dgc-compressed
- encoding: base64
- extensions:
- - dgc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-director
- friendly:
- en: Adobe Shockwave Player
- encoding: base64
- extensions:
- - dcr
- - "@dir"
- - "@dxr"
- - cct
- - cst
- - cxt
- - dir
- - dxr
- - fgd
- - swa
- - w3d
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-doom
- friendly:
- en: Doom Video Game
- encoding: base64
- extensions:
- - wad
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-drafting
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-dtbncx+xml
- friendly:
- en: Navigation Control file for XML (for ePub)
- encoding: base64
- extensions:
- - ncx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-dtbook+xml
- friendly:
- en: Digital Talking Book
- encoding: base64
- extensions:
- - dtb
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-dtbresource+xml
- friendly:
- en: Digital Talking Book - Resource File
- encoding: base64
- extensions:
- - res
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-dvi
- friendly:
- en: Device Independent File Format (DVI)
- encoding: base64
- extensions:
- - dvi
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-dxf
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-envoy
- encoding: base64
- extensions:
- - evy
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-eva
- encoding: base64
- extensions:
- - eva
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-excel
- encoding: base64
- obsolete: true
- use-instead: application/vnd.ms-excel
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-bdf
- friendly:
- en: Glyph Bitmap Distribution Format
- encoding: base64
- extensions:
- - bdf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-ghostscript
- friendly:
- en: Ghostscript Font
- encoding: base64
- extensions:
- - gsf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-linux-psf
- friendly:
- en: PSF Fonts
- encoding: base64
- extensions:
- - psf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-opentype
- encoding: base64
- extensions:
- - otf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-otf
- friendly:
- en: OpenType Font File
- encoding: base64
- extensions:
- - otf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-pcf
- friendly:
- en: Portable Compiled Format
- encoding: base64
- extensions:
- - pcf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-snf
- friendly:
- en: Server Normal Format
- encoding: base64
- extensions:
- - snf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-truetype
- encoding: base64
- extensions:
- - ttf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-ttf
- friendly:
- en: TrueType Font
- encoding: base64
- extensions:
- - ttc
- - ttf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-font-type1
- friendly:
- en: PostScript Fonts
- encoding: base64
- extensions:
- - afm
- - pfa
- - pfb
- - pfm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-fractals
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-freearc
- encoding: base64
- extensions:
- - arc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-futuresplash
- friendly:
- en: FutureSplash Animator
- encoding: base64
- extensions:
- - spl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-gca-compressed
- encoding: base64
- extensions:
- - gca
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ghostview
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-glulx
- encoding: base64
- extensions:
- - ulx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-gnumeric
- friendly:
- en: Gnumeric
- encoding: base64
- extensions:
- - gnumeric
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-gramps-xml
- encoding: base64
- extensions:
- - gramps
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-gtar
- friendly:
- en: GNU Tar Files
- encoding: base64
- extensions:
- - gtar
- - tgz
- - tbz2
- - tbz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-gzip
- encoding: base64
- extensions:
- - gz
- obsolete: true
- use-instead: application/gzip
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-hdf
- friendly:
- en: Hierarchical Data Format
- encoding: base64
- extensions:
- - hdf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-hep
- encoding: base64
- extensions:
- - hep
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-html+ruby
- encoding: 8bit
- extensions:
- - rhtml
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-httpd-php
- encoding: 8bit
- extensions:
- - phtml
- - pht
- - php
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ibooks+zip
- encoding: base64
- extensions:
- - ibooks
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ica
- encoding: base64
- extensions:
- - ica
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ideas
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-imagemap
- encoding: 8bit
- extensions:
- - imagemap
- - imap
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-install-instructions
- encoding: base64
- extensions:
- - install
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-iso9660-image
- encoding: base64
- extensions:
- - iso
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-iwork-keynote-sffkey
- encoding: base64
- extensions:
- - key
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-iwork-numbers-sffnumbers
- encoding: base64
- extensions:
- - numbers
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-iwork-pages-sffpages
- encoding: base64
- extensions:
- - pages
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-java-archive
- encoding: base64
- extensions:
- - jar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-java-jnlp-file
- friendly:
- en: Java Network Launching Protocol
- encoding: base64
- extensions:
- - jnlp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-java-serialized-object
- encoding: base64
- extensions:
- - ser
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-java-vm
- encoding: base64
- extensions:
- - class
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-javascript
- encoding: 8bit
- extensions:
- - js
- obsolete: true
- use-instead: application/javascript
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-koan
- encoding: base64
- extensions:
- - skp
- - skd
- - skt
- - skm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-latex
- friendly:
- en: LaTeX
- encoding: 8bit
- extensions:
- - ltx
- - latex
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-lotus-123
- encoding: base64
- extensions:
- - wks
- obsolete: true
- use-instead: application/vnd.lotus-1-2-3
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-lzh-compressed
- encoding: base64
- extensions:
- - lha
- - lzh
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mac
- encoding: base64
- extensions:
- - bin
- registered: false
- system: !ruby/regexp /(?-mix:mac)/
-- !ruby/object:MIME::Type
- content-type: application/x-mac-compactpro
- encoding: base64
- extensions:
- - cpt
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-macbase64
- encoding: base64
- extensions:
- - bin
- registered: false
- system: !ruby/regexp /(?-mix:mac)/
-- !ruby/object:MIME::Type
- content-type: application/x-macbinary
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-maker
- encoding: base64
- extensions:
- - frm
- - maker
- - frame
- - fm
- - fb
- - book
- - fbdoc
- obsolete: true
- use-instead: application/vnd.framemaker
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mathcad
- encoding: base64
- extensions:
- - mcd
- obsolete: true
- use-instead: application/vnd.mcd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mathematica-old
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mie
- encoding: base64
- extensions:
- - mie
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mif
- encoding: base64
- extensions:
- - mif
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mobipocket-ebook
- friendly:
- en: Mobipocket
- encoding: base64
- extensions:
- - mobi
- - prc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ms-application
- friendly:
- en: Microsoft ClickOnce
- encoding: base64
- extensions:
- - application
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ms-shortcut
- encoding: base64
- extensions:
- - lnk
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ms-wmd
- friendly:
- en: Microsoft Windows Media Player Download Package
- encoding: base64
- extensions:
- - wmd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ms-wmz
- friendly:
- en: Microsoft Windows Media Player Skin Package
- encoding: base64
- extensions:
- - wmz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ms-xbap
- friendly:
- en: Microsoft XAML Browser Application
- encoding: base64
- extensions:
- - xbap
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msaccess
- friendly:
- en: Microsoft Access
- encoding: base64
- extensions:
- - mda
- - mdb
- - mde
- - mdf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msbinder
- friendly:
- en: Microsoft Office Binder
- encoding: base64
- extensions:
- - obd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mscardfile
- friendly:
- en: Microsoft Information Card
- encoding: base64
- extensions:
- - crd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msclip
- friendly:
- en: Microsoft Clipboard Clip
- encoding: base64
- extensions:
- - clp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msdos-program
- encoding: base64
- extensions:
- - cmd
- - bat
- - com
- - exe
- - reg
- - ps1
- - vbs
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msdownload
- friendly:
- en: Microsoft Application
- encoding: base64
- extensions:
- - exe
- - com
- - cmd
- - bat
- - dll
- - msi
- - reg
- - ps1
- - vbs
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msmediaview
- friendly:
- en: Microsoft MediaView
- encoding: base64
- extensions:
- - m13
- - m14
- - mvb
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msmetafile
- friendly:
- en: Microsoft Windows Metafile
- encoding: base64
- extensions:
- - emf
- - emz
- - wmf
- - wmz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msmoney
- friendly:
- en: Microsoft Money
- encoding: base64
- extensions:
- - mny
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mspublisher
- friendly:
- en: Microsoft Publisher
- encoding: base64
- extensions:
- - pub
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msschedule
- friendly:
- en: Microsoft Schedule+
- encoding: base64
- extensions:
- - scd
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msterminal
- friendly:
- en: Microsoft Windows Terminal Services
- encoding: base64
- extensions:
- - trm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-msword
- encoding: base64
- extensions:
- - doc
- - dot
- - wrd
- obsolete: true
- use-instead: application/msword
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-mswrite
- friendly:
- en: Microsoft Wordpad
- encoding: base64
- extensions:
- - wri
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-netcdf
- friendly:
- en: Network Common Data Form (NetCDF)
- encoding: base64
- extensions:
- - nc
- - cdf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ns-proxy-autoconfig
- encoding: base64
- extensions:
- - pac
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-nzb
- encoding: base64
- extensions:
- - nzb
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-opera-extension
- encoding: base64
- extensions:
- - oex
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-pagemaker
- encoding: base64
- extensions:
- - pm
- - pm5
- - pt5
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-perl
- encoding: 8bit
- extensions:
- - pl
- - pm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-pgp
- encoding: base64
- registered: false
- signature: true
-- !ruby/object:MIME::Type
- content-type: application/x-pkcs12
- friendly:
- en: 'PKCS #12 - Personal Information Exchange Syntax Standard'
- encoding: base64
- extensions:
- - p12
- - pfx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-pkcs7-certificates
- friendly:
- en: 'PKCS #7 - Cryptographic Message Syntax Standard (Certificates)'
- encoding: base64
- extensions:
- - p7b
- - spc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-pkcs7-certreqresp
- friendly:
- en: 'PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)'
- encoding: base64
- extensions:
- - p7r
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-python
- encoding: 8bit
- extensions:
- - py
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-quicktimeplayer
- encoding: base64
- extensions:
- - qtl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-rar-compressed
- friendly:
- en: RAR Archive
- encoding: base64
- extensions:
- - rar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-remote_printing
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-research-info-systems
- encoding: base64
- extensions:
- - ris
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-rtf
- encoding: base64
- extensions:
- - rtf
- obsolete: true
- use-instead: application/rtf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ruby
- encoding: 8bit
- extensions:
- - rb
- - rbw
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-set
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-sh
- friendly:
- en: Bourne Shell Script
- encoding: 8bit
- extensions:
- - sh
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-shar
- friendly:
- en: Shell Archive
- encoding: 8bit
- extensions:
- - shar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-shockwave-flash
- friendly:
- en: Adobe Flash
- encoding: base64
- extensions:
- - swf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-silverlight-app
- friendly:
- en: Microsoft Silverlight
- encoding: base64
- extensions:
- - xap
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-SLA
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-solids
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-spss
- encoding: base64
- extensions:
- - sav
- - sbs
- - sps
- - spo
- - spp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-sql
- encoding: base64
- extensions:
- - sql
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-STEP
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-stuffit
- friendly:
- en: Stuffit Archive
- encoding: base64
- extensions:
- - sit
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-stuffitx
- friendly:
- en: Stuffit Archive
- encoding: base64
- extensions:
- - sitx
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-subrip
- encoding: base64
- extensions:
- - srt
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-sv4cpio
- friendly:
- en: System V Release 4 CPIO Archive
- encoding: base64
- extensions:
- - sv4cpio
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-sv4crc
- friendly:
- en: System V Release 4 CPIO Checksum Data
- encoding: base64
- extensions:
- - sv4crc
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-t3vm-image
- encoding: base64
- extensions:
- - t3
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-tads
- encoding: base64
- extensions:
- - gam
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-tar
- friendly:
- en: Tar File (Tape Archive)
- encoding: base64
- extensions:
- - tar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-tcl
- friendly:
- en: Tcl Script
- encoding: 8bit
- extensions:
- - tcl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-tex
- friendly:
- en: TeX
- encoding: 8bit
- extensions:
- - tex
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-tex-tfm
- friendly:
- en: TeX Font Metric
- encoding: base64
- extensions:
- - tfm
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-texinfo
- friendly:
- en: GNU Texinfo Document
- encoding: 8bit
- extensions:
- - texinfo
- - texi
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-tgif
- encoding: base64
- extensions:
- - obj
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-toolbook
- encoding: base64
- extensions:
- - tbk
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-troff
- encoding: base64
- extensions:
- - t
- - tr
- - roff
- obsolete: true
- use-instead: text/troff
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-troff-man
- encoding: 8bit
- extensions:
- - man
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-troff-me
- encoding: base64
- extensions:
- - me
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-troff-ms
- encoding: base64
- extensions:
- - ms
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-u-star
- encoding: base64
- obsolete: true
- use-instead: application/x-ustar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-ustar
- friendly:
- en: Ustar (Uniform Standard Tape Archive)
- encoding: base64
- extensions:
- - ustar
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-VMSBACKUP
- encoding: base64
- extensions:
- - bck
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-wais-source
- friendly:
- en: WAIS Source
- encoding: base64
- extensions:
- - src
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-web-app-manifest+json
- encoding: base64
- extensions:
- - webapp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-Wingz
- encoding: base64
- extensions:
- - wz
- - wkz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-word
- encoding: base64
- extensions:
- - doc
- - dot
- obsolete: true
- use-instead: application/msword
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-wordperfect
- encoding: base64
- extensions:
- - wp
- obsolete: true
- use-instead: application/vnd.wordperfect
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-wordperfect6.1
- encoding: base64
- extensions:
- - wp6
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-wordperfectd
- encoding: base64
- extensions:
- - wpd
- obsolete: true
- use-instead: application/vnd.wordperfect
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-www-form-urlencoded
- encoding: 7bit
- references:
- - IANA
- - "[W3C]"
- - "[Robin_Berjon]"
- - "{application/x-www-form-urlencoded=http://www.iana.org/assignments/media-types/application/x-www-form-urlencoded}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robin_Berjon
- - W3C
- template:
- - application/x-www-form-urlencoded
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/x-x509-ca-cert
- friendly:
- en: X.509 Certificate
- encoding: base64
- extensions:
- - crt
- - der
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-xfig
- friendly:
- en: Xfig
- encoding: base64
- extensions:
- - fig
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-xliff+xml
- encoding: base64
- extensions:
- - xlf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-xpinstall
- friendly:
- en: XPInstall - Mozilla
- encoding: base64
- extensions:
- - xpi
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-xz
- encoding: base64
- extensions:
- - xz
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x-zmachine
- encoding: base64
- extensions:
- - z1
- - z2
- - z3
- - z4
- - z5
- - z6
- - z7
- - z8
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/x400-bp
- encoding: base64
- references:
- - IANA
- - RFC1494
- - "{application/x400-bp=http://www.iana.org/assignments/media-types/application/x400-bp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1494
- template:
- - application/x400-bp
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/x400.bp
- encoding: base64
- obsolete: true
- use-instead: application/x400-bp
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/xacml+xml
- encoding: base64
- references:
- - IANA
- - RFC7061
- - "{application/xacml+xml=http://www.iana.org/assignments/media-types/application/xacml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7061
- template:
- - application/xacml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xaml+xml
- encoding: base64
- extensions:
- - xaml
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/xcap-att+xml
- encoding: base64
- references:
- - IANA
- - RFC4825
- - "{application/xcap-att+xml=http://www.iana.org/assignments/media-types/application/xcap-att+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4825
- template:
- - application/xcap-att+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcap-caps+xml
- encoding: base64
- references:
- - IANA
- - RFC4825
- - "{application/xcap-caps+xml=http://www.iana.org/assignments/media-types/application/xcap-caps+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4825
- template:
- - application/xcap-caps+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcap-diff+xml
- friendly:
- en: XML Configuration Access Protocol - XCAP Diff
- encoding: base64
- extensions:
- - xdf
- references:
- - IANA
- - RFC5874
- - "{application/xcap-diff+xml=http://www.iana.org/assignments/media-types/application/xcap-diff+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5874
- template:
- - application/xcap-diff+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcap-el+xml
- encoding: base64
- references:
- - IANA
- - RFC4825
- - "{application/xcap-el+xml=http://www.iana.org/assignments/media-types/application/xcap-el+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4825
- template:
- - application/xcap-el+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcap-error+xml
- encoding: base64
- references:
- - IANA
- - RFC4825
- - "{application/xcap-error+xml=http://www.iana.org/assignments/media-types/application/xcap-error+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4825
- template:
- - application/xcap-error+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcap-ns+xml
- encoding: base64
- references:
- - IANA
- - RFC4825
- - "{application/xcap-ns+xml=http://www.iana.org/assignments/media-types/application/xcap-ns+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4825
- template:
- - application/xcap-ns+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcon-conference-info+xml
- encoding: base64
- references:
- - IANA
- - RFC6502
- - "{application/xcon-conference-info+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6502
- template:
- - application/xcon-conference-info+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xcon-conference-info-diff+xml
- encoding: base64
- references:
- - IANA
- - RFC6502
- - "{application/xcon-conference-info-diff+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info-diff+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6502
- template:
- - application/xcon-conference-info-diff+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xenc+xml
- friendly:
- en: XML Encryption Syntax and Processing
- encoding: base64
- extensions:
- - xenc
- references:
- - IANA
- - "[Joseph_Reagle]"
- - "[XENC_Working_Group]"
- - "{application/xenc+xml=http://www.iana.org/assignments/media-types/application/xenc+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Joseph_Reagle
- - XENC_Working_Group
- template:
- - application/xenc+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xhtml+xml
- friendly:
- en: XHTML - The Extensible HyperText Markup Language
- encoding: 8bit
- extensions:
- - xht
- - xhtml
- references:
- - IANA
- - "[W3C]"
- - "[Robin_Berjon]"
- - "{application/xhtml+xml=http://www.iana.org/assignments/media-types/application/xhtml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robin_Berjon
- - W3C
- template:
- - application/xhtml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xhtml-voice+xml
- encoding: base64
- obsolete: true
- references:
- - IANA
- - DRAFT:draft-mccobb-xplusv-media-type
- - "{application/xhtml-voice+xml=http://www.iana.org/assignments/media-types/application/xhtml-voice+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - draft-mccobb-xplusv-media-type
- template:
- - application/xhtml-voice+xml
- notes:
- - "- OBSOLETE; no replacement given"
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xml
- friendly:
- en: XML - Extensible Markup Language
- encoding: 8bit
- extensions:
- - xml
- - xsl
- references:
- - IANA
- - RFC7303
- - "{application/xml=http://www.iana.org/assignments/media-types/application/xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7303
- template:
- - application/xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xml-dtd
- friendly:
- en: Document Type Definition
- encoding: 8bit
- extensions:
- - dtd
- references:
- - IANA
- - RFC7303
- - "{application/xml-dtd=http://www.iana.org/assignments/media-types/application/xml-dtd}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7303
- template:
- - application/xml-dtd
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xml-external-parsed-entity
- encoding: base64
- references:
- - IANA
- - RFC7303
- - "{application/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/application/xml-external-parsed-entity}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7303
- template:
- - application/xml-external-parsed-entity
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xml-patch+xml
- encoding: base64
- references:
- - IANA
- - RFC7351
- - "{application/xml-patch+xml=http://www.iana.org/assignments/media-types/application/xml-patch+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7351
- template:
- - application/xml-patch+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xmpp+xml
- encoding: base64
- references:
- - IANA
- - RFC3923
- - "{application/xmpp+xml=http://www.iana.org/assignments/media-types/application/xmpp+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3923
- template:
- - application/xmpp+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xop+xml
- friendly:
- en: XML-Binary Optimized Packaging
- encoding: base64
- extensions:
- - xop
- references:
- - IANA
- - "[Mark_Nottingham]"
- - "{application/xop+xml=http://www.iana.org/assignments/media-types/application/xop+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Nottingham
- template:
- - application/xop+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xproc+xml
- encoding: base64
- extensions:
- - xpl
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/xslt+xml
- friendly:
- en: XML Transformations
- encoding: base64
- extensions:
- - xslt
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/xspf+xml
- friendly:
- en: XSPF - XML Shareable Playlist Format
- encoding: base64
- extensions:
- - xspf
- registered: false
-- !ruby/object:MIME::Type
- content-type: application/xv+xml
- friendly:
- en: MXML
- encoding: base64
- extensions:
- - mxml
- - xhvml
- - xvm
- - xvml
- references:
- - IANA
- - RFC4374
- - "{application/xv+xml=http://www.iana.org/assignments/media-types/application/xv+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4374
- template:
- - application/xv+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/yang
- friendly:
- en: YANG Data Modeling Language
- encoding: base64
- extensions:
- - yang
- references:
- - IANA
- - RFC6020
- - "{application/yang=http://www.iana.org/assignments/media-types/application/yang}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6020
- template:
- - application/yang
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/yin+xml
- friendly:
- en: YIN (YANG - XML)
- encoding: base64
- extensions:
- - yin
- references:
- - IANA
- - RFC6020
- - "{application/yin+xml=http://www.iana.org/assignments/media-types/application/yin+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6020
- template:
- - application/yin+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/zip
- friendly:
- en: Zip Archive
- encoding: base64
- extensions:
- - zip
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{application/zip=http://www.iana.org/assignments/media-types/application/zip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - application/zip
- registered: true
-- !ruby/object:MIME::Type
- content-type: application/zlib
- encoding: base64
- references:
- - IANA
- - RFC6713
- - "{application/zlib=http://www.iana.org/assignments/media-types/application/zlib}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6713
- template:
- - application/zlib
- registered: true
diff --git a/type-lists/audio.yaml b/type-lists/audio.yaml
deleted file mode 100644
index e88f465..0000000
--- a/type-lists/audio.yaml
+++ /dev/null
@@ -1,2118 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: audio/1d-interleaved-parityfec
- encoding: base64
- references:
- - IANA
- - RFC6015
- - "{audio/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/audio/1d-interleaved-parityfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6015
- template:
- - audio/1d-interleaved-parityfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/32kadpcm
- encoding: base64
- references:
- - IANA
- - RFC3802
- - RFC2421
- - "{audio/32kadpcm=http://www.iana.org/assignments/media-types/audio/32kadpcm}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2421
- - rfc3802
- template:
- - audio/32kadpcm
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/3gpp
- encoding: base64
- references:
- - IANA
- - RFC3839
- - RFC6381
- - "{audio/3gpp=http://www.iana.org/assignments/media-types/audio/3gpp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3839
- - rfc6381
- template:
- - audio/3gpp
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/3gpp2
- encoding: base64
- references:
- - IANA
- - RFC4393
- - RFC6381
- - "{audio/3gpp2=http://www.iana.org/assignments/media-types/audio/3gpp2}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4393
- - rfc6381
- template:
- - audio/3gpp2
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ac3
- encoding: base64
- references:
- - IANA
- - RFC4184
- - "{audio/ac3=http://www.iana.org/assignments/media-types/audio/ac3}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4184
- template:
- - audio/ac3
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/adpcm
- friendly:
- en: Adaptive differential pulse-code modulation
- encoding: base64
- extensions:
- - adp
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/AMR
- encoding: base64
- extensions:
- - amr
- references:
- - IANA
- - RFC4867
- - "{audio/AMR=http://www.iana.org/assignments/media-types/audio/AMR}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4867
- template:
- - audio/AMR
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/AMR-WB
- encoding: base64
- extensions:
- - awb
- references:
- - IANA
- - RFC4867
- - "{audio/AMR-WB=http://www.iana.org/assignments/media-types/audio/AMR-WB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4867
- template:
- - audio/AMR-WB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/amr-wb+
- encoding: base64
- references:
- - IANA
- - RFC4352
- - "{audio/amr-wb+=http://www.iana.org/assignments/media-types/audio/amr-wb+}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4352
- template:
- - audio/amr-wb+
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/aptx
- encoding: base64
- references:
- - IANA
- - RFC7310
- - "{audio/aptx=http://www.iana.org/assignments/media-types/audio/aptx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7310
- template:
- - audio/aptx
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/asc
- encoding: base64
- references:
- - IANA
- - RFC6295
- - "{audio/asc=http://www.iana.org/assignments/media-types/audio/asc}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6295
- template:
- - audio/asc
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ATRAC-ADVANCED-LOSSLESS
- encoding: base64
- references:
- - IANA
- - RFC5584
- - "{audio/ATRAC-ADVANCED-LOSSLESS=http://www.iana.org/assignments/media-types/audio/ATRAC-ADVANCED-LOSSLESS}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5584
- template:
- - audio/ATRAC-ADVANCED-LOSSLESS
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ATRAC-X
- encoding: base64
- references:
- - IANA
- - RFC5584
- - "{audio/ATRAC-X=http://www.iana.org/assignments/media-types/audio/ATRAC-X}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5584
- template:
- - audio/ATRAC-X
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ATRAC3
- encoding: base64
- references:
- - IANA
- - RFC5584
- - "{audio/ATRAC3=http://www.iana.org/assignments/media-types/audio/ATRAC3}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5584
- template:
- - audio/ATRAC3
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/basic
- friendly:
- en: Sun Audio - Au file format
- encoding: base64
- extensions:
- - au
- - snd
- references:
- - IANA
- - RFC2045
- - RFC2046
- - "{audio/basic=http://www.iana.org/assignments/media-types/audio/basic}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- template:
- - audio/basic
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/BV16
- encoding: base64
- references:
- - IANA
- - RFC4298
- - "{audio/BV16=http://www.iana.org/assignments/media-types/audio/BV16}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4298
- template:
- - audio/BV16
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/BV32
- encoding: base64
- references:
- - IANA
- - RFC4298
- - "{audio/BV32=http://www.iana.org/assignments/media-types/audio/BV32}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4298
- template:
- - audio/BV32
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/clearmode
- encoding: base64
- references:
- - IANA
- - RFC4040
- - "{audio/clearmode=http://www.iana.org/assignments/media-types/audio/clearmode}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4040
- template:
- - audio/clearmode
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/CN
- encoding: base64
- references:
- - IANA
- - RFC3389
- - "{audio/CN=http://www.iana.org/assignments/media-types/audio/CN}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3389
- template:
- - audio/CN
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/DAT12
- encoding: base64
- references:
- - IANA
- - RFC3190
- - "{audio/DAT12=http://www.iana.org/assignments/media-types/audio/DAT12}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3190
- template:
- - audio/DAT12
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/dls
- encoding: base64
- references:
- - IANA
- - RFC4613
- - "{audio/dls=http://www.iana.org/assignments/media-types/audio/dls}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4613
- template:
- - audio/dls
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/dsr-es201108
- encoding: base64
- references:
- - IANA
- - RFC3557
- - "{audio/dsr-es201108=http://www.iana.org/assignments/media-types/audio/dsr-es201108}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3557
- template:
- - audio/dsr-es201108
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/dsr-es202050
- encoding: base64
- references:
- - IANA
- - RFC4060
- - "{audio/dsr-es202050=http://www.iana.org/assignments/media-types/audio/dsr-es202050}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4060
- template:
- - audio/dsr-es202050
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/dsr-es202211
- encoding: base64
- references:
- - IANA
- - RFC4060
- - "{audio/dsr-es202211=http://www.iana.org/assignments/media-types/audio/dsr-es202211}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4060
- template:
- - audio/dsr-es202211
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/dsr-es202212
- encoding: base64
- references:
- - IANA
- - RFC4060
- - "{audio/dsr-es202212=http://www.iana.org/assignments/media-types/audio/dsr-es202212}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4060
- template:
- - audio/dsr-es202212
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/DV
- encoding: base64
- references:
- - IANA
- - RFC6469
- - "{audio/DV=http://www.iana.org/assignments/media-types/audio/DV}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6469
- template:
- - audio/DV
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/DVI4
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/DVI4=http://www.iana.org/assignments/media-types/audio/DVI4}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/DVI4
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/eac3
- encoding: base64
- references:
- - IANA
- - RFC4598
- - "{audio/eac3=http://www.iana.org/assignments/media-types/audio/eac3}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4598
- template:
- - audio/eac3
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/encaprtp
- encoding: base64
- references:
- - IANA
- - RFC6849
- - "{audio/encaprtp=http://www.iana.org/assignments/media-types/audio/encaprtp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - audio/encaprtp
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRC
- encoding: base64
- extensions:
- - evc
- references:
- - IANA
- - RFC4788
- - "{audio/EVRC=http://www.iana.org/assignments/media-types/audio/EVRC}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4788
- template:
- - audio/EVRC
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRC-QCP
- encoding: base64
- references:
- - IANA
- - RFC3625
- - "{audio/EVRC-QCP=http://www.iana.org/assignments/media-types/audio/EVRC-QCP}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3625
- template:
- - audio/EVRC-QCP
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRC0
- encoding: base64
- references:
- - IANA
- - RFC4788
- - "{audio/EVRC0=http://www.iana.org/assignments/media-types/audio/EVRC0}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4788
- template:
- - audio/EVRC0
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRC1
- encoding: base64
- references:
- - IANA
- - RFC4788
- - "{audio/EVRC1=http://www.iana.org/assignments/media-types/audio/EVRC1}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4788
- template:
- - audio/EVRC1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCB
- encoding: base64
- references:
- - IANA
- - RFC5188
- - "{audio/EVRCB=http://www.iana.org/assignments/media-types/audio/EVRCB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5188
- template:
- - audio/EVRCB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCB0
- encoding: base64
- references:
- - IANA
- - RFC5188
- - "{audio/EVRCB0=http://www.iana.org/assignments/media-types/audio/EVRCB0}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5188
- template:
- - audio/EVRCB0
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCB1
- encoding: base64
- references:
- - IANA
- - RFC4788
- - "{audio/EVRCB1=http://www.iana.org/assignments/media-types/audio/EVRCB1}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4788
- template:
- - audio/EVRCB1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCNW
- encoding: base64
- references:
- - IANA
- - RFC6884
- - "{audio/EVRCNW=http://www.iana.org/assignments/media-types/audio/EVRCNW}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6884
- template:
- - audio/EVRCNW
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCNW0
- encoding: base64
- references:
- - IANA
- - RFC6884
- - "{audio/EVRCNW0=http://www.iana.org/assignments/media-types/audio/EVRCNW0}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6884
- template:
- - audio/EVRCNW0
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCNW1
- encoding: base64
- references:
- - IANA
- - RFC6884
- - "{audio/EVRCNW1=http://www.iana.org/assignments/media-types/audio/EVRCNW1}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6884
- template:
- - audio/EVRCNW1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCWB
- encoding: base64
- references:
- - IANA
- - RFC5188
- - "{audio/EVRCWB=http://www.iana.org/assignments/media-types/audio/EVRCWB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5188
- template:
- - audio/EVRCWB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCWB0
- encoding: base64
- references:
- - IANA
- - RFC5188
- - "{audio/EVRCWB0=http://www.iana.org/assignments/media-types/audio/EVRCWB0}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5188
- template:
- - audio/EVRCWB0
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/EVRCWB1
- encoding: base64
- references:
- - IANA
- - RFC5188
- - "{audio/EVRCWB1=http://www.iana.org/assignments/media-types/audio/EVRCWB1}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5188
- template:
- - audio/EVRCWB1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{audio/example=http://www.iana.org/assignments/media-types/audio/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - audio/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/fwdred
- encoding: base64
- references:
- - IANA
- - RFC6354
- - "{audio/fwdred=http://www.iana.org/assignments/media-types/audio/fwdred}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6354
- template:
- - audio/fwdred
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G711-0
- encoding: base64
- references:
- - IANA
- - DRAFT:draft-ietf-payload-g7110-06
- - "{audio/G711-0=http://www.iana.org/assignments/media-types/audio/G711-0}"
- xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-payload-g7110-06
- template:
- - audio/G711-0
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G719
- encoding: base64
- references:
- - IANA
- - RFC5404
- - "{RFC Errata 3245=http://www.rfc-editor.org/errata_search.php?eid=3245}"
- - "{audio/G719=http://www.iana.org/assignments/media-types/audio/G719}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5404
- rfc-errata:
- - '3245'
- template:
- - audio/G719
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G722
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G722=http://www.iana.org/assignments/media-types/audio/G722}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G722
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G7221
- encoding: base64
- references:
- - IANA
- - RFC5577
- - "{audio/G7221=http://www.iana.org/assignments/media-types/audio/G7221}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5577
- template:
- - audio/G7221
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G723
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G723=http://www.iana.org/assignments/media-types/audio/G723}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G723
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G726-16
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G726-16=http://www.iana.org/assignments/media-types/audio/G726-16}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G726-16
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G726-24
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G726-24=http://www.iana.org/assignments/media-types/audio/G726-24}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G726-24
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G726-32
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G726-32=http://www.iana.org/assignments/media-types/audio/G726-32}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G726-32
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G726-40
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G726-40=http://www.iana.org/assignments/media-types/audio/G726-40}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G726-40
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G728
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G728=http://www.iana.org/assignments/media-types/audio/G728}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G728
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G729
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G729=http://www.iana.org/assignments/media-types/audio/G729}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G729
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G7291
- encoding: base64
- references:
- - IANA
- - RFC4749
- - RFC5459
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4749
- - rfc5459
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G729D
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G729D=http://www.iana.org/assignments/media-types/audio/G729D}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G729D
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/G729E
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/G729E=http://www.iana.org/assignments/media-types/audio/G729E}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/G729E
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/GSM
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/GSM=http://www.iana.org/assignments/media-types/audio/GSM}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/GSM
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/GSM-EFR
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/GSM-EFR=http://www.iana.org/assignments/media-types/audio/GSM-EFR}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/GSM-EFR
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/GSM-HR-08
- encoding: base64
- references:
- - IANA
- - RFC5993
- - "{audio/GSM-HR-08=http://www.iana.org/assignments/media-types/audio/GSM-HR-08}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5993
- template:
- - audio/GSM-HR-08
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/iLBC
- encoding: base64
- references:
- - IANA
- - RFC3952
- - "{audio/iLBC=http://www.iana.org/assignments/media-types/audio/iLBC}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3952
- template:
- - audio/iLBC
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ip-mr_v2.5
- encoding: base64
- references:
- - IANA
- - RFC6262
- - "{audio/ip-mr_v2.5=http://www.iana.org/assignments/media-types/audio/ip-mr_v2.5}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6262
- template:
- - audio/ip-mr_v2.5
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/L16
- encoding: base64
- extensions:
- - l16
- references:
- - IANA
- - RFC4856
- - "{audio/L16=http://www.iana.org/assignments/media-types/audio/L16}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/L16
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/L20
- encoding: base64
- references:
- - IANA
- - RFC3190
- - "{audio/L20=http://www.iana.org/assignments/media-types/audio/L20}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3190
- template:
- - audio/L20
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/L24
- encoding: base64
- references:
- - IANA
- - RFC3190
- - "{audio/L24=http://www.iana.org/assignments/media-types/audio/L24}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3190
- template:
- - audio/L24
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/L8
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/L8=http://www.iana.org/assignments/media-types/audio/L8}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/L8
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/LPC
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/LPC=http://www.iana.org/assignments/media-types/audio/LPC}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/LPC
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/midi
- friendly:
- en: MIDI - Musical Instrument Digital Interface
- encoding: base64
- extensions:
- - kar
- - mid
- - midi
- - rmi
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/mobile-xmf
- encoding: base64
- references:
- - IANA
- - RFC4723
- - "{audio/mobile-xmf=http://www.iana.org/assignments/media-types/audio/mobile-xmf}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4723
- template:
- - audio/mobile-xmf
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/mp4
- friendly:
- en: MPEG-4 Audio
- encoding: base64
- extensions:
- - mp4
- - mpg4
- - f4a
- - f4b
- - mp4a
- references:
- - IANA
- - RFC4337
- - RFC6381
- - "{audio/mp4=http://www.iana.org/assignments/media-types/audio/mp4}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4337
- - rfc6381
- template:
- - audio/mp4
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/MP4A-LATM
- encoding: base64
- extensions:
- - m4a
- references:
- - IANA
- - RFC6416
- - "{audio/MP4A-LATM=http://www.iana.org/assignments/media-types/audio/MP4A-LATM}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6416
- template:
- - audio/MP4A-LATM
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/MPA
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{audio/MPA=http://www.iana.org/assignments/media-types/audio/MPA}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - audio/MPA
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/mpa-robust
- encoding: base64
- references:
- - IANA
- - RFC5219
- - "{audio/mpa-robust=http://www.iana.org/assignments/media-types/audio/mpa-robust}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5219
- template:
- - audio/mpa-robust
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/mpeg
- friendly:
- en: MPEG Audio
- encoding: base64
- extensions:
- - mpga
- - mp2
- - mp3
- - m2a
- - m3a
- - mp2a
- references:
- - IANA
- - RFC3003
- - "{audio/mpeg=http://www.iana.org/assignments/media-types/audio/mpeg}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3003
- template:
- - audio/mpeg
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/mpeg4-generic
- encoding: base64
- references:
- - IANA
- - RFC3640
- - RFC5691
- - RFC6295
- - "{audio/mpeg4-generic=http://www.iana.org/assignments/media-types/audio/mpeg4-generic}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3640
- - rfc5691
- - rfc6295
- template:
- - audio/mpeg4-generic
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ogg
- friendly:
- en: Ogg Audio
- encoding: base64
- extensions:
- - oga
- - ogg
- - spx
- references:
- - IANA
- - RFC5334
- - "{audio/ogg=http://www.iana.org/assignments/media-types/audio/ogg}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5334
- template:
- - audio/ogg
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/opus
- encoding: base64
- references:
- - IANA
- - RFC7587
- - "{audio/opus=http://www.iana.org/assignments/media-types/audio/opus}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7587
- template:
- - audio/opus
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/parityfec
- encoding: base64
- references:
- - IANA
- - RFC5109
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/PCMA
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/PCMA=http://www.iana.org/assignments/media-types/audio/PCMA}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/PCMA
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/PCMA-WB
- encoding: base64
- references:
- - IANA
- - RFC5391
- - "{audio/PCMA-WB=http://www.iana.org/assignments/media-types/audio/PCMA-WB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5391
- template:
- - audio/PCMA-WB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/PCMU
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/PCMU=http://www.iana.org/assignments/media-types/audio/PCMU}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/PCMU
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/PCMU-WB
- encoding: base64
- references:
- - IANA
- - RFC5391
- - "{audio/PCMU-WB=http://www.iana.org/assignments/media-types/audio/PCMU-WB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5391
- template:
- - audio/PCMU-WB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/prs.sid
- encoding: base64
- references:
- - IANA
- - "[Linus_Walleij]"
- - "{audio/prs.sid=http://www.iana.org/assignments/media-types/audio/prs.sid}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Linus_Walleij
- template:
- - audio/prs.sid
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/QCELP
- encoding: base64
- references:
- - IANA
- - RFC3555
- - RFC3625
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- - rfc3625
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/raptorfec
- encoding: base64
- references:
- - IANA
- - RFC6682
- - "{audio/raptorfec=http://www.iana.org/assignments/media-types/audio/raptorfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6682
- template:
- - audio/raptorfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/RED
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{audio/RED=http://www.iana.org/assignments/media-types/audio/RED}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - audio/RED
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/rtp-enc-aescm128
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{audio/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/audio/rtp-enc-aescm128}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - audio/rtp-enc-aescm128
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/rtp-midi
- encoding: base64
- references:
- - IANA
- - RFC6295
- - "{audio/rtp-midi=http://www.iana.org/assignments/media-types/audio/rtp-midi}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6295
- template:
- - audio/rtp-midi
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/rtploopback
- encoding: base64
- references:
- - IANA
- - RFC6849
- - "{audio/rtploopback=http://www.iana.org/assignments/media-types/audio/rtploopback}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - audio/rtploopback
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/rtx
- encoding: base64
- references:
- - IANA
- - RFC4588
- - "{audio/rtx=http://www.iana.org/assignments/media-types/audio/rtx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4588
- template:
- - audio/rtx
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/s3m
- encoding: base64
- extensions:
- - s3m
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/silk
- encoding: base64
- extensions:
- - sil
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/SMV
- encoding: base64
- extensions:
- - smv
- references:
- - IANA
- - RFC3558
- - "{audio/SMV=http://www.iana.org/assignments/media-types/audio/SMV}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3558
- template:
- - audio/SMV
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/SMV-QCP
- encoding: base64
- references:
- - IANA
- - RFC3625
- - "{audio/SMV-QCP=http://www.iana.org/assignments/media-types/audio/SMV-QCP}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3625
- template:
- - audio/SMV-QCP
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/SMV0
- encoding: base64
- references:
- - IANA
- - RFC3558
- - "{audio/SMV0=http://www.iana.org/assignments/media-types/audio/SMV0}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3558
- template:
- - audio/SMV0
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/sp-midi
- encoding: base64
- references:
- - IANA
- - "[Timo_Kosonen]"
- - "[Tom_White]"
- - "{audio/sp-midi=http://www.iana.org/assignments/media-types/audio/sp-midi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Timo_Kosonen
- - Tom_White
- template:
- - audio/sp-midi
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/speex
- encoding: base64
- references:
- - IANA
- - RFC5574
- - "{audio/speex=http://www.iana.org/assignments/media-types/audio/speex}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5574
- template:
- - audio/speex
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/t140c
- encoding: base64
- references:
- - IANA
- - RFC4351
- - "{audio/t140c=http://www.iana.org/assignments/media-types/audio/t140c}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4351
- template:
- - audio/t140c
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/t38
- encoding: base64
- references:
- - IANA
- - RFC4612
- - "{audio/t38=http://www.iana.org/assignments/media-types/audio/t38}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4612
- template:
- - audio/t38
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/telephone-event
- encoding: base64
- references:
- - IANA
- - RFC4733
- - "{audio/telephone-event=http://www.iana.org/assignments/media-types/audio/telephone-event}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4733
- template:
- - audio/telephone-event
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/tone
- encoding: base64
- references:
- - IANA
- - RFC4733
- - "{audio/tone=http://www.iana.org/assignments/media-types/audio/tone}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4733
- template:
- - audio/tone
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/UEMCLIP
- encoding: base64
- references:
- - IANA
- - RFC5686
- - "{audio/UEMCLIP=http://www.iana.org/assignments/media-types/audio/UEMCLIP}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5686
- template:
- - audio/UEMCLIP
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/ulpfec
- encoding: base64
- references:
- - IANA
- - RFC5109
- - "{audio/ulpfec=http://www.iana.org/assignments/media-types/audio/ulpfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- template:
- - audio/ulpfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/VDVI
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{audio/VDVI=http://www.iana.org/assignments/media-types/audio/VDVI}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - audio/VDVI
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/VMR-WB
- encoding: base64
- references:
- - IANA
- - RFC4348
- - RFC4424
- - "{audio/VMR-WB=http://www.iana.org/assignments/media-types/audio/VMR-WB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4348
- - rfc4424
- template:
- - audio/VMR-WB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.3gpp.iufp
- encoding: base64
- references:
- - IANA
- - "[Thomas_Belling]"
- - "{audio/vnd.3gpp.iufp=http://www.iana.org/assignments/media-types/audio/vnd.3gpp.iufp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Thomas_Belling
- template:
- - audio/vnd.3gpp.iufp
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.4SB
- encoding: base64
- references:
- - IANA
- - "[Serge_De_Jaham]"
- - "{audio/vnd.4SB=http://www.iana.org/assignments/media-types/audio/vnd.4SB}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Serge_De_Jaham
- template:
- - audio/vnd.4SB
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.audiokoz
- encoding: base64
- references:
- - IANA
- - "[Vicki_DeBarros]"
- - "{audio/vnd.audiokoz=http://www.iana.org/assignments/media-types/audio/vnd.audiokoz}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Vicki_DeBarros
- template:
- - audio/vnd.audiokoz
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.CELP
- encoding: base64
- references:
- - IANA
- - "[Serge_De_Jaham]"
- - "{audio/vnd.CELP=http://www.iana.org/assignments/media-types/audio/vnd.CELP}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Serge_De_Jaham
- template:
- - audio/vnd.CELP
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.cisco.nse
- encoding: base64
- references:
- - IANA
- - "[Rajesh_Kumar]"
- - "{audio/vnd.cisco.nse=http://www.iana.org/assignments/media-types/audio/vnd.cisco.nse}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Rajesh_Kumar
- template:
- - audio/vnd.cisco.nse
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.cmles.radio-events
- encoding: base64
- references:
- - IANA
- - "[Jean-Philippe_Goulet]"
- - "{audio/vnd.cmles.radio-events=http://www.iana.org/assignments/media-types/audio/vnd.cmles.radio-events}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jean-Philippe_Goulet
- template:
- - audio/vnd.cmles.radio-events
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.cns.anp1
- encoding: base64
- references:
- - IANA
- - "[Ann_McLaughlin]"
- - "{audio/vnd.cns.anp1=http://www.iana.org/assignments/media-types/audio/vnd.cns.anp1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ann_McLaughlin
- template:
- - audio/vnd.cns.anp1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.cns.inf1
- encoding: base64
- references:
- - IANA
- - "[Ann_McLaughlin]"
- - "{audio/vnd.cns.inf1=http://www.iana.org/assignments/media-types/audio/vnd.cns.inf1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ann_McLaughlin
- template:
- - audio/vnd.cns.inf1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dece.audio
- friendly:
- en: DECE Audio
- encoding: base64
- extensions:
- - uva
- - uvva
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{audio/vnd.dece.audio=http://www.iana.org/assignments/media-types/audio/vnd.dece.audio}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - audio/vnd.dece.audio
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.digital-winds
- friendly:
- en: Digital Winds Music
- encoding: 7bit
- extensions:
- - eol
- references:
- - IANA
- - "[Armands_Strazds]"
- - "{audio/vnd.digital-winds=http://www.iana.org/assignments/media-types/audio/vnd.digital-winds}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Armands_Strazds
- template:
- - audio/vnd.digital-winds
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dlna.adts
- encoding: base64
- references:
- - IANA
- - "[Edwin_Heredia]"
- - "{audio/vnd.dlna.adts=http://www.iana.org/assignments/media-types/audio/vnd.dlna.adts}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Edwin_Heredia
- template:
- - audio/vnd.dlna.adts
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.heaac.1
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.heaac.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.heaac.1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.heaac.2
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.heaac.2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.heaac.2
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.mlp
- encoding: base64
- references:
- - IANA
- - "[Mike_Ward]"
- - "{audio/vnd.dolby.mlp=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mlp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mike_Ward
- template:
- - audio/vnd.dolby.mlp
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.mps
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.mps=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mps}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.mps
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.pl2
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.pl2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.pl2
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.pl2x
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.pl2x=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2x}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.pl2x
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.pl2z
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.pl2z=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2z}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.pl2z
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dolby.pulse.1
- encoding: base64
- references:
- - IANA
- - "[Steve_Hattersley]"
- - "{audio/vnd.dolby.pulse.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pulse.1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Hattersley
- template:
- - audio/vnd.dolby.pulse.1
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dra
- friendly:
- en: DRA Audio
- encoding: base64
- extensions:
- - dra
- references:
- - IANA
- - "[Jiang_Tian]"
- - "{audio/vnd.dra=http://www.iana.org/assignments/media-types/audio/vnd.dra}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jiang_Tian
- template:
- - audio/vnd.dra
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dts
- friendly:
- en: DTS Audio
- encoding: base64
- extensions:
- - dts
- references:
- - IANA
- - "[William_Zou]"
- - "{audio/vnd.dts=http://www.iana.org/assignments/media-types/audio/vnd.dts}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - William_Zou
- template:
- - audio/vnd.dts
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dts.hd
- friendly:
- en: DTS High Definition Audio
- encoding: base64
- extensions:
- - dtshd
- references:
- - IANA
- - "[William_Zou]"
- - "{audio/vnd.dts.hd=http://www.iana.org/assignments/media-types/audio/vnd.dts.hd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - William_Zou
- template:
- - audio/vnd.dts.hd
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.dvb.file
- encoding: base64
- references:
- - IANA
- - "[Peter_Siebert]"
- - "{audio/vnd.dvb.file=http://www.iana.org/assignments/media-types/audio/vnd.dvb.file}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Siebert
- template:
- - audio/vnd.dvb.file
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.everad.plj
- encoding: base64
- extensions:
- - plj
- references:
- - IANA
- - "[Shay_Cicelsky]"
- - "{audio/vnd.everad.plj=http://www.iana.org/assignments/media-types/audio/vnd.everad.plj}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shay_Cicelsky
- template:
- - audio/vnd.everad.plj
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.hns.audio
- encoding: base64
- references:
- - IANA
- - "[Swaminathan]"
- - "{audio/vnd.hns.audio=http://www.iana.org/assignments/media-types/audio/vnd.hns.audio}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Swaminathan
- template:
- - audio/vnd.hns.audio
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.lucent.voice
- friendly:
- en: Lucent Voice
- encoding: base64
- extensions:
- - lvp
- references:
- - IANA
- - "[Greg_Vaudreuil]"
- - "{audio/vnd.lucent.voice=http://www.iana.org/assignments/media-types/audio/vnd.lucent.voice}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Vaudreuil
- template:
- - audio/vnd.lucent.voice
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.ms-playready.media.pya
- friendly:
- en: Microsoft PlayReady Ecosystem
- encoding: base64
- extensions:
- - pya
- references:
- - IANA
- - "[Steve_DiAcetis]"
- - "{audio/vnd.ms-playready.media.pya=http://www.iana.org/assignments/media-types/audio/vnd.ms-playready.media.pya}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_DiAcetis
- template:
- - audio/vnd.ms-playready.media.pya
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.nokia.mobile-xmf
- encoding: base64
- extensions:
- - mxmf
- references:
- - IANA
- - "[Nokia]"
- - "{audio/vnd.nokia.mobile-xmf=http://www.iana.org/assignments/media-types/audio/vnd.nokia.mobile-xmf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - audio/vnd.nokia.mobile-xmf
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.nortel.vbk
- encoding: base64
- extensions:
- - vbk
- references:
- - IANA
- - "[Glenn_Parsons]"
- - "{audio/vnd.nortel.vbk=http://www.iana.org/assignments/media-types/audio/vnd.nortel.vbk}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glenn_Parsons
- template:
- - audio/vnd.nortel.vbk
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.nuera.ecelp4800
- friendly:
- en: Nuera ECELP 4800
- encoding: base64
- extensions:
- - ecelp4800
- references:
- - IANA
- - "[Michael_Fox]"
- - "{audio/vnd.nuera.ecelp4800=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp4800}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Fox
- template:
- - audio/vnd.nuera.ecelp4800
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.nuera.ecelp7470
- friendly:
- en: Nuera ECELP 7470
- encoding: base64
- extensions:
- - ecelp7470
- references:
- - IANA
- - "[Michael_Fox]"
- - "{audio/vnd.nuera.ecelp7470=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp7470}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Fox
- template:
- - audio/vnd.nuera.ecelp7470
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.nuera.ecelp9600
- friendly:
- en: Nuera ECELP 9600
- encoding: base64
- extensions:
- - ecelp9600
- references:
- - IANA
- - "[Michael_Fox]"
- - "{audio/vnd.nuera.ecelp9600=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp9600}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Fox
- template:
- - audio/vnd.nuera.ecelp9600
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.octel.sbc
- encoding: base64
- references:
- - IANA
- - "[Greg_Vaudreuil]"
- - "{audio/vnd.octel.sbc=http://www.iana.org/assignments/media-types/audio/vnd.octel.sbc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Vaudreuil
- template:
- - audio/vnd.octel.sbc
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.qcelp
- encoding: base64
- extensions:
- - qcp
- obsolete: true
- use-instead: audio/qcelp
- references:
- - IANA
- - RFC3625
- - "{audio/vnd.qcelp=http://www.iana.org/assignments/media-types/audio/vnd.qcelp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3625
- template:
- - audio/vnd.qcelp
- notes:
- - "- DEPRECATED in favor of audio/qcelp"
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.rhetorex.32kadpcm
- encoding: base64
- references:
- - IANA
- - "[Greg_Vaudreuil]"
- - "{audio/vnd.rhetorex.32kadpcm=http://www.iana.org/assignments/media-types/audio/vnd.rhetorex.32kadpcm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Vaudreuil
- template:
- - audio/vnd.rhetorex.32kadpcm
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.rip
- friendly:
- en: Hit'n'Mix
- encoding: base64
- extensions:
- - rip
- references:
- - IANA
- - "[Martin_Dawe]"
- - "{audio/vnd.rip=http://www.iana.org/assignments/media-types/audio/vnd.rip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Martin_Dawe
- template:
- - audio/vnd.rip
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.sealedmedia.softseal.mpeg
- encoding: base64
- extensions:
- - smp3
- - smp
- - s1m
- references:
- - IANA
- - "[David_Petersen]"
- - "{audio/vnd.sealedmedia.softseal-mpeg=http://www.iana.org/assignments/media-types/audio/vnd.sealedmedia.softseal-mpeg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - audio/vnd.sealedmedia.softseal-mpeg
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vnd.vmx.cvsd
- encoding: base64
- references:
- - IANA
- - "[Greg_Vaudreuil]"
- - "{audio/vnd.vmx.cvsd=http://www.iana.org/assignments/media-types/audio/vnd.vmx.cvsd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Vaudreuil
- template:
- - audio/vnd.vmx.cvsd
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vorbis
- encoding: base64
- references:
- - IANA
- - RFC5215
- - "{audio/vorbis=http://www.iana.org/assignments/media-types/audio/vorbis}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5215
- template:
- - audio/vorbis
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/vorbis-config
- encoding: base64
- references:
- - IANA
- - RFC5215
- - "{audio/vorbis-config=http://www.iana.org/assignments/media-types/audio/vorbis-config}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5215
- template:
- - audio/vorbis-config
- registered: true
-- !ruby/object:MIME::Type
- content-type: audio/webm
- friendly:
- en: Open Web Media Project - Audio
- encoding: base64
- extensions:
- - weba
- - webm
- references:
- - "{WebM=http://www.webmproject.org/code/specs/container/}"
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-aac
- friendly:
- en: Advanced Audio Coding (AAC)
- encoding: base64
- extensions:
- - aac
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-aiff
- friendly:
- en: Audio Interchange File Format
- encoding: base64
- extensions:
- - aif
- - aifc
- - aiff
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-caf
- encoding: base64
- extensions:
- - caf
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-flac
- encoding: base64
- extensions:
- - flac
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-matroska
- encoding: base64
- extensions:
- - mka
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-midi
- encoding: base64
- extensions:
- - mid
- - midi
- - kar
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-mpegurl
- friendly:
- en: M3U (Multimedia Playlist)
- encoding: base64
- extensions:
- - m3u
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-ms-wax
- friendly:
- en: Microsoft Windows Media Audio Redirector
- encoding: base64
- extensions:
- - wax
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-ms-wma
- friendly:
- en: Microsoft Windows Media Audio
- encoding: base64
- extensions:
- - wma
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-ms-wmv
- encoding: base64
- extensions:
- - wmv
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-pn-realaudio
- friendly:
- en: Real Audio Sound
- encoding: base64
- extensions:
- - ra
- - ram
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-pn-realaudio-plugin
- friendly:
- en: Real Audio Sound
- encoding: base64
- extensions:
- - rmp
- - rpm
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-realaudio
- encoding: base64
- extensions:
- - ra
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/x-wav
- friendly:
- en: Waveform Audio File Format (WAV)
- encoding: base64
- extensions:
- - wav
- registered: false
-- !ruby/object:MIME::Type
- content-type: audio/xm
- encoding: base64
- extensions:
- - xm
- registered: false
diff --git a/type-lists/chemical.yaml b/type-lists/chemical.yaml
deleted file mode 100644
index 188342e..0000000
--- a/type-lists/chemical.yaml
+++ /dev/null
@@ -1,71 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: chemical/x-cdx
- friendly:
- en: ChemDraw eXchange file
- encoding: base64
- extensions:
- - cdx
- registered: false
-- !ruby/object:MIME::Type
- content-type: chemical/x-cif
- friendly:
- en: Crystallographic Interchange Format
- encoding: base64
- extensions:
- - cif
- registered: false
-- !ruby/object:MIME::Type
- content-type: chemical/x-cmdf
- friendly:
- en: CrystalMaker Data Format
- encoding: base64
- extensions:
- - cmdf
- registered: false
-- !ruby/object:MIME::Type
- content-type: chemical/x-cml
- friendly:
- en: Chemical Markup Language
- encoding: base64
- extensions:
- - cml
- registered: false
-- !ruby/object:MIME::Type
- content-type: chemical/x-csml
- friendly:
- en: Chemical Style Markup Language
- encoding: base64
- extensions:
- - csml
- registered: false
-- !ruby/object:MIME::Type
- content-type: chemical/x-pdb
- encoding: base64
- extensions:
- - pdb
- obsolete: true
- use-instead: x-chemical/x-pdb
- registered: false
-- !ruby/object:MIME::Type
- content-type: chemical/x-xyz
- friendly:
- en: XYZ File Format
- encoding: base64
- extensions:
- - xyz
- obsolete: true
- use-instead: x-chemical/x-xyz
- registered: false
-- !ruby/object:MIME::Type
- content-type: x-chemical/x-pdb
- encoding: base64
- extensions:
- - pdb
- registered: false
-- !ruby/object:MIME::Type
- content-type: x-chemical/x-xyz
- encoding: base64
- extensions:
- - xyz
- registered: false
diff --git a/type-lists/conference.yaml b/type-lists/conference.yaml
deleted file mode 100644
index c0d26c4..0000000
--- a/type-lists/conference.yaml
+++ /dev/null
@@ -1,9 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: x-conference/x-cooltalk
- friendly:
- en: CoolTalk
- encoding: base64
- extensions:
- - ice
- registered: false
diff --git a/type-lists/drawing.yaml b/type-lists/drawing.yaml
deleted file mode 100644
index d66b8c4..0000000
--- a/type-lists/drawing.yaml
+++ /dev/null
@@ -1,15 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: drawing/dwf
- encoding: base64
- extensions:
- - dwf
- obsolete: true
- use-instead: x-drawing/dwf
- registered: false
-- !ruby/object:MIME::Type
- content-type: x-drawing/dwf
- encoding: base64
- extensions:
- - dwf
- registered: false
diff --git a/type-lists/image.yaml b/type-lists/image.yaml
deleted file mode 100644
index 8c6df73..0000000
--- a/type-lists/image.yaml
+++ /dev/null
@@ -1,1026 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: image/bmp
- friendly:
- en: Bitmap Image File
- encoding: base64
- extensions:
- - bmp
- obsolete: true
- use-instead: image/x-bmp
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/cgm
- friendly:
- en: Computer Graphics Metafile
- encoding: base64
- extensions:
- - cgm
- references:
- - IANA
- - "[Alan_Francis]"
- - "{image/cgm=http://www.iana.org/assignments/media-types/image/cgm}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Alan_Francis
- template:
- - image/cgm
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/cmu-raster
- encoding: base64
- obsolete: true
- use-instead: image/x-cmu-raster
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{image/example=http://www.iana.org/assignments/media-types/image/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - image/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/fits
- encoding: base64
- references:
- - IANA
- - RFC4047
- - "{image/fits=http://www.iana.org/assignments/media-types/image/fits}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4047
- template:
- - image/fits
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/g3fax
- friendly:
- en: G3 Fax Image
- encoding: base64
- extensions:
- - g3
- references:
- - IANA
- - RFC1494
- - "{image/g3fax=http://www.iana.org/assignments/media-types/image/g3fax}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1494
- template:
- - image/g3fax
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/gif
- friendly:
- en: Graphics Interchange Format
- encoding: base64
- extensions:
- - gif
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/ief
- friendly:
- en: Image Exchange Format
- encoding: base64
- extensions:
- - ief
- references:
- - IANA
- - RFC1314
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1314
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/jp2
- encoding: base64
- extensions:
- - jp2
- - jpg2
- references:
- - IANA
- - RFC3745
- - "{image/jp2=http://www.iana.org/assignments/media-types/image/jp2}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3745
- template:
- - image/jp2
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/jpeg
- friendly:
- en: JPEG Image
- encoding: base64
- extensions:
- - jpeg
- - jpg
- - jpe
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/jpm
- encoding: base64
- extensions:
- - jpm
- - jpgm
- references:
- - IANA
- - RFC3745
- - "{image/jpm=http://www.iana.org/assignments/media-types/image/jpm}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3745
- template:
- - image/jpm
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/jpx
- encoding: base64
- extensions:
- - jpx
- - jpf
- references:
- - IANA
- - RFC3745
- - "{image/jpx=http://www.iana.org/assignments/media-types/image/jpx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3745
- template:
- - image/jpx
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/ktx
- friendly:
- en: OpenGL Textures (KTX)
- encoding: base64
- extensions:
- - ktx
- references:
- - IANA
- - "[Mark_Callow]"
- - "[Khronos]"
- - "{http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Khronos
- - Mark_Callow
- uri:
- - http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/naplps
- encoding: base64
- references:
- - IANA
- - "[Ilya_Ferber]"
- - "{image/naplps=http://www.iana.org/assignments/media-types/image/naplps}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ilya_Ferber
- template:
- - image/naplps
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/pjpeg
- docs: Fixes a bug with IE6 and progressive JPEGs
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/png
- friendly:
- en: Portable Network Graphics (PNG)
- encoding: base64
- extensions:
- - png
- references:
- - IANA
- - "[Glenn_Randers-Pehrson]"
- - "{image/png=http://www.iana.org/assignments/media-types/image/png}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Glenn_Randers-Pehrson
- template:
- - image/png
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/prs.btif
- friendly:
- en: BTIF
- encoding: base64
- extensions:
- - btif
- references:
- - IANA
- - "[Ben_Simon]"
- - "{image/prs.btif=http://www.iana.org/assignments/media-types/image/prs.btif}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ben_Simon
- template:
- - image/prs.btif
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/prs.pti
- encoding: base64
- references:
- - IANA
- - "[Juern_Laun]"
- - "{image/prs.pti=http://www.iana.org/assignments/media-types/image/prs.pti}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Juern_Laun
- template:
- - image/prs.pti
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/pwg-raster
- encoding: base64
- references:
- - IANA
- - "[Michael_Sweet]"
- - "{image/pwg-raster=http://www.iana.org/assignments/media-types/image/pwg-raster}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Sweet
- template:
- - image/pwg-raster
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/sgi
- encoding: base64
- extensions:
- - sgi
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/svg+xml
- friendly:
- en: Scalable Vector Graphics (SVG)
- encoding: 8bit
- extensions:
- - svg
- - svgz
- references:
- - IANA
- - "[W3C]"
- - "{http://www.w3.org/TR/SVG/mimereg.html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - W3C
- uri:
- - http://www.w3.org/TR/SVG/mimereg.html
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/t38
- encoding: base64
- references:
- - IANA
- - RFC3362
- - "{image/t38=http://www.iana.org/assignments/media-types/image/t38}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3362
- template:
- - image/t38
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/targa
- encoding: base64
- extensions:
- - tga
- obsolete: true
- use-instead: image/x-targa
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/tiff
- friendly:
- en: Tagged Image File Format
- encoding: base64
- extensions:
- - tiff
- - tif
- references:
- - IANA
- - RFC3302
- - "{image/tiff=http://www.iana.org/assignments/media-types/image/tiff}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3302
- template:
- - image/tiff
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/tiff-fx
- encoding: base64
- references:
- - IANA
- - RFC3950
- - "{image/tiff-fx=http://www.iana.org/assignments/media-types/image/tiff-fx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3950
- template:
- - image/tiff-fx
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.adobe.photoshop
- friendly:
- en: Photoshop Document
- encoding: base64
- extensions:
- - psd
- references:
- - IANA
- - "[Kim_Scarborough]"
- - "{image/vnd.adobe.photoshop=http://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kim_Scarborough
- template:
- - image/vnd.adobe.photoshop
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.airzip.accelerator.azv
- encoding: base64
- references:
- - IANA
- - "[Gary_Clueit]"
- - "{image/vnd.airzip.accelerator.azv=http://www.iana.org/assignments/media-types/image/vnd.airzip.accelerator.azv}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Clueit
- template:
- - image/vnd.airzip.accelerator.azv
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.cns.inf2
- encoding: base64
- references:
- - IANA
- - "[Ann_McLaughlin]"
- - "{image/vnd.cns.inf2=http://www.iana.org/assignments/media-types/image/vnd.cns.inf2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ann_McLaughlin
- template:
- - image/vnd.cns.inf2
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.dece.graphic
- friendly:
- en: DECE Graphic
- encoding: base64
- extensions:
- - uvg
- - uvi
- - uvvg
- - uvvi
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{image/vnd.dece.graphic=http://www.iana.org/assignments/media-types/image/vnd.dece.graphic}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - image/vnd.dece.graphic
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.dgn
- encoding: base64
- extensions:
- - dgn
- obsolete: true
- use-instead: image/x-vnd.dgn
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/vnd.djvu
- friendly:
- en: DjVu
- encoding: base64
- extensions:
- - djvu
- - djv
- references:
- - IANA
- - "[Leon_Bottou]"
- - "{image/vnd-djvu=http://www.iana.org/assignments/media-types/image/vnd-djvu}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Leon_Bottou
- template:
- - image/vnd-djvu
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.dvb.subtitle
- friendly:
- en: Close Captioning - Subtitle
- encoding: base64
- extensions:
- - sub
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Michael_Lagally]"
- - "{image/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/image/vnd.dvb.subtitle}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Lagally
- - Peter_Siebert
- template:
- - image/vnd.dvb.subtitle
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.dwg
- friendly:
- en: DWG Drawing
- encoding: base64
- extensions:
- - dwg
- references:
- - IANA
- - "[Jodi_Moline]"
- - "{image/vnd.dwg=http://www.iana.org/assignments/media-types/image/vnd.dwg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jodi_Moline
- template:
- - image/vnd.dwg
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.dxf
- friendly:
- en: AutoCAD DXF
- encoding: base64
- extensions:
- - dxf
- references:
- - IANA
- - "[Jodi_Moline]"
- - "{image/vnd.dxf=http://www.iana.org/assignments/media-types/image/vnd.dxf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jodi_Moline
- template:
- - image/vnd.dxf
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.fastbidsheet
- friendly:
- en: FastBid Sheet
- encoding: base64
- extensions:
- - fbs
- references:
- - IANA
- - "[Scott_Becker]"
- - "{image/vnd.fastbidsheet=http://www.iana.org/assignments/media-types/image/vnd.fastbidsheet}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Scott_Becker
- template:
- - image/vnd.fastbidsheet
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.fpx
- friendly:
- en: FlashPix
- encoding: base64
- extensions:
- - fpx
- references:
- - IANA
- - "[Marc_Douglas_Spencer]"
- - "{image/vnd.fpx=http://www.iana.org/assignments/media-types/image/vnd.fpx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Marc_Douglas_Spencer
- template:
- - image/vnd.fpx
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.fst
- friendly:
- en: FAST Search & Transfer ASA
- encoding: base64
- extensions:
- - fst
- references:
- - IANA
- - "[Arild_Fuldseth]"
- - "{image/vnd.fst=http://www.iana.org/assignments/media-types/image/vnd.fst}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Arild_Fuldseth
- template:
- - image/vnd.fst
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.fujixerox.edmics-mmr
- friendly:
- en: EDMICS 2000
- encoding: base64
- extensions:
- - mmr
- references:
- - IANA
- - "[Masanori_Onda]"
- - "{image/vnd.fujixerox.edmics-mmr=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-mmr}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masanori_Onda
- template:
- - image/vnd.fujixerox.edmics-mmr
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.fujixerox.edmics-rlc
- friendly:
- en: EDMICS 2000
- encoding: base64
- extensions:
- - rlc
- references:
- - IANA
- - "[Masanori_Onda]"
- - "{image/vnd.fujixerox.edmics-rlc=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-rlc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Masanori_Onda
- template:
- - image/vnd.fujixerox.edmics-rlc
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.globalgraphics.pgb
- encoding: base64
- extensions:
- - pgb
- references:
- - IANA
- - "[Martin_Bailey]"
- - "{image/vnd.globalgraphics.pgb=http://www.iana.org/assignments/media-types/image/vnd.globalgraphics.pgb}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Martin_Bailey
- template:
- - image/vnd.globalgraphics.pgb
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.microsoft.icon
- encoding: base64
- extensions:
- - ico
- references:
- - IANA
- - "[Simon_Butcher]"
- - "{image/vnd.microsoft.icon=http://www.iana.org/assignments/media-types/image/vnd.microsoft.icon}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Simon_Butcher
- template:
- - image/vnd.microsoft.icon
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.mix
- encoding: base64
- references:
- - IANA
- - "[Saveen_Reddy]"
- - "{image/vnd.mix=http://www.iana.org/assignments/media-types/image/vnd.mix}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Saveen_Reddy
- template:
- - image/vnd.mix
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.mozilla.apng
- encoding: base64
- references:
- - IANA
- - "[Stuart_Parmenter]"
- - "{image/vnd.mozilla.apng=http://www.iana.org/assignments/media-types/image/vnd.mozilla.apng}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Stuart_Parmenter
- template:
- - image/vnd.mozilla.apng
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.ms-modi
- friendly:
- en: Microsoft Document Imaging Format
- encoding: base64
- extensions:
- - mdi
- references:
- - IANA
- - "[Gregory_Vaughan]"
- - "{image/vnd.ms-modi=http://www.iana.org/assignments/media-types/image/vnd.ms-modi}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gregory_Vaughan
- template:
- - image/vnd.ms-modi
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.ms-photo
- encoding: base64
- extensions:
- - wdp
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/vnd.net-fpx
- friendly:
- en: FlashPix
- encoding: base64
- extensions:
- - npx
- references:
- - IANA
- - "[Marc_Douglas_Spencer]"
- - "{image/vnd.net-fpx=http://www.iana.org/assignments/media-types/image/vnd.net-fpx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Marc_Douglas_Spencer
- template:
- - image/vnd.net-fpx
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.net.fpx
- encoding: base64
- obsolete: true
- use-instead: image/vnd.net-fpx
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/vnd.radiance
- encoding: base64
- references:
- - IANA
- - "[Randolph_Fritz]"
- - "[Greg_Ward]"
- - "{image/vnd.radiance=http://www.iana.org/assignments/media-types/image/vnd.radiance}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Greg_Ward
- - Randolph_Fritz
- template:
- - image/vnd.radiance
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.sealed.png
- encoding: base64
- references:
- - IANA
- - "[David_Petersen]"
- - "{image/vnd.sealed-png=http://www.iana.org/assignments/media-types/image/vnd.sealed-png}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - image/vnd.sealed-png
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.sealedmedia.softseal.gif
- encoding: base64
- references:
- - IANA
- - "[David_Petersen]"
- - "{image/vnd.sealedmedia.softseal-gif=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-gif}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - image/vnd.sealedmedia.softseal-gif
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.sealedmedia.softseal.jpg
- encoding: base64
- references:
- - IANA
- - "[David_Petersen]"
- - "{image/vnd.sealedmedia.softseal-jpg=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-jpg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - image/vnd.sealedmedia.softseal-jpg
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.svf
- encoding: base64
- references:
- - IANA
- - "[Jodi_Moline]"
- - "{image/vnd-svf=http://www.iana.org/assignments/media-types/image/vnd-svf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jodi_Moline
- template:
- - image/vnd-svf
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.tencent.tap
- encoding: base64
- references:
- - IANA
- - "[Ni_Hui]"
- - "{image/vnd.tencent.tap=http://www.iana.org/assignments/media-types/image/vnd.tencent.tap}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ni_Hui
- template:
- - image/vnd.tencent.tap
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.valve.source.texture
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{image/vnd.valve.source.texture=http://www.iana.org/assignments/media-types/image/vnd.valve.source.texture}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - image/vnd.valve.source.texture
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.wap.wbmp
- friendly:
- en: WAP Bitamp (WBMP)
- encoding: base64
- extensions:
- - wbmp
- references:
- - IANA
- - "[Peter_Stark]"
- - "{image/vnd-wap-wbmp=http://www.iana.org/assignments/media-types/image/vnd-wap-wbmp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Stark
- template:
- - image/vnd-wap-wbmp
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.xiff
- friendly:
- en: eXtended Image File Format (XIFF)
- encoding: base64
- extensions:
- - xif
- references:
- - IANA
- - "[Steven_Martin]"
- - "{image/vnd.xiff=http://www.iana.org/assignments/media-types/image/vnd.xiff}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steven_Martin
- template:
- - image/vnd.xiff
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/vnd.zbrush.pcx
- encoding: base64
- references:
- - IANA
- - "[Chris_Charabaruk]"
- - "{image/vnd.zbrush.pcx=http://www.iana.org/assignments/media-types/image/vnd.zbrush.pcx}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Chris_Charabaruk
- template:
- - image/vnd.zbrush.pcx
- registered: true
-- !ruby/object:MIME::Type
- content-type: image/webp
- friendly:
- en: WebP Image
- encoding: base64
- extensions:
- - webp
- references:
- - "{WebP=https://developers.google.com/speed/webp/}"
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-3ds
- encoding: base64
- extensions:
- - 3ds
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-bmp
- encoding: base64
- extensions:
- - bmp
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-cmu-raster
- friendly:
- en: CMU Image
- encoding: base64
- extensions:
- - ras
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-cmx
- friendly:
- en: Corel Metafile Exchange (CMX)
- encoding: base64
- extensions:
- - cmx
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-compressed-xcf
- docs: see-also:image/x-xcf
- encoding: base64
- extensions:
- - xcfbz2
- - xcfgz
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-freehand
- friendly:
- en: FreeHand MX
- encoding: base64
- extensions:
- - fh
- - fh4
- - fh5
- - fh7
- - fhc
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-hasselblad-3fr
- encoding: base64
- extensions:
- - 3fr
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-icon
- friendly:
- en: Icon Image
- encoding: base64
- extensions:
- - ico
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-mrsid-image
- encoding: base64
- extensions:
- - sid
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-ms-bmp
- friendly:
- en: Bitmap Image File
- encoding: base64
- extensions:
- - bmp
- obsolete: true
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-paintshoppro
- encoding: base64
- extensions:
- - psp
- - pspimage
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-pcx
- friendly:
- en: PCX Image
- encoding: base64
- extensions:
- - pcx
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-pict
- friendly:
- en: PICT Image
- encoding: base64
- extensions:
- - pct
- - pic
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-portable-anymap
- friendly:
- en: Portable Anymap Image
- encoding: base64
- extensions:
- - pnm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-portable-bitmap
- friendly:
- en: Portable Bitmap Format
- encoding: base64
- extensions:
- - pbm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-portable-graymap
- friendly:
- en: Portable Graymap Format
- encoding: base64
- extensions:
- - pgm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-portable-pixmap
- friendly:
- en: Portable Pixmap Format
- encoding: base64
- extensions:
- - ppm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-rgb
- friendly:
- en: Silicon Graphics RGB Bitmap
- encoding: base64
- extensions:
- - rgb
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-targa
- encoding: base64
- extensions:
- - tga
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-tga
- encoding: base64
- extensions:
- - tga
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-vnd.dgn
- encoding: base64
- extensions:
- - dgn
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-win-bmp
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-xbitmap
- friendly:
- en: X BitMap
- encoding: 7bit
- extensions:
- - xbm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-xbm
- encoding: 7bit
- extensions:
- - xbm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-xcf
- encoding: base64
- extensions:
- - xcf
- references:
- - "{XCF=http://git.gnome.org/browse/gimp/tree/devel-docs/xcf.txt}"
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-xpixmap
- friendly:
- en: X PixMap
- encoding: 8bit
- extensions:
- - xpm
- registered: false
-- !ruby/object:MIME::Type
- content-type: image/x-xwindowdump
- friendly:
- en: X Window Dump
- encoding: base64
- extensions:
- - xwd
- registered: false
diff --git a/type-lists/message.yaml b/type-lists/message.yaml
deleted file mode 100644
index c425429..0000000
--- a/type-lists/message.yaml
+++ /dev/null
@@ -1,285 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: message/CPIM
- encoding: base64
- references:
- - IANA
- - RFC3862
- - "{message/CPIM=http://www.iana.org/assignments/media-types/message/CPIM}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3862
- template:
- - message/CPIM
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/delivery-status
- encoding: base64
- references:
- - IANA
- - RFC1894
- - "{message/delivery-status=http://www.iana.org/assignments/media-types/message/delivery-status}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1894
- template:
- - message/delivery-status
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/disposition-notification
- encoding: base64
- references:
- - IANA
- - RFC3798
- - "{message/disposition-notification=http://www.iana.org/assignments/media-types/message/disposition-notification}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3798
- template:
- - message/disposition-notification
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{message/example=http://www.iana.org/assignments/media-types/message/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - message/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/external-body
- encoding: 8bit
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/feedback-report
- encoding: base64
- references:
- - IANA
- - RFC5965
- - "{message/feedback-report=http://www.iana.org/assignments/media-types/message/feedback-report}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5965
- template:
- - message/feedback-report
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/global
- encoding: base64
- references:
- - IANA
- - RFC6532
- - "{message/global=http://www.iana.org/assignments/media-types/message/global}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6532
- template:
- - message/global
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/global-delivery-status
- encoding: base64
- references:
- - IANA
- - RFC6533
- - "{message/global-delivery-status=http://www.iana.org/assignments/media-types/message/global-delivery-status}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6533
- template:
- - message/global-delivery-status
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/global-disposition-notification
- encoding: base64
- references:
- - IANA
- - RFC6533
- - "{message/global-disposition-notification=http://www.iana.org/assignments/media-types/message/global-disposition-notification}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6533
- template:
- - message/global-disposition-notification
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/global-headers
- encoding: base64
- references:
- - IANA
- - RFC6533
- - "{message/global-headers=http://www.iana.org/assignments/media-types/message/global-headers}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6533
- template:
- - message/global-headers
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/http
- encoding: base64
- references:
- - IANA
- - RFC7230
- - "{message/http=http://www.iana.org/assignments/media-types/message/http}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7230
- template:
- - message/http
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/imdn+xml
- encoding: base64
- references:
- - IANA
- - RFC5438
- - "{message/imdn+xml=http://www.iana.org/assignments/media-types/message/imdn+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5438
- template:
- - message/imdn+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/news
- encoding: 8bit
- obsolete: true
- references:
- - IANA
- - RFC5537
- - "[Henry_Spencer]"
- - "{message/news=http://www.iana.org/assignments/media-types/message/news}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5537
- person:
- - Henry_Spencer
- template:
- - message/news
- notes:
- - "- OBSOLETED by RFC5537"
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/partial
- encoding: 8bit
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/rfc822
- friendly:
- en: Email Message
- encoding: 8bit
- extensions:
- - eml
- - mime
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/s-http
- encoding: base64
- references:
- - IANA
- - RFC2660
- - "{message/s-http=http://www.iana.org/assignments/media-types/message/s-http}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2660
- template:
- - message/s-http
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/sip
- encoding: base64
- references:
- - IANA
- - RFC3261
- - "{message/sip=http://www.iana.org/assignments/media-types/message/sip}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3261
- template:
- - message/sip
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/sipfrag
- encoding: base64
- references:
- - IANA
- - RFC3420
- - "{message/sipfrag=http://www.iana.org/assignments/media-types/message/sipfrag}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3420
- template:
- - message/sipfrag
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/tracking-status
- encoding: base64
- references:
- - IANA
- - RFC3886
- - "{message/tracking-status=http://www.iana.org/assignments/media-types/message/tracking-status}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3886
- template:
- - message/tracking-status
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/vnd.si.simp
- encoding: base64
- obsolete: true
- references:
- - IANA
- - "[Nicholas_Parks_Young]"
- - "{message/vnd.si.simp=http://www.iana.org/assignments/media-types/message/vnd.si.simp}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nicholas_Parks_Young
- template:
- - message/vnd.si.simp
- notes:
- - "- OBSOLETED by request"
- registered: true
-- !ruby/object:MIME::Type
- content-type: message/vnd.wfa.wsc
- encoding: base64
- references:
- - IANA
- - "[Mick_Conley]"
- - "{message/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/message/vnd.wfa.wsc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mick_Conley
- template:
- - message/vnd.wfa.wsc
- registered: true
diff --git a/type-lists/model.yaml b/type-lists/model.yaml
deleted file mode 100644
index d6a145c..0000000
--- a/type-lists/model.yaml
+++ /dev/null
@@ -1,322 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: model/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{model/example=http://www.iana.org/assignments/media-types/model/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - model/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/iges
- friendly:
- en: Initial Graphics Exchange Specification (IGES)
- encoding: base64
- extensions:
- - igs
- - iges
- references:
- - IANA
- - "[Curtis_Parks]"
- - "{model/iges=http://www.iana.org/assignments/media-types/model/iges}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Curtis_Parks
- template:
- - model/iges
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/mesh
- friendly:
- en: Mesh Data Type
- encoding: base64
- extensions:
- - msh
- - mesh
- - silo
- references:
- - IANA
- - RFC2077
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2077
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.collada+xml
- friendly:
- en: COLLADA
- encoding: base64
- extensions:
- - dae
- references:
- - IANA
- - "[James_Riordon]"
- - "{model/vnd.collada+xml=http://www.iana.org/assignments/media-types/model/vnd.collada+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - James_Riordon
- template:
- - model/vnd.collada+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.dwf
- friendly:
- en: Autodesk Design Web Format (DWF)
- encoding: base64
- extensions:
- - dwf
- references:
- - IANA
- - "[Jason_Pratt]"
- - "{model/vnd-dwf=http://www.iana.org/assignments/media-types/model/vnd-dwf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jason_Pratt
- template:
- - model/vnd-dwf
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.flatland.3dml
- encoding: base64
- references:
- - IANA
- - "[Michael_Powers]"
- - "{model/vnd.flatland.3dml=http://www.iana.org/assignments/media-types/model/vnd.flatland.3dml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Powers
- template:
- - model/vnd.flatland.3dml
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.gdl
- friendly:
- en: Geometric Description Language (GDL)
- encoding: base64
- extensions:
- - gdl
- references:
- - IANA
- - "[Attila_Babits]"
- - "{model/vnd.gdl=http://www.iana.org/assignments/media-types/model/vnd.gdl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Attila_Babits
- template:
- - model/vnd.gdl
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.gs-gdl
- encoding: base64
- references:
- - IANA
- - "[Attila_Babits]"
- - "{model/vnd.gs-gdl=http://www.iana.org/assignments/media-types/model/vnd.gs-gdl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Attila_Babits
- template:
- - model/vnd.gs-gdl
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.gtw
- friendly:
- en: Gen-Trix Studio
- encoding: base64
- extensions:
- - gtw
- references:
- - IANA
- - "[Yutaka_Ozaki]"
- - "{model/vnd.gtw=http://www.iana.org/assignments/media-types/model/vnd.gtw}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Yutaka_Ozaki
- template:
- - model/vnd.gtw
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.moml+xml
- encoding: base64
- references:
- - IANA
- - "[Christopher_Brooks]"
- - "{model/vnd.moml+xml=http://www.iana.org/assignments/media-types/model/vnd.moml+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Christopher_Brooks
- template:
- - model/vnd.moml+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.mts
- friendly:
- en: Virtue MTS
- encoding: base64
- extensions:
- - mts
- references:
- - IANA
- - "[Boris_Rabinovitch]"
- - "{model/vnd.mts=http://www.iana.org/assignments/media-types/model/vnd.mts}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Boris_Rabinovitch
- template:
- - model/vnd.mts
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.opengex
- encoding: base64
- references:
- - IANA
- - "[Eric_Lengyel]"
- - "{model/vnd.opengex=http://www.iana.org/assignments/media-types/model/vnd.opengex}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Lengyel
- template:
- - model/vnd.opengex
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.parasolid.transmit.binary
- encoding: base64
- extensions:
- - x_b
- - xmt_bin
- references:
- - IANA
- - "[Parasolid]"
- - "{model/vnd.parasolid.transmit-binary=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-binary}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Parasolid
- template:
- - model/vnd.parasolid.transmit-binary
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.parasolid.transmit.text
- encoding: quoted-printable
- extensions:
- - x_t
- - xmt_txt
- references:
- - IANA
- - "[Parasolid]"
- - "{model/vnd.parasolid.transmit-text=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-text}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Parasolid
- template:
- - model/vnd.parasolid.transmit-text
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.valve.source.compiled-map
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{model/vnd.valve.source.compiled-map=http://www.iana.org/assignments/media-types/model/vnd.valve.source.compiled-map}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - model/vnd.valve.source.compiled-map
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vnd.vtu
- friendly:
- en: Virtue VTU
- encoding: base64
- extensions:
- - vtu
- references:
- - IANA
- - "[Boris_Rabinovitch]"
- - "{model/vnd.vtu=http://www.iana.org/assignments/media-types/model/vnd.vtu}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Boris_Rabinovitch
- template:
- - model/vnd.vtu
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/vrml
- friendly:
- en: Virtual Reality Modeling Language
- encoding: base64
- extensions:
- - wrl
- - vrml
- references:
- - IANA
- - RFC2077
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2077
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/x3d+binary
- encoding: base64
- extensions:
- - x3db
- - x3dbz
- registered: false
-- !ruby/object:MIME::Type
- content-type: model/x3d+fastinfoset
- encoding: base64
- references:
- - IANA
- - "[Web3D_X3D]"
- - "{model/x3d+fastinfoset=http://www.iana.org/assignments/media-types/model/x3d+fastinfoset}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Web3D_X3D
- template:
- - model/x3d+fastinfoset
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/x3d+vrml
- encoding: base64
- extensions:
- - x3dv
- - x3dvz
- registered: false
-- !ruby/object:MIME::Type
- content-type: model/x3d+xml
- encoding: base64
- extensions:
- - x3d
- - x3dz
- references:
- - IANA
- - "[Web3D]"
- - "[Web3D_X3D]"
- - "{model/x3d+xml=http://www.iana.org/assignments/media-types/model/x3d+xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Web3D
- - Web3D_X3D
- template:
- - model/x3d+xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: model/x3d-vrml
- encoding: base64
- references:
- - IANA
- - "[Web3D]"
- - "[Web3D_X3D]"
- - "{model/x3d-vrml=http://www.iana.org/assignments/media-types/model/x3d-vrml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Web3D
- - Web3D_X3D
- template:
- - model/x3d-vrml
- registered: true
diff --git a/type-lists/multipart.yaml b/type-lists/multipart.yaml
deleted file mode 100644
index 1eba248..0000000
--- a/type-lists/multipart.yaml
+++ /dev/null
@@ -1,224 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: multipart/alternative
- encoding: 8bit
- references:
- - IANA
- - RFC2046
- - RFC2045
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/appledouble
- encoding: 8bit
- references:
- - IANA
- - "[Patrik_Faltstrom]"
- - "{multipart/appledouble=http://www.iana.org/assignments/media-types/multipart/appledouble}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Patrik_Faltstrom
- template:
- - multipart/appledouble
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/byteranges
- encoding: base64
- references:
- - IANA
- - RFC7233
- - "{multipart/byteranges=http://www.iana.org/assignments/media-types/multipart/byteranges}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7233
- template:
- - multipart/byteranges
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/digest
- encoding: 8bit
- references:
- - IANA
- - RFC2046
- - RFC2045
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/encrypted
- encoding: base64
- references:
- - IANA
- - RFC1847
- - "{multipart/encrypted=http://www.iana.org/assignments/media-types/multipart/encrypted}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1847
- template:
- - multipart/encrypted
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{multipart/example=http://www.iana.org/assignments/media-types/multipart/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - multipart/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/form-data
- encoding: base64
- references:
- - IANA
- - RFC7578
- - "{multipart/form-data=http://www.iana.org/assignments/media-types/multipart/form-data}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7578
- template:
- - multipart/form-data
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/header-set
- encoding: base64
- references:
- - IANA
- - "[Dave_Crocker]"
- - "{multipart/header-set=http://www.iana.org/assignments/media-types/multipart/header-set}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dave_Crocker
- template:
- - multipart/header-set
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/mixed
- encoding: 8bit
- references:
- - IANA
- - RFC2046
- - RFC2045
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/parallel
- encoding: 8bit
- references:
- - IANA
- - RFC2046
- - RFC2045
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/related
- encoding: base64
- references:
- - IANA
- - RFC2387
- - "{multipart/related=http://www.iana.org/assignments/media-types/multipart/related}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2387
- template:
- - multipart/related
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/report
- encoding: base64
- references:
- - IANA
- - RFC6522
- - "{multipart/report=http://www.iana.org/assignments/media-types/multipart/report}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6522
- template:
- - multipart/report
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/signed
- encoding: base64
- references:
- - IANA
- - RFC1847
- - "{multipart/signed=http://www.iana.org/assignments/media-types/multipart/signed}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1847
- template:
- - multipart/signed
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/voice-message
- encoding: base64
- references:
- - IANA
- - RFC2421
- - RFC2423
- - "{multipart/voice-message=http://www.iana.org/assignments/media-types/multipart/voice-message}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2421
- - rfc2423
- template:
- - multipart/voice-message
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/x-gzip
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: multipart/x-mixed-replace
- encoding: base64
- references:
- - IANA
- - "[W3C]"
- - "[Robin_Berjon]"
- - "{multipart/x-mixed-replace=http://www.iana.org/assignments/media-types/multipart/x-mixed-replace}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robin_Berjon
- - W3C
- template:
- - multipart/x-mixed-replace
- registered: true
-- !ruby/object:MIME::Type
- content-type: multipart/x-parallel
- encoding: base64
- obsolete: true
- use-instead: multipart/parallel
- registered: false
-- !ruby/object:MIME::Type
- content-type: multipart/x-tar
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: multipart/x-ustar
- encoding: base64
- registered: false
-- !ruby/object:MIME::Type
- content-type: multipart/x-www-form-urlencoded
- encoding: base64
- obsolete: true
- use-instead: application/x-www-form-urlencoded
- registered: false
-- !ruby/object:MIME::Type
- content-type: multipart/x-zip
- encoding: base64
- registered: false
diff --git a/type-lists/text.yaml b/type-lists/text.yaml
deleted file mode 100644
index 90f232e..0000000
--- a/type-lists/text.yaml
+++ /dev/null
@@ -1,1257 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: text/1d-interleaved-parityfec
- encoding: quoted-printable
- references:
- - IANA
- - RFC6015
- - "{text/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/text/1d-interleaved-parityfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6015
- template:
- - text/1d-interleaved-parityfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/cache-manifest
- encoding: quoted-printable
- extensions:
- - appcache
- - manifest
- references:
- - IANA
- - "[W3C]"
- - "[Robin_Berjon]"
- - "{text/cache-manifest=http://www.iana.org/assignments/media-types/text/cache-manifest}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robin_Berjon
- - W3C
- template:
- - text/cache-manifest
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/calendar
- friendly:
- en: iCalendar
- encoding: quoted-printable
- extensions:
- - ics
- - ifb
- references:
- - IANA
- - RFC5545
- - "{text/calendar=http://www.iana.org/assignments/media-types/text/calendar}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5545
- template:
- - text/calendar
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/comma-separated-values
- encoding: 8bit
- extensions:
- - csv
- obsolete: true
- use-instead: text/csv
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/css
- friendly:
- en: Cascading Style Sheets (CSS)
- encoding: 8bit
- extensions:
- - css
- references:
- - IANA
- - RFC2318
- - "{text/css=http://www.iana.org/assignments/media-types/text/css}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2318
- template:
- - text/css
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/csv
- friendly:
- en: Comma-Separated Values
- encoding: 8bit
- extensions:
- - csv
- references:
- - IANA
- - RFC4180
- - RFC7111
- - "{text/csv=http://www.iana.org/assignments/media-types/text/csv}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4180
- - rfc7111
- template:
- - text/csv
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/csv-schema
- encoding: quoted-printable
- references:
- - IANA
- - "[National_Archives_UK]"
- - "[David_Underdown]"
- - "{text/csv-schema=http://www.iana.org/assignments/media-types/text/csv-schema}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Underdown
- - National_Archives_UK
- template:
- - text/csv-schema
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/directory
- encoding: quoted-printable
- obsolete: true
- references:
- - IANA
- - RFC2425
- - RFC6350
- - "{text/directory=http://www.iana.org/assignments/media-types/text/directory}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2425
- - rfc6350
- template:
- - text/directory
- notes:
- - "- DEPRECATED by RFC6350"
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/dns
- encoding: quoted-printable
- references:
- - IANA
- - RFC4027
- - "{text/dns=http://www.iana.org/assignments/media-types/text/dns}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4027
- template:
- - text/dns
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/ecmascript
- encoding: quoted-printable
- obsolete: true
- use-instead: application/ecmascript
- references:
- - IANA
- - RFC4329
- - "{text/ecmascript=http://www.iana.org/assignments/media-types/text/ecmascript}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4329
- template:
- - text/ecmascript
- notes:
- - "- OBSOLETED in favor of application/ecmascript"
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/encaprtp
- encoding: quoted-printable
- references:
- - IANA
- - RFC6849
- - "{text/encaprtp=http://www.iana.org/assignments/media-types/text/encaprtp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - text/encaprtp
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/enriched
- encoding: quoted-printable
- references:
- - IANA
- - RFC1896
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1896
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/example
- encoding: quoted-printable
- references:
- - IANA
- - RFC4735
- - "{text/example=http://www.iana.org/assignments/media-types/text/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - text/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/fwdred
- encoding: quoted-printable
- references:
- - IANA
- - RFC6354
- - "{text/fwdred=http://www.iana.org/assignments/media-types/text/fwdred}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6354
- template:
- - text/fwdred
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/grammar-ref-list
- encoding: quoted-printable
- references:
- - IANA
- - RFC6787
- - "{text/grammar-ref-list=http://www.iana.org/assignments/media-types/text/grammar-ref-list}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6787
- template:
- - text/grammar-ref-list
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/html
- friendly:
- en: HyperText Markup Language (HTML)
- encoding: 8bit
- extensions:
- - html
- - htm
- - htmlx
- - shtml
- - htx
- references:
- - IANA
- - "[W3C]"
- - "[Robin_Berjon]"
- - "{text/html=http://www.iana.org/assignments/media-types/text/html}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robin_Berjon
- - W3C
- template:
- - text/html
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/javascript
- encoding: quoted-printable
- extensions:
- - js
- obsolete: true
- use-instead: application/javascript
- references:
- - IANA
- - RFC4329
- - "{text/javascript=http://www.iana.org/assignments/media-types/text/javascript}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4329
- template:
- - text/javascript
- notes:
- - "- OBSOLETED in favor of application/javascript"
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/jcr-cnd
- encoding: quoted-printable
- references:
- - IANA
- - "[Peeter_Piegaze]"
- - "{text/jcr-cnd=http://www.iana.org/assignments/media-types/text/jcr-cnd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peeter_Piegaze
- template:
- - text/jcr-cnd
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/markdown
- encoding: quoted-printable
- references:
- - IANA
- - DRAFT:draft-ietf-appsawg-text-markdown
- - "{text/markdown=http://www.iana.org/assignments/media-types/text/markdown}"
- xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - draft-ietf-appsawg-text-markdown
- template:
- - text/markdown
- notes:
- - "(TEMPORARY - registered 2014-11-11, expires 2015-11-11)"
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/mizar
- encoding: quoted-printable
- references:
- - IANA
- - "[Jesse_Alama]"
- - "{text/mizar=http://www.iana.org/assignments/media-types/text/mizar}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jesse_Alama
- template:
- - text/mizar
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/n3
- friendly:
- en: Notation3
- encoding: quoted-printable
- extensions:
- - n3
- references:
- - IANA
- - "[W3C]"
- - "[Eric_Prudhommeaux]"
- - "{text/n3=http://www.iana.org/assignments/media-types/text/n3}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Prudhommeaux
- - W3C
- template:
- - text/n3
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/parameters
- encoding: quoted-printable
- references:
- - IANA
- - DRAFT:draft-ietf-mmusic-rfc2326bis-40
- - "{text/parameters=http://www.iana.org/assignments/media-types/text/parameters}"
- xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-mmusic-rfc2326bis-40
- template:
- - text/parameters
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/parityfec
- encoding: quoted-printable
- references:
- - IANA
- - RFC5109
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/plain
- friendly:
- en: Text File
- encoding: quoted-printable
- extensions:
- - txt
- - asc
- - c
- - cc
- - h
- - hh
- - cpp
- - hpp
- - dat
- - hlp
- - conf
- - def
- - doc
- - in
- - list
- - log
- - markdown
- - md
- - rst
- - text
- - textile
- references:
- - IANA
- - RFC2046
- - RFC3676
- - RFC5147
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2046
- - rfc3676
- - rfc5147
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/provenance-notation
- encoding: quoted-printable
- references:
- - IANA
- - "[W3C]"
- - "[Ivan_Herman]"
- - "{text/provenance-notation=http://www.iana.org/assignments/media-types/text/provenance-notation}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Ivan_Herman
- - W3C
- template:
- - text/provenance-notation
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/prs.fallenstein.rst
- encoding: quoted-printable
- extensions:
- - rst
- references:
- - IANA
- - "[Benja_Fallenstein]"
- - "{text/prs.fallenstein.rst=http://www.iana.org/assignments/media-types/text/prs.fallenstein.rst}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Benja_Fallenstein
- template:
- - text/prs.fallenstein.rst
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/prs.lines.tag
- friendly:
- en: PRS Lines Tag
- encoding: quoted-printable
- extensions:
- - dsc
- references:
- - IANA
- - "[John_Lines]"
- - "{text/prs.lines.tag=http://www.iana.org/assignments/media-types/text/prs.lines.tag}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Lines
- template:
- - text/prs.lines.tag
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/raptorfec
- encoding: quoted-printable
- references:
- - IANA
- - RFC6682
- - "{text/raptorfec=http://www.iana.org/assignments/media-types/text/raptorfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6682
- template:
- - text/raptorfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/RED
- encoding: quoted-printable
- references:
- - IANA
- - RFC4102
- - "{text/RED=http://www.iana.org/assignments/media-types/text/RED}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4102
- template:
- - text/RED
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/rfc822-headers
- encoding: quoted-printable
- references:
- - IANA
- - RFC6522
- - "{text/rfc822-headers=http://www.iana.org/assignments/media-types/text/rfc822-headers}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6522
- template:
- - text/rfc822-headers
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/richtext
- friendly:
- en: Rich Text Format (RTF)
- encoding: 8bit
- extensions:
- - rtx
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/rtf
- encoding: 8bit
- extensions:
- - rtf
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{text/rtf=http://www.iana.org/assignments/media-types/text/rtf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - text/rtf
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/rtp-enc-aescm128
- encoding: quoted-printable
- references:
- - IANA
- - "[ThreeGPP]"
- - "{text/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/text/rtp-enc-aescm128}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - text/rtp-enc-aescm128
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/rtploopback
- encoding: quoted-printable
- references:
- - IANA
- - RFC6849
- - "{text/rtploopback=http://www.iana.org/assignments/media-types/text/rtploopback}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - text/rtploopback
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/rtx
- encoding: quoted-printable
- references:
- - IANA
- - RFC4588
- - "{text/rtx=http://www.iana.org/assignments/media-types/text/rtx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4588
- template:
- - text/rtx
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/sgml
- friendly:
- en: Standard Generalized Markup Language (SGML)
- encoding: quoted-printable
- extensions:
- - sgml
- - sgm
- references:
- - IANA
- - RFC1874
- - "{text/SGML=http://www.iana.org/assignments/media-types/text/SGML}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc1874
- template:
- - text/SGML
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/t140
- encoding: quoted-printable
- references:
- - IANA
- - RFC4103
- - "{text/t140=http://www.iana.org/assignments/media-types/text/t140}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4103
- template:
- - text/t140
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/tab-separated-values
- friendly:
- en: Tab Separated Values
- encoding: quoted-printable
- extensions:
- - tsv
- references:
- - IANA
- - "[Paul_Lindner]"
- - "{text/tab-separated-values=http://www.iana.org/assignments/media-types/text/tab-separated-values}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Paul_Lindner
- template:
- - text/tab-separated-values
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/troff
- friendly:
- en: troff
- encoding: 8bit
- extensions:
- - t
- - tr
- - roff
- - troff
- - man
- - me
- - ms
- references:
- - IANA
- - RFC4263
- - "{text/troff=http://www.iana.org/assignments/media-types/text/troff}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4263
- template:
- - text/troff
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/turtle
- friendly:
- en: Turtle (Terse RDF Triple Language)
- encoding: quoted-printable
- extensions:
- - ttl
- references:
- - IANA
- - "[W3C]"
- - "[Eric_Prudhommeaux]"
- - "{text/turtle=http://www.iana.org/assignments/media-types/text/turtle}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Eric_Prudhommeaux
- - W3C
- template:
- - text/turtle
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/ulpfec
- encoding: quoted-printable
- references:
- - IANA
- - RFC5109
- - "{text/ulpfec=http://www.iana.org/assignments/media-types/text/ulpfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- template:
- - text/ulpfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/uri-list
- friendly:
- en: URI Resolution Services
- encoding: quoted-printable
- extensions:
- - uri
- - uris
- - urls
- references:
- - IANA
- - RFC2483
- - "{text/uri-list=http://www.iana.org/assignments/media-types/text/uri-list}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2483
- template:
- - text/uri-list
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vcard
- encoding: quoted-printable
- extensions:
- - vcard
- references:
- - IANA
- - RFC6350
- - "{text/vcard=http://www.iana.org/assignments/media-types/text/vcard}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6350
- template:
- - text/vcard
- registered: true
- signature: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.a
- encoding: quoted-printable
- references:
- - IANA
- - "[Regis_Dehoux]"
- - "{text/vnd-a=http://www.iana.org/assignments/media-types/text/vnd-a}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Regis_Dehoux
- template:
- - text/vnd-a
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.abc
- encoding: quoted-printable
- references:
- - IANA
- - "[Steve_Allen]"
- - "{text/vnd.abc=http://www.iana.org/assignments/media-types/text/vnd.abc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_Allen
- template:
- - text/vnd.abc
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.curl
- friendly:
- en: Curl - Applet
- encoding: quoted-printable
- extensions:
- - curl
- references:
- - IANA
- - "[Robert_Byrnes]"
- - "{text/vnd-curl=http://www.iana.org/assignments/media-types/text/vnd-curl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Robert_Byrnes
- template:
- - text/vnd-curl
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.curl.dcurl
- friendly:
- en: Curl - Detached Applet
- encoding: quoted-printable
- extensions:
- - dcurl
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/vnd.curl.mcurl
- friendly:
- en: Curl - Manifest File
- encoding: quoted-printable
- extensions:
- - mcurl
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/vnd.curl.scurl
- friendly:
- en: Curl - Source Code
- encoding: quoted-printable
- extensions:
- - scurl
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/vnd.debian.copyright
- encoding: quoted-printable
- references:
- - IANA
- - "[Charles_Plessy]"
- - "{text/vnd.debian.copyright=http://www.iana.org/assignments/media-types/text/vnd.debian.copyright}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Charles_Plessy
- template:
- - text/vnd.debian.copyright
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.DMClientScript
- encoding: quoted-printable
- references:
- - IANA
- - "[Dan_Bradley]"
- - "{text/vnd.DMClientScript=http://www.iana.org/assignments/media-types/text/vnd.DMClientScript}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Dan_Bradley
- template:
- - text/vnd.DMClientScript
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.dvb.subtitle
- encoding: quoted-printable
- extensions:
- - sub
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Michael_Lagally]"
- - "{text/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/text/vnd.dvb.subtitle}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Lagally
- - Peter_Siebert
- template:
- - text/vnd.dvb.subtitle
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.esmertec.theme-descriptor
- encoding: quoted-printable
- references:
- - IANA
- - "[Stefan_Eilemann]"
- - "{text/vnd.esmertec.theme-descriptor=http://www.iana.org/assignments/media-types/text/vnd.esmertec.theme-descriptor}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Stefan_Eilemann
- template:
- - text/vnd.esmertec.theme-descriptor
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.flatland.3dml
- encoding: quoted-printable
- obsolete: true
- use-instead: model/vnd.flatland.3dml
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/vnd.fly
- friendly:
- en: mod_fly / fly.cgi
- encoding: quoted-printable
- extensions:
- - fly
- references:
- - IANA
- - "[John-Mark_Gurney]"
- - "{text/vnd.fly=http://www.iana.org/assignments/media-types/text/vnd.fly}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John-Mark_Gurney
- template:
- - text/vnd.fly
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.fmi.flexstor
- friendly:
- en: FLEXSTOR
- encoding: quoted-printable
- extensions:
- - flx
- references:
- - IANA
- - "[Kari_E._Hurtta]"
- - "{text/vnd.fmi.flexstor=http://www.iana.org/assignments/media-types/text/vnd.fmi.flexstor}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kari_E._Hurtta
- template:
- - text/vnd.fmi.flexstor
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.graphviz
- friendly:
- en: Graphviz
- encoding: quoted-printable
- extensions:
- - gv
- references:
- - IANA
- - "[John_Ellson]"
- - "{text/vnd.graphviz=http://www.iana.org/assignments/media-types/text/vnd.graphviz}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Ellson
- template:
- - text/vnd.graphviz
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.in3d.3dml
- friendly:
- en: In3D - 3DML
- encoding: quoted-printable
- extensions:
- - 3dml
- references:
- - IANA
- - "[Michael_Powers]"
- - "{text/vnd.in3d.3dml=http://www.iana.org/assignments/media-types/text/vnd.in3d.3dml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Powers
- template:
- - text/vnd.in3d.3dml
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.in3d.spot
- friendly:
- en: In3D - 3DML
- encoding: quoted-printable
- extensions:
- - spot
- references:
- - IANA
- - "[Michael_Powers]"
- - "{text/vnd.in3d.spot=http://www.iana.org/assignments/media-types/text/vnd.in3d.spot}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_Powers
- template:
- - text/vnd.in3d.spot
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.IPTC.NewsML
- encoding: quoted-printable
- references:
- - IANA
- - "[IPTC]"
- - "{text/vnd.IPTC.NewsML=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NewsML}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - IPTC
- template:
- - text/vnd.IPTC.NewsML
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.IPTC.NITF
- encoding: quoted-printable
- references:
- - IANA
- - "[IPTC]"
- - "{text/vnd.IPTC.NITF=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NITF}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - IPTC
- template:
- - text/vnd.IPTC.NITF
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.latex-z
- encoding: quoted-printable
- references:
- - IANA
- - "[Mikusiak_Lubos]"
- - "{text/vnd.latex-z=http://www.iana.org/assignments/media-types/text/vnd.latex-z}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mikusiak_Lubos
- template:
- - text/vnd.latex-z
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.motorola.reflex
- encoding: quoted-printable
- references:
- - IANA
- - "[Mark_Patton]"
- - "{text/vnd.motorola.reflex=http://www.iana.org/assignments/media-types/text/vnd.motorola.reflex}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Mark_Patton
- template:
- - text/vnd.motorola.reflex
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.ms-mediapackage
- encoding: quoted-printable
- references:
- - IANA
- - "[Jan_Nelson]"
- - "{text/vnd.ms-mediapackage=http://www.iana.org/assignments/media-types/text/vnd.ms-mediapackage}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Jan_Nelson
- template:
- - text/vnd.ms-mediapackage
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.net2phone.commcenter.command
- encoding: quoted-printable
- extensions:
- - ccc
- references:
- - IANA
- - "[Feiyu_Xie]"
- - "{text/vnd.net2phone.commcenter.command=http://www.iana.org/assignments/media-types/text/vnd.net2phone.commcenter.command}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Feiyu_Xie
- template:
- - text/vnd.net2phone.commcenter.command
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.radisys.msml-basic-layout
- encoding: quoted-printable
- references:
- - IANA
- - RFC5707
- - "{text/vnd.radisys.msml-basic-layout=http://www.iana.org/assignments/media-types/text/vnd.radisys.msml-basic-layout}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5707
- template:
- - text/vnd.radisys.msml-basic-layout
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.si.uricatalogue
- encoding: quoted-printable
- obsolete: true
- references:
- - IANA
- - "[Nicholas_Parks_Young]"
- - "{text/vnd.si.uricatalogue=http://www.iana.org/assignments/media-types/text/vnd.si.uricatalogue}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nicholas_Parks_Young
- template:
- - text/vnd.si.uricatalogue
- notes:
- - "- OBSOLETED by request"
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.sun.j2me.app-descriptor
- friendly:
- en: J2ME App Descriptor
- encoding: 8bit
- extensions:
- - jad
- references:
- - IANA
- - "[Gary_Adams]"
- - "{text/vnd.sun.j2me.app-descriptor=http://www.iana.org/assignments/media-types/text/vnd.sun.j2me.app-descriptor}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Gary_Adams
- template:
- - text/vnd.sun.j2me.app-descriptor
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.trolltech.linguist
- encoding: quoted-printable
- references:
- - IANA
- - "[David_Lee_Lambert]"
- - "{text/vnd.trolltech.linguist=http://www.iana.org/assignments/media-types/text/vnd.trolltech.linguist}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Lee_Lambert
- template:
- - text/vnd.trolltech.linguist
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.wap.si
- encoding: quoted-printable
- extensions:
- - si
- references:
- - IANA
- - "[WAP-Forum]"
- - "{text/vnd.wap.si=http://www.iana.org/assignments/media-types/text/vnd.wap.si}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - WAP-Forum
- template:
- - text/vnd.wap.si
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.wap.sl
- encoding: quoted-printable
- extensions:
- - sl
- references:
- - IANA
- - "[WAP-Forum]"
- - "{text/vnd.wap.sl=http://www.iana.org/assignments/media-types/text/vnd.wap.sl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - WAP-Forum
- template:
- - text/vnd.wap.sl
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.wap.wml
- friendly:
- en: Wireless Markup Language (WML)
- encoding: quoted-printable
- extensions:
- - wml
- references:
- - IANA
- - "[Peter_Stark]"
- - "{text/vnd.wap-wml=http://www.iana.org/assignments/media-types/text/vnd.wap-wml}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Stark
- template:
- - text/vnd.wap-wml
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/vnd.wap.wmlscript
- friendly:
- en: Wireless Markup Language Script (WMLScript)
- encoding: quoted-printable
- extensions:
- - wmls
- references:
- - IANA
- - "[Peter_Stark]"
- - "{text/vnd.wap.wmlscript=http://www.iana.org/assignments/media-types/text/vnd.wap.wmlscript}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Peter_Stark
- template:
- - text/vnd.wap.wmlscript
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/x-asm
- friendly:
- en: Assembler Source File
- encoding: quoted-printable
- extensions:
- - asm
- - s
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-c
- friendly:
- en: C Source File
- encoding: quoted-printable
- extensions:
- - c
- - cc
- - cpp
- - cxx
- - dic
- - h
- - hh
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-coffescript
- encoding: 8bit
- extensions:
- - coffee
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-component
- encoding: 8bit
- extensions:
- - htc
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-fortran
- friendly:
- en: Fortran Source File
- encoding: quoted-printable
- extensions:
- - f
- - f77
- - f90
- - for
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-java-source
- friendly:
- en: Java Source File
- encoding: quoted-printable
- extensions:
- - java
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-nfo
- encoding: quoted-printable
- extensions:
- - nfo
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-opml
- encoding: quoted-printable
- extensions:
- - opml
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-pascal
- friendly:
- en: Pascal Source File
- encoding: quoted-printable
- extensions:
- - p
- - pas
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-rtf
- encoding: 8bit
- extensions:
- - rtf
- obsolete: true
- use-instead: text/rtf
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-setext
- friendly:
- en: Setext
- encoding: quoted-printable
- extensions:
- - etx
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-sfv
- encoding: quoted-printable
- extensions:
- - sfv
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-uuencode
- friendly:
- en: UUEncode
- encoding: quoted-printable
- extensions:
- - uu
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-vcalendar
- friendly:
- en: vCalendar
- encoding: 8bit
- extensions:
- - vcs
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-vcard
- friendly:
- en: vCard
- encoding: 8bit
- extensions:
- - vcf
- registered: false
- signature: true
-- !ruby/object:MIME::Type
- content-type: text/x-vnd.flatland.3dml
- encoding: quoted-printable
- obsolete: true
- use-instead: model/vnd.flatland.3dml
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/x-yaml
- encoding: 8bit
- extensions:
- - yaml
- - yml
- registered: false
-- !ruby/object:MIME::Type
- content-type: text/xml
- encoding: 8bit
- extensions:
- - xml
- - dtd
- references:
- - IANA
- - RFC7303
- - "{text/xml=http://www.iana.org/assignments/media-types/text/xml}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7303
- template:
- - text/xml
- registered: true
-- !ruby/object:MIME::Type
- content-type: text/xml-external-parsed-entity
- encoding: quoted-printable
- references:
- - IANA
- - RFC7303
- - "{text/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/text/xml-external-parsed-entity}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc7303
- template:
- - text/xml-external-parsed-entity
- registered: true
diff --git a/type-lists/video.yaml b/type-lists/video.yaml
deleted file mode 100644
index 8e34a02..0000000
--- a/type-lists/video.yaml
+++ /dev/null
@@ -1,1310 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: video/1d-interleaved-parityfec
- encoding: base64
- references:
- - IANA
- - RFC6015
- - "{video/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/video/1d-interleaved-parityfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6015
- template:
- - video/1d-interleaved-parityfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/3gpp
- friendly:
- en: 3GP
- encoding: base64
- extensions:
- - 3gp
- - 3gpp
- references:
- - IANA
- - RFC3839
- - RFC6381
- - "{video/3gpp=http://www.iana.org/assignments/media-types/video/3gpp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3839
- - rfc6381
- template:
- - video/3gpp
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/3gpp-tt
- encoding: base64
- references:
- - IANA
- - RFC4396
- - "{video/3gpp-tt=http://www.iana.org/assignments/media-types/video/3gpp-tt}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4396
- template:
- - video/3gpp-tt
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/3gpp2
- friendly:
- en: 3GP2
- encoding: base64
- extensions:
- - 3g2
- - 3gpp2
- references:
- - IANA
- - RFC4393
- - RFC6381
- - "{video/3gpp2=http://www.iana.org/assignments/media-types/video/3gpp2}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4393
- - rfc6381
- template:
- - video/3gpp2
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/BMPEG
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{video/BMPEG=http://www.iana.org/assignments/media-types/video/BMPEG}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/BMPEG
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/BT656
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{video/BT656=http://www.iana.org/assignments/media-types/video/BT656}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/BT656
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/CelB
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{video/CelB=http://www.iana.org/assignments/media-types/video/CelB}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/CelB
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/dl
- encoding: base64
- extensions:
- - dl
- obsolete: true
- use-instead: video/x-dl
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/DV
- encoding: base64
- extensions:
- - dv
- references:
- - IANA
- - RFC6469
- - "{video/DV=http://www.iana.org/assignments/media-types/video/DV}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6469
- template:
- - video/DV
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/encaprtp
- encoding: base64
- references:
- - IANA
- - RFC6849
- - "{video/encaprtp=http://www.iana.org/assignments/media-types/video/encaprtp}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - video/encaprtp
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/example
- encoding: base64
- references:
- - IANA
- - RFC4735
- - "{video/example=http://www.iana.org/assignments/media-types/video/example}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4735
- template:
- - video/example
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/gl
- encoding: base64
- extensions:
- - gl
- obsolete: true
- use-instead: video/x-gl
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/H261
- friendly:
- en: H.261
- encoding: base64
- extensions:
- - h261
- references:
- - IANA
- - RFC4587
- - "{video/H261=http://www.iana.org/assignments/media-types/video/H261}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4587
- template:
- - video/H261
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/H263
- friendly:
- en: H.263
- encoding: base64
- extensions:
- - h263
- references:
- - IANA
- - RFC3555
- - "{video/H263=http://www.iana.org/assignments/media-types/video/H263}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/H263
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/H263-1998
- encoding: base64
- references:
- - IANA
- - RFC4629
- - "{video/H263-1998=http://www.iana.org/assignments/media-types/video/H263-1998}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4629
- template:
- - video/H263-1998
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/H263-2000
- encoding: base64
- references:
- - IANA
- - RFC4629
- - "{video/H263-2000=http://www.iana.org/assignments/media-types/video/H263-2000}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4629
- template:
- - video/H263-2000
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/H264
- friendly:
- en: H.264
- encoding: base64
- extensions:
- - h264
- references:
- - IANA
- - RFC6184
- - "{video/H264=http://www.iana.org/assignments/media-types/video/H264}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6184
- template:
- - video/H264
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/H264-RCDO
- encoding: base64
- references:
- - IANA
- - RFC6185
- - "{video/H264-RCDO=http://www.iana.org/assignments/media-types/video/H264-RCDO}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6185
- template:
- - video/H264-RCDO
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/H264-SVC
- encoding: base64
- references:
- - IANA
- - RFC6190
- - "{video/H264-SVC=http://www.iana.org/assignments/media-types/video/H264-SVC}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6190
- template:
- - video/H264-SVC
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/iso.segment
- encoding: base64
- references:
- - IANA
- - "[David_Singer]"
- - "[ISO-IEC_JTC1]"
- - "{video/iso.segment=http://www.iana.org/assignments/media-types/video/iso.segment}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Singer
- - ISO-IEC_JTC1
- template:
- - video/iso.segment
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/JPEG
- friendly:
- en: JPGVideo
- encoding: base64
- extensions:
- - jpgv
- references:
- - IANA
- - RFC3555
- - "{video/JPEG=http://www.iana.org/assignments/media-types/video/JPEG}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/JPEG
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/jpeg2000
- encoding: base64
- references:
- - IANA
- - RFC5371
- - RFC5372
- - "{video/jpeg2000=http://www.iana.org/assignments/media-types/video/jpeg2000}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5371
- - rfc5372
- template:
- - video/jpeg2000
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/jpm
- friendly:
- en: JPEG 2000 Compound Image File Format
- encoding: base64
- extensions:
- - jpgm
- - jpm
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/MJ2
- friendly:
- en: Motion JPEG 2000
- encoding: base64
- extensions:
- - mj2
- - mjp2
- references:
- - IANA
- - RFC3745
- - "{video/mj2=http://www.iana.org/assignments/media-types/video/mj2}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3745
- template:
- - video/mj2
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/MP1S
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{video/MP1S=http://www.iana.org/assignments/media-types/video/MP1S}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/MP1S
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/MP2P
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{video/MP2P=http://www.iana.org/assignments/media-types/video/MP2P}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/MP2P
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/MP2T
- encoding: base64
- extensions:
- - ts
- references:
- - IANA
- - RFC3555
- - "{video/MP2T=http://www.iana.org/assignments/media-types/video/MP2T}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/MP2T
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/mp4
- friendly:
- en: MPEG-4 Video
- encoding: base64
- extensions:
- - mp4
- - mpg4
- - f4v
- - f4p
- - mp4v
- references:
- - IANA
- - RFC4337
- - RFC6381
- - "{video/mp4=http://www.iana.org/assignments/media-types/video/mp4}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4337
- - rfc6381
- template:
- - video/mp4
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/MP4V-ES
- encoding: base64
- references:
- - IANA
- - RFC6416
- - "{video/MP4V-ES=http://www.iana.org/assignments/media-types/video/MP4V-ES}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6416
- template:
- - video/MP4V-ES
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/mpeg
- friendly:
- en: MPEG Video
- encoding: base64
- extensions:
- - mp2
- - mp3g
- - mpe
- - mpeg
- - mpg
- - m1v
- - m2v
- references:
- - IANA
- - RFC2045
- - RFC2046
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2045
- - rfc2046
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/mpeg4-generic
- encoding: base64
- references:
- - IANA
- - RFC3640
- - "{video/mpeg4-generic=http://www.iana.org/assignments/media-types/video/mpeg4-generic}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3640
- template:
- - video/mpeg4-generic
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/MPV
- encoding: base64
- references:
- - IANA
- - RFC3555
- - "{video/MPV=http://www.iana.org/assignments/media-types/video/MPV}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3555
- template:
- - video/MPV
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/nv
- encoding: base64
- references:
- - IANA
- - RFC4856
- - "{video/nv=http://www.iana.org/assignments/media-types/video/nv}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4856
- template:
- - video/nv
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/ogg
- friendly:
- en: Ogg Video
- encoding: base64
- extensions:
- - ogg
- - ogv
- references:
- - IANA
- - RFC5334
- - "{video/ogg=http://www.iana.org/assignments/media-types/video/ogg}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5334
- template:
- - video/ogg
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/parityfec
- encoding: base64
- references:
- - IANA
- - RFC5109
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/pointer
- encoding: base64
- references:
- - IANA
- - RFC2862
- - "{video/pointer=http://www.iana.org/assignments/media-types/video/pointer}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc2862
- template:
- - video/pointer
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/quicktime
- friendly:
- en: Quicktime Video
- encoding: base64
- extensions:
- - qt
- - mov
- references:
- - IANA
- - RFC6381
- - "[Paul_Lindner]"
- - "{video/quicktime=http://www.iana.org/assignments/media-types/video/quicktime}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6381
- person:
- - Paul_Lindner
- template:
- - video/quicktime
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/raptorfec
- encoding: base64
- references:
- - IANA
- - RFC6682
- - "{video/raptorfec=http://www.iana.org/assignments/media-types/video/raptorfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6682
- template:
- - video/raptorfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/raw
- encoding: base64
- references:
- - IANA
- - RFC4175
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4175
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/rtp-enc-aescm128
- encoding: base64
- references:
- - IANA
- - "[ThreeGPP]"
- - "{video/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/video/rtp-enc-aescm128}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - ThreeGPP
- template:
- - video/rtp-enc-aescm128
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/rtploopback
- encoding: base64
- references:
- - IANA
- - RFC6849
- - "{video/rtploopback=http://www.iana.org/assignments/media-types/video/rtploopback}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc6849
- template:
- - video/rtploopback
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/rtx
- encoding: base64
- references:
- - IANA
- - RFC4588
- - "{video/rtx=http://www.iana.org/assignments/media-types/video/rtx}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4588
- template:
- - video/rtx
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/SMPTE292M
- encoding: base64
- references:
- - IANA
- - RFC3497
- - "{video/SMPTE292M=http://www.iana.org/assignments/media-types/video/SMPTE292M}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc3497
- template:
- - video/SMPTE292M
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/ulpfec
- encoding: base64
- references:
- - IANA
- - RFC5109
- - "{video/ulpfec=http://www.iana.org/assignments/media-types/video/ulpfec}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc5109
- template:
- - video/ulpfec
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vc1
- encoding: base64
- references:
- - IANA
- - RFC4425
- - "{video/vc1=http://www.iana.org/assignments/media-types/video/vc1}"
- xrefs: !ruby/hash:MIME::Types::Container
- rfc:
- - rfc4425
- template:
- - video/vc1
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.CCTV
- encoding: base64
- references:
- - IANA
- - "[Frank_Rottmann]"
- - "{video/vnd.CCTV=http://www.iana.org/assignments/media-types/video/vnd.CCTV}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Frank_Rottmann
- template:
- - video/vnd.CCTV
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dece.hd
- friendly:
- en: DECE High Definition Video
- encoding: base64
- extensions:
- - uvh
- - uvvh
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.dece.hd=http://www.iana.org/assignments/media-types/video/vnd.dece.hd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.dece.hd
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dece.mobile
- friendly:
- en: DECE Mobile Video
- encoding: base64
- extensions:
- - uvm
- - uvvm
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.dece.mobile=http://www.iana.org/assignments/media-types/video/vnd.dece.mobile}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.dece.mobile
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dece.mp4
- encoding: base64
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.dece-mp4=http://www.iana.org/assignments/media-types/video/vnd.dece-mp4}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.dece-mp4
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dece.pd
- friendly:
- en: DECE PD Video
- encoding: base64
- extensions:
- - uvp
- - uvvp
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.dece.pd=http://www.iana.org/assignments/media-types/video/vnd.dece.pd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.dece.pd
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dece.sd
- friendly:
- en: DECE SD Video
- encoding: base64
- extensions:
- - uvs
- - uvvs
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.dece.sd=http://www.iana.org/assignments/media-types/video/vnd.dece.sd}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.dece.sd
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dece.video
- friendly:
- en: DECE Video
- encoding: base64
- extensions:
- - uvv
- - uvvv
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.dece.video=http://www.iana.org/assignments/media-types/video/vnd.dece.video}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.dece.video
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.directv.mpeg
- encoding: base64
- references:
- - IANA
- - "[Nathan_Zerbe]"
- - "{video/vnd.directv-mpeg=http://www.iana.org/assignments/media-types/video/vnd.directv-mpeg}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nathan_Zerbe
- template:
- - video/vnd.directv-mpeg
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.directv.mpeg-tts
- encoding: base64
- references:
- - IANA
- - "[Nathan_Zerbe]"
- - "{video/vnd.directv.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.directv.mpeg-tts}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nathan_Zerbe
- template:
- - video/vnd.directv.mpeg-tts
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dlna.mpeg-tts
- encoding: base64
- references:
- - IANA
- - "[Edwin_Heredia]"
- - "{video/vnd.dlna.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.dlna.mpeg-tts}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Edwin_Heredia
- template:
- - video/vnd.dlna.mpeg-tts
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.dvb.file
- encoding: base64
- extensions:
- - dvb
- references:
- - IANA
- - "[Peter_Siebert]"
- - "[Kevin_Murray]"
- - "{video/vnd.dvb.file=http://www.iana.org/assignments/media-types/video/vnd.dvb.file}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Kevin_Murray
- - Peter_Siebert
- template:
- - video/vnd.dvb.file
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.fvt
- friendly:
- en: FAST Search & Transfer ASA
- encoding: base64
- extensions:
- - fvt
- references:
- - IANA
- - "[Arild_Fuldseth]"
- - "{video/vnd.fvt=http://www.iana.org/assignments/media-types/video/vnd.fvt}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Arild_Fuldseth
- template:
- - video/vnd.fvt
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.hns.video
- encoding: base64
- references:
- - IANA
- - "[Swaminathan]"
- - "{video/vnd.hns.video=http://www.iana.org/assignments/media-types/video/vnd.hns.video}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Swaminathan
- template:
- - video/vnd.hns.video
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.iptvforum.1dparityfec-1010
- encoding: base64
- references:
- - IANA
- - "[Shuji_Nakamura]"
- - "{video/vnd.iptvforum.1dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-1010}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Nakamura
- template:
- - video/vnd.iptvforum.1dparityfec-1010
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.iptvforum.1dparityfec-2005
- encoding: base64
- references:
- - IANA
- - "[Shuji_Nakamura]"
- - "{video/vnd.iptvforum.1dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-2005}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Nakamura
- template:
- - video/vnd.iptvforum.1dparityfec-2005
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.iptvforum.2dparityfec-1010
- encoding: base64
- references:
- - IANA
- - "[Shuji_Nakamura]"
- - "{video/vnd.iptvforum.2dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-1010}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Nakamura
- template:
- - video/vnd.iptvforum.2dparityfec-1010
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.iptvforum.2dparityfec-2005
- encoding: base64
- references:
- - IANA
- - "[Shuji_Nakamura]"
- - "{video/vnd.iptvforum.2dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-2005}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Nakamura
- template:
- - video/vnd.iptvforum.2dparityfec-2005
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.iptvforum.ttsavc
- encoding: base64
- references:
- - IANA
- - "[Shuji_Nakamura]"
- - "{video/vnd.iptvforum.ttsavc=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsavc}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Nakamura
- template:
- - video/vnd.iptvforum.ttsavc
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.iptvforum.ttsmpeg2
- encoding: base64
- references:
- - IANA
- - "[Shuji_Nakamura]"
- - "{video/vnd.iptvforum.ttsmpeg2=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsmpeg2}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Shuji_Nakamura
- template:
- - video/vnd.iptvforum.ttsmpeg2
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.motorola.video
- encoding: base64
- references:
- - IANA
- - "[Tom_McGinty]"
- - "{video/vnd.motorola.video=http://www.iana.org/assignments/media-types/video/vnd.motorola.video}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tom_McGinty
- template:
- - video/vnd.motorola.video
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.motorola.videop
- encoding: base64
- references:
- - IANA
- - "[Tom_McGinty]"
- - "{video/vnd.motorola.videop=http://www.iana.org/assignments/media-types/video/vnd.motorola.videop}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Tom_McGinty
- template:
- - video/vnd.motorola.videop
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.mpegurl
- friendly:
- en: MPEG Url
- encoding: 8bit
- extensions:
- - mxu
- - m4u
- references:
- - IANA
- - "[Heiko_Recktenwald]"
- - "{video/vnd-mpegurl=http://www.iana.org/assignments/media-types/video/vnd-mpegurl}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Heiko_Recktenwald
- template:
- - video/vnd-mpegurl
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.ms-playready.media.pyv
- friendly:
- en: Microsoft PlayReady Ecosystem Video
- encoding: base64
- extensions:
- - pyv
- references:
- - IANA
- - "[Steve_DiAcetis]"
- - "{video/vnd.ms-playready.media.pyv=http://www.iana.org/assignments/media-types/video/vnd.ms-playready.media.pyv}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Steve_DiAcetis
- template:
- - video/vnd.ms-playready.media.pyv
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.nokia.interleaved-multimedia
- encoding: base64
- extensions:
- - nim
- references:
- - IANA
- - "[Petteri_Kangaslampi]"
- - "{video/vnd.nokia.interleaved-multimedia=http://www.iana.org/assignments/media-types/video/vnd.nokia.interleaved-multimedia}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Petteri_Kangaslampi
- template:
- - video/vnd.nokia.interleaved-multimedia
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.nokia.videovoip
- encoding: base64
- references:
- - IANA
- - "[Nokia]"
- - "{video/vnd.nokia.videovoip=http://www.iana.org/assignments/media-types/video/vnd.nokia.videovoip}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Nokia
- template:
- - video/vnd.nokia.videovoip
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.objectvideo
- encoding: base64
- extensions:
- - mp4
- - m4v
- references:
- - IANA
- - "[John_Clark]"
- - "{video/vnd.objectvideo=http://www.iana.org/assignments/media-types/video/vnd.objectvideo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Clark
- template:
- - video/vnd.objectvideo
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.radgamettools.bink
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{video/vnd.radgamettools.bink=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.bink}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - video/vnd.radgamettools.bink
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.radgamettools.smacker
- encoding: base64
- references:
- - IANA
- - "[Henrik_Andersson]"
- - "{video/vnd.radgamettools.smacker=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.smacker}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Henrik_Andersson
- template:
- - video/vnd.radgamettools.smacker
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.sealed.mpeg1
- encoding: base64
- extensions:
- - s11
- references:
- - IANA
- - "[David_Petersen]"
- - "{video/vnd.sealed.mpeg1=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg1}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - video/vnd.sealed.mpeg1
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.sealed.mpeg4
- encoding: base64
- extensions:
- - smpg
- - s14
- references:
- - IANA
- - "[David_Petersen]"
- - "{video/vnd.sealed.mpeg4=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg4}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - video/vnd.sealed.mpeg4
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.sealed.swf
- encoding: base64
- extensions:
- - sswf
- - ssw
- references:
- - IANA
- - "[David_Petersen]"
- - "{video/vnd.sealed-swf=http://www.iana.org/assignments/media-types/video/vnd.sealed-swf}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - video/vnd.sealed-swf
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.sealedmedia.softseal.mov
- encoding: base64
- extensions:
- - smov
- - smo
- - s1q
- references:
- - IANA
- - "[David_Petersen]"
- - "{video/vnd.sealedmedia.softseal-mov=http://www.iana.org/assignments/media-types/video/vnd.sealedmedia.softseal-mov}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - David_Petersen
- template:
- - video/vnd.sealedmedia.softseal-mov
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.uvvu.mp4
- friendly:
- en: DECE MP4
- encoding: base64
- extensions:
- - uvu
- - uvvu
- references:
- - IANA
- - "[Michael_A_Dolan]"
- - "{video/vnd.uvvu-mp4=http://www.iana.org/assignments/media-types/video/vnd.uvvu-mp4}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - Michael_A_Dolan
- template:
- - video/vnd.uvvu-mp4
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/vnd.vivo
- friendly:
- en: Vivo
- encoding: base64
- extensions:
- - viv
- - vivo
- references:
- - IANA
- - "[John_Wolfe]"
- - "{video/vnd-vivo=http://www.iana.org/assignments/media-types/video/vnd-vivo}"
- xrefs: !ruby/hash:MIME::Types::Container
- person:
- - John_Wolfe
- template:
- - video/vnd-vivo
- registered: true
-- !ruby/object:MIME::Type
- content-type: video/webm
- friendly:
- en: Open Web Media Project - Video
- encoding: base64
- extensions:
- - webm
- references:
- - "{WebM=http://www.webmproject.org/code/specs/container/}"
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-dl
- encoding: base64
- extensions:
- - dl
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-dv
- encoding: base64
- extensions:
- - dv
- obsolete: true
- use-instead: video/DV
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-f4v
- friendly:
- en: Flash Video
- encoding: base64
- extensions:
- - f4v
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-fli
- friendly:
- en: FLI/FLC Animation Format
- encoding: base64
- extensions:
- - fli
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-flv
- friendly:
- en: Flash Video
- encoding: base64
- extensions:
- - flv
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-gl
- encoding: base64
- extensions:
- - gl
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ivf
- encoding: base64
- extensions:
- - ivf
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-m4v
- friendly:
- en: M4v
- encoding: base64
- extensions:
- - m4v
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-matroska
- encoding: base64
- extensions:
- - mk3d
- - mks
- - mkv
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-mng
- encoding: base64
- extensions:
- - mng
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-motion-jpeg
- encoding: base64
- extensions:
- - mjpg
- - mjpeg
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ms-asf
- friendly:
- en: Microsoft Advanced Systems Format (ASF)
- encoding: base64
- extensions:
- - asf
- - asx
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ms-vob
- encoding: base64
- extensions:
- - vob
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ms-wm
- friendly:
- en: Microsoft Windows Media
- encoding: base64
- extensions:
- - wm
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ms-wmv
- friendly:
- en: Microsoft Windows Media Video
- encoding: base64
- extensions:
- - wmv
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ms-wmx
- friendly:
- en: Microsoft Windows Media Audio/Video Playlist
- encoding: base64
- extensions:
- - wmx
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-ms-wvx
- friendly:
- en: Microsoft Windows Media Video Playlist
- encoding: base64
- extensions:
- - wvx
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-msvideo
- friendly:
- en: Audio Video Interleave (AVI)
- encoding: base64
- extensions:
- - avi
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-sgi-movie
- friendly:
- en: SGI Movie
- encoding: base64
- extensions:
- - movie
- registered: false
-- !ruby/object:MIME::Type
- content-type: video/x-smv
- encoding: base64
- extensions:
- - smv
- registered: false
diff --git a/type-lists/world.yaml b/type-lists/world.yaml
deleted file mode 100644
index fc9bd15..0000000
--- a/type-lists/world.yaml
+++ /dev/null
@@ -1,8 +0,0 @@
----
-- !ruby/object:MIME::Type
- content-type: x-world/x-vrml
- encoding: base64
- extensions:
- - wrl
- - vrml
- registered: false